@atlaskit/smart-card 22.1.2 → 22.2.1
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 +13 -0
- package/client/package.json +8 -1
- package/dist/cjs/state/helpers.js +2 -1
- package/dist/cjs/state/hooks/usePrefetch.js +26 -14
- package/dist/cjs/version.json +1 -1
- package/dist/cjs/view/CardWithUrl/loader.js +10 -10
- package/dist/cjs/view/EmbedModal/components/embed-content/index.js +1 -5
- package/dist/es2019/state/helpers.js +2 -1
- package/dist/es2019/state/hooks/usePrefetch.js +9 -4
- package/dist/es2019/version.json +1 -1
- package/dist/es2019/view/CardWithUrl/loader.js +10 -10
- package/dist/es2019/view/EmbedModal/components/embed-content/index.js +1 -5
- package/dist/esm/state/helpers.js +2 -1
- package/dist/esm/state/hooks/usePrefetch.js +26 -14
- package/dist/esm/version.json +1 -1
- package/dist/esm/view/CardWithUrl/loader.js +10 -10
- package/dist/esm/view/EmbedModal/components/embed-content/index.js +1 -4
- package/dist/types/extractors/common/__mocks__/jsonld.d.ts +2 -2
- package/dist/types-ts4.0/__fixtures__/flexible-ui-data-context.d.ts +3 -0
- package/dist/types-ts4.0/__tests_external__/index.d.ts +6 -0
- package/dist/types-ts4.0/__tests_external__/page-objects/BaseCard.d.ts +16 -0
- package/dist/types-ts4.0/__tests_external__/page-objects/BlockCard.d.ts +6 -0
- package/dist/types-ts4.0/__tests_external__/page-objects/EmbedCard.d.ts +6 -0
- package/dist/types-ts4.0/__tests_external__/page-objects/InlineCard.d.ts +6 -0
- package/dist/types-ts4.0/__tests_external__/test-cases/card.d.ts +3 -0
- package/dist/types-ts4.0/__tests_external__/test-cases/embed.d.ts +3 -0
- package/dist/types-ts4.0/__tests_external__/test-cases/inline.d.ts +3 -0
- package/dist/types-ts4.0/__tests_external__/test-cases/types.d.ts +5 -0
- package/dist/types-ts4.0/classNames.d.ts +11 -0
- package/dist/types-ts4.0/client/index.d.ts +1 -0
- package/dist/types-ts4.0/constants.d.ts +185 -0
- package/dist/types-ts4.0/extractors/block/index.d.ts +9 -0
- package/dist/types-ts4.0/extractors/block/types.d.ts +14 -0
- package/dist/types-ts4.0/extractors/common/__mocks__/jsonld.d.ts +232 -0
- package/dist/types-ts4.0/extractors/common/__mocks__/render.d.ts +2 -0
- package/dist/types-ts4.0/extractors/common/actions/extractActions.d.ts +4 -0
- package/dist/types-ts4.0/extractors/common/actions/extractPreviewAction.d.ts +9 -0
- package/dist/types-ts4.0/extractors/common/byline/extractByline.d.ts +3 -0
- package/dist/types-ts4.0/extractors/common/context/extractAccessContext.d.ts +7 -0
- package/dist/types-ts4.0/extractors/common/context/index.d.ts +1 -0
- package/dist/types-ts4.0/extractors/common/detail/extractCommentCount.d.ts +4 -0
- package/dist/types-ts4.0/extractors/common/detail/extractDownloadUrl.d.ts +2 -0
- package/dist/types-ts4.0/extractors/common/detail/extractProgrammingLanguage.d.ts +4 -0
- package/dist/types-ts4.0/extractors/common/detail/extractSubscriberCount.d.ts +4 -0
- package/dist/types-ts4.0/extractors/common/detail/index.d.ts +7 -0
- package/dist/types-ts4.0/extractors/common/detail/types.d.ts +5 -0
- package/dist/types-ts4.0/extractors/common/icon/extractFileFormat.d.ts +2 -0
- package/dist/types-ts4.0/extractors/common/icon/extractIcon.d.ts +14 -0
- package/dist/types-ts4.0/extractors/common/icon/extractIconFromDocument.d.ts +4 -0
- package/dist/types-ts4.0/extractors/common/icon/extractIconFromTask.d.ts +3 -0
- package/dist/types-ts4.0/extractors/common/icon/index.d.ts +4 -0
- package/dist/types-ts4.0/extractors/common/icon/priority.d.ts +4 -0
- package/dist/types-ts4.0/extractors/common/lozenge/extractLozenge.d.ts +3 -0
- package/dist/types-ts4.0/extractors/common/lozenge/extractState.d.ts +3 -0
- package/dist/types-ts4.0/extractors/common/lozenge/extractTag.d.ts +3 -0
- package/dist/types-ts4.0/extractors/common/lozenge/extractTaskStatus.d.ts +3 -0
- package/dist/types-ts4.0/extractors/common/lozenge/extractTaskType.d.ts +7 -0
- package/dist/types-ts4.0/extractors/common/lozenge/index.d.ts +5 -0
- package/dist/types-ts4.0/extractors/common/lozenge/types.d.ts +8 -0
- package/dist/types-ts4.0/extractors/common/lozenge/utils.d.ts +4 -0
- package/dist/types-ts4.0/extractors/common/meta/extractIsTrusted.d.ts +2 -0
- package/dist/types-ts4.0/extractors/common/primitives/extractSummary.d.ts +2 -0
- package/dist/types-ts4.0/extractors/common/primitives/extractTitleTextColor.d.ts +2 -0
- package/dist/types-ts4.0/extractors/common/primitives/extractVisitUrl.d.ts +2 -0
- package/dist/types-ts4.0/extractors/common/primitives/index.d.ts +2 -0
- package/dist/types-ts4.0/extractors/common/title-prefix/extractTitlePrefix.d.ts +5 -0
- package/dist/types-ts4.0/extractors/common/title-prefix/index.d.ts +1 -0
- package/dist/types-ts4.0/extractors/constants.d.ts +12 -0
- package/dist/types-ts4.0/extractors/embed/index.d.ts +3 -0
- package/dist/types-ts4.0/extractors/flexible/collaboratorGroup/index.d.ts +4 -0
- package/dist/types-ts4.0/extractors/flexible/extract-preview.d.ts +4 -0
- package/dist/types-ts4.0/extractors/flexible/extract-priority.d.ts +4 -0
- package/dist/types-ts4.0/extractors/flexible/icon/extract-document-type-icon.d.ts +3 -0
- package/dist/types-ts4.0/extractors/flexible/icon/extract-file-formatIcon.d.ts +3 -0
- package/dist/types-ts4.0/extractors/flexible/icon/extract-icon-renderer.d.ts +4 -0
- package/dist/types-ts4.0/extractors/flexible/icon/extract-jira-task-icon.d.ts +3 -0
- package/dist/types-ts4.0/extractors/flexible/icon/extract-jsonld-data-icon.d.ts +4 -0
- package/dist/types-ts4.0/extractors/flexible/icon/extract-provider-icon.d.ts +4 -0
- package/dist/types-ts4.0/extractors/flexible/icon/extract-url-icon.d.ts +4 -0
- package/dist/types-ts4.0/extractors/flexible/icon/index.d.ts +17 -0
- package/dist/types-ts4.0/extractors/flexible/icon/types.d.ts +6 -0
- package/dist/types-ts4.0/extractors/flexible/index.d.ts +5 -0
- package/dist/types-ts4.0/extractors/flexible/latest-commit/index.d.ts +2 -0
- package/dist/types-ts4.0/extractors/flexible/utils.d.ts +12 -0
- package/dist/types-ts4.0/extractors/hover/extractMetadata.d.ts +3 -0
- package/dist/types-ts4.0/extractors/index.d.ts +14 -0
- package/dist/types-ts4.0/extractors/inline/index.d.ts +6 -0
- package/dist/types-ts4.0/hooks.d.ts +2 -0
- package/dist/types-ts4.0/i18n/cs.d.ts +71 -0
- package/dist/types-ts4.0/i18n/da.d.ts +71 -0
- package/dist/types-ts4.0/i18n/de.d.ts +71 -0
- package/dist/types-ts4.0/i18n/en.d.ts +71 -0
- package/dist/types-ts4.0/i18n/en_GB.d.ts +71 -0
- package/dist/types-ts4.0/i18n/en_ZZ.d.ts +38 -0
- package/dist/types-ts4.0/i18n/es.d.ts +71 -0
- package/dist/types-ts4.0/i18n/et.d.ts +94 -0
- package/dist/types-ts4.0/i18n/fi.d.ts +71 -0
- package/dist/types-ts4.0/i18n/fr.d.ts +71 -0
- package/dist/types-ts4.0/i18n/hu.d.ts +71 -0
- package/dist/types-ts4.0/i18n/index.d.ts +35 -0
- package/dist/types-ts4.0/i18n/is.d.ts +70 -0
- package/dist/types-ts4.0/i18n/it.d.ts +71 -0
- package/dist/types-ts4.0/i18n/ja.d.ts +71 -0
- package/dist/types-ts4.0/i18n/ko.d.ts +71 -0
- package/dist/types-ts4.0/i18n/languages.d.ts +27 -0
- package/dist/types-ts4.0/i18n/nb.d.ts +71 -0
- package/dist/types-ts4.0/i18n/nl.d.ts +71 -0
- package/dist/types-ts4.0/i18n/pl.d.ts +71 -0
- package/dist/types-ts4.0/i18n/pt_BR.d.ts +71 -0
- package/dist/types-ts4.0/i18n/pt_PT.d.ts +94 -0
- package/dist/types-ts4.0/i18n/ro.d.ts +70 -0
- package/dist/types-ts4.0/i18n/ru.d.ts +71 -0
- package/dist/types-ts4.0/i18n/sk.d.ts +94 -0
- package/dist/types-ts4.0/i18n/sv.d.ts +71 -0
- package/dist/types-ts4.0/i18n/th.d.ts +71 -0
- package/dist/types-ts4.0/i18n/tr.d.ts +71 -0
- package/dist/types-ts4.0/i18n/uk.d.ts +71 -0
- package/dist/types-ts4.0/i18n/vi.d.ts +71 -0
- package/dist/types-ts4.0/i18n/zh.d.ts +71 -0
- package/dist/types-ts4.0/i18n/zh_TW.d.ts +71 -0
- package/dist/types-ts4.0/in-product.d.ts +1 -0
- package/dist/types-ts4.0/index.d.ts +22 -0
- package/dist/types-ts4.0/messages.d.ts +8 -0
- package/dist/types-ts4.0/model/invoke-handler.d.ts +3 -0
- package/dist/types-ts4.0/model/invoke-opts.d.ts +17 -0
- package/dist/types-ts4.0/ssr.d.ts +6 -0
- package/dist/types-ts4.0/state/actions/constants.d.ts +6 -0
- package/dist/types-ts4.0/state/actions/index.d.ts +12 -0
- package/dist/types-ts4.0/state/actions/types.d.ts +2 -0
- package/dist/types-ts4.0/state/analytics/index.d.ts +3 -0
- package/dist/types-ts4.0/state/analytics/types.d.ts +9 -0
- package/dist/types-ts4.0/state/analytics/ufoExperiences.d.ts +7 -0
- package/dist/types-ts4.0/state/analytics/useSmartLinkAnalytics.d.ts +195 -0
- package/dist/types-ts4.0/state/config/index.d.ts +2 -0
- package/dist/types-ts4.0/state/flexible-ui-context/index.d.ts +8 -0
- package/dist/types-ts4.0/state/flexible-ui-context/types.d.ts +159 -0
- package/dist/types-ts4.0/state/helpers.d.ts +16 -0
- package/dist/types-ts4.0/state/hooks/index.d.ts +2 -0
- package/dist/types-ts4.0/state/hooks/usePrefetch.d.ts +1 -0
- package/dist/types-ts4.0/state/hooks/useSmartLink.d.ts +50 -0
- package/dist/types-ts4.0/state/hooks-external/useSmartLinkActions.d.ts +49 -0
- package/dist/types-ts4.0/state/hooks-external/useSmartLinkReload.d.ts +19 -0
- package/dist/types-ts4.0/state/index.d.ts +5 -0
- package/dist/types-ts4.0/state/reducers/types.d.ts +4 -0
- package/dist/types-ts4.0/state/renderers/index.d.ts +2 -0
- package/dist/types-ts4.0/state/store/index.d.ts +3 -0
- package/dist/types-ts4.0/state/types.d.ts +1 -0
- package/dist/types-ts4.0/types.d.ts +20 -0
- package/dist/types-ts4.0/utils/analytics/__mocks__/analytics.d.ts +2 -0
- package/dist/types-ts4.0/utils/analytics/analytics.d.ts +32 -0
- package/dist/types-ts4.0/utils/analytics/index.d.ts +4 -0
- package/dist/types-ts4.0/utils/analytics/types.d.ts +93 -0
- package/dist/types-ts4.0/utils/flexible.d.ts +5 -0
- package/dist/types-ts4.0/utils/index.d.ts +12 -0
- package/dist/types-ts4.0/utils/jsonld.d.ts +3 -0
- package/dist/types-ts4.0/utils/mocks.d.ts +74 -0
- package/dist/types-ts4.0/utils/performance.d.ts +8 -0
- package/dist/types-ts4.0/utils/test-utils.d.ts +4 -0
- package/dist/types-ts4.0/utils/token.d.ts +16 -0
- package/dist/types-ts4.0/utils/types.d.ts +14 -0
- package/dist/types-ts4.0/view/BlockCard/actions/AuthorizeAction.d.ts +2 -0
- package/dist/types-ts4.0/view/BlockCard/actions/DownloadAction.d.ts +8 -0
- package/dist/types-ts4.0/view/BlockCard/actions/ForbiddenAction.d.ts +2 -0
- package/dist/types-ts4.0/view/BlockCard/actions/PreviewAction.d.ts +32 -0
- package/dist/types-ts4.0/view/BlockCard/actions/RetryAction.d.ts +2 -0
- package/dist/types-ts4.0/view/BlockCard/actions/ViewAction.d.ts +8 -0
- package/dist/types-ts4.0/view/BlockCard/components/Action.d.ts +11 -0
- package/dist/types-ts4.0/view/BlockCard/components/ActionIcon.d.ts +12 -0
- package/dist/types-ts4.0/view/BlockCard/components/ActionList.d.ts +6 -0
- package/dist/types-ts4.0/view/BlockCard/components/CollaboratorList.d.ts +13 -0
- package/dist/types-ts4.0/view/BlockCard/components/Content.d.ts +7 -0
- package/dist/types-ts4.0/view/BlockCard/components/ContentFooter.d.ts +7 -0
- package/dist/types-ts4.0/view/BlockCard/components/ContentHeader.d.ts +8 -0
- package/dist/types-ts4.0/view/BlockCard/components/Emoji.d.ts +5 -0
- package/dist/types-ts4.0/view/BlockCard/components/Frame.d.ts +14 -0
- package/dist/types-ts4.0/view/BlockCard/components/Link.d.ts +7 -0
- package/dist/types-ts4.0/view/BlockCard/components/Name.d.ts +10 -0
- package/dist/types-ts4.0/view/BlockCard/components/Provider.d.ts +6 -0
- package/dist/types-ts4.0/view/BlockCard/components/Thumbnail.d.ts +9 -0
- package/dist/types-ts4.0/view/BlockCard/components/UnresolvedText.d.ts +6 -0
- package/dist/types-ts4.0/view/BlockCard/index.d.ts +14 -0
- package/dist/types-ts4.0/view/BlockCard/types.d.ts +25 -0
- package/dist/types-ts4.0/view/BlockCard/utils/constants.d.ts +3 -0
- package/dist/types-ts4.0/view/BlockCard/utils/handlers.d.ts +2 -0
- package/dist/types-ts4.0/view/BlockCard/views/ErroredView.d.ts +12 -0
- package/dist/types-ts4.0/view/BlockCard/views/ForbiddenView.d.ts +21 -0
- package/dist/types-ts4.0/view/BlockCard/views/NotFoundView.d.ts +15 -0
- package/dist/types-ts4.0/view/BlockCard/views/ResolvedView.d.ts +32 -0
- package/dist/types-ts4.0/view/BlockCard/views/ResolvingView.d.ts +8 -0
- package/dist/types-ts4.0/view/BlockCard/views/UnauthorizedView.d.ts +17 -0
- package/dist/types-ts4.0/view/Card/index.d.ts +5 -0
- package/dist/types-ts4.0/view/Card/types.d.ts +37 -0
- package/dist/types-ts4.0/view/CardWithData/component.d.ts +5 -0
- package/dist/types-ts4.0/view/CardWithData/loader.d.ts +9 -0
- package/dist/types-ts4.0/view/CardWithData/types.d.ts +15 -0
- package/dist/types-ts4.0/view/CardWithUrl/component-lazy/LazyFallback.d.ts +4 -0
- package/dist/types-ts4.0/view/CardWithUrl/component-lazy/LazyIntersectionObserverCard.d.ts +3 -0
- package/dist/types-ts4.0/view/CardWithUrl/component-lazy/LazyLazilyRenderCard.d.ts +3 -0
- package/dist/types-ts4.0/view/CardWithUrl/component-lazy/index.d.ts +3 -0
- package/dist/types-ts4.0/view/CardWithUrl/component.d.ts +3 -0
- package/dist/types-ts4.0/view/CardWithUrl/loader.d.ts +3 -0
- package/dist/types-ts4.0/view/CardWithUrl/types.d.ts +29 -0
- package/dist/types-ts4.0/view/EmbedCard/EmbedResizeMessageListener.d.ts +15 -0
- package/dist/types-ts4.0/view/EmbedCard/components/ExpandedFrame.d.ts +23 -0
- package/dist/types-ts4.0/view/EmbedCard/components/Frame.d.ts +7 -0
- package/dist/types-ts4.0/view/EmbedCard/components/ImageIcon.d.ts +9 -0
- package/dist/types-ts4.0/view/EmbedCard/components/styled.d.ts +45 -0
- package/dist/types-ts4.0/view/EmbedCard/index.d.ts +3 -0
- package/dist/types-ts4.0/view/EmbedCard/types.d.ts +46 -0
- package/dist/types-ts4.0/view/EmbedCard/views/ErroredView.d.ts +8 -0
- package/dist/types-ts4.0/view/EmbedCard/views/ForbiddenView.d.ts +13 -0
- package/dist/types-ts4.0/view/EmbedCard/views/NotFoundView.d.ts +11 -0
- package/dist/types-ts4.0/view/EmbedCard/views/ResolvedView.d.ts +27 -0
- package/dist/types-ts4.0/view/EmbedCard/views/UnauthorisedView.d.ts +12 -0
- package/dist/types-ts4.0/view/EmbedCard/views/UnresolvedView.d.ts +18 -0
- package/dist/types-ts4.0/view/EmbedModal/components/analytics/index.d.ts +5 -0
- package/dist/types-ts4.0/view/EmbedModal/components/analytics/types.d.ts +6 -0
- package/dist/types-ts4.0/view/EmbedModal/components/embed-content/index.d.ts +5 -0
- package/dist/types-ts4.0/view/EmbedModal/components/embed-content/types.d.ts +6 -0
- package/dist/types-ts4.0/view/EmbedModal/components/error-boundary/index.d.ts +4 -0
- package/dist/types-ts4.0/view/EmbedModal/components/link-info/index.d.ts +4 -0
- package/dist/types-ts4.0/view/EmbedModal/components/link-info/link-info-button/index.d.ts +4 -0
- package/dist/types-ts4.0/view/EmbedModal/components/link-info/link-info-button/types.d.ts +9 -0
- package/dist/types-ts4.0/view/EmbedModal/components/link-info/styled.d.ts +4 -0
- package/dist/types-ts4.0/view/EmbedModal/components/link-info/types.d.ts +13 -0
- package/dist/types-ts4.0/view/EmbedModal/components/size-experiment/index.d.ts +7 -0
- package/dist/types-ts4.0/view/EmbedModal/components/size-experiment/types.d.ts +4 -0
- package/dist/types-ts4.0/view/EmbedModal/constants.d.ts +2 -0
- package/dist/types-ts4.0/view/EmbedModal/index.d.ts +6 -0
- package/dist/types-ts4.0/view/EmbedModal/types.d.ts +34 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/action-button/index.d.ts +5 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/action-button/types.d.ts +8 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/action-dropdown-item/index.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/action-dropdown-item/types.d.ts +8 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/action-icon/index.d.ts +5 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/action-icon/types.d.ts +7 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/index.d.ts +13 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/types.d.ts +48 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/index.d.ts +20 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/utils.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/action-group/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/action-group/types.d.ts +37 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/block/index.d.ts +12 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/element-group/index.d.ts +15 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/element-group/types.d.ts +10 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/footer-block/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/footer-block/types.d.ts +10 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/index.d.ts +5 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/metadata-block/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/metadata-block/types.d.ts +26 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/preview-block/index.d.ts +10 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/preview-block/types.d.ts +8 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/snippet-block/index.d.ts +10 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/snippet-block/types.d.ts +8 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/title-block/errored/index.d.ts +12 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/title-block/index.d.ts +16 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/title-block/resolved/index.d.ts +9 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/title-block/resolving/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/title-block/types.d.ts +86 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/types.d.ts +293 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/utils.d.ts +13 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/atlaskit-icon/index.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/atlaskit-icon/types.d.ts +6 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/image-icon/index.d.ts +5 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/image-icon/types.d.ts +7 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/loading-skeleton/index.d.ts +5 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/loading-skeleton/types.d.ts +16 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/container/index.d.ts +16 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/container/layered-link/index.d.ts +10 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/container/layered-link/types.d.ts +12 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/container/types.d.ts +25 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/avatar-group/index.d.ts +12 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/avatar-group/types.d.ts +21 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/badge/index.d.ts +18 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/badge/types.d.ts +17 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/date-time/index.d.ts +12 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/date-time/types.d.ts +16 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/icon/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/icon/types.d.ts +27 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/index.d.ts +124 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/link/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/link/types.d.ts +35 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/lozenge/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/lozenge/types.d.ts +13 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/media/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/media/types.d.ts +17 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/text/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/text/types.d.ts +17 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/types.d.ts +24 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/elements/utils.d.ts +3 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/types.d.ts +6 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/utils.d.ts +15 -0
- package/dist/types-ts4.0/view/FlexibleCard/index.d.ts +10 -0
- package/dist/types-ts4.0/view/FlexibleCard/types.d.ts +113 -0
- package/dist/types-ts4.0/view/FlexibleCard/utils.d.ts +7 -0
- package/dist/types-ts4.0/view/HoverCard/components/HoverCardComponent.d.ts +4 -0
- package/dist/types-ts4.0/view/HoverCard/components/HoverCardContent.d.ts +9 -0
- package/dist/types-ts4.0/view/HoverCard/components/HoverCardLoadingView.d.ts +4 -0
- package/dist/types-ts4.0/view/HoverCard/components/SnippetOrPreview.d.ts +4 -0
- package/dist/types-ts4.0/view/HoverCard/index.d.ts +3 -0
- package/dist/types-ts4.0/view/HoverCard/styled.d.ts +12 -0
- package/dist/types-ts4.0/view/HoverCard/types.d.ts +45 -0
- package/dist/types-ts4.0/view/HoverCard/utils.d.ts +3 -0
- package/dist/types-ts4.0/view/InlineCard/ErroredView/index.d.ts +21 -0
- package/dist/types-ts4.0/view/InlineCard/ForbiddenView/index.d.ts +25 -0
- package/dist/types-ts4.0/view/InlineCard/Frame/index.d.ts +16 -0
- package/dist/types-ts4.0/view/InlineCard/Frame/styled.d.ts +8 -0
- package/dist/types-ts4.0/view/InlineCard/Icon.d.ts +4 -0
- package/dist/types-ts4.0/view/InlineCard/IconAndTitleLayout/index.d.ts +19 -0
- package/dist/types-ts4.0/view/InlineCard/IconAndTitleLayout/styled.d.ts +13 -0
- package/dist/types-ts4.0/view/InlineCard/ResolvedView/index.d.ts +30 -0
- package/dist/types-ts4.0/view/InlineCard/ResolvingView/index.d.ts +18 -0
- package/dist/types-ts4.0/view/InlineCard/ResolvingView/styled.d.ts +14 -0
- package/dist/types-ts4.0/view/InlineCard/UnauthorisedView/index.d.ts +20 -0
- package/dist/types-ts4.0/view/InlineCard/index.d.ts +9 -0
- package/dist/types-ts4.0/view/InlineCard/styled.d.ts +9 -0
- package/dist/types-ts4.0/view/InlineCard/types.d.ts +21 -0
- package/dist/types-ts4.0/view/LinkView/index.d.ts +8 -0
- package/dist/types-ts4.0/view/SmartLinkEvents/useSmartLinkEvents.d.ts +2 -0
- package/dist/types-ts4.0/view/__mocks__/intersection-observer.d.ts +26 -0
- package/dist/types-ts4.0/view/__mocks__/intersection-observer.mock.d.ts +12 -0
- package/dist/types-ts4.0/view/common/Byline.d.ts +8 -0
- package/dist/types-ts4.0/view/common/Icon.d.ts +9 -0
- package/dist/types-ts4.0/view/common/Metadata.d.ts +8 -0
- package/dist/types-ts4.0/view/common/MetadataList.d.ts +8 -0
- package/dist/types-ts4.0/view/common/Modal.d.ts +26 -0
- package/dist/types-ts4.0/view/common/ModalHeader.d.ts +17 -0
- package/dist/types-ts4.0/view/common/utils.d.ts +5 -0
- package/dist/types-ts4.0/view/types.d.ts +29 -0
- package/hooks/package.json +8 -1
- package/in-product/package.json +8 -1
- package/package.json +13 -6
- package/report.api.md +341 -738
- package/ssr/package.json +8 -1
- package/types/package.json +8 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { JsonLd } from 'json-ld-types';
|
|
3
|
+
import { CardProviderRenderers } from '@atlaskit/link-provider';
|
|
4
|
+
import { CardAppearance } from '../../../view/Card';
|
|
5
|
+
export declare const extractTitlePrefix: (jsonLd: JsonLd.Data.BaseData, renderers?: CardProviderRenderers | undefined, type?: CardAppearance | undefined) => string | React.ReactNode | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { extractTitlePrefix } from './extractTitlePrefix';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const CONFLUENCE_GENERATOR_ID = "https://www.atlassian.com/#Confluence";
|
|
2
|
+
export declare const JIRA_GENERATOR_ID = "https://www.atlassian.com/#Jira";
|
|
3
|
+
export declare const JIRA_TASK = "JiraTask";
|
|
4
|
+
export declare const JIRA_SUB_TASK = "JiraSubTask";
|
|
5
|
+
export declare const JIRA_STORY = "JiraStory";
|
|
6
|
+
export declare const JIRA_BUG = "JiraBug";
|
|
7
|
+
export declare const JIRA_EPIC = "JiraEpic";
|
|
8
|
+
export declare const JIRA_INCIDENT = "JiraIncident";
|
|
9
|
+
export declare const JIRA_SERVICE_REQUEST = "JiraServiceRequest";
|
|
10
|
+
export declare const JIRA_CHANGE = "JiraChange";
|
|
11
|
+
export declare const JIRA_PROBLEM = "JiraProblem";
|
|
12
|
+
export declare const JIRA_CUSTOM_TASK_TYPE = "JiraCustomTaskType";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { EmbedCardResolvedViewProps } from '../../view/EmbedCard/views/ResolvedView';
|
|
3
|
+
export declare const extractEmbedProps: (jsonLd: JsonLd.Data.BaseData, meta?: JsonLd.Meta.BaseMeta | undefined, platform?: JsonLd.Primitives.Platforms | undefined) => EmbedCardResolvedViewProps;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { LinkPerson } from '@atlaskit/linking-common/extractors';
|
|
3
|
+
export declare type LinkTypeUpdatedBy = JsonLd.Data.Document | JsonLd.Data.Project | JsonLd.Data.SourceCodePullRequest | JsonLd.Data.SourceCodeReference | JsonLd.Data.SourceCodeRepository | JsonLd.Data.Task;
|
|
4
|
+
export declare const extractPersonsUpdatedBy: (jsonLd: LinkTypeUpdatedBy) => LinkPerson[] | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { CardProviderRenderers } from '@atlaskit/link-provider';
|
|
3
|
+
declare const extractIconRenderer: (data: JsonLd.Data.BaseData, renderers?: CardProviderRenderers | undefined) => (() => React.ReactNode) | undefined;
|
|
4
|
+
export default extractIconRenderer;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { IconDescriptor } from './types';
|
|
3
|
+
declare const extractUrlIcon: (icon?: JsonLd.Primitives.Link | JsonLd.Primitives.Image | undefined, label?: string | undefined) => IconDescriptor | undefined;
|
|
4
|
+
export default extractUrlIcon;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { JsonLd } from 'json-ld-types';
|
|
3
|
+
import { CardProviderRenderers } from '@atlaskit/link-provider';
|
|
4
|
+
import { IconType, SmartLinkStatus } from '../../../constants';
|
|
5
|
+
export declare const extractLinkIcon: (response: JsonLd.Response, renderers?: CardProviderRenderers | undefined) => {
|
|
6
|
+
render: (() => import("react").ReactNode) | undefined;
|
|
7
|
+
icon?: IconType | undefined;
|
|
8
|
+
label?: string | undefined;
|
|
9
|
+
url?: string | undefined;
|
|
10
|
+
};
|
|
11
|
+
export declare const extractErrorIcon: (response?: JsonLd.Response<JsonLd.Data.BaseData> | undefined, status?: SmartLinkStatus | undefined) => {
|
|
12
|
+
icon: IconType | undefined;
|
|
13
|
+
url: string | undefined;
|
|
14
|
+
} | {
|
|
15
|
+
icon: IconType;
|
|
16
|
+
url?: undefined;
|
|
17
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { CardProviderRenderers } from '@atlaskit/link-provider';
|
|
3
|
+
import { FlexibleUiDataContext } from '../../state/flexible-ui-context/types';
|
|
4
|
+
declare const extractFlexibleUiContext: (response?: JsonLd.Response<JsonLd.Data.BaseData> | undefined, renderers?: CardProviderRenderers | undefined) => FlexibleUiDataContext | undefined;
|
|
5
|
+
export default extractFlexibleUiContext;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
export declare const extractCommentCount: (data: JsonLd.Data.BaseData) => number | undefined;
|
|
3
|
+
export declare const extractDueOn: (data: JsonLd.Data.BaseData) => string | undefined;
|
|
4
|
+
export declare const extractViewCount: (data: JsonLd.Data.BaseData) => number | undefined;
|
|
5
|
+
export declare const extractReactCount: (data: JsonLd.Data.BaseData) => number | undefined;
|
|
6
|
+
export declare const extractVoteCount: (data: JsonLd.Data.BaseData) => number | undefined;
|
|
7
|
+
export declare const extractCreatedBy: (data: JsonLd.Data.BaseData) => string | undefined;
|
|
8
|
+
export declare const extractModifiedBy: (data: JsonLd.Data.BaseData) => string | undefined;
|
|
9
|
+
export declare const extractProgrammingLanguage: (data: JsonLd.Data.BaseData) => string | undefined;
|
|
10
|
+
export declare const extractSourceBranch: (data: JsonLd.Data.SourceCodePullRequest) => string | undefined;
|
|
11
|
+
export declare const extractSubscriberCount: (data: JsonLd.Data.BaseData) => number | undefined;
|
|
12
|
+
export declare const extractTargetBranch: (data: JsonLd.Data.SourceCodePullRequest) => string | undefined;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface ExtractorFunction<T> {
|
|
2
|
+
(json: any): T;
|
|
3
|
+
}
|
|
4
|
+
export interface ExtractOptions<T> {
|
|
5
|
+
defaultExtractorFunction: ExtractorFunction<T>;
|
|
6
|
+
extractorPrioritiesByType: {
|
|
7
|
+
[type: string]: number;
|
|
8
|
+
};
|
|
9
|
+
extractorFunctionsByType: {
|
|
10
|
+
[type: string]: ExtractorFunction<T>;
|
|
11
|
+
};
|
|
12
|
+
json: any;
|
|
13
|
+
}
|
|
14
|
+
export declare function genericExtractPropsFromJSONLD<T>(options: ExtractOptions<T>): T;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { JsonLd } from 'json-ld-types';
|
|
3
|
+
import { CardProviderRenderers } from '@atlaskit/link-provider';
|
|
4
|
+
import { InlineCardResolvedViewProps } from '../../view/InlineCard/ResolvedView';
|
|
5
|
+
export declare const extractInlineIcon: (jsonLd: JsonLd.Data.BaseData) => import("react").ReactNode;
|
|
6
|
+
export declare const extractInlineProps: (jsonLd: JsonLd.Data.BaseData, renderers?: CardProviderRenderers | undefined) => InlineCardResolvedViewProps;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.linking.actions': string;
|
|
3
|
+
'fabric.linking.add_account': string;
|
|
4
|
+
'fabric.linking.cancel': string;
|
|
5
|
+
'fabric.linking.cannot_connect': string;
|
|
6
|
+
'fabric.linking.cannot_find_link': string;
|
|
7
|
+
'fabric.linking.click_to_join': string;
|
|
8
|
+
'fabric.linking.click_to_join_description': string;
|
|
9
|
+
'fabric.linking.close': string;
|
|
10
|
+
'fabric.linking.connect_account_description': string;
|
|
11
|
+
'fabric.linking.connect_link_account': string;
|
|
12
|
+
'fabric.linking.connect_link_account_card_view': string;
|
|
13
|
+
'fabric.linking.connect_link_account_card_view_description': string;
|
|
14
|
+
'fabric.linking.connect_link_account_card_view_name': string;
|
|
15
|
+
'fabric.linking.connect_to': string;
|
|
16
|
+
'fabric.linking.couldnt_load_link': string;
|
|
17
|
+
'fabric.linking.create_on_absolute': string;
|
|
18
|
+
'fabric.linking.create_on_relative': string;
|
|
19
|
+
'fabric.linking.created_by': string;
|
|
20
|
+
'fabric.linking.delete': string;
|
|
21
|
+
'fabric.linking.download': string;
|
|
22
|
+
'fabric.linking.edit': string;
|
|
23
|
+
'fabric.linking.forbidden_access': string;
|
|
24
|
+
'fabric.linking.forbidden_description': string;
|
|
25
|
+
'fabric.linking.invalid_permissions': string;
|
|
26
|
+
'fabric.linking.invalid_permissions_description': string;
|
|
27
|
+
'fabric.linking.join_to_view': string;
|
|
28
|
+
'fabric.linking.loading': string;
|
|
29
|
+
'fabric.linking.modified_on_absolute': string;
|
|
30
|
+
'fabric.linking.modified_on_relative': string;
|
|
31
|
+
'fabric.linking.more_actions': string;
|
|
32
|
+
'fabric.linking.not_found_description': string;
|
|
33
|
+
'fabric.linking.not_found_title': string;
|
|
34
|
+
'fabric.linking.pending_request': string;
|
|
35
|
+
'fabric.linking.preview': string;
|
|
36
|
+
'fabric.linking.priority_blocker': string;
|
|
37
|
+
'fabric.linking.priority_critical': string;
|
|
38
|
+
'fabric.linking.priority_high': string;
|
|
39
|
+
'fabric.linking.priority_highest': string;
|
|
40
|
+
'fabric.linking.priority_low': string;
|
|
41
|
+
'fabric.linking.priority_lowest': string;
|
|
42
|
+
'fabric.linking.priority_major': string;
|
|
43
|
+
'fabric.linking.priority_medium': string;
|
|
44
|
+
'fabric.linking.priority_minor': string;
|
|
45
|
+
'fabric.linking.priority_trivial': string;
|
|
46
|
+
'fabric.linking.priority_undefined': string;
|
|
47
|
+
'fabric.linking.request_access': string;
|
|
48
|
+
'fabric.linking.request_access_description': string;
|
|
49
|
+
'fabric.linking.request_access_pending': string;
|
|
50
|
+
'fabric.linking.request_access_pending_description': string;
|
|
51
|
+
'fabric.linking.request_access_to_view': string;
|
|
52
|
+
'fabric.linking.request_denied': string;
|
|
53
|
+
'fabric.linking.request_denied_description': string;
|
|
54
|
+
'fabric.linking.restricted_link': string;
|
|
55
|
+
'fabric.linking.retry': string;
|
|
56
|
+
'fabric.linking.save': string;
|
|
57
|
+
'fabric.linking.srclink': string;
|
|
58
|
+
'fabric.linking.srclinkunknown': string;
|
|
59
|
+
'fabric.linking.try_again': string;
|
|
60
|
+
'fabric.linking.try_another_account': string;
|
|
61
|
+
'fabric.linking.unlink_account': string;
|
|
62
|
+
'fabric.linking.updated_by': string;
|
|
63
|
+
'fabric.linking.view': string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* NOTE:
|
|
67
|
+
*
|
|
68
|
+
* This file is automatically generated by Traduki 2.0.
|
|
69
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
70
|
+
*/
|
|
71
|
+
export default _default;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.linking.actions': string;
|
|
3
|
+
'fabric.linking.add_account': string;
|
|
4
|
+
'fabric.linking.cancel': string;
|
|
5
|
+
'fabric.linking.cannot_connect': string;
|
|
6
|
+
'fabric.linking.cannot_find_link': string;
|
|
7
|
+
'fabric.linking.click_to_join': string;
|
|
8
|
+
'fabric.linking.click_to_join_description': string;
|
|
9
|
+
'fabric.linking.close': string;
|
|
10
|
+
'fabric.linking.connect_account_description': string;
|
|
11
|
+
'fabric.linking.connect_link_account': string;
|
|
12
|
+
'fabric.linking.connect_link_account_card_view': string;
|
|
13
|
+
'fabric.linking.connect_link_account_card_view_description': string;
|
|
14
|
+
'fabric.linking.connect_link_account_card_view_name': string;
|
|
15
|
+
'fabric.linking.connect_to': string;
|
|
16
|
+
'fabric.linking.couldnt_load_link': string;
|
|
17
|
+
'fabric.linking.create_on_absolute': string;
|
|
18
|
+
'fabric.linking.create_on_relative': string;
|
|
19
|
+
'fabric.linking.created_by': string;
|
|
20
|
+
'fabric.linking.delete': string;
|
|
21
|
+
'fabric.linking.download': string;
|
|
22
|
+
'fabric.linking.edit': string;
|
|
23
|
+
'fabric.linking.forbidden_access': string;
|
|
24
|
+
'fabric.linking.forbidden_description': string;
|
|
25
|
+
'fabric.linking.invalid_permissions': string;
|
|
26
|
+
'fabric.linking.invalid_permissions_description': string;
|
|
27
|
+
'fabric.linking.join_to_view': string;
|
|
28
|
+
'fabric.linking.loading': string;
|
|
29
|
+
'fabric.linking.modified_on_absolute': string;
|
|
30
|
+
'fabric.linking.modified_on_relative': string;
|
|
31
|
+
'fabric.linking.more_actions': string;
|
|
32
|
+
'fabric.linking.not_found_description': string;
|
|
33
|
+
'fabric.linking.not_found_title': string;
|
|
34
|
+
'fabric.linking.pending_request': string;
|
|
35
|
+
'fabric.linking.preview': string;
|
|
36
|
+
'fabric.linking.priority_blocker': string;
|
|
37
|
+
'fabric.linking.priority_critical': string;
|
|
38
|
+
'fabric.linking.priority_high': string;
|
|
39
|
+
'fabric.linking.priority_highest': string;
|
|
40
|
+
'fabric.linking.priority_low': string;
|
|
41
|
+
'fabric.linking.priority_lowest': string;
|
|
42
|
+
'fabric.linking.priority_major': string;
|
|
43
|
+
'fabric.linking.priority_medium': string;
|
|
44
|
+
'fabric.linking.priority_minor': string;
|
|
45
|
+
'fabric.linking.priority_trivial': string;
|
|
46
|
+
'fabric.linking.priority_undefined': string;
|
|
47
|
+
'fabric.linking.request_access': string;
|
|
48
|
+
'fabric.linking.request_access_description': string;
|
|
49
|
+
'fabric.linking.request_access_pending': string;
|
|
50
|
+
'fabric.linking.request_access_pending_description': string;
|
|
51
|
+
'fabric.linking.request_access_to_view': string;
|
|
52
|
+
'fabric.linking.request_denied': string;
|
|
53
|
+
'fabric.linking.request_denied_description': string;
|
|
54
|
+
'fabric.linking.restricted_link': string;
|
|
55
|
+
'fabric.linking.retry': string;
|
|
56
|
+
'fabric.linking.save': string;
|
|
57
|
+
'fabric.linking.srclink': string;
|
|
58
|
+
'fabric.linking.srclinkunknown': string;
|
|
59
|
+
'fabric.linking.try_again': string;
|
|
60
|
+
'fabric.linking.try_another_account': string;
|
|
61
|
+
'fabric.linking.unlink_account': string;
|
|
62
|
+
'fabric.linking.updated_by': string;
|
|
63
|
+
'fabric.linking.view': string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* NOTE:
|
|
67
|
+
*
|
|
68
|
+
* This file is automatically generated by Traduki 2.0.
|
|
69
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
70
|
+
*/
|
|
71
|
+
export default _default;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.linking.actions': string;
|
|
3
|
+
'fabric.linking.add_account': string;
|
|
4
|
+
'fabric.linking.cancel': string;
|
|
5
|
+
'fabric.linking.cannot_connect': string;
|
|
6
|
+
'fabric.linking.cannot_find_link': string;
|
|
7
|
+
'fabric.linking.click_to_join': string;
|
|
8
|
+
'fabric.linking.click_to_join_description': string;
|
|
9
|
+
'fabric.linking.close': string;
|
|
10
|
+
'fabric.linking.connect_account_description': string;
|
|
11
|
+
'fabric.linking.connect_link_account': string;
|
|
12
|
+
'fabric.linking.connect_link_account_card_view': string;
|
|
13
|
+
'fabric.linking.connect_link_account_card_view_description': string;
|
|
14
|
+
'fabric.linking.connect_link_account_card_view_name': string;
|
|
15
|
+
'fabric.linking.connect_to': string;
|
|
16
|
+
'fabric.linking.couldnt_load_link': string;
|
|
17
|
+
'fabric.linking.create_on_absolute': string;
|
|
18
|
+
'fabric.linking.create_on_relative': string;
|
|
19
|
+
'fabric.linking.created_by': string;
|
|
20
|
+
'fabric.linking.delete': string;
|
|
21
|
+
'fabric.linking.download': string;
|
|
22
|
+
'fabric.linking.edit': string;
|
|
23
|
+
'fabric.linking.forbidden_access': string;
|
|
24
|
+
'fabric.linking.forbidden_description': string;
|
|
25
|
+
'fabric.linking.invalid_permissions': string;
|
|
26
|
+
'fabric.linking.invalid_permissions_description': string;
|
|
27
|
+
'fabric.linking.join_to_view': string;
|
|
28
|
+
'fabric.linking.loading': string;
|
|
29
|
+
'fabric.linking.modified_on_absolute': string;
|
|
30
|
+
'fabric.linking.modified_on_relative': string;
|
|
31
|
+
'fabric.linking.more_actions': string;
|
|
32
|
+
'fabric.linking.not_found_description': string;
|
|
33
|
+
'fabric.linking.not_found_title': string;
|
|
34
|
+
'fabric.linking.pending_request': string;
|
|
35
|
+
'fabric.linking.preview': string;
|
|
36
|
+
'fabric.linking.priority_blocker': string;
|
|
37
|
+
'fabric.linking.priority_critical': string;
|
|
38
|
+
'fabric.linking.priority_high': string;
|
|
39
|
+
'fabric.linking.priority_highest': string;
|
|
40
|
+
'fabric.linking.priority_low': string;
|
|
41
|
+
'fabric.linking.priority_lowest': string;
|
|
42
|
+
'fabric.linking.priority_major': string;
|
|
43
|
+
'fabric.linking.priority_medium': string;
|
|
44
|
+
'fabric.linking.priority_minor': string;
|
|
45
|
+
'fabric.linking.priority_trivial': string;
|
|
46
|
+
'fabric.linking.priority_undefined': string;
|
|
47
|
+
'fabric.linking.request_access': string;
|
|
48
|
+
'fabric.linking.request_access_description': string;
|
|
49
|
+
'fabric.linking.request_access_pending': string;
|
|
50
|
+
'fabric.linking.request_access_pending_description': string;
|
|
51
|
+
'fabric.linking.request_access_to_view': string;
|
|
52
|
+
'fabric.linking.request_denied': string;
|
|
53
|
+
'fabric.linking.request_denied_description': string;
|
|
54
|
+
'fabric.linking.restricted_link': string;
|
|
55
|
+
'fabric.linking.retry': string;
|
|
56
|
+
'fabric.linking.save': string;
|
|
57
|
+
'fabric.linking.srclink': string;
|
|
58
|
+
'fabric.linking.srclinkunknown': string;
|
|
59
|
+
'fabric.linking.try_again': string;
|
|
60
|
+
'fabric.linking.try_another_account': string;
|
|
61
|
+
'fabric.linking.unlink_account': string;
|
|
62
|
+
'fabric.linking.updated_by': string;
|
|
63
|
+
'fabric.linking.view': string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* NOTE:
|
|
67
|
+
*
|
|
68
|
+
* This file is automatically generated by Traduki 2.0.
|
|
69
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
70
|
+
*/
|
|
71
|
+
export default _default;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.linking.actions': string;
|
|
3
|
+
'fabric.linking.add_account': string;
|
|
4
|
+
'fabric.linking.cancel': string;
|
|
5
|
+
'fabric.linking.cannot_connect': string;
|
|
6
|
+
'fabric.linking.cannot_find_link': string;
|
|
7
|
+
'fabric.linking.click_to_join': string;
|
|
8
|
+
'fabric.linking.click_to_join_description': string;
|
|
9
|
+
'fabric.linking.close': string;
|
|
10
|
+
'fabric.linking.connect_account_description': string;
|
|
11
|
+
'fabric.linking.connect_link_account': string;
|
|
12
|
+
'fabric.linking.connect_link_account_card_view': string;
|
|
13
|
+
'fabric.linking.connect_link_account_card_view_description': string;
|
|
14
|
+
'fabric.linking.connect_link_account_card_view_name': string;
|
|
15
|
+
'fabric.linking.connect_to': string;
|
|
16
|
+
'fabric.linking.couldnt_load_link': string;
|
|
17
|
+
'fabric.linking.create_on_absolute': string;
|
|
18
|
+
'fabric.linking.create_on_relative': string;
|
|
19
|
+
'fabric.linking.created_by': string;
|
|
20
|
+
'fabric.linking.delete': string;
|
|
21
|
+
'fabric.linking.download': string;
|
|
22
|
+
'fabric.linking.edit': string;
|
|
23
|
+
'fabric.linking.forbidden_access': string;
|
|
24
|
+
'fabric.linking.forbidden_description': string;
|
|
25
|
+
'fabric.linking.invalid_permissions': string;
|
|
26
|
+
'fabric.linking.invalid_permissions_description': string;
|
|
27
|
+
'fabric.linking.join_to_view': string;
|
|
28
|
+
'fabric.linking.loading': string;
|
|
29
|
+
'fabric.linking.modified_on_absolute': string;
|
|
30
|
+
'fabric.linking.modified_on_relative': string;
|
|
31
|
+
'fabric.linking.more_actions': string;
|
|
32
|
+
'fabric.linking.not_found_description': string;
|
|
33
|
+
'fabric.linking.not_found_title': string;
|
|
34
|
+
'fabric.linking.pending_request': string;
|
|
35
|
+
'fabric.linking.preview': string;
|
|
36
|
+
'fabric.linking.priority_blocker': string;
|
|
37
|
+
'fabric.linking.priority_critical': string;
|
|
38
|
+
'fabric.linking.priority_high': string;
|
|
39
|
+
'fabric.linking.priority_highest': string;
|
|
40
|
+
'fabric.linking.priority_low': string;
|
|
41
|
+
'fabric.linking.priority_lowest': string;
|
|
42
|
+
'fabric.linking.priority_major': string;
|
|
43
|
+
'fabric.linking.priority_medium': string;
|
|
44
|
+
'fabric.linking.priority_minor': string;
|
|
45
|
+
'fabric.linking.priority_trivial': string;
|
|
46
|
+
'fabric.linking.priority_undefined': string;
|
|
47
|
+
'fabric.linking.request_access': string;
|
|
48
|
+
'fabric.linking.request_access_description': string;
|
|
49
|
+
'fabric.linking.request_access_pending': string;
|
|
50
|
+
'fabric.linking.request_access_pending_description': string;
|
|
51
|
+
'fabric.linking.request_access_to_view': string;
|
|
52
|
+
'fabric.linking.request_denied': string;
|
|
53
|
+
'fabric.linking.request_denied_description': string;
|
|
54
|
+
'fabric.linking.restricted_link': string;
|
|
55
|
+
'fabric.linking.retry': string;
|
|
56
|
+
'fabric.linking.save': string;
|
|
57
|
+
'fabric.linking.srclink': string;
|
|
58
|
+
'fabric.linking.srclinkunknown': string;
|
|
59
|
+
'fabric.linking.try_again': string;
|
|
60
|
+
'fabric.linking.try_another_account': string;
|
|
61
|
+
'fabric.linking.unlink_account': string;
|
|
62
|
+
'fabric.linking.updated_by': string;
|
|
63
|
+
'fabric.linking.view': string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* NOTE:
|
|
67
|
+
*
|
|
68
|
+
* This file is automatically generated by Traduki 2.0.
|
|
69
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
70
|
+
*/
|
|
71
|
+
export default _default;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.linking.actions': string;
|
|
3
|
+
'fabric.linking.add_account': string;
|
|
4
|
+
'fabric.linking.cancel': string;
|
|
5
|
+
'fabric.linking.cannot_connect': string;
|
|
6
|
+
'fabric.linking.cannot_find_link': string;
|
|
7
|
+
'fabric.linking.click_to_join': string;
|
|
8
|
+
'fabric.linking.click_to_join_description': string;
|
|
9
|
+
'fabric.linking.close': string;
|
|
10
|
+
'fabric.linking.connect_account_description': string;
|
|
11
|
+
'fabric.linking.connect_link_account': string;
|
|
12
|
+
'fabric.linking.connect_link_account_card_view': string;
|
|
13
|
+
'fabric.linking.connect_link_account_card_view_description': string;
|
|
14
|
+
'fabric.linking.connect_link_account_card_view_name': string;
|
|
15
|
+
'fabric.linking.connect_to': string;
|
|
16
|
+
'fabric.linking.couldnt_load_link': string;
|
|
17
|
+
'fabric.linking.create_on_absolute': string;
|
|
18
|
+
'fabric.linking.create_on_relative': string;
|
|
19
|
+
'fabric.linking.created_by': string;
|
|
20
|
+
'fabric.linking.delete': string;
|
|
21
|
+
'fabric.linking.download': string;
|
|
22
|
+
'fabric.linking.edit': string;
|
|
23
|
+
'fabric.linking.forbidden_access': string;
|
|
24
|
+
'fabric.linking.forbidden_description': string;
|
|
25
|
+
'fabric.linking.invalid_permissions': string;
|
|
26
|
+
'fabric.linking.invalid_permissions_description': string;
|
|
27
|
+
'fabric.linking.join_to_view': string;
|
|
28
|
+
'fabric.linking.loading': string;
|
|
29
|
+
'fabric.linking.modified_on_absolute': string;
|
|
30
|
+
'fabric.linking.modified_on_relative': string;
|
|
31
|
+
'fabric.linking.more_actions': string;
|
|
32
|
+
'fabric.linking.not_found_description': string;
|
|
33
|
+
'fabric.linking.not_found_title': string;
|
|
34
|
+
'fabric.linking.pending_request': string;
|
|
35
|
+
'fabric.linking.preview': string;
|
|
36
|
+
'fabric.linking.priority_blocker': string;
|
|
37
|
+
'fabric.linking.priority_critical': string;
|
|
38
|
+
'fabric.linking.priority_high': string;
|
|
39
|
+
'fabric.linking.priority_highest': string;
|
|
40
|
+
'fabric.linking.priority_low': string;
|
|
41
|
+
'fabric.linking.priority_lowest': string;
|
|
42
|
+
'fabric.linking.priority_major': string;
|
|
43
|
+
'fabric.linking.priority_medium': string;
|
|
44
|
+
'fabric.linking.priority_minor': string;
|
|
45
|
+
'fabric.linking.priority_trivial': string;
|
|
46
|
+
'fabric.linking.priority_undefined': string;
|
|
47
|
+
'fabric.linking.request_access': string;
|
|
48
|
+
'fabric.linking.request_access_description': string;
|
|
49
|
+
'fabric.linking.request_access_pending': string;
|
|
50
|
+
'fabric.linking.request_access_pending_description': string;
|
|
51
|
+
'fabric.linking.request_access_to_view': string;
|
|
52
|
+
'fabric.linking.request_denied': string;
|
|
53
|
+
'fabric.linking.request_denied_description': string;
|
|
54
|
+
'fabric.linking.restricted_link': string;
|
|
55
|
+
'fabric.linking.retry': string;
|
|
56
|
+
'fabric.linking.save': string;
|
|
57
|
+
'fabric.linking.srclink': string;
|
|
58
|
+
'fabric.linking.srclinkunknown': string;
|
|
59
|
+
'fabric.linking.try_again': string;
|
|
60
|
+
'fabric.linking.try_another_account': string;
|
|
61
|
+
'fabric.linking.unlink_account': string;
|
|
62
|
+
'fabric.linking.updated_by': string;
|
|
63
|
+
'fabric.linking.view': string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* NOTE:
|
|
67
|
+
*
|
|
68
|
+
* This file is automatically generated by Traduki 2.0.
|
|
69
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
70
|
+
*/
|
|
71
|
+
export default _default;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.linking.cannot_connect': string;
|
|
3
|
+
'fabric.linking.cannot_find_link': string;
|
|
4
|
+
'fabric.linking.click_to_join': string;
|
|
5
|
+
'fabric.linking.connect_link_account': string;
|
|
6
|
+
'fabric.linking.create_on_absolute': string;
|
|
7
|
+
'fabric.linking.create_on_relative': string;
|
|
8
|
+
'fabric.linking.created_by': string;
|
|
9
|
+
'fabric.linking.delete': string;
|
|
10
|
+
'fabric.linking.edit': string;
|
|
11
|
+
'fabric.linking.forbidden_access': string;
|
|
12
|
+
'fabric.linking.invalid_permissions': string;
|
|
13
|
+
'fabric.linking.modified_on_absolute': string;
|
|
14
|
+
'fabric.linking.modified_on_relative': string;
|
|
15
|
+
'fabric.linking.more_actions': string;
|
|
16
|
+
'fabric.linking.pending_request': string;
|
|
17
|
+
'fabric.linking.priority_blocker': string;
|
|
18
|
+
'fabric.linking.priority_critical': string;
|
|
19
|
+
'fabric.linking.priority_high': string;
|
|
20
|
+
'fabric.linking.priority_highest': string;
|
|
21
|
+
'fabric.linking.priority_low': string;
|
|
22
|
+
'fabric.linking.priority_lowest': string;
|
|
23
|
+
'fabric.linking.priority_major': string;
|
|
24
|
+
'fabric.linking.priority_medium': string;
|
|
25
|
+
'fabric.linking.priority_minor': string;
|
|
26
|
+
'fabric.linking.priority_trivial': string;
|
|
27
|
+
'fabric.linking.priority_undefined': string;
|
|
28
|
+
'fabric.linking.request_access': string;
|
|
29
|
+
'fabric.linking.request_denied': string;
|
|
30
|
+
'fabric.linking.updated_by': string;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* NOTE:
|
|
34
|
+
*
|
|
35
|
+
* This file is automatically generated by Traduki 2.0.
|
|
36
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
37
|
+
*/
|
|
38
|
+
export default _default;
|