@atlaskit/renderer 108.0.1 → 108.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 +22 -0
- package/dist/cjs/react/marks/link.js +12 -2
- package/dist/cjs/react/nodes/blockCard.js +12 -2
- package/dist/cjs/react/nodes/codeBlock/components/codeBlockContainer.js +1 -1
- package/dist/cjs/react/nodes/embedCard.js +12 -2
- package/dist/cjs/react/nodes/inlineCard.js +16 -4
- package/dist/cjs/ui/Expand.js +8 -7
- package/dist/cjs/ui/Renderer/ErrorBoundary.js +8 -1
- package/dist/cjs/ui/Renderer/index.js +34 -23
- package/dist/cjs/ui/Renderer/style.js +11 -4
- package/dist/cjs/ui/SortingIcon.js +1 -2
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/react/marks/link.js +12 -2
- package/dist/es2019/react/nodes/blockCard.js +12 -2
- package/dist/es2019/react/nodes/codeBlock/components/codeBlockContainer.js +2 -2
- package/dist/es2019/react/nodes/embedCard.js +12 -2
- package/dist/es2019/react/nodes/inlineCard.js +16 -4
- package/dist/es2019/ui/Expand.js +8 -5
- package/dist/es2019/ui/Renderer/ErrorBoundary.js +8 -1
- package/dist/es2019/ui/Renderer/index.js +34 -23
- package/dist/es2019/ui/Renderer/style.js +33 -16
- package/dist/es2019/ui/SortingIcon.js +1 -2
- package/dist/es2019/version.json +1 -1
- package/dist/esm/react/marks/link.js +12 -2
- package/dist/esm/react/nodes/blockCard.js +12 -2
- package/dist/esm/react/nodes/codeBlock/components/codeBlockContainer.js +2 -2
- package/dist/esm/react/nodes/embedCard.js +12 -2
- package/dist/esm/react/nodes/inlineCard.js +16 -4
- package/dist/esm/ui/Expand.js +8 -7
- package/dist/esm/ui/Renderer/ErrorBoundary.js +8 -1
- package/dist/esm/ui/Renderer/index.js +34 -23
- package/dist/esm/ui/Renderer/style.js +11 -4
- package/dist/esm/ui/SortingIcon.js +1 -2
- package/dist/esm/version.json +1 -1
- package/dist/types/ui/Renderer/ErrorBoundary.d.ts +1 -1
- package/dist/types/ui/Renderer/style.d.ts +1 -0
- package/dist/types-ts4.5/actions/index.d.ts +61 -0
- package/dist/types-ts4.5/actions/matches-utils.d.ts +7 -0
- package/dist/types-ts4.5/actions.d.ts +3 -0
- package/dist/types-ts4.5/analytics/analyticsContext.d.ts +6 -0
- package/dist/types-ts4.5/analytics/enums.d.ts +58 -0
- package/dist/types-ts4.5/analytics/events.d.ts +118 -0
- package/dist/types-ts4.5/analytics/unsupported-content.d.ts +10 -0
- package/dist/types-ts4.5/consts.d.ts +12 -0
- package/dist/types-ts4.5/i18n/cs.d.ts +20 -0
- package/dist/types-ts4.5/i18n/da.d.ts +20 -0
- package/dist/types-ts4.5/i18n/de.d.ts +20 -0
- package/dist/types-ts4.5/i18n/en.d.ts +20 -0
- package/dist/types-ts4.5/i18n/en_GB.d.ts +20 -0
- package/dist/types-ts4.5/i18n/en_ZZ.d.ts +20 -0
- package/dist/types-ts4.5/i18n/es.d.ts +20 -0
- package/dist/types-ts4.5/i18n/et.d.ts +8 -0
- package/dist/types-ts4.5/i18n/fi.d.ts +20 -0
- package/dist/types-ts4.5/i18n/fr.d.ts +20 -0
- package/dist/types-ts4.5/i18n/hu.d.ts +20 -0
- package/dist/types-ts4.5/i18n/index.d.ts +31 -0
- package/dist/types-ts4.5/i18n/it.d.ts +20 -0
- package/dist/types-ts4.5/i18n/ja.d.ts +20 -0
- package/dist/types-ts4.5/i18n/ko.d.ts +20 -0
- package/dist/types-ts4.5/i18n/nb.d.ts +20 -0
- package/dist/types-ts4.5/i18n/nl.d.ts +20 -0
- package/dist/types-ts4.5/i18n/pl.d.ts +20 -0
- package/dist/types-ts4.5/i18n/pt_BR.d.ts +20 -0
- package/dist/types-ts4.5/i18n/pt_PT.d.ts +8 -0
- package/dist/types-ts4.5/i18n/ru.d.ts +20 -0
- package/dist/types-ts4.5/i18n/sk.d.ts +8 -0
- package/dist/types-ts4.5/i18n/sv.d.ts +20 -0
- package/dist/types-ts4.5/i18n/th.d.ts +20 -0
- package/dist/types-ts4.5/i18n/tr.d.ts +20 -0
- package/dist/types-ts4.5/i18n/uk.d.ts +20 -0
- package/dist/types-ts4.5/i18n/vi.d.ts +20 -0
- package/dist/types-ts4.5/i18n/zh.d.ts +20 -0
- package/dist/types-ts4.5/i18n/zh_TW.d.ts +20 -0
- package/dist/types-ts4.5/index.d.ts +11 -0
- package/dist/types-ts4.5/messages.d.ts +61 -0
- package/dist/types-ts4.5/react/hooks/use-bidi-warnings.d.ts +10 -0
- package/dist/types-ts4.5/react/hooks/use-in-viewport.d.ts +5 -0
- package/dist/types-ts4.5/react/hooks/use-observed-width.d.ts +3 -0
- package/dist/types-ts4.5/react/index.d.ts +124 -0
- package/dist/types-ts4.5/react/marks/alignment.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/annotation.d.ts +6 -0
- package/dist/types-ts4.5/react/marks/breakout.d.ts +6 -0
- package/dist/types-ts4.5/react/marks/code.d.ts +16 -0
- package/dist/types-ts4.5/react/marks/confluence-inline-comment.d.ts +8 -0
- package/dist/types-ts4.5/react/marks/data-consumer.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/em.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/fragment.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/indentation.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/index.d.ts +21 -0
- package/dist/types-ts4.5/react/marks/link.d.ts +9 -0
- package/dist/types-ts4.5/react/marks/strike.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/strong.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/subsup.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/textColor.d.ts +4 -0
- package/dist/types-ts4.5/react/marks/underline.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/unsupportedMark.d.ts +3 -0
- package/dist/types-ts4.5/react/marks/unsupportedNodeAttribute.d.ts +3 -0
- package/dist/types-ts4.5/react/nodes/blockCard.d.ts +12 -0
- package/dist/types-ts4.5/react/nodes/blockquote.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/bodiedExtension.d.ts +24 -0
- package/dist/types-ts4.5/react/nodes/bulletList.d.ts +5 -0
- package/dist/types-ts4.5/react/nodes/caption.d.ts +4 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/codeBlock.d.ts +15 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/codeBlockButtonContainer.d.ts +12 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/codeBlockContainer.d.ts +10 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/codeBlockCopyButton.d.ts +9 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/codeBlockWrapButton.d.ts +11 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/components/lightWeightCodeBlock.d.ts +9 -0
- package/dist/types-ts4.5/react/nodes/codeBlock/windowedCodeBlock.d.ts +4 -0
- package/dist/types-ts4.5/react/nodes/date.d.ts +11 -0
- package/dist/types-ts4.5/react/nodes/decisionItem.d.ts +3 -0
- package/dist/types-ts4.5/react/nodes/decisionList.d.ts +7 -0
- package/dist/types-ts4.5/react/nodes/doc.d.ts +3 -0
- package/dist/types-ts4.5/react/nodes/embedCard.d.ts +17 -0
- package/dist/types-ts4.5/react/nodes/emoji.d.ts +12 -0
- package/dist/types-ts4.5/react/nodes/extension.d.ts +113 -0
- package/dist/types-ts4.5/react/nodes/fallback.d.ts +16 -0
- package/dist/types-ts4.5/react/nodes/hardBreak.d.ts +6 -0
- package/dist/types-ts4.5/react/nodes/heading-anchor.d.ts +14 -0
- package/dist/types-ts4.5/react/nodes/heading.d.ts +14 -0
- package/dist/types-ts4.5/react/nodes/index.d.ts +95 -0
- package/dist/types-ts4.5/react/nodes/inline.d.ts +1 -0
- package/dist/types-ts4.5/react/nodes/inlineCard.d.ts +65 -0
- package/dist/types-ts4.5/react/nodes/inlineExtension.d.ts +18 -0
- package/dist/types-ts4.5/react/nodes/layoutColumn.d.ts +6 -0
- package/dist/types-ts4.5/react/nodes/layoutSection.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/listItem.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/media.d.ts +28 -0
- package/dist/types-ts4.5/react/nodes/mediaGroup.d.ts +29 -0
- package/dist/types-ts4.5/react/nodes/mediaInline.d.ts +26 -0
- package/dist/types-ts4.5/react/nodes/mediaSingle/index.d.ts +23 -0
- package/dist/types-ts4.5/react/nodes/mediaSingle/styles.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/mention.d.ts +13 -0
- package/dist/types-ts4.5/react/nodes/orderedList.d.ts +9 -0
- package/dist/types-ts4.5/react/nodes/panel.d.ts +17 -0
- package/dist/types-ts4.5/react/nodes/paragraph.d.ts +3 -0
- package/dist/types-ts4.5/react/nodes/placeholder.d.ts +6 -0
- package/dist/types-ts4.5/react/nodes/rule.d.ts +2 -0
- package/dist/types-ts4.5/react/nodes/status.d.ts +10 -0
- package/dist/types-ts4.5/react/nodes/table/colgroup.d.ts +9 -0
- package/dist/types-ts4.5/react/nodes/table/sticky.d.ts +38 -0
- package/dist/types-ts4.5/react/nodes/table/table.d.ts +7 -0
- package/dist/types-ts4.5/react/nodes/table/types.d.ts +7 -0
- package/dist/types-ts4.5/react/nodes/table.d.ts +269 -0
- package/dist/types-ts4.5/react/nodes/tableCell.d.ts +81 -0
- package/dist/types-ts4.5/react/nodes/tableRow.d.ts +24 -0
- package/dist/types-ts4.5/react/nodes/task-item-with-providers.d.ts +29 -0
- package/dist/types-ts4.5/react/nodes/taskItem.d.ts +19 -0
- package/dist/types-ts4.5/react/nodes/taskList.d.ts +8 -0
- package/dist/types-ts4.5/react/nodes/text-wrapper.d.ts +8 -0
- package/dist/types-ts4.5/react/nodes/unknownBlock.d.ts +2 -0
- package/dist/types-ts4.5/react/renderer-node.d.ts +4 -0
- package/dist/types-ts4.5/react/types.d.ts +58 -0
- package/dist/types-ts4.5/react/utils/clipboard.d.ts +1 -0
- package/dist/types-ts4.5/react/utils/element-selection.d.ts +9 -0
- package/dist/types-ts4.5/react/utils/getCardClickHandler.d.ts +2 -0
- package/dist/types-ts4.5/react/utils/inject-props.d.ts +6 -0
- package/dist/types-ts4.5/react/utils/links.d.ts +3 -0
- package/dist/types-ts4.5/react/utils/lists.d.ts +2 -0
- package/dist/types-ts4.5/react/utils/performance/RenderTracking.d.ts +15 -0
- package/dist/types-ts4.5/react/utils/use-select-all-trap.d.ts +2 -0
- package/dist/types-ts4.5/render-document.d.ts +23 -0
- package/dist/types-ts4.5/renderer-context.d.ts +7 -0
- package/dist/types-ts4.5/serializer.d.ts +4 -0
- package/dist/types-ts4.5/steps/index.d.ts +14 -0
- package/dist/types-ts4.5/text/index.d.ts +8 -0
- package/dist/types-ts4.5/text/nodes/blockquote.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/bulletList.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/date.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/decisionItem.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/hardBreak.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/heading.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/index.d.ts +6 -0
- package/dist/types-ts4.5/text/nodes/inlineCard.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/listItem.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/mediaGroup.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/mention.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/orderedList.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/panel.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/paragraph.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/rule.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/status.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/table.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/taskItem.d.ts +3 -0
- package/dist/types-ts4.5/text/nodes/unknown.d.ts +3 -0
- package/dist/types-ts4.5/text-serializer.d.ts +1 -0
- package/dist/types-ts4.5/types/i18n.d.ts +5 -0
- package/dist/types-ts4.5/types/mediaOptions.d.ts +12 -0
- package/dist/types-ts4.5/types/smartLinksOptions.d.ts +5 -0
- package/dist/types-ts4.5/ui/Expand.d.ts +23 -0
- package/dist/types-ts4.5/ui/ExtensionRenderer.d.ts +42 -0
- package/dist/types-ts4.5/ui/MediaCard.d.ts +77 -0
- package/dist/types-ts4.5/ui/Renderer/ErrorBoundary.d.ts +24 -0
- package/dist/types-ts4.5/ui/Renderer/breakout-ssr.d.ts +11 -0
- package/dist/types-ts4.5/ui/Renderer/click-to-edit.d.ts +6 -0
- package/dist/types-ts4.5/ui/Renderer/index.d.ts +38 -0
- package/dist/types-ts4.5/ui/Renderer/style.d.ts +16 -0
- package/dist/types-ts4.5/ui/Renderer/truncated-wrapper.d.ts +12 -0
- package/dist/types-ts4.5/ui/Renderer/types.d.ts +16 -0
- package/dist/types-ts4.5/ui/RendererActionsContext/WithRendererActions.d.ts +6 -0
- package/dist/types-ts4.5/ui/RendererActionsContext/index.d.ts +9 -0
- package/dist/types-ts4.5/ui/SmartCardStorage.d.ts +60 -0
- package/dist/types-ts4.5/ui/SortingIcon.d.ts +23 -0
- package/dist/types-ts4.5/ui/TaskItemsFormatContext/TaskItemsFormatContext.d.ts +15 -0
- package/dist/types-ts4.5/ui/TaskItemsFormatContext/index.d.ts +2 -0
- package/dist/types-ts4.5/ui/active-header-id-provider.d.ts +18 -0
- package/dist/types-ts4.5/ui/annotations/context.d.ts +27 -0
- package/dist/types-ts4.5/ui/annotations/draft/component.d.ts +20 -0
- package/dist/types-ts4.5/ui/annotations/draft/dom.d.ts +7 -0
- package/dist/types-ts4.5/ui/annotations/draft/index.d.ts +2 -0
- package/dist/types-ts4.5/ui/annotations/draft/position.d.ts +2 -0
- package/dist/types-ts4.5/ui/annotations/draft/text.d.ts +11 -0
- package/dist/types-ts4.5/ui/annotations/element/index.d.ts +10 -0
- package/dist/types-ts4.5/ui/annotations/element/mark.d.ts +14 -0
- package/dist/types-ts4.5/ui/annotations/hooks/index.d.ts +3 -0
- package/dist/types-ts4.5/ui/annotations/hooks/use-events.d.ts +18 -0
- package/dist/types-ts4.5/ui/annotations/hooks/use-inline-comment-subscriber.d.ts +1 -0
- package/dist/types-ts4.5/ui/annotations/hooks/use-inline-comments-filter.d.ts +9 -0
- package/dist/types-ts4.5/ui/annotations/hooks/use-load-annotations.d.ts +6 -0
- package/dist/types-ts4.5/ui/annotations/hooks/user-selection.d.ts +9 -0
- package/dist/types-ts4.5/ui/annotations/hooks/utils.d.ts +2 -0
- package/dist/types-ts4.5/ui/annotations/index.d.ts +5 -0
- package/dist/types-ts4.5/ui/annotations/selection/index.d.ts +1 -0
- package/dist/types-ts4.5/ui/annotations/selection/mounter.d.ts +20 -0
- package/dist/types-ts4.5/ui/annotations/selection/range-validator.d.ts +13 -0
- package/dist/types-ts4.5/ui/annotations/selection/wrapper.d.ts +8 -0
- package/dist/types-ts4.5/ui/annotations/types.d.ts +22 -0
- package/dist/types-ts4.5/ui/annotations/view/index.d.ts +7 -0
- package/dist/types-ts4.5/ui/index.d.ts +1 -0
- package/dist/types-ts4.5/ui/renderer-props.d.ts +104 -0
- package/dist/types-ts4.5/use-feature-flags.d.ts +2 -0
- package/dist/types-ts4.5/utils.d.ts +24 -0
- package/package.json +17 -10
- package/report.api.md +4 -6
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { OnAnnotationClickPayload } from '@atlaskit/editor-common/types';
|
|
4
|
+
import { AnnotationMarkStates, AnnotationId, AnnotationDataAttributes } from '@atlaskit/adf-schema';
|
|
5
|
+
type MarkComponentProps = {
|
|
6
|
+
id: AnnotationId;
|
|
7
|
+
annotationParentIds: AnnotationId[];
|
|
8
|
+
dataAttributes: AnnotationDataAttributes;
|
|
9
|
+
state: AnnotationMarkStates | null;
|
|
10
|
+
hasFocus: boolean;
|
|
11
|
+
onClick: (props: OnAnnotationClickPayload) => void;
|
|
12
|
+
};
|
|
13
|
+
export declare const MarkComponent: React.FC<MarkComponentProps>;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AnnotationUpdateEmitter } from '@atlaskit/editor-common/types';
|
|
2
|
+
import type { InlineCommentViewComponentProps } from '@atlaskit/editor-common/types';
|
|
3
|
+
import { AnnotationMarkStates, AnnotationId, AnnotationTypes } from '@atlaskit/adf-schema';
|
|
4
|
+
import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
5
|
+
type ListenEventProps = {
|
|
6
|
+
id: AnnotationId;
|
|
7
|
+
updateSubscriber: AnnotationUpdateEmitter | null;
|
|
8
|
+
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
9
|
+
};
|
|
10
|
+
type UseAnnotationUpdateSatteByEventProps = {
|
|
11
|
+
type: AnnotationTypes;
|
|
12
|
+
updateSubscriber: AnnotationUpdateEmitter | null;
|
|
13
|
+
};
|
|
14
|
+
export declare const useAnnotationStateByTypeEvent: ({ type, updateSubscriber, }: UseAnnotationUpdateSatteByEventProps) => Record<string, AnnotationMarkStates | null>;
|
|
15
|
+
export declare const useHasFocusEvent: ({ id, updateSubscriber, }: ListenEventProps) => boolean;
|
|
16
|
+
type AnnotationsWithClickTarget = Pick<InlineCommentViewComponentProps, 'annotations' | 'clickElementTarget'> | null;
|
|
17
|
+
export declare const useAnnotationClickEvent: (props: Pick<ListenEventProps, 'updateSubscriber' | 'createAnalyticsEvent'>) => AnnotationsWithClickTarget;
|
|
18
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useInlineCommentSubscriberContext: () => import("@atlaskit/editor-common/types").AnnotationUpdateEmitter | null;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AnnotationId, AnnotationMarkStates } from '@atlaskit/adf-schema';
|
|
2
|
+
type Props = {
|
|
3
|
+
annotationIds: AnnotationId[];
|
|
4
|
+
filter: {
|
|
5
|
+
state: AnnotationMarkStates;
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
export declare const useInlineCommentsFilter: ({ annotationIds, filter: { state: stateFilter }, }: Props) => string[];
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Wrapper as SelectionComponentWrapper } from './wrapper';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { AnnotationByMatches, InlineCommentSelectionComponentProps } from '@atlaskit/editor-common/types';
|
|
3
|
+
import { ApplyAnnotation } from '../../../actions/index';
|
|
4
|
+
import { Position } from '../types';
|
|
5
|
+
import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
6
|
+
type Props = {
|
|
7
|
+
range: Range;
|
|
8
|
+
component: React.ComponentType<InlineCommentSelectionComponentProps>;
|
|
9
|
+
wrapperDOM: React.RefObject<HTMLDivElement>;
|
|
10
|
+
documentPosition: Position | false;
|
|
11
|
+
isAnnotationAllowed: boolean;
|
|
12
|
+
onClose: () => void;
|
|
13
|
+
applyAnnotation: ApplyAnnotation;
|
|
14
|
+
applyAnnotationDraftAt: (position: Position) => void;
|
|
15
|
+
clearAnnotationDraft: () => void;
|
|
16
|
+
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
17
|
+
generateIndexMatch?: (pos: Position) => false | AnnotationByMatches;
|
|
18
|
+
};
|
|
19
|
+
export declare const SelectionInlineCommentMounter: React.FC<Props>;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Position } from '../types';
|
|
3
|
+
import type { InlineCommentSelectionComponentProps } from '@atlaskit/editor-common/types';
|
|
4
|
+
import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
5
|
+
type Props = {
|
|
6
|
+
selectionComponent: React.ComponentType<InlineCommentSelectionComponentProps>;
|
|
7
|
+
rendererRef: React.RefObject<HTMLDivElement>;
|
|
8
|
+
applyAnnotationDraftAt: (position: Position) => void;
|
|
9
|
+
clearAnnotationDraft: () => void;
|
|
10
|
+
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
11
|
+
};
|
|
12
|
+
export declare const SelectionRangeValidator: React.FC<Props>;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
3
|
+
type Props = {
|
|
4
|
+
rendererRef: React.RefObject<HTMLDivElement>;
|
|
5
|
+
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
6
|
+
};
|
|
7
|
+
export declare const Wrapper: (props: React.PropsWithChildren<Props>) => JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { JSONDocNode } from '@atlaskit/editor-json-transformer';
|
|
3
|
+
import type { AnnotationProviders } from '@atlaskit/editor-common/types';
|
|
4
|
+
export declare enum InsertDraftPosition {
|
|
5
|
+
AROUND_TEXT = "AROUND_TEXT",
|
|
6
|
+
START = "START",
|
|
7
|
+
END = "END",
|
|
8
|
+
INSIDE = "INSIDE"
|
|
9
|
+
}
|
|
10
|
+
export type Position = {
|
|
11
|
+
from: number;
|
|
12
|
+
to: number;
|
|
13
|
+
};
|
|
14
|
+
export type AnnotationsWrapperProps = {
|
|
15
|
+
adfDocument: JSONDocNode;
|
|
16
|
+
annotationProvider: AnnotationProviders | null | undefined;
|
|
17
|
+
rendererRef: React.RefObject<HTMLDivElement>;
|
|
18
|
+
};
|
|
19
|
+
export type TextPosition = {
|
|
20
|
+
start: number;
|
|
21
|
+
end: number;
|
|
22
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Renderer } from './Renderer';
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Schema } from 'prosemirror-model';
|
|
3
|
+
import type { ExtensionHandlers } from '@atlaskit/editor-common/extensions';
|
|
4
|
+
import { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
5
|
+
import type { ADFStage } from '@atlaskit/editor-common/validator';
|
|
6
|
+
import type { AnnotationProviders } from '@atlaskit/editor-common/types';
|
|
7
|
+
import type { EventHandlers } from '@atlaskit/editor-common/ui';
|
|
8
|
+
import type { UnsupportedContentLevelsTracking } from '@atlaskit/editor-common/utils';
|
|
9
|
+
import { EmojiResourceConfig } from '@atlaskit/emoji/resource';
|
|
10
|
+
import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
11
|
+
import { RendererContext } from '../';
|
|
12
|
+
import { RenderOutputStat } from '../render-document';
|
|
13
|
+
import { RendererAppearance, StickyHeaderProps, HeadingAnchorLinksProps, NodeComponentsProps } from './Renderer/types';
|
|
14
|
+
import { MediaOptions } from '../types/mediaOptions';
|
|
15
|
+
import { SmartLinksOptions } from '../types/smartLinksOptions';
|
|
16
|
+
import { ACTION_SUBJECT } from '@atlaskit/editor-common/analytics';
|
|
17
|
+
import { DocNode } from '@atlaskit/adf-schema';
|
|
18
|
+
export interface RawObjectFeatureFlags {
|
|
19
|
+
['renderer-render-tracking']: string;
|
|
20
|
+
}
|
|
21
|
+
export interface NormalizedObjectFeatureFlags {
|
|
22
|
+
rendererRenderTracking: {
|
|
23
|
+
[ACTION_SUBJECT.RENDERER]: {
|
|
24
|
+
enabled: boolean;
|
|
25
|
+
useShallow: boolean;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
export interface RendererProps {
|
|
30
|
+
document: DocNode;
|
|
31
|
+
dataProviders?: ProviderFactory;
|
|
32
|
+
eventHandlers?: EventHandlers;
|
|
33
|
+
extensionHandlers?: ExtensionHandlers;
|
|
34
|
+
enableSsrInlineScripts?: boolean;
|
|
35
|
+
onComplete?: (stat: RenderOutputStat) => void;
|
|
36
|
+
onError?: (error: any) => void;
|
|
37
|
+
portal?: HTMLElement;
|
|
38
|
+
rendererContext?: RendererContext;
|
|
39
|
+
schema?: Schema;
|
|
40
|
+
appearance?: RendererAppearance;
|
|
41
|
+
adfStage?: ADFStage;
|
|
42
|
+
disableHeadingIDs?: boolean;
|
|
43
|
+
disableActions?: boolean;
|
|
44
|
+
allowHeadingAnchorLinks?: HeadingAnchorLinksProps;
|
|
45
|
+
allowPlaceholderText?: boolean;
|
|
46
|
+
maxHeight?: number;
|
|
47
|
+
fadeOutHeight?: number;
|
|
48
|
+
truncated?: boolean;
|
|
49
|
+
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
50
|
+
allowColumnSorting?: boolean;
|
|
51
|
+
shouldOpenMediaViewer?: boolean;
|
|
52
|
+
allowAltTextOnImages?: boolean;
|
|
53
|
+
stickyHeaders?: StickyHeaderProps;
|
|
54
|
+
media?: MediaOptions;
|
|
55
|
+
emojiResourceConfig?: EmojiResourceConfig;
|
|
56
|
+
smartLinks?: SmartLinksOptions;
|
|
57
|
+
allowAnnotations?: boolean;
|
|
58
|
+
annotationProvider?: AnnotationProviders | null;
|
|
59
|
+
innerRef?: React.RefObject<HTMLDivElement>;
|
|
60
|
+
useSpecBasedValidator?: boolean;
|
|
61
|
+
allowCopyToClipboard?: boolean;
|
|
62
|
+
allowWrapCodeBlock?: boolean;
|
|
63
|
+
allowCustomPanels?: boolean;
|
|
64
|
+
analyticsEventSeverityTracking?: {
|
|
65
|
+
enabled: boolean;
|
|
66
|
+
severityNormalThreshold: number;
|
|
67
|
+
severityDegradedThreshold: number;
|
|
68
|
+
};
|
|
69
|
+
allowUgcScrubber?: boolean;
|
|
70
|
+
allowSelectAllTrap?: boolean;
|
|
71
|
+
unsupportedContentLevelsTracking?: UnsupportedContentLevelsTracking;
|
|
72
|
+
nodeComponents?: NodeComponentsProps;
|
|
73
|
+
/**
|
|
74
|
+
* @default undefined
|
|
75
|
+
* @description
|
|
76
|
+
* Short lived feature flags for experiments and gradual rollouts
|
|
77
|
+
* Flags are expected to follow these rules or they are filtered out
|
|
78
|
+
*
|
|
79
|
+
* 1. cased in kebab-case (match [a-z-])
|
|
80
|
+
* 2. have boolean values or object {} values
|
|
81
|
+
*
|
|
82
|
+
* @example
|
|
83
|
+
* ```tsx
|
|
84
|
+
* (<Renderer featureFlags={{ 'my-feature': true }} />);
|
|
85
|
+
* getFeatureFlags()?.myFeature === true;
|
|
86
|
+
* ```
|
|
87
|
+
*
|
|
88
|
+
* @example
|
|
89
|
+
* ```tsx
|
|
90
|
+
* (<Renderer featureFlags={{ 'my-feature': 'thing' }} />);
|
|
91
|
+
* getFeatureFlags()?.myFeature === undefined;
|
|
92
|
+
* ```
|
|
93
|
+
*
|
|
94
|
+
* @example
|
|
95
|
+
* ```tsx
|
|
96
|
+
* (<Renderer featureFlags={{ 'product.my-feature': false }} />);
|
|
97
|
+
* getFeatureFlags()?.myFeature === undefined;
|
|
98
|
+
* getFeatureFlags()?.productMyFeature === undefined;
|
|
99
|
+
* ```
|
|
100
|
+
*/
|
|
101
|
+
featureFlags?: {
|
|
102
|
+
[featureFlag: string]: boolean;
|
|
103
|
+
} | Partial<RawObjectFeatureFlags>;
|
|
104
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { Schema } from 'prosemirror-model';
|
|
2
|
+
import type { ADNode } from '@atlaskit/editor-common/validator';
|
|
3
|
+
import type { EventHandlers } from '@atlaskit/editor-common/ui';
|
|
4
|
+
import type { Transformer } from '@atlaskit/editor-common/types';
|
|
5
|
+
import type { Node as PMNode } from 'prosemirror-model';
|
|
6
|
+
import type { RendererAppearance } from './ui/Renderer/types';
|
|
7
|
+
export type TransformerProvider<T> = (schema: Schema) => Transformer<T>;
|
|
8
|
+
export declare class ADFEncoder<T> {
|
|
9
|
+
encode: (value: T) => any;
|
|
10
|
+
constructor(createTransformerWithSchema: TransformerProvider<T>);
|
|
11
|
+
}
|
|
12
|
+
export declare const getText: (node: PMNode | ADNode) => string;
|
|
13
|
+
export declare const getEventHandler: (eventHandlers?: EventHandlers, type?: keyof EventHandlers, eventName?: string) => any;
|
|
14
|
+
export declare const getPlatform: (rendererAppearance: RendererAppearance) => "mobile" | "web";
|
|
15
|
+
/**
|
|
16
|
+
* Traverse through parent elements of element. Return element for which evaluate(element) returns
|
|
17
|
+
* true. If topElement is reached before evaluate returns true, return false. Does not run evaluate
|
|
18
|
+
* on topElement.
|
|
19
|
+
* @param element Starting HTMLElement
|
|
20
|
+
* @param topElement HTMLElement to end search at. evaluate is not called on this element
|
|
21
|
+
* @param evaluate Function which returns true or false based on the given element. eg: Checks if
|
|
22
|
+
* element has desired classname.
|
|
23
|
+
*/
|
|
24
|
+
export declare function findInTree(element: HTMLElement, topElement: HTMLElement, evaluate: (element: HTMLElement) => boolean): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "108.
|
|
3
|
+
"version": "108.1.1",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -39,18 +39,19 @@
|
|
|
39
39
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
40
40
|
"@atlaskit/button": "^16.7.0",
|
|
41
41
|
"@atlaskit/code": "^14.6.0",
|
|
42
|
-
"@atlaskit/editor-common": "^74.
|
|
42
|
+
"@atlaskit/editor-common": "^74.1.0",
|
|
43
43
|
"@atlaskit/editor-json-transformer": "^8.9.0",
|
|
44
|
-
"@atlaskit/editor-palette": "1.4.
|
|
44
|
+
"@atlaskit/editor-palette": "1.4.2",
|
|
45
45
|
"@atlaskit/editor-shared-styles": "^2.4.0",
|
|
46
46
|
"@atlaskit/emoji": "^67.4.0",
|
|
47
47
|
"@atlaskit/icon": "^21.12.0",
|
|
48
|
-
"@atlaskit/media-card": "^
|
|
48
|
+
"@atlaskit/media-card": "^75.0.0",
|
|
49
49
|
"@atlaskit/media-client": "^22.0.0",
|
|
50
50
|
"@atlaskit/media-common": "^4.1.0",
|
|
51
51
|
"@atlaskit/media-filmstrip": "^47.0.0",
|
|
52
|
-
"@atlaskit/media-ui": "^
|
|
53
|
-
"@atlaskit/media-viewer": "^
|
|
52
|
+
"@atlaskit/media-ui": "^23.0.0",
|
|
53
|
+
"@atlaskit/media-viewer": "^48.0.0",
|
|
54
|
+
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
54
55
|
"@atlaskit/smart-card": "^26.1.0",
|
|
55
56
|
"@atlaskit/status": "^1.3.0",
|
|
56
57
|
"@atlaskit/task-decision": "^17.6.0",
|
|
@@ -61,7 +62,7 @@
|
|
|
61
62
|
"@emotion/react": "^11.7.1",
|
|
62
63
|
"lodash": "^4.17.21",
|
|
63
64
|
"memoize-one": "^6.0.0",
|
|
64
|
-
"prosemirror-model": "1.
|
|
65
|
+
"prosemirror-model": "1.16.0",
|
|
65
66
|
"prosemirror-transform": "1.3.2",
|
|
66
67
|
"prosemirror-utils": "^1.0.0-0",
|
|
67
68
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
@@ -69,8 +70,8 @@
|
|
|
69
70
|
"uuid": "^3.1.0"
|
|
70
71
|
},
|
|
71
72
|
"peerDependencies": {
|
|
72
|
-
"@atlaskit/link-provider": "^1.6.
|
|
73
|
-
"@atlaskit/media-core": "^34.1.
|
|
73
|
+
"@atlaskit/link-provider": "^1.6.2",
|
|
74
|
+
"@atlaskit/media-core": "^34.1.2",
|
|
74
75
|
"react": "^16.8.0",
|
|
75
76
|
"react-dom": "^16.8.0"
|
|
76
77
|
},
|
|
@@ -79,9 +80,10 @@
|
|
|
79
80
|
"@atlaskit/avatar": "^21.3.0",
|
|
80
81
|
"@atlaskit/css-reset": "^6.5.0",
|
|
81
82
|
"@atlaskit/docs": "*",
|
|
82
|
-
"@atlaskit/editor-core": "^183.
|
|
83
|
+
"@atlaskit/editor-core": "^183.1.0",
|
|
83
84
|
"@atlaskit/editor-test-helpers": "^18.3.0",
|
|
84
85
|
"@atlaskit/link-provider": "^1.6.0",
|
|
86
|
+
"@atlaskit/link-test-helpers": "^2.2.0",
|
|
85
87
|
"@atlaskit/logo": "^13.14.0",
|
|
86
88
|
"@atlaskit/media-core": "^34.1.0",
|
|
87
89
|
"@atlaskit/media-integration-test-helpers": "^2.6.0",
|
|
@@ -126,5 +128,10 @@
|
|
|
126
128
|
"emotion"
|
|
127
129
|
]
|
|
128
130
|
}
|
|
131
|
+
},
|
|
132
|
+
"platform-feature-flags": {
|
|
133
|
+
"platform.editor.sentry-error-monitoring_6bksu": {
|
|
134
|
+
"type": "boolean"
|
|
135
|
+
}
|
|
129
136
|
}
|
|
130
137
|
}
|
package/report.api.md
CHANGED
|
@@ -381,10 +381,8 @@ export const renderDocument: <T>(
|
|
|
381
381
|
adfStage?: ADFStage,
|
|
382
382
|
useSpecBasedValidator?: boolean,
|
|
383
383
|
rendererId?: string,
|
|
384
|
-
dispatchAnalyticsEvent?: DispatchAnalyticsEvent
|
|
385
|
-
unsupportedContentLevelsTracking?:
|
|
386
|
-
| UnsupportedContentLevelsTracking
|
|
387
|
-
| undefined,
|
|
384
|
+
dispatchAnalyticsEvent?: DispatchAnalyticsEvent,
|
|
385
|
+
unsupportedContentLevelsTracking?: UnsupportedContentLevelsTracking,
|
|
388
386
|
appearance?: RendererAppearance,
|
|
389
387
|
) => RenderOutput<T | null>;
|
|
390
388
|
|
|
@@ -759,8 +757,8 @@ type VisitMediaLinkAEP = AEP<
|
|
|
759
757
|
|
|
760
758
|
```json
|
|
761
759
|
{
|
|
762
|
-
"@atlaskit/link-provider": "^1.
|
|
763
|
-
"@atlaskit/media-core": "^34.
|
|
760
|
+
"@atlaskit/link-provider": "^1.6.1",
|
|
761
|
+
"@atlaskit/media-core": "^34.1.1",
|
|
764
762
|
"react": "^16.8.0",
|
|
765
763
|
"react-dom": "^16.8.0"
|
|
766
764
|
}
|