@atlaskit/editor-core 192.3.1 → 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,17 @@
|
|
|
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
|
+
|
|
9
|
+
## 192.3.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#74946](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74946) [`9afaeced79fb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9afaeced79fb) - Update kitchen sink to include feature flag for renderer previewer for inline images
|
|
14
|
+
|
|
3
15
|
## 192.3.1
|
|
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.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",
|
|
@@ -178,6 +178,10 @@
|
|
|
178
178
|
"platform.editor.media.extended-resize-experience": {
|
|
179
179
|
"type": "boolean"
|
|
180
180
|
},
|
|
181
|
+
"platform.editor.media.inline-image.renderer-preview-support_3w1ju": {
|
|
182
|
+
"type": "boolean",
|
|
183
|
+
"referenceOnly": "true"
|
|
184
|
+
},
|
|
181
185
|
"platform.editor.media.inline-image.base-support": {
|
|
182
186
|
"type": "boolean"
|
|
183
187
|
},
|
|
@@ -193,12 +197,6 @@
|
|
|
193
197
|
"type": "boolean",
|
|
194
198
|
"referenceOnly": "true"
|
|
195
199
|
},
|
|
196
|
-
"platform.linking-platform.enable-datasource-appearance-toolbar": {
|
|
197
|
-
"type": "boolean"
|
|
198
|
-
},
|
|
199
|
-
"platform.linking-platform.datasource-assets_objects": {
|
|
200
|
-
"type": "boolean"
|
|
201
|
-
},
|
|
202
200
|
"platform.media-experience.cardv2_7zann": {
|
|
203
201
|
"type": "boolean",
|
|
204
202
|
"referenceOnly": "true"
|
|
@@ -218,26 +216,15 @@
|
|
|
218
216
|
"type": "boolean",
|
|
219
217
|
"referenceOnly": "true"
|
|
220
218
|
},
|
|
221
|
-
"platform.editor.ordered-list-auto-join-improvements_mrlv5": {
|
|
222
|
-
"type": "boolean"
|
|
223
|
-
},
|
|
224
219
|
"platform.editor.loom-integration": {
|
|
225
220
|
"type": "boolean"
|
|
226
221
|
},
|
|
227
|
-
"platform.editor.allow-extended-panel": {
|
|
228
|
-
"type": "boolean"
|
|
229
|
-
},
|
|
230
222
|
"platform.editor.enable-selection-toolbar_ucdwd": {
|
|
231
223
|
"type": "boolean"
|
|
232
224
|
},
|
|
233
225
|
"platform.editor.multi-bodied-extension_0rygg": {
|
|
234
|
-
"type": "boolean"
|
|
235
|
-
|
|
236
|
-
"platform.editor.allow-extended-nested-expand": {
|
|
237
|
-
"type": "boolean"
|
|
238
|
-
},
|
|
239
|
-
"platform.editor.allow-action-in-list": {
|
|
240
|
-
"type": "boolean"
|
|
226
|
+
"type": "boolean",
|
|
227
|
+
"referenceOnly": "true"
|
|
241
228
|
},
|
|
242
229
|
"platform.editor.allow-list-in-blockquote": {
|
|
243
230
|
"type": "boolean"
|
|
@@ -252,4 +239,4 @@
|
|
|
252
239
|
"checkDevDependencies": true
|
|
253
240
|
}
|
|
254
241
|
}
|
|
255
|
-
}
|
|
242
|
+
}
|