@atlaskit/editor-plugin-panel 9.0.5 → 9.0.7
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 +14 -0
- package/dist/cjs/panelPlugin.js +3 -9
- package/dist/es2019/panelPlugin.js +4 -10
- package/dist/esm/panelPlugin.js +3 -9
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-panel
|
|
2
2
|
|
|
3
|
+
## 9.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 9.0.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`5c3f8d87c2290`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5c3f8d87c2290) -
|
|
14
|
+
Cleanup general AIFC bug fix feature gate
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 9.0.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/cjs/panelPlugin.js
CHANGED
|
@@ -52,17 +52,11 @@ var panelPlugin = function panelPlugin(_ref) {
|
|
|
52
52
|
name: 'panel',
|
|
53
53
|
nodes: function nodes() {
|
|
54
54
|
if ((0, _platformFeatureFlags.fg)('platform_editor_adf_with_localid')) {
|
|
55
|
-
if ((0, _platformFeatureFlags.fg)('platform_editor_ai_generic_prep_for_aifc_2')) {
|
|
56
|
-
return [{
|
|
57
|
-
name: 'panel',
|
|
58
|
-
node: _objectSpread(_objectSpread({}, (0, _adfSchema.extendedPanelWithLocalId)(!!options.allowCustomPanel)), {}, {
|
|
59
|
-
definingAsContext: true
|
|
60
|
-
})
|
|
61
|
-
}];
|
|
62
|
-
}
|
|
63
55
|
return [{
|
|
64
56
|
name: 'panel',
|
|
65
|
-
node: (0, _adfSchema.extendedPanelWithLocalId)(!!options.allowCustomPanel)
|
|
57
|
+
node: _objectSpread(_objectSpread({}, (0, _adfSchema.extendedPanelWithLocalId)(!!options.allowCustomPanel)), {}, {
|
|
58
|
+
definingAsContext: true
|
|
59
|
+
})
|
|
66
60
|
}];
|
|
67
61
|
}
|
|
68
62
|
return [{
|
|
@@ -42,18 +42,12 @@ const panelPlugin = ({
|
|
|
42
42
|
name: 'panel',
|
|
43
43
|
nodes() {
|
|
44
44
|
if (fg('platform_editor_adf_with_localid')) {
|
|
45
|
-
if (fg('platform_editor_ai_generic_prep_for_aifc_2')) {
|
|
46
|
-
return [{
|
|
47
|
-
name: 'panel',
|
|
48
|
-
node: {
|
|
49
|
-
...extendedPanelWithLocalId(!!options.allowCustomPanel),
|
|
50
|
-
definingAsContext: true
|
|
51
|
-
}
|
|
52
|
-
}];
|
|
53
|
-
}
|
|
54
45
|
return [{
|
|
55
46
|
name: 'panel',
|
|
56
|
-
node:
|
|
47
|
+
node: {
|
|
48
|
+
...extendedPanelWithLocalId(!!options.allowCustomPanel),
|
|
49
|
+
definingAsContext: true
|
|
50
|
+
}
|
|
57
51
|
}];
|
|
58
52
|
}
|
|
59
53
|
return [{
|
package/dist/esm/panelPlugin.js
CHANGED
|
@@ -45,17 +45,11 @@ var panelPlugin = function panelPlugin(_ref) {
|
|
|
45
45
|
name: 'panel',
|
|
46
46
|
nodes: function nodes() {
|
|
47
47
|
if (fg('platform_editor_adf_with_localid')) {
|
|
48
|
-
if (fg('platform_editor_ai_generic_prep_for_aifc_2')) {
|
|
49
|
-
return [{
|
|
50
|
-
name: 'panel',
|
|
51
|
-
node: _objectSpread(_objectSpread({}, extendedPanelWithLocalId(!!options.allowCustomPanel)), {}, {
|
|
52
|
-
definingAsContext: true
|
|
53
|
-
})
|
|
54
|
-
}];
|
|
55
|
-
}
|
|
56
48
|
return [{
|
|
57
49
|
name: 'panel',
|
|
58
|
-
node: extendedPanelWithLocalId(!!options.allowCustomPanel)
|
|
50
|
+
node: _objectSpread(_objectSpread({}, extendedPanelWithLocalId(!!options.allowCustomPanel)), {}, {
|
|
51
|
+
definingAsContext: true
|
|
52
|
+
})
|
|
59
53
|
}];
|
|
60
54
|
}
|
|
61
55
|
return [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-panel",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.7",
|
|
4
4
|
"description": "Panel plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"@atlaskit/icon": "^30.0.0",
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
44
44
|
"@atlaskit/theme": "^21.0.0",
|
|
45
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
45
|
+
"@atlaskit/tmp-editor-statsig": "^17.0.0",
|
|
46
46
|
"@atlaskit/tokens": "^10.1.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0",
|
|
48
48
|
"uuid": "^3.1.0"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@atlaskit/editor-common": "^111.
|
|
51
|
+
"@atlaskit/editor-common": "^111.9.0",
|
|
52
52
|
"react": "^18.2.0",
|
|
53
53
|
"react-dom": "^18.2.0",
|
|
54
54
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
@@ -93,9 +93,6 @@
|
|
|
93
93
|
"platform_editor_nested_dnd_styles_changes": {
|
|
94
94
|
"type": "boolean"
|
|
95
95
|
},
|
|
96
|
-
"platform_editor_ai_generic_prep_for_aifc_2": {
|
|
97
|
-
"type": "boolean"
|
|
98
|
-
},
|
|
99
96
|
"platform_editor_adf_with_localid": {
|
|
100
97
|
"type": "boolean"
|
|
101
98
|
}
|