├── .dockerignore ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .yarnrc.yml ├── Dockerfile ├── LICENSE.md ├── README.md ├── components-sdk ├── LICENSE.md ├── README.md ├── index.html ├── package.json ├── playground │ ├── App.tsx │ ├── BetterInput.impl.tsx │ ├── ColorPicker.impl.tsx │ ├── EmojiPicker.impl.tsx │ ├── EmojiShow.impl.tsx │ ├── StateManager.impl.ts │ ├── index.css │ └── main.tsx ├── src │ ├── Capsule.module.css │ ├── Capsule.tsx │ ├── CapsuleButton.tsx │ ├── CapsuleInner.tsx │ ├── I18nextBackend.ts │ ├── components │ │ ├── ActionRow.module.css │ │ ├── ActionRow.tsx │ │ ├── Button.module.css │ │ ├── Button.tsx │ │ ├── Container.module.css │ │ ├── Container.tsx │ │ ├── File.module.css │ │ ├── File.tsx │ │ ├── MediaGallery.module.css │ │ ├── MediaGallery.tsx │ │ ├── Section.module.css │ │ ├── Section.tsx │ │ ├── Separator.module.css │ │ ├── Separator.tsx │ │ ├── StringSelect.module.css │ │ ├── StringSelect.tsx │ │ ├── TextDisplay.module.css │ │ ├── TextDisplay.tsx │ │ ├── Thumbnail.module.css │ │ └── Thumbnail.tsx │ ├── css.d.ts │ ├── dnd │ │ ├── DragContext.tsx │ │ ├── DragEvents.tsx │ │ ├── DragLine.module.css │ │ ├── DragLine.tsx │ │ ├── boundaries.ts │ │ ├── components.ts │ │ ├── distance.ts │ │ ├── handleDragDrop.ts │ │ ├── handleDragOver.ts │ │ └── types.ts │ ├── errors.ts │ ├── i18next.d.ts │ ├── icons │ │ ├── Action.svg │ │ ├── AddDescription.svg │ │ ├── AddDescriptionActive.svg │ │ ├── Button.svg │ │ ├── ButtonLink.svg │ │ ├── Color.svg │ │ ├── ColorActive.svg │ │ ├── ColorBlue.svg │ │ ├── ColorGreen.svg │ │ ├── ColorGrey.svg │ │ ├── ColorRed.svg │ │ ├── Container.svg │ │ ├── Default.svg │ │ ├── DefaultActive.svg │ │ ├── DescriptionPen.svg │ │ ├── DescriptionText.svg │ │ ├── DescriptionTextActive.svg │ │ ├── Draghandler.svg │ │ ├── Edit.svg │ │ ├── Emoji.svg │ │ ├── EmojiActive.svg │ │ ├── FileIcon.svg │ │ ├── Icons.svg │ │ ├── Lock.svg │ │ ├── LockActive.svg │ │ ├── Maximum.svg │ │ ├── MediaGallery.svg │ │ ├── Minimum.svg │ │ ├── README.md │ │ ├── Select.svg │ │ ├── Separator.svg │ │ ├── Spoiler.svg │ │ ├── SpoilerActive.svg │ │ ├── TextDisplay.svg │ │ ├── Thumbnail.svg │ │ ├── Trash.svg │ │ ├── TrashWhite.svg │ │ ├── Upload.svg │ │ ├── UploadImage.svg │ │ ├── Url.svg │ │ └── times-solid.svg │ ├── index.ts │ ├── locales │ │ ├── ca.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── pl.json │ │ └── pt.json │ ├── polyfills │ │ ├── ActionMenu.ts │ │ ├── BetterInput.ts │ │ ├── ColorPicker.ts │ │ ├── EmojiPicker.ts │ │ ├── EmojiShow.ts │ │ ├── README.md │ │ ├── StateManager.ts │ │ └── files.ts │ ├── svg.d.ts │ └── utils │ │ ├── componentTypes.ts │ │ ├── randomGen.ts │ │ ├── useFileUpload.ts │ │ ├── useRegenerate.tsx │ │ └── useStateOpen.ts ├── tsconfig.json ├── vite-env.d.ts └── vite.config.ts ├── package.json ├── start.sh ├── website ├── 404.html ├── README.md ├── index.html ├── libs.config.ts ├── package.json ├── src │ ├── ActionMenu.tsx │ ├── App.module.css │ ├── App.tsx │ ├── BetterInput.tsx │ ├── Codegen.tsx │ ├── ColorPicker.module.css │ ├── ColorPicker.tsx │ ├── EmojiPicker.tsx │ ├── EmojiShow.tsx │ ├── Select.tsx │ ├── codegen │ │ ├── discordjs-js │ │ │ ├── actionrow.js.ejs │ │ │ ├── button.js.ejs │ │ │ ├── components.js.ejs │ │ │ ├── container.js.ejs │ │ │ ├── main.js.ejs │ │ │ ├── mediagallery.js.ejs │ │ │ ├── mediagalleryitem.js.ejs │ │ │ ├── section.js.ejs │ │ │ ├── selectmenu.js.ejs │ │ │ ├── selectmenu_option.js.ejs │ │ │ ├── separator.js.ejs │ │ │ └── thumbnail.js.ejs │ │ ├── discordjs-ts │ │ │ ├── actionrow.ts.ejs │ │ │ ├── components.ts.ejs │ │ │ ├── container.ts.ejs │ │ │ └── main.ts.ejs │ │ ├── discordpy │ │ │ ├── actionrow.py.ejs │ │ │ ├── button.py.ejs │ │ │ ├── components.py.ejs │ │ │ ├── container.py.ejs │ │ │ ├── emoji.py.ejs │ │ │ ├── file.py.ejs │ │ │ ├── main.py.ejs │ │ │ ├── mediagallery.py.ejs │ │ │ ├── mediagalleryitem.py.ejs │ │ │ ├── section.py.ejs │ │ │ ├── selectmenu.py.ejs │ │ │ ├── selectmenu_option.py.ejs │ │ │ ├── separator.py.ejs │ │ │ ├── textdisplay.py.ejs │ │ │ └── thumbnail.py.ejs │ │ ├── dpp │ │ │ └── main.cpp.ejs │ │ ├── dressed │ │ │ ├── actionrow.ts.ejs │ │ │ ├── button.ts.ejs │ │ │ ├── components.ts.ejs │ │ │ ├── container.ts.ejs │ │ │ ├── file.ts.ejs │ │ │ ├── main.ts.ejs │ │ │ ├── mediagallery.ts.ejs │ │ │ ├── mediagallery_item.ts.ejs │ │ │ ├── section.ts.ejs │ │ │ ├── section_textdisplay.ts.ejs │ │ │ ├── selectmenu.ts.ejs │ │ │ ├── selectmenu_option.ts.ejs │ │ │ ├── separator.ts.ejs │ │ │ ├── textdisplay.ts.ejs │ │ │ └── thumbnail.ts.ejs │ │ ├── hikari │ │ │ ├── actionrow.py.ejs │ │ │ ├── button.py.ejs │ │ │ ├── components.py.ejs │ │ │ ├── container.py.ejs │ │ │ ├── emoji.py.ejs │ │ │ ├── file.py.ejs │ │ │ ├── main.py.ejs │ │ │ ├── mediagallery.py.ejs │ │ │ ├── mediagallery_item.py.ejs │ │ │ ├── section.py.ejs │ │ │ ├── selectmenu.py.ejs │ │ │ ├── selectmenu_option.py.ejs │ │ │ ├── separator.py.ejs │ │ │ ├── textdisplay.py.ejs │ │ │ └── thumbnail.py.ejs │ │ ├── itsmybot │ │ │ ├── actionrow.ts.ejs │ │ │ ├── button.ts.ejs │ │ │ ├── components.ts.ejs │ │ │ ├── container.ts.ejs │ │ │ ├── main.ts.ejs │ │ │ ├── mediagallery.ts.ejs │ │ │ ├── mediagalleryitem.ts.ejs │ │ │ ├── section.ts.ejs │ │ │ ├── selectmenu.ts.ejs │ │ │ ├── selectmenu_option.ts.ejs │ │ │ ├── separator.ts.ejs │ │ │ └── thumbnail.ts.ejs │ │ ├── jda │ │ │ ├── actionrow.java.ejs │ │ │ ├── button.java.ejs │ │ │ ├── components.java.ejs │ │ │ ├── container.java.ejs │ │ │ ├── emoji.java.ejs │ │ │ ├── file.java.ejs │ │ │ ├── main.java.ejs │ │ │ ├── mediagallery.java.ejs │ │ │ ├── mediagallery_item.java.ejs │ │ │ ├── section.java.ejs │ │ │ ├── selectmenu.java.ejs │ │ │ ├── selectmenu_option.java.ejs │ │ │ ├── separator.java.ejs │ │ │ ├── textdisplay.java.ejs │ │ │ └── thumbnail.java.ejs │ │ ├── nyxx │ │ │ ├── components.dart.ejs │ │ │ └── main.dart.ejs │ │ └── pycord │ │ │ ├── actionrow.py.ejs │ │ │ ├── button.py.ejs │ │ │ ├── components.py.ejs │ │ │ ├── container.py.ejs │ │ │ ├── emoji.py.ejs │ │ │ ├── file.py.ejs │ │ │ ├── main.py.ejs │ │ │ ├── mediagallery.py.ejs │ │ │ ├── mediagallery_item.py.ejs │ │ │ ├── section.py.ejs │ │ │ ├── selectmenu.py.ejs │ │ │ ├── selectmenu_option.py.ejs │ │ │ ├── separator.py.ejs │ │ │ ├── textdisplay.py.ejs │ │ │ └── thumbnail.py.ejs │ ├── defaultJson.ts │ ├── favicon.svg │ ├── fonts │ │ ├── .gitignore │ │ └── LICENSE.md │ ├── global.d.ts │ ├── i18n.ts │ ├── i18next.d.ts │ ├── icons │ │ ├── Trash.svg │ │ ├── apple-touch-icon.png │ │ ├── cap.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ └── favicon.svg │ ├── index.css │ ├── locales │ │ ├── ca.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── pl.json │ │ └── pt.json │ ├── logo.svg │ ├── main.tsx │ ├── rollupPlugin.ts │ ├── seoPlugin.ts │ ├── slider.css │ ├── state.ts │ ├── useHashRouter.ts │ ├── useRouter.ts │ ├── vite-env.d.ts │ └── webhook.impl.ts ├── tsconfig.json └── vite.config.ts └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.20 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | packages/*/dist -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/README.md -------------------------------------------------------------------------------- /components-sdk/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/LICENSE.md -------------------------------------------------------------------------------- /components-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/README.md -------------------------------------------------------------------------------- /components-sdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/index.html -------------------------------------------------------------------------------- /components-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/package.json -------------------------------------------------------------------------------- /components-sdk/playground/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/playground/App.tsx -------------------------------------------------------------------------------- /components-sdk/playground/BetterInput.impl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/playground/BetterInput.impl.tsx -------------------------------------------------------------------------------- /components-sdk/playground/ColorPicker.impl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/playground/ColorPicker.impl.tsx -------------------------------------------------------------------------------- /components-sdk/playground/EmojiPicker.impl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/playground/EmojiPicker.impl.tsx -------------------------------------------------------------------------------- /components-sdk/playground/EmojiShow.impl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/playground/EmojiShow.impl.tsx -------------------------------------------------------------------------------- /components-sdk/playground/StateManager.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/playground/StateManager.impl.ts -------------------------------------------------------------------------------- /components-sdk/playground/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/playground/index.css -------------------------------------------------------------------------------- /components-sdk/playground/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/playground/main.tsx -------------------------------------------------------------------------------- /components-sdk/src/Capsule.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/Capsule.module.css -------------------------------------------------------------------------------- /components-sdk/src/Capsule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/Capsule.tsx -------------------------------------------------------------------------------- /components-sdk/src/CapsuleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/CapsuleButton.tsx -------------------------------------------------------------------------------- /components-sdk/src/CapsuleInner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/CapsuleInner.tsx -------------------------------------------------------------------------------- /components-sdk/src/I18nextBackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/I18nextBackend.ts -------------------------------------------------------------------------------- /components-sdk/src/components/ActionRow.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/ActionRow.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/ActionRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/ActionRow.tsx -------------------------------------------------------------------------------- /components-sdk/src/components/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Button.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Button.tsx -------------------------------------------------------------------------------- /components-sdk/src/components/Container.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Container.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Container.tsx -------------------------------------------------------------------------------- /components-sdk/src/components/File.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/File.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/File.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/File.tsx -------------------------------------------------------------------------------- /components-sdk/src/components/MediaGallery.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/MediaGallery.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/MediaGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/MediaGallery.tsx -------------------------------------------------------------------------------- /components-sdk/src/components/Section.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Section.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Section.tsx -------------------------------------------------------------------------------- /components-sdk/src/components/Separator.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Separator.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Separator.tsx -------------------------------------------------------------------------------- /components-sdk/src/components/StringSelect.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/StringSelect.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/StringSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/StringSelect.tsx -------------------------------------------------------------------------------- /components-sdk/src/components/TextDisplay.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/TextDisplay.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/TextDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/TextDisplay.tsx -------------------------------------------------------------------------------- /components-sdk/src/components/Thumbnail.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Thumbnail.module.css -------------------------------------------------------------------------------- /components-sdk/src/components/Thumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/components/Thumbnail.tsx -------------------------------------------------------------------------------- /components-sdk/src/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/css.d.ts -------------------------------------------------------------------------------- /components-sdk/src/dnd/DragContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/DragContext.tsx -------------------------------------------------------------------------------- /components-sdk/src/dnd/DragEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/DragEvents.tsx -------------------------------------------------------------------------------- /components-sdk/src/dnd/DragLine.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/DragLine.module.css -------------------------------------------------------------------------------- /components-sdk/src/dnd/DragLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/DragLine.tsx -------------------------------------------------------------------------------- /components-sdk/src/dnd/boundaries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/boundaries.ts -------------------------------------------------------------------------------- /components-sdk/src/dnd/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/components.ts -------------------------------------------------------------------------------- /components-sdk/src/dnd/distance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/distance.ts -------------------------------------------------------------------------------- /components-sdk/src/dnd/handleDragDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/handleDragDrop.ts -------------------------------------------------------------------------------- /components-sdk/src/dnd/handleDragOver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/handleDragOver.ts -------------------------------------------------------------------------------- /components-sdk/src/dnd/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/dnd/types.ts -------------------------------------------------------------------------------- /components-sdk/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/errors.ts -------------------------------------------------------------------------------- /components-sdk/src/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/i18next.d.ts -------------------------------------------------------------------------------- /components-sdk/src/icons/Action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Action.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/AddDescription.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/AddDescription.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/AddDescriptionActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/AddDescriptionActive.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Button.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/ButtonLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/ButtonLink.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Color.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/ColorActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/ColorActive.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/ColorBlue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/ColorBlue.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/ColorGreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/ColorGreen.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/ColorGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/ColorGrey.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/ColorRed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/ColorRed.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Container.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Default.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/DefaultActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/DefaultActive.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/DescriptionPen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/DescriptionPen.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/DescriptionText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/DescriptionText.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/DescriptionTextActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/DescriptionTextActive.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Draghandler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Draghandler.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Edit.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Emoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Emoji.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/EmojiActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/EmojiActive.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/FileIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/FileIcon.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Icons.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Lock.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/LockActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/LockActive.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Maximum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Maximum.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/MediaGallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/MediaGallery.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Minimum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Minimum.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/README.md -------------------------------------------------------------------------------- /components-sdk/src/icons/Select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Select.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Separator.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Spoiler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Spoiler.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/SpoilerActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/SpoilerActive.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/TextDisplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/TextDisplay.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Thumbnail.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Trash.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/TrashWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/TrashWhite.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Upload.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/UploadImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/UploadImage.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/Url.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/Url.svg -------------------------------------------------------------------------------- /components-sdk/src/icons/times-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/icons/times-solid.svg -------------------------------------------------------------------------------- /components-sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/index.ts -------------------------------------------------------------------------------- /components-sdk/src/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/locales/ca.json -------------------------------------------------------------------------------- /components-sdk/src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/locales/de.json -------------------------------------------------------------------------------- /components-sdk/src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/locales/en.json -------------------------------------------------------------------------------- /components-sdk/src/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/locales/es.json -------------------------------------------------------------------------------- /components-sdk/src/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/locales/pl.json -------------------------------------------------------------------------------- /components-sdk/src/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/locales/pt.json -------------------------------------------------------------------------------- /components-sdk/src/polyfills/ActionMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/polyfills/ActionMenu.ts -------------------------------------------------------------------------------- /components-sdk/src/polyfills/BetterInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/polyfills/BetterInput.ts -------------------------------------------------------------------------------- /components-sdk/src/polyfills/ColorPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/polyfills/ColorPicker.ts -------------------------------------------------------------------------------- /components-sdk/src/polyfills/EmojiPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/polyfills/EmojiPicker.ts -------------------------------------------------------------------------------- /components-sdk/src/polyfills/EmojiShow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/polyfills/EmojiShow.ts -------------------------------------------------------------------------------- /components-sdk/src/polyfills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/polyfills/README.md -------------------------------------------------------------------------------- /components-sdk/src/polyfills/StateManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/polyfills/StateManager.ts -------------------------------------------------------------------------------- /components-sdk/src/polyfills/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/polyfills/files.ts -------------------------------------------------------------------------------- /components-sdk/src/svg.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.svg"; -------------------------------------------------------------------------------- /components-sdk/src/utils/componentTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/utils/componentTypes.ts -------------------------------------------------------------------------------- /components-sdk/src/utils/randomGen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/utils/randomGen.ts -------------------------------------------------------------------------------- /components-sdk/src/utils/useFileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/utils/useFileUpload.ts -------------------------------------------------------------------------------- /components-sdk/src/utils/useRegenerate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/utils/useRegenerate.tsx -------------------------------------------------------------------------------- /components-sdk/src/utils/useStateOpen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/src/utils/useStateOpen.ts -------------------------------------------------------------------------------- /components-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/tsconfig.json -------------------------------------------------------------------------------- /components-sdk/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /components-sdk/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/components-sdk/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/package.json -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/start.sh -------------------------------------------------------------------------------- /website/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/404.html -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/README.md -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/index.html -------------------------------------------------------------------------------- /website/libs.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/libs.config.ts -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/package.json -------------------------------------------------------------------------------- /website/src/ActionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/ActionMenu.tsx -------------------------------------------------------------------------------- /website/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/App.module.css -------------------------------------------------------------------------------- /website/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/App.tsx -------------------------------------------------------------------------------- /website/src/BetterInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/BetterInput.tsx -------------------------------------------------------------------------------- /website/src/Codegen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/Codegen.tsx -------------------------------------------------------------------------------- /website/src/ColorPicker.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/ColorPicker.module.css -------------------------------------------------------------------------------- /website/src/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/ColorPicker.tsx -------------------------------------------------------------------------------- /website/src/EmojiPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/EmojiPicker.tsx -------------------------------------------------------------------------------- /website/src/EmojiShow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/EmojiShow.tsx -------------------------------------------------------------------------------- /website/src/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/Select.tsx -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/actionrow.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/actionrow.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/button.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/button.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/components.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/components.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/container.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/container.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/main.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/main.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/mediagallery.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/mediagallery.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/mediagalleryitem.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/mediagalleryitem.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/section.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/section.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/selectmenu.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/selectmenu.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/selectmenu_option.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/selectmenu_option.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/separator.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/separator.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-js/thumbnail.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-js/thumbnail.js.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-ts/actionrow.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-ts/actionrow.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-ts/components.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-ts/components.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-ts/container.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-ts/container.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordjs-ts/main.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordjs-ts/main.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/actionrow.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/actionrow.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/button.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/button.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/components.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/components.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/container.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/container.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/emoji.py.ejs: -------------------------------------------------------------------------------- 1 | <%=data.emoji.name%> -------------------------------------------------------------------------------- /website/src/codegen/discordpy/file.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/file.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/main.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/main.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/mediagallery.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/mediagallery.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/mediagalleryitem.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/mediagalleryitem.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/section.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/section.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/selectmenu.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/selectmenu.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/selectmenu_option.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/selectmenu_option.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/separator.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/separator.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/textdisplay.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/textdisplay.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/discordpy/thumbnail.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/discordpy/thumbnail.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/dpp/main.cpp.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dpp/main.cpp.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/actionrow.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/actionrow.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/button.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/button.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/components.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/components.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/container.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/container.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/file.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/file.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/main.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/main.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/mediagallery.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/mediagallery.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/mediagallery_item.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/mediagallery_item.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/section.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/section.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/section_textdisplay.ts.ejs: -------------------------------------------------------------------------------- 1 | <%= data.comp.content %> -------------------------------------------------------------------------------- /website/src/codegen/dressed/selectmenu.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/selectmenu.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/selectmenu_option.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/selectmenu_option.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/separator.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/separator.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/dressed/textdisplay.ts.ejs: -------------------------------------------------------------------------------- 1 | TextDisplay(<%= data.comp.content %>) -------------------------------------------------------------------------------- /website/src/codegen/dressed/thumbnail.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/dressed/thumbnail.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/actionrow.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/actionrow.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/button.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/button.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/components.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/components.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/container.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/container.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/emoji.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/emoji.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/file.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/file.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/main.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/main.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/mediagallery.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/mediagallery.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/mediagallery_item.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/mediagallery_item.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/section.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/section.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/selectmenu.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/selectmenu.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/selectmenu_option.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/selectmenu_option.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/separator.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/separator.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/textdisplay.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/textdisplay.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/hikari/thumbnail.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/hikari/thumbnail.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/actionrow.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/actionrow.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/button.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/button.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/components.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/components.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/container.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/container.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/main.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/main.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/mediagallery.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/mediagallery.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/mediagalleryitem.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/mediagalleryitem.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/section.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/section.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/selectmenu.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/selectmenu.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/selectmenu_option.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/selectmenu_option.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/separator.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/separator.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/itsmybot/thumbnail.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/itsmybot/thumbnail.ts.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/actionrow.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/actionrow.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/button.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/button.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/components.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/components.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/container.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/container.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/emoji.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/emoji.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/file.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/file.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/main.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/main.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/mediagallery.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/mediagallery.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/mediagallery_item.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/mediagallery_item.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/section.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/section.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/selectmenu.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/selectmenu.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/selectmenu_option.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/selectmenu_option.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/separator.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/separator.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/jda/textdisplay.java.ejs: -------------------------------------------------------------------------------- 1 | TextDisplay.of(<%= data.comp.content %>)<% _%> 2 | -------------------------------------------------------------------------------- /website/src/codegen/jda/thumbnail.java.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/jda/thumbnail.java.ejs -------------------------------------------------------------------------------- /website/src/codegen/nyxx/components.dart.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/nyxx/components.dart.ejs -------------------------------------------------------------------------------- /website/src/codegen/nyxx/main.dart.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/nyxx/main.dart.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/actionrow.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/actionrow.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/button.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/button.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/components.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/components.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/container.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/container.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/emoji.py.ejs: -------------------------------------------------------------------------------- 1 | <%=data.emoji.name%> -------------------------------------------------------------------------------- /website/src/codegen/pycord/file.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/file.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/main.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/main.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/mediagallery.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/mediagallery.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/mediagallery_item.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/mediagallery_item.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/section.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/section.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/selectmenu.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/selectmenu.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/selectmenu_option.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/selectmenu_option.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/separator.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/separator.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/textdisplay.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/textdisplay.py.ejs -------------------------------------------------------------------------------- /website/src/codegen/pycord/thumbnail.py.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/codegen/pycord/thumbnail.py.ejs -------------------------------------------------------------------------------- /website/src/defaultJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/defaultJson.ts -------------------------------------------------------------------------------- /website/src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/favicon.svg -------------------------------------------------------------------------------- /website/src/fonts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/fonts/.gitignore -------------------------------------------------------------------------------- /website/src/fonts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/fonts/LICENSE.md -------------------------------------------------------------------------------- /website/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/global.d.ts -------------------------------------------------------------------------------- /website/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/i18n.ts -------------------------------------------------------------------------------- /website/src/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/i18next.d.ts -------------------------------------------------------------------------------- /website/src/icons/Trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/icons/Trash.svg -------------------------------------------------------------------------------- /website/src/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /website/src/icons/cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/icons/cap.png -------------------------------------------------------------------------------- /website/src/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/icons/favicon-96x96.png -------------------------------------------------------------------------------- /website/src/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/icons/favicon.ico -------------------------------------------------------------------------------- /website/src/icons/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/icons/favicon.svg -------------------------------------------------------------------------------- /website/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/index.css -------------------------------------------------------------------------------- /website/src/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/locales/ca.json -------------------------------------------------------------------------------- /website/src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/locales/de.json -------------------------------------------------------------------------------- /website/src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/locales/en.json -------------------------------------------------------------------------------- /website/src/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/locales/es.json -------------------------------------------------------------------------------- /website/src/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/locales/pl.json -------------------------------------------------------------------------------- /website/src/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/locales/pt.json -------------------------------------------------------------------------------- /website/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/logo.svg -------------------------------------------------------------------------------- /website/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/main.tsx -------------------------------------------------------------------------------- /website/src/rollupPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/rollupPlugin.ts -------------------------------------------------------------------------------- /website/src/seoPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/seoPlugin.ts -------------------------------------------------------------------------------- /website/src/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/slider.css -------------------------------------------------------------------------------- /website/src/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/state.ts -------------------------------------------------------------------------------- /website/src/useHashRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/useHashRouter.ts -------------------------------------------------------------------------------- /website/src/useRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/useRouter.ts -------------------------------------------------------------------------------- /website/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /website/src/webhook.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/src/webhook.impl.ts -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/website/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartITBot/discord.builders/HEAD/yarn.lock --------------------------------------------------------------------------------