├── .gitignore ├── README.md ├── examples └── telegraf │ ├── advanced.js │ ├── calendar.js │ ├── pagination.js │ └── simple.js ├── imgs ├── built-in-keyboard.png ├── calculated-columns-keyboard-1.png ├── calculated-columns-keyboard-2.png ├── combine-keyboards.png ├── fixed-columns-keyboard.png └── inline-keyboard.png ├── lib ├── index.js ├── key.js ├── keyboard.js └── utils.js ├── package.json ├── test ├── test_inline.js └── test_reply.js ├── typings ├── index.d.ts ├── key.d.ts └── keyboard.d.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .git -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/README.md -------------------------------------------------------------------------------- /examples/telegraf/advanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/examples/telegraf/advanced.js -------------------------------------------------------------------------------- /examples/telegraf/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/examples/telegraf/calendar.js -------------------------------------------------------------------------------- /examples/telegraf/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/examples/telegraf/pagination.js -------------------------------------------------------------------------------- /examples/telegraf/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/examples/telegraf/simple.js -------------------------------------------------------------------------------- /imgs/built-in-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/imgs/built-in-keyboard.png -------------------------------------------------------------------------------- /imgs/calculated-columns-keyboard-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/imgs/calculated-columns-keyboard-1.png -------------------------------------------------------------------------------- /imgs/calculated-columns-keyboard-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/imgs/calculated-columns-keyboard-2.png -------------------------------------------------------------------------------- /imgs/combine-keyboards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/imgs/combine-keyboards.png -------------------------------------------------------------------------------- /imgs/fixed-columns-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/imgs/fixed-columns-keyboard.png -------------------------------------------------------------------------------- /imgs/inline-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/imgs/inline-keyboard.png -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/lib/key.js -------------------------------------------------------------------------------- /lib/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/lib/keyboard.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/package.json -------------------------------------------------------------------------------- /test/test_inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/test/test_inline.js -------------------------------------------------------------------------------- /test/test_reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/test/test_reply.js -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/typings/index.d.ts -------------------------------------------------------------------------------- /typings/key.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/typings/key.d.ts -------------------------------------------------------------------------------- /typings/keyboard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/typings/keyboard.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealPeha/telegram-keyboard/HEAD/yarn.lock --------------------------------------------------------------------------------