@atlaskit/editor-plugin-extension 9.0.1 → 9.0.3
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 -4
- package/dist/cjs/ui/ConfigPanel/ConfigPanel.js +1 -1
- package/dist/cjs/ui/ConfigPanel/NestedForms/RemovableField.js +1 -1
- package/dist/es2019/ui/ConfigPanel/ConfigPanel.js +1 -1
- package/dist/es2019/ui/ConfigPanel/NestedForms/RemovableField.js +1 -1
- package/dist/esm/ui/ConfigPanel/ConfigPanel.js +1 -1
- package/dist/esm/ui/ConfigPanel/NestedForms/RemovableField.js +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-extension
|
|
2
2
|
|
|
3
|
+
## 9.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 9.0.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 9.0.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -277,7 +289,6 @@
|
|
|
277
289
|
shared context or singletons.
|
|
278
290
|
|
|
279
291
|
**HOW TO ADJUST:**
|
|
280
|
-
|
|
281
292
|
- Consumers must now explicitly install `@atlaskit/editor-common` in their own project if they use
|
|
282
293
|
any of these editor plugins.
|
|
283
294
|
- Ensure the version you install matches the version required by the plugins.
|
|
@@ -1361,12 +1372,10 @@
|
|
|
1361
1372
|
[ux] [ED-25085] Migrate typography \
|
|
1362
1373
|
|
|
1363
1374
|
editor-plugin-media:
|
|
1364
|
-
|
|
1365
1375
|
- replace caption placeholder span with button
|
|
1366
1376
|
- replace x between width and height pixel entry with symbol × \
|
|
1367
1377
|
|
|
1368
1378
|
tmp-editor-statsig:
|
|
1369
|
-
|
|
1370
1379
|
- Add experiment `platform_editor_typography_migration_ugc`
|
|
1371
1380
|
|
|
1372
1381
|
- Updated dependencies
|
|
@@ -2188,7 +2197,6 @@
|
|
|
2188
2197
|
- [#43646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43646)
|
|
2189
2198
|
[`d43f8e9402f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d43f8e9402f) - Make
|
|
2190
2199
|
feature flags plugin optional in all plugins including:
|
|
2191
|
-
|
|
2192
2200
|
- analytics
|
|
2193
2201
|
- base
|
|
2194
2202
|
- card
|
|
@@ -458,7 +458,7 @@ var ConfigPanel = /*#__PURE__*/function (_React$Component) {
|
|
|
458
458
|
_this2.onFieldChange = onFieldChange;
|
|
459
459
|
return (
|
|
460
460
|
/*#__PURE__*/
|
|
461
|
-
// eslint-disable-next-line
|
|
461
|
+
// eslint-disable-next-line @atlassian/a11y/no-noninteractive-element-interactions
|
|
462
462
|
_react.default.createElement("form", (0, _extends2.default)({}, formProps, {
|
|
463
463
|
noValidate: true,
|
|
464
464
|
onKeyDown: handleKeyDown,
|
|
@@ -54,7 +54,7 @@ var RemovableField = function RemovableField(_ref) {
|
|
|
54
54
|
,
|
|
55
55
|
className: className
|
|
56
56
|
}, children, canRemoveField &&
|
|
57
|
-
// eslint-disable-next-line
|
|
57
|
+
// eslint-disable-next-line @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/interactive-element-not-keyboard-focusable, @atlassian/a11y/no-static-element-interactions
|
|
58
58
|
(0, _react2.jsx)("div", {
|
|
59
59
|
css: removeButtonWrapperStyles,
|
|
60
60
|
"data-testid": "remove-field-".concat(name),
|
|
@@ -397,7 +397,7 @@ class ConfigPanel extends React.Component {
|
|
|
397
397
|
this.onFieldChange = onFieldChange;
|
|
398
398
|
return (
|
|
399
399
|
/*#__PURE__*/
|
|
400
|
-
// eslint-disable-next-line
|
|
400
|
+
// eslint-disable-next-line @atlassian/a11y/no-noninteractive-element-interactions
|
|
401
401
|
React.createElement("form", _extends({}, formProps, {
|
|
402
402
|
noValidate: true,
|
|
403
403
|
onKeyDown: handleKeyDown,
|
|
@@ -45,7 +45,7 @@ const RemovableField = ({
|
|
|
45
45
|
,
|
|
46
46
|
className: className
|
|
47
47
|
}, children, canRemoveField &&
|
|
48
|
-
// eslint-disable-next-line
|
|
48
|
+
// eslint-disable-next-line @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/interactive-element-not-keyboard-focusable, @atlassian/a11y/no-static-element-interactions
|
|
49
49
|
jsx("div", {
|
|
50
50
|
css: removeButtonWrapperStyles,
|
|
51
51
|
"data-testid": `remove-field-${name}`,
|
|
@@ -449,7 +449,7 @@ var ConfigPanel = /*#__PURE__*/function (_React$Component) {
|
|
|
449
449
|
_this2.onFieldChange = onFieldChange;
|
|
450
450
|
return (
|
|
451
451
|
/*#__PURE__*/
|
|
452
|
-
// eslint-disable-next-line
|
|
452
|
+
// eslint-disable-next-line @atlassian/a11y/no-noninteractive-element-interactions
|
|
453
453
|
React.createElement("form", _extends({}, formProps, {
|
|
454
454
|
noValidate: true,
|
|
455
455
|
onKeyDown: handleKeyDown,
|
|
@@ -46,7 +46,7 @@ var RemovableField = function RemovableField(_ref) {
|
|
|
46
46
|
,
|
|
47
47
|
className: className
|
|
48
48
|
}, children, canRemoveField &&
|
|
49
|
-
// eslint-disable-next-line
|
|
49
|
+
// eslint-disable-next-line @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/interactive-element-not-keyboard-focusable, @atlassian/a11y/no-static-element-interactions
|
|
50
50
|
jsx("div", {
|
|
51
51
|
css: removeButtonWrapperStyles,
|
|
52
52
|
"data-testid": "remove-field-".concat(name),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-extension",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.3",
|
|
4
4
|
"description": "editor-plugin-extension plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"@atlaskit/adf-schema": "^51.2.0",
|
|
25
25
|
"@atlaskit/adf-utils": "^19.24.0",
|
|
26
26
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
27
|
-
"@atlaskit/avatar": "^25.
|
|
28
|
-
"@atlaskit/button": "^23.
|
|
27
|
+
"@atlaskit/avatar": "^25.4.0",
|
|
28
|
+
"@atlaskit/button": "^23.5.0",
|
|
29
29
|
"@atlaskit/checkbox": "^17.1.0",
|
|
30
|
-
"@atlaskit/datetime-picker": "^17.
|
|
30
|
+
"@atlaskit/datetime-picker": "^17.1.0",
|
|
31
31
|
"@atlaskit/editor-json-transformer": "^8.30.0",
|
|
32
32
|
"@atlaskit/editor-plugin-analytics": "^6.1.0",
|
|
33
33
|
"@atlaskit/editor-plugin-connectivity": "^6.0.0",
|
|
@@ -37,15 +37,15 @@
|
|
|
37
37
|
"@atlaskit/editor-plugin-feature-flags": "^5.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-width": "^7.0.0",
|
|
39
39
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
40
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
40
|
+
"@atlaskit/editor-shared-styles": "^3.7.0",
|
|
41
41
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
42
42
|
"@atlaskit/empty-state": "^10.1.0",
|
|
43
43
|
"@atlaskit/form": "^14.2.0",
|
|
44
44
|
"@atlaskit/heading": "^5.2.0",
|
|
45
|
-
"@atlaskit/icon": "^28.
|
|
45
|
+
"@atlaskit/icon": "^28.5.0",
|
|
46
46
|
"@atlaskit/link": "^3.2.0",
|
|
47
47
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
48
|
-
"@atlaskit/primitives": "^
|
|
48
|
+
"@atlaskit/primitives": "^15.0.0",
|
|
49
49
|
"@atlaskit/radio": "^8.3.0",
|
|
50
50
|
"@atlaskit/section-message": "^8.7.0",
|
|
51
51
|
"@atlaskit/select": "^21.3.0",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"@atlaskit/textarea": "^8.0.0",
|
|
56
56
|
"@atlaskit/textfield": "^8.0.0",
|
|
57
57
|
"@atlaskit/theme": "^21.0.0",
|
|
58
|
-
"@atlaskit/tmp-editor-statsig": "^13.
|
|
58
|
+
"@atlaskit/tmp-editor-statsig": "^13.13.0",
|
|
59
59
|
"@atlaskit/toggle": "^15.1.0",
|
|
60
|
-
"@atlaskit/tokens": "^
|
|
60
|
+
"@atlaskit/tokens": "^7.0.0",
|
|
61
61
|
"@atlaskit/tooltip": "^20.5.0",
|
|
62
62
|
"@babel/runtime": "^7.0.0",
|
|
63
63
|
"@emotion/react": "^11.7.1",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"uuid": "^3.1.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
|
-
"@atlaskit/editor-common": "^110.
|
|
72
|
+
"@atlaskit/editor-common": "^110.13.0",
|
|
73
73
|
"react": "^18.2.0",
|
|
74
74
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
75
75
|
},
|