@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.
- package/CHANGELOG.md +35 -0
- package/dist/cjs/keymaps/keymap.js +46 -13
- package/dist/cjs/link/ConfigureLinkOverlay/OverlayButton.js +87 -0
- package/dist/cjs/link/index.js +7 -0
- package/dist/cjs/link/types.js +1 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/cjs/ui-color/ColorPalette/Color/index.js +2 -2
- package/dist/cjs/ui-color/ColorPalette/Palettes/highlightColorPalette.js +9 -3
- package/dist/cjs/ui-color/ColorPalette/Palettes/textColorPalette.js +10 -1
- package/dist/cjs/ui-color/index.js +12 -0
- package/dist/es2019/keymaps/keymap.js +46 -13
- package/dist/es2019/link/ConfigureLinkOverlay/OverlayButton.js +80 -0
- package/dist/es2019/link/index.js +2 -1
- package/dist/es2019/link/types.js +1 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/es2019/ui-color/ColorPalette/Color/index.js +2 -2
- package/dist/es2019/ui-color/ColorPalette/Palettes/highlightColorPalette.js +5 -1
- package/dist/es2019/ui-color/ColorPalette/Palettes/textColorPalette.js +6 -1
- package/dist/es2019/ui-color/index.js +2 -2
- package/dist/esm/keymaps/keymap.js +46 -13
- package/dist/esm/link/ConfigureLinkOverlay/OverlayButton.js +79 -0
- package/dist/esm/link/index.js +2 -1
- package/dist/esm/link/types.js +1 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/esm/ui-color/ColorPalette/Color/index.js +2 -2
- package/dist/esm/ui-color/ColorPalette/Palettes/highlightColorPalette.js +8 -0
- package/dist/esm/ui-color/ColorPalette/Palettes/textColorPalette.js +9 -0
- package/dist/esm/ui-color/index.js +2 -2
- package/dist/types/link/ConfigureLinkOverlay/OverlayButton.d.ts +8 -0
- package/dist/types/link/index.d.ts +2 -0
- package/dist/types/link/types.d.ts +5 -1
- package/dist/types/types/annotation/index.d.ts +2 -0
- package/dist/types/types/feature-flags.d.ts +8 -0
- package/dist/types/ui-color/ColorPalette/Palettes/highlightColorPalette.d.ts +1 -0
- package/dist/types/ui-color/ColorPalette/Palettes/textColorPalette.d.ts +2 -0
- package/dist/types/ui-color/index.d.ts +2 -2
- package/dist/types-ts4.5/link/ConfigureLinkOverlay/OverlayButton.d.ts +8 -0
- package/dist/types-ts4.5/link/index.d.ts +2 -0
- package/dist/types-ts4.5/link/types.d.ts +5 -1
- package/dist/types-ts4.5/types/annotation/index.d.ts +2 -0
- package/dist/types-ts4.5/types/feature-flags.d.ts +8 -0
- package/dist/types-ts4.5/ui-color/ColorPalette/Palettes/highlightColorPalette.d.ts +1 -0
- package/dist/types-ts4.5/ui-color/ColorPalette/Palettes/textColorPalette.d.ts +2 -0
- package/dist/types-ts4.5/ui-color/index.d.ts +2 -2
- package/package.json +269 -263
package/package.json
CHANGED
|
@@ -1,264 +1,270 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
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
|
+
}
|