@atlaskit/smart-card 26.0.1 → 26.1.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 +12 -0
- package/dist/cjs/state/analytics/useSmartLinkAnalytics.js +37 -0
- package/dist/cjs/state/hooks/use-invoke/index.js +28 -8
- package/dist/cjs/utils/analytics/analytics.js +198 -126
- package/dist/cjs/utils/analytics/index.js +18 -0
- package/dist/cjs/version.json +1 -1
- package/dist/cjs/view/BlockCard/views/flexible/FlexibleResolvedView.js +1 -0
- package/dist/cjs/view/CardWithUrl/component.js +2 -1
- package/dist/cjs/view/FlexibleCard/components/common/lozenge-action/index.js +43 -30
- package/dist/cjs/view/HoverCard/components/HoverCardContent.js +2 -1
- package/dist/cjs/view/HoverCard/styled.js +2 -1
- package/dist/es2019/state/analytics/useSmartLinkAnalytics.js +37 -3
- package/dist/es2019/state/hooks/use-invoke/index.js +23 -9
- package/dist/es2019/utils/analytics/analytics.js +66 -0
- package/dist/es2019/utils/analytics/index.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/es2019/view/BlockCard/views/flexible/FlexibleResolvedView.js +1 -0
- package/dist/es2019/view/CardWithUrl/component.js +2 -1
- package/dist/es2019/view/FlexibleCard/components/common/lozenge-action/index.js +29 -18
- package/dist/es2019/view/HoverCard/components/HoverCardContent.js +2 -1
- package/dist/es2019/view/HoverCard/styled.js +3 -1
- package/dist/esm/state/analytics/useSmartLinkAnalytics.js +39 -2
- package/dist/esm/state/hooks/use-invoke/index.js +28 -8
- package/dist/esm/utils/analytics/analytics.js +190 -124
- package/dist/esm/utils/analytics/index.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/esm/view/BlockCard/views/flexible/FlexibleResolvedView.js +1 -0
- package/dist/esm/view/CardWithUrl/component.js +2 -1
- package/dist/esm/view/FlexibleCard/components/common/lozenge-action/index.js +43 -30
- package/dist/esm/view/HoverCard/components/HoverCardContent.js +2 -1
- package/dist/esm/view/HoverCard/styled.js +3 -1
- package/dist/types/state/analytics/useSmartLinkAnalytics.d.ts +31 -0
- package/dist/types/state/flexible-ui-context/index.d.ts +24 -0
- package/dist/types/state/hooks/use-invoke/index.d.ts +7 -1
- package/dist/types/state/hooks/useSmartLink.d.ts +12 -0
- package/dist/types/utils/analytics/analytics.d.ts +13 -0
- package/dist/types/utils/analytics/index.d.ts +1 -1
- package/dist/types/utils/analytics/types.d.ts +1 -0
- package/dist/types/utils/mocks.d.ts +12 -0
- package/dist/types/utils/types.d.ts +2 -2
- package/dist/types/view/FlexibleCard/components/common/lozenge-action/types.d.ts +1 -1
- package/dist/types/view/HoverCard/styled.d.ts +1 -1
- package/dist/types-ts4.0/__fixtures__/bitbucket-pull-request.d.ts +73 -0
- package/dist/types-ts4.0/__fixtures__/confluence-blog.d.ts +49 -0
- package/dist/types-ts4.0/__fixtures__/confluence-page.d.ts +49 -0
- package/dist/types-ts4.0/__fixtures__/confluence-space.d.ts +36 -0
- package/dist/types-ts4.0/__fixtures__/confluence-template.d.ts +31 -0
- package/dist/types-ts4.0/__fixtures__/figma.d.ts +43 -0
- package/dist/types-ts4.0/__fixtures__/flexible-ui-data-context.d.ts +3 -0
- package/dist/types-ts4.0/__fixtures__/jira-roadmap.d.ts +35 -0
- package/dist/types-ts4.0/__fixtures__/jira-task.d.ts +78 -0
- package/dist/types-ts4.0/__fixtures__/youtube-video.d.ts +44 -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 +210 -0
- package/dist/types-ts4.0/extractors/action/extract-lozenge-action-items.d.ts +4 -0
- package/dist/types-ts4.0/extractors/block/index.d.ts +9 -0
- package/dist/types-ts4.0/extractors/block/types.d.ts +12 -0
- package/dist/types-ts4.0/extractors/common/__mocks__/jsonld.d.ts +38 -0
- package/dist/types-ts4.0/extractors/common/__mocks__/withIntl.d.ts +2 -0
- package/dist/types-ts4.0/extractors/common/actions/extractActions.d.ts +5 -0
- package/dist/types-ts4.0/extractors/common/actions/extractPreviewAction.d.ts +10 -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/extractAttachmentCount.d.ts +4 -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 +9 -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/extractLozengeText.d.ts +2 -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 +10 -0
- package/dist/types-ts4.0/extractors/common/lozenge/utils.d.ts +4 -0
- package/dist/types-ts4.0/extractors/common/meta/extractIsSupportTheming.d.ts +2 -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 +13 -0
- package/dist/types-ts4.0/extractors/embed/index.d.ts +4 -0
- package/dist/types-ts4.0/extractors/flexible/actions/extract-download-action.d.ts +3 -0
- package/dist/types-ts4.0/extractors/flexible/actions/extract-preview-action.d.ts +3 -0
- package/dist/types-ts4.0/extractors/flexible/actions/extract-view-action.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/extract-server-action.d.ts +3 -0
- package/dist/types-ts4.0/extractors/flexible/extract-state.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 +4 -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 +17 -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/hoverCard.d.ts +2 -0
- package/dist/types-ts4.0/i18n/cs.d.ts +84 -0
- package/dist/types-ts4.0/i18n/da.d.ts +84 -0
- package/dist/types-ts4.0/i18n/de.d.ts +84 -0
- package/dist/types-ts4.0/i18n/en.d.ts +88 -0
- package/dist/types-ts4.0/i18n/en_GB.d.ts +88 -0
- package/dist/types-ts4.0/i18n/en_ZZ.d.ts +38 -0
- package/dist/types-ts4.0/i18n/es.d.ts +84 -0
- package/dist/types-ts4.0/i18n/et.d.ts +94 -0
- package/dist/types-ts4.0/i18n/fi.d.ts +83 -0
- package/dist/types-ts4.0/i18n/fr.d.ts +84 -0
- package/dist/types-ts4.0/i18n/hu.d.ts +84 -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 +84 -0
- package/dist/types-ts4.0/i18n/ja.d.ts +84 -0
- package/dist/types-ts4.0/i18n/ko.d.ts +84 -0
- package/dist/types-ts4.0/i18n/languages.d.ts +27 -0
- package/dist/types-ts4.0/i18n/nb.d.ts +84 -0
- package/dist/types-ts4.0/i18n/nl.d.ts +84 -0
- package/dist/types-ts4.0/i18n/pl.d.ts +84 -0
- package/dist/types-ts4.0/i18n/pt_BR.d.ts +84 -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 +84 -0
- package/dist/types-ts4.0/i18n/sk.d.ts +94 -0
- package/dist/types-ts4.0/i18n/sv.d.ts +84 -0
- package/dist/types-ts4.0/i18n/th.d.ts +84 -0
- package/dist/types-ts4.0/i18n/tr.d.ts +84 -0
- package/dist/types-ts4.0/i18n/uk.d.ts +84 -0
- package/dist/types-ts4.0/i18n/vi.d.ts +84 -0
- package/dist/types-ts4.0/i18n/zh.d.ts +84 -0
- package/dist/types-ts4.0/i18n/zh_TW.d.ts +84 -0
- package/dist/types-ts4.0/in-product.d.ts +1 -0
- package/dist/types-ts4.0/index.d.ts +23 -0
- package/dist/types-ts4.0/linkUrl.d.ts +2 -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 +11 -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/useDispatchAnalytics.d.ts +11 -0
- package/dist/types-ts4.0/state/analytics/useMouseDownEvent.d.ts +3 -0
- package/dist/types-ts4.0/state/analytics/useSmartLinkAnalytics.d.ts +284 -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 +131 -0
- package/dist/types-ts4.0/state/flexible-ui-context/types.d.ts +219 -0
- package/dist/types-ts4.0/state/flexible-ui-context/utils.d.ts +6 -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/use-invoke/index.d.ts +9 -0
- package/dist/types-ts4.0/state/hooks/use-invoke/types.d.ts +34 -0
- package/dist/types-ts4.0/state/hooks/use-resolve/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 +75 -0
- package/dist/types-ts4.0/state/hooks-external/useSmartLinkActions.d.ts +56 -0
- package/dist/types-ts4.0/state/hooks-external/useSmartLinkReload.d.ts +22 -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/actions/create-status-update-request.d.ts +4 -0
- package/dist/types-ts4.0/utils/analytics/__mocks__/analytics.d.ts +2 -0
- package/dist/types-ts4.0/utils/analytics/analytics.d.ts +53 -0
- package/dist/types-ts4.0/utils/analytics/click.d.ts +22 -0
- package/dist/types-ts4.0/utils/analytics/index.d.ts +4 -0
- package/dist/types-ts4.0/utils/analytics/types.d.ts +130 -0
- package/dist/types-ts4.0/utils/flexible.d.ts +7 -0
- package/dist/types-ts4.0/utils/index.d.ts +23 -0
- package/dist/types-ts4.0/utils/jsonld.d.ts +4 -0
- package/dist/types-ts4.0/utils/mocks.d.ts +97 -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 +31 -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/actions/flexible/AuthorizeAction.d.ts +9 -0
- package/dist/types-ts4.0/view/BlockCard/actions/flexible/ForbiddenAction.d.ts +11 -0
- package/dist/types-ts4.0/view/BlockCard/actions/flexible/RetryAction.d.ts +8 -0
- package/dist/types-ts4.0/view/BlockCard/components/Action.d.ts +13 -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 +7 -0
- package/dist/types-ts4.0/view/BlockCard/components/CollaboratorList.d.ts +15 -0
- package/dist/types-ts4.0/view/BlockCard/components/Content.d.ts +9 -0
- package/dist/types-ts4.0/view/BlockCard/components/ContentFooter.d.ts +9 -0
- package/dist/types-ts4.0/view/BlockCard/components/ContentHeader.d.ts +10 -0
- package/dist/types-ts4.0/view/BlockCard/components/Emoji.d.ts +7 -0
- package/dist/types-ts4.0/view/BlockCard/components/Frame.d.ts +16 -0
- package/dist/types-ts4.0/view/BlockCard/components/Link.d.ts +8 -0
- package/dist/types-ts4.0/view/BlockCard/components/Name.d.ts +12 -0
- package/dist/types-ts4.0/view/BlockCard/components/Provider.d.ts +8 -0
- package/dist/types-ts4.0/view/BlockCard/components/Thumbnail.d.ts +10 -0
- package/dist/types-ts4.0/view/BlockCard/components/UnresolvedText.d.ts +8 -0
- package/dist/types-ts4.0/view/BlockCard/components/flexible/footer/index.d.ts +12 -0
- package/dist/types-ts4.0/view/BlockCard/components/flexible/footer/types.d.ts +5 -0
- package/dist/types-ts4.0/view/BlockCard/index.d.ts +15 -0
- package/dist/types-ts4.0/view/BlockCard/types.d.ts +27 -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 +14 -0
- package/dist/types-ts4.0/view/BlockCard/views/ForbiddenView.d.ts +23 -0
- package/dist/types-ts4.0/view/BlockCard/views/NotFoundView.d.ts +17 -0
- package/dist/types-ts4.0/view/BlockCard/views/ResolvedView.d.ts +36 -0
- package/dist/types-ts4.0/view/BlockCard/views/ResolvingView.d.ts +9 -0
- package/dist/types-ts4.0/view/BlockCard/views/UnauthorizedView.d.ts +19 -0
- package/dist/types-ts4.0/view/BlockCard/views/flexible/FlexibleErroredView.d.ts +10 -0
- package/dist/types-ts4.0/view/BlockCard/views/flexible/FlexibleForbiddenView.d.ts +11 -0
- package/dist/types-ts4.0/view/BlockCard/views/flexible/FlexibleNotFoundView.d.ts +10 -0
- package/dist/types-ts4.0/view/BlockCard/views/flexible/FlexibleResolvedView.d.ts +9 -0
- package/dist/types-ts4.0/view/BlockCard/views/flexible/FlexibleUnauthorisedView.d.ts +11 -0
- package/dist/types-ts4.0/view/BlockCard/views/flexible/types.d.ts +73 -0
- package/dist/types-ts4.0/view/Card/index.d.ts +5 -0
- package/dist/types-ts4.0/view/Card/types.d.ts +63 -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 +38 -0
- package/dist/types-ts4.0/view/EmbedCard/EmbedResizeMessageListener.d.ts +15 -0
- package/dist/types-ts4.0/view/EmbedCard/components/ExpandedFrame.d.ts +26 -0
- package/dist/types-ts4.0/view/EmbedCard/components/Frame.d.ts +9 -0
- package/dist/types-ts4.0/view/EmbedCard/components/IframeDwellTracker.d.ts +8 -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 +95 -0
- package/dist/types-ts4.0/view/EmbedCard/constants.d.ts +3 -0
- package/dist/types-ts4.0/view/EmbedCard/index.d.ts +3 -0
- package/dist/types-ts4.0/view/EmbedCard/types.d.ts +52 -0
- package/dist/types-ts4.0/view/EmbedCard/views/ErroredView.d.ts +9 -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 +34 -0
- package/dist/types-ts4.0/view/EmbedCard/views/UnauthorisedView.d.ts +15 -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/constants.d.ts +2 -0
- package/dist/types-ts4.0/view/EmbedModal/index.d.ts +23 -0
- package/dist/types-ts4.0/view/EmbedModal/types.d.ts +31 -0
- package/dist/types-ts4.0/view/EmbedModal/utils.d.ts +10 -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/download-action/index.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/download-action/types.d.ts +8 -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/preview-action/index.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/preview-action/types.d.ts +16 -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/action/view-action/index.d.ts +5 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/action/view-action/types.d.ts +8 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/actions/index.d.ts +41 -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/action-group-item/index.d.ts +12 -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 +11 -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 +15 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/index.d.ts +6 -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 +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/preview-block/resolved/index.d.ts +11 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/preview-block/types.d.ts +23 -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 +92 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/types.d.ts +367 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/blocks/utils.d.ts +12 -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 +8 -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/common/lozenge-action/error-boundary/index.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/index.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/lozenge-action-error/index.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/lozenge-action-error/styled.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/lozenge-action-error/types.d.ts +35 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/lozenge-action-item/index.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/lozenge-action-item/types.d.ts +6 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/lozenge-action-trigger/index.d.ts +4 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/lozenge-action-trigger/type.d.ts +8 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/styled.d.ts +3 -0
- package/dist/types-ts4.0/view/FlexibleCard/components/common/lozenge-action/types.d.ts +15 -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 +23 -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 +145 -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 +39 -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 +23 -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 +18 -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 +144 -0
- package/dist/types-ts4.0/view/FlexibleCard/utils.d.ts +6 -0
- package/dist/types-ts4.0/view/HoverCard/components/HoverCardComponent.d.ts +3 -0
- package/dist/types-ts4.0/view/HoverCard/components/HoverCardContent.d.ts +9 -0
- package/dist/types-ts4.0/view/HoverCard/components/SnippetOrPreview.d.ts +4 -0
- package/dist/types-ts4.0/view/HoverCard/components/views/resolved/index.d.ts +7 -0
- package/dist/types-ts4.0/view/HoverCard/components/views/resolved/styled.d.ts +3 -0
- package/dist/types-ts4.0/view/HoverCard/components/views/resolved/types.d.ts +13 -0
- package/dist/types-ts4.0/view/HoverCard/components/views/resolving/index.d.ts +4 -0
- package/dist/types-ts4.0/view/HoverCard/components/views/resolving/styled.d.ts +2 -0
- package/dist/types-ts4.0/view/HoverCard/components/views/resolving/types.d.ts +6 -0
- package/dist/types-ts4.0/view/HoverCard/components/views/unauthorised/index.d.ts +4 -0
- package/dist/types-ts4.0/view/HoverCard/components/views/unauthorised/styled.d.ts +3 -0
- package/dist/types-ts4.0/view/HoverCard/components/views/unauthorised/types.d.ts +30 -0
- package/dist/types-ts4.0/view/HoverCard/index.d.ts +3 -0
- package/dist/types-ts4.0/view/HoverCard/styled.d.ts +9 -0
- package/dist/types-ts4.0/view/HoverCard/types.d.ts +75 -0
- package/dist/types-ts4.0/view/HoverCard/utils.d.ts +5 -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 +28 -0
- package/dist/types-ts4.0/view/InlineCard/Frame/index.d.ts +15 -0
- package/dist/types-ts4.0/view/InlineCard/Frame/styled.d.ts +15 -0
- package/dist/types-ts4.0/view/InlineCard/Icon.d.ts +12 -0
- package/dist/types-ts4.0/view/InlineCard/IconAndTitleLayout/index.d.ts +28 -0
- package/dist/types-ts4.0/view/InlineCard/IconAndTitleLayout/styled.d.ts +40 -0
- package/dist/types-ts4.0/view/InlineCard/ResolvedView/index.d.ts +32 -0
- package/dist/types-ts4.0/view/InlineCard/ResolvingView/index.d.ts +17 -0
- package/dist/types-ts4.0/view/InlineCard/ResolvingView/styled.d.ts +9 -0
- package/dist/types-ts4.0/view/InlineCard/UnauthorisedView/index.d.ts +31 -0
- package/dist/types-ts4.0/view/InlineCard/index.d.ts +9 -0
- package/dist/types-ts4.0/view/InlineCard/styled.d.ts +17 -0
- package/dist/types-ts4.0/view/InlineCard/types.d.ts +25 -0
- package/dist/types-ts4.0/view/LinkUrl/LinkWarningModal/hooks/use-link-warning-modal.d.ts +9 -0
- package/dist/types-ts4.0/view/LinkUrl/LinkWarningModal/index.d.ts +13 -0
- package/dist/types-ts4.0/view/LinkUrl/index.d.ts +6 -0
- package/dist/types-ts4.0/view/LinkUrl/types.d.ts +13 -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/common/Byline.d.ts +10 -0
- package/dist/types-ts4.0/view/common/Icon.d.ts +12 -0
- package/dist/types-ts4.0/view/common/Metadata.d.ts +10 -0
- package/dist/types-ts4.0/view/common/MetadataList.d.ts +9 -0
- package/dist/types-ts4.0/view/common/UnauthorisedViewContent.d.ts +26 -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/package.json +3 -3
- package/report.api.md +20 -1
- package/tmp/api-report-tmp.d.ts +17 -2
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
data: {
|
|
3
|
+
'@context': {
|
|
4
|
+
'@vocab': string;
|
|
5
|
+
atlassian: string;
|
|
6
|
+
schema: string;
|
|
7
|
+
};
|
|
8
|
+
'@type': string[];
|
|
9
|
+
generator: {
|
|
10
|
+
'@id': string;
|
|
11
|
+
'@type': string;
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
icon: undefined;
|
|
15
|
+
name: string;
|
|
16
|
+
summary: string;
|
|
17
|
+
'atlassian:titlePrefix': {
|
|
18
|
+
'@type': string;
|
|
19
|
+
text: string;
|
|
20
|
+
};
|
|
21
|
+
url: string;
|
|
22
|
+
};
|
|
23
|
+
meta: {
|
|
24
|
+
access: string;
|
|
25
|
+
auth: never[];
|
|
26
|
+
definitionId: string;
|
|
27
|
+
resourceType: string;
|
|
28
|
+
visibility: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
meta: {
|
|
3
|
+
access: string;
|
|
4
|
+
visibility: string;
|
|
5
|
+
auth: {
|
|
6
|
+
key: string;
|
|
7
|
+
displayName: string;
|
|
8
|
+
url: string;
|
|
9
|
+
}[];
|
|
10
|
+
definitionId: string;
|
|
11
|
+
key: string;
|
|
12
|
+
resourceType: string;
|
|
13
|
+
version: string;
|
|
14
|
+
};
|
|
15
|
+
data: {
|
|
16
|
+
url: string;
|
|
17
|
+
'@context': {
|
|
18
|
+
'@vocab': string;
|
|
19
|
+
atlassian: string;
|
|
20
|
+
schema: string;
|
|
21
|
+
};
|
|
22
|
+
'@type': string;
|
|
23
|
+
name: string;
|
|
24
|
+
updated: string;
|
|
25
|
+
image: {
|
|
26
|
+
'@type': string;
|
|
27
|
+
url: string;
|
|
28
|
+
};
|
|
29
|
+
generator: {
|
|
30
|
+
'@type': string;
|
|
31
|
+
name: string;
|
|
32
|
+
icon: {
|
|
33
|
+
'@type': string;
|
|
34
|
+
url: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
preview: {
|
|
38
|
+
'@type': string;
|
|
39
|
+
href: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
meta: {
|
|
3
|
+
auth: never[];
|
|
4
|
+
definitionId: string;
|
|
5
|
+
visibility: string;
|
|
6
|
+
access: string;
|
|
7
|
+
resourceType: string;
|
|
8
|
+
key: string;
|
|
9
|
+
};
|
|
10
|
+
data: {
|
|
11
|
+
'@context': {
|
|
12
|
+
'@vocab': string;
|
|
13
|
+
atlassian: string;
|
|
14
|
+
schema: string;
|
|
15
|
+
};
|
|
16
|
+
generator: {
|
|
17
|
+
'@type': string;
|
|
18
|
+
'@id': string;
|
|
19
|
+
name: string;
|
|
20
|
+
};
|
|
21
|
+
'@type': string[];
|
|
22
|
+
url: string;
|
|
23
|
+
name: string;
|
|
24
|
+
summary: string;
|
|
25
|
+
icon: {
|
|
26
|
+
'@type': string;
|
|
27
|
+
url: string;
|
|
28
|
+
};
|
|
29
|
+
preview: {
|
|
30
|
+
href: string;
|
|
31
|
+
'atlassian:supportedPlatforms': string[];
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export default _default;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { SmartLinkActionType } from '@atlaskit/linking-types';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
meta: {
|
|
4
|
+
auth: never[];
|
|
5
|
+
definitionId: string;
|
|
6
|
+
visibility: string;
|
|
7
|
+
access: string;
|
|
8
|
+
resourceType: string;
|
|
9
|
+
key: string;
|
|
10
|
+
};
|
|
11
|
+
data: {
|
|
12
|
+
'@context': {
|
|
13
|
+
'@vocab': string;
|
|
14
|
+
atlassian: string;
|
|
15
|
+
schema: string;
|
|
16
|
+
};
|
|
17
|
+
generator: {
|
|
18
|
+
'@type': string;
|
|
19
|
+
'@id': string;
|
|
20
|
+
name: string;
|
|
21
|
+
};
|
|
22
|
+
'@type': string[];
|
|
23
|
+
name: string;
|
|
24
|
+
'schema:dateCreated': string;
|
|
25
|
+
updated: string;
|
|
26
|
+
'schema:commentCount': number;
|
|
27
|
+
'atlassian:subscriberCount': number;
|
|
28
|
+
tag: {
|
|
29
|
+
'@type': string;
|
|
30
|
+
name: string;
|
|
31
|
+
appearance: string;
|
|
32
|
+
};
|
|
33
|
+
taskType: {
|
|
34
|
+
'@type': string[];
|
|
35
|
+
'@id': string;
|
|
36
|
+
name: string;
|
|
37
|
+
icon: {
|
|
38
|
+
'@type': string;
|
|
39
|
+
url: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
icon: {
|
|
43
|
+
'@type': string;
|
|
44
|
+
url: string;
|
|
45
|
+
};
|
|
46
|
+
attributedTo: {
|
|
47
|
+
'@type': string;
|
|
48
|
+
name: string;
|
|
49
|
+
};
|
|
50
|
+
url: string;
|
|
51
|
+
'atlassian:priority': {
|
|
52
|
+
'@type': string;
|
|
53
|
+
name: string;
|
|
54
|
+
icon: {
|
|
55
|
+
'@type': string;
|
|
56
|
+
url: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
'atlassian:serverAction': {
|
|
60
|
+
'@type': string;
|
|
61
|
+
name: string;
|
|
62
|
+
dataRetrievalAction: {
|
|
63
|
+
'@type': string;
|
|
64
|
+
name: SmartLinkActionType;
|
|
65
|
+
};
|
|
66
|
+
dataUpdateAction: {
|
|
67
|
+
'@type': string;
|
|
68
|
+
name: SmartLinkActionType;
|
|
69
|
+
};
|
|
70
|
+
refField: string;
|
|
71
|
+
resourceIdentifiers: {
|
|
72
|
+
issueKey: string;
|
|
73
|
+
hostname: string;
|
|
74
|
+
};
|
|
75
|
+
}[];
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
export default _default;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
meta: {
|
|
3
|
+
access: string;
|
|
4
|
+
visibility: string;
|
|
5
|
+
auth: never[];
|
|
6
|
+
definitionId: string;
|
|
7
|
+
key: string;
|
|
8
|
+
resourceType: string;
|
|
9
|
+
};
|
|
10
|
+
data: {
|
|
11
|
+
'@type': string;
|
|
12
|
+
'@context': {
|
|
13
|
+
'@vocab': string;
|
|
14
|
+
atlassian: string;
|
|
15
|
+
schema: string;
|
|
16
|
+
};
|
|
17
|
+
url: string;
|
|
18
|
+
name: string;
|
|
19
|
+
updated: string;
|
|
20
|
+
summary: string;
|
|
21
|
+
generator: {
|
|
22
|
+
'@type': string;
|
|
23
|
+
name: string;
|
|
24
|
+
icon: {
|
|
25
|
+
'@type': string;
|
|
26
|
+
url: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
icon: {
|
|
30
|
+
'@type': string;
|
|
31
|
+
url: string;
|
|
32
|
+
};
|
|
33
|
+
image: {
|
|
34
|
+
'@type': string;
|
|
35
|
+
url: string;
|
|
36
|
+
};
|
|
37
|
+
preview: {
|
|
38
|
+
'@type': string;
|
|
39
|
+
href: string;
|
|
40
|
+
'atlassian:aspectRatio': number;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { InlineCardPageObject } from './page-objects/InlineCard';
|
|
2
|
+
export { BlockCardPageObject } from './page-objects/BlockCard';
|
|
3
|
+
export { EmbedCardPageObject } from './page-objects/EmbedCard';
|
|
4
|
+
export { inlineSmartLinkRendersTestCase } from './test-cases/inline';
|
|
5
|
+
export { blockSmartLinkRendersTestCase } from './test-cases/card';
|
|
6
|
+
export { embedSmartLinkRendersTestCase } from './test-cases/embed';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/// <reference types="cypress" />
|
|
2
|
+
import { InProductTestPageObject, CypressType } from '@atlaskit/in-product-testing';
|
|
3
|
+
import { CardType, CardAppearance } from '@atlaskit/linking-common';
|
|
4
|
+
export declare class BaseCardPageObject extends InProductTestPageObject {
|
|
5
|
+
protected cy: CypressType;
|
|
6
|
+
protected appearance: CardAppearance;
|
|
7
|
+
protected constructor(cy: CypressType, appearance: CardAppearance);
|
|
8
|
+
private static CARD_TIMEOUT;
|
|
9
|
+
private _toSelector;
|
|
10
|
+
expectCardReady(numOfCards?: number, status?: CardType): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
11
|
+
expectCardNotExists(status?: CardType): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
12
|
+
findCardNth(nth?: number, status?: CardType): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
13
|
+
assertHrefRendered(url: string): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
14
|
+
assertHrefNotRendered(url: string): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
15
|
+
click(status?: CardType): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { contentFooterClassName } from './view/BlockCard/components/ContentFooter';
|
|
2
|
+
export { metadataListClassName } from './view/common/MetadataList';
|
|
3
|
+
export { blockCardResolvingViewClassName } from './view/BlockCard/views/ResolvingView';
|
|
4
|
+
export { blockCardResolvedViewClassName, blockCardResolvedViewByClassName, } from './view/BlockCard/views/ResolvedView';
|
|
5
|
+
export { blockCardForbiddenViewClassName, blockCardForbiddenViewLinkClassName, } from './view/BlockCard/views/ForbiddenView';
|
|
6
|
+
export { blockCardIconImageClassName } from './view/common/Icon';
|
|
7
|
+
export { blockCardContentClassName } from './view/BlockCard/components/Content';
|
|
8
|
+
export { blockCardContentHeaderClassName } from './view/BlockCard/components/ContentHeader';
|
|
9
|
+
export { blockCardContentHeaderNameClassName } from './view/BlockCard/components/Name';
|
|
10
|
+
export { blockCardNotFoundViewClassName } from './view/BlockCard/views/NotFoundView';
|
|
11
|
+
export { blockCardErroredViewClassName } from './view/BlockCard/views/ErroredView';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CardClient as default } from '@atlaskit/link-provider';
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
export declare const CONTENT_URL_SECURITY_AND_PERMISSIONS = "https://support.atlassian.com/confluence-cloud/docs/insert-links-and-anchors/#Smart-links";
|
|
2
|
+
/**
|
|
3
|
+
* The alignment of Flexible UI component.
|
|
4
|
+
*/
|
|
5
|
+
export declare enum SmartLinkAlignment {
|
|
6
|
+
Left = "left",
|
|
7
|
+
Right = "right"
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* The direction of Flexible UI components. It establish the main-axis
|
|
11
|
+
* or how the child components laid out inside the parent component.
|
|
12
|
+
* Similar to flex's flex-direction concept.
|
|
13
|
+
*/
|
|
14
|
+
export declare enum SmartLinkDirection {
|
|
15
|
+
Horizontal = "horizontal",
|
|
16
|
+
Vertical = "vertical"
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* The positioning of the component within the parent component.
|
|
20
|
+
* Similar to flex's align-items or align-self concept.
|
|
21
|
+
*/
|
|
22
|
+
export declare enum SmartLinkPosition {
|
|
23
|
+
Top = "top",
|
|
24
|
+
Center = "center"
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* The sizing options of the Flexible UI component. Every component
|
|
28
|
+
* has or inherits the sizing props. Implementation varies
|
|
29
|
+
* as per component.
|
|
30
|
+
*/
|
|
31
|
+
export declare enum SmartLinkSize {
|
|
32
|
+
XLarge = "xlarge",
|
|
33
|
+
Large = "large",
|
|
34
|
+
Medium = "medium",
|
|
35
|
+
Small = "small"
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Smart Links link request status
|
|
39
|
+
*/
|
|
40
|
+
export declare enum SmartLinkStatus {
|
|
41
|
+
Pending = "pending",
|
|
42
|
+
Resolving = "resolving",
|
|
43
|
+
Resolved = "resolved",
|
|
44
|
+
Forbidden = "forbidden",
|
|
45
|
+
Errored = "errored",
|
|
46
|
+
NotFound = "not_found",
|
|
47
|
+
Unauthorized = "unauthorized",
|
|
48
|
+
Fallback = "fallback"
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Flexible UI theme available on the Card level.
|
|
52
|
+
* This determine the styling of the link.
|
|
53
|
+
*/
|
|
54
|
+
export declare enum SmartLinkTheme {
|
|
55
|
+
Black = "black",
|
|
56
|
+
Link = "link"
|
|
57
|
+
}
|
|
58
|
+
export declare enum SmartLinkInternalTheme {
|
|
59
|
+
Grey = "grey"
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Determines whether the container size will fit to the content
|
|
63
|
+
* or expand to the available width or the parent component.
|
|
64
|
+
* Similar to flex's flex-grow concept.
|
|
65
|
+
*/
|
|
66
|
+
export declare enum SmartLinkWidth {
|
|
67
|
+
FitToContent = "fit-to-content",
|
|
68
|
+
Flexible = "flexible"
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Flexible UI element name - each reflecting the link data its represented.
|
|
72
|
+
* When adding an element...
|
|
73
|
+
* 1) Create base element if it doesn't already exist.
|
|
74
|
+
* Base element are inside src/view/FlexibleCard/components/elements.
|
|
75
|
+
* E.g. Badge, DateTime, Icon, Lozenge, etc.
|
|
76
|
+
* 2) Update FlexibleUiContext with the new prop for data representing
|
|
77
|
+
* the element, preferably with the same name as the element itself.
|
|
78
|
+
* (src/state/flexible-ui-context/types.ts)
|
|
79
|
+
* 3) Update Flexible UI extractor (src/extractors/flexible/index.ts)
|
|
80
|
+
* 4) Set base element and data mapping
|
|
81
|
+
* (src/view/FlexibleCard/components/elements/utils.tsx)
|
|
82
|
+
* 5) Create element. (src/view/FlexibleCard/components/elements/index.ts)
|
|
83
|
+
* 6) Update element ElementDisplaySchema for inline/block display
|
|
84
|
+
* (src/view/FlexibleCard/components/blocks/utils.tsx)
|
|
85
|
+
*/
|
|
86
|
+
export declare enum ElementName {
|
|
87
|
+
AttachmentCount = "AttachmentCount",
|
|
88
|
+
AuthorGroup = "AuthorGroup",
|
|
89
|
+
ChecklistProgress = "ChecklistProgress",
|
|
90
|
+
CollaboratorGroup = "CollaboratorGroup",
|
|
91
|
+
CommentCount = "CommentCount",
|
|
92
|
+
CreatedBy = "CreatedBy",
|
|
93
|
+
CreatedOn = "CreatedOn",
|
|
94
|
+
DueOn = "DueOn",
|
|
95
|
+
LatestCommit = "LatestCommit",
|
|
96
|
+
LinkIcon = "LinkIcon",
|
|
97
|
+
Location = "Location",
|
|
98
|
+
ModifiedBy = "ModifiedBy",
|
|
99
|
+
ModifiedOn = "ModifiedOn",
|
|
100
|
+
OwnedBy = "OwnedBy",
|
|
101
|
+
Preview = "Preview",
|
|
102
|
+
Priority = "Priority",
|
|
103
|
+
ProgrammingLanguage = "ProgrammingLanguage",
|
|
104
|
+
Provider = "Provider",
|
|
105
|
+
ReactCount = "ReactCount",
|
|
106
|
+
Snippet = "Snippet",
|
|
107
|
+
SourceBranch = "SourceBranch",
|
|
108
|
+
State = "State",
|
|
109
|
+
SubscriberCount = "SubscriberCount",
|
|
110
|
+
TargetBranch = "TargetBranch",
|
|
111
|
+
Title = "Title",
|
|
112
|
+
ViewCount = "ViewCount",
|
|
113
|
+
VoteCount = "VoteCount"
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* Flexible UI action (button)
|
|
117
|
+
*/
|
|
118
|
+
export declare enum ActionName {
|
|
119
|
+
DeleteAction = "DeleteAction",
|
|
120
|
+
EditAction = "EditAction",
|
|
121
|
+
PreviewAction = "PreviewAction",
|
|
122
|
+
ViewAction = "ViewAction",
|
|
123
|
+
DownloadAction = "DownloadAction",
|
|
124
|
+
CustomAction = "CustomAction"
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* Flexible UI icons - each mapped to AK icons.
|
|
128
|
+
*/
|
|
129
|
+
export declare enum IconType {
|
|
130
|
+
Archive = "FileType:Archive",
|
|
131
|
+
Audio = "FileType:Audio",
|
|
132
|
+
Blog = "FileType:Blog",
|
|
133
|
+
Code = "FileType:Code",
|
|
134
|
+
Document = "FileType:Document",
|
|
135
|
+
Executable = "FileType:Executable",
|
|
136
|
+
File = "FileType:File",
|
|
137
|
+
Folder = "FileType:Folder",
|
|
138
|
+
Generic = "FileType:Generic",
|
|
139
|
+
GIF = "FileType:GIF",
|
|
140
|
+
GoogleDocs = "FileType:GoogleDocs",
|
|
141
|
+
GoogleForms = "FileType:GoogleForms",
|
|
142
|
+
GoogleSheets = "FileType:GoogleSheets",
|
|
143
|
+
GoogleSlides = "FileType:GoogleSlides",
|
|
144
|
+
Image = "FileType.Image",
|
|
145
|
+
MSExcel = "FileType:Excel",
|
|
146
|
+
MSPowerpoint = "FileType:Powerpoint",
|
|
147
|
+
MSWord = "FileType:WordDocument",
|
|
148
|
+
PDF = "FileType:PDF",
|
|
149
|
+
Presentation = "FileType:Presentation",
|
|
150
|
+
Sketch = "FileType:Sketch",
|
|
151
|
+
Spreadsheet = "FileType:Spreadsheet",
|
|
152
|
+
Template = "FileType:Template",
|
|
153
|
+
Video = "FileType:Video",
|
|
154
|
+
Branch = "BitBucket:Branch",
|
|
155
|
+
Commit = "BitBucket:Commit",
|
|
156
|
+
Project = "BitBucket:Project",
|
|
157
|
+
PullRequest = "BitBucket:PullRequest",
|
|
158
|
+
Repo = "BitBucket:Repo",
|
|
159
|
+
Bug = "Jira:Bug",
|
|
160
|
+
Change = "Jira:Change",
|
|
161
|
+
Epic = "Jira:Epic",
|
|
162
|
+
Incident = "Jira:Incident",
|
|
163
|
+
Problem = "Jira:Problem",
|
|
164
|
+
ServiceRequest = "Jira:ServiceRequest",
|
|
165
|
+
Story = "Jira:Story",
|
|
166
|
+
SubTask = "Jira:SubTask",
|
|
167
|
+
Task = "Jira:Task",
|
|
168
|
+
Confluence = "Provider:Confluence",
|
|
169
|
+
Jira = "Provider:Jira",
|
|
170
|
+
Default = "Default",
|
|
171
|
+
Error = "Default:Error",
|
|
172
|
+
Forbidden = "Default:Forbidden",
|
|
173
|
+
Attachment = "Badge:Attachment",
|
|
174
|
+
CheckItem = "Badge:Task",
|
|
175
|
+
Comment = "Badge:Comment",
|
|
176
|
+
View = "Badge:View",
|
|
177
|
+
React = "Badge:React",
|
|
178
|
+
Vote = "Badge:Vote",
|
|
179
|
+
PriorityBlocker = "Badge:PriorityBlocker",
|
|
180
|
+
PriorityCritical = "Badge:PriorityCritical",
|
|
181
|
+
PriorityHigh = "Badge:PriorityHigh",
|
|
182
|
+
PriorityHighest = "Badge:PriorityHighest",
|
|
183
|
+
PriorityLow = "Badge:PriorityLow",
|
|
184
|
+
PriorityLowest = "Badge:PriorityLowest",
|
|
185
|
+
PriorityMajor = "Badge:PriorityMajor",
|
|
186
|
+
PriorityMedium = "Badge:PriorityMedium",
|
|
187
|
+
PriorityMinor = "Badge:PriorityMinor",
|
|
188
|
+
PriorityTrivial = "Badge:PriorityTrivial",
|
|
189
|
+
PriorityUndefined = "Badge:PriorityUndefined",
|
|
190
|
+
ProgrammingLanguage = "Badge:ProgrammingLanguage",
|
|
191
|
+
Subscriber = "Badge:Subscriber"
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
* Type for Flexible UI's Media element
|
|
195
|
+
*/
|
|
196
|
+
export declare enum MediaType {
|
|
197
|
+
Image = "image"
|
|
198
|
+
}
|
|
199
|
+
export declare enum MediaPlacement {
|
|
200
|
+
Left = "left",
|
|
201
|
+
Right = "right"
|
|
202
|
+
}
|
|
203
|
+
export declare enum CardDisplay {
|
|
204
|
+
Inline = "inline",
|
|
205
|
+
Block = "block",
|
|
206
|
+
Embed = "embed",
|
|
207
|
+
EmbedPreview = "embedPreview",
|
|
208
|
+
Flexible = "flexible",
|
|
209
|
+
HoverCardPreview = "hoverCardPreview"
|
|
210
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { GetStatusTransitionsInvokeResponse } from '@atlaskit/linking-types/smart-link-actions';
|
|
2
|
+
import { LozengeItem } from '../../view/FlexibleCard/components/common/lozenge-action/types';
|
|
3
|
+
declare const extractLozengeActionItems: (response: GetStatusTransitionsInvokeResponse) => LozengeItem[];
|
|
4
|
+
export default extractLozengeActionItems;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { CardProviderRenderers } from '@atlaskit/link-provider';
|
|
3
|
+
import { LinkPerson } from '@atlaskit/linking-common/extractors';
|
|
4
|
+
import { ExtractBlockOpts } from './types';
|
|
5
|
+
import { BlockCardResolvedViewProps } from '../../view/BlockCard';
|
|
6
|
+
import { ActionProps } from '../../view/BlockCard/components/Action';
|
|
7
|
+
export declare const extractBlockActions: (props: BlockCardResolvedViewProps, jsonLd: JsonLd.Data.BaseData, opts?: ExtractBlockOpts | undefined, platform?: JsonLd.Primitives.Platforms | undefined, meta?: JsonLd.Meta.BaseMeta | undefined) => ActionProps[];
|
|
8
|
+
export declare const extractBlockUsers: (jsonLd: JsonLd.Data.BaseData) => LinkPerson[] | undefined;
|
|
9
|
+
export declare const extractBlockProps: (jsonLd: JsonLd.Data.BaseData, meta?: JsonLd.Meta.BaseMeta | undefined, opts?: ExtractBlockOpts | undefined, renderers?: CardProviderRenderers | undefined, platform?: JsonLd.Primitives.Platforms | undefined) => BlockCardResolvedViewProps;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { InvokeHandler } from '../../model/invoke-handler';
|
|
2
|
+
import { AnalyticsFacade } from '../../state/analytics';
|
|
3
|
+
import { CardInnerAppearance } from '../../view/Card/types';
|
|
4
|
+
import { AnalyticsOrigin } from '../../utils/types';
|
|
5
|
+
export interface ExtractBlockOpts {
|
|
6
|
+
handleInvoke: InvokeHandler;
|
|
7
|
+
analytics: AnalyticsFacade;
|
|
8
|
+
origin?: AnalyticsOrigin;
|
|
9
|
+
extensionKey?: string;
|
|
10
|
+
source?: CardInnerAppearance;
|
|
11
|
+
testId?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
export declare const TEST_URL = "https://my.url.com";
|
|
3
|
+
export declare const TEST_VISIT_URL = "https://visit.url.com";
|
|
4
|
+
export declare const TEST_NAME = "my name";
|
|
5
|
+
export declare const TEST_STRING = "foo";
|
|
6
|
+
export declare const TEST_PREFIX = "some-mock-prefix";
|
|
7
|
+
export declare const TEST_EMOJI = "\"emoji-id\"";
|
|
8
|
+
export declare const TEST_EMOJI_SANITIZED = "emoji-id";
|
|
9
|
+
export declare const TEST_LINK: JsonLd.Primitives.Link;
|
|
10
|
+
export declare const TEST_ARRAY: JsonLd.Primitives.Link[];
|
|
11
|
+
export declare const TEST_OBJECT: JsonLd.Primitives.Object;
|
|
12
|
+
export declare const TEST_PERSON: JsonLd.Primitives.Person;
|
|
13
|
+
export declare const TEST_IMAGE: JsonLd.Primitives.Image;
|
|
14
|
+
export declare const TEST_IMAGE_WITH_LINK: JsonLd.Primitives.Image;
|
|
15
|
+
export declare const TEST_TITLE_EMOJI: JsonLd.Data.BaseData['atlassian:titlePrefix'];
|
|
16
|
+
export declare const TEST_BASE_DATA: JsonLd.Data.BaseData;
|
|
17
|
+
export declare const TEST_DATA_WITH_EMOJI: JsonLd.Data.BaseData;
|
|
18
|
+
export declare const TEST_DATA_WITH_NO_PREFIX: JsonLd.Data.BaseData;
|
|
19
|
+
export declare const TEST_PROJECT: JsonLd.Data.Project;
|
|
20
|
+
export declare const TEST_PROJECT_WITHOUT_MEMBERS: Partial<JsonLd.Data.Project>;
|
|
21
|
+
export declare const TEST_PULL_REQUEST: JsonLd.Data.SourceCodePullRequest;
|
|
22
|
+
export declare const TEST_TASK: JsonLd.Data.Task;
|
|
23
|
+
export declare const TEST_META_DATA: JsonLd.Meta.BaseMeta;
|
|
24
|
+
export declare const TEST_RESOLVED_META_DATA: JsonLd.Meta.BaseMeta;
|
|
25
|
+
export declare const TEST_DOCUMENT: JsonLd.Data.Document;
|
|
26
|
+
export declare const TEST_CURRENT_DOCUMENT: JsonLd.Data.Document;
|
|
27
|
+
export declare const TEST_DOWNLOAD_ACTION: JsonLd.Data.BaseData['schema:potentialAction'];
|
|
28
|
+
export declare const TEST_UNDEFINED_LINK: JsonLd.Data.UndefinedLinkDocument;
|
|
29
|
+
export declare const TEST_ASSIGN_ACTION: JsonLd.Data.BaseData['schema:potentialAction'];
|
|
30
|
+
export declare const TEST_NO_ID_ACTION: JsonLd.Data.BaseData['schema:potentialAction'];
|
|
31
|
+
export declare const TEST_VIEW_ACTION: JsonLd.Data.BaseData['schema:potentialAction'];
|
|
32
|
+
export declare const TEST_DOCUMENT_WITH_ACTIONS: JsonLd.Data.BaseData;
|
|
33
|
+
export declare const TEST_DOCUMENT_WITH_DOWNLOAD_ACTION: JsonLd.Data.BaseData;
|
|
34
|
+
export declare const TEST_DOCUMENT_WITH_VIEW_ACTION: JsonLd.Data.BaseData;
|
|
35
|
+
export declare const PREVIEW: JsonLd.Data.BaseData['preview'];
|
|
36
|
+
export declare const TEST_DOCUMENT_WITH_PREVIEW: JsonLd.Data.BaseData;
|
|
37
|
+
export declare const TEST_DATA_WITH_LATEST_COMMIT_OBJ: JsonLd.Data.SourceCodeRepository;
|
|
38
|
+
export declare const TEST_DATA_WITH_LATEST_COMMIT_TEXT: JsonLd.Data.SourceCodeRepository;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { InvokeHandler } from '../../../model/invoke-handler';
|
|
3
|
+
import { ActionProps } from '../../../view/BlockCard/components/Action';
|
|
4
|
+
export declare const getActionsFromJsonLd: (jsonLd: JsonLd.Data.BaseData) => JsonLd.Primitives.Action[];
|
|
5
|
+
export declare function extractActions(jsonLd: JsonLd.Data.BaseData, handler: InvokeHandler): ActionProps[];
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { CardPlatform } from '../../../view/Card/types';
|
|
3
|
+
import { BlockCardResolvedViewProps } from '../../../view/BlockCard';
|
|
4
|
+
import { ExtractBlockOpts } from '../../block/types';
|
|
5
|
+
export declare const extractPreviewAction: ({ extensionKey, viewProps, jsonLd, handleInvoke, testId, platform, origin, source, analytics, meta, }: ExtractBlockOpts & {
|
|
6
|
+
viewProps: BlockCardResolvedViewProps;
|
|
7
|
+
jsonLd: JsonLd.Data.BaseData;
|
|
8
|
+
platform?: JsonLd.Primitives.Platforms | undefined;
|
|
9
|
+
meta?: JsonLd.Meta.BaseMeta | undefined;
|
|
10
|
+
}) => import("../../../view/BlockCard/components/Action").ActionProps | undefined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { RequestAccessContextProps } from '../../../view/types';
|
|
3
|
+
export declare const extractRequestAccessContext: ({ jsonLd, url, context, }: {
|
|
4
|
+
jsonLd: JsonLd.Meta.BaseMeta;
|
|
5
|
+
url: string;
|
|
6
|
+
context?: string | undefined;
|
|
7
|
+
}) => RequestAccessContextProps;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { extractRequestAccessContext } from './extractAccessContext';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { LinkDetail } from './types';
|
|
3
|
+
export declare type LinkAttachmentType = JsonLd.Data.Document | JsonLd.Data.Task | JsonLd.Data.TaskType | JsonLd.Data.Project;
|
|
4
|
+
export declare const extractAttachmentCount: (jsonLd: LinkAttachmentType) => LinkDetail | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { JsonLd } from 'json-ld-types';
|
|
2
|
+
import { LinkDetail } from './types';
|
|
3
|
+
export declare type LinkCommentType = JsonLd.Data.Document | JsonLd.Data.Page | JsonLd.Data.Project | JsonLd.Data.SourceCodeCommit | JsonLd.Data.TaskType;
|
|
4
|
+
export declare const extractCommentCount: (jsonLd: LinkCommentType) => LinkDetail | undefined;
|