@atlaskit/editor-core 205.1.5 → 205.1.7
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 +18 -0
- package/dist/cjs/ui/ContentStyles/date.js +34 -1
- package/dist/cjs/ui/ContentStyles/index.js +60 -9
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/ContentStyles/date.js +33 -0
- package/dist/es2019/ui/ContentStyles/index.js +74 -3
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/ContentStyles/date.js +33 -0
- package/dist/esm/ui/ContentStyles/index.js +61 -10
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/create-universal-preset.d.ts +48 -44
- package/dist/types/presets/universal.d.ts +48 -44
- package/dist/types/presets/useUniversalPreset.d.ts +48 -44
- package/dist/types/ui/ContentStyles/date.d.ts +1 -0
- package/dist/types-ts4.5/create-editor/create-universal-preset.d.ts +57 -44
- package/dist/types-ts4.5/presets/universal.d.ts +57 -44
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +57 -44
- package/dist/types-ts4.5/ui/ContentStyles/date.d.ts +1 -0
- package/package.json +9 -2
|
@@ -472,20 +472,12 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
472
472
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
473
473
|
}) => boolean;
|
|
474
474
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
475
|
-
open: (props:
|
|
476
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
477
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
478
|
-
query?: string | undefined;
|
|
479
|
-
}) => boolean;
|
|
475
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
480
476
|
close: (props: {
|
|
481
477
|
insertCurrentQueryAsRawText: boolean;
|
|
482
478
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
483
479
|
}) => boolean;
|
|
484
|
-
openAtTransaction: (props:
|
|
485
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
486
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
487
|
-
query?: string | undefined;
|
|
488
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
480
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
489
481
|
};
|
|
490
482
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>];
|
|
491
483
|
}, import("@atlaskit/editor-plugins/placeholder").PlaceholderPluginOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"quickInsert", {
|
|
@@ -536,20 +528,12 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
536
528
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
537
529
|
}) => boolean;
|
|
538
530
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
539
|
-
open: (props:
|
|
540
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
541
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
542
|
-
query?: string | undefined;
|
|
543
|
-
}) => boolean;
|
|
531
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
544
532
|
close: (props: {
|
|
545
533
|
insertCurrentQueryAsRawText: boolean;
|
|
546
534
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
547
535
|
}) => boolean;
|
|
548
|
-
openAtTransaction: (props:
|
|
549
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
550
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
551
|
-
query?: string | undefined;
|
|
552
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
536
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
553
537
|
};
|
|
554
538
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
555
539
|
sharedState: import("packages/editor/editor-plugin-connectivity/dist/types/connectivityPluginType").PublicPluginState;
|
|
@@ -559,7 +543,7 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
559
543
|
}, undefined>>];
|
|
560
544
|
sharedState: import("@atlaskit/editor-plugin-quick-insert").QuickInsertSharedState | null;
|
|
561
545
|
actions: {
|
|
562
|
-
openTypeAhead: (inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod) => boolean;
|
|
546
|
+
openTypeAhead: (inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod, removePrefixTriggerOnCancel?: boolean | undefined) => boolean;
|
|
563
547
|
insertItem: (item: import("@atlaskit/editor-common/provider-factory").QuickInsertItem, source?: import("@atlaskit/editor-common/analytics").INPUT_METHOD.QUICK_INSERT | import("@atlaskit/editor-common/analytics").INPUT_METHOD.TOOLBAR | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
564
548
|
getSuggestions: (searchOptions: import("@atlaskit/editor-common/types").QuickInsertSearchOptions) => import("@atlaskit/editor-common/provider-factory").QuickInsertItem[];
|
|
565
549
|
};
|
|
@@ -644,7 +628,19 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
644
628
|
} | undefined;
|
|
645
629
|
}, {
|
|
646
630
|
contextualFormattingEnabled?: boolean | undefined;
|
|
647
|
-
} | undefined
|
|
631
|
+
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
632
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions;
|
|
633
|
+
sharedState: {
|
|
634
|
+
createAnalyticsEvent: import("@atlaskit/analytics-next").CreateUIAnalyticsEvent | null;
|
|
635
|
+
attachAnalyticsEvent: import("@atlaskit/editor-plugins/analytics").CreateAttachPayloadIntoTransaction | null;
|
|
636
|
+
performanceTracking: import("@atlaskit/editor-common/types").PerformanceTracking | undefined;
|
|
637
|
+
};
|
|
638
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
639
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
640
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
641
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
642
|
+
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
643
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>];
|
|
648
644
|
actions?: {
|
|
649
645
|
suppressToolbar?: (() => boolean) | undefined;
|
|
650
646
|
unsuppressToolbar?: (() => boolean) | undefined;
|
|
@@ -705,7 +701,19 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
705
701
|
} | undefined;
|
|
706
702
|
}, {
|
|
707
703
|
contextualFormattingEnabled?: boolean | undefined;
|
|
708
|
-
} | undefined
|
|
704
|
+
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
705
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions;
|
|
706
|
+
sharedState: {
|
|
707
|
+
createAnalyticsEvent: import("@atlaskit/analytics-next").CreateUIAnalyticsEvent | null;
|
|
708
|
+
attachAnalyticsEvent: import("@atlaskit/editor-plugins/analytics").CreateAttachPayloadIntoTransaction | null;
|
|
709
|
+
performanceTracking: import("@atlaskit/editor-common/types").PerformanceTracking | undefined;
|
|
710
|
+
};
|
|
711
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
712
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
713
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
714
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
715
|
+
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
716
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>];
|
|
709
717
|
actions?: {
|
|
710
718
|
suppressToolbar?: (() => boolean) | undefined;
|
|
711
719
|
unsuppressToolbar?: (() => boolean) | undefined;
|
|
@@ -772,7 +780,19 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
772
780
|
} | undefined;
|
|
773
781
|
}, {
|
|
774
782
|
contextualFormattingEnabled?: boolean | undefined;
|
|
775
|
-
} | undefined
|
|
783
|
+
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
784
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions;
|
|
785
|
+
sharedState: {
|
|
786
|
+
createAnalyticsEvent: import("@atlaskit/analytics-next").CreateUIAnalyticsEvent | null;
|
|
787
|
+
attachAnalyticsEvent: import("@atlaskit/editor-plugins/analytics").CreateAttachPayloadIntoTransaction | null;
|
|
788
|
+
performanceTracking: import("@atlaskit/editor-common/types").PerformanceTracking | undefined;
|
|
789
|
+
};
|
|
790
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
791
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
792
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
793
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
794
|
+
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
795
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>];
|
|
776
796
|
actions?: {
|
|
777
797
|
suppressToolbar?: (() => boolean) | undefined;
|
|
778
798
|
unsuppressToolbar?: (() => boolean) | undefined;
|
|
@@ -839,20 +859,12 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
839
859
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
840
860
|
}) => boolean;
|
|
841
861
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
842
|
-
open: (props:
|
|
843
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
844
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
845
|
-
query?: string | undefined;
|
|
846
|
-
}) => boolean;
|
|
862
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
847
863
|
close: (props: {
|
|
848
864
|
insertCurrentQueryAsRawText: boolean;
|
|
849
865
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
850
866
|
}) => boolean;
|
|
851
|
-
openAtTransaction: (props:
|
|
852
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
853
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
854
|
-
query?: string | undefined;
|
|
855
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
867
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
856
868
|
};
|
|
857
869
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"history", {
|
|
858
870
|
sharedState: import("packages/editor/editor-plugin-history/dist/types/historyPluginType").HistoryPluginSharedState | undefined;
|
|
@@ -941,20 +953,12 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
941
953
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
942
954
|
}) => boolean;
|
|
943
955
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
944
|
-
open: (props:
|
|
945
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
946
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
947
|
-
query?: string | undefined;
|
|
948
|
-
}) => boolean;
|
|
956
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
949
957
|
close: (props: {
|
|
950
958
|
insertCurrentQueryAsRawText: boolean;
|
|
951
959
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
952
960
|
}) => boolean;
|
|
953
|
-
openAtTransaction: (props:
|
|
954
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
955
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
956
|
-
query?: string | undefined;
|
|
957
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
961
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
958
962
|
};
|
|
959
963
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"decorations", {
|
|
960
964
|
sharedState: import("@atlaskit/editor-plugins/decorations").DecorationState;
|
|
@@ -524,20 +524,12 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
524
524
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
525
525
|
}) => boolean;
|
|
526
526
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
527
|
-
open: (props:
|
|
528
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
529
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
530
|
-
query?: string | undefined;
|
|
531
|
-
}) => boolean;
|
|
527
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
532
528
|
close: (props: {
|
|
533
529
|
insertCurrentQueryAsRawText: boolean;
|
|
534
530
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
535
531
|
}) => boolean;
|
|
536
|
-
openAtTransaction: (props:
|
|
537
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
538
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
539
|
-
query?: string | undefined;
|
|
540
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
532
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
541
533
|
};
|
|
542
534
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>];
|
|
543
535
|
}, import("@atlaskit/editor-plugins/placeholder").PlaceholderPluginOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"quickInsert", {
|
|
@@ -588,20 +580,12 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
588
580
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
589
581
|
}) => boolean;
|
|
590
582
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
591
|
-
open: (props:
|
|
592
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
593
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
594
|
-
query?: string | undefined;
|
|
595
|
-
}) => boolean;
|
|
583
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
596
584
|
close: (props: {
|
|
597
585
|
insertCurrentQueryAsRawText: boolean;
|
|
598
586
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
599
587
|
}) => boolean;
|
|
600
|
-
openAtTransaction: (props:
|
|
601
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
602
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
603
|
-
query?: string | undefined;
|
|
604
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
588
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
605
589
|
};
|
|
606
590
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
607
591
|
sharedState: import("packages/editor/editor-plugin-connectivity/dist/types/connectivityPluginType").PublicPluginState;
|
|
@@ -611,7 +595,7 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
611
595
|
}, undefined>>];
|
|
612
596
|
sharedState: import("@atlaskit/editor-plugin-quick-insert").QuickInsertSharedState | null;
|
|
613
597
|
actions: {
|
|
614
|
-
openTypeAhead: (inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod) => boolean;
|
|
598
|
+
openTypeAhead: (inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod, removePrefixTriggerOnCancel?: boolean | undefined) => boolean;
|
|
615
599
|
insertItem: (item: import("@atlaskit/editor-common/provider-factory").QuickInsertItem, source?: import("@atlaskit/editor-common/analytics").INPUT_METHOD.QUICK_INSERT | import("@atlaskit/editor-common/analytics").INPUT_METHOD.TOOLBAR | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
616
600
|
getSuggestions: (searchOptions: import("@atlaskit/editor-common/types").QuickInsertSearchOptions) => import("@atlaskit/editor-common/provider-factory").QuickInsertItem[];
|
|
617
601
|
};
|
|
@@ -696,7 +680,19 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
696
680
|
} | undefined;
|
|
697
681
|
}, {
|
|
698
682
|
contextualFormattingEnabled?: boolean | undefined;
|
|
699
|
-
} | undefined
|
|
683
|
+
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
684
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions;
|
|
685
|
+
sharedState: {
|
|
686
|
+
createAnalyticsEvent: CreateUIAnalyticsEvent | null;
|
|
687
|
+
attachAnalyticsEvent: import("@atlaskit/editor-plugins/analytics").CreateAttachPayloadIntoTransaction | null;
|
|
688
|
+
performanceTracking: import("@atlaskit/editor-common/types").PerformanceTracking | undefined;
|
|
689
|
+
};
|
|
690
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
691
|
+
pluginConfiguration: FeatureFlags;
|
|
692
|
+
sharedState: FeatureFlags;
|
|
693
|
+
}, FeatureFlags>>];
|
|
694
|
+
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
695
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>];
|
|
700
696
|
actions?: {
|
|
701
697
|
suppressToolbar?: (() => boolean) | undefined;
|
|
702
698
|
unsuppressToolbar?: (() => boolean) | undefined;
|
|
@@ -757,7 +753,19 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
757
753
|
} | undefined;
|
|
758
754
|
}, {
|
|
759
755
|
contextualFormattingEnabled?: boolean | undefined;
|
|
760
|
-
} | undefined
|
|
756
|
+
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
757
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions;
|
|
758
|
+
sharedState: {
|
|
759
|
+
createAnalyticsEvent: CreateUIAnalyticsEvent | null;
|
|
760
|
+
attachAnalyticsEvent: import("@atlaskit/editor-plugins/analytics").CreateAttachPayloadIntoTransaction | null;
|
|
761
|
+
performanceTracking: import("@atlaskit/editor-common/types").PerformanceTracking | undefined;
|
|
762
|
+
};
|
|
763
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
764
|
+
pluginConfiguration: FeatureFlags;
|
|
765
|
+
sharedState: FeatureFlags;
|
|
766
|
+
}, FeatureFlags>>];
|
|
767
|
+
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
768
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>];
|
|
761
769
|
actions?: {
|
|
762
770
|
suppressToolbar?: (() => boolean) | undefined;
|
|
763
771
|
unsuppressToolbar?: (() => boolean) | undefined;
|
|
@@ -824,7 +832,19 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
824
832
|
} | undefined;
|
|
825
833
|
}, {
|
|
826
834
|
contextualFormattingEnabled?: boolean | undefined;
|
|
827
|
-
} | undefined
|
|
835
|
+
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
836
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions;
|
|
837
|
+
sharedState: {
|
|
838
|
+
createAnalyticsEvent: CreateUIAnalyticsEvent | null;
|
|
839
|
+
attachAnalyticsEvent: import("@atlaskit/editor-plugins/analytics").CreateAttachPayloadIntoTransaction | null;
|
|
840
|
+
performanceTracking: import("@atlaskit/editor-common/types").PerformanceTracking | undefined;
|
|
841
|
+
};
|
|
842
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
843
|
+
pluginConfiguration: FeatureFlags;
|
|
844
|
+
sharedState: FeatureFlags;
|
|
845
|
+
}, FeatureFlags>>];
|
|
846
|
+
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
847
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>];
|
|
828
848
|
actions?: {
|
|
829
849
|
suppressToolbar?: (() => boolean) | undefined;
|
|
830
850
|
unsuppressToolbar?: (() => boolean) | undefined;
|
|
@@ -891,20 +911,12 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
891
911
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
892
912
|
}) => boolean;
|
|
893
913
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
894
|
-
open: (props:
|
|
895
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
896
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
897
|
-
query?: string | undefined;
|
|
898
|
-
}) => boolean;
|
|
914
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
899
915
|
close: (props: {
|
|
900
916
|
insertCurrentQueryAsRawText: boolean;
|
|
901
917
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
902
918
|
}) => boolean;
|
|
903
|
-
openAtTransaction: (props:
|
|
904
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
905
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
906
|
-
query?: string | undefined;
|
|
907
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
919
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
908
920
|
};
|
|
909
921
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"history", {
|
|
910
922
|
sharedState: import("packages/editor/editor-plugin-history/dist/types/historyPluginType").HistoryPluginSharedState | undefined;
|
|
@@ -993,20 +1005,12 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
993
1005
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
994
1006
|
}) => boolean;
|
|
995
1007
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
996
|
-
open: (props:
|
|
997
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
998
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
999
|
-
query?: string | undefined;
|
|
1000
|
-
}) => boolean;
|
|
1008
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
1001
1009
|
close: (props: {
|
|
1002
1010
|
insertCurrentQueryAsRawText: boolean;
|
|
1003
1011
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
1004
1012
|
}) => boolean;
|
|
1005
|
-
openAtTransaction: (props:
|
|
1006
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
1007
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
1008
|
-
query?: string | undefined;
|
|
1009
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
1013
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
1010
1014
|
};
|
|
1011
1015
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"decorations", {
|
|
1012
1016
|
sharedState: import("@atlaskit/editor-plugins/decorations").DecorationState;
|
|
@@ -472,20 +472,12 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
472
472
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
473
473
|
}) => boolean;
|
|
474
474
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
475
|
-
open: (props:
|
|
476
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
477
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
478
|
-
query?: string | undefined;
|
|
479
|
-
}) => boolean;
|
|
475
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
480
476
|
close: (props: {
|
|
481
477
|
insertCurrentQueryAsRawText: boolean;
|
|
482
478
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
483
479
|
}) => boolean;
|
|
484
|
-
openAtTransaction: (props:
|
|
485
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
486
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
487
|
-
query?: string | undefined;
|
|
488
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
480
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
489
481
|
};
|
|
490
482
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>];
|
|
491
483
|
}, import("@atlaskit/editor-plugins/placeholder").PlaceholderPluginOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"quickInsert", {
|
|
@@ -536,20 +528,12 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
536
528
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
537
529
|
}) => boolean;
|
|
538
530
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
539
|
-
open: (props:
|
|
540
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
541
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
542
|
-
query?: string | undefined;
|
|
543
|
-
}) => boolean;
|
|
531
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
544
532
|
close: (props: {
|
|
545
533
|
insertCurrentQueryAsRawText: boolean;
|
|
546
534
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
547
535
|
}) => boolean;
|
|
548
|
-
openAtTransaction: (props:
|
|
549
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
550
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
551
|
-
query?: string | undefined;
|
|
552
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
536
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
553
537
|
};
|
|
554
538
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
555
539
|
sharedState: import("packages/editor/editor-plugin-connectivity/dist/types/connectivityPluginType").PublicPluginState;
|
|
@@ -559,7 +543,7 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
559
543
|
}, undefined>>];
|
|
560
544
|
sharedState: import("@atlaskit/editor-plugin-quick-insert").QuickInsertSharedState | null;
|
|
561
545
|
actions: {
|
|
562
|
-
openTypeAhead: (inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod) => boolean;
|
|
546
|
+
openTypeAhead: (inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod, removePrefixTriggerOnCancel?: boolean | undefined) => boolean;
|
|
563
547
|
insertItem: (item: import("@atlaskit/editor-common/provider-factory").QuickInsertItem, source?: import("@atlaskit/editor-common/analytics").INPUT_METHOD.QUICK_INSERT | import("@atlaskit/editor-common/analytics").INPUT_METHOD.TOOLBAR | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
564
548
|
getSuggestions: (searchOptions: import("@atlaskit/editor-common/types").QuickInsertSearchOptions) => import("@atlaskit/editor-common/provider-factory").QuickInsertItem[];
|
|
565
549
|
};
|
|
@@ -644,7 +628,19 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
644
628
|
} | undefined;
|
|
645
629
|
}, {
|
|
646
630
|
contextualFormattingEnabled?: boolean | undefined;
|
|
647
|
-
} | undefined
|
|
631
|
+
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
632
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions;
|
|
633
|
+
sharedState: {
|
|
634
|
+
createAnalyticsEvent: import("@atlaskit/analytics-next").CreateUIAnalyticsEvent | null;
|
|
635
|
+
attachAnalyticsEvent: import("@atlaskit/editor-plugins/analytics").CreateAttachPayloadIntoTransaction | null;
|
|
636
|
+
performanceTracking: import("@atlaskit/editor-common/types").PerformanceTracking | undefined;
|
|
637
|
+
};
|
|
638
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
639
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
640
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
641
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
642
|
+
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
643
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>];
|
|
648
644
|
actions?: {
|
|
649
645
|
suppressToolbar?: (() => boolean) | undefined;
|
|
650
646
|
unsuppressToolbar?: (() => boolean) | undefined;
|
|
@@ -705,7 +701,19 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
705
701
|
} | undefined;
|
|
706
702
|
}, {
|
|
707
703
|
contextualFormattingEnabled?: boolean | undefined;
|
|
708
|
-
} | undefined
|
|
704
|
+
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
705
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions;
|
|
706
|
+
sharedState: {
|
|
707
|
+
createAnalyticsEvent: import("@atlaskit/analytics-next").CreateUIAnalyticsEvent | null;
|
|
708
|
+
attachAnalyticsEvent: import("@atlaskit/editor-plugins/analytics").CreateAttachPayloadIntoTransaction | null;
|
|
709
|
+
performanceTracking: import("@atlaskit/editor-common/types").PerformanceTracking | undefined;
|
|
710
|
+
};
|
|
711
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
712
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
713
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
714
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
715
|
+
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
716
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>];
|
|
709
717
|
actions?: {
|
|
710
718
|
suppressToolbar?: (() => boolean) | undefined;
|
|
711
719
|
unsuppressToolbar?: (() => boolean) | undefined;
|
|
@@ -772,7 +780,19 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
772
780
|
} | undefined;
|
|
773
781
|
}, {
|
|
774
782
|
contextualFormattingEnabled?: boolean | undefined;
|
|
775
|
-
} | undefined
|
|
783
|
+
} | undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
784
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions;
|
|
785
|
+
sharedState: {
|
|
786
|
+
createAnalyticsEvent: import("@atlaskit/analytics-next").CreateUIAnalyticsEvent | null;
|
|
787
|
+
attachAnalyticsEvent: import("@atlaskit/editor-plugins/analytics").CreateAttachPayloadIntoTransaction | null;
|
|
788
|
+
performanceTracking: import("@atlaskit/editor-common/types").PerformanceTracking | undefined;
|
|
789
|
+
};
|
|
790
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
791
|
+
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
792
|
+
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
793
|
+
}, import("@atlaskit/editor-common/types").FeatureFlags>>];
|
|
794
|
+
actions: import("@atlaskit/editor-common/analytics").EditorAnalyticsAPI;
|
|
795
|
+
}, import("@atlaskit/editor-plugins/analytics").AnalyticsPluginOptions>>];
|
|
776
796
|
actions?: {
|
|
777
797
|
suppressToolbar?: (() => boolean) | undefined;
|
|
778
798
|
unsuppressToolbar?: (() => boolean) | undefined;
|
|
@@ -839,20 +859,12 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
839
859
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
840
860
|
}) => boolean;
|
|
841
861
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
842
|
-
open: (props:
|
|
843
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
844
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
845
|
-
query?: string | undefined;
|
|
846
|
-
}) => boolean;
|
|
862
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
847
863
|
close: (props: {
|
|
848
864
|
insertCurrentQueryAsRawText: boolean;
|
|
849
865
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
850
866
|
}) => boolean;
|
|
851
|
-
openAtTransaction: (props:
|
|
852
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
853
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
854
|
-
query?: string | undefined;
|
|
855
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
867
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
856
868
|
};
|
|
857
869
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"history", {
|
|
858
870
|
sharedState: import("packages/editor/editor-plugin-history/dist/types/historyPluginType").HistoryPluginSharedState | undefined;
|
|
@@ -941,20 +953,12 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
941
953
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode | undefined;
|
|
942
954
|
}) => boolean;
|
|
943
955
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
944
|
-
open: (props:
|
|
945
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
946
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
947
|
-
query?: string | undefined;
|
|
948
|
-
}) => boolean;
|
|
956
|
+
open: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => boolean;
|
|
949
957
|
close: (props: {
|
|
950
958
|
insertCurrentQueryAsRawText: boolean;
|
|
951
959
|
attachCommand?: import("@atlaskit/editor-common/types").Command | undefined;
|
|
952
960
|
}) => boolean;
|
|
953
|
-
openAtTransaction: (props:
|
|
954
|
-
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
955
|
-
inputMethod: import("@atlaskit/editor-plugins/type-ahead").TypeAheadInputMethod;
|
|
956
|
-
query?: string | undefined;
|
|
957
|
-
}) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
961
|
+
openAtTransaction: (props: import("packages/editor/editor-plugin-type-ahead/dist/types/types").OpenTypeAheadProps) => (tr: import("prosemirror-state").Transaction) => boolean;
|
|
958
962
|
};
|
|
959
963
|
}, import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"decorations", {
|
|
960
964
|
sharedState: import("@atlaskit/editor-plugins/decorations").DecorationState;
|