@atlaskit/editor-core 169.0.0 → 170.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -0
- package/dist/cjs/create-editor/create-plugins-list.js +7 -0
- package/dist/cjs/plugins/analytics/types/toolbar-button.js +2 -0
- package/dist/cjs/plugins/breakout/index.js +7 -0
- package/dist/cjs/plugins/breakout/ui/LayoutButton.js +3 -1
- package/dist/cjs/plugins/card/pm-plugins/util/resolve.js +6 -1
- package/dist/cjs/plugins/card/styles.js +4 -2
- package/dist/cjs/plugins/card/toolbar.js +6 -1
- package/dist/cjs/plugins/code-block/styles.js +17 -41
- package/dist/cjs/plugins/code-block/ui/class-names.js +5 -2
- package/dist/cjs/plugins/copy-button/commands.js +85 -0
- package/dist/cjs/plugins/copy-button/index.js +27 -0
- package/dist/cjs/plugins/copy-button/pm-plugins/main.js +38 -0
- package/dist/cjs/plugins/copy-button/pm-plugins/plugin-key.js +11 -0
- package/dist/cjs/plugins/copy-button/utils.js +51 -0
- package/dist/cjs/plugins/feature-flags-context/feature-flags-from-props.js +4 -2
- package/dist/cjs/plugins/indentation/messages.js +23 -0
- package/dist/cjs/plugins/index.js +16 -0
- package/dist/cjs/plugins/list/index.js +0 -43
- package/dist/cjs/plugins/panel/toolbar.js +10 -2
- package/dist/cjs/plugins/quick-insert/search.js +3 -4
- package/dist/cjs/plugins/table/commands/hover.js +2 -2
- package/dist/cjs/plugins/table/toolbar.js +5 -1
- package/dist/cjs/plugins/table/utils/decoration.js +5 -1
- package/dist/cjs/plugins/toolbar-lists-indentation/index.js +65 -0
- package/dist/cjs/plugins/toolbar-lists-indentation/types.js +5 -0
- package/dist/cjs/plugins/toolbar-lists-indentation/ui/Toolbar.js +122 -0
- package/dist/cjs/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.js +173 -0
- package/dist/cjs/plugins/toolbar-lists-indentation/ui/index.js +58 -0
- package/dist/cjs/plugins/toolbar-lists-indentation/ui/onItemActivated.js +48 -0
- package/dist/cjs/plugins/type-ahead/ui/TypeAheadList.js +4 -5
- package/dist/cjs/plugins/type-ahead/ui/TypeAheadListItem.js +17 -51
- package/dist/cjs/ui/ElementBrowser/InsertMenu.js +12 -39
- package/dist/cjs/ui/ElementBrowser/components/ElementList/ElementList.js +31 -87
- package/dist/cjs/utils/clipboard.js +67 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/create-editor/create-plugins-list.js +8 -1
- package/dist/es2019/plugins/analytics/types/toolbar-button.js +2 -0
- package/dist/es2019/plugins/breakout/index.js +7 -0
- package/dist/es2019/plugins/breakout/ui/LayoutButton.js +3 -1
- package/dist/es2019/plugins/card/pm-plugins/util/resolve.js +6 -1
- package/dist/es2019/plugins/card/styles.js +5 -0
- package/dist/es2019/plugins/card/toolbar.js +5 -1
- package/dist/es2019/plugins/code-block/styles.js +18 -95
- package/dist/es2019/plugins/code-block/ui/class-names.js +3 -2
- package/dist/es2019/plugins/copy-button/commands.js +64 -0
- package/dist/es2019/plugins/copy-button/index.js +15 -0
- package/dist/es2019/plugins/copy-button/pm-plugins/main.js +28 -0
- package/dist/es2019/plugins/copy-button/pm-plugins/plugin-key.js +2 -0
- package/dist/es2019/plugins/copy-button/utils.js +29 -0
- package/dist/es2019/plugins/feature-flags-context/feature-flags-from-props.js +4 -2
- package/dist/es2019/plugins/indentation/messages.js +14 -0
- package/dist/es2019/plugins/index.js +3 -1
- package/dist/es2019/plugins/list/index.js +1 -44
- package/dist/es2019/plugins/panel/toolbar.js +9 -2
- package/dist/es2019/plugins/quick-insert/search.js +3 -4
- package/dist/es2019/plugins/table/commands/hover.js +2 -2
- package/dist/es2019/plugins/table/toolbar.js +5 -2
- package/dist/es2019/plugins/table/utils/decoration.js +5 -1
- package/dist/es2019/plugins/toolbar-lists-indentation/index.js +53 -0
- package/dist/es2019/plugins/toolbar-lists-indentation/types.js +1 -0
- package/dist/es2019/plugins/toolbar-lists-indentation/ui/Toolbar.js +94 -0
- package/dist/es2019/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.js +149 -0
- package/dist/es2019/plugins/toolbar-lists-indentation/ui/index.js +49 -0
- package/dist/es2019/plugins/toolbar-lists-indentation/ui/onItemActivated.js +35 -0
- package/dist/es2019/plugins/type-ahead/ui/TypeAheadList.js +11 -10
- package/dist/es2019/plugins/type-ahead/ui/TypeAheadListItem.js +17 -48
- package/dist/es2019/ui/ElementBrowser/InsertMenu.js +10 -30
- package/dist/es2019/ui/ElementBrowser/components/ElementList/ElementList.js +34 -93
- package/dist/es2019/utils/clipboard.js +26 -0
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/create-editor/create-plugins-list.js +8 -1
- package/dist/esm/plugins/analytics/types/toolbar-button.js +2 -0
- package/dist/esm/plugins/breakout/index.js +7 -0
- package/dist/esm/plugins/breakout/ui/LayoutButton.js +3 -1
- package/dist/esm/plugins/card/pm-plugins/util/resolve.js +6 -1
- package/dist/esm/plugins/card/styles.js +2 -1
- package/dist/esm/plugins/card/toolbar.js +5 -1
- package/dist/esm/plugins/code-block/styles.js +16 -35
- package/dist/esm/plugins/code-block/ui/class-names.js +3 -2
- package/dist/esm/plugins/copy-button/commands.js +66 -0
- package/dist/esm/plugins/copy-button/index.js +17 -0
- package/dist/esm/plugins/copy-button/pm-plugins/main.js +26 -0
- package/dist/esm/plugins/copy-button/pm-plugins/plugin-key.js +2 -0
- package/dist/esm/plugins/copy-button/utils.js +31 -0
- package/dist/esm/plugins/feature-flags-context/feature-flags-from-props.js +4 -2
- package/dist/esm/plugins/indentation/messages.js +14 -0
- package/dist/esm/plugins/index.js +3 -1
- package/dist/esm/plugins/list/index.js +1 -41
- package/dist/esm/plugins/panel/toolbar.js +9 -2
- package/dist/esm/plugins/quick-insert/search.js +3 -4
- package/dist/esm/plugins/table/commands/hover.js +2 -2
- package/dist/esm/plugins/table/toolbar.js +5 -2
- package/dist/esm/plugins/table/utils/decoration.js +5 -1
- package/dist/esm/plugins/toolbar-lists-indentation/index.js +51 -0
- package/dist/esm/plugins/toolbar-lists-indentation/types.js +1 -0
- package/dist/esm/plugins/toolbar-lists-indentation/ui/Toolbar.js +96 -0
- package/dist/esm/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.js +153 -0
- package/dist/esm/plugins/toolbar-lists-indentation/ui/index.js +47 -0
- package/dist/esm/plugins/toolbar-lists-indentation/ui/onItemActivated.js +39 -0
- package/dist/esm/plugins/type-ahead/ui/TypeAheadList.js +6 -8
- package/dist/esm/plugins/type-ahead/ui/TypeAheadListItem.js +18 -51
- package/dist/esm/ui/ElementBrowser/InsertMenu.js +12 -35
- package/dist/esm/ui/ElementBrowser/components/ElementList/ElementList.js +31 -89
- package/dist/esm/utils/clipboard.js +55 -0
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/plugins/analytics/types/toolbar-button.d.ts +3 -1
- package/dist/types/plugins/card/styles.d.ts +1 -0
- package/dist/types/plugins/copy-button/commands.d.ts +4 -0
- package/dist/types/plugins/copy-button/index.d.ts +3 -0
- package/dist/types/plugins/copy-button/pm-plugins/main.d.ts +3 -0
- package/dist/types/plugins/copy-button/pm-plugins/plugin-key.d.ts +2 -0
- package/dist/types/plugins/copy-button/utils.d.ts +7 -0
- package/dist/types/plugins/indentation/messages.d.ts +12 -0
- package/dist/types/plugins/index.d.ts +2 -0
- package/dist/types/plugins/panel/toolbar.d.ts +1 -1
- package/dist/types/plugins/table/commands/hover.d.ts +1 -1
- package/dist/types/plugins/table/utils/decoration.d.ts +1 -1
- package/dist/types/plugins/text-formatting/utils.d.ts +1 -1
- package/dist/types/plugins/toolbar-lists-indentation/index.d.ts +5 -0
- package/dist/types/plugins/toolbar-lists-indentation/types.d.ts +16 -0
- package/dist/types/plugins/toolbar-lists-indentation/ui/Toolbar.d.ts +4 -0
- package/dist/types/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.d.ts +9 -0
- package/dist/types/plugins/{list/ui/ToolbarLists → toolbar-lists-indentation/ui}/index.d.ts +4 -10
- package/dist/types/plugins/toolbar-lists-indentation/ui/onItemActivated.d.ts +6 -0
- package/dist/types/plugins/type-ahead/ui/TypeAheadListItem.d.ts +0 -25
- package/dist/types/types/feature-flags.d.ts +18 -0
- package/dist/types/ui/ElementBrowser/components/ElementList/ElementList.d.ts +11 -0
- package/dist/types/utils/clipboard.d.ts +1 -0
- package/package.json +21 -21
- package/report.api.md +5373 -1324
- package/dist/cjs/plugins/list/ui/ToolbarLists/index.js +0 -266
- package/dist/es2019/plugins/list/ui/ToolbarLists/index.js +0 -220
- package/dist/esm/plugins/list/ui/ToolbarLists/index.js +0 -241
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { EditorView } from 'prosemirror-view';
|
|
2
|
+
import type { onItemActivated } from './ui/onItemActivated';
|
|
3
|
+
export declare type ButtonName = 'bullet_list' | 'ordered_list' | 'indent' | 'outdent';
|
|
4
|
+
export interface ToolbarProps {
|
|
5
|
+
editorView: EditorView;
|
|
6
|
+
bulletListActive?: boolean;
|
|
7
|
+
bulletListDisabled?: boolean;
|
|
8
|
+
orderedListActive?: boolean;
|
|
9
|
+
orderedListDisabled?: boolean;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
isSmall?: boolean;
|
|
12
|
+
isSeparator?: boolean;
|
|
13
|
+
isReducedSpacing?: boolean;
|
|
14
|
+
showIndentationButtons?: boolean;
|
|
15
|
+
onItemActivated: typeof onItemActivated;
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
|
+
import { ToolbarProps } from '../types';
|
|
4
|
+
export declare type DropdownProps = ToolbarProps & {
|
|
5
|
+
popupsMountPoint?: HTMLElement;
|
|
6
|
+
popupsBoundariesElement?: HTMLElement;
|
|
7
|
+
popupsScrollableElement?: HTMLElement;
|
|
8
|
+
};
|
|
9
|
+
export declare function ToolbarDropdown(props: DropdownProps): jsx.JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
3
|
import { EditorView } from 'prosemirror-view';
|
|
4
4
|
export interface Props {
|
|
5
5
|
editorView: EditorView;
|
|
@@ -9,16 +9,10 @@ export interface Props {
|
|
|
9
9
|
orderedListDisabled?: boolean;
|
|
10
10
|
disabled?: boolean;
|
|
11
11
|
isSmall?: boolean;
|
|
12
|
-
isSeparator?: boolean;
|
|
13
12
|
isReducedSpacing?: boolean;
|
|
14
13
|
popupsMountPoint?: HTMLElement;
|
|
15
14
|
popupsBoundariesElement?: HTMLElement;
|
|
16
15
|
popupsScrollableElement?: HTMLElement;
|
|
16
|
+
showIndentationButtons?: boolean;
|
|
17
17
|
}
|
|
18
|
-
export
|
|
19
|
-
isDropdownOpen: boolean;
|
|
20
|
-
}
|
|
21
|
-
declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps<"intl">>> & {
|
|
22
|
-
WrappedComponent: import("react").ComponentType<Props & WrappedComponentProps<"intl">>;
|
|
23
|
-
};
|
|
24
|
-
export default _default;
|
|
18
|
+
export default function ToolbarListsIndentation(props: Props): jsx.JSX.Element;
|
|
@@ -5,31 +5,6 @@ import { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
|
5
5
|
export declare const ICON_HEIGHT = 40;
|
|
6
6
|
export declare const ICON_WIDTH = 40;
|
|
7
7
|
export declare const ITEM_PADDING = 12;
|
|
8
|
-
export declare const itemTheme: {
|
|
9
|
-
[x: number]: {
|
|
10
|
-
padding: {
|
|
11
|
-
default: {
|
|
12
|
-
bottom: number;
|
|
13
|
-
left: number;
|
|
14
|
-
right: number;
|
|
15
|
-
top: number;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
beforeItemSpacing: {
|
|
19
|
-
default: () => number;
|
|
20
|
-
};
|
|
21
|
-
borderRadius: () => number;
|
|
22
|
-
hover: {
|
|
23
|
-
text: import("@atlaskit/theme").ThemedValue<"var(--ds-text)">;
|
|
24
|
-
secondaryText: "var(--ds-text-subtlest)";
|
|
25
|
-
};
|
|
26
|
-
selected: {
|
|
27
|
-
background: import("@atlaskit/theme").ThemedValue<"var(--ds-background-neutral-subtle-hovered)">;
|
|
28
|
-
text: import("@atlaskit/theme").ThemedValue<"var(--ds-text)">;
|
|
29
|
-
secondaryText: import("@atlaskit/theme").ThemedValue<"var(--ds-text-subtlest)">;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
8
|
export declare const itemIcon: import("@emotion/react").SerializedStyles;
|
|
34
9
|
declare type TypeAheadListItemProps = {
|
|
35
10
|
item: TypeAheadItem;
|
|
@@ -307,5 +307,23 @@ export declare type FeatureFlags = {
|
|
|
307
307
|
* @default false
|
|
308
308
|
*/
|
|
309
309
|
showHoverPreview?: boolean;
|
|
310
|
+
/**
|
|
311
|
+
* @description
|
|
312
|
+
* Show indentation buttons in the Editor toolbar
|
|
313
|
+
*
|
|
314
|
+
* @see https://product-fabric.atlassian.net/wiki/spaces/E/pages/3237512038/EXPLORE+Indentation+buttons+in+the+Editor+toolbar
|
|
315
|
+
* @see https://product-fabric.atlassian.net/browse/ED-15067
|
|
316
|
+
* @default false
|
|
317
|
+
*/
|
|
318
|
+
indentationButtonsInTheToolbar?: boolean;
|
|
319
|
+
/**
|
|
320
|
+
* @description
|
|
321
|
+
* Show copy buttons in the Floating toolbar
|
|
322
|
+
*
|
|
323
|
+
* @see https://product-fabric.atlassian.net/wiki/spaces/E/pages/3237609689/Cubone+Mini+project+-+Copy+button+in+the+floating+toolbar
|
|
324
|
+
* @see https://product-fabric.atlassian.net/browse/ED-15090
|
|
325
|
+
* @default false
|
|
326
|
+
*/
|
|
327
|
+
floatingToolbarCopyButton?: boolean;
|
|
310
328
|
};
|
|
311
329
|
export declare type FeatureFlagKey = keyof FeatureFlags;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import React from 'react';
|
|
3
|
+
import { jsx } from '@emotion/react';
|
|
3
4
|
import { QuickInsertItem } from '@atlaskit/editor-common/provider-factory';
|
|
4
5
|
import { WithAnalyticsEventsProps } from '@atlaskit/analytics-next';
|
|
5
6
|
import { Modes, SelectedItemProps } from '../../types';
|
|
@@ -14,5 +15,15 @@ export interface Props {
|
|
|
14
15
|
selectedCategory?: string;
|
|
15
16
|
searchTerm?: string;
|
|
16
17
|
}
|
|
18
|
+
declare type ElementItemType = {
|
|
19
|
+
inlineMode: boolean;
|
|
20
|
+
item: QuickInsertItem;
|
|
21
|
+
onInsertItem: (item: QuickInsertItem) => void;
|
|
22
|
+
selected: boolean;
|
|
23
|
+
focus: boolean;
|
|
24
|
+
setFocusedItemIndex: (index: number) => void;
|
|
25
|
+
index: number;
|
|
26
|
+
};
|
|
27
|
+
export declare function ElementItem({ inlineMode, selected, item, index, onInsertItem, focus, setFocusedItemIndex, }: ElementItemType): jsx.JSX.Element;
|
|
17
28
|
declare const MemoizedElementListWithAnalytics: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<Props & SelectedItemProps & WithAnalyticsEventsProps & import("@atlaskit/analytics-next").WithContextProps, "createAnalyticsEvent" | "analyticsContext" | keyof Props | keyof SelectedItemProps> & React.RefAttributes<any>>>;
|
|
18
29
|
export default MemoizedElementListWithAnalytics;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare function checkClipboardTypes(type: DOMStringList | ReadonlyArray<string>, item: string): boolean;
|
|
2
2
|
export declare function isPastedFile(rawEvent: Event): boolean;
|
|
3
3
|
export declare const copyToClipboard: (textToCopy: string) => Promise<void>;
|
|
4
|
+
export declare const copyHTMLToClipboard: (htmlToCopy: string) => Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "170.0.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,39 +36,39 @@
|
|
|
36
36
|
"@atlaskit/avatar": "^21.0.0",
|
|
37
37
|
"@atlaskit/avatar-group": "^9.0.0",
|
|
38
38
|
"@atlaskit/button": "^16.3.0",
|
|
39
|
-
"@atlaskit/calendar": "^12.
|
|
39
|
+
"@atlaskit/calendar": "^12.3.0",
|
|
40
40
|
"@atlaskit/checkbox": "^12.3.0",
|
|
41
41
|
"@atlaskit/code": "^14.3.0",
|
|
42
42
|
"@atlaskit/date": "^0.9.0",
|
|
43
|
-
"@atlaskit/datetime-picker": "^12.
|
|
43
|
+
"@atlaskit/datetime-picker": "^12.1.0",
|
|
44
44
|
"@atlaskit/droplist": "^11.0.0",
|
|
45
|
-
"@atlaskit/editor-common": "^
|
|
45
|
+
"@atlaskit/editor-common": "^69.0.0",
|
|
46
46
|
"@atlaskit/editor-json-transformer": "^8.7.0",
|
|
47
47
|
"@atlaskit/editor-markdown-transformer": "^4.1.0",
|
|
48
48
|
"@atlaskit/editor-shared-styles": "^2.1.0",
|
|
49
49
|
"@atlaskit/editor-tables": "^2.1.0",
|
|
50
|
-
"@atlaskit/emoji": "^
|
|
50
|
+
"@atlaskit/emoji": "^65.0.0",
|
|
51
51
|
"@atlaskit/empty-state": "^7.3.0",
|
|
52
52
|
"@atlaskit/form": "^8.5.0",
|
|
53
53
|
"@atlaskit/icon": "^21.10.0",
|
|
54
54
|
"@atlaskit/icon-object": "^6.2.0",
|
|
55
55
|
"@atlaskit/item": "^12.0.0",
|
|
56
56
|
"@atlaskit/locale": "^2.3.0",
|
|
57
|
-
"@atlaskit/logo": "^13.
|
|
58
|
-
"@atlaskit/media-card": "^
|
|
59
|
-
"@atlaskit/media-client": "^17.
|
|
57
|
+
"@atlaskit/logo": "^13.8.0",
|
|
58
|
+
"@atlaskit/media-card": "^74.0.0",
|
|
59
|
+
"@atlaskit/media-client": "^17.1.0",
|
|
60
60
|
"@atlaskit/media-common": "^2.15.0",
|
|
61
|
-
"@atlaskit/media-filmstrip": "^
|
|
61
|
+
"@atlaskit/media-filmstrip": "^45.0.0",
|
|
62
62
|
"@atlaskit/media-picker": "^63.0.0",
|
|
63
63
|
"@atlaskit/media-ui": "^22.1.0",
|
|
64
|
-
"@atlaskit/media-viewer": "^
|
|
64
|
+
"@atlaskit/media-viewer": "^47.0.0",
|
|
65
65
|
"@atlaskit/mention": "^21.0.0",
|
|
66
66
|
"@atlaskit/menu": "^1.3.0",
|
|
67
67
|
"@atlaskit/modal-dialog": "^12.2.0",
|
|
68
68
|
"@atlaskit/prosemirror-input-rules": "^2.1.0",
|
|
69
69
|
"@atlaskit/radio": "^5.3.0",
|
|
70
70
|
"@atlaskit/section-message": "^6.1.0",
|
|
71
|
-
"@atlaskit/select": "^15.
|
|
71
|
+
"@atlaskit/select": "^15.4.0",
|
|
72
72
|
"@atlaskit/smart-user-picker": "^5.1.0",
|
|
73
73
|
"@atlaskit/spinner": "^15.1.0",
|
|
74
74
|
"@atlaskit/status": "^1.1.0",
|
|
@@ -97,6 +97,7 @@
|
|
|
97
97
|
"@types/react-virtualized": "^9.18.12",
|
|
98
98
|
"chromatism": "^2.6.0",
|
|
99
99
|
"classnames": "^2.2.5",
|
|
100
|
+
"clipboard-polyfill": "2.4.3",
|
|
100
101
|
"date-fns": "^2.17.0",
|
|
101
102
|
"eventemitter2": "^4.1.0",
|
|
102
103
|
"fuse.js": "^6.6.2",
|
|
@@ -127,8 +128,8 @@
|
|
|
127
128
|
"w3c-keyname": "^2.1.0"
|
|
128
129
|
},
|
|
129
130
|
"peerDependencies": {
|
|
130
|
-
"@atlaskit/media-core": "^33.0.
|
|
131
|
-
"@atlaskit/smart-card": "^20.
|
|
131
|
+
"@atlaskit/media-core": "^33.0.1",
|
|
132
|
+
"@atlaskit/smart-card": "^20.1.0",
|
|
132
133
|
"react": "^16.8.0",
|
|
133
134
|
"react-dom": "^16.8.0",
|
|
134
135
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
@@ -138,13 +139,13 @@
|
|
|
138
139
|
"@atlaskit/atlassian-navigation": "^2.2.0",
|
|
139
140
|
"@atlaskit/breadcrumbs": "11.6.2",
|
|
140
141
|
"@atlaskit/code": "^14.3.0",
|
|
141
|
-
"@atlaskit/collab-provider": "7.4.
|
|
142
|
+
"@atlaskit/collab-provider": "7.4.4",
|
|
142
143
|
"@atlaskit/docs": "*",
|
|
143
144
|
"@atlaskit/drawer": "^7.1.0",
|
|
144
145
|
"@atlaskit/dropdown-menu": "^11.2.0",
|
|
145
146
|
"@atlaskit/editor-bitbucket-transformer": "^7.2.0",
|
|
146
147
|
"@atlaskit/editor-extension-dropbox": "^0.3.0",
|
|
147
|
-
"@atlaskit/editor-test-helpers": "^17.
|
|
148
|
+
"@atlaskit/editor-test-helpers": "^17.1.0",
|
|
148
149
|
"@atlaskit/flag": "^14.6.0",
|
|
149
150
|
"@atlaskit/inline-dialog": "^13.3.0",
|
|
150
151
|
"@atlaskit/lozenge": "^11.1.0",
|
|
@@ -153,22 +154,22 @@
|
|
|
153
154
|
"@atlaskit/media-test-helpers": "^30.0.0",
|
|
154
155
|
"@atlaskit/menu": "^1.3.0",
|
|
155
156
|
"@atlaskit/page-layout": "^1.2.0",
|
|
156
|
-
"@atlaskit/profilecard": "^16.
|
|
157
|
+
"@atlaskit/profilecard": "^16.10.0",
|
|
157
158
|
"@atlaskit/pubsub": "^6.0.0",
|
|
158
|
-
"@atlaskit/renderer": "^
|
|
159
|
+
"@atlaskit/renderer": "^99.0.0",
|
|
159
160
|
"@atlaskit/section-message": "^6.1.0",
|
|
160
161
|
"@atlaskit/share": "*",
|
|
161
|
-
"@atlaskit/smart-card": "^20.
|
|
162
|
+
"@atlaskit/smart-card": "^20.1.0",
|
|
162
163
|
"@atlaskit/smart-user-picker": "^5.1.0",
|
|
163
164
|
"@atlaskit/synchrony-test-helpers": "^2.3.0",
|
|
164
165
|
"@atlaskit/textarea": "^4.3.0",
|
|
165
166
|
"@atlaskit/toggle": "^12.4.0",
|
|
166
167
|
"@atlaskit/ufo": "^0.1.0",
|
|
167
|
-
"@atlaskit/util-data-test": "^17.
|
|
168
|
+
"@atlaskit/util-data-test": "^17.5.0",
|
|
168
169
|
"@atlaskit/visual-regression": "*",
|
|
169
170
|
"@atlaskit/webdriver-runner": "*",
|
|
170
171
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
171
|
-
"@atlassian/search-provider": "2.3.
|
|
172
|
+
"@atlassian/search-provider": "2.3.2",
|
|
172
173
|
"@atlassian/ufo": "^0.1.0",
|
|
173
174
|
"@emotion/jest": "^11.8.0",
|
|
174
175
|
"@testing-library/dom": "^7.7.3",
|
|
@@ -183,7 +184,6 @@
|
|
|
183
184
|
"@types/react-window": "^1.8.3",
|
|
184
185
|
"@types/rison": "^0.0.6",
|
|
185
186
|
"async-retry": "^1.2.3",
|
|
186
|
-
"clipboard-polyfill": "2.4.3",
|
|
187
187
|
"diff": "^4.0.1",
|
|
188
188
|
"enzyme": "^3.10.0",
|
|
189
189
|
"fetch-mock": "^8.0.0",
|