@atlaskit/editor-plugin-extension 5.3.2 → 5.3.4
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 +15 -0
- package/dist/cjs/ui/ConfigPanel/ErrorMessage/index.js +1 -1
- package/dist/cjs/ui/ConfigPanel/Fields/SelectItem.js +1 -1
- package/dist/es2019/ui/ConfigPanel/ErrorMessage/index.js +1 -1
- package/dist/es2019/ui/ConfigPanel/Fields/SelectItem.js +1 -1
- package/dist/esm/ui/ConfigPanel/ErrorMessage/index.js +1 -1
- package/dist/esm/ui/ConfigPanel/Fields/SelectItem.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-extension
|
|
2
2
|
|
|
3
|
+
## 5.3.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#149866](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/149866)
|
|
8
|
+
[`954765b065c36`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/954765b065c36) -
|
|
9
|
+
ENGHEALTH-8720 use design tokens instead of hard coded values
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 5.3.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 5.3.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -19,7 +19,7 @@ var ConfigPanelErrorMessage = function ConfigPanelErrorMessage(_ref) {
|
|
|
19
19
|
renderImage: function renderImage() {
|
|
20
20
|
return /*#__PURE__*/_react.default.createElement(_ErrorImage.default, null);
|
|
21
21
|
},
|
|
22
|
-
|
|
22
|
+
width: "narrow",
|
|
23
23
|
imageHeight: 80,
|
|
24
24
|
testId: "config-panel-error-message"
|
|
25
25
|
});
|
|
@@ -54,7 +54,7 @@ var formatOptionLabel = exports.formatOptionLabel = function formatOptionLabel(_
|
|
|
54
54
|
appearance: "square"
|
|
55
55
|
}) : icon), (0, _react.jsx)("div", {
|
|
56
56
|
style: {
|
|
57
|
-
paddingLeft: icon ? "var(--ds-space-100, 8px)" : 0
|
|
57
|
+
paddingLeft: icon ? "var(--ds-space-100, 8px)" : "var(--ds-space-0, 0)"
|
|
58
58
|
},
|
|
59
59
|
"data-testid": "extension-option-label"
|
|
60
60
|
}, label, description && context !== 'value' && (0, _react.jsx)("small", null, description)));
|
|
@@ -11,7 +11,7 @@ const ConfigPanelErrorMessage = ({
|
|
|
11
11
|
header: intl.formatMessage(messages.configFailedToLoad),
|
|
12
12
|
description: errorMessage,
|
|
13
13
|
renderImage: () => /*#__PURE__*/React.createElement(ErrorImage, null),
|
|
14
|
-
|
|
14
|
+
width: "narrow",
|
|
15
15
|
imageHeight: 80,
|
|
16
16
|
testId: "config-panel-error-message"
|
|
17
17
|
});
|
|
@@ -48,7 +48,7 @@ export const formatOptionLabel = ({
|
|
|
48
48
|
appearance: "square"
|
|
49
49
|
}) : icon), jsx("div", {
|
|
50
50
|
style: {
|
|
51
|
-
paddingLeft: icon ? "var(--ds-space-100, 8px)" : 0
|
|
51
|
+
paddingLeft: icon ? "var(--ds-space-100, 8px)" : "var(--ds-space-0, 0)"
|
|
52
52
|
},
|
|
53
53
|
"data-testid": "extension-option-label"
|
|
54
54
|
}, label, description && context !== 'value' && jsx("small", null, description)));
|
|
@@ -12,7 +12,7 @@ var ConfigPanelErrorMessage = function ConfigPanelErrorMessage(_ref) {
|
|
|
12
12
|
renderImage: function renderImage() {
|
|
13
13
|
return /*#__PURE__*/React.createElement(ErrorImage, null);
|
|
14
14
|
},
|
|
15
|
-
|
|
15
|
+
width: "narrow",
|
|
16
16
|
imageHeight: 80,
|
|
17
17
|
testId: "config-panel-error-message"
|
|
18
18
|
});
|
|
@@ -46,7 +46,7 @@ export var formatOptionLabel = function formatOptionLabel(_ref, _ref2) {
|
|
|
46
46
|
appearance: "square"
|
|
47
47
|
}) : icon), jsx("div", {
|
|
48
48
|
style: {
|
|
49
|
-
paddingLeft: icon ? "var(--ds-space-100, 8px)" : 0
|
|
49
|
+
paddingLeft: icon ? "var(--ds-space-100, 8px)" : "var(--ds-space-0, 0)"
|
|
50
50
|
},
|
|
51
51
|
"data-testid": "extension-option-label"
|
|
52
52
|
}, label, description && context !== 'value' && jsx("small", null, description)));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-extension",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.4",
|
|
4
4
|
"description": "editor-plugin-extension plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@atlaskit/button": "^23.0.0",
|
|
33
33
|
"@atlaskit/checkbox": "^17.1.0",
|
|
34
34
|
"@atlaskit/datetime-picker": "^17.0.0",
|
|
35
|
-
"@atlaskit/editor-common": "^103.
|
|
35
|
+
"@atlaskit/editor-common": "^103.22.0",
|
|
36
36
|
"@atlaskit/editor-json-transformer": "^8.24.0",
|
|
37
37
|
"@atlaskit/editor-plugin-analytics": "^2.2.0",
|
|
38
38
|
"@atlaskit/editor-plugin-connectivity": "^2.0.0",
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
45
45
|
"@atlaskit/editor-shared-styles": "^3.4.0",
|
|
46
46
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
47
|
-
"@atlaskit/empty-state": "^
|
|
47
|
+
"@atlaskit/empty-state": "^10.0.0",
|
|
48
48
|
"@atlaskit/form": "^12.0.0",
|
|
49
49
|
"@atlaskit/heading": "^5.2.0",
|
|
50
50
|
"@atlaskit/icon": "^25.6.0",
|
|
51
51
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
52
|
-
"@atlaskit/primitives": "^14.
|
|
52
|
+
"@atlaskit/primitives": "^14.7.0",
|
|
53
53
|
"@atlaskit/radio": "^8.1.0",
|
|
54
54
|
"@atlaskit/section-message": "^8.2.0",
|
|
55
55
|
"@atlaskit/select": "^20.4.0",
|