@atlaskit/editor-core 192.3.2 → 192.3.13
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,17 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 192.3.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#77237](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77237) [`fea8a5aa0ef5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fea8a5aa0ef5) - Fix issue in kitchen sink
|
|
8
|
+
|
|
9
|
+
## 192.3.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#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
|
|
14
|
+
|
|
3
15
|
## 192.3.2
|
|
4
16
|
|
|
5
17
|
### 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.13";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "192.3.
|
|
2
|
+
export var version = "192.3.13";
|
|
@@ -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.13",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"@atlaskit/analytics-namespaced-context": "^6.9.0",
|
|
46
46
|
"@atlaskit/analytics-next": "^9.2.0",
|
|
47
47
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
48
|
-
"@atlaskit/button": "^17.
|
|
49
|
-
"@atlaskit/editor-common": "^78.
|
|
48
|
+
"@atlaskit/button": "^17.6.0",
|
|
49
|
+
"@atlaskit/editor-common": "^78.8.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",
|
|
@@ -104,10 +104,10 @@
|
|
|
104
104
|
"@atlaskit/media-integration-test-helpers": "^3.0.0",
|
|
105
105
|
"@atlaskit/media-test-helpers": "^33.0.27",
|
|
106
106
|
"@atlaskit/modal-dialog": "^12.10.0",
|
|
107
|
-
"@atlaskit/primitives": "^
|
|
108
|
-
"@atlaskit/renderer": "^109.
|
|
107
|
+
"@atlaskit/primitives": "^3.1.0",
|
|
108
|
+
"@atlaskit/renderer": "^109.6.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.27",
|
|
119
119
|
"@atlassian/ufo": "^0.2.0",
|
|
120
120
|
"@emotion/jest": "^11.8.0",
|
|
121
121
|
"@storybook/addon-knobs": "^5.3.18",
|
|
@@ -175,16 +175,10 @@
|
|
|
175
175
|
"type": "boolean",
|
|
176
176
|
"referenceOnly": "true"
|
|
177
177
|
},
|
|
178
|
-
"platform.editor.media.extended-resize-experience": {
|
|
179
|
-
"type": "boolean"
|
|
180
|
-
},
|
|
181
178
|
"platform.editor.media.inline-image.renderer-preview-support_3w1ju": {
|
|
182
179
|
"type": "boolean",
|
|
183
180
|
"referenceOnly": "true"
|
|
184
181
|
},
|
|
185
|
-
"platform.editor.media.inline-image.base-support": {
|
|
186
|
-
"type": "boolean"
|
|
187
|
-
},
|
|
188
182
|
"platform.design-system-team.border-checkbox_nyoiu": {
|
|
189
183
|
"type": "boolean",
|
|
190
184
|
"referenceOnly": "true"
|
|
@@ -197,12 +191,6 @@
|
|
|
197
191
|
"type": "boolean",
|
|
198
192
|
"referenceOnly": "true"
|
|
199
193
|
},
|
|
200
|
-
"platform.linking-platform.enable-datasource-appearance-toolbar": {
|
|
201
|
-
"type": "boolean"
|
|
202
|
-
},
|
|
203
|
-
"platform.linking-platform.datasource-assets_objects": {
|
|
204
|
-
"type": "boolean"
|
|
205
|
-
},
|
|
206
194
|
"platform.media-experience.cardv2_7zann": {
|
|
207
195
|
"type": "boolean",
|
|
208
196
|
"referenceOnly": "true"
|
|
@@ -229,10 +217,8 @@
|
|
|
229
217
|
"type": "boolean"
|
|
230
218
|
},
|
|
231
219
|
"platform.editor.multi-bodied-extension_0rygg": {
|
|
232
|
-
"type": "boolean"
|
|
233
|
-
|
|
234
|
-
"platform.editor.allow-extended-nested-expand": {
|
|
235
|
-
"type": "boolean"
|
|
220
|
+
"type": "boolean",
|
|
221
|
+
"referenceOnly": "true"
|
|
236
222
|
},
|
|
237
223
|
"platform.editor.allow-list-in-blockquote": {
|
|
238
224
|
"type": "boolean"
|
|
@@ -247,4 +233,4 @@
|
|
|
247
233
|
"checkDevDependencies": true
|
|
248
234
|
}
|
|
249
235
|
}
|
|
250
|
-
}
|
|
236
|
+
}
|