create-nextjs-cms 0.5.21 → 0.5.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -5
- package/templates/default/_gitignore +1 -1
- package/templates/default/app/(auth)/auth/login/LoginPage.tsx +5 -5
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/LICENSE +191 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/README.md +118 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/install/build.js +38 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/install/check.js +14 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/channel.js +177 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/colour.js +195 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/composite.js +212 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/constructor.js +499 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/index.d.ts +1971 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/index.js +16 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/input.js +809 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/is.js +143 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/libvips.js +207 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/operation.js +1016 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/output.js +1666 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/resize.js +595 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/sharp.js +121 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/utility.js +291 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/package.json +202 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/binding.gyp +298 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/common.cc +1130 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/common.h +402 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/metadata.cc +346 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/metadata.h +90 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/operations.cc +499 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/operations.h +137 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/pipeline.cc +1814 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/pipeline.h +408 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/sharp.cc +43 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/stats.cc +186 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/stats.h +62 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/utilities.cc +288 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/utilities.h +22 -0
- package/templates/default/apps/cms/node_modules/sharp/LICENSE +191 -0
- package/templates/default/apps/cms/node_modules/sharp/README.md +118 -0
- package/templates/default/apps/cms/node_modules/sharp/install/check.js +41 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/channel.js +174 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/colour.js +180 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/composite.js +210 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/constructor.js +452 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/index.d.ts +1754 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/index.js +16 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/input.js +658 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/is.js +169 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/libvips.js +203 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/operation.js +958 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/output.js +1587 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/resize.js +587 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/sharp.js +114 -0
- package/templates/default/apps/cms/node_modules/sharp/lib/utility.js +296 -0
- package/templates/default/apps/cms/node_modules/sharp/package.json +222 -0
- package/templates/default/apps/cms/node_modules/sharp/src/binding.gyp +280 -0
- package/templates/default/apps/cms/node_modules/sharp/src/common.cc +1091 -0
- package/templates/default/apps/cms/node_modules/sharp/src/common.h +393 -0
- package/templates/default/apps/cms/node_modules/sharp/src/metadata.cc +320 -0
- package/templates/default/apps/cms/node_modules/sharp/src/metadata.h +85 -0
- package/templates/default/apps/cms/node_modules/sharp/src/operations.cc +475 -0
- package/templates/default/apps/cms/node_modules/sharp/src/operations.h +125 -0
- package/templates/default/apps/cms/node_modules/sharp/src/pipeline.cc +1758 -0
- package/templates/default/apps/cms/node_modules/sharp/src/pipeline.h +393 -0
- package/templates/default/apps/cms/node_modules/sharp/src/sharp.cc +40 -0
- package/templates/default/apps/cms/node_modules/sharp/src/stats.cc +183 -0
- package/templates/default/apps/cms/node_modules/sharp/src/stats.h +59 -0
- package/templates/default/apps/cms/node_modules/sharp/src/utilities.cc +269 -0
- package/templates/default/apps/cms/node_modules/sharp/src/utilities.h +19 -0
- package/templates/default/components/AdminCard.tsx +1 -1
- package/templates/default/components/AdminsPage.tsx +1 -1
- package/templates/default/components/AdvancedSettingsPage.tsx +1 -1
- package/templates/default/components/AnalyticsPage.tsx +1 -1
- package/templates/default/components/BrowsePage.tsx +2 -2
- package/templates/default/components/CategorizedSectionPage.tsx +3 -3
- package/templates/default/components/CategoryDeleteConfirmPage.tsx +4 -4
- package/templates/default/components/CategorySectionSelectInput.tsx +1 -1
- package/templates/default/components/ContainerBox.tsx +1 -1
- package/templates/default/components/DashboardPage.tsx +1 -1
- package/templates/default/components/EmailCard.tsx +1 -1
- package/templates/default/components/EmailPasswordForm.tsx +2 -2
- package/templates/default/components/EmailQuotaForm.tsx +1 -1
- package/templates/default/components/EmailsPage.tsx +1 -1
- package/templates/default/components/GalleryPhoto.tsx +1 -1
- package/templates/default/components/ItemEditPage.tsx +2 -2
- package/templates/default/components/Layout.tsx +1 -1
- package/templates/default/components/LogPage.tsx +1 -1
- package/templates/default/components/Navbar.tsx +2 -2
- package/templates/default/components/NavbarAlt.tsx +6 -6
- package/templates/default/components/NewAdminForm.tsx +2 -2
- package/templates/default/components/NewEmailForm.tsx +3 -3
- package/templates/default/components/NewPage.tsx +2 -2
- package/templates/default/components/NewVariantComponent.tsx +1 -1
- package/templates/default/components/ProgressBar.tsx +46 -22
- package/templates/default/components/SectionItemCard.tsx +1 -1
- package/templates/default/components/SectionItemStatusBadge.tsx +1 -1
- package/templates/default/components/SectionPage.tsx +2 -2
- package/templates/default/components/SelectBox.tsx +2 -2
- package/templates/default/components/SettingsPage.tsx +1 -1
- package/templates/default/components/Sidebar.tsx +3 -3
- package/templates/default/components/VariantEditPage.tsx +2 -2
- package/templates/default/components/form/DateRangeFormInput.tsx +8 -6
- package/templates/default/components/form/Form.tsx +1 -1
- package/templates/default/components/form/FormInputElement.tsx +1 -1
- package/templates/default/components/form/helpers/{_section-hot-reload.ts → _section-hot-reload.js} +1 -1
- package/templates/default/components/form/helpers/util.ts +1 -1
- package/templates/default/components/form/inputs/ColorFormInput.tsx +1 -1
- package/templates/default/components/form/inputs/DateFormInput.tsx +82 -34
- package/templates/default/components/form/inputs/DocumentFormInput.tsx +3 -3
- package/templates/default/components/form/inputs/MultipleSelectFormInput.tsx +40 -107
- package/templates/default/components/form/inputs/NumberFormInput.tsx +1 -1
- package/templates/default/components/form/inputs/PasswordFormInput.tsx +1 -1
- package/templates/default/components/form/inputs/PhotoFormInput.tsx +4 -4
- package/templates/default/components/form/inputs/RichTextFormInput.tsx +2 -0
- package/templates/default/components/form/inputs/SelectFormInput.tsx +1 -1
- package/templates/default/components/form/inputs/TagsFormInput.tsx +115 -26
- package/templates/default/components/form/inputs/TextFormInput.tsx +1 -1
- package/templates/default/components/form/inputs/TextareaFormInput.tsx +1 -1
- package/templates/default/components/form/inputs/VideoFormInput.tsx +3 -3
- package/templates/default/components/multi-select.tsx +1144 -0
- package/templates/default/components/ui/badge.tsx +16 -12
- package/templates/default/components/ui/button.tsx +35 -30
- package/templates/default/components/ui/calendar.tsx +145 -47
- package/templates/default/components/ui/card.tsx +1 -1
- package/templates/default/components/ui/checkbox.tsx +1 -1
- package/templates/default/components/ui/command.tsx +184 -0
- package/templates/default/components/ui/dialog.tsx +143 -0
- package/templates/default/components/ui/dropdown-menu.tsx +6 -6
- package/templates/default/components/ui/input.tsx +1 -1
- package/templates/default/components/ui/popover.tsx +39 -22
- package/templates/default/components/ui/progress.tsx +31 -0
- package/templates/default/components/ui/scroll-area.tsx +2 -2
- package/templates/default/components/ui/select.tsx +150 -149
- package/templates/default/components/ui/separator.tsx +28 -0
- package/templates/default/components/ui/sheet.tsx +1 -1
- package/templates/default/components/ui/switch.tsx +1 -1
- package/templates/default/components/ui/table.tsx +3 -3
- package/templates/default/components/ui/tabs.tsx +2 -2
- package/templates/default/components/ui/toast.tsx +4 -4
- package/templates/default/components.json +8 -3
- package/templates/default/{postinstall.js → lib/postinstall.js} +1 -1
- package/templates/default/lib/utils.ts +6 -0
- package/templates/default/package.json +27 -47
- package/templates/default/postcss.config.mjs +7 -0
- package/templates/default/public/tinymce/CHANGELOG.md +155 -0
- package/templates/default/public/tinymce/README.md +12 -12
- package/templates/default/public/tinymce/bower.json +1 -1
- package/templates/default/public/tinymce/composer.json +2 -2
- package/templates/default/public/tinymce/icons/default/icons.js +40 -32
- package/templates/default/public/tinymce/icons/default/icons.min.js +1 -1
- package/templates/default/public/tinymce/license.md +7 -4
- package/templates/default/public/tinymce/models/dom/model.js +36 -50
- package/templates/default/public/tinymce/models/dom/model.min.js +1 -1
- package/templates/default/public/tinymce/notices.txt +2 -2
- package/templates/default/public/tinymce/package.json +2 -2
- package/templates/default/public/tinymce/plugins/accordion/plugin.js +45 -21
- package/templates/default/public/tinymce/plugins/accordion/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/advlist/plugin.js +8 -6
- package/templates/default/public/tinymce/plugins/advlist/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/anchor/plugin.js +1 -1
- package/templates/default/public/tinymce/plugins/autolink/plugin.js +3 -6
- package/templates/default/public/tinymce/plugins/autolink/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/autoresize/plugin.js +4 -6
- package/templates/default/public/tinymce/plugins/autoresize/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/autosave/plugin.js +4 -7
- package/templates/default/public/tinymce/plugins/autosave/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/charmap/plugin.js +8 -8
- package/templates/default/public/tinymce/plugins/charmap/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/code/plugin.js +3 -2
- package/templates/default/public/tinymce/plugins/code/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/codesample/plugin.js +11 -10
- package/templates/default/public/tinymce/plugins/codesample/plugin.min.js +2 -2
- package/templates/default/public/tinymce/plugins/directionality/plugin.js +9 -11
- package/templates/default/public/tinymce/plugins/directionality/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/emoticons/plugin.js +7 -7
- package/templates/default/public/tinymce/plugins/emoticons/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/fullscreen/plugin.js +11 -13
- package/templates/default/public/tinymce/plugins/fullscreen/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/bg-BG.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/fr-FR.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/he-IL.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/hu-HU.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/ko-KR.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/nb-NO.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/pt-BR.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/pt-PT.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/sl-SI.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/sv-SE.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/th-TH.js +93 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/zh-CN.js +87 -0
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/zh-TW.js +93 -0
- package/templates/default/public/tinymce/plugins/help/plugin.js +15 -17
- package/templates/default/public/tinymce/plugins/help/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/image/plugin.js +34 -32
- package/templates/default/public/tinymce/plugins/image/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/importcss/plugin.js +4 -6
- package/templates/default/public/tinymce/plugins/importcss/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/insertdatetime/plugin.js +4 -3
- package/templates/default/public/tinymce/plugins/insertdatetime/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/link/plugin.js +170 -38
- package/templates/default/public/tinymce/plugins/link/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/lists/plugin.js +111 -2053
- package/templates/default/public/tinymce/plugins/lists/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/media/plugin.js +15 -23
- package/templates/default/public/tinymce/plugins/media/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/nonbreaking/plugin.js +1 -1
- package/templates/default/public/tinymce/plugins/pagebreak/plugin.js +1 -1
- package/templates/default/public/tinymce/plugins/preview/plugin.js +88 -10
- package/templates/default/public/tinymce/plugins/preview/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/quickbars/plugin.js +9 -9
- package/templates/default/public/tinymce/plugins/quickbars/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/save/plugin.js +1 -1
- package/templates/default/public/tinymce/plugins/searchreplace/plugin.js +10 -13
- package/templates/default/public/tinymce/plugins/searchreplace/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/table/plugin.js +13 -24
- package/templates/default/public/tinymce/plugins/table/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/visualblocks/plugin.js +1 -1
- package/templates/default/public/tinymce/plugins/visualchars/plugin.js +9 -10
- package/templates/default/public/tinymce/plugins/visualchars/plugin.min.js +1 -1
- package/templates/default/public/tinymce/plugins/wordcount/plugin.js +1 -1
- package/templates/default/public/tinymce/skins/content/dark/content.min.ts +3 -0
- package/templates/default/public/tinymce/skins/content/dark/content.ts +3 -0
- package/templates/default/public/tinymce/skins/content/default/content.min.ts +3 -0
- package/templates/default/public/tinymce/skins/content/default/content.ts +3 -0
- package/templates/default/public/tinymce/skins/content/document/content.min.ts +3 -0
- package/templates/default/public/tinymce/skins/content/document/content.ts +3 -0
- package/templates/default/public/tinymce/skins/content/tinymce-5/content.min.ts +3 -0
- package/templates/default/public/tinymce/skins/content/tinymce-5/content.ts +3 -0
- package/templates/default/public/tinymce/skins/content/tinymce-5-dark/content.min.ts +3 -0
- package/templates/default/public/tinymce/skins/content/tinymce-5-dark/content.ts +3 -0
- package/templates/default/public/tinymce/skins/content/writer/content.min.ts +3 -0
- package/templates/default/public/tinymce/skins/content/writer/content.ts +3 -0
- package/templates/default/public/tinymce/skins/ui/oxide/content.css +144 -0
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.css +144 -0
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.js +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.min.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/oxide/content.js +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide/content.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide/content.min.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/oxide/content.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/oxide/skin.css +923 -449
- package/templates/default/public/tinymce/skins/ui/oxide/skin.js +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide/skin.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide/skin.min.ts +507 -0
- package/templates/default/public/tinymce/skins/ui/oxide/skin.shadowdom.min.ts +9 -0
- package/templates/default/public/tinymce/skins/ui/oxide/skin.shadowdom.ts +9 -0
- package/templates/default/public/tinymce/skins/ui/oxide/skin.ts +507 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.css +144 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.css +144 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.js +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.min.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.js +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.min.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.css +926 -452
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.js +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.min.ts +507 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.ts +9 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.shadowdom.ts +9 -0
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.ts +507 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.css +144 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.css +144 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.js +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.min.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.js +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.min.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.css +924 -450
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.js +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.min.ts +508 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.ts +9 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.shadowdom.ts +9 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.ts +508 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.css +144 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.css +144 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.js +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.min.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.js +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.min.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.ts +116 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.css +925 -451
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.js +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.min.ts +508 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.ts +9 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.ts +9 -0
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.ts +508 -0
- package/templates/default/public/tinymce/themes/silver/theme.js +543 -593
- package/templates/default/public/tinymce/themes/silver/theme.min.js +1 -1
- package/templates/default/public/tinymce/tinymce.d.ts +559 -496
- package/templates/default/public/tinymce/tinymce.js +6788 -3964
- package/templates/default/public/tinymce/tinymce.min.js +3 -4
- package/templates/default/styles/globals.css +131 -3
- package/templates/default/tsconfig.json +1 -0
- package/templates/default/.prettierrc.json +0 -19
- package/templates/default/postcss.config.js +0 -6
- package/templates/default/tailwind.config.js +0 -95
|
@@ -0,0 +1,508 @@
|
|
|
1
|
+
export interface Classes {
|
|
2
|
+
"tox": string;
|
|
3
|
+
"tox-tinymce": string;
|
|
4
|
+
"tox-tinymce-aux": string;
|
|
5
|
+
"tox-tinymce-inline": string;
|
|
6
|
+
"tox-editor-container": string;
|
|
7
|
+
"tox-editor-header": string;
|
|
8
|
+
"tox-icon--flip": string;
|
|
9
|
+
"tox-editor-dock-transition": string;
|
|
10
|
+
"tox-tinymce--toolbar-bottom": string;
|
|
11
|
+
"tox-tinymce--toolbar-sticky-on": string;
|
|
12
|
+
"tox-editor-header--empty": string;
|
|
13
|
+
"tox-editor-dock-fadeout": string;
|
|
14
|
+
"tox-editor-dock-fadein": string;
|
|
15
|
+
"accessibility-issue__header": string;
|
|
16
|
+
"accessibility-issue__subheader": string;
|
|
17
|
+
"accessbility-sr-only": string;
|
|
18
|
+
"accessibility-issue__description": string;
|
|
19
|
+
"tox-icon": string;
|
|
20
|
+
"accessibility-issue__contentID": string;
|
|
21
|
+
"accessibility-issue__document": string;
|
|
22
|
+
"accessibility-issue__repair": string;
|
|
23
|
+
"tox-form__group": string;
|
|
24
|
+
"tox-form__group--error": string;
|
|
25
|
+
"tox-dialog__body-content": string;
|
|
26
|
+
"accessibility-issue--info": string;
|
|
27
|
+
"accessibility-issue__icon": string;
|
|
28
|
+
"tox-button--naked": string;
|
|
29
|
+
"tox-button--icon": string;
|
|
30
|
+
"accessibility-issue--warn": string;
|
|
31
|
+
"accessibility-issue--error": string;
|
|
32
|
+
"accessibility-issue--success": string;
|
|
33
|
+
"tox-button": string;
|
|
34
|
+
"mce-codemirror": string;
|
|
35
|
+
"tox-inline-codemirror": string;
|
|
36
|
+
"tox-advtemplate": string;
|
|
37
|
+
"tox-form__grid": string;
|
|
38
|
+
"tox-force-desktop": string;
|
|
39
|
+
"tox-anchorbar": string;
|
|
40
|
+
"tox-bottom-anchorbar": string;
|
|
41
|
+
"tox-bar": string;
|
|
42
|
+
"tox-icon--success": string;
|
|
43
|
+
"tox-icon--error": string;
|
|
44
|
+
"tox-button--stretch": string;
|
|
45
|
+
"tox-context-form__group": string;
|
|
46
|
+
"tox-button--enabled": string;
|
|
47
|
+
"tox-button--secondary": string;
|
|
48
|
+
"tox-button--secondary--outline": string;
|
|
49
|
+
"tox-checkbox": string;
|
|
50
|
+
"tox-checkbox__input": string;
|
|
51
|
+
"tox-checkbox__icons": string;
|
|
52
|
+
"tox-checkbox-icon__unchecked": string;
|
|
53
|
+
"tox-checkbox-icon__indeterminate": string;
|
|
54
|
+
"tox-checkbox-icon__checked": string;
|
|
55
|
+
"tox-checkbox--disabled": string;
|
|
56
|
+
"tox-checkbox__label": string;
|
|
57
|
+
"tox-collection--toolbar": string;
|
|
58
|
+
"tox-collection__group": string;
|
|
59
|
+
"tox-collection--grid": string;
|
|
60
|
+
"tox-collection--list": string;
|
|
61
|
+
"tox-collection__group-heading": string;
|
|
62
|
+
"tox-collection__item": string;
|
|
63
|
+
"tox-image-selector-menu": string;
|
|
64
|
+
"tox-collection__item-image-selector": string;
|
|
65
|
+
"tox-collection__item-checkmark": string;
|
|
66
|
+
"tox-collection__item-icon": string;
|
|
67
|
+
"tox-collection__item-image": string;
|
|
68
|
+
"tox-image-selector__row": string;
|
|
69
|
+
"tox-collection__item--active": string;
|
|
70
|
+
"tox-collection__item--state-disabled": string;
|
|
71
|
+
"tox-collection__item--enabled": string;
|
|
72
|
+
"tox-collection--toolbar-lg": string;
|
|
73
|
+
"tox-collection__item-label": string;
|
|
74
|
+
"tox-collection__item-accessory": string;
|
|
75
|
+
"tox-collection__item-caret": string;
|
|
76
|
+
"tox-collection--horizontal": string;
|
|
77
|
+
"tox-collection__item-container": string;
|
|
78
|
+
"tox-collection__item-container--row": string;
|
|
79
|
+
"tox-collection__item-container--align-left": string;
|
|
80
|
+
"tox-collection__item-container--align-right": string;
|
|
81
|
+
"tox-collection__item-container--valign-top": string;
|
|
82
|
+
"tox-collection__item-container--valign-middle": string;
|
|
83
|
+
"tox-collection__item-container--valign-bottom": string;
|
|
84
|
+
"tox-collection__item-container--column": string;
|
|
85
|
+
"tox-collection": string;
|
|
86
|
+
"tox-hue-slider": string;
|
|
87
|
+
"tox-rgb-form": string;
|
|
88
|
+
"tox-rgba-preview": string;
|
|
89
|
+
"tox-color-picker-container": string;
|
|
90
|
+
"tox-sv-palette": string;
|
|
91
|
+
"tox-sv-palette-spectrum": string;
|
|
92
|
+
"tox-sv-palette-thumb": string;
|
|
93
|
+
"tox-sv-palette-inner-thumb": string;
|
|
94
|
+
"tox-hue-slider-spectrum": string;
|
|
95
|
+
"tox-hue-slider-thumb": string;
|
|
96
|
+
"tox-invalid": string;
|
|
97
|
+
"tox-rgb-container": string;
|
|
98
|
+
"tox-invalid-icon": string;
|
|
99
|
+
"tox-control-wrap__status-icon-invalid": string;
|
|
100
|
+
"tox-rgb-warning-note": string;
|
|
101
|
+
"tox-toolbar": string;
|
|
102
|
+
"tox-swatches": string;
|
|
103
|
+
"tox-toolbar__overflow": string;
|
|
104
|
+
"tox-toolbar__primary": string;
|
|
105
|
+
"tox-swatches-menu": string;
|
|
106
|
+
"tox-swatches__row": string;
|
|
107
|
+
"tox-swatch": string;
|
|
108
|
+
"tox-swatch--remove": string;
|
|
109
|
+
"tox-swatches__picker-btn": string;
|
|
110
|
+
"tox-comment": string;
|
|
111
|
+
"tox-comment--selected": string;
|
|
112
|
+
"tox-comment__single": string;
|
|
113
|
+
"tox-comment__header": string;
|
|
114
|
+
"tox-comment__date": string;
|
|
115
|
+
"tox-comment__body": string;
|
|
116
|
+
"tox-comment__body--expanded": string;
|
|
117
|
+
"tox-comment__body--pending": string;
|
|
118
|
+
"tox-comment__loading-text": string;
|
|
119
|
+
"tox-comment__overlaytext": string;
|
|
120
|
+
"tox-comment__expander": string;
|
|
121
|
+
"tox-comment__buttonspacing": string;
|
|
122
|
+
"tox-tbtn": string;
|
|
123
|
+
"tox-comment__mention-btn": string;
|
|
124
|
+
"tox-comment-thread": string;
|
|
125
|
+
"tox-comment-thread__overlay": string;
|
|
126
|
+
"tox-comment__reply": string;
|
|
127
|
+
"tox-comment__edit": string;
|
|
128
|
+
"tox-comment__gradient": string;
|
|
129
|
+
"tox-comment__overlay": string;
|
|
130
|
+
"tox-comment__busy-spinner": string;
|
|
131
|
+
"tox-comment__scroll": string;
|
|
132
|
+
"tox-comment--disappearing": string;
|
|
133
|
+
"tox-ring-loader": string;
|
|
134
|
+
"tox-rotation": string;
|
|
135
|
+
"tox-user": string;
|
|
136
|
+
"tox-user__avatar": string;
|
|
137
|
+
"tox-user__name": string;
|
|
138
|
+
"tox-dialog-wrap": string;
|
|
139
|
+
"tox-dialog-wrap__backdrop": string;
|
|
140
|
+
"tox-dialog-wrap__backdrop--opaque": string;
|
|
141
|
+
"tox-dialog": string;
|
|
142
|
+
"tox-dialog-inline": string;
|
|
143
|
+
"tox-dialog__header": string;
|
|
144
|
+
"tox-dialog__draghandle": string;
|
|
145
|
+
"tox-dialog__dismiss": string;
|
|
146
|
+
"tox-dialog__title": string;
|
|
147
|
+
"tox-dialog__body": string;
|
|
148
|
+
"tox-dialog__body-nav": string;
|
|
149
|
+
"tox-dialog__body-nav-item": string;
|
|
150
|
+
"tox-dialog__body-nav-item--active": string;
|
|
151
|
+
"tox-label": string;
|
|
152
|
+
"tox-label--center": string;
|
|
153
|
+
"tox-label--end": string;
|
|
154
|
+
"tox-dialog--width-lg": string;
|
|
155
|
+
"tox-dialog--fullscreen": string;
|
|
156
|
+
"tox-dialog--width-md": string;
|
|
157
|
+
"tox-dialog__body-content--centered": string;
|
|
158
|
+
"tox-dialog__footer": string;
|
|
159
|
+
"tox-dialog__footer-end": string;
|
|
160
|
+
"tox-dialog__footer-start": string;
|
|
161
|
+
"tox-dialog__busy-spinner": string;
|
|
162
|
+
"tox-dialog__table": string;
|
|
163
|
+
"tox-dialog__iframe": string;
|
|
164
|
+
"tox-dialog__iframe--opaque": string;
|
|
165
|
+
"tox-navobj-bordered": string;
|
|
166
|
+
"tox-navobj-bordered-focus": string;
|
|
167
|
+
"tox-dialog__popups": string;
|
|
168
|
+
"tox-dialog__body-iframe": string;
|
|
169
|
+
"tox-navobj": string;
|
|
170
|
+
"tox-dialog-dock-fadeout": string;
|
|
171
|
+
"tox-dialog-dock-fadein": string;
|
|
172
|
+
"tox-dialog-dock-transition": string;
|
|
173
|
+
"tox-dialog__disable-scroll": string;
|
|
174
|
+
"tox-dropzone-container": string;
|
|
175
|
+
"tox-dropzone": string;
|
|
176
|
+
"tox-edit-area": string;
|
|
177
|
+
"tox-edit-area__iframe": string;
|
|
178
|
+
"tox-edit-focus": string;
|
|
179
|
+
"tox-inline-edit-area": string;
|
|
180
|
+
"tox-control-wrap": string;
|
|
181
|
+
"tox-control-wrap--status-invalid": string;
|
|
182
|
+
"tox-control-wrap--status-unknown": string;
|
|
183
|
+
"tox-control-wrap__status-icon-unknown": string;
|
|
184
|
+
"tox-control-wrap--status-valid": string;
|
|
185
|
+
"tox-control-wrap__status-icon-valid": string;
|
|
186
|
+
"tox-control-wrap__status-icon-wrap": string;
|
|
187
|
+
"tox-textfield": string;
|
|
188
|
+
"tox-custom-preview": string;
|
|
189
|
+
"tox-autocompleter": string;
|
|
190
|
+
"tox-menu": string;
|
|
191
|
+
"tox-autocompleter-highlight": string;
|
|
192
|
+
"tox-color-input": string;
|
|
193
|
+
"tox-toolbar-label": string;
|
|
194
|
+
"tox-form": string;
|
|
195
|
+
"tox-form-group--maximize": string;
|
|
196
|
+
"tox-form__group--collection": string;
|
|
197
|
+
"tox-form__grid--2col": string;
|
|
198
|
+
"tox-form__grid--3col": string;
|
|
199
|
+
"tox-form__grid--4col": string;
|
|
200
|
+
"tox-form__controls-h-stack": string;
|
|
201
|
+
"tox-form__group--inline": string;
|
|
202
|
+
"tox-form__group--stretched": string;
|
|
203
|
+
"tox-textarea": string;
|
|
204
|
+
"tox-lock": string;
|
|
205
|
+
"tox-locked": string;
|
|
206
|
+
"tox-lock-icon__unlock": string;
|
|
207
|
+
"tox-lock-icon__lock": string;
|
|
208
|
+
"tox-lock-context-form-size-input": string;
|
|
209
|
+
"tox-listboxfield": string;
|
|
210
|
+
"tox-listbox--select": string;
|
|
211
|
+
"tox-textarea-wrap": string;
|
|
212
|
+
"tox-toolbar-textfield": string;
|
|
213
|
+
"tox-custom-editor": string;
|
|
214
|
+
"tox-focusable-wrapper": string;
|
|
215
|
+
"tox-naked-btn": string;
|
|
216
|
+
"tox-textfield-size": string;
|
|
217
|
+
"tox-listbox__select-label": string;
|
|
218
|
+
"tox-listbox__select-chevron": string;
|
|
219
|
+
"tox-selectfield": string;
|
|
220
|
+
"tox-fullscreen": string;
|
|
221
|
+
"tox-statusbar__resize-handle": string;
|
|
222
|
+
"tox-shadowhost": string;
|
|
223
|
+
"tox-help__more-link": string;
|
|
224
|
+
"tox-imagepreview": string;
|
|
225
|
+
"tox-imagepreview__loaded": string;
|
|
226
|
+
"tox-imagepreview__container": string;
|
|
227
|
+
"tox-imagepreview__image": string;
|
|
228
|
+
"tox-image-tools": string;
|
|
229
|
+
"tox-spacer": string;
|
|
230
|
+
"tox-croprect-block": string;
|
|
231
|
+
"tox-croprect-handle": string;
|
|
232
|
+
"tox-croprect-handle-move": string;
|
|
233
|
+
"tox-croprect-handle-nw": string;
|
|
234
|
+
"tox-croprect-handle-ne": string;
|
|
235
|
+
"tox-croprect-handle-sw": string;
|
|
236
|
+
"tox-croprect-handle-se": string;
|
|
237
|
+
"tox-image-selector-loading-spinner-wrapper": string;
|
|
238
|
+
"tox-image-selector-loading-spinner": string;
|
|
239
|
+
"tox-image-selector": string;
|
|
240
|
+
"tox-image-selector--remove": string;
|
|
241
|
+
"tox-image-selector-image-wrapper": string;
|
|
242
|
+
"tox-image-selector-image-img": string;
|
|
243
|
+
"tox-image-selector__picker-btn": string;
|
|
244
|
+
"tox-context-toolbar": string;
|
|
245
|
+
"tox-toolbar__group": string;
|
|
246
|
+
"tox-insert-table-picker": string;
|
|
247
|
+
"tox-insert-table-picker__selected": string;
|
|
248
|
+
"tox-insert-table-picker__label": string;
|
|
249
|
+
"tox-mentions__card-common": string;
|
|
250
|
+
"tox-mentions__card": string;
|
|
251
|
+
"tox-mentions__container": string;
|
|
252
|
+
"tox-mentions__avatar": string;
|
|
253
|
+
"tox-mentions__username": string;
|
|
254
|
+
"tox-mentions__description": string;
|
|
255
|
+
"tox-menu__label": string;
|
|
256
|
+
"tox-menubar": string;
|
|
257
|
+
"tox-promotion": string;
|
|
258
|
+
"tox-promotion-link": string;
|
|
259
|
+
"tox-mbtn": string;
|
|
260
|
+
"tox-mbtn--active": string;
|
|
261
|
+
"tox-mbtn__select-label": string;
|
|
262
|
+
"tox-mbtn__select-chevron": string;
|
|
263
|
+
"tox-notification": string;
|
|
264
|
+
"tox-notification--in": string;
|
|
265
|
+
"tox-notification--success": string;
|
|
266
|
+
"tox-notification--error": string;
|
|
267
|
+
"tox-notification--warn": string;
|
|
268
|
+
"tox-notification--warning": string;
|
|
269
|
+
"tox-notification--info": string;
|
|
270
|
+
"tox-notification__body": string;
|
|
271
|
+
"tox-notification__icon": string;
|
|
272
|
+
"tox-notification__dismiss": string;
|
|
273
|
+
"tox-progress-bar": string;
|
|
274
|
+
"tox-notification-container-dock-fadeout": string;
|
|
275
|
+
"tox-notification-container-dock-fadein": string;
|
|
276
|
+
"tox-notification-container-dock-transition": string;
|
|
277
|
+
"tox-onboarding-overlay": string;
|
|
278
|
+
"tox-onboarding-dialog": string;
|
|
279
|
+
"tox-onboarding-header": string;
|
|
280
|
+
"tox-onboarding-step": string;
|
|
281
|
+
"tox-onboarding-step--number": string;
|
|
282
|
+
"tox-onboarding-step--body": string;
|
|
283
|
+
"tox-onboarding-step--body-header": string;
|
|
284
|
+
"tox-onboarding-step--body-details": string;
|
|
285
|
+
"tox-onboarding-step--action": string;
|
|
286
|
+
"tox-onboarding-footer": string;
|
|
287
|
+
"tox-promotion-dialog": string;
|
|
288
|
+
"tox-promotion-dialog-plugin": string;
|
|
289
|
+
"tox-promotion-dialog-plugin--body": string;
|
|
290
|
+
"tox-promotion-dialog-plugin-header": string;
|
|
291
|
+
"tox-promotion-dialog-plugin-details": string;
|
|
292
|
+
"tox-promotion-dialog-plugin--icon": string;
|
|
293
|
+
"tox-promotion-dialog--subtitle": string;
|
|
294
|
+
"tox-promotion-dialog--explore": string;
|
|
295
|
+
"tox-promotion-dialog--footer": string;
|
|
296
|
+
"tox-promotion-button": string;
|
|
297
|
+
"tox-pop": string;
|
|
298
|
+
"tox-pop--resizing": string;
|
|
299
|
+
"tox-pop--transition": string;
|
|
300
|
+
"tox-pop__dialog": string;
|
|
301
|
+
"tox-pop--inset": string;
|
|
302
|
+
"tox-pop--bottom": string;
|
|
303
|
+
"tox-pop--top": string;
|
|
304
|
+
"tox-pop--left": string;
|
|
305
|
+
"tox-pop--right": string;
|
|
306
|
+
"tox-pop--align-left": string;
|
|
307
|
+
"tox-pop--align-right": string;
|
|
308
|
+
"tox-sidebar-wrap": string;
|
|
309
|
+
"tox-sidebar": string;
|
|
310
|
+
"tox-sidebar__slider": string;
|
|
311
|
+
"tox-sidebar__pane-container": string;
|
|
312
|
+
"tox-sidebar__pane": string;
|
|
313
|
+
"tox-sidebar--sliding-closed": string;
|
|
314
|
+
"tox-sidebar--sliding-open": string;
|
|
315
|
+
"tox-sidebar--sliding-growing": string;
|
|
316
|
+
"tox-sidebar--sliding-shrinking": string;
|
|
317
|
+
"tox-sidebar-content": string;
|
|
318
|
+
"tox-sidebar-content__header": string;
|
|
319
|
+
"tox-sidebar-content__header-close-button": string;
|
|
320
|
+
"tox-sidebar-content__title": string;
|
|
321
|
+
"tox-floating-sidebar": string;
|
|
322
|
+
"tox-floating-sidebar__content-wrapper": string;
|
|
323
|
+
"tox-floating-sidebar__header": string;
|
|
324
|
+
"tox-ai": string;
|
|
325
|
+
"tox-ai__user-prompt": string;
|
|
326
|
+
"tox-ai__user-prompt__context": string;
|
|
327
|
+
"tox-ai__user-prompt__text": string;
|
|
328
|
+
"tox-ai__scroll": string;
|
|
329
|
+
"tox-ai__response-content": string;
|
|
330
|
+
"tox-ai__response": string;
|
|
331
|
+
"tox-ai__response-streaming": string;
|
|
332
|
+
"tox-ai__error-message": string;
|
|
333
|
+
"tox-ai__footer": string;
|
|
334
|
+
"tox-ai__context": string;
|
|
335
|
+
"tox-ai__footer-actions": string;
|
|
336
|
+
"tox-selector": string;
|
|
337
|
+
"tox-platform-touch": string;
|
|
338
|
+
"tox-skeleton": string;
|
|
339
|
+
"tox-skeleton__line": string;
|
|
340
|
+
"wave": string;
|
|
341
|
+
"tox-skeleton__circle": string;
|
|
342
|
+
"tox-slider": string;
|
|
343
|
+
"tox-slider__rail": string;
|
|
344
|
+
"tox-slider__handle": string;
|
|
345
|
+
"tox-toolbar-slider": string;
|
|
346
|
+
"tox-toolbar-slider__input": string;
|
|
347
|
+
"tox-source-code": string;
|
|
348
|
+
"tox-spinner": string;
|
|
349
|
+
"tam-bouncing-dots": string;
|
|
350
|
+
"tox-ai__spinner": string;
|
|
351
|
+
"tox-statusbar": string;
|
|
352
|
+
"tox-statusbar__path": string;
|
|
353
|
+
"tox-statusbar__right-container": string;
|
|
354
|
+
"tox-statusbar__help-text": string;
|
|
355
|
+
"tox-statusbar__text-container": string;
|
|
356
|
+
"tox-statusbar__text-container-3-cols": string;
|
|
357
|
+
"tox-statusbar__text-container--flex-end": string;
|
|
358
|
+
"tox-statusbar__text-container--flex-start": string;
|
|
359
|
+
"tox-statusbar__text-container--space-around": string;
|
|
360
|
+
"tox-statusbar__wordcount": string;
|
|
361
|
+
"tox-statusbar__path-item": string;
|
|
362
|
+
"tox-statusbar__branding": string;
|
|
363
|
+
"tox-statusbar__resize-cursor-default": string;
|
|
364
|
+
"tox-statusbar__resize-cursor-both": string;
|
|
365
|
+
"tox-tag": string;
|
|
366
|
+
"tox-tag__icon": string;
|
|
367
|
+
"tox-tag__close": string;
|
|
368
|
+
"tox-throbber": string;
|
|
369
|
+
"tox-throbber__busy-spinner": string;
|
|
370
|
+
"tox-toggle": string;
|
|
371
|
+
"tox-toggle__slider": string;
|
|
372
|
+
"tox-tbtn__icon-wrap": string;
|
|
373
|
+
"tox-tbtn--active": string;
|
|
374
|
+
"tox-tbtn--enabled": string;
|
|
375
|
+
"tox-tbtn--disabled": string;
|
|
376
|
+
"tox-tbtn-more": string;
|
|
377
|
+
"tox-tbtn--md": string;
|
|
378
|
+
"tox-tbtn--lg": string;
|
|
379
|
+
"tox-tbtn--return": string;
|
|
380
|
+
"tox-tbtn--labeled": string;
|
|
381
|
+
"tox-tbtn__vlabel": string;
|
|
382
|
+
"tox-label--context-toolbar": string;
|
|
383
|
+
"tox-number-input": string;
|
|
384
|
+
"tox-input-wrapper": string;
|
|
385
|
+
"minus": string;
|
|
386
|
+
"plus": string;
|
|
387
|
+
"tox-tbtn--select": string;
|
|
388
|
+
"tox-tbtn--bordered": string;
|
|
389
|
+
"tox-tbtn__select-label": string;
|
|
390
|
+
"tox-tbtn__select-chevron": string;
|
|
391
|
+
"tox-tbtn--bespoke": string;
|
|
392
|
+
"tox-split-button__main": string;
|
|
393
|
+
"tox-split-button__chevron": string;
|
|
394
|
+
"tox-icon-highlight-bg-color__color": string;
|
|
395
|
+
"tox-icon-text-color__color": string;
|
|
396
|
+
"tox-toolbar-overlord": string;
|
|
397
|
+
"tox-toolbar__overflow--closed": string;
|
|
398
|
+
"tox-toolbar__overflow--growing": string;
|
|
399
|
+
"tox-toolbar__overflow--shrinking": string;
|
|
400
|
+
"tox-toolbar--scrolling": string;
|
|
401
|
+
"tox-toolbar--no-divider": string;
|
|
402
|
+
"tox-toolbar__group--pull-right": string;
|
|
403
|
+
"tox-tooltip": string;
|
|
404
|
+
"tox-tooltip__body": string;
|
|
405
|
+
"tox-tooltip__arrow": string;
|
|
406
|
+
"tox-tooltip--down": string;
|
|
407
|
+
"tox-tooltip--up": string;
|
|
408
|
+
"tox-tooltip--right": string;
|
|
409
|
+
"tox-tooltip--left": string;
|
|
410
|
+
"tox-tree": string;
|
|
411
|
+
"tox-trbtn": string;
|
|
412
|
+
"tox-tree__label": string;
|
|
413
|
+
"tox-trbtn--disabled": string;
|
|
414
|
+
"tox-trbtn--enabled": string;
|
|
415
|
+
"tox-trbtn--return": string;
|
|
416
|
+
"tox-trbtn--labeled": string;
|
|
417
|
+
"tox-trbtn__vlabel": string;
|
|
418
|
+
"tox-tree--directory": string;
|
|
419
|
+
"tox-tree--directory__label": string;
|
|
420
|
+
"tox-chevron": string;
|
|
421
|
+
"tox-tree--directory__children--growing": string;
|
|
422
|
+
"tox-tree--directory__children--shrinking": string;
|
|
423
|
+
"tox-tree--directory__children--open": string;
|
|
424
|
+
"tox-tree--leaf__label": string;
|
|
425
|
+
"tox-icon-custom-state": string;
|
|
426
|
+
"tox-tree--directory__children": string;
|
|
427
|
+
"color-swatch-remove-color": string;
|
|
428
|
+
"tox-view-wrap": string;
|
|
429
|
+
"tox-view-wrap__slot-container": string;
|
|
430
|
+
"tox-view": string;
|
|
431
|
+
"tox-view__header": string;
|
|
432
|
+
"tox-view__label": string;
|
|
433
|
+
"tox-view__label--normal": string;
|
|
434
|
+
"tox-view__label--large": string;
|
|
435
|
+
"tox-view--mobile": string;
|
|
436
|
+
"tox-view__toolbar": string;
|
|
437
|
+
"tox-view--scrolling": string;
|
|
438
|
+
"tox-view__align-right": string;
|
|
439
|
+
"tox-view__toolbar__group": string;
|
|
440
|
+
"tox-view__header-end": string;
|
|
441
|
+
"tox-view__header-start": string;
|
|
442
|
+
"tox-view__pane": string;
|
|
443
|
+
"tox-view__pane_panel": string;
|
|
444
|
+
"tox-well": string;
|
|
445
|
+
"tox-revisionhistory__pane": string;
|
|
446
|
+
"tox-revisionhistory__container": string;
|
|
447
|
+
"tox-revisionhistory": string;
|
|
448
|
+
"tox-revisionhistory__iframe": string;
|
|
449
|
+
"tox-revisionhistory__sidebar": string;
|
|
450
|
+
"tox-revisionhistory__sidebar-title": string;
|
|
451
|
+
"tox-revisionhistory__revisions": string;
|
|
452
|
+
"tox-revisionhistory__card": string;
|
|
453
|
+
"tox-revisionhistory__card--selected": string;
|
|
454
|
+
"tox-revisionhistory__card-label": string;
|
|
455
|
+
"tox-revisionhistory__card-content": string;
|
|
456
|
+
"tox-revisionhistory__card-info": string;
|
|
457
|
+
"tox-revisionhistory__card-date-label": string;
|
|
458
|
+
"tox-revisionhistory__card-author-name": string;
|
|
459
|
+
"tox-revisionhistory__avatar": string;
|
|
460
|
+
"tox-revisionhistory__norevision": string;
|
|
461
|
+
"tox-revisionhistory__card-check-icon": string;
|
|
462
|
+
"tox-icon--badge": string;
|
|
463
|
+
"tox-suggestededits__pane": string;
|
|
464
|
+
"tox-suggestededits__sink": string;
|
|
465
|
+
"tox-tiered-menu": string;
|
|
466
|
+
"tox-suggestededits__container": string;
|
|
467
|
+
"tox-suggestededits": string;
|
|
468
|
+
"tox-suggestededits__content": string;
|
|
469
|
+
"tox-suggestededits__model": string;
|
|
470
|
+
"tox-suggestededits__iframe": string;
|
|
471
|
+
"tox-suggestededits__sidebar": string;
|
|
472
|
+
"tox-suggestededits__sidebar-header": string;
|
|
473
|
+
"tox-suggestededits__sidebar-content": string;
|
|
474
|
+
"tox-suggestededits__card": string;
|
|
475
|
+
"tox-suggestededits__card--divider": string;
|
|
476
|
+
"tox-suggestededits__card--editor": string;
|
|
477
|
+
"tox-suggestededits__card--single": string;
|
|
478
|
+
"tox-suggestededits__card--header": string;
|
|
479
|
+
"tox-suggestededits__card--user": string;
|
|
480
|
+
"tox-suggestededits__card--avatar": string;
|
|
481
|
+
"tox-suggestededits__card--details": string;
|
|
482
|
+
"tox-suggestededits__card--name": string;
|
|
483
|
+
"tox-suggestededits__card--feedback-user": string;
|
|
484
|
+
"tox-suggestededits__card--timestamp": string;
|
|
485
|
+
"tox-suggestededits__resolution": string;
|
|
486
|
+
"tox-suggestededits__resolution--accepted": string;
|
|
487
|
+
"tox-suggestededits__resolution--rejected": string;
|
|
488
|
+
"tox-suggestededits__card--content": string;
|
|
489
|
+
"tox-suggestededits__operations": string;
|
|
490
|
+
"tox-suggestededits__operations-bar": string;
|
|
491
|
+
"tox-suggestededits__operations-bar--insert": string;
|
|
492
|
+
"tox-suggestededits__operations-bar--modify": string;
|
|
493
|
+
"tox-suggestededits__operations-bar--remove": string;
|
|
494
|
+
"tox-suggestededits__operations-text": string;
|
|
495
|
+
"tox-suggestededits__card--feedback": string;
|
|
496
|
+
"tox-suggestededits__card--textarea": string;
|
|
497
|
+
"tox-suggestededits__card--footer": string;
|
|
498
|
+
"tox-suggestededits__card--buttons": string;
|
|
499
|
+
"tox-suggestededits__card--review-buttons": string;
|
|
500
|
+
"tox-suggestededits__card--feedback-buttons": string;
|
|
501
|
+
"tox-suggestededits__card--hidden": string;
|
|
502
|
+
"tox-suggestededits__card--resolved": string;
|
|
503
|
+
"tox-suggestededits__card--active": string;
|
|
504
|
+
"tox-dialog-loading": string;
|
|
505
|
+
"tox-tab": string;
|
|
506
|
+
"tox-dialog__content-js": string;
|
|
507
|
+
"tox-split-button": string;
|
|
508
|
+
};
|