@atlaskit/renderer 108.0.0 → 108.1.0
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/CHANGELOG.md +22 -0
- package/actions/package.json +2 -2
- package/consts/package.json +2 -2
- package/dist/cjs/react/marks/link.js +12 -2
- package/dist/cjs/react/nodes/blockCard.js +12 -2
- package/dist/cjs/react/nodes/codeBlock/components/codeBlockContainer.js +1 -1
- package/dist/cjs/react/nodes/embedCard.js +12 -2
- package/dist/cjs/react/nodes/inlineCard.js +16 -4
- package/dist/cjs/ui/Expand.js +8 -7
- package/dist/cjs/ui/Renderer/ErrorBoundary.js +8 -1
- package/dist/cjs/ui/Renderer/index.js +34 -23
- package/dist/cjs/ui/Renderer/style.js +11 -4
- package/dist/cjs/ui/SortingIcon.js +1 -2
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/react/marks/link.js +12 -2
- package/dist/es2019/react/nodes/blockCard.js +12 -2
- package/dist/es2019/react/nodes/codeBlock/components/codeBlockContainer.js +2 -2
- package/dist/es2019/react/nodes/embedCard.js +12 -2
- package/dist/es2019/react/nodes/inlineCard.js +16 -4
- package/dist/es2019/ui/Expand.js +8 -5
- package/dist/es2019/ui/Renderer/ErrorBoundary.js +8 -1
- package/dist/es2019/ui/Renderer/index.js +34 -23
- package/dist/es2019/ui/Renderer/style.js +33 -16
- package/dist/es2019/ui/SortingIcon.js +1 -2
- package/dist/es2019/version.json +1 -1
- package/dist/esm/react/marks/link.js +12 -2
- package/dist/esm/react/nodes/blockCard.js +12 -2
- package/dist/esm/react/nodes/codeBlock/components/codeBlockContainer.js +2 -2
- package/dist/esm/react/nodes/embedCard.js +12 -2
- package/dist/esm/react/nodes/inlineCard.js +16 -4
- package/dist/esm/ui/Expand.js +8 -7
- package/dist/esm/ui/Renderer/ErrorBoundary.js +8 -1
- package/dist/esm/ui/Renderer/index.js +34 -23
- package/dist/esm/ui/Renderer/style.js +11 -4
- package/dist/esm/ui/SortingIcon.js +1 -2
- package/dist/esm/version.json +1 -1
- package/dist/types/actions/index.d.ts +4 -4
- package/dist/types/analytics/enums.d.ts +1 -1
- package/dist/types/analytics/events.d.ts +29 -29
- package/dist/types/analytics/unsupported-content.d.ts +2 -2
- package/dist/types/i18n/cs.d.ts +6 -6
- package/dist/types/i18n/da.d.ts +6 -6
- package/dist/types/i18n/de.d.ts +6 -6
- package/dist/types/i18n/en.d.ts +6 -6
- package/dist/types/i18n/en_GB.d.ts +6 -6
- package/dist/types/i18n/en_ZZ.d.ts +6 -6
- package/dist/types/i18n/es.d.ts +6 -6
- package/dist/types/i18n/et.d.ts +1 -1
- package/dist/types/i18n/fi.d.ts +6 -6
- package/dist/types/i18n/fr.d.ts +6 -6
- package/dist/types/i18n/hu.d.ts +6 -6
- package/dist/types/i18n/it.d.ts +6 -6
- package/dist/types/i18n/ja.d.ts +6 -6
- package/dist/types/i18n/ko.d.ts +6 -6
- package/dist/types/i18n/nb.d.ts +6 -6
- package/dist/types/i18n/nl.d.ts +6 -6
- package/dist/types/i18n/pl.d.ts +6 -6
- package/dist/types/i18n/pt_BR.d.ts +6 -6
- package/dist/types/i18n/pt_PT.d.ts +1 -1
- package/dist/types/i18n/ru.d.ts +6 -6
- package/dist/types/i18n/sk.d.ts +1 -1
- package/dist/types/i18n/sv.d.ts +6 -6
- package/dist/types/i18n/th.d.ts +6 -6
- package/dist/types/i18n/tr.d.ts +6 -6
- package/dist/types/i18n/uk.d.ts +6 -6
- package/dist/types/i18n/vi.d.ts +6 -6
- package/dist/types/i18n/zh.d.ts +6 -6
- package/dist/types/i18n/zh_TW.d.ts +6 -6
- package/dist/types/react/hooks/use-observed-width.d.ts +2 -2
- package/dist/types/react/nodes/codeBlock/components/codeBlockCopyButton.d.ts +1 -1
- package/dist/types/react/nodes/codeBlock/components/codeBlockWrapButton.d.ts +1 -1
- package/dist/types/react/nodes/extension.d.ts +3 -3
- package/dist/types/react/nodes/fallback.d.ts +1 -1
- package/dist/types/react/nodes/heading-anchor.d.ts +2 -2
- package/dist/types/react/nodes/heading.d.ts +1 -1
- package/dist/types/react/nodes/index.d.ts +1 -1
- package/dist/types/react/nodes/media.d.ts +1 -1
- package/dist/types/react/nodes/mediaInline.d.ts +2 -2
- package/dist/types/react/nodes/table/sticky.d.ts +2 -2
- package/dist/types/react/nodes/table/table.d.ts +1 -1
- package/dist/types/react/nodes/table/types.d.ts +1 -1
- package/dist/types/react/nodes/table.d.ts +2 -2
- package/dist/types/react/nodes/tableCell.d.ts +2 -2
- package/dist/types/react/nodes/tableRow.d.ts +2 -2
- package/dist/types/react/nodes/text-wrapper.d.ts +1 -1
- package/dist/types/react/types.d.ts +2 -2
- package/dist/types/react/utils/getCardClickHandler.d.ts +1 -1
- package/dist/types/react/utils/performance/RenderTracking.d.ts +4 -4
- package/dist/types/render-document.d.ts +2 -2
- package/dist/types/renderer-context.d.ts +1 -1
- package/dist/types/text/nodes/index.d.ts +1 -1
- package/dist/types/types/mediaOptions.d.ts +1 -1
- package/dist/types/ui/Expand.d.ts +1 -1
- package/dist/types/ui/ExtensionRenderer.d.ts +2 -2
- package/dist/types/ui/MediaCard.d.ts +2 -2
- package/dist/types/ui/Renderer/ErrorBoundary.d.ts +1 -1
- package/dist/types/ui/Renderer/style.d.ts +2 -1
- package/dist/types/ui/Renderer/types.d.ts +6 -6
- package/dist/types/ui/RendererActionsContext/index.d.ts +1 -1
- package/dist/types/ui/TaskItemsFormatContext/TaskItemsFormatContext.d.ts +3 -3
- package/dist/types/ui/active-header-id-provider.d.ts +1 -1
- package/dist/types/ui/annotations/context.d.ts +4 -4
- package/dist/types/ui/annotations/draft/component.d.ts +2 -2
- package/dist/types/ui/annotations/draft/text.d.ts +1 -1
- package/dist/types/ui/annotations/element/index.d.ts +1 -1
- package/dist/types/ui/annotations/element/mark.d.ts +1 -1
- package/dist/types/ui/annotations/hooks/use-events.d.ts +3 -3
- package/dist/types/ui/annotations/hooks/use-inline-comments-filter.d.ts +1 -1
- package/dist/types/ui/annotations/hooks/use-load-annotations.d.ts +1 -1
- package/dist/types/ui/annotations/hooks/user-selection.d.ts +1 -1
- package/dist/types/ui/annotations/selection/mounter.d.ts +1 -1
- package/dist/types/ui/annotations/selection/range-validator.d.ts +1 -1
- package/dist/types/ui/annotations/selection/wrapper.d.ts +1 -1
- package/dist/types/ui/annotations/types.d.ts +3 -3
- package/dist/types/ui/annotations/view/index.d.ts +1 -1
- package/dist/types/utils.d.ts +2 -2
- package/dist/types-ts4.5/actions/index.d.ts +61 -0
- package/dist/types-ts4.5/actions/matches-utils.d.ts +7 -0
- package/dist/types-ts4.5/actions.d.ts +3 -0
- package/dist/types-ts4.5/analytics/analyticsContext.d.ts +6 -0
- package/dist/types-ts4.5/analytics/enums.d.ts +58 -0
- package/dist/types-ts4.5/analytics/events.d.ts +118 -0
- package/dist/types-ts4.5/analytics/unsupported-content.d.ts +10 -0
- package/dist/types-ts4.5/consts.d.ts +12 -0
- package/dist/types-ts4.5/i18n/cs.d.ts +20 -0
- package/dist/types-ts4.5/i18n/da.d.ts +20 -0
- package/dist/types-ts4.5/i18n/de.d.ts +20 -0
- package/dist/types-ts4.5/i18n/en.d.ts +20 -0
- package/dist/types-ts4.5/i18n/en_GB.d.ts +20 -0
- package/dist/types-ts4.5/i18n/en_ZZ.d.ts +20 -0
- package/dist/types-ts4.5/i18n/es.d.ts +20 -0
- package/dist/types-ts4.5/i18n/et.d.ts +8 -0
- package/dist/types-ts4.5/i18n/fi.d.ts +20 -0
- package/dist/types-ts4.5/i18n/fr.d.ts +20 -0
- package/dist/types-ts4.5/i18n/hu.d.ts +20 -0
- package/dist/types-ts4.5/i18n/index.d.ts +31 -0
- package/dist/types-ts4.5/i18n/it.d.ts +20 -0
- package/dist/types-ts4.5/i18n/ja.d.ts +20 -0
- package/dist/types-ts4.5/i18n/ko.d.ts +20 -0
- package/dist/types-ts4.5/i18n/nb.d.ts +20 -0
- package/dist/types-ts4.5/i18n/nl.d.ts +20 -0
- package/dist/types-ts4.5/i18n/pl.d.ts +20 -0
- package/dist/types-ts4.5/i18n/pt_BR.d.ts +20 -0
- package/dist/types-ts4.5/i18n/pt_PT.d.ts +8 -0
- package/dist/types-ts4.5/i18n/ru.d.ts +20 -0
- package/dist/types-ts4.5/i18n/sk.d.ts +8 -0
- package/dist/types-ts4.5/i18n/sv.d.ts +20 -0
- package/dist/types-ts4.5/i18n/th.d.ts +20 -0
- package/dist/types-ts4.5/i18n/tr.d.ts +20 -0
- package/dist/types-ts4.5/i18n/uk.d.ts +20 -0
- package/dist/types-ts4.5/i18n/vi.d.ts +20 -0
- package/dist/types-ts4.5/i18n/zh.d.ts +20 -0
- package/dist/types-ts4.5/i18n/zh_TW.d.ts +20 -0
- package/dist/types-ts4.5/index.d.ts +11 -0
- package/dist/types-ts4.5/messages.d.ts +61 -0
- package/dist/types-ts4.5/react/hooks/use-bidi-warnings.d.ts +10 -0
- package/dist/types-ts4.5/react/hooks/use-in-viewport.d.ts +5 -0
- package/dist/types-ts4.5/react/hooks/use-observed-width.d.ts +3 -0
- package/dist/types-ts4.5/react/index.d.ts +124 -0
- package/dist/types-ts4.5/react/marks/alignment.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/annotation.d.ts +6 -0
- package/dist/types-ts4.5/react/marks/breakout.d.ts +6 -0
- package/dist/types-ts4.5/react/marks/code.d.ts +16 -0
- package/dist/types-ts4.5/react/marks/confluence-inline-comment.d.ts +8 -0
- package/dist/types-ts4.5/react/marks/data-consumer.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/em.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/fragment.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/indentation.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/index.d.ts +21 -0
- package/dist/types-ts4.5/react/marks/link.d.ts +9 -0
- package/dist/types-ts4.5/react/marks/strike.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/strong.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/subsup.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/textColor.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/underline.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/unsupportedMark.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/unsupportedNodeAttribute.d.ts +3 -0
- package/dist/types-ts4.5/react/nodes/blockCard.d.ts +12 -0
- package/dist/types-ts4.5/react/nodes/blockquote.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/bodiedExtension.d.ts +24 -0
- package/dist/types-ts4.5/react/nodes/bulletList.d.ts +5 -0
- package/dist/types-ts4.5/react/nodes/caption.d.ts +4 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/codeBlock.d.ts +15 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/codeBlockButtonContainer.d.ts +12 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/codeBlockContainer.d.ts +10 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/codeBlockCopyButton.d.ts +9 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/codeBlockWrapButton.d.ts +11 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/lightWeightCodeBlock.d.ts +9 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/windowedCodeBlock.d.ts +4 -0
- package/dist/types-ts4.5/react/nodes/date.d.ts +11 -0
- package/dist/types-ts4.5/react/nodes/decisionItem.d.ts +3 -0
- package/dist/types-ts4.5/react/nodes/decisionList.d.ts +7 -0
- package/dist/types-ts4.5/react/nodes/doc.d.ts +3 -0
- package/dist/types-ts4.5/react/nodes/embedCard.d.ts +17 -0
- package/dist/types-ts4.5/react/nodes/emoji.d.ts +12 -0
- package/dist/types-ts4.5/react/nodes/extension.d.ts +113 -0
- package/dist/types-ts4.5/react/nodes/fallback.d.ts +16 -0
- package/dist/types-ts4.5/react/nodes/hardBreak.d.ts +6 -0
- package/dist/types-ts4.5/react/nodes/heading-anchor.d.ts +14 -0
- package/dist/types-ts4.5/react/nodes/heading.d.ts +14 -0
- package/dist/types-ts4.5/react/nodes/index.d.ts +95 -0
- package/dist/types-ts4.5/react/nodes/inline.d.ts +1 -0
- package/dist/types-ts4.5/react/nodes/inlineCard.d.ts +65 -0
- package/dist/types-ts4.5/react/nodes/inlineExtension.d.ts +18 -0
- package/dist/types-ts4.5/react/nodes/layoutColumn.d.ts +6 -0
- package/dist/types-ts4.5/react/nodes/layoutSection.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/listItem.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/media.d.ts +28 -0
- package/dist/types-ts4.5/react/nodes/mediaGroup.d.ts +29 -0
- package/dist/types-ts4.5/react/nodes/mediaInline.d.ts +26 -0
- package/dist/types-ts4.5/react/nodes/mediaSingle/index.d.ts +23 -0
- package/dist/types-ts4.5/react/nodes/mediaSingle/styles.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/mention.d.ts +13 -0
- package/dist/types-ts4.5/react/nodes/orderedList.d.ts +9 -0
- package/dist/types-ts4.5/react/nodes/panel.d.ts +17 -0
- package/dist/types-ts4.5/react/nodes/paragraph.d.ts +3 -0
- package/dist/types-ts4.5/react/nodes/placeholder.d.ts +6 -0
- package/dist/types-ts4.5/react/nodes/rule.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/status.d.ts +10 -0
- package/dist/types-ts4.5/react/nodes/table/colgroup.d.ts +9 -0
- package/dist/types-ts4.5/react/nodes/table/sticky.d.ts +38 -0
- package/dist/types-ts4.5/react/nodes/table/table.d.ts +7 -0
- package/dist/types-ts4.5/react/nodes/table/types.d.ts +7 -0
- package/dist/types-ts4.5/react/nodes/table.d.ts +269 -0
- package/dist/types-ts4.5/react/nodes/tableCell.d.ts +81 -0
- package/dist/types-ts4.5/react/nodes/tableRow.d.ts +24 -0
- package/dist/types-ts4.5/react/nodes/task-item-with-providers.d.ts +29 -0
- package/dist/types-ts4.5/react/nodes/taskItem.d.ts +19 -0
- package/dist/types-ts4.5/react/nodes/taskList.d.ts +8 -0
- package/dist/types-ts4.5/react/nodes/text-wrapper.d.ts +8 -0
- package/dist/types-ts4.5/react/nodes/unknownBlock.d.ts +2 -0
- package/dist/types-ts4.5/react/renderer-node.d.ts +4 -0
- package/dist/types-ts4.5/react/types.d.ts +58 -0
- package/dist/types-ts4.5/react/utils/clipboard.d.ts +1 -0
- package/dist/types-ts4.5/react/utils/element-selection.d.ts +9 -0
- package/dist/types-ts4.5/react/utils/getCardClickHandler.d.ts +2 -0
- package/dist/types-ts4.5/react/utils/inject-props.d.ts +6 -0
- package/dist/types-ts4.5/react/utils/links.d.ts +3 -0
- package/dist/types-ts4.5/react/utils/lists.d.ts +2 -0
- package/dist/types-ts4.5/react/utils/performance/RenderTracking.d.ts +15 -0
- package/dist/types-ts4.5/react/utils/use-select-all-trap.d.ts +2 -0
- package/dist/types-ts4.5/render-document.d.ts +23 -0
- package/dist/types-ts4.5/renderer-context.d.ts +7 -0
- package/dist/types-ts4.5/serializer.d.ts +4 -0
- package/dist/types-ts4.5/steps/index.d.ts +14 -0
- package/dist/types-ts4.5/text/index.d.ts +8 -0
- package/dist/types-ts4.5/text/nodes/blockquote.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/bulletList.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/date.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/decisionItem.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/hardBreak.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/heading.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/index.d.ts +6 -0
- package/dist/types-ts4.5/text/nodes/inlineCard.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/listItem.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/mediaGroup.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/mention.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/orderedList.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/panel.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/paragraph.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/rule.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/status.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/table.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/taskItem.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/unknown.d.ts +3 -0
- package/dist/types-ts4.5/text-serializer.d.ts +1 -0
- package/dist/types-ts4.5/types/i18n.d.ts +5 -0
- package/dist/types-ts4.5/types/mediaOptions.d.ts +12 -0
- package/dist/types-ts4.5/types/smartLinksOptions.d.ts +5 -0
- package/dist/types-ts4.5/ui/Expand.d.ts +23 -0
- package/dist/types-ts4.5/ui/ExtensionRenderer.d.ts +42 -0
- package/dist/types-ts4.5/ui/MediaCard.d.ts +77 -0
- package/dist/types-ts4.5/ui/Renderer/ErrorBoundary.d.ts +24 -0
- package/dist/types-ts4.5/ui/Renderer/breakout-ssr.d.ts +11 -0
- package/dist/types-ts4.5/ui/Renderer/click-to-edit.d.ts +6 -0
- package/dist/types-ts4.5/ui/Renderer/index.d.ts +38 -0
- package/dist/types-ts4.5/ui/Renderer/style.d.ts +16 -0
- package/dist/types-ts4.5/ui/Renderer/truncated-wrapper.d.ts +12 -0
- package/dist/types-ts4.5/ui/Renderer/types.d.ts +16 -0
- package/dist/types-ts4.5/ui/RendererActionsContext/WithRendererActions.d.ts +6 -0
- package/dist/types-ts4.5/ui/RendererActionsContext/index.d.ts +9 -0
- package/dist/types-ts4.5/ui/SmartCardStorage.d.ts +60 -0
- package/dist/types-ts4.5/ui/SortingIcon.d.ts +23 -0
- package/dist/types-ts4.5/ui/TaskItemsFormatContext/TaskItemsFormatContext.d.ts +15 -0
- package/dist/types-ts4.5/ui/TaskItemsFormatContext/index.d.ts +2 -0
- package/dist/types-ts4.5/ui/active-header-id-provider.d.ts +18 -0
- package/dist/types-ts4.5/ui/annotations/context.d.ts +27 -0
- package/dist/types-ts4.5/ui/annotations/draft/component.d.ts +20 -0
- package/dist/types-ts4.5/ui/annotations/draft/dom.d.ts +7 -0
- package/dist/types-ts4.5/ui/annotations/draft/index.d.ts +2 -0
- package/dist/types-ts4.5/ui/annotations/draft/position.d.ts +2 -0
- package/dist/types-ts4.5/ui/annotations/draft/text.d.ts +11 -0
- package/dist/types-ts4.5/ui/annotations/element/index.d.ts +10 -0
- package/dist/types-ts4.5/ui/annotations/element/mark.d.ts +14 -0
- package/dist/types-ts4.5/ui/annotations/hooks/index.d.ts +3 -0
- package/dist/types-ts4.5/ui/annotations/hooks/use-events.d.ts +18 -0
- package/dist/types-ts4.5/ui/annotations/hooks/use-inline-comment-subscriber.d.ts +1 -0
- package/dist/types-ts4.5/ui/annotations/hooks/use-inline-comments-filter.d.ts +9 -0
- package/dist/types-ts4.5/ui/annotations/hooks/use-load-annotations.d.ts +6 -0
- package/dist/types-ts4.5/ui/annotations/hooks/user-selection.d.ts +9 -0
- package/dist/types-ts4.5/ui/annotations/hooks/utils.d.ts +2 -0
- package/dist/types-ts4.5/ui/annotations/index.d.ts +5 -0
- package/dist/types-ts4.5/ui/annotations/selection/index.d.ts +1 -0
- package/dist/types-ts4.5/ui/annotations/selection/mounter.d.ts +20 -0
- package/dist/types-ts4.5/ui/annotations/selection/range-validator.d.ts +13 -0
- package/dist/types-ts4.5/ui/annotations/selection/wrapper.d.ts +8 -0
- package/dist/types-ts4.5/ui/annotations/types.d.ts +22 -0
- package/dist/types-ts4.5/ui/annotations/view/index.d.ts +7 -0
- package/dist/types-ts4.5/ui/index.d.ts +1 -0
- package/dist/types-ts4.5/ui/renderer-props.d.ts +104 -0
- package/dist/types-ts4.5/use-feature-flags.d.ts +2 -0
- package/dist/types-ts4.5/utils.d.ts +24 -0
- package/messages/package.json +2 -2
- package/package.json +29 -14
- package/render-document/package.json +2 -2
- package/renderer-context/package.json +2 -2
- package/report.api.md +4 -6
- package/serializer/package.json +2 -2
- package/text-serializer/package.json +2 -2
- package/use-feature-flags/package.json +2 -2
- package/utils/package.json +2 -2
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by i18n-tools.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
export { default as zh } from './zh';
|
|
8
|
+
export { default as zh_TW } from './zh_TW';
|
|
9
|
+
export { default as cs } from './cs';
|
|
10
|
+
export { default as da } from './da';
|
|
11
|
+
export { default as nl } from './nl';
|
|
12
|
+
export { default as et } from './et';
|
|
13
|
+
export { default as fi } from './fi';
|
|
14
|
+
export { default as fr } from './fr';
|
|
15
|
+
export { default as de } from './de';
|
|
16
|
+
export { default as hu } from './hu';
|
|
17
|
+
export { default as it } from './it';
|
|
18
|
+
export { default as ja } from './ja';
|
|
19
|
+
export { default as ko } from './ko';
|
|
20
|
+
export { default as nb } from './nb';
|
|
21
|
+
export { default as pl } from './pl';
|
|
22
|
+
export { default as pt_BR } from './pt_BR';
|
|
23
|
+
export { default as pt_PT } from './pt_PT';
|
|
24
|
+
export { default as ru } from './ru';
|
|
25
|
+
export { default as sk } from './sk';
|
|
26
|
+
export { default as es } from './es';
|
|
27
|
+
export { default as sv } from './sv';
|
|
28
|
+
export { default as th } from './th';
|
|
29
|
+
export { default as tr } from './tr';
|
|
30
|
+
export { default as uk } from './uk';
|
|
31
|
+
export { default as vi } from './vi';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.editor.headingLink.ascOrderLabel': string;
|
|
9
|
+
'fabric.editor.headingLink.ascSortingLabel': string;
|
|
10
|
+
'fabric.editor.headingLink.copied': string;
|
|
11
|
+
'fabric.editor.headingLink.copyAnchorLink': string;
|
|
12
|
+
'fabric.editor.headingLink.copyAriaLabel': string;
|
|
13
|
+
'fabric.editor.headingLink.descOrderLabel': string;
|
|
14
|
+
'fabric.editor.headingLink.descSortingLabel': string;
|
|
15
|
+
'fabric.editor.headingLink.failedToCopy': string;
|
|
16
|
+
'fabric.editor.headingLink.invalidLabel': string;
|
|
17
|
+
'fabric.editor.headingLink.noOrderLabel': string;
|
|
18
|
+
'fabric.editor.headingLink.noneSortingLabel': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export type { Serializer } from './serializer';
|
|
2
|
+
export { default as ReactSerializer } from './react';
|
|
3
|
+
export { default as TextSerializer } from './text';
|
|
4
|
+
export { default as ReactRenderer } from './ui/Renderer';
|
|
5
|
+
export type { HeadingAnchorLinksProps, RendererAppearance, } from './ui/Renderer/types';
|
|
6
|
+
export type { RendererProps } from './ui/renderer-props';
|
|
7
|
+
export type { RendererContext } from './react/types';
|
|
8
|
+
export { ADFEncoder } from './utils';
|
|
9
|
+
export { renderDocument } from './render-document';
|
|
10
|
+
export type { RenderOutputStat } from './render-document';
|
|
11
|
+
export type { MediaSSR } from './types/mediaOptions';
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export declare const headingAnchorLinkMessages: {
|
|
2
|
+
copyHeadingLinkToClipboard: {
|
|
3
|
+
id: string;
|
|
4
|
+
defaultMessage: string;
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
copiedHeadingLinkToClipboard: {
|
|
8
|
+
id: string;
|
|
9
|
+
defaultMessage: string;
|
|
10
|
+
description: string;
|
|
11
|
+
};
|
|
12
|
+
failedToCopyHeadingLink: {
|
|
13
|
+
id: string;
|
|
14
|
+
defaultMessage: string;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
17
|
+
copyAriaLabel: {
|
|
18
|
+
id: string;
|
|
19
|
+
defaultMessage: string;
|
|
20
|
+
description: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export declare const tableCellMessages: {
|
|
24
|
+
noneSortingLabel: {
|
|
25
|
+
id: string;
|
|
26
|
+
defaultMessage: string;
|
|
27
|
+
description: string;
|
|
28
|
+
};
|
|
29
|
+
ascSortingLabel: {
|
|
30
|
+
id: string;
|
|
31
|
+
defaultMessage: string;
|
|
32
|
+
description: string;
|
|
33
|
+
};
|
|
34
|
+
descSortingLabel: {
|
|
35
|
+
id: string;
|
|
36
|
+
defaultMessage: string;
|
|
37
|
+
description: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
export declare const sortingIconMessages: {
|
|
41
|
+
noOrderLabel: {
|
|
42
|
+
id: string;
|
|
43
|
+
defaultMessage: string;
|
|
44
|
+
description: string;
|
|
45
|
+
};
|
|
46
|
+
ascOrderLabel: {
|
|
47
|
+
id: string;
|
|
48
|
+
defaultMessage: string;
|
|
49
|
+
description: string;
|
|
50
|
+
};
|
|
51
|
+
descOrderLabel: {
|
|
52
|
+
id: string;
|
|
53
|
+
defaultMessage: string;
|
|
54
|
+
description: string;
|
|
55
|
+
};
|
|
56
|
+
invalidLabel: {
|
|
57
|
+
id: string;
|
|
58
|
+
defaultMessage: string;
|
|
59
|
+
description: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface Config {
|
|
3
|
+
enableWarningTooltip: boolean;
|
|
4
|
+
}
|
|
5
|
+
interface Result {
|
|
6
|
+
renderBidiWarnings: (text: string) => ReactNode;
|
|
7
|
+
warningLabel: string;
|
|
8
|
+
}
|
|
9
|
+
export declare const useBidiWarnings: ({ enableWarningTooltip, }: Config) => Result;
|
|
10
|
+
export {};
|