@atlaskit/editor-core 192.3.2 → 192.3.5
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,11 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 192.3.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#76194](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/76194) [`4c6528951d4a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4c6528951d4a) - Removing platform.editor.transform-slice-for-nested-expand from platform feature flag section
|
|
8
|
+
|
|
3
9
|
## 192.3.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "192.3.
|
|
2
|
+
export const version = "192.3.5";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "192.3.
|
|
2
|
+
export var version = "192.3.5";
|
|
@@ -129,6 +129,16 @@ interface EditorBaseProps {
|
|
|
129
129
|
featureFlags?: {
|
|
130
130
|
[featureFlag: string]: string | boolean;
|
|
131
131
|
};
|
|
132
|
+
/**
|
|
133
|
+
* There is expected to be temporary divergence between Live Page editor expand behaviour and the standard expand behaviour.
|
|
134
|
+
*
|
|
135
|
+
* This is expected to be removed in Q4 as Editor and Live Page teams align on a singular behaviour.
|
|
136
|
+
*
|
|
137
|
+
* It is only supported for use by Confluence.
|
|
138
|
+
*
|
|
139
|
+
* @default false
|
|
140
|
+
*/
|
|
141
|
+
__livePage?: boolean;
|
|
132
142
|
}
|
|
133
143
|
export interface EditorSharedPropsWithPlugins {
|
|
134
144
|
onSave?: (editorView: EditorView) => void;
|
|
@@ -158,16 +168,6 @@ export interface EditorProps extends EditorBaseProps, EditorPluginFeatureProps,
|
|
|
158
168
|
*/
|
|
159
169
|
__plugins: EditorPlugin[];
|
|
160
170
|
};
|
|
161
|
-
/**
|
|
162
|
-
* There is expected to be temporary divergence between Live Page editor expand behaviour and the standard expand behaviour.
|
|
163
|
-
*
|
|
164
|
-
* This is expected to be removed in Q4 as Editor and Live Page teams align on a singular behaviour.
|
|
165
|
-
*
|
|
166
|
-
* It is only supported for use by Confluence.
|
|
167
|
-
*
|
|
168
|
-
* @default false
|
|
169
|
-
*/
|
|
170
|
-
__livePage?: boolean;
|
|
171
171
|
}
|
|
172
172
|
export interface EditorNextProps extends EditorBaseProps, EditorSharedPropsWithPlugins, EditorProviderProps {
|
|
173
173
|
preset: EditorPresetBuilder<string[], AllEditorPresetPluginTypes[]>;
|
|
@@ -129,6 +129,16 @@ interface EditorBaseProps {
|
|
|
129
129
|
featureFlags?: {
|
|
130
130
|
[featureFlag: string]: string | boolean;
|
|
131
131
|
};
|
|
132
|
+
/**
|
|
133
|
+
* There is expected to be temporary divergence between Live Page editor expand behaviour and the standard expand behaviour.
|
|
134
|
+
*
|
|
135
|
+
* This is expected to be removed in Q4 as Editor and Live Page teams align on a singular behaviour.
|
|
136
|
+
*
|
|
137
|
+
* It is only supported for use by Confluence.
|
|
138
|
+
*
|
|
139
|
+
* @default false
|
|
140
|
+
*/
|
|
141
|
+
__livePage?: boolean;
|
|
132
142
|
}
|
|
133
143
|
export interface EditorSharedPropsWithPlugins {
|
|
134
144
|
onSave?: (editorView: EditorView) => void;
|
|
@@ -158,16 +168,6 @@ export interface EditorProps extends EditorBaseProps, EditorPluginFeatureProps,
|
|
|
158
168
|
*/
|
|
159
169
|
__plugins: EditorPlugin[];
|
|
160
170
|
};
|
|
161
|
-
/**
|
|
162
|
-
* There is expected to be temporary divergence between Live Page editor expand behaviour and the standard expand behaviour.
|
|
163
|
-
*
|
|
164
|
-
* This is expected to be removed in Q4 as Editor and Live Page teams align on a singular behaviour.
|
|
165
|
-
*
|
|
166
|
-
* It is only supported for use by Confluence.
|
|
167
|
-
*
|
|
168
|
-
* @default false
|
|
169
|
-
*/
|
|
170
|
-
__livePage?: boolean;
|
|
171
171
|
}
|
|
172
172
|
export interface EditorNextProps extends EditorBaseProps, EditorSharedPropsWithPlugins, EditorProviderProps {
|
|
173
173
|
preset: EditorPresetBuilder<string[], AllEditorPresetPluginTypes[]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "192.3.
|
|
3
|
+
"version": "192.3.5",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@atlaskit/analytics-next": "^9.2.0",
|
|
47
47
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
48
48
|
"@atlaskit/button": "^17.4.0",
|
|
49
|
-
"@atlaskit/editor-common": "^78.
|
|
49
|
+
"@atlaskit/editor-common": "^78.5.0",
|
|
50
50
|
"@atlaskit/editor-json-transformer": "^8.10.0",
|
|
51
51
|
"@atlaskit/editor-plugins": "^1.4.0",
|
|
52
52
|
"@atlaskit/editor-prosemirror": "3.0.0",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"@atlaskit/primitives": "^2.1.0",
|
|
108
108
|
"@atlaskit/renderer": "^109.5.0",
|
|
109
109
|
"@atlaskit/select": "^17.1.0",
|
|
110
|
-
"@atlaskit/smart-card": "^26.
|
|
110
|
+
"@atlaskit/smart-card": "^26.48.0",
|
|
111
111
|
"@atlaskit/synchrony-test-helpers": "^2.3.0",
|
|
112
112
|
"@atlaskit/util-data-test": "^17.9.0",
|
|
113
113
|
"@atlaskit/visual-regression": "*",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
116
116
|
"@atlassian/feature-flags-test-utils": "^0.2.0",
|
|
117
117
|
"@atlassian/link-picker-plugins": "^24.0.0",
|
|
118
|
-
"@atlassian/search-provider": "2.4.
|
|
118
|
+
"@atlassian/search-provider": "2.4.24",
|
|
119
119
|
"@atlassian/ufo": "^0.2.0",
|
|
120
120
|
"@emotion/jest": "^11.8.0",
|
|
121
121
|
"@storybook/addon-knobs": "^5.3.18",
|
|
@@ -197,12 +197,6 @@
|
|
|
197
197
|
"type": "boolean",
|
|
198
198
|
"referenceOnly": "true"
|
|
199
199
|
},
|
|
200
|
-
"platform.linking-platform.enable-datasource-appearance-toolbar": {
|
|
201
|
-
"type": "boolean"
|
|
202
|
-
},
|
|
203
|
-
"platform.linking-platform.datasource-assets_objects": {
|
|
204
|
-
"type": "boolean"
|
|
205
|
-
},
|
|
206
200
|
"platform.media-experience.cardv2_7zann": {
|
|
207
201
|
"type": "boolean",
|
|
208
202
|
"referenceOnly": "true"
|
|
@@ -229,10 +223,8 @@
|
|
|
229
223
|
"type": "boolean"
|
|
230
224
|
},
|
|
231
225
|
"platform.editor.multi-bodied-extension_0rygg": {
|
|
232
|
-
"type": "boolean"
|
|
233
|
-
|
|
234
|
-
"platform.editor.allow-extended-nested-expand": {
|
|
235
|
-
"type": "boolean"
|
|
226
|
+
"type": "boolean",
|
|
227
|
+
"referenceOnly": "true"
|
|
236
228
|
},
|
|
237
229
|
"platform.editor.allow-list-in-blockquote": {
|
|
238
230
|
"type": "boolean"
|
|
@@ -247,4 +239,4 @@
|
|
|
247
239
|
"checkDevDependencies": true
|
|
248
240
|
}
|
|
249
241
|
}
|
|
250
|
-
}
|
|
242
|
+
}
|