commspliant-html-editor 0.0.5 → 0.0.7
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/README.md +2 -1
- package/dist/chrome/ChromeTheme.d.ts +14 -0
- package/dist/chrome/ChromeTheme.d.ts.map +1 -0
- package/dist/commspliant-html-editor.css +1 -0
- package/dist/components/Editor.d.ts +3 -0
- package/dist/components/Editor.d.ts.map +1 -0
- package/dist/components/HtmlSurface.d.ts +9 -0
- package/dist/components/HtmlSurface.d.ts.map +1 -0
- package/dist/components/MultiPageVisualSurface.d.ts +22 -0
- package/dist/components/MultiPageVisualSurface.d.ts.map +1 -0
- package/dist/components/VisualSurface.d.ts +14 -0
- package/dist/components/VisualSurface.d.ts.map +1 -0
- package/dist/core/audio.d.ts +16 -0
- package/dist/core/audio.d.ts.map +1 -0
- package/dist/core/blockFormat.d.ts +10 -0
- package/dist/core/blockFormat.d.ts.map +1 -0
- package/dist/core/blocks.d.ts +19 -0
- package/dist/core/blocks.d.ts.map +1 -0
- package/dist/core/bookmark.d.ts +10 -0
- package/dist/core/bookmark.d.ts.map +1 -0
- package/dist/core/cellProperties.d.ts +22 -0
- package/dist/core/cellProperties.d.ts.map +1 -0
- package/dist/core/clearFormatting.d.ts +2 -0
- package/dist/core/clearFormatting.d.ts.map +1 -0
- package/dist/core/clipboard.d.ts +9 -0
- package/dist/core/clipboard.d.ts.map +1 -0
- package/dist/core/commandTypes.d.ts +332 -0
- package/dist/core/commandTypes.d.ts.map +1 -0
- package/dist/core/commands.d.ts +5 -0
- package/dist/core/commands.d.ts.map +1 -0
- package/dist/core/comments/anchors.d.ts +12 -0
- package/dist/core/comments/anchors.d.ts.map +1 -0
- package/dist/core/comments/constants.d.ts +5 -0
- package/dist/core/comments/constants.d.ts.map +1 -0
- package/dist/core/comments/sanitize.d.ts +2 -0
- package/dist/core/comments/sanitize.d.ts.map +1 -0
- package/dist/core/comments/threads.d.ts +6 -0
- package/dist/core/comments/threads.d.ts.map +1 -0
- package/dist/core/cssLength.d.ts +13 -0
- package/dist/core/cssLength.d.ts.map +1 -0
- package/dist/core/customActions.d.ts +12 -0
- package/dist/core/customActions.d.ts.map +1 -0
- package/dist/core/customCss.d.ts +15 -0
- package/dist/core/customCss.d.ts.map +1 -0
- package/dist/core/documentStyles.d.ts +4 -0
- package/dist/core/documentStyles.d.ts.map +1 -0
- package/dist/core/flowBreakInsert.d.ts +2 -0
- package/dist/core/flowBreakInsert.d.ts.map +1 -0
- package/dist/core/fontFamily.d.ts +40 -0
- package/dist/core/fontFamily.d.ts.map +1 -0
- package/dist/core/fontSize.d.ts +25 -0
- package/dist/core/fontSize.d.ts.map +1 -0
- package/dist/core/fontSizeUnits.d.ts +29 -0
- package/dist/core/fontSizeUnits.d.ts.map +1 -0
- package/dist/core/formatBrush.d.ts +10 -0
- package/dist/core/formatBrush.d.ts.map +1 -0
- package/dist/core/horizontalRule.d.ts +4 -0
- package/dist/core/horizontalRule.d.ts.map +1 -0
- package/dist/core/image.d.ts +19 -0
- package/dist/core/image.d.ts.map +1 -0
- package/dist/core/imageProperties.d.ts +35 -0
- package/dist/core/imageProperties.d.ts.map +1 -0
- package/dist/core/imageResize.d.ts +18 -0
- package/dist/core/imageResize.d.ts.map +1 -0
- package/dist/core/imageSize.d.ts +23 -0
- package/dist/core/imageSize.d.ts.map +1 -0
- package/dist/core/indent.d.ts +7 -0
- package/dist/core/indent.d.ts.map +1 -0
- package/dist/core/inlineColor.d.ts +23 -0
- package/dist/core/inlineColor.d.ts.map +1 -0
- package/dist/core/inlineRange.d.ts +10 -0
- package/dist/core/inlineRange.d.ts.map +1 -0
- package/dist/core/link.d.ts +18 -0
- package/dist/core/link.d.ts.map +1 -0
- package/dist/core/lists.d.ts +12 -0
- package/dist/core/lists.d.ts.map +1 -0
- package/dist/core/marks.d.ts +18 -0
- package/dist/core/marks.d.ts.map +1 -0
- package/dist/core/multiPage.d.ts +10 -0
- package/dist/core/multiPage.d.ts.map +1 -0
- package/dist/core/page.d.ts +14 -0
- package/dist/core/page.d.ts.map +1 -0
- package/dist/core/pageAtRule.d.ts +23 -0
- package/dist/core/pageAtRule.d.ts.map +1 -0
- package/dist/core/pageBackgroundImage.d.ts +16 -0
- package/dist/core/pageBackgroundImage.d.ts.map +1 -0
- package/dist/core/pageBreak.d.ts +5 -0
- package/dist/core/pageBreak.d.ts.map +1 -0
- package/dist/core/pageCanvasLayout.d.ts +19 -0
- package/dist/core/pageCanvasLayout.d.ts.map +1 -0
- package/dist/core/pageProperties.d.ts +8 -0
- package/dist/core/pageProperties.d.ts.map +1 -0
- package/dist/core/pageZoom.d.ts +9 -0
- package/dist/core/pageZoom.d.ts.map +1 -0
- package/dist/core/paragraphBox.d.ts +93 -0
- package/dist/core/paragraphBox.d.ts.map +1 -0
- package/dist/core/paragraphBreak.d.ts +19 -0
- package/dist/core/paragraphBreak.d.ts.map +1 -0
- package/dist/core/paragraphProperties.d.ts +17 -0
- package/dist/core/paragraphProperties.d.ts.map +1 -0
- package/dist/core/readAloud.d.ts +11 -0
- package/dist/core/readAloud.d.ts.map +1 -0
- package/dist/core/rowProperties.d.ts +17 -0
- package/dist/core/rowProperties.d.ts.map +1 -0
- package/dist/core/selection.d.ts +25 -0
- package/dist/core/selection.d.ts.map +1 -0
- package/dist/core/table.d.ts +34 -0
- package/dist/core/table.d.ts.map +1 -0
- package/dist/core/tableGrid.d.ts +40 -0
- package/dist/core/tableGrid.d.ts.map +1 -0
- package/dist/core/tableProperties.d.ts +18 -0
- package/dist/core/tableProperties.d.ts.map +1 -0
- package/dist/core/textAlign.d.ts +11 -0
- package/dist/core/textAlign.d.ts.map +1 -0
- package/dist/core/youtube.d.ts +20 -0
- package/dist/core/youtube.d.ts.map +1 -0
- package/dist/hooks/useAutoSave.d.ts +9 -0
- package/dist/hooks/useAutoSave.d.ts.map +1 -0
- package/dist/hooks/useControllableState.d.ts +8 -0
- package/dist/hooks/useControllableState.d.ts.map +1 -0
- package/dist/i18n/LocaleProvider.d.ts +11 -0
- package/dist/i18n/LocaleProvider.d.ts.map +1 -0
- package/dist/i18n/en.d.ts +3 -0
- package/dist/i18n/en.d.ts.map +1 -0
- package/dist/i18n/es.d.ts +3 -0
- package/dist/i18n/es.d.ts.map +1 -0
- package/dist/i18n/types.d.ts +468 -0
- package/dist/i18n/types.d.ts.map +1 -0
- package/dist/icons/AlignCenterIcon.d.ts +3 -0
- package/dist/icons/AlignCenterIcon.d.ts.map +1 -0
- package/dist/icons/AlignJustifyIcon.d.ts +3 -0
- package/dist/icons/AlignJustifyIcon.d.ts.map +1 -0
- package/dist/icons/AlignLeftIcon.d.ts +3 -0
- package/dist/icons/AlignLeftIcon.d.ts.map +1 -0
- package/dist/icons/AlignRightIcon.d.ts +3 -0
- package/dist/icons/AlignRightIcon.d.ts.map +1 -0
- package/dist/icons/AudioIcon.d.ts +3 -0
- package/dist/icons/AudioIcon.d.ts.map +1 -0
- package/dist/icons/BoldIcon.d.ts +3 -0
- package/dist/icons/BoldIcon.d.ts.map +1 -0
- package/dist/icons/BookmarkIcon.d.ts +3 -0
- package/dist/icons/BookmarkIcon.d.ts.map +1 -0
- package/dist/icons/BulletListIcon.d.ts +3 -0
- package/dist/icons/BulletListIcon.d.ts.map +1 -0
- package/dist/icons/CellPropertiesIcon.d.ts +3 -0
- package/dist/icons/CellPropertiesIcon.d.ts.map +1 -0
- package/dist/icons/ClearFormattingIcon.d.ts +3 -0
- package/dist/icons/ClearFormattingIcon.d.ts.map +1 -0
- package/dist/icons/CloseIcon.d.ts +3 -0
- package/dist/icons/CloseIcon.d.ts.map +1 -0
- package/dist/icons/CommentIcon.d.ts +3 -0
- package/dist/icons/CommentIcon.d.ts.map +1 -0
- package/dist/icons/CommentsVisibleIcon.d.ts +3 -0
- package/dist/icons/CommentsVisibleIcon.d.ts.map +1 -0
- package/dist/icons/CommspliantShieldIcon.d.ts +3 -0
- package/dist/icons/CommspliantShieldIcon.d.ts.map +1 -0
- package/dist/icons/CustomActionIcon.d.ts +3 -0
- package/dist/icons/CustomActionIcon.d.ts.map +1 -0
- package/dist/icons/CustomCssIcon.d.ts +3 -0
- package/dist/icons/CustomCssIcon.d.ts.map +1 -0
- package/dist/icons/CustomizeToolbarIcon.d.ts +3 -0
- package/dist/icons/CustomizeToolbarIcon.d.ts.map +1 -0
- package/dist/icons/DarkModeIcon.d.ts +3 -0
- package/dist/icons/DarkModeIcon.d.ts.map +1 -0
- package/dist/icons/FontColorIcon.d.ts +3 -0
- package/dist/icons/FontColorIcon.d.ts.map +1 -0
- package/dist/icons/FontFamilyIcon.d.ts +3 -0
- package/dist/icons/FontFamilyIcon.d.ts.map +1 -0
- package/dist/icons/FontPropertiesIcon.d.ts +3 -0
- package/dist/icons/FontPropertiesIcon.d.ts.map +1 -0
- package/dist/icons/FontSizeIcon.d.ts +3 -0
- package/dist/icons/FontSizeIcon.d.ts.map +1 -0
- package/dist/icons/FormatBrushIcon.d.ts +3 -0
- package/dist/icons/FormatBrushIcon.d.ts.map +1 -0
- package/dist/icons/FullscreenIcon.d.ts +3 -0
- package/dist/icons/FullscreenIcon.d.ts.map +1 -0
- package/dist/icons/HighlightColorIcon.d.ts +3 -0
- package/dist/icons/HighlightColorIcon.d.ts.map +1 -0
- package/dist/icons/HorizontalRuleIcon.d.ts +3 -0
- package/dist/icons/HorizontalRuleIcon.d.ts.map +1 -0
- package/dist/icons/HtmlIcon.d.ts +3 -0
- package/dist/icons/HtmlIcon.d.ts.map +1 -0
- package/dist/icons/ImageIcon.d.ts +3 -0
- package/dist/icons/ImageIcon.d.ts.map +1 -0
- package/dist/icons/IndentIcon.d.ts +3 -0
- package/dist/icons/IndentIcon.d.ts.map +1 -0
- package/dist/icons/ItalicIcon.d.ts +3 -0
- package/dist/icons/ItalicIcon.d.ts.map +1 -0
- package/dist/icons/LightModeIcon.d.ts +3 -0
- package/dist/icons/LightModeIcon.d.ts.map +1 -0
- package/dist/icons/LinkIcon.d.ts +3 -0
- package/dist/icons/LinkIcon.d.ts.map +1 -0
- package/dist/icons/MenuIcon.d.ts +3 -0
- package/dist/icons/MenuIcon.d.ts.map +1 -0
- package/dist/icons/MergeCellsIcon.d.ts +3 -0
- package/dist/icons/MergeCellsIcon.d.ts.map +1 -0
- package/dist/icons/NumberedListIcon.d.ts +3 -0
- package/dist/icons/NumberedListIcon.d.ts.map +1 -0
- package/dist/icons/OpenIcon.d.ts +3 -0
- package/dist/icons/OpenIcon.d.ts.map +1 -0
- package/dist/icons/OutdentIcon.d.ts +3 -0
- package/dist/icons/OutdentIcon.d.ts.map +1 -0
- package/dist/icons/PageBreakIcon.d.ts +3 -0
- package/dist/icons/PageBreakIcon.d.ts.map +1 -0
- package/dist/icons/PagePropertiesIcon.d.ts +3 -0
- package/dist/icons/PagePropertiesIcon.d.ts.map +1 -0
- package/dist/icons/ParagraphPropertiesIcon.d.ts +3 -0
- package/dist/icons/ParagraphPropertiesIcon.d.ts.map +1 -0
- package/dist/icons/ParagraphStyleIcon.d.ts +3 -0
- package/dist/icons/ParagraphStyleIcon.d.ts.map +1 -0
- package/dist/icons/PlusIcon.d.ts +3 -0
- package/dist/icons/PlusIcon.d.ts.map +1 -0
- package/dist/icons/PreviewIcon.d.ts +3 -0
- package/dist/icons/PreviewIcon.d.ts.map +1 -0
- package/dist/icons/PrintIcon.d.ts +3 -0
- package/dist/icons/PrintIcon.d.ts.map +1 -0
- package/dist/icons/ReadAloudIcon.d.ts +3 -0
- package/dist/icons/ReadAloudIcon.d.ts.map +1 -0
- package/dist/icons/RedoIcon.d.ts +3 -0
- package/dist/icons/RedoIcon.d.ts.map +1 -0
- package/dist/icons/RowPropertiesIcon.d.ts +3 -0
- package/dist/icons/RowPropertiesIcon.d.ts.map +1 -0
- package/dist/icons/SaveIcon.d.ts +3 -0
- package/dist/icons/SaveIcon.d.ts.map +1 -0
- package/dist/icons/StrikethroughIcon.d.ts +3 -0
- package/dist/icons/StrikethroughIcon.d.ts.map +1 -0
- package/dist/icons/TableColumnIcon.d.ts +3 -0
- package/dist/icons/TableColumnIcon.d.ts.map +1 -0
- package/dist/icons/TableIcon.d.ts +3 -0
- package/dist/icons/TableIcon.d.ts.map +1 -0
- package/dist/icons/TableRowIcon.d.ts +3 -0
- package/dist/icons/TableRowIcon.d.ts.map +1 -0
- package/dist/icons/UnderlineIcon.d.ts +3 -0
- package/dist/icons/UnderlineIcon.d.ts.map +1 -0
- package/dist/icons/UndoIcon.d.ts +3 -0
- package/dist/icons/UndoIcon.d.ts.map +1 -0
- package/dist/icons/UnmergeCellsIcon.d.ts +3 -0
- package/dist/icons/UnmergeCellsIcon.d.ts.map +1 -0
- package/dist/icons/VisualIcon.d.ts +3 -0
- package/dist/icons/VisualIcon.d.ts.map +1 -0
- package/dist/icons/YoutubeIcon.d.ts +3 -0
- package/dist/icons/YoutubeIcon.d.ts.map +1 -0
- package/dist/icons/index.d.ts +59 -0
- package/dist/icons/index.d.ts.map +1 -0
- package/dist/icons/types.d.ts +4 -0
- package/dist/icons/types.d.ts.map +1 -0
- package/dist/index.cjs +96 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +18324 -0
- package/dist/modules/comments/CommentPanel.d.ts +13 -0
- package/dist/modules/comments/CommentPanel.d.ts.map +1 -0
- package/dist/modules/comments/catalog.d.ts +4 -0
- package/dist/modules/comments/catalog.d.ts.map +1 -0
- package/dist/modules/comments/commands.d.ts +4 -0
- package/dist/modules/comments/commands.d.ts.map +1 -0
- package/dist/modules/comments/index.d.ts +4 -0
- package/dist/modules/comments/index.d.ts.map +1 -0
- package/dist/modules/contextMenu/ContextMenu.d.ts +15 -0
- package/dist/modules/contextMenu/ContextMenu.d.ts.map +1 -0
- package/dist/modules/contextMenu/commands.d.ts +3 -0
- package/dist/modules/contextMenu/commands.d.ts.map +1 -0
- package/dist/modules/contextMenu/index.d.ts +5 -0
- package/dist/modules/contextMenu/index.d.ts.map +1 -0
- package/dist/modules/contextMenu/shouldOpenEditorContextMenu.d.ts +6 -0
- package/dist/modules/contextMenu/shouldOpenEditorContextMenu.d.ts.map +1 -0
- package/dist/modules/file/catalog.d.ts +3 -0
- package/dist/modules/file/catalog.d.ts.map +1 -0
- package/dist/modules/file/commands.d.ts +3 -0
- package/dist/modules/file/commands.d.ts.map +1 -0
- package/dist/modules/file/fileDialogs.d.ts +3 -0
- package/dist/modules/file/fileDialogs.d.ts.map +1 -0
- package/dist/modules/file/htmlFile.d.ts +5 -0
- package/dist/modules/file/htmlFile.d.ts.map +1 -0
- package/dist/modules/file/index.d.ts +4 -0
- package/dist/modules/file/index.d.ts.map +1 -0
- package/dist/modules/file/printHtml.d.ts +3 -0
- package/dist/modules/file/printHtml.d.ts.map +1 -0
- package/dist/modules/file/useHtmlFileDrop.d.ts +14 -0
- package/dist/modules/file/useHtmlFileDrop.d.ts.map +1 -0
- package/dist/modules/format/ColorField.d.ts +11 -0
- package/dist/modules/format/ColorField.d.ts.map +1 -0
- package/dist/modules/format/ColorPicker.d.ts +13 -0
- package/dist/modules/format/ColorPicker.d.ts.map +1 -0
- package/dist/modules/format/ColorSelect.d.ts +16 -0
- package/dist/modules/format/ColorSelect.d.ts.map +1 -0
- package/dist/modules/format/CustomCssDialog.d.ts +9 -0
- package/dist/modules/format/CustomCssDialog.d.ts.map +1 -0
- package/dist/modules/format/CustomParagraphStyleDialog.d.ts +21 -0
- package/dist/modules/format/CustomParagraphStyleDialog.d.ts.map +1 -0
- package/dist/modules/format/FontColorSelect.d.ts +3 -0
- package/dist/modules/format/FontColorSelect.d.ts.map +1 -0
- package/dist/modules/format/FontFamilyList.d.ts +16 -0
- package/dist/modules/format/FontFamilyList.d.ts.map +1 -0
- package/dist/modules/format/FontFamilySelect.d.ts +15 -0
- package/dist/modules/format/FontFamilySelect.d.ts.map +1 -0
- package/dist/modules/format/FontPropertiesDialog.d.ts +24 -0
- package/dist/modules/format/FontPropertiesDialog.d.ts.map +1 -0
- package/dist/modules/format/FontPropertiesFields.d.ts +12 -0
- package/dist/modules/format/FontPropertiesFields.d.ts.map +1 -0
- package/dist/modules/format/FontSizeCombobox.d.ts +13 -0
- package/dist/modules/format/FontSizeCombobox.d.ts.map +1 -0
- package/dist/modules/format/FontSizeSelect.d.ts +3 -0
- package/dist/modules/format/FontSizeSelect.d.ts.map +1 -0
- package/dist/modules/format/HighlightColorSelect.d.ts +4 -0
- package/dist/modules/format/HighlightColorSelect.d.ts.map +1 -0
- package/dist/modules/format/LengthField.d.ts +12 -0
- package/dist/modules/format/LengthField.d.ts.map +1 -0
- package/dist/modules/format/PageAtRuleFields.d.ts +9 -0
- package/dist/modules/format/PageAtRuleFields.d.ts.map +1 -0
- package/dist/modules/format/PageBackgroundImageFields.d.ts +11 -0
- package/dist/modules/format/PageBackgroundImageFields.d.ts.map +1 -0
- package/dist/modules/format/PagePropertiesDialog.d.ts +18 -0
- package/dist/modules/format/PagePropertiesDialog.d.ts.map +1 -0
- package/dist/modules/format/ParagraphPropertiesDialog.d.ts +12 -0
- package/dist/modules/format/ParagraphPropertiesDialog.d.ts.map +1 -0
- package/dist/modules/format/ParagraphPropertiesFields.d.ts +19 -0
- package/dist/modules/format/ParagraphPropertiesFields.d.ts.map +1 -0
- package/dist/modules/format/ParagraphStyleList.d.ts +22 -0
- package/dist/modules/format/ParagraphStyleList.d.ts.map +1 -0
- package/dist/modules/format/ParagraphStyleSelect.d.ts +4 -0
- package/dist/modules/format/ParagraphStyleSelect.d.ts.map +1 -0
- package/dist/modules/format/ShadowFields.d.ts +8 -0
- package/dist/modules/format/ShadowFields.d.ts.map +1 -0
- package/dist/modules/format/catalog.d.ts +3 -0
- package/dist/modules/format/catalog.d.ts.map +1 -0
- package/dist/modules/format/colorModel.d.ts +22 -0
- package/dist/modules/format/colorModel.d.ts.map +1 -0
- package/dist/modules/format/colorPalette.d.ts +3 -0
- package/dist/modules/format/colorPalette.d.ts.map +1 -0
- package/dist/modules/format/commands.d.ts +4 -0
- package/dist/modules/format/commands.d.ts.map +1 -0
- package/dist/modules/format/fontDialog.d.ts +9 -0
- package/dist/modules/format/fontDialog.d.ts.map +1 -0
- package/dist/modules/format/fontSize.d.ts +2 -0
- package/dist/modules/format/fontSize.d.ts.map +1 -0
- package/dist/modules/format/index.d.ts +3 -0
- package/dist/modules/format/index.d.ts.map +1 -0
- package/dist/modules/format/pageDialog.d.ts +9 -0
- package/dist/modules/format/pageDialog.d.ts.map +1 -0
- package/dist/modules/format/paragraphDialog.d.ts +9 -0
- package/dist/modules/format/paragraphDialog.d.ts.map +1 -0
- package/dist/modules/history/catalog.d.ts +3 -0
- package/dist/modules/history/catalog.d.ts.map +1 -0
- package/dist/modules/history/commands.d.ts +4 -0
- package/dist/modules/history/commands.d.ts.map +1 -0
- package/dist/modules/history/history.d.ts +17 -0
- package/dist/modules/history/history.d.ts.map +1 -0
- package/dist/modules/history/index.d.ts +5 -0
- package/dist/modules/history/index.d.ts.map +1 -0
- package/dist/modules/insert/AudioDialog.d.ts +12 -0
- package/dist/modules/insert/AudioDialog.d.ts.map +1 -0
- package/dist/modules/insert/BookmarkDialog.d.ts +9 -0
- package/dist/modules/insert/BookmarkDialog.d.ts.map +1 -0
- package/dist/modules/insert/ImageAdvancedFields.d.ts +15 -0
- package/dist/modules/insert/ImageAdvancedFields.d.ts.map +1 -0
- package/dist/modules/insert/ImageDialog.d.ts +12 -0
- package/dist/modules/insert/ImageDialog.d.ts.map +1 -0
- package/dist/modules/insert/ImagePropertiesDialog.d.ts +13 -0
- package/dist/modules/insert/ImagePropertiesDialog.d.ts.map +1 -0
- package/dist/modules/insert/ImagePropertiesFields.d.ts +11 -0
- package/dist/modules/insert/ImagePropertiesFields.d.ts.map +1 -0
- package/dist/modules/insert/ImageResizeOverlay.d.ts +7 -0
- package/dist/modules/insert/ImageResizeOverlay.d.ts.map +1 -0
- package/dist/modules/insert/ImageSizeField.d.ts +10 -0
- package/dist/modules/insert/ImageSizeField.d.ts.map +1 -0
- package/dist/modules/insert/ImageSourcePicker.d.ts +14 -0
- package/dist/modules/insert/ImageSourcePicker.d.ts.map +1 -0
- package/dist/modules/insert/LinkDialog.d.ts +22 -0
- package/dist/modules/insert/LinkDialog.d.ts.map +1 -0
- package/dist/modules/insert/YoutubeDialog.d.ts +12 -0
- package/dist/modules/insert/YoutubeDialog.d.ts.map +1 -0
- package/dist/modules/insert/catalog.d.ts +3 -0
- package/dist/modules/insert/catalog.d.ts.map +1 -0
- package/dist/modules/insert/commands.d.ts +4 -0
- package/dist/modules/insert/commands.d.ts.map +1 -0
- package/dist/modules/insert/imagePropertiesDialog.d.ts +9 -0
- package/dist/modules/insert/imagePropertiesDialog.d.ts.map +1 -0
- package/dist/modules/insert/index.d.ts +3 -0
- package/dist/modules/insert/index.d.ts.map +1 -0
- package/dist/modules/table/CellPropertiesDialog.d.ts +10 -0
- package/dist/modules/table/CellPropertiesDialog.d.ts.map +1 -0
- package/dist/modules/table/CellPropertiesFields.d.ts +8 -0
- package/dist/modules/table/CellPropertiesFields.d.ts.map +1 -0
- package/dist/modules/table/RowPropertiesDialog.d.ts +10 -0
- package/dist/modules/table/RowPropertiesDialog.d.ts.map +1 -0
- package/dist/modules/table/RowPropertiesFields.d.ts +8 -0
- package/dist/modules/table/RowPropertiesFields.d.ts.map +1 -0
- package/dist/modules/table/TableDialog.d.ts +9 -0
- package/dist/modules/table/TableDialog.d.ts.map +1 -0
- package/dist/modules/table/TablePropertiesDialog.d.ts +10 -0
- package/dist/modules/table/TablePropertiesDialog.d.ts.map +1 -0
- package/dist/modules/table/TablePropertiesFields.d.ts +8 -0
- package/dist/modules/table/TablePropertiesFields.d.ts.map +1 -0
- package/dist/modules/table/catalog.d.ts +3 -0
- package/dist/modules/table/catalog.d.ts.map +1 -0
- package/dist/modules/table/commands.d.ts +4 -0
- package/dist/modules/table/commands.d.ts.map +1 -0
- package/dist/modules/table/index.d.ts +3 -0
- package/dist/modules/table/index.d.ts.map +1 -0
- package/dist/modules/view/DocumentPreviewDialog.d.ts +7 -0
- package/dist/modules/view/DocumentPreviewDialog.d.ts.map +1 -0
- package/dist/modules/view/catalog.d.ts +3 -0
- package/dist/modules/view/catalog.d.ts.map +1 -0
- package/dist/modules/view/commands.d.ts +6 -0
- package/dist/modules/view/commands.d.ts.map +1 -0
- package/dist/modules/view/darkModePersistence.d.ts +5 -0
- package/dist/modules/view/darkModePersistence.d.ts.map +1 -0
- package/dist/modules/view/index.d.ts +3 -0
- package/dist/modules/view/index.d.ts.map +1 -0
- package/dist/modules/view/pageZoomPersistence.d.ts +6 -0
- package/dist/modules/view/pageZoomPersistence.d.ts.map +1 -0
- package/dist/modules/view/toolbarPositionPersistence.d.ts +6 -0
- package/dist/modules/view/toolbarPositionPersistence.d.ts.map +1 -0
- package/dist/toolbar/CustomizeToolbarDialog.d.ts +16 -0
- package/dist/toolbar/CustomizeToolbarDialog.d.ts.map +1 -0
- package/dist/toolbar/EditorToolbar.d.ts +18 -0
- package/dist/toolbar/EditorToolbar.d.ts.map +1 -0
- package/dist/toolbar/IconNav.d.ts +14 -0
- package/dist/toolbar/IconNav.d.ts.map +1 -0
- package/dist/toolbar/MenuBar.d.ts +20 -0
- package/dist/toolbar/MenuBar.d.ts.map +1 -0
- package/dist/toolbar/Tooltip.d.ts +11 -0
- package/dist/toolbar/Tooltip.d.ts.map +1 -0
- package/dist/toolbar/allowedChrome.d.ts +4 -0
- package/dist/toolbar/allowedChrome.d.ts.map +1 -0
- package/dist/toolbar/commentsChrome.d.ts +11 -0
- package/dist/toolbar/commentsChrome.d.ts.map +1 -0
- package/dist/toolbar/defaultCatalog.d.ts +4 -0
- package/dist/toolbar/defaultCatalog.d.ts.map +1 -0
- package/dist/toolbar/defaultLayout.d.ts +3 -0
- package/dist/toolbar/defaultLayout.d.ts.map +1 -0
- package/dist/toolbar/index.d.ts +10 -0
- package/dist/toolbar/index.d.ts.map +1 -0
- package/dist/toolbar/resolveChrome.d.ts +12 -0
- package/dist/toolbar/resolveChrome.d.ts.map +1 -0
- package/dist/toolbar/toolbarCustomization.d.ts +14 -0
- package/dist/toolbar/toolbarCustomization.d.ts.map +1 -0
- package/dist/toolbar/types.d.ts +65 -0
- package/dist/toolbar/types.d.ts.map +1 -0
- package/dist/types.d.ts +400 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +1 -1
- package/dist/404.html +0 -19
- package/dist/assets/index-8mpvnzOy.js +0 -375
- package/dist/assets/index-Cu8klpl0.css +0 -1
- package/dist/index.html +0 -19
- package/dist/logo.svg +0 -314
|
@@ -0,0 +1,468 @@
|
|
|
1
|
+
export type Locale = 'en' | 'es';
|
|
2
|
+
export type Messages = {
|
|
3
|
+
modeVisual: string;
|
|
4
|
+
modeHtml: string;
|
|
5
|
+
modeVisualAria: string;
|
|
6
|
+
modeHtmlAria: string;
|
|
7
|
+
modeFullscreen: string;
|
|
8
|
+
modeFullscreenAria: string;
|
|
9
|
+
modeLight: string;
|
|
10
|
+
modeLightAria: string;
|
|
11
|
+
modeDark: string;
|
|
12
|
+
modeDarkAria: string;
|
|
13
|
+
exitFullscreenAria: string;
|
|
14
|
+
visualEditorAria: string;
|
|
15
|
+
htmlEditorAria: string;
|
|
16
|
+
menuFile: string;
|
|
17
|
+
menuFileAria: string;
|
|
18
|
+
menuEdit: string;
|
|
19
|
+
menuEditAria: string;
|
|
20
|
+
menuInsert: string;
|
|
21
|
+
menuInsertAria: string;
|
|
22
|
+
menuView: string;
|
|
23
|
+
menuViewAria: string;
|
|
24
|
+
menuFormat: string;
|
|
25
|
+
menuFormatAria: string;
|
|
26
|
+
menuFont: string;
|
|
27
|
+
menuFontAria: string;
|
|
28
|
+
menuParagraph: string;
|
|
29
|
+
menuParagraphAria: string;
|
|
30
|
+
menuParagraphStyles: string;
|
|
31
|
+
menuParagraphStylesAria: string;
|
|
32
|
+
menuPage: string;
|
|
33
|
+
menuPageAria: string;
|
|
34
|
+
menuToolbar: string;
|
|
35
|
+
menuToolbarAria: string;
|
|
36
|
+
menuToolbarPosition: string;
|
|
37
|
+
menuToolbarPositionAria: string;
|
|
38
|
+
toolbarPositionTop: string;
|
|
39
|
+
toolbarPositionTopAria: string;
|
|
40
|
+
toolbarPositionLeft: string;
|
|
41
|
+
toolbarPositionLeftAria: string;
|
|
42
|
+
toolbarPositionRight: string;
|
|
43
|
+
toolbarPositionRightAria: string;
|
|
44
|
+
toolbarPositionBottom: string;
|
|
45
|
+
toolbarPositionBottomAria: string;
|
|
46
|
+
menuImage: string;
|
|
47
|
+
menuImageAria: string;
|
|
48
|
+
menuInsertRow: string;
|
|
49
|
+
menuInsertRowAria: string;
|
|
50
|
+
menuInsertColumn: string;
|
|
51
|
+
menuInsertColumnAria: string;
|
|
52
|
+
menuTable: string;
|
|
53
|
+
menuTableAria: string;
|
|
54
|
+
menuCustom: string;
|
|
55
|
+
menuCustomAria: string;
|
|
56
|
+
menuHamburgerAria: string;
|
|
57
|
+
menuCloseAria: string;
|
|
58
|
+
menuOverlayAria: string;
|
|
59
|
+
brandMarkAria: string;
|
|
60
|
+
commandSave: string;
|
|
61
|
+
commandSaveAria: string;
|
|
62
|
+
commandOpen: string;
|
|
63
|
+
commandOpenAria: string;
|
|
64
|
+
htmlFileDropOverlay: string;
|
|
65
|
+
commandPrint: string;
|
|
66
|
+
commandPrintAria: string;
|
|
67
|
+
commandUndo: string;
|
|
68
|
+
commandUndoAria: string;
|
|
69
|
+
commandRedo: string;
|
|
70
|
+
commandRedoAria: string;
|
|
71
|
+
commandCut: string;
|
|
72
|
+
commandCutAria: string;
|
|
73
|
+
commandCopy: string;
|
|
74
|
+
commandCopyAria: string;
|
|
75
|
+
commandDelete: string;
|
|
76
|
+
commandDeleteAria: string;
|
|
77
|
+
commandLink: string;
|
|
78
|
+
commandLinkAria: string;
|
|
79
|
+
commandBookmark: string;
|
|
80
|
+
commandBookmarkAria: string;
|
|
81
|
+
commandImage: string;
|
|
82
|
+
commandImageAria: string;
|
|
83
|
+
commandAudio: string;
|
|
84
|
+
commandAudioAria: string;
|
|
85
|
+
commandYoutube: string;
|
|
86
|
+
commandYoutubeAria: string;
|
|
87
|
+
commandImageProperties: string;
|
|
88
|
+
commandImagePropertiesAria: string;
|
|
89
|
+
commandTable: string;
|
|
90
|
+
commandTableAria: string;
|
|
91
|
+
commandHorizontalRule: string;
|
|
92
|
+
commandHorizontalRuleAria: string;
|
|
93
|
+
commandPageBreak: string;
|
|
94
|
+
commandPageBreakAria: string;
|
|
95
|
+
commandInsertPage: string;
|
|
96
|
+
commandInsertPageAria: string;
|
|
97
|
+
commandTableProperties: string;
|
|
98
|
+
commandTablePropertiesAria: string;
|
|
99
|
+
commandCellProperties: string;
|
|
100
|
+
commandCellPropertiesAria: string;
|
|
101
|
+
commandRowProperties: string;
|
|
102
|
+
commandRowPropertiesAria: string;
|
|
103
|
+
commandInsertRowBelow: string;
|
|
104
|
+
commandInsertRowBelowAria: string;
|
|
105
|
+
commandInsertRowBefore: string;
|
|
106
|
+
commandInsertRowBeforeAria: string;
|
|
107
|
+
commandDeleteRow: string;
|
|
108
|
+
commandDeleteRowAria: string;
|
|
109
|
+
commandInsertColumnAfter: string;
|
|
110
|
+
commandInsertColumnAfterAria: string;
|
|
111
|
+
commandInsertColumnBefore: string;
|
|
112
|
+
commandInsertColumnBeforeAria: string;
|
|
113
|
+
commandDeleteColumn: string;
|
|
114
|
+
commandDeleteColumnAria: string;
|
|
115
|
+
commandMergeCells: string;
|
|
116
|
+
commandMergeCellsAria: string;
|
|
117
|
+
commandUnmergeCells: string;
|
|
118
|
+
commandUnmergeCellsAria: string;
|
|
119
|
+
contextMenuAria: string;
|
|
120
|
+
commandBold: string;
|
|
121
|
+
commandBoldAria: string;
|
|
122
|
+
commandItalic: string;
|
|
123
|
+
commandItalicAria: string;
|
|
124
|
+
commandUnderline: string;
|
|
125
|
+
commandUnderlineAria: string;
|
|
126
|
+
commandStrikethrough: string;
|
|
127
|
+
commandStrikethroughAria: string;
|
|
128
|
+
commandClearFormatting: string;
|
|
129
|
+
commandClearFormattingAria: string;
|
|
130
|
+
commandFormatBrush: string;
|
|
131
|
+
commandFormatBrushAria: string;
|
|
132
|
+
commandFontSize: string;
|
|
133
|
+
commandFontSizeAria: string;
|
|
134
|
+
commandFontSizeUnitAria: string;
|
|
135
|
+
commandFontFamily: string;
|
|
136
|
+
commandFontFamilyAria: string;
|
|
137
|
+
commandFontProperties: string;
|
|
138
|
+
commandFontPropertiesAria: string;
|
|
139
|
+
commandCustomCss: string;
|
|
140
|
+
commandCustomCssAria: string;
|
|
141
|
+
commandParagraphProperties: string;
|
|
142
|
+
commandParagraphPropertiesAria: string;
|
|
143
|
+
commandPageProperties: string;
|
|
144
|
+
commandPagePropertiesAria: string;
|
|
145
|
+
commandFontColor: string;
|
|
146
|
+
commandFontColorAria: string;
|
|
147
|
+
commandHighlightColor: string;
|
|
148
|
+
commandHighlightColorAria: string;
|
|
149
|
+
commandParagraphStyle: string;
|
|
150
|
+
commandParagraphStyleAria: string;
|
|
151
|
+
commandAlignLeft: string;
|
|
152
|
+
commandAlignLeftAria: string;
|
|
153
|
+
commandAlignCenter: string;
|
|
154
|
+
commandAlignCenterAria: string;
|
|
155
|
+
commandAlignRight: string;
|
|
156
|
+
commandAlignRightAria: string;
|
|
157
|
+
commandAlignJustify: string;
|
|
158
|
+
commandAlignJustifyAria: string;
|
|
159
|
+
commandIndent: string;
|
|
160
|
+
commandIndentAria: string;
|
|
161
|
+
commandOutdent: string;
|
|
162
|
+
commandOutdentAria: string;
|
|
163
|
+
commandBulletList: string;
|
|
164
|
+
commandBulletListAria: string;
|
|
165
|
+
commandNumberedList: string;
|
|
166
|
+
commandNumberedListAria: string;
|
|
167
|
+
commandCustomizeToolbar: string;
|
|
168
|
+
commandCustomizeToolbarAria: string;
|
|
169
|
+
commandPreview: string;
|
|
170
|
+
commandPreviewAria: string;
|
|
171
|
+
commandReadAloud: string;
|
|
172
|
+
commandReadAloudAria: string;
|
|
173
|
+
styleParagraph: string;
|
|
174
|
+
styleHeading1: string;
|
|
175
|
+
styleHeading2: string;
|
|
176
|
+
styleHeading3: string;
|
|
177
|
+
styleHeading4: string;
|
|
178
|
+
styleHeading5: string;
|
|
179
|
+
styleHeading6: string;
|
|
180
|
+
styleAddNew: string;
|
|
181
|
+
styleAddNewAria: string;
|
|
182
|
+
customStyleDialogAddTitle: string;
|
|
183
|
+
customStyleDialogEditTitle: string;
|
|
184
|
+
customStyleDialogTabFont: string;
|
|
185
|
+
customStyleDialogTabParagraph: string;
|
|
186
|
+
customStyleDialogName: string;
|
|
187
|
+
customStyleDialogDelete: string;
|
|
188
|
+
customStyleDialogDeleteConfirm: string;
|
|
189
|
+
customStyleDialogCloseAria: string;
|
|
190
|
+
customStyleLoading: string;
|
|
191
|
+
colorAutomatic: string;
|
|
192
|
+
colorNone: string;
|
|
193
|
+
colorCustom: string;
|
|
194
|
+
colorHex: string;
|
|
195
|
+
colorRgbR: string;
|
|
196
|
+
colorRgbG: string;
|
|
197
|
+
colorRgbB: string;
|
|
198
|
+
colorPickFromScreen: string;
|
|
199
|
+
colorRecent: string;
|
|
200
|
+
fontDialogTitle: string;
|
|
201
|
+
fontDialogTabGeneral: string;
|
|
202
|
+
fontDialogFamily: string;
|
|
203
|
+
fontFamilyDefault: string;
|
|
204
|
+
fontDialogSize: string;
|
|
205
|
+
fontDialogUnit: string;
|
|
206
|
+
fontDialogStyle: string;
|
|
207
|
+
fontDialogOk: string;
|
|
208
|
+
fontDialogCancel: string;
|
|
209
|
+
linkDialogTitle: string;
|
|
210
|
+
linkDialogTabLink: string;
|
|
211
|
+
linkDialogTabBookmark: string;
|
|
212
|
+
linkDialogHref: string;
|
|
213
|
+
linkDialogHoverTitle: string;
|
|
214
|
+
linkDialogTargetBlank: string;
|
|
215
|
+
linkDialogTextDecorationNone: string;
|
|
216
|
+
linkDialogHover: string;
|
|
217
|
+
linkDialogHoverColor: string;
|
|
218
|
+
linkDialogHoverColorField: string;
|
|
219
|
+
linkDialogHoverHtml: string;
|
|
220
|
+
linkDialogHoverHtmlAria: string;
|
|
221
|
+
linkDialogBookmark: string;
|
|
222
|
+
linkDialogBookmarkEmpty: string;
|
|
223
|
+
linkDialogSelect: string;
|
|
224
|
+
bookmarkDialogTitle: string;
|
|
225
|
+
bookmarkDialogName: string;
|
|
226
|
+
bookmarkDialogHelp: string;
|
|
227
|
+
bookmarkDialogHelpAria: string;
|
|
228
|
+
bookmarkDialogCloseAria: string;
|
|
229
|
+
bookmarkDialogErrorEmpty: string;
|
|
230
|
+
bookmarkDialogErrorInvalid: string;
|
|
231
|
+
bookmarkDialogErrorDuplicate: string;
|
|
232
|
+
customCssDialogTitle: string;
|
|
233
|
+
customCssDialogField: string;
|
|
234
|
+
customCssDialogFieldAria: string;
|
|
235
|
+
customCssDialogCloseAria: string;
|
|
236
|
+
imageDialogTitle: string;
|
|
237
|
+
imageDialogSource: string;
|
|
238
|
+
imageDialogFile: string;
|
|
239
|
+
imageDialogChooseFile: string;
|
|
240
|
+
imageDialogUrl: string;
|
|
241
|
+
imageDialogAlt: string;
|
|
242
|
+
imageDialogTitleField: string;
|
|
243
|
+
imageDialogCloseAria: string;
|
|
244
|
+
imageDialogErrorEmpty: string;
|
|
245
|
+
imageDialogErrorInvalid: string;
|
|
246
|
+
imageDialogErrorType: string;
|
|
247
|
+
imageDialogErrorTooLarge: string;
|
|
248
|
+
audioDialogTitle: string;
|
|
249
|
+
audioDialogSource: string;
|
|
250
|
+
audioDialogFile: string;
|
|
251
|
+
audioDialogChooseFile: string;
|
|
252
|
+
audioDialogUrl: string;
|
|
253
|
+
audioDialogTitleField: string;
|
|
254
|
+
audioDialogCloseAria: string;
|
|
255
|
+
audioDialogErrorEmpty: string;
|
|
256
|
+
audioDialogErrorInvalid: string;
|
|
257
|
+
audioDialogErrorType: string;
|
|
258
|
+
audioDialogErrorTooLarge: string;
|
|
259
|
+
youtubeDialogTitle: string;
|
|
260
|
+
youtubeDialogUrl: string;
|
|
261
|
+
youtubeDialogTitleField: string;
|
|
262
|
+
youtubeDialogCloseAria: string;
|
|
263
|
+
youtubeDialogErrorEmpty: string;
|
|
264
|
+
youtubeDialogErrorInvalid: string;
|
|
265
|
+
imagePropertiesDialogTitle: string;
|
|
266
|
+
imagePropertiesDialogCloseAria: string;
|
|
267
|
+
imagePropertiesTabAlignment: string;
|
|
268
|
+
imagePropertiesTabBorder: string;
|
|
269
|
+
imagePropertiesTabAdvanced: string;
|
|
270
|
+
imagePropertiesTabHover: string;
|
|
271
|
+
imagePropertiesSize: string;
|
|
272
|
+
imagePropertiesSizeMode: string;
|
|
273
|
+
imagePropertiesSizeWidth: string;
|
|
274
|
+
imagePropertiesSizeHeight: string;
|
|
275
|
+
imagePropertiesSizeLock: string;
|
|
276
|
+
imagePropertiesWidth: string;
|
|
277
|
+
imagePropertiesHeight: string;
|
|
278
|
+
imagePropertiesWidthAria: string;
|
|
279
|
+
imagePropertiesHeightAria: string;
|
|
280
|
+
imagePropertiesSizeUnitAria: string;
|
|
281
|
+
imagePropertiesFit: string;
|
|
282
|
+
imagePropertiesFitDefault: string;
|
|
283
|
+
imagePropertiesFitFill: string;
|
|
284
|
+
imagePropertiesFitContain: string;
|
|
285
|
+
imagePropertiesFitCover: string;
|
|
286
|
+
imagePropertiesFitNoneValue: string;
|
|
287
|
+
imagePropertiesFitScaleDown: string;
|
|
288
|
+
imagePropertiesPosition: string;
|
|
289
|
+
imagePropertiesPositionDefault: string;
|
|
290
|
+
imagePropertiesPositionCenter: string;
|
|
291
|
+
imagePropertiesPositionTop: string;
|
|
292
|
+
imagePropertiesPositionBottom: string;
|
|
293
|
+
imagePropertiesPositionLeft: string;
|
|
294
|
+
imagePropertiesPositionRight: string;
|
|
295
|
+
imagePropertiesPositionTopLeft: string;
|
|
296
|
+
imagePropertiesPositionTopRight: string;
|
|
297
|
+
imagePropertiesPositionBottomLeft: string;
|
|
298
|
+
imagePropertiesPositionBottomRight: string;
|
|
299
|
+
imagePropertiesRotation: string;
|
|
300
|
+
imagePropertiesRotationUnit: string;
|
|
301
|
+
imagePropertiesHoverCss: string;
|
|
302
|
+
imagePropertiesHoverCssAria: string;
|
|
303
|
+
imagePropertiesHoverHelp: string;
|
|
304
|
+
imageResizeHandleEastAria: string;
|
|
305
|
+
imageResizeHandleSouthAria: string;
|
|
306
|
+
imageResizeHandleSouthEastAria: string;
|
|
307
|
+
tableDialogTitle: string;
|
|
308
|
+
tableDialogCloseAria: string;
|
|
309
|
+
tableDialogRows: string;
|
|
310
|
+
tableDialogColumns: string;
|
|
311
|
+
tableDialogSize: string;
|
|
312
|
+
tableDialogGridAria: string;
|
|
313
|
+
tableDialogInsert: string;
|
|
314
|
+
tablePropertiesDialogTitle: string;
|
|
315
|
+
tablePropertiesDialogCloseAria: string;
|
|
316
|
+
tablePropertiesCollapse: string;
|
|
317
|
+
tablePropertiesCollapseCollapse: string;
|
|
318
|
+
tablePropertiesCollapseSeparate: string;
|
|
319
|
+
tablePropertiesSpacing: string;
|
|
320
|
+
tablePropertiesWidth: string;
|
|
321
|
+
cellPropertiesDialogTitle: string;
|
|
322
|
+
cellPropertiesDialogCloseAria: string;
|
|
323
|
+
cellPropertiesColor: string;
|
|
324
|
+
cellPropertiesVerticalAlign: string;
|
|
325
|
+
cellPropertiesVerticalAlignDefault: string;
|
|
326
|
+
cellPropertiesVerticalAlignTop: string;
|
|
327
|
+
cellPropertiesVerticalAlignMiddle: string;
|
|
328
|
+
cellPropertiesVerticalAlignBottom: string;
|
|
329
|
+
cellPropertiesVerticalAlignBaseline: string;
|
|
330
|
+
cellPropertiesWidth: string;
|
|
331
|
+
cellPropertiesColSpan: string;
|
|
332
|
+
cellPropertiesRowSpan: string;
|
|
333
|
+
rowPropertiesDialogTitle: string;
|
|
334
|
+
rowPropertiesDialogCloseAria: string;
|
|
335
|
+
rowPropertiesHeight: string;
|
|
336
|
+
paragraphDialogTitle: string;
|
|
337
|
+
pageDialogTitle: string;
|
|
338
|
+
pageDialogTabBackgroundImage: string;
|
|
339
|
+
pageDialogTabPrint: string;
|
|
340
|
+
pageAtRuleSize: string;
|
|
341
|
+
pageAtRuleSizeAuto: string;
|
|
342
|
+
pageAtRuleSizeA4: string;
|
|
343
|
+
pageAtRuleSizeLetter: string;
|
|
344
|
+
pageAtRuleSizeLegal: string;
|
|
345
|
+
pageAtRuleSizeCustom: string;
|
|
346
|
+
pageAtRuleWidth: string;
|
|
347
|
+
pageAtRuleHeight: string;
|
|
348
|
+
pageAtRuleOrientation: string;
|
|
349
|
+
pageAtRuleOrientationNone: string;
|
|
350
|
+
pageAtRuleOrientationPortrait: string;
|
|
351
|
+
pageAtRuleOrientationLandscape: string;
|
|
352
|
+
pageAtRuleMargins: string;
|
|
353
|
+
pageAtRuleReset: string;
|
|
354
|
+
pageAtRuleResetAria: string;
|
|
355
|
+
menuZoom: string;
|
|
356
|
+
menuZoomAria: string;
|
|
357
|
+
pageZoomFitWidth: string;
|
|
358
|
+
pageZoomFitWidthAria: string;
|
|
359
|
+
pageZoomFitPage: string;
|
|
360
|
+
pageZoomFitPageAria: string;
|
|
361
|
+
pageZoom50: string;
|
|
362
|
+
pageZoom50Aria: string;
|
|
363
|
+
pageZoom75: string;
|
|
364
|
+
pageZoom75Aria: string;
|
|
365
|
+
pageZoom100: string;
|
|
366
|
+
pageZoom100Aria: string;
|
|
367
|
+
pageZoom125: string;
|
|
368
|
+
pageZoom125Aria: string;
|
|
369
|
+
pageZoom150: string;
|
|
370
|
+
pageZoom150Aria: string;
|
|
371
|
+
pageZoom200: string;
|
|
372
|
+
pageZoom200Aria: string;
|
|
373
|
+
pageBackgroundImagePreview: string;
|
|
374
|
+
pageBackgroundImagePreviewAlt: string;
|
|
375
|
+
pageBackgroundImageClear: string;
|
|
376
|
+
pageBackgroundImageCurrent: string;
|
|
377
|
+
paragraphDialogTabBorder: string;
|
|
378
|
+
paragraphDialogTabBackground: string;
|
|
379
|
+
paragraphDialogAlignment: string;
|
|
380
|
+
paragraphDialogLists: string;
|
|
381
|
+
paragraphDialogSpacing: string;
|
|
382
|
+
paragraphDialogMargin: string;
|
|
383
|
+
paragraphDialogPadding: string;
|
|
384
|
+
paragraphDialogLineHeight: string;
|
|
385
|
+
paragraphDialogLineHeightNormal: string;
|
|
386
|
+
paragraphDialogLineHeightUnitless: string;
|
|
387
|
+
paragraphDialogLinkSides: string;
|
|
388
|
+
paragraphDialogSideTop: string;
|
|
389
|
+
paragraphDialogSideRight: string;
|
|
390
|
+
paragraphDialogSideBottom: string;
|
|
391
|
+
paragraphDialogSideLeft: string;
|
|
392
|
+
paragraphDialogBorder: string;
|
|
393
|
+
paragraphDialogBorderStyle: string;
|
|
394
|
+
paragraphDialogBorderWidth: string;
|
|
395
|
+
paragraphDialogBorderColor: string;
|
|
396
|
+
paragraphDialogBorderRadius: string;
|
|
397
|
+
paragraphDialogBoxShadow: string;
|
|
398
|
+
paragraphDialogShadowOffsetX: string;
|
|
399
|
+
paragraphDialogShadowOffsetY: string;
|
|
400
|
+
paragraphDialogShadowBlur: string;
|
|
401
|
+
paragraphDialogShadowSpread: string;
|
|
402
|
+
paragraphDialogShadowColor: string;
|
|
403
|
+
paragraphDialogShadowInset: string;
|
|
404
|
+
paragraphDialogLengthUnitAria: string;
|
|
405
|
+
paragraphDialogBorderStyleNone: string;
|
|
406
|
+
paragraphDialogBorderStyleSolid: string;
|
|
407
|
+
paragraphDialogBorderStyleDotted: string;
|
|
408
|
+
paragraphDialogBorderStyleDashed: string;
|
|
409
|
+
paragraphDialogBorderStyleDouble: string;
|
|
410
|
+
paragraphDialogBorderStyleGroove: string;
|
|
411
|
+
paragraphDialogBorderStyleRidge: string;
|
|
412
|
+
paragraphDialogBorderStyleInset: string;
|
|
413
|
+
paragraphDialogBorderStyleOutset: string;
|
|
414
|
+
paragraphDialogBackgroundColor: string;
|
|
415
|
+
paragraphDialogOpacity: string;
|
|
416
|
+
paragraphDialogPageBreaks: string;
|
|
417
|
+
paragraphDialogBreakInside: string;
|
|
418
|
+
paragraphDialogBreakAfter: string;
|
|
419
|
+
paragraphDialogBreakBefore: string;
|
|
420
|
+
paragraphDialogBreakAuto: string;
|
|
421
|
+
paragraphDialogBreakAvoid: string;
|
|
422
|
+
paragraphDialogBreakPage: string;
|
|
423
|
+
fontSizeUnitPt: string;
|
|
424
|
+
fontSizeUnitPx: string;
|
|
425
|
+
fontSizeUnitEm: string;
|
|
426
|
+
fontSizeUnitRem: string;
|
|
427
|
+
fontSizeUnitPercent: string;
|
|
428
|
+
fontSizeUnitPc: string;
|
|
429
|
+
toolbarAria: string;
|
|
430
|
+
toolbarGroupFile: string;
|
|
431
|
+
toolbarGroupPrint: string;
|
|
432
|
+
toolbarGroupEdit: string;
|
|
433
|
+
toolbarGroupInsert: string;
|
|
434
|
+
toolbarGroupTable: string;
|
|
435
|
+
toolbarGroupFont: string;
|
|
436
|
+
toolbarGroupAlign: string;
|
|
437
|
+
toolbarGroupParagraph: string;
|
|
438
|
+
toolbarGroupView: string;
|
|
439
|
+
toolbarGroupFullscreen: string;
|
|
440
|
+
toolbarGroupCustom: string;
|
|
441
|
+
customizeToolbarDialogTitle: string;
|
|
442
|
+
customizeToolbarDialogReset: string;
|
|
443
|
+
customizeToolbarDialogClose: string;
|
|
444
|
+
customizeToolbarDialogCloseAria: string;
|
|
445
|
+
customizeToolbarDialogLoading: string;
|
|
446
|
+
customizeToolbarItemVisible: string;
|
|
447
|
+
customizeToolbarDragHandle: string;
|
|
448
|
+
customizeToolbarMoveUp: string;
|
|
449
|
+
customizeToolbarMoveDown: string;
|
|
450
|
+
previewDialogTitle: string;
|
|
451
|
+
previewDialogClose: string;
|
|
452
|
+
previewDialogCloseAria: string;
|
|
453
|
+
commandAddComment: string;
|
|
454
|
+
commandAddCommentAria: string;
|
|
455
|
+
commandInsertComment: string;
|
|
456
|
+
commandInsertCommentAria: string;
|
|
457
|
+
showComments: string;
|
|
458
|
+
hideComments: string;
|
|
459
|
+
toggleCommentsVisibleAria: string;
|
|
460
|
+
commentPanelTitle: string;
|
|
461
|
+
commentPlaceholder: string;
|
|
462
|
+
commentReplyPlaceholder: string;
|
|
463
|
+
commentPost: string;
|
|
464
|
+
commentEmpty: string;
|
|
465
|
+
commentPanelCloseAria: string;
|
|
466
|
+
};
|
|
467
|
+
export type MessageKey = keyof Messages;
|
|
468
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/i18n/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlignCenterIcon.d.ts","sourceRoot":"","sources":["../../src/icons/AlignCenterIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,eAAe,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAoBvD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlignJustifyIcon.d.ts","sourceRoot":"","sources":["../../src/icons/AlignJustifyIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,gBAAgB,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAoBxD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlignLeftIcon.d.ts","sourceRoot":"","sources":["../../src/icons/AlignLeftIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,aAAa,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAoBrD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlignRightIcon.d.ts","sourceRoot":"","sources":["../../src/icons/AlignRightIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,cAAc,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAoBtD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AudioIcon.d.ts","sourceRoot":"","sources":["../../src/icons/AudioIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,SAAS,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAoBjD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BoldIcon.d.ts","sourceRoot":"","sources":["../../src/icons/BoldIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,QAAQ,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAoBhD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BookmarkIcon.d.ts","sourceRoot":"","sources":["../../src/icons/BookmarkIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,YAAY,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAkBpD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BulletListIcon.d.ts","sourceRoot":"","sources":["../../src/icons/BulletListIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,cAAc,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAuBtD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CellPropertiesIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CellPropertiesIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,kBAAkB,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAqB1D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClearFormattingIcon.d.ts","sourceRoot":"","sources":["../../src/icons/ClearFormattingIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,mBAAmB,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAqB3D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CloseIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CloseIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,SAAS,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAmBjD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CommentIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CommentIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,WAAW,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAkBnD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CommentsVisibleIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CommentsVisibleIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,mBAAmB,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAmB3D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CommspliantShieldIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CommspliantShieldIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,qBAAqB,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAmB7D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomActionIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CustomActionIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,gBAAgB,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAsBxD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomCssIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CustomCssIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,aAAa,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAuBrD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomizeToolbarIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CustomizeToolbarIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,oBAAoB,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAqB5D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DarkModeIcon.d.ts","sourceRoot":"","sources":["../../src/icons/DarkModeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC,wBAAgB,YAAY,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,+BAkBpD"}
|