@atlaskit/editor-common 82.5.0 → 82.7.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist/cjs/keymaps/keymap.js +46 -13
  3. package/dist/cjs/link/ConfigureLinkOverlay/OverlayButton.js +87 -0
  4. package/dist/cjs/link/index.js +7 -0
  5. package/dist/cjs/link/types.js +1 -0
  6. package/dist/cjs/monitoring/error.js +1 -1
  7. package/dist/cjs/ui/DropList/index.js +1 -1
  8. package/dist/cjs/ui-color/ColorPalette/Color/index.js +2 -2
  9. package/dist/cjs/ui-color/ColorPalette/Palettes/highlightColorPalette.js +9 -3
  10. package/dist/cjs/ui-color/ColorPalette/Palettes/textColorPalette.js +10 -1
  11. package/dist/cjs/ui-color/index.js +12 -0
  12. package/dist/es2019/keymaps/keymap.js +46 -13
  13. package/dist/es2019/link/ConfigureLinkOverlay/OverlayButton.js +80 -0
  14. package/dist/es2019/link/index.js +2 -1
  15. package/dist/es2019/link/types.js +1 -0
  16. package/dist/es2019/monitoring/error.js +1 -1
  17. package/dist/es2019/ui/DropList/index.js +1 -1
  18. package/dist/es2019/ui-color/ColorPalette/Color/index.js +2 -2
  19. package/dist/es2019/ui-color/ColorPalette/Palettes/highlightColorPalette.js +5 -1
  20. package/dist/es2019/ui-color/ColorPalette/Palettes/textColorPalette.js +6 -1
  21. package/dist/es2019/ui-color/index.js +2 -2
  22. package/dist/esm/keymaps/keymap.js +46 -13
  23. package/dist/esm/link/ConfigureLinkOverlay/OverlayButton.js +79 -0
  24. package/dist/esm/link/index.js +2 -1
  25. package/dist/esm/link/types.js +1 -0
  26. package/dist/esm/monitoring/error.js +1 -1
  27. package/dist/esm/ui/DropList/index.js +1 -1
  28. package/dist/esm/ui-color/ColorPalette/Color/index.js +2 -2
  29. package/dist/esm/ui-color/ColorPalette/Palettes/highlightColorPalette.js +8 -0
  30. package/dist/esm/ui-color/ColorPalette/Palettes/textColorPalette.js +9 -0
  31. package/dist/esm/ui-color/index.js +2 -2
  32. package/dist/types/link/ConfigureLinkOverlay/OverlayButton.d.ts +8 -0
  33. package/dist/types/link/index.d.ts +2 -0
  34. package/dist/types/link/types.d.ts +5 -1
  35. package/dist/types/types/annotation/index.d.ts +2 -0
  36. package/dist/types/types/feature-flags.d.ts +8 -0
  37. package/dist/types/ui-color/ColorPalette/Palettes/highlightColorPalette.d.ts +1 -0
  38. package/dist/types/ui-color/ColorPalette/Palettes/textColorPalette.d.ts +2 -0
  39. package/dist/types/ui-color/index.d.ts +2 -2
  40. package/dist/types-ts4.5/link/ConfigureLinkOverlay/OverlayButton.d.ts +8 -0
  41. package/dist/types-ts4.5/link/index.d.ts +2 -0
  42. package/dist/types-ts4.5/link/types.d.ts +5 -1
  43. package/dist/types-ts4.5/types/annotation/index.d.ts +2 -0
  44. package/dist/types-ts4.5/types/feature-flags.d.ts +8 -0
  45. package/dist/types-ts4.5/ui-color/ColorPalette/Palettes/highlightColorPalette.d.ts +1 -0
  46. package/dist/types-ts4.5/ui-color/ColorPalette/Palettes/textColorPalette.d.ts +2 -0
  47. package/dist/types-ts4.5/ui-color/index.d.ts +2 -2
  48. package/package.json +269 -263
package/package.json CHANGED
@@ -1,264 +1,270 @@
1
1
  {
2
- "name": "@atlaskit/editor-common",
3
- "version": "82.5.0",
4
- "description": "A package that contains common classes and components for editor and renderer",
5
- "publishConfig": {
6
- "registry": "https://registry.npmjs.org/"
7
- },
8
- "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
9
- "author": "Atlassian Pty Ltd",
10
- "license": "Apache-2.0",
11
- "main": "dist/cjs/index.js",
12
- "module": "dist/esm/index.js",
13
- "module:es2019": "dist/es2019/index.js",
14
- "types": "dist/types/index.d.ts",
15
- "typesVersions": {
16
- ">=4.5 <4.9": {
17
- "*": [
18
- "dist/types-ts4.5/*",
19
- "dist/types-ts4.5/index.d.ts"
20
- ]
21
- }
22
- },
23
- "sideEffects": false,
24
- "atlaskit:src": "src/index.ts",
25
- "atlassian": {
26
- "team": "Editor",
27
- "inPublicMirror": true,
28
- "singleton": true,
29
- "releaseModel": "continuous",
30
- "runReact18": true
31
- },
32
- "af:exports": {
33
- "./event-dispatcher": "./src/event-dispatcher/index.ts",
34
- "./extensions": "./src/extensions.ts",
35
- "./extensibility": "./src/extensibility/index.ts",
36
- "./normalize-feature-flags": "./src/normalize-feature-flags.ts",
37
- "./messages": "./src/messages/index.ts",
38
- "./provider-factory": "./src/provider-factory.ts",
39
- "./styles": "./src/styles/index.ts",
40
- "./validator": "./src/validator.ts",
41
- "./type-ahead": "./src/type-ahead/index.ts",
42
- "./ufo": "./src/ufo/index.ts",
43
- "./insert": "./src/insert/index.ts",
44
- "./types": "./src/types/index.ts",
45
- "./ui": "./src/ui/index.tsx",
46
- "./utils": "./src/utils/index.ts",
47
- "./card": "./src/card/index.ts",
48
- "./collab": "./src/collab/index.ts",
49
- "./emoji": "./src/emoji.ts",
50
- "./mention": "./src/mention.ts",
51
- "./portal": "./src/portal/index.ts",
52
- "./provider-helpers": "./src/provider-helpers/index.ts",
53
- "./icons": "./src/icons/index.ts",
54
- "./safe-plugin": "./src/safe-plugin/index.ts",
55
- "./panel": "./src/panel.ts",
56
- "./analytics": "./src/analytics/index.ts",
57
- "./error-boundary": "./src/ui/ErrorBoundary/index.tsx",
58
- "./portal-provider": "./src/ui/PortalProvider/index.tsx",
59
- "./react-node-view": "./src/react-node-view/index.tsx",
60
- "./with-plugin-state": "./src/with-plugin-state/index.tsx",
61
- "./node-width": "./src/node-width/index.ts",
62
- "./keymaps": "./src/keymaps/index.tsx",
63
- "./ui-menu": "./src/ui-menu/index.tsx",
64
- "./ui-react": "./src/ui-react/index.ts",
65
- "./ui-color": "./src/ui-color/index.ts",
66
- "./transforms": "./src/transforms/index.ts",
67
- "./core-utils": "./src/core-utils/index.ts",
68
- "./selection": "./src/selection/index.ts",
69
- "./preset": "./src/preset/index.ts",
70
- "./hooks": "./src/hooks/index.ts",
71
- "./media-inline": "./src/media-inline/index.ts",
72
- "./media-single": "./src/media-single/index.ts",
73
- "./media": "./src/media/index.ts",
74
- "./monitoring": "./src/monitoring/index.ts",
75
- "./paste": "./src/paste/index.ts",
76
- "./resizer": "./src/resizer/index.ts",
77
- "./editor-analytics": "./src/editor-analytics/index.ts",
78
- "./selection-based-node-view": "./src/selection-based-node-view/index.ts",
79
- "./guideline": "./src/guideline/index.ts",
80
- "./quick-insert": "./src/quick-insert/index.ts",
81
- "./link": "./src/link/index.ts",
82
- "./mark": "./src/mark/index.ts",
83
- "./commands": "./src/commands/index.ts",
84
- "./clipboard": "./src/clipboard/index.ts",
85
- "./lists": "./src/lists/index.ts",
86
- "./element-browser": "./src/element-browser/index.ts",
87
- "./floating-toolbar": "./src/floating-toolbar/index.ts",
88
- "./copy-button": "./src/copy-button/index.ts",
89
- "./legacy-rank-plugins": "./src/rank.ts",
90
- "./indentation": "./src/indentation/index.ts",
91
- "./annotation": "./src/annotation/index.ts",
92
- "./constants": "./src/link/constants.ts",
93
- "./doc-utils": "./src/doc-utils/index.ts",
94
- "./expand": "./src/expand/index.ts",
95
- "./table": "./src/table/index.ts"
96
- },
97
- "dependencies": {
98
- "@atlaskit/activity-provider": "^2.4.0",
99
- "@atlaskit/adf-schema": "^36.10.7",
100
- "@atlaskit/adf-utils": "^19.2.0",
101
- "@atlaskit/analytics-listeners": "^8.9.0",
102
- "@atlaskit/analytics-namespaced-context": "^6.9.0",
103
- "@atlaskit/analytics-next": "^9.3.0",
104
- "@atlaskit/analytics-next-stable-react-context": "1.0.1",
105
- "@atlaskit/button": "^17.17.0",
106
- "@atlaskit/code": "^15.2.0",
107
- "@atlaskit/codemod-utils": "^4.2.0",
108
- "@atlaskit/custom-steps": "^0.2.0",
109
- "@atlaskit/editor-json-transformer": "^8.13.0",
110
- "@atlaskit/editor-palette": "1.6.0",
111
- "@atlaskit/editor-prosemirror": "4.0.1",
112
- "@atlaskit/editor-shared-styles": "^2.12.0",
113
- "@atlaskit/editor-tables": "^2.7.0",
114
- "@atlaskit/emoji": "^67.6.0",
115
- "@atlaskit/icon": "^22.3.0",
116
- "@atlaskit/icon-object": "^6.4.0",
117
- "@atlaskit/link-datasource": "^2.3.0",
118
- "@atlaskit/link-picker": "^1.37.0",
119
- "@atlaskit/media-card": "^77.12.0",
120
- "@atlaskit/media-client": "^27.2.0",
121
- "@atlaskit/media-client-react": "^2.0.0",
122
- "@atlaskit/media-common": "^11.2.0",
123
- "@atlaskit/media-file-preview": "^0.5.0",
124
- "@atlaskit/media-picker": "^66.4.0",
125
- "@atlaskit/media-ui": "^25.10.0",
126
- "@atlaskit/media-viewer": "48.6.2",
127
- "@atlaskit/mention": "^23.2.0",
128
- "@atlaskit/menu": "^2.4.0",
129
- "@atlaskit/platform-feature-flags": "^0.2.0",
130
- "@atlaskit/primitives": "^7.0.0",
131
- "@atlaskit/profilecard": "^19.14.0",
132
- "@atlaskit/section-message": "^6.5.0",
133
- "@atlaskit/smart-card": "^27.5.0",
134
- "@atlaskit/smart-user-picker": "^6.9.0",
135
- "@atlaskit/spinner": "^16.1.0",
136
- "@atlaskit/task-decision": "^17.10.0",
137
- "@atlaskit/textfield": "^6.3.0",
138
- "@atlaskit/theme": "^12.9.0",
139
- "@atlaskit/tokens": "^1.50.0",
140
- "@atlaskit/tooltip": "^18.4.0",
141
- "@atlaskit/ufo": "^0.2.0",
142
- "@atlaskit/width-detector": "^4.2.0",
143
- "@babel/runtime": "^7.0.0",
144
- "@emotion/react": "^11.7.1",
145
- "@sentry/browser": "^6.18.2",
146
- "@sentry/integrations": "^6.18.2",
147
- "@sentry/types": "^6.18.2",
148
- "chromatism": "^2.6.0",
149
- "classnames": "^2.2.5",
150
- "clipboard-polyfill": "4.0.1",
151
- "date-fns": "^2.17.0",
152
- "focus-trap": "^2.4.5",
153
- "fuse.js": "^6.6.2",
154
- "linkify-it": "^3.0.3",
155
- "lodash": "^4.17.21",
156
- "markdown-it": "^13.0.2",
157
- "memoize-one": "^6.0.0",
158
- "popper.js": "^1.14.1",
159
- "prop-types": "^15.5.10",
160
- "raf-schd": "^4.0.3",
161
- "re-resizable": "6.0.0",
162
- "react-loadable": "^5.1.0",
163
- "react-virtualized": "^9.8.0",
164
- "rusha": "^0.8.13",
165
- "uuid": "^3.1.0",
166
- "w3c-keyname": "^2.1.8"
167
- },
168
- "peerDependencies": {
169
- "@atlaskit/media-core": "^34.2.0",
170
- "react": "^16.8.0",
171
- "react-dom": "^16.8.0",
172
- "react-intl-next": "npm:react-intl@^5.18.1"
173
- },
174
- "devDependencies": {
175
- "@af/visual-regression": "*",
176
- "@atlaskit/media-core": "^34.2.0",
177
- "@atlaskit/media-test-helpers": "^33.0.0",
178
- "@atlaskit/util-data-test": "^17.9.0",
179
- "@atlaskit/visual-regression": "*",
180
- "@atlassian/feature-flags-test-utils": "*",
181
- "@testing-library/dom": "^8.17.1",
182
- "@testing-library/jest-dom": "^6.4.5",
183
- "@testing-library/react": "^12.1.5",
184
- "@testing-library/react-hooks": "^8.0.1",
185
- "@testing-library/user-event": "^14.4.3",
186
- "@types/linkify-it": "^3.0.2",
187
- "@types/markdown-it": "^13.0.7",
188
- "@types/raf-schd": "^4.0.1",
189
- "@types/react-virtualized": "^9.18.12",
190
- "enzyme": "^3.10.0",
191
- "raf-stub": "^2.0.1",
192
- "react": "^16.8.0",
193
- "react-test-renderer": "^16.8.0",
194
- "sinon": "^2.2.0",
195
- "typescript": "~5.4.2"
196
- },
197
- "techstack": {
198
- "@atlassian/frontend": {
199
- "circular-dependencies": [
200
- "file-level"
201
- ],
202
- "import-structure": "atlassian-conventions"
203
- },
204
- "@repo/internal": {
205
- "deprecation": "no-deprecated-imports",
206
- "design-tokens": [
207
- "color"
208
- ],
209
- "styling": [
210
- "emotion"
211
- ]
212
- }
213
- },
214
- "platform-feature-flags": {
215
- "platform.editor.media.extended-resize-experience": {
216
- "type": "boolean"
217
- },
218
- "platform.linking-platform.prevent-suspicious-linkification": {
219
- "type": "boolean"
220
- },
221
- "platform.editor.media.inline-image.base-support": {
222
- "type": "boolean"
223
- },
224
- "platform.linking-platform.datasource-assets_objects": {
225
- "type": "boolean"
226
- },
227
- "platform.editor.ordered-list-auto-join-improvements_mrlv5": {
228
- "type": "boolean"
229
- },
230
- "platform.editor.resizer.prevent-contenteditable": {
231
- "type": "boolean"
232
- },
233
- "platform.editor.a11y-floating-toolbar-markup_vexmo": {
234
- "type": "boolean"
235
- },
236
- "platform.editor.inline_extension.extended_lcqdn": {
237
- "type": "boolean"
238
- },
239
- "platform.editor.allow-inline-comments-for-inline-nodes": {
240
- "type": "boolean"
241
- },
242
- "platform.editor.allow-inline-comments-for-inline-nodes-round-2_ctuxz": {
243
- "type": "boolean"
244
- },
245
- "platform.editor.mbe-update-params-change": {
246
- "type": "boolean"
247
- },
248
- "platform.editor.a11y-focus-order-for-element-browser-categories_ztiw1": {
249
- "type": "boolean"
250
- },
251
- "platform.editor.explicit-html-element-check": {
252
- "type": "boolean"
253
- },
254
- "platform.editor.simplify-inline-cards-in-code-blocks_jw6t1": {
255
- "type": "boolean"
256
- },
257
- "platform.editor.a11y-element-browser": {
258
- "type": "boolean"
259
- },
260
- "platform.editor.transparent-diagonal-decorator": {
261
- "type": "boolean"
262
- }
263
- }
264
- }
2
+ "name": "@atlaskit/editor-common",
3
+ "version": "82.7.0",
4
+ "description": "A package that contains common classes and components for editor and renderer",
5
+ "publishConfig": {
6
+ "registry": "https://registry.npmjs.org/"
7
+ },
8
+ "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
9
+ "author": "Atlassian Pty Ltd",
10
+ "license": "Apache-2.0",
11
+ "main": "dist/cjs/index.js",
12
+ "module": "dist/esm/index.js",
13
+ "module:es2019": "dist/es2019/index.js",
14
+ "types": "dist/types/index.d.ts",
15
+ "typesVersions": {
16
+ ">=4.5 <4.9": {
17
+ "*": [
18
+ "dist/types-ts4.5/*",
19
+ "dist/types-ts4.5/index.d.ts"
20
+ ]
21
+ }
22
+ },
23
+ "sideEffects": false,
24
+ "atlaskit:src": "src/index.ts",
25
+ "atlassian": {
26
+ "team": "Editor",
27
+ "inPublicMirror": true,
28
+ "singleton": true,
29
+ "releaseModel": "continuous",
30
+ "runReact18": true
31
+ },
32
+ "af:exports": {
33
+ "./event-dispatcher": "./src/event-dispatcher/index.ts",
34
+ "./extensions": "./src/extensions.ts",
35
+ "./extensibility": "./src/extensibility/index.ts",
36
+ "./normalize-feature-flags": "./src/normalize-feature-flags.ts",
37
+ "./messages": "./src/messages/index.ts",
38
+ "./provider-factory": "./src/provider-factory.ts",
39
+ "./styles": "./src/styles/index.ts",
40
+ "./validator": "./src/validator.ts",
41
+ "./type-ahead": "./src/type-ahead/index.ts",
42
+ "./ufo": "./src/ufo/index.ts",
43
+ "./insert": "./src/insert/index.ts",
44
+ "./types": "./src/types/index.ts",
45
+ "./ui": "./src/ui/index.tsx",
46
+ "./utils": "./src/utils/index.ts",
47
+ "./card": "./src/card/index.ts",
48
+ "./collab": "./src/collab/index.ts",
49
+ "./emoji": "./src/emoji.ts",
50
+ "./mention": "./src/mention.ts",
51
+ "./portal": "./src/portal/index.ts",
52
+ "./provider-helpers": "./src/provider-helpers/index.ts",
53
+ "./icons": "./src/icons/index.ts",
54
+ "./safe-plugin": "./src/safe-plugin/index.ts",
55
+ "./panel": "./src/panel.ts",
56
+ "./analytics": "./src/analytics/index.ts",
57
+ "./error-boundary": "./src/ui/ErrorBoundary/index.tsx",
58
+ "./portal-provider": "./src/ui/PortalProvider/index.tsx",
59
+ "./react-node-view": "./src/react-node-view/index.tsx",
60
+ "./with-plugin-state": "./src/with-plugin-state/index.tsx",
61
+ "./node-width": "./src/node-width/index.ts",
62
+ "./keymaps": "./src/keymaps/index.tsx",
63
+ "./ui-menu": "./src/ui-menu/index.tsx",
64
+ "./ui-react": "./src/ui-react/index.ts",
65
+ "./ui-color": "./src/ui-color/index.ts",
66
+ "./transforms": "./src/transforms/index.ts",
67
+ "./core-utils": "./src/core-utils/index.ts",
68
+ "./selection": "./src/selection/index.ts",
69
+ "./preset": "./src/preset/index.ts",
70
+ "./hooks": "./src/hooks/index.ts",
71
+ "./media-inline": "./src/media-inline/index.ts",
72
+ "./media-single": "./src/media-single/index.ts",
73
+ "./media": "./src/media/index.ts",
74
+ "./monitoring": "./src/monitoring/index.ts",
75
+ "./paste": "./src/paste/index.ts",
76
+ "./resizer": "./src/resizer/index.ts",
77
+ "./editor-analytics": "./src/editor-analytics/index.ts",
78
+ "./selection-based-node-view": "./src/selection-based-node-view/index.ts",
79
+ "./guideline": "./src/guideline/index.ts",
80
+ "./quick-insert": "./src/quick-insert/index.ts",
81
+ "./link": "./src/link/index.ts",
82
+ "./mark": "./src/mark/index.ts",
83
+ "./commands": "./src/commands/index.ts",
84
+ "./clipboard": "./src/clipboard/index.ts",
85
+ "./lists": "./src/lists/index.ts",
86
+ "./element-browser": "./src/element-browser/index.ts",
87
+ "./floating-toolbar": "./src/floating-toolbar/index.ts",
88
+ "./copy-button": "./src/copy-button/index.ts",
89
+ "./legacy-rank-plugins": "./src/rank.ts",
90
+ "./indentation": "./src/indentation/index.ts",
91
+ "./annotation": "./src/annotation/index.ts",
92
+ "./constants": "./src/link/constants.ts",
93
+ "./doc-utils": "./src/doc-utils/index.ts",
94
+ "./expand": "./src/expand/index.ts",
95
+ "./table": "./src/table/index.ts"
96
+ },
97
+ "dependencies": {
98
+ "@atlaskit/activity-provider": "^2.4.0",
99
+ "@atlaskit/adf-schema": "^36.10.7",
100
+ "@atlaskit/adf-utils": "^19.2.0",
101
+ "@atlaskit/analytics-listeners": "^8.10.0",
102
+ "@atlaskit/analytics-namespaced-context": "^6.10.0",
103
+ "@atlaskit/analytics-next": "^9.3.0",
104
+ "@atlaskit/analytics-next-stable-react-context": "1.0.1",
105
+ "@atlaskit/button": "^17.17.0",
106
+ "@atlaskit/code": "^15.2.0",
107
+ "@atlaskit/codemod-utils": "^4.2.0",
108
+ "@atlaskit/custom-steps": "^0.2.0",
109
+ "@atlaskit/editor-json-transformer": "^8.13.0",
110
+ "@atlaskit/editor-palette": "1.6.0",
111
+ "@atlaskit/editor-prosemirror": "4.0.1",
112
+ "@atlaskit/editor-shared-styles": "^2.12.0",
113
+ "@atlaskit/editor-tables": "^2.7.0",
114
+ "@atlaskit/emoji": "^67.6.0",
115
+ "@atlaskit/icon": "^22.3.0",
116
+ "@atlaskit/icon-object": "^6.4.0",
117
+ "@atlaskit/link-datasource": "^2.3.0",
118
+ "@atlaskit/link-picker": "^1.37.0",
119
+ "@atlaskit/media-card": "^77.12.0",
120
+ "@atlaskit/media-client": "^27.2.0",
121
+ "@atlaskit/media-client-react": "^2.0.0",
122
+ "@atlaskit/media-common": "^11.2.0",
123
+ "@atlaskit/media-file-preview": "^0.5.0",
124
+ "@atlaskit/media-picker": "^66.4.0",
125
+ "@atlaskit/media-ui": "^25.10.0",
126
+ "@atlaskit/media-viewer": "48.6.3",
127
+ "@atlaskit/mention": "^23.2.0",
128
+ "@atlaskit/menu": "^2.4.0",
129
+ "@atlaskit/platform-feature-flags": "^0.2.0",
130
+ "@atlaskit/primitives": "^7.3.0",
131
+ "@atlaskit/profilecard": "^19.14.0",
132
+ "@atlaskit/section-message": "^6.5.0",
133
+ "@atlaskit/smart-card": "^27.6.0",
134
+ "@atlaskit/smart-user-picker": "^6.9.0",
135
+ "@atlaskit/spinner": "^16.1.0",
136
+ "@atlaskit/task-decision": "^17.10.0",
137
+ "@atlaskit/textfield": "^6.3.0",
138
+ "@atlaskit/theme": "^12.9.0",
139
+ "@atlaskit/tokens": "^1.50.0",
140
+ "@atlaskit/tooltip": "^18.4.0",
141
+ "@atlaskit/ufo": "^0.2.0",
142
+ "@atlaskit/width-detector": "^4.2.0",
143
+ "@babel/runtime": "^7.0.0",
144
+ "@emotion/react": "^11.7.1",
145
+ "@sentry/browser": "^6.18.2",
146
+ "@sentry/integrations": "^6.18.2",
147
+ "@sentry/types": "^6.18.2",
148
+ "chromatism": "^2.6.0",
149
+ "classnames": "^2.2.5",
150
+ "clipboard-polyfill": "4.0.1",
151
+ "date-fns": "^2.17.0",
152
+ "focus-trap": "^2.4.5",
153
+ "fuse.js": "^6.6.2",
154
+ "linkify-it": "^3.0.3",
155
+ "lodash": "^4.17.21",
156
+ "markdown-it": "^13.0.2",
157
+ "memoize-one": "^6.0.0",
158
+ "popper.js": "^1.14.1",
159
+ "prop-types": "^15.5.10",
160
+ "raf-schd": "^4.0.3",
161
+ "re-resizable": "6.0.0",
162
+ "react-loadable": "^5.1.0",
163
+ "react-virtualized": "^9.8.0",
164
+ "rusha": "^0.8.13",
165
+ "uuid": "^3.1.0",
166
+ "w3c-keyname": "^2.1.8"
167
+ },
168
+ "peerDependencies": {
169
+ "@atlaskit/media-core": "^34.2.0",
170
+ "react": "^16.8.0",
171
+ "react-dom": "^16.8.0",
172
+ "react-intl-next": "npm:react-intl@^5.18.1"
173
+ },
174
+ "devDependencies": {
175
+ "@af/visual-regression": "*",
176
+ "@atlaskit/media-core": "^34.2.0",
177
+ "@atlaskit/media-test-helpers": "^33.0.0",
178
+ "@atlaskit/util-data-test": "^17.9.0",
179
+ "@atlaskit/visual-regression": "*",
180
+ "@atlassian/feature-flags-test-utils": "*",
181
+ "@testing-library/dom": "^8.17.1",
182
+ "@testing-library/jest-dom": "^6.4.5",
183
+ "@testing-library/react": "^12.1.5",
184
+ "@testing-library/react-hooks": "^8.0.1",
185
+ "@testing-library/user-event": "^14.4.3",
186
+ "@types/linkify-it": "^3.0.2",
187
+ "@types/markdown-it": "^13.0.7",
188
+ "@types/raf-schd": "^4.0.1",
189
+ "@types/react-virtualized": "^9.18.12",
190
+ "enzyme": "^3.10.0",
191
+ "raf-stub": "^2.0.1",
192
+ "react": "^16.8.0",
193
+ "react-test-renderer": "^16.8.0",
194
+ "sinon": "^2.2.0",
195
+ "typescript": "~5.4.2"
196
+ },
197
+ "techstack": {
198
+ "@atlassian/frontend": {
199
+ "circular-dependencies": [
200
+ "file-level"
201
+ ],
202
+ "import-structure": "atlassian-conventions"
203
+ },
204
+ "@repo/internal": {
205
+ "deprecation": "no-deprecated-imports",
206
+ "design-tokens": [
207
+ "color"
208
+ ],
209
+ "styling": [
210
+ "emotion"
211
+ ]
212
+ }
213
+ },
214
+ "platform-feature-flags": {
215
+ "platform.editor.media.extended-resize-experience": {
216
+ "type": "boolean"
217
+ },
218
+ "platform.linking-platform.prevent-suspicious-linkification": {
219
+ "type": "boolean"
220
+ },
221
+ "platform.editor.media.inline-image.base-support": {
222
+ "type": "boolean"
223
+ },
224
+ "platform.linking-platform.datasource-assets_objects": {
225
+ "type": "boolean"
226
+ },
227
+ "platform.editor.ordered-list-auto-join-improvements_mrlv5": {
228
+ "type": "boolean"
229
+ },
230
+ "platform.editor.resizer.prevent-contenteditable": {
231
+ "type": "boolean"
232
+ },
233
+ "platform.editor.a11y-floating-toolbar-markup_vexmo": {
234
+ "type": "boolean"
235
+ },
236
+ "platform.editor.inline_extension.extended_lcqdn": {
237
+ "type": "boolean"
238
+ },
239
+ "platform.editor.allow-inline-comments-for-inline-nodes": {
240
+ "type": "boolean"
241
+ },
242
+ "platform.editor.allow-inline-comments-for-inline-nodes-round-2_ctuxz": {
243
+ "type": "boolean"
244
+ },
245
+ "platform.editor.mbe-update-params-change": {
246
+ "type": "boolean"
247
+ },
248
+ "platform.editor.a11y-focus-order-for-element-browser-categories_ztiw1": {
249
+ "type": "boolean"
250
+ },
251
+ "platform.editor.explicit-html-element-check": {
252
+ "type": "boolean"
253
+ },
254
+ "platform.editor.simplify-inline-cards-in-code-blocks_jw6t1": {
255
+ "type": "boolean"
256
+ },
257
+ "platform.editor.a11y-element-browser": {
258
+ "type": "boolean"
259
+ },
260
+ "platform.editor.transparent-diagonal-decorator": {
261
+ "type": "boolean"
262
+ },
263
+ "platform.editor.dynamic-palette-borders": {
264
+ "type": "boolean"
265
+ },
266
+ "platform.editor.text-alignment-keyboard-shortcuts": {
267
+ "type": "boolean"
268
+ }
269
+ }
270
+ }