@atlaskit/editor-core 193.25.0 → 193.25.4
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 +16 -0
- package/dist/cjs/ui/Appearance/Comment/Comment.js +4 -6
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/Appearance/Comment/Comment.js +4 -4
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/Appearance/Comment/Comment.js +4 -6
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/create-preset.d.ts +40 -10
- package/dist/types/presets/default.d.ts +40 -10
- package/dist/types/presets/universal.d.ts +40 -10
- package/dist/types/presets/useUniversalPreset.d.ts +40 -10
- package/dist/types-ts4.5/create-editor/create-preset.d.ts +50 -10
- package/dist/types-ts4.5/presets/default.d.ts +50 -10
- package/dist/types-ts4.5/presets/universal.d.ts +50 -10
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +50 -10
- package/package.json +5 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 193.25.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#109033](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109033)
|
|
8
|
+
[`046555d9a96ea`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/046555d9a96ea) -
|
|
9
|
+
Removes LD flag for Preserve Table Widths part two feature.
|
|
10
|
+
|
|
11
|
+
## 193.25.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#109694](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109694)
|
|
16
|
+
[`7c6d607dd808c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7c6d607dd808c) -
|
|
17
|
+
Fix HOT-109709 fix null ref in comment editor
|
|
18
|
+
|
|
3
19
|
## 193.25.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -299,7 +299,7 @@ var EditorNext = function EditorNext(props) {
|
|
|
299
299
|
innerRef = props.innerRef;
|
|
300
300
|
var maxContentSizeReached = Boolean(maxContentSizeState === null || maxContentSizeState === void 0 ? void 0 : maxContentSizeState.maxContentSizeReached);
|
|
301
301
|
var showSecondaryToolbar = !!onSave || !!onCancel || !!customSecondaryToolbarComponents;
|
|
302
|
-
var containerElement = null;
|
|
302
|
+
var containerElement = _react.default.useRef(null);
|
|
303
303
|
|
|
304
304
|
// Wrapper container for toolbar and content area
|
|
305
305
|
var wrapperElementRef = (0, _react.useMemo)(function () {
|
|
@@ -376,7 +376,7 @@ var EditorNext = function EditorNext(props) {
|
|
|
376
376
|
popupsScrollableElement: popupsScrollableElement,
|
|
377
377
|
disabled: !!disabled,
|
|
378
378
|
dispatchAnalyticsEvent: dispatchAnalyticsEvent,
|
|
379
|
-
containerElement: containerElement,
|
|
379
|
+
containerElement: containerElement.current,
|
|
380
380
|
twoLineEditorToolbar: isTwoLineToolbarEnabled
|
|
381
381
|
}), (0, _react2.jsx)("div", {
|
|
382
382
|
css: (0, _Toolbar2.mainToolbarCustomComponentsSlotStyle)(isTwoLineToolbarEnabled)
|
|
@@ -386,9 +386,7 @@ var EditorNext = function EditorNext(props) {
|
|
|
386
386
|
}, (0, _react2.jsx)(_ui.WidthConsumer, null, function (_ref5) {
|
|
387
387
|
var width = _ref5.width;
|
|
388
388
|
return (0, _react2.jsx)(ContentArea, {
|
|
389
|
-
ref:
|
|
390
|
-
return containerElement = _ref6;
|
|
391
|
-
},
|
|
389
|
+
ref: containerElement,
|
|
392
390
|
css: maxHeight ? (0, _react2.css)({
|
|
393
391
|
maxHeight: "".concat(maxHeight, "px")
|
|
394
392
|
}) : null
|
|
@@ -409,7 +407,7 @@ var EditorNext = function EditorNext(props) {
|
|
|
409
407
|
popupsMountPoint: popupsMountPoint,
|
|
410
408
|
popupsBoundariesElement: popupsBoundariesElement,
|
|
411
409
|
popupsScrollableElement: popupsScrollableElement,
|
|
412
|
-
containerElement: containerElement,
|
|
410
|
+
containerElement: containerElement.current,
|
|
413
411
|
disabled: !!disabled,
|
|
414
412
|
wrapperElement: wrapperElementRef.current,
|
|
415
413
|
pluginHooks: pluginHooks
|
|
@@ -276,7 +276,7 @@ const EditorNext = props => {
|
|
|
276
276
|
} = props;
|
|
277
277
|
const maxContentSizeReached = Boolean(maxContentSizeState === null || maxContentSizeState === void 0 ? void 0 : maxContentSizeState.maxContentSizeReached);
|
|
278
278
|
const showSecondaryToolbar = !!onSave || !!onCancel || !!customSecondaryToolbarComponents;
|
|
279
|
-
|
|
279
|
+
const containerElement = React.useRef(null);
|
|
280
280
|
|
|
281
281
|
// Wrapper container for toolbar and content area
|
|
282
282
|
const wrapperElementRef = useMemo(() => innerRef || /*#__PURE__*/React.createRef(), [innerRef]);
|
|
@@ -346,7 +346,7 @@ const EditorNext = props => {
|
|
|
346
346
|
popupsScrollableElement: popupsScrollableElement,
|
|
347
347
|
disabled: !!disabled,
|
|
348
348
|
dispatchAnalyticsEvent: dispatchAnalyticsEvent,
|
|
349
|
-
containerElement: containerElement,
|
|
349
|
+
containerElement: containerElement.current,
|
|
350
350
|
twoLineEditorToolbar: isTwoLineToolbarEnabled
|
|
351
351
|
}), jsx("div", {
|
|
352
352
|
css: mainToolbarCustomComponentsSlotStyle(isTwoLineToolbarEnabled)
|
|
@@ -357,7 +357,7 @@ const EditorNext = props => {
|
|
|
357
357
|
width
|
|
358
358
|
}) => {
|
|
359
359
|
return jsx(ContentArea, {
|
|
360
|
-
ref:
|
|
360
|
+
ref: containerElement,
|
|
361
361
|
css: maxHeight ? css({
|
|
362
362
|
maxHeight: `${maxHeight}px`
|
|
363
363
|
}) : null
|
|
@@ -378,7 +378,7 @@ const EditorNext = props => {
|
|
|
378
378
|
popupsMountPoint: popupsMountPoint,
|
|
379
379
|
popupsBoundariesElement: popupsBoundariesElement,
|
|
380
380
|
popupsScrollableElement: popupsScrollableElement,
|
|
381
|
-
containerElement: containerElement,
|
|
381
|
+
containerElement: containerElement.current,
|
|
382
382
|
disabled: !!disabled,
|
|
383
383
|
wrapperElement: wrapperElementRef.current,
|
|
384
384
|
pluginHooks: pluginHooks
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "193.25.
|
|
2
|
+
export const version = "193.25.4";
|
|
@@ -290,7 +290,7 @@ var EditorNext = function EditorNext(props) {
|
|
|
290
290
|
innerRef = props.innerRef;
|
|
291
291
|
var maxContentSizeReached = Boolean(maxContentSizeState === null || maxContentSizeState === void 0 ? void 0 : maxContentSizeState.maxContentSizeReached);
|
|
292
292
|
var showSecondaryToolbar = !!onSave || !!onCancel || !!customSecondaryToolbarComponents;
|
|
293
|
-
var containerElement = null;
|
|
293
|
+
var containerElement = React.useRef(null);
|
|
294
294
|
|
|
295
295
|
// Wrapper container for toolbar and content area
|
|
296
296
|
var wrapperElementRef = useMemo(function () {
|
|
@@ -367,7 +367,7 @@ var EditorNext = function EditorNext(props) {
|
|
|
367
367
|
popupsScrollableElement: popupsScrollableElement,
|
|
368
368
|
disabled: !!disabled,
|
|
369
369
|
dispatchAnalyticsEvent: dispatchAnalyticsEvent,
|
|
370
|
-
containerElement: containerElement,
|
|
370
|
+
containerElement: containerElement.current,
|
|
371
371
|
twoLineEditorToolbar: isTwoLineToolbarEnabled
|
|
372
372
|
}), jsx("div", {
|
|
373
373
|
css: mainToolbarCustomComponentsSlotStyle(isTwoLineToolbarEnabled)
|
|
@@ -377,9 +377,7 @@ var EditorNext = function EditorNext(props) {
|
|
|
377
377
|
}, jsx(WidthConsumer, null, function (_ref5) {
|
|
378
378
|
var width = _ref5.width;
|
|
379
379
|
return jsx(ContentArea, {
|
|
380
|
-
ref:
|
|
381
|
-
return containerElement = _ref6;
|
|
382
|
-
},
|
|
380
|
+
ref: containerElement,
|
|
383
381
|
css: maxHeight ? css({
|
|
384
382
|
maxHeight: "".concat(maxHeight, "px")
|
|
385
383
|
}) : null
|
|
@@ -400,7 +398,7 @@ var EditorNext = function EditorNext(props) {
|
|
|
400
398
|
popupsMountPoint: popupsMountPoint,
|
|
401
399
|
popupsBoundariesElement: popupsBoundariesElement,
|
|
402
400
|
popupsScrollableElement: popupsScrollableElement,
|
|
403
|
-
containerElement: containerElement,
|
|
401
|
+
containerElement: containerElement.current,
|
|
404
402
|
disabled: !!disabled,
|
|
405
403
|
wrapperElement: wrapperElementRef.current,
|
|
406
404
|
pluginHooks: pluginHooks
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "193.25.
|
|
2
|
+
export var version = "193.25.4";
|
|
@@ -261,7 +261,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
261
261
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
262
262
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
263
263
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
264
|
-
}, undefined
|
|
264
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
265
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
266
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
267
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
265
268
|
sharedState: {
|
|
266
269
|
isMenuOpen: boolean;
|
|
267
270
|
activeNode: {
|
|
@@ -517,7 +520,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
517
520
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
518
521
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
519
522
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
520
|
-
}, undefined
|
|
523
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
524
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
525
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
526
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
521
527
|
sharedState: {
|
|
522
528
|
isMenuOpen: boolean;
|
|
523
529
|
activeNode: {
|
|
@@ -1243,7 +1249,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
1243
1249
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
1244
1250
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
1245
1251
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
1246
|
-
}, undefined
|
|
1252
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1253
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1254
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1255
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
1247
1256
|
sharedState: {
|
|
1248
1257
|
isMenuOpen: boolean;
|
|
1249
1258
|
activeNode: {
|
|
@@ -1771,7 +1780,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
1771
1780
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
1772
1781
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
1773
1782
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
1774
|
-
}, undefined
|
|
1783
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1784
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1785
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1786
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
1775
1787
|
sharedState: {
|
|
1776
1788
|
isMenuOpen: boolean;
|
|
1777
1789
|
activeNode: {
|
|
@@ -2524,7 +2536,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
2524
2536
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
2525
2537
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
2526
2538
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
2527
|
-
}, undefined
|
|
2539
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
2540
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
2541
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
2542
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
2528
2543
|
sharedState: {
|
|
2529
2544
|
isMenuOpen: boolean;
|
|
2530
2545
|
activeNode: {
|
|
@@ -3128,7 +3143,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
3128
3143
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
3129
3144
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
3130
3145
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
3131
|
-
}, undefined
|
|
3146
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3147
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
3148
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
3149
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
3132
3150
|
sharedState: {
|
|
3133
3151
|
isMenuOpen: boolean;
|
|
3134
3152
|
activeNode: {
|
|
@@ -3388,7 +3406,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
3388
3406
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
3389
3407
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
3390
3408
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
3391
|
-
}, undefined
|
|
3409
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3410
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
3411
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
3412
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
3392
3413
|
sharedState: {
|
|
3393
3414
|
isMenuOpen: boolean;
|
|
3394
3415
|
activeNode: {
|
|
@@ -3862,7 +3883,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
3862
3883
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
3863
3884
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
3864
3885
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
3865
|
-
}, undefined
|
|
3886
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3887
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
3888
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
3889
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
3866
3890
|
sharedState: {
|
|
3867
3891
|
isMenuOpen: boolean;
|
|
3868
3892
|
activeNode: {
|
|
@@ -4362,7 +4386,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
4362
4386
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
4363
4387
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
4364
4388
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
4365
|
-
}, undefined
|
|
4389
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4390
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
4391
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
4392
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
4366
4393
|
sharedState: {
|
|
4367
4394
|
isMenuOpen: boolean;
|
|
4368
4395
|
activeNode: {
|
|
@@ -4618,7 +4645,10 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
4618
4645
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
4619
4646
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
4620
4647
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
4621
|
-
}, undefined
|
|
4648
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4649
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
4650
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
4651
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
4622
4652
|
sharedState: {
|
|
4623
4653
|
isMenuOpen: boolean;
|
|
4624
4654
|
activeNode: {
|
|
@@ -203,7 +203,10 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
203
203
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
204
204
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
205
205
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
206
|
-
}, undefined
|
|
206
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
207
|
+
pluginConfiguration: FeatureFlags;
|
|
208
|
+
sharedState: FeatureFlags;
|
|
209
|
+
}, FeatureFlags>>];
|
|
207
210
|
sharedState: {
|
|
208
211
|
isMenuOpen: boolean;
|
|
209
212
|
activeNode: {
|
|
@@ -463,7 +466,10 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
463
466
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
464
467
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
465
468
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
466
|
-
}, undefined
|
|
469
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
470
|
+
pluginConfiguration: FeatureFlags;
|
|
471
|
+
sharedState: FeatureFlags;
|
|
472
|
+
}, FeatureFlags>>];
|
|
467
473
|
sharedState: {
|
|
468
474
|
isMenuOpen: boolean;
|
|
469
475
|
activeNode: {
|
|
@@ -937,7 +943,10 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
937
943
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
938
944
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
939
945
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
940
|
-
}, undefined
|
|
946
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
947
|
+
pluginConfiguration: FeatureFlags;
|
|
948
|
+
sharedState: FeatureFlags;
|
|
949
|
+
}, FeatureFlags>>];
|
|
941
950
|
sharedState: {
|
|
942
951
|
isMenuOpen: boolean;
|
|
943
952
|
activeNode: {
|
|
@@ -1437,7 +1446,10 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1437
1446
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
1438
1447
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
1439
1448
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
1440
|
-
}, undefined
|
|
1449
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1450
|
+
pluginConfiguration: FeatureFlags;
|
|
1451
|
+
sharedState: FeatureFlags;
|
|
1452
|
+
}, FeatureFlags>>];
|
|
1441
1453
|
sharedState: {
|
|
1442
1454
|
isMenuOpen: boolean;
|
|
1443
1455
|
activeNode: {
|
|
@@ -1693,7 +1705,10 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1693
1705
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
1694
1706
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
1695
1707
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
1696
|
-
}, undefined
|
|
1708
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1709
|
+
pluginConfiguration: FeatureFlags;
|
|
1710
|
+
sharedState: FeatureFlags;
|
|
1711
|
+
}, FeatureFlags>>];
|
|
1697
1712
|
sharedState: {
|
|
1698
1713
|
isMenuOpen: boolean;
|
|
1699
1714
|
activeNode: {
|
|
@@ -2099,7 +2114,10 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2099
2114
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
2100
2115
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
2101
2116
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
2102
|
-
}, undefined
|
|
2117
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
2118
|
+
pluginConfiguration: FeatureFlags;
|
|
2119
|
+
sharedState: FeatureFlags;
|
|
2120
|
+
}, FeatureFlags>>];
|
|
2103
2121
|
sharedState: {
|
|
2104
2122
|
isMenuOpen: boolean;
|
|
2105
2123
|
activeNode: {
|
|
@@ -2359,7 +2377,10 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2359
2377
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
2360
2378
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
2361
2379
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
2362
|
-
}, undefined
|
|
2380
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
2381
|
+
pluginConfiguration: FeatureFlags;
|
|
2382
|
+
sharedState: FeatureFlags;
|
|
2383
|
+
}, FeatureFlags>>];
|
|
2363
2384
|
sharedState: {
|
|
2364
2385
|
isMenuOpen: boolean;
|
|
2365
2386
|
activeNode: {
|
|
@@ -2833,7 +2854,10 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2833
2854
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
2834
2855
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
2835
2856
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
2836
|
-
}, undefined
|
|
2857
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
2858
|
+
pluginConfiguration: FeatureFlags;
|
|
2859
|
+
sharedState: FeatureFlags;
|
|
2860
|
+
}, FeatureFlags>>];
|
|
2837
2861
|
sharedState: {
|
|
2838
2862
|
isMenuOpen: boolean;
|
|
2839
2863
|
activeNode: {
|
|
@@ -3333,7 +3357,10 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3333
3357
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
3334
3358
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
3335
3359
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
3336
|
-
}, undefined
|
|
3360
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3361
|
+
pluginConfiguration: FeatureFlags;
|
|
3362
|
+
sharedState: FeatureFlags;
|
|
3363
|
+
}, FeatureFlags>>];
|
|
3337
3364
|
sharedState: {
|
|
3338
3365
|
isMenuOpen: boolean;
|
|
3339
3366
|
activeNode: {
|
|
@@ -3589,7 +3616,10 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3589
3616
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
3590
3617
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
3591
3618
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
3592
|
-
}, undefined
|
|
3619
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3620
|
+
pluginConfiguration: FeatureFlags;
|
|
3621
|
+
sharedState: FeatureFlags;
|
|
3622
|
+
}, FeatureFlags>>];
|
|
3593
3623
|
sharedState: {
|
|
3594
3624
|
isMenuOpen: boolean;
|
|
3595
3625
|
activeNode: {
|
|
@@ -278,7 +278,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
278
278
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
279
279
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
280
280
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
281
|
-
}, undefined
|
|
281
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
282
|
+
pluginConfiguration: FeatureFlags;
|
|
283
|
+
sharedState: FeatureFlags;
|
|
284
|
+
}, FeatureFlags>>];
|
|
282
285
|
sharedState: {
|
|
283
286
|
isMenuOpen: boolean;
|
|
284
287
|
activeNode: {
|
|
@@ -534,7 +537,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
534
537
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
535
538
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
536
539
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
537
|
-
}, undefined
|
|
540
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
541
|
+
pluginConfiguration: FeatureFlags;
|
|
542
|
+
sharedState: FeatureFlags;
|
|
543
|
+
}, FeatureFlags>>];
|
|
538
544
|
sharedState: {
|
|
539
545
|
isMenuOpen: boolean;
|
|
540
546
|
activeNode: {
|
|
@@ -1260,7 +1266,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
1260
1266
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
1261
1267
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
1262
1268
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
1263
|
-
}, undefined
|
|
1269
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1270
|
+
pluginConfiguration: FeatureFlags;
|
|
1271
|
+
sharedState: FeatureFlags;
|
|
1272
|
+
}, FeatureFlags>>];
|
|
1264
1273
|
sharedState: {
|
|
1265
1274
|
isMenuOpen: boolean;
|
|
1266
1275
|
activeNode: {
|
|
@@ -1788,7 +1797,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
1788
1797
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
1789
1798
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
1790
1799
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
1791
|
-
}, undefined
|
|
1800
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1801
|
+
pluginConfiguration: FeatureFlags;
|
|
1802
|
+
sharedState: FeatureFlags;
|
|
1803
|
+
}, FeatureFlags>>];
|
|
1792
1804
|
sharedState: {
|
|
1793
1805
|
isMenuOpen: boolean;
|
|
1794
1806
|
activeNode: {
|
|
@@ -2541,7 +2553,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
2541
2553
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
2542
2554
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
2543
2555
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
2544
|
-
}, undefined
|
|
2556
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
2557
|
+
pluginConfiguration: FeatureFlags;
|
|
2558
|
+
sharedState: FeatureFlags;
|
|
2559
|
+
}, FeatureFlags>>];
|
|
2545
2560
|
sharedState: {
|
|
2546
2561
|
isMenuOpen: boolean;
|
|
2547
2562
|
activeNode: {
|
|
@@ -3145,7 +3160,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
3145
3160
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
3146
3161
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
3147
3162
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
3148
|
-
}, undefined
|
|
3163
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3164
|
+
pluginConfiguration: FeatureFlags;
|
|
3165
|
+
sharedState: FeatureFlags;
|
|
3166
|
+
}, FeatureFlags>>];
|
|
3149
3167
|
sharedState: {
|
|
3150
3168
|
isMenuOpen: boolean;
|
|
3151
3169
|
activeNode: {
|
|
@@ -3405,7 +3423,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
3405
3423
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
3406
3424
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
3407
3425
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
3408
|
-
}, undefined
|
|
3426
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3427
|
+
pluginConfiguration: FeatureFlags;
|
|
3428
|
+
sharedState: FeatureFlags;
|
|
3429
|
+
}, FeatureFlags>>];
|
|
3409
3430
|
sharedState: {
|
|
3410
3431
|
isMenuOpen: boolean;
|
|
3411
3432
|
activeNode: {
|
|
@@ -3879,7 +3900,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
3879
3900
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
3880
3901
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
3881
3902
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
3882
|
-
}, undefined
|
|
3903
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3904
|
+
pluginConfiguration: FeatureFlags;
|
|
3905
|
+
sharedState: FeatureFlags;
|
|
3906
|
+
}, FeatureFlags>>];
|
|
3883
3907
|
sharedState: {
|
|
3884
3908
|
isMenuOpen: boolean;
|
|
3885
3909
|
activeNode: {
|
|
@@ -4379,7 +4403,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
4379
4403
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
4380
4404
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
4381
4405
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
4382
|
-
}, undefined
|
|
4406
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4407
|
+
pluginConfiguration: FeatureFlags;
|
|
4408
|
+
sharedState: FeatureFlags;
|
|
4409
|
+
}, FeatureFlags>>];
|
|
4383
4410
|
sharedState: {
|
|
4384
4411
|
isMenuOpen: boolean;
|
|
4385
4412
|
activeNode: {
|
|
@@ -4635,7 +4662,10 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
4635
4662
|
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"blockControls", {
|
|
4636
4663
|
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
4637
4664
|
sharedState: import("@atlaskit/editor-common/types").EditorContainerWidth | undefined;
|
|
4638
|
-
}, undefined
|
|
4665
|
+
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4666
|
+
pluginConfiguration: FeatureFlags;
|
|
4667
|
+
sharedState: FeatureFlags;
|
|
4668
|
+
}, FeatureFlags>>];
|
|
4639
4669
|
sharedState: {
|
|
4640
4670
|
isMenuOpen: boolean;
|
|
4641
4671
|
activeNode: {
|