@atlaskit/editor-core 195.6.2 → 195.7.0
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 +17 -0
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/ui/Appearance/FullPage/FullPage.js +1 -0
- package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea.js +64 -60
- package/dist/cjs/ui/ContextPanel/deprecated.js +283 -0
- package/dist/cjs/ui/ContextPanel/index.js +26 -133
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/index.js +6 -1
- package/dist/es2019/ui/Appearance/FullPage/FullPage.js +1 -0
- package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea.js +4 -1
- package/dist/es2019/ui/ContextPanel/deprecated.js +258 -0
- package/dist/es2019/ui/ContextPanel/index.js +24 -133
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/index.js +6 -1
- package/dist/esm/ui/Appearance/FullPage/FullPage.js +1 -0
- package/dist/esm/ui/Appearance/FullPage/FullPageContentArea.js +64 -60
- package/dist/esm/ui/ContextPanel/deprecated.js +277 -0
- package/dist/esm/ui/ContextPanel/index.js +24 -132
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/create-universal-preset.d.ts +78 -0
- package/dist/types/index.d.ts +6 -1
- package/dist/types/presets/default.d.ts +66 -0
- package/dist/types/presets/universal.d.ts +78 -0
- package/dist/types/presets/useUniversalPreset.d.ts +78 -0
- package/dist/types/ui/Appearance/FullPage/FullPageContentArea.d.ts +3 -1
- package/dist/types/ui/ContextPanel/deprecated.d.ts +44 -0
- package/dist/types/ui/ContextPanel/index.d.ts +5 -9
- package/dist/types-ts4.5/create-editor/create-universal-preset.d.ts +78 -0
- package/dist/types-ts4.5/index.d.ts +6 -1
- package/dist/types-ts4.5/presets/default.d.ts +66 -0
- package/dist/types-ts4.5/presets/universal.d.ts +78 -0
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +78 -0
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageContentArea.d.ts +5 -1
- package/dist/types-ts4.5/ui/ContextPanel/deprecated.d.ts +44 -0
- package/dist/types-ts4.5/ui/ContextPanel/index.d.ts +7 -9
- package/package.json +6 -11
|
@@ -6,7 +6,12 @@ export { default as WithHelpTrigger } from './ui/WithHelpTrigger';
|
|
|
6
6
|
export { default as CollapsedEditor } from './ui/CollapsedEditor';
|
|
7
7
|
export { default as ToolbarHelp } from './ui/ToolbarHelp';
|
|
8
8
|
export { default as ToolbarFeedback } from './ui/ToolbarFeedback';
|
|
9
|
-
export {
|
|
9
|
+
export {
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated
|
|
12
|
+
* DO NOT USE THIS WILL BE REMOVED SOON. This was intended for internal usage only
|
|
13
|
+
*/
|
|
14
|
+
default as ContextPanel, } from './ui/ContextPanel/deprecated';
|
|
10
15
|
export { EmojiResource } from '@atlaskit/emoji/resource';
|
|
11
16
|
export { MentionResource } from '@atlaskit/mention/resource';
|
|
12
17
|
export type { MentionProvider, PresenceProvider } from '@atlaskit/mention/resource';
|
|
@@ -134,6 +134,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
134
134
|
actions: {
|
|
135
135
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
136
136
|
};
|
|
137
|
+
sharedState: {
|
|
138
|
+
contents: import("react").ReactNode[] | undefined;
|
|
139
|
+
} | undefined;
|
|
137
140
|
}, undefined>>,
|
|
138
141
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
139
142
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -171,6 +174,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
171
174
|
actions: {
|
|
172
175
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
173
176
|
};
|
|
177
|
+
sharedState: {
|
|
178
|
+
contents: import("react").ReactNode[] | undefined;
|
|
179
|
+
} | undefined;
|
|
174
180
|
}, undefined>>,
|
|
175
181
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
176
182
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -403,6 +409,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
403
409
|
actions: {
|
|
404
410
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
405
411
|
};
|
|
412
|
+
sharedState: {
|
|
413
|
+
contents: import("react").ReactNode[] | undefined;
|
|
414
|
+
} | undefined;
|
|
406
415
|
}, undefined>>,
|
|
407
416
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
408
417
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -440,6 +449,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
440
449
|
actions: {
|
|
441
450
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
442
451
|
};
|
|
452
|
+
sharedState: {
|
|
453
|
+
contents: import("react").ReactNode[] | undefined;
|
|
454
|
+
} | undefined;
|
|
443
455
|
}, undefined>>,
|
|
444
456
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
445
457
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -955,6 +967,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
955
967
|
actions: {
|
|
956
968
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
957
969
|
};
|
|
970
|
+
sharedState: {
|
|
971
|
+
contents: import("react").ReactNode[] | undefined;
|
|
972
|
+
} | undefined;
|
|
958
973
|
}, undefined>>,
|
|
959
974
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
960
975
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -992,6 +1007,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
992
1007
|
actions: {
|
|
993
1008
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
994
1009
|
};
|
|
1010
|
+
sharedState: {
|
|
1011
|
+
contents: import("react").ReactNode[] | undefined;
|
|
1012
|
+
} | undefined;
|
|
995
1013
|
}, undefined>>,
|
|
996
1014
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
997
1015
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -1494,6 +1512,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1494
1512
|
actions: {
|
|
1495
1513
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
1496
1514
|
};
|
|
1515
|
+
sharedState: {
|
|
1516
|
+
contents: import("react").ReactNode[] | undefined;
|
|
1517
|
+
} | undefined;
|
|
1497
1518
|
}, undefined>>,
|
|
1498
1519
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
1499
1520
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -1531,6 +1552,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1531
1552
|
actions: {
|
|
1532
1553
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
1533
1554
|
};
|
|
1555
|
+
sharedState: {
|
|
1556
|
+
contents: import("react").ReactNode[] | undefined;
|
|
1557
|
+
} | undefined;
|
|
1534
1558
|
}, undefined>>,
|
|
1535
1559
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
1536
1560
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -1760,6 +1784,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1760
1784
|
actions: {
|
|
1761
1785
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
1762
1786
|
};
|
|
1787
|
+
sharedState: {
|
|
1788
|
+
contents: import("react").ReactNode[] | undefined;
|
|
1789
|
+
} | undefined;
|
|
1763
1790
|
}, undefined>>,
|
|
1764
1791
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
1765
1792
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -1797,6 +1824,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1797
1824
|
actions: {
|
|
1798
1825
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
1799
1826
|
};
|
|
1827
|
+
sharedState: {
|
|
1828
|
+
contents: import("react").ReactNode[] | undefined;
|
|
1829
|
+
} | undefined;
|
|
1800
1830
|
}, undefined>>,
|
|
1801
1831
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
1802
1832
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -2079,6 +2109,9 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
2079
2109
|
actions: {
|
|
2080
2110
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
2081
2111
|
};
|
|
2112
|
+
sharedState: {
|
|
2113
|
+
contents: import("react").ReactNode[] | undefined;
|
|
2114
|
+
} | undefined;
|
|
2082
2115
|
}, undefined>>,
|
|
2083
2116
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
2084
2117
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -2407,6 +2440,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2407
2440
|
actions: {
|
|
2408
2441
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
2409
2442
|
};
|
|
2443
|
+
sharedState: {
|
|
2444
|
+
contents: import("react").ReactNode[] | undefined;
|
|
2445
|
+
} | undefined;
|
|
2410
2446
|
}, undefined>>,
|
|
2411
2447
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
2412
2448
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -2444,6 +2480,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2444
2480
|
actions: {
|
|
2445
2481
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
2446
2482
|
};
|
|
2483
|
+
sharedState: {
|
|
2484
|
+
contents: import("react").ReactNode[] | undefined;
|
|
2485
|
+
} | undefined;
|
|
2447
2486
|
}, undefined>>,
|
|
2448
2487
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
2449
2488
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -2676,6 +2715,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2676
2715
|
actions: {
|
|
2677
2716
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
2678
2717
|
};
|
|
2718
|
+
sharedState: {
|
|
2719
|
+
contents: import("react").ReactNode[] | undefined;
|
|
2720
|
+
} | undefined;
|
|
2679
2721
|
}, undefined>>,
|
|
2680
2722
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
2681
2723
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -2713,6 +2755,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2713
2755
|
actions: {
|
|
2714
2756
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
2715
2757
|
};
|
|
2758
|
+
sharedState: {
|
|
2759
|
+
contents: import("react").ReactNode[] | undefined;
|
|
2760
|
+
} | undefined;
|
|
2716
2761
|
}, undefined>>,
|
|
2717
2762
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
2718
2763
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -3228,6 +3273,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3228
3273
|
actions: {
|
|
3229
3274
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
3230
3275
|
};
|
|
3276
|
+
sharedState: {
|
|
3277
|
+
contents: import("react").ReactNode[] | undefined;
|
|
3278
|
+
} | undefined;
|
|
3231
3279
|
}, undefined>>,
|
|
3232
3280
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
3233
3281
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -3265,6 +3313,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3265
3313
|
actions: {
|
|
3266
3314
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
3267
3315
|
};
|
|
3316
|
+
sharedState: {
|
|
3317
|
+
contents: import("react").ReactNode[] | undefined;
|
|
3318
|
+
} | undefined;
|
|
3268
3319
|
}, undefined>>,
|
|
3269
3320
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
3270
3321
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -3767,6 +3818,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3767
3818
|
actions: {
|
|
3768
3819
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
3769
3820
|
};
|
|
3821
|
+
sharedState: {
|
|
3822
|
+
contents: import("react").ReactNode[] | undefined;
|
|
3823
|
+
} | undefined;
|
|
3770
3824
|
}, undefined>>,
|
|
3771
3825
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
3772
3826
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -3804,6 +3858,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3804
3858
|
actions: {
|
|
3805
3859
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
3806
3860
|
};
|
|
3861
|
+
sharedState: {
|
|
3862
|
+
contents: import("react").ReactNode[] | undefined;
|
|
3863
|
+
} | undefined;
|
|
3807
3864
|
}, undefined>>,
|
|
3808
3865
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
3809
3866
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -4033,6 +4090,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4033
4090
|
actions: {
|
|
4034
4091
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
4035
4092
|
};
|
|
4093
|
+
sharedState: {
|
|
4094
|
+
contents: import("react").ReactNode[] | undefined;
|
|
4095
|
+
} | undefined;
|
|
4036
4096
|
}, undefined>>,
|
|
4037
4097
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
4038
4098
|
pluginConfiguration: import("@atlaskit/editor-plugin-extension").ExtensionPluginOptions | undefined;
|
|
@@ -4070,6 +4130,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4070
4130
|
actions: {
|
|
4071
4131
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
4072
4132
|
};
|
|
4133
|
+
sharedState: {
|
|
4134
|
+
contents: import("react").ReactNode[] | undefined;
|
|
4135
|
+
} | undefined;
|
|
4073
4136
|
}, undefined>>,
|
|
4074
4137
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
4075
4138
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -4352,6 +4415,9 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4352
4415
|
actions: {
|
|
4353
4416
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
4354
4417
|
};
|
|
4418
|
+
sharedState: {
|
|
4419
|
+
contents: import("react").ReactNode[] | undefined;
|
|
4420
|
+
} | undefined;
|
|
4355
4421
|
}, undefined>>,
|
|
4356
4422
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
4357
4423
|
pluginConfiguration: import("@atlaskit/editor-plugins/context-identifier").PluginConfiguration | undefined;
|
|
@@ -260,6 +260,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
260
260
|
actions: {
|
|
261
261
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
262
262
|
};
|
|
263
|
+
sharedState: {
|
|
264
|
+
contents: import("react").ReactNode[] | undefined;
|
|
265
|
+
} | undefined;
|
|
263
266
|
}, undefined>>,
|
|
264
267
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
265
268
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -297,6 +300,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
297
300
|
actions: {
|
|
298
301
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
299
302
|
};
|
|
303
|
+
sharedState: {
|
|
304
|
+
contents: import("react").ReactNode[] | undefined;
|
|
305
|
+
} | undefined;
|
|
300
306
|
}, undefined>>,
|
|
301
307
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
302
308
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -526,6 +532,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
526
532
|
actions: {
|
|
527
533
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
528
534
|
};
|
|
535
|
+
sharedState: {
|
|
536
|
+
contents: import("react").ReactNode[] | undefined;
|
|
537
|
+
} | undefined;
|
|
529
538
|
}, undefined>>,
|
|
530
539
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
531
540
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -563,6 +572,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
563
572
|
actions: {
|
|
564
573
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
565
574
|
};
|
|
575
|
+
sharedState: {
|
|
576
|
+
contents: import("react").ReactNode[] | undefined;
|
|
577
|
+
} | undefined;
|
|
566
578
|
}, undefined>>,
|
|
567
579
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
568
580
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -845,6 +857,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
845
857
|
actions: {
|
|
846
858
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
847
859
|
};
|
|
860
|
+
sharedState: {
|
|
861
|
+
contents: import("react").ReactNode[] | undefined;
|
|
862
|
+
} | undefined;
|
|
848
863
|
}, undefined>>,
|
|
849
864
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
850
865
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -1548,6 +1563,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
1548
1563
|
actions: {
|
|
1549
1564
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
1550
1565
|
};
|
|
1566
|
+
sharedState: {
|
|
1567
|
+
contents: import("react").ReactNode[] | undefined;
|
|
1568
|
+
} | undefined;
|
|
1551
1569
|
}, undefined>>,
|
|
1552
1570
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
1553
1571
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -1585,6 +1603,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
1585
1603
|
actions: {
|
|
1586
1604
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
1587
1605
|
};
|
|
1606
|
+
sharedState: {
|
|
1607
|
+
contents: import("react").ReactNode[] | undefined;
|
|
1608
|
+
} | undefined;
|
|
1588
1609
|
}, undefined>>,
|
|
1589
1610
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
1590
1611
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -1984,6 +2005,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
1984
2005
|
actions: {
|
|
1985
2006
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
1986
2007
|
};
|
|
2008
|
+
sharedState: {
|
|
2009
|
+
contents: import("react").ReactNode[] | undefined;
|
|
2010
|
+
} | undefined;
|
|
1987
2011
|
}, undefined>>,
|
|
1988
2012
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
1989
2013
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -2010,6 +2034,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
2010
2034
|
actions: {
|
|
2011
2035
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
2012
2036
|
};
|
|
2037
|
+
sharedState: {
|
|
2038
|
+
contents: import("react").ReactNode[] | undefined;
|
|
2039
|
+
} | undefined;
|
|
2013
2040
|
}, undefined> | undefined,
|
|
2014
2041
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
2015
2042
|
pluginConfiguration: import("@atlaskit/editor-plugins/panel").PanelPluginOptions | undefined;
|
|
@@ -2187,6 +2214,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
2187
2214
|
actions: {
|
|
2188
2215
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
2189
2216
|
};
|
|
2217
|
+
sharedState: {
|
|
2218
|
+
contents: import("react").ReactNode[] | undefined;
|
|
2219
|
+
} | undefined;
|
|
2190
2220
|
}, undefined>>,
|
|
2191
2221
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
2192
2222
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -2224,6 +2254,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
2224
2254
|
actions: {
|
|
2225
2255
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
2226
2256
|
};
|
|
2257
|
+
sharedState: {
|
|
2258
|
+
contents: import("react").ReactNode[] | undefined;
|
|
2259
|
+
} | undefined;
|
|
2227
2260
|
}, undefined>>,
|
|
2228
2261
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
2229
2262
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -3067,6 +3100,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
3067
3100
|
actions: {
|
|
3068
3101
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
3069
3102
|
};
|
|
3103
|
+
sharedState: {
|
|
3104
|
+
contents: import("react").ReactNode[] | undefined;
|
|
3105
|
+
} | undefined;
|
|
3070
3106
|
}, undefined>>,
|
|
3071
3107
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
3072
3108
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -3104,6 +3140,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
3104
3140
|
actions: {
|
|
3105
3141
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
3106
3142
|
};
|
|
3143
|
+
sharedState: {
|
|
3144
|
+
contents: import("react").ReactNode[] | undefined;
|
|
3145
|
+
} | undefined;
|
|
3107
3146
|
}, undefined>>,
|
|
3108
3147
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
3109
3148
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -3441,6 +3480,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
3441
3480
|
actions: {
|
|
3442
3481
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
3443
3482
|
};
|
|
3483
|
+
sharedState: {
|
|
3484
|
+
contents: import("react").ReactNode[] | undefined;
|
|
3485
|
+
} | undefined;
|
|
3444
3486
|
}, undefined>>,
|
|
3445
3487
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
3446
3488
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -3478,6 +3520,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
3478
3520
|
actions: {
|
|
3479
3521
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
3480
3522
|
};
|
|
3523
|
+
sharedState: {
|
|
3524
|
+
contents: import("react").ReactNode[] | undefined;
|
|
3525
|
+
} | undefined;
|
|
3481
3526
|
}, undefined>>,
|
|
3482
3527
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
3483
3528
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -4182,6 +4227,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
4182
4227
|
actions: {
|
|
4183
4228
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
4184
4229
|
};
|
|
4230
|
+
sharedState: {
|
|
4231
|
+
contents: import("react").ReactNode[] | undefined;
|
|
4232
|
+
} | undefined;
|
|
4185
4233
|
}, undefined>>,
|
|
4186
4234
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
4187
4235
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -4219,6 +4267,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
4219
4267
|
actions: {
|
|
4220
4268
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
4221
4269
|
};
|
|
4270
|
+
sharedState: {
|
|
4271
|
+
contents: import("react").ReactNode[] | undefined;
|
|
4272
|
+
} | undefined;
|
|
4222
4273
|
}, undefined>>,
|
|
4223
4274
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
4224
4275
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -4451,6 +4502,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
4451
4502
|
actions: {
|
|
4452
4503
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
4453
4504
|
};
|
|
4505
|
+
sharedState: {
|
|
4506
|
+
contents: import("react").ReactNode[] | undefined;
|
|
4507
|
+
} | undefined;
|
|
4454
4508
|
}, undefined>>,
|
|
4455
4509
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
4456
4510
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -4488,6 +4542,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
4488
4542
|
actions: {
|
|
4489
4543
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
4490
4544
|
};
|
|
4545
|
+
sharedState: {
|
|
4546
|
+
contents: import("react").ReactNode[] | undefined;
|
|
4547
|
+
} | undefined;
|
|
4491
4548
|
}, undefined>>,
|
|
4492
4549
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
4493
4550
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -5003,6 +5060,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
5003
5060
|
actions: {
|
|
5004
5061
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
5005
5062
|
};
|
|
5063
|
+
sharedState: {
|
|
5064
|
+
contents: import("react").ReactNode[] | undefined;
|
|
5065
|
+
} | undefined;
|
|
5006
5066
|
}, undefined>>,
|
|
5007
5067
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
5008
5068
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -5040,6 +5100,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
5040
5100
|
actions: {
|
|
5041
5101
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
5042
5102
|
};
|
|
5103
|
+
sharedState: {
|
|
5104
|
+
contents: import("react").ReactNode[] | undefined;
|
|
5105
|
+
} | undefined;
|
|
5043
5106
|
}, undefined>>,
|
|
5044
5107
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
5045
5108
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -5542,6 +5605,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
5542
5605
|
actions: {
|
|
5543
5606
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
5544
5607
|
};
|
|
5608
|
+
sharedState: {
|
|
5609
|
+
contents: import("react").ReactNode[] | undefined;
|
|
5610
|
+
} | undefined;
|
|
5545
5611
|
}, undefined>>,
|
|
5546
5612
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
5547
5613
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -5579,6 +5645,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
5579
5645
|
actions: {
|
|
5580
5646
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
5581
5647
|
};
|
|
5648
|
+
sharedState: {
|
|
5649
|
+
contents: import("react").ReactNode[] | undefined;
|
|
5650
|
+
} | undefined;
|
|
5582
5651
|
}, undefined>>,
|
|
5583
5652
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
5584
5653
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -5808,6 +5877,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
5808
5877
|
actions: {
|
|
5809
5878
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
5810
5879
|
};
|
|
5880
|
+
sharedState: {
|
|
5881
|
+
contents: import("react").ReactNode[] | undefined;
|
|
5882
|
+
} | undefined;
|
|
5811
5883
|
}, undefined>>,
|
|
5812
5884
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"extension", {
|
|
5813
5885
|
pluginConfiguration: import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined;
|
|
@@ -5845,6 +5917,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
5845
5917
|
actions: {
|
|
5846
5918
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
5847
5919
|
};
|
|
5920
|
+
sharedState: {
|
|
5921
|
+
contents: import("react").ReactNode[] | undefined;
|
|
5922
|
+
} | undefined;
|
|
5848
5923
|
}, undefined>>,
|
|
5849
5924
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
5850
5925
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|
|
@@ -6127,6 +6202,9 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
6127
6202
|
actions: {
|
|
6128
6203
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
6129
6204
|
};
|
|
6205
|
+
sharedState: {
|
|
6206
|
+
contents: import("react").ReactNode[] | undefined;
|
|
6207
|
+
} | undefined;
|
|
6130
6208
|
}, undefined>>,
|
|
6131
6209
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextIdentifier", {
|
|
6132
6210
|
pluginConfiguration: import("@atlaskit/editor-plugin-context-identifier").PluginConfiguration | undefined;
|