@atlaskit/editor-core 193.27.14 → 193.27.17
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 +10 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/create-preset.d.ts +132 -11
- package/dist/types/presets/default.d.ts +72 -6
- package/dist/types/presets/universal.d.ts +132 -11
- package/dist/types/presets/useUniversalPreset.d.ts +154 -33
- package/dist/types-ts4.5/create-editor/create-preset.d.ts +154 -11
- package/dist/types-ts4.5/presets/default.d.ts +84 -6
- package/dist/types-ts4.5/presets/universal.d.ts +154 -11
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +176 -33
- package/package.json +11 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 193.27.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#105724](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105724)
|
|
8
|
+
[`d31b1d6bce097`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d31b1d6bce097) -
|
|
9
|
+
[ux] [ED-23466] Don't show view-mode telepointers to other live-mode users
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 193.27.14
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -2308,8 +2317,7 @@
|
|
|
2308
2317
|
|
|
2309
2318
|
- [#57786](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57786)
|
|
2310
2319
|
[`632207571c08`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/632207571c08) -
|
|
2311
|
-
[NO ISSUE] Reduce Editor re-renderers with proper memonization (behind flag
|
|
2312
|
-
platform.editor.less-editor-props-rerendering)'
|
|
2320
|
+
[NO ISSUE] Reduce Editor re-renderers with proper memonization (behind flag platform.editor.less-editor-props-rerendering)'
|
|
2313
2321
|
- [#56858](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/56858)
|
|
2314
2322
|
[`ae1466a4a6ab`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ae1466a4a6ab) -
|
|
2315
2323
|
Extract clear marks on empty doc plugin from editor-core to new plugin.
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "193.27.
|
|
2
|
+
export const version = "193.27.17";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "193.27.
|
|
2
|
+
export var version = "193.27.17";
|
|
@@ -478,7 +478,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
478
478
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
479
479
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
480
480
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
481
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
481
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
482
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
483
|
+
dependencies: [];
|
|
484
|
+
pluginConfiguration?: {
|
|
485
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
486
|
+
} | undefined;
|
|
487
|
+
commands: {
|
|
488
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
489
|
+
};
|
|
490
|
+
}, {
|
|
491
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
492
|
+
} | undefined>>];
|
|
482
493
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
483
494
|
actions: {
|
|
484
495
|
getAvatarColor: (str: string) => {
|
|
@@ -606,7 +617,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
606
617
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
607
618
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
608
619
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
609
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
620
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
621
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
622
|
+
dependencies: [];
|
|
623
|
+
pluginConfiguration?: {
|
|
624
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
625
|
+
} | undefined;
|
|
626
|
+
commands: {
|
|
627
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
628
|
+
};
|
|
629
|
+
}, {
|
|
630
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
631
|
+
} | undefined>>];
|
|
610
632
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
611
633
|
actions: {
|
|
612
634
|
getAvatarColor: (str: string) => {
|
|
@@ -716,7 +738,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
716
738
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
717
739
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
718
740
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
719
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
741
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
742
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
743
|
+
dependencies: [];
|
|
744
|
+
pluginConfiguration?: {
|
|
745
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
746
|
+
} | undefined;
|
|
747
|
+
commands: {
|
|
748
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
749
|
+
};
|
|
750
|
+
}, {
|
|
751
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
752
|
+
} | undefined>>];
|
|
720
753
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
721
754
|
actions: {
|
|
722
755
|
getAvatarColor: (str: string) => {
|
|
@@ -1265,7 +1298,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
1265
1298
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1266
1299
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
1267
1300
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
1268
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
1301
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
1302
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
1303
|
+
dependencies: [];
|
|
1304
|
+
pluginConfiguration?: {
|
|
1305
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1306
|
+
} | undefined;
|
|
1307
|
+
commands: {
|
|
1308
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1309
|
+
};
|
|
1310
|
+
}, {
|
|
1311
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1312
|
+
} | undefined>>];
|
|
1269
1313
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
1270
1314
|
actions: {
|
|
1271
1315
|
getAvatarColor: (str: string) => {
|
|
@@ -1403,7 +1447,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
1403
1447
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1404
1448
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
1405
1449
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
1406
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
1450
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
1451
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
1452
|
+
dependencies: [];
|
|
1453
|
+
pluginConfiguration?: {
|
|
1454
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1455
|
+
} | undefined;
|
|
1456
|
+
commands: {
|
|
1457
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1458
|
+
};
|
|
1459
|
+
}, {
|
|
1460
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1461
|
+
} | undefined>>];
|
|
1407
1462
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
1408
1463
|
actions: {
|
|
1409
1464
|
getAvatarColor: (str: string) => {
|
|
@@ -1654,7 +1709,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
1654
1709
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1655
1710
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
1656
1711
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
1657
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
1712
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
1713
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
1714
|
+
dependencies: [];
|
|
1715
|
+
pluginConfiguration?: {
|
|
1716
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1717
|
+
} | undefined;
|
|
1718
|
+
commands: {
|
|
1719
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1720
|
+
};
|
|
1721
|
+
}, {
|
|
1722
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1723
|
+
} | undefined>>];
|
|
1658
1724
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
1659
1725
|
actions: {
|
|
1660
1726
|
getAvatarColor: (str: string) => {
|
|
@@ -2328,7 +2394,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
2328
2394
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
2329
2395
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
2330
2396
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
2331
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
2397
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
2398
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
2399
|
+
dependencies: [];
|
|
2400
|
+
pluginConfiguration?: {
|
|
2401
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2402
|
+
} | undefined;
|
|
2403
|
+
commands: {
|
|
2404
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2405
|
+
};
|
|
2406
|
+
}, {
|
|
2407
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2408
|
+
} | undefined>>];
|
|
2332
2409
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
2333
2410
|
actions: {
|
|
2334
2411
|
getAvatarColor: (str: string) => {
|
|
@@ -2408,7 +2485,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
2408
2485
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
2409
2486
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
2410
2487
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
2411
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
2488
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
2489
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
2490
|
+
dependencies: [];
|
|
2491
|
+
pluginConfiguration?: {
|
|
2492
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2493
|
+
} | undefined;
|
|
2494
|
+
commands: {
|
|
2495
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2496
|
+
};
|
|
2497
|
+
}, {
|
|
2498
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2499
|
+
} | undefined>>];
|
|
2412
2500
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
2413
2501
|
actions: {
|
|
2414
2502
|
getAvatarColor: (str: string) => {
|
|
@@ -3096,7 +3184,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
3096
3184
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
3097
3185
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
3098
3186
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
3099
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
3187
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
3188
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
3189
|
+
dependencies: [];
|
|
3190
|
+
pluginConfiguration?: {
|
|
3191
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
3192
|
+
} | undefined;
|
|
3193
|
+
commands: {
|
|
3194
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3195
|
+
};
|
|
3196
|
+
}, {
|
|
3197
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
3198
|
+
} | undefined>>];
|
|
3100
3199
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
3101
3200
|
actions: {
|
|
3102
3201
|
getAvatarColor: (str: string) => {
|
|
@@ -4136,7 +4235,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
4136
4235
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
4137
4236
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
4138
4237
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
4139
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
4238
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
4239
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
4240
|
+
dependencies: [];
|
|
4241
|
+
pluginConfiguration?: {
|
|
4242
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
4243
|
+
} | undefined;
|
|
4244
|
+
commands: {
|
|
4245
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4246
|
+
};
|
|
4247
|
+
}, {
|
|
4248
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
4249
|
+
} | undefined>>];
|
|
4140
4250
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
4141
4251
|
actions: {
|
|
4142
4252
|
getAvatarColor: (str: string) => {
|
|
@@ -4264,7 +4374,18 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
4264
4374
|
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
4265
4375
|
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
4266
4376
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
4267
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
4377
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
4378
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
4379
|
+
dependencies: [];
|
|
4380
|
+
pluginConfiguration?: {
|
|
4381
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
4382
|
+
} | undefined;
|
|
4383
|
+
commands: {
|
|
4384
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4385
|
+
};
|
|
4386
|
+
}, {
|
|
4387
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
4388
|
+
} | undefined>>];
|
|
4268
4389
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
4269
4390
|
actions: {
|
|
4270
4391
|
getAvatarColor: (str: string) => {
|
|
@@ -458,7 +458,18 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
458
458
|
sharedState: FeatureFlags;
|
|
459
459
|
}, FeatureFlags>>];
|
|
460
460
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
461
|
-
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions
|
|
461
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
462
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
463
|
+
dependencies: [];
|
|
464
|
+
pluginConfiguration?: {
|
|
465
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
466
|
+
} | undefined;
|
|
467
|
+
commands: {
|
|
468
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
469
|
+
};
|
|
470
|
+
}, {
|
|
471
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
472
|
+
} | undefined>>];
|
|
462
473
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
463
474
|
actions: {
|
|
464
475
|
getAvatarColor: (str: string) => {
|
|
@@ -1498,7 +1509,18 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1498
1509
|
sharedState: FeatureFlags;
|
|
1499
1510
|
}, FeatureFlags>>];
|
|
1500
1511
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
1501
|
-
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions
|
|
1512
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
1513
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
1514
|
+
dependencies: [];
|
|
1515
|
+
pluginConfiguration?: {
|
|
1516
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1517
|
+
} | undefined;
|
|
1518
|
+
commands: {
|
|
1519
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1520
|
+
};
|
|
1521
|
+
}, {
|
|
1522
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1523
|
+
} | undefined>>];
|
|
1502
1524
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
1503
1525
|
actions: {
|
|
1504
1526
|
getAvatarColor: (str: string) => {
|
|
@@ -1626,7 +1648,18 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1626
1648
|
sharedState: FeatureFlags;
|
|
1627
1649
|
}, FeatureFlags>>];
|
|
1628
1650
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
1629
|
-
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions
|
|
1651
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
1652
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
1653
|
+
dependencies: [];
|
|
1654
|
+
pluginConfiguration?: {
|
|
1655
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1656
|
+
} | undefined;
|
|
1657
|
+
commands: {
|
|
1658
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1659
|
+
};
|
|
1660
|
+
}, {
|
|
1661
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1662
|
+
} | undefined>>];
|
|
1630
1663
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
1631
1664
|
actions: {
|
|
1632
1665
|
getAvatarColor: (str: string) => {
|
|
@@ -2104,7 +2137,18 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2104
2137
|
sharedState: FeatureFlags;
|
|
2105
2138
|
}, FeatureFlags>>];
|
|
2106
2139
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
2107
|
-
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions
|
|
2140
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
2141
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
2142
|
+
dependencies: [];
|
|
2143
|
+
pluginConfiguration?: {
|
|
2144
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2145
|
+
} | undefined;
|
|
2146
|
+
commands: {
|
|
2147
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2148
|
+
};
|
|
2149
|
+
}, {
|
|
2150
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2151
|
+
} | undefined>>];
|
|
2108
2152
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
2109
2153
|
actions: {
|
|
2110
2154
|
getAvatarColor: (str: string) => {
|
|
@@ -3144,7 +3188,18 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3144
3188
|
sharedState: FeatureFlags;
|
|
3145
3189
|
}, FeatureFlags>>];
|
|
3146
3190
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
3147
|
-
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions
|
|
3191
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
3192
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
3193
|
+
dependencies: [];
|
|
3194
|
+
pluginConfiguration?: {
|
|
3195
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
3196
|
+
} | undefined;
|
|
3197
|
+
commands: {
|
|
3198
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3199
|
+
};
|
|
3200
|
+
}, {
|
|
3201
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
3202
|
+
} | undefined>>];
|
|
3148
3203
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
3149
3204
|
actions: {
|
|
3150
3205
|
getAvatarColor: (str: string) => {
|
|
@@ -3272,7 +3327,18 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3272
3327
|
sharedState: FeatureFlags;
|
|
3273
3328
|
}, FeatureFlags>>];
|
|
3274
3329
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
3275
|
-
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions
|
|
3330
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
3331
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
3332
|
+
dependencies: [];
|
|
3333
|
+
pluginConfiguration?: {
|
|
3334
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
3335
|
+
} | undefined;
|
|
3336
|
+
commands: {
|
|
3337
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3338
|
+
};
|
|
3339
|
+
}, {
|
|
3340
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
3341
|
+
} | undefined>>];
|
|
3276
3342
|
sharedState: import("@atlaskit/editor-plugin-collab-edit").CollabEditPluginSharedState;
|
|
3277
3343
|
actions: {
|
|
3278
3344
|
getAvatarColor: (str: string) => {
|
|
@@ -495,7 +495,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
495
495
|
sharedState: FeatureFlags;
|
|
496
496
|
}, FeatureFlags>>];
|
|
497
497
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
498
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
498
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
499
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
500
|
+
dependencies: [];
|
|
501
|
+
pluginConfiguration?: {
|
|
502
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
503
|
+
} | undefined;
|
|
504
|
+
commands: {
|
|
505
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
506
|
+
};
|
|
507
|
+
}, {
|
|
508
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
509
|
+
} | undefined>>];
|
|
499
510
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
500
511
|
actions: {
|
|
501
512
|
getAvatarColor: (str: string) => {
|
|
@@ -623,7 +634,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
623
634
|
sharedState: FeatureFlags;
|
|
624
635
|
}, FeatureFlags>>];
|
|
625
636
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
626
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
637
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
638
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
639
|
+
dependencies: [];
|
|
640
|
+
pluginConfiguration?: {
|
|
641
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
642
|
+
} | undefined;
|
|
643
|
+
commands: {
|
|
644
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
645
|
+
};
|
|
646
|
+
}, {
|
|
647
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
648
|
+
} | undefined>>];
|
|
627
649
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
628
650
|
actions: {
|
|
629
651
|
getAvatarColor: (str: string) => {
|
|
@@ -733,7 +755,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
733
755
|
sharedState: FeatureFlags;
|
|
734
756
|
}, FeatureFlags>>];
|
|
735
757
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
736
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
758
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
759
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
760
|
+
dependencies: [];
|
|
761
|
+
pluginConfiguration?: {
|
|
762
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
763
|
+
} | undefined;
|
|
764
|
+
commands: {
|
|
765
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
766
|
+
};
|
|
767
|
+
}, {
|
|
768
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
769
|
+
} | undefined>>];
|
|
737
770
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
738
771
|
actions: {
|
|
739
772
|
getAvatarColor: (str: string) => {
|
|
@@ -1282,7 +1315,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
1282
1315
|
sharedState: FeatureFlags;
|
|
1283
1316
|
}, FeatureFlags>>];
|
|
1284
1317
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
1285
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
1318
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
1319
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
1320
|
+
dependencies: [];
|
|
1321
|
+
pluginConfiguration?: {
|
|
1322
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1323
|
+
} | undefined;
|
|
1324
|
+
commands: {
|
|
1325
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1326
|
+
};
|
|
1327
|
+
}, {
|
|
1328
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1329
|
+
} | undefined>>];
|
|
1286
1330
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
1287
1331
|
actions: {
|
|
1288
1332
|
getAvatarColor: (str: string) => {
|
|
@@ -1420,7 +1464,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
1420
1464
|
sharedState: FeatureFlags;
|
|
1421
1465
|
}, FeatureFlags>>];
|
|
1422
1466
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
1423
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
1467
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
1468
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
1469
|
+
dependencies: [];
|
|
1470
|
+
pluginConfiguration?: {
|
|
1471
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1472
|
+
} | undefined;
|
|
1473
|
+
commands: {
|
|
1474
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1475
|
+
};
|
|
1476
|
+
}, {
|
|
1477
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1478
|
+
} | undefined>>];
|
|
1424
1479
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
1425
1480
|
actions: {
|
|
1426
1481
|
getAvatarColor: (str: string) => {
|
|
@@ -1671,7 +1726,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
1671
1726
|
sharedState: FeatureFlags;
|
|
1672
1727
|
}, FeatureFlags>>];
|
|
1673
1728
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
1674
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
1729
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
1730
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
1731
|
+
dependencies: [];
|
|
1732
|
+
pluginConfiguration?: {
|
|
1733
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1734
|
+
} | undefined;
|
|
1735
|
+
commands: {
|
|
1736
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1737
|
+
};
|
|
1738
|
+
}, {
|
|
1739
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
1740
|
+
} | undefined>>];
|
|
1675
1741
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
1676
1742
|
actions: {
|
|
1677
1743
|
getAvatarColor: (str: string) => {
|
|
@@ -2345,7 +2411,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
2345
2411
|
sharedState: FeatureFlags;
|
|
2346
2412
|
}, FeatureFlags>>];
|
|
2347
2413
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
2348
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
2414
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
2415
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
2416
|
+
dependencies: [];
|
|
2417
|
+
pluginConfiguration?: {
|
|
2418
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2419
|
+
} | undefined;
|
|
2420
|
+
commands: {
|
|
2421
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2422
|
+
};
|
|
2423
|
+
}, {
|
|
2424
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2425
|
+
} | undefined>>];
|
|
2349
2426
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
2350
2427
|
actions: {
|
|
2351
2428
|
getAvatarColor: (str: string) => {
|
|
@@ -2425,7 +2502,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
2425
2502
|
sharedState: FeatureFlags;
|
|
2426
2503
|
}, FeatureFlags>>];
|
|
2427
2504
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
2428
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
2505
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
2506
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
2507
|
+
dependencies: [];
|
|
2508
|
+
pluginConfiguration?: {
|
|
2509
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2510
|
+
} | undefined;
|
|
2511
|
+
commands: {
|
|
2512
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2513
|
+
};
|
|
2514
|
+
}, {
|
|
2515
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
2516
|
+
} | undefined>>];
|
|
2429
2517
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
2430
2518
|
actions: {
|
|
2431
2519
|
getAvatarColor: (str: string) => {
|
|
@@ -3113,7 +3201,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
3113
3201
|
sharedState: FeatureFlags;
|
|
3114
3202
|
}, FeatureFlags>>];
|
|
3115
3203
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
3116
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
3204
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
3205
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
3206
|
+
dependencies: [];
|
|
3207
|
+
pluginConfiguration?: {
|
|
3208
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
3209
|
+
} | undefined;
|
|
3210
|
+
commands: {
|
|
3211
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3212
|
+
};
|
|
3213
|
+
}, {
|
|
3214
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
3215
|
+
} | undefined>>];
|
|
3117
3216
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
3118
3217
|
actions: {
|
|
3119
3218
|
getAvatarColor: (str: string) => {
|
|
@@ -4153,7 +4252,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
4153
4252
|
sharedState: FeatureFlags;
|
|
4154
4253
|
}, FeatureFlags>>];
|
|
4155
4254
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
4156
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
4255
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
4256
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
4257
|
+
dependencies: [];
|
|
4258
|
+
pluginConfiguration?: {
|
|
4259
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
4260
|
+
} | undefined;
|
|
4261
|
+
commands: {
|
|
4262
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4263
|
+
};
|
|
4264
|
+
}, {
|
|
4265
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
4266
|
+
} | undefined>>];
|
|
4157
4267
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
4158
4268
|
actions: {
|
|
4159
4269
|
getAvatarColor: (str: string) => {
|
|
@@ -4281,7 +4391,18 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
4281
4391
|
sharedState: FeatureFlags;
|
|
4282
4392
|
}, FeatureFlags>>];
|
|
4283
4393
|
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
4284
|
-
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions
|
|
4394
|
+
}, import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"editorViewMode", {
|
|
4395
|
+
sharedState: import("@atlaskit/editor-plugin-editor-viewmode").EditorViewModePluginState | null;
|
|
4396
|
+
dependencies: [];
|
|
4397
|
+
pluginConfiguration?: {
|
|
4398
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
4399
|
+
} | undefined;
|
|
4400
|
+
commands: {
|
|
4401
|
+
updateViewMode: (mode: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4402
|
+
};
|
|
4403
|
+
}, {
|
|
4404
|
+
mode?: import("@atlaskit/editor-plugin-editor-viewmode").ViewMode | undefined;
|
|
4405
|
+
} | undefined>>];
|
|
4285
4406
|
sharedState: import("@atlaskit/editor-plugins/collab-edit").CollabEditPluginSharedState;
|
|
4286
4407
|
actions: {
|
|
4287
4408
|
getAvatarColor: (str: string) => {
|