@atlaskit/editor-core 221.5.9 → 221.5.11
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 +17 -0
- package/dist/cjs/utils/extensions.js +1 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/utils/extensions.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/utils/extensions.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 221.5.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`de423ca734ec8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/de423ca734ec8) -
|
|
8
|
+
Clean up fully-launched `rovo_chat_enable_skills_ui_m1` feature gate
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 221.5.10
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`65633dab110fd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/65633dab110fd) -
|
|
16
|
+
fix: resolve flaky tests in modal-element and inline-nodes-arrowkeys-placeholder specs by waiting
|
|
17
|
+
for editor stability and list items before assertions
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 221.5.9
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -122,7 +122,7 @@ function _extensionProviderToQuickInsertProvider() {
|
|
|
122
122
|
},
|
|
123
123
|
keywords: item.keywords,
|
|
124
124
|
featured: item.featured
|
|
125
|
-
}, (
|
|
125
|
+
}, (0, _platformFeatureFlags.fg)('cc_fd_wb_create_priority_in_slash_menu_enabled') && {
|
|
126
126
|
priority: item.priority
|
|
127
127
|
}), {}, {
|
|
128
128
|
categories: item.categories
|
|
@@ -6,4 +6,4 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.version = exports.name = void 0;
|
|
7
7
|
var name = exports.name = "@atlaskit/editor-core";
|
|
8
8
|
// eslint-disable-next-line @atlaskit/volt-strict-mode/no-multiple-exports
|
|
9
|
-
var version = exports.version = "221.5.
|
|
9
|
+
var version = exports.version = "221.5.10";
|
|
@@ -85,7 +85,7 @@ export async function extensionProviderToQuickInsertProvider(extensionProvider,
|
|
|
85
85
|
}),
|
|
86
86
|
keywords: item.keywords,
|
|
87
87
|
featured: item.featured,
|
|
88
|
-
...(
|
|
88
|
+
...(fg('cc_fd_wb_create_priority_in_slash_menu_enabled') && {
|
|
89
89
|
priority: item.priority
|
|
90
90
|
}),
|
|
91
91
|
categories: item.categories,
|
|
@@ -116,7 +116,7 @@ function _extensionProviderToQuickInsertProvider() {
|
|
|
116
116
|
},
|
|
117
117
|
keywords: item.keywords,
|
|
118
118
|
featured: item.featured
|
|
119
|
-
},
|
|
119
|
+
}, fg('cc_fd_wb_create_priority_in_slash_menu_enabled') && {
|
|
120
120
|
priority: item.priority
|
|
121
121
|
}), {}, {
|
|
122
122
|
categories: item.categories
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "221.5.
|
|
3
|
+
"version": "221.5.11",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
68
68
|
"@atlaskit/react-ufo": "^7.3.0",
|
|
69
69
|
"@atlaskit/task-decision": "^21.4.0",
|
|
70
|
-
"@atlaskit/tmp-editor-statsig": "^120.
|
|
70
|
+
"@atlaskit/tmp-editor-statsig": "^120.1.0",
|
|
71
71
|
"@atlaskit/tokens": "^15.3.0",
|
|
72
72
|
"@atlaskit/tooltip": "^23.1.0",
|
|
73
73
|
"@atlaskit/width-detector": "^6.1.0",
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"@atlassian/adf-schema-json": "^1.33.0",
|
|
125
125
|
"@atlassian/editor-rovo-bridge": "^10.2.0",
|
|
126
126
|
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
127
|
-
"@atlassian/search-client": "^1.
|
|
127
|
+
"@atlassian/search-client": "^1.24.0",
|
|
128
128
|
"@atlassian/search-provider": "^13.0.0",
|
|
129
129
|
"@atlassian/structured-docs-types": "workspace:^",
|
|
130
130
|
"@atlassian/user-profile-card": "^1.17.0",
|
|
@@ -309,9 +309,6 @@
|
|
|
309
309
|
"cc_fd_wb_create_priority_in_slash_menu_enabled": {
|
|
310
310
|
"type": "boolean"
|
|
311
311
|
},
|
|
312
|
-
"rovo_chat_enable_skills_ui_m1": {
|
|
313
|
-
"type": "boolean"
|
|
314
|
-
},
|
|
315
312
|
"platform_editor_table_fixed_column_width_prop": {
|
|
316
313
|
"type": "boolean"
|
|
317
314
|
},
|