@atlaskit/editor-core 215.14.1 → 215.14.2
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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 215.14.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`a7126919f479c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a7126919f479c) -
|
|
8
|
+
enable priority in editor typeahead for rovo chat skills enabled apps
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 215.14.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -108,7 +108,7 @@ function _extensionProviderToQuickInsertProvider() {
|
|
|
108
108
|
},
|
|
109
109
|
keywords: item.keywords,
|
|
110
110
|
featured: item.featured
|
|
111
|
-
}, (0, _platformFeatureFlags.fg)('cc_fd_wb_create_priority_in_slash_menu_enabled') && {
|
|
111
|
+
}, ((0, _platformFeatureFlags.fg)('cc_fd_wb_create_priority_in_slash_menu_enabled') || (0, _platformFeatureFlags.fg)('rovo_chat_enable_skills_ui_m1')) && {
|
|
112
112
|
priority: item.priority
|
|
113
113
|
}), {}, {
|
|
114
114
|
categories: item.categories,
|
|
@@ -72,7 +72,7 @@ export async function extensionProviderToQuickInsertProvider(extensionProvider,
|
|
|
72
72
|
}),
|
|
73
73
|
keywords: item.keywords,
|
|
74
74
|
featured: item.featured,
|
|
75
|
-
...(fg('cc_fd_wb_create_priority_in_slash_menu_enabled') && {
|
|
75
|
+
...((fg('cc_fd_wb_create_priority_in_slash_menu_enabled') || fg('rovo_chat_enable_skills_ui_m1')) && {
|
|
76
76
|
priority: item.priority
|
|
77
77
|
}),
|
|
78
78
|
categories: item.categories,
|
|
@@ -102,7 +102,7 @@ function _extensionProviderToQuickInsertProvider() {
|
|
|
102
102
|
},
|
|
103
103
|
keywords: item.keywords,
|
|
104
104
|
featured: item.featured
|
|
105
|
-
}, fg('cc_fd_wb_create_priority_in_slash_menu_enabled') && {
|
|
105
|
+
}, (fg('cc_fd_wb_create_priority_in_slash_menu_enabled') || fg('rovo_chat_enable_skills_ui_m1')) && {
|
|
106
106
|
priority: item.priority
|
|
107
107
|
}), {}, {
|
|
108
108
|
categories: item.categories,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "215.14.
|
|
3
|
+
"version": "215.14.2",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -389,6 +389,9 @@
|
|
|
389
389
|
},
|
|
390
390
|
"platform_editor_toolbar_aifc_responsive_improve": {
|
|
391
391
|
"type": "boolean"
|
|
392
|
+
},
|
|
393
|
+
"rovo_chat_enable_skills_ui_m1": {
|
|
394
|
+
"type": "boolean"
|
|
392
395
|
}
|
|
393
396
|
},
|
|
394
397
|
"stricter": {
|