@vue-pdf-viewer/viewer 3.8.0-beta.5 → 3.8.0-beta.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.
@@ -1,10 +1,10 @@
1
1
  import { PDFDocumentProxy } from 'pdfjs-dist/types/src/display/api';
2
2
  import type { PDFPageProxy } from 'pdfjs-dist/types/web/interfaces';
3
3
  import { type InjectionKey, type Slot, type Ref, type ComponentPublicInstance, type ShallowRef, type Reactive, type ComputedRef } from 'vue';
4
- import type { HighlightMatchPosition, HighlightOptions, NormalizedKeyword, Offset, PdfProperties, ToolbarOptions, ViewerPdfPage, RenderQueueItem, FullMatchHighlightResult, TextSelectionMenuOption, AnnotationTextSelectionType } from './utils/types';
4
+ import type { HighlightMatchPosition, HighlightOptions, NormalizedKeyword, Offset, PdfProperties, ToolbarOptions, ViewerPdfPage, RenderQueueItem, FullMatchHighlightResult, AnnotationTextSelectionType } from './utils/types';
5
5
  import { LicenseProduct } from './utils/enumerators';
6
6
  import { LicenseType, ScrollMode, ViewMode, ZoomLevel } from './components';
7
- import { AnnotationType, AnnotationFreeTextFontColors, AnnotationTextSelectionColors } from '@vue-pdf-viewer/shared';
7
+ import { AnnotationTextSelectionColors } from '@vue-pdf-viewer/shared';
8
8
  import { AnnotationImageManager } from './utils/annotation-image';
9
9
  import { HistoryManager } from './utils/historyManager';
10
10
  export declare const CSS_CLASSES: {
@@ -897,15 +897,769 @@ export declare const HISTORY_MANAGER: InjectionKey<HistoryManager>;
897
897
  export declare const HIGHLIGHT_MATCHES: InjectionKey<Ref<Record<string, FullMatchHighlightResult[]>, Record<string, FullMatchHighlightResult[]>>>;
898
898
  export declare const SYMBOL_ANNOTATION_KEYS: {
899
899
  ANNOTATION_IMAGE_MANAGER: InjectionKey<AnnotationImageManager>;
900
- ENABLE_ANNOTATION_EDITOR: InjectionKey<Ref<boolean>>;
901
- ACTIVE_ANNOTATION: InjectionKey<Reactive<Record<keyof typeof AnnotationType, boolean>>>;
902
- ENABLE_ANNOTATION_IMAGE_EDITOR: InjectionKey<Ref<boolean>>;
903
- FREE_TEXT_FONT_COLORS: InjectionKey<Ref<AnnotationFreeTextFontColors>>;
904
- FREE_TEXT_FONT_SIZE_VALUES: InjectionKey<Ref<number[] | null>>;
905
- TEXT_SELECTION_OPTION: InjectionKey<Reactive<TextSelectionMenuOption | null>>;
906
- TEXT_SELECTION_DEFAULT_TOOL: InjectionKey<Ref<AnnotationTextSelectionType | null>>;
907
- TEXT_SELECTION_DEFAULT_COLORS: InjectionKey<Ref<AnnotationTextSelectionColors | null>>;
908
- TEXT_SELECTION_DEFAULT_COLOR: InjectionKey<Ref<string | null>>;
900
+ ENABLE_ANNOTATION_EDITOR: InjectionKey<Ref<boolean, boolean>>;
901
+ ACTIVE_ANNOTATION: InjectionKey<{
902
+ Text: boolean;
903
+ Link: boolean;
904
+ FreeText: boolean;
905
+ Line: boolean;
906
+ Square: boolean;
907
+ Circle: boolean;
908
+ Polygon: boolean;
909
+ Polyline: boolean;
910
+ Highlight: boolean;
911
+ Underline: boolean;
912
+ Squiggly: boolean;
913
+ StrikeOut: boolean;
914
+ Stamp: boolean;
915
+ Caret: boolean;
916
+ Ink: boolean;
917
+ Popup: boolean;
918
+ FileAttachment: boolean;
919
+ Sound: boolean;
920
+ Movie: boolean;
921
+ Widget: boolean;
922
+ Screen: boolean;
923
+ PrinterMark: boolean;
924
+ TrapNet: boolean;
925
+ Watermark: boolean;
926
+ ThreeD: boolean;
927
+ Redact: boolean;
928
+ }>;
929
+ ENABLE_ANNOTATION_IMAGE_EDITOR: InjectionKey<Ref<boolean, boolean>>;
930
+ FREE_TEXT_FONT_COLORS: InjectionKey<Ref<AnnotationTextSelectionColors, AnnotationTextSelectionColors>>;
931
+ FREE_TEXT_FONT_SIZE_VALUES: InjectionKey<Ref<number[] | null, number[] | null>>;
932
+ TEXT_SELECTION_OPTION: InjectionKey<{
933
+ highlight?: boolean | {
934
+ icon?: string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
935
+ [key: string]: any;
936
+ }> | {
937
+ new (...args: any[]): any;
938
+ __isFragment?: undefined;
939
+ __isTeleport?: undefined;
940
+ __isSuspense?: undefined;
941
+ } | import("vue").FunctionalComponent<any, {}, any, {}> | {
942
+ [x: string]: any;
943
+ setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: {
944
+ attrs: {
945
+ [x: string]: unknown;
946
+ };
947
+ slots: Readonly<{
948
+ [name: string]: Slot<any> | undefined;
949
+ }>;
950
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
951
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed | undefined) => void;
952
+ }) => any) | undefined;
953
+ name?: string | undefined;
954
+ template?: string | object | undefined;
955
+ render?: Function | undefined;
956
+ components?: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>> | undefined;
957
+ directives?: Record<string, import("vue").Directive<any, any, string, any>> | undefined;
958
+ inheritAttrs?: boolean | undefined;
959
+ emits?: any;
960
+ slots?: {} | undefined;
961
+ expose?: string[] | undefined;
962
+ serverPrefetch?: (() => void | Promise<any>) | undefined;
963
+ compilerOptions?: {
964
+ isCustomElement?: ((tag: string) => boolean) | undefined;
965
+ whitespace?: "preserve" | "condense" | undefined;
966
+ comments?: boolean | undefined;
967
+ delimiters?: [string, string] | undefined;
968
+ } | undefined;
969
+ call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
970
+ __isFragment?: undefined;
971
+ __isTeleport?: undefined;
972
+ __isSuspense?: undefined;
973
+ __defaults?: {} | undefined;
974
+ compatConfig?: {
975
+ GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
976
+ GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
977
+ GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
978
+ GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
979
+ GLOBAL_SET?: boolean | "suppress-warning" | undefined;
980
+ GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
981
+ GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
982
+ GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
983
+ CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
984
+ CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
985
+ CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
986
+ CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
987
+ CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
988
+ CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
989
+ CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
990
+ INSTANCE_SET?: boolean | "suppress-warning" | undefined;
991
+ INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
992
+ INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
993
+ INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
994
+ INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
995
+ INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
996
+ INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
997
+ INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
998
+ INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
999
+ OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
1000
+ OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
1001
+ OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
1002
+ OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
1003
+ WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
1004
+ PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
1005
+ V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1006
+ CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1007
+ ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1008
+ ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1009
+ TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1010
+ TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1011
+ COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1012
+ COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1013
+ COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1014
+ RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1015
+ FILTERS?: boolean | "suppress-warning" | undefined;
1016
+ PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1017
+ MODE?: 3 | 2 | ((comp: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any> | null) => 3 | 2) | undefined;
1018
+ } | undefined;
1019
+ data?: ((this: any, vm: any) => any) | undefined;
1020
+ computed?: import("vue").ComputedOptions | undefined;
1021
+ methods?: import("vue").MethodOptions | undefined;
1022
+ watch?: {
1023
+ [x: string]: (string | import("vue").WatchCallback<any, any> | ({
1024
+ handler: string | import("vue").WatchCallback<any, any>;
1025
+ } & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({
1026
+ handler: string | import("vue").WatchCallback<any, any>;
1027
+ } & import("vue").WatchOptions<boolean>))[];
1028
+ } | undefined;
1029
+ provide?: import("vue").ComponentProvideOptions | undefined;
1030
+ inject?: {} | string[] | undefined;
1031
+ filters?: Record<string, Function> | undefined;
1032
+ mixins?: any[] | undefined;
1033
+ extends?: any;
1034
+ beforeCreate?: (() => any) | undefined;
1035
+ created?: (() => any) | undefined;
1036
+ beforeMount?: (() => any) | undefined;
1037
+ mounted?: (() => any) | undefined;
1038
+ beforeUpdate?: (() => any) | undefined;
1039
+ updated?: (() => any) | undefined;
1040
+ activated?: (() => any) | undefined;
1041
+ deactivated?: (() => any) | undefined;
1042
+ beforeDestroy?: (() => any) | undefined;
1043
+ beforeUnmount?: (() => any) | undefined;
1044
+ destroyed?: (() => any) | undefined;
1045
+ unmounted?: (() => any) | undefined;
1046
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1047
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1048
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | undefined;
1049
+ delimiters?: [string, string] | undefined;
1050
+ __differentiator?: string | number | symbol | undefined;
1051
+ __isBuiltIn?: boolean | undefined;
1052
+ __file?: string | undefined;
1053
+ __name?: string | undefined;
1054
+ } | undefined;
1055
+ component?: {
1056
+ new (...args: any[]): any;
1057
+ __isFragment?: undefined;
1058
+ __isTeleport?: undefined;
1059
+ __isSuspense?: undefined;
1060
+ } | import("vue").FunctionalComponent<any, {}, any, {}> | {
1061
+ [x: string]: any;
1062
+ setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: {
1063
+ attrs: {
1064
+ [x: string]: unknown;
1065
+ };
1066
+ slots: Readonly<{
1067
+ [name: string]: Slot<any> | undefined;
1068
+ }>;
1069
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
1070
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed | undefined) => void;
1071
+ }) => any) | undefined;
1072
+ name?: string | undefined;
1073
+ template?: string | object | undefined;
1074
+ render?: Function | undefined;
1075
+ components?: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>> | undefined;
1076
+ directives?: Record<string, import("vue").Directive<any, any, string, any>> | undefined;
1077
+ inheritAttrs?: boolean | undefined;
1078
+ emits?: any;
1079
+ slots?: {} | undefined;
1080
+ expose?: string[] | undefined;
1081
+ serverPrefetch?: (() => void | Promise<any>) | undefined;
1082
+ compilerOptions?: {
1083
+ isCustomElement?: ((tag: string) => boolean) | undefined;
1084
+ whitespace?: "preserve" | "condense" | undefined;
1085
+ comments?: boolean | undefined;
1086
+ delimiters?: [string, string] | undefined;
1087
+ } | undefined;
1088
+ call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
1089
+ __isFragment?: undefined;
1090
+ __isTeleport?: undefined;
1091
+ __isSuspense?: undefined;
1092
+ __defaults?: {} | undefined;
1093
+ compatConfig?: {
1094
+ GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
1095
+ GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
1096
+ GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
1097
+ GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
1098
+ GLOBAL_SET?: boolean | "suppress-warning" | undefined;
1099
+ GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
1100
+ GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
1101
+ GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
1102
+ CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
1103
+ CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
1104
+ CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
1105
+ CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
1106
+ CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
1107
+ CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
1108
+ CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
1109
+ INSTANCE_SET?: boolean | "suppress-warning" | undefined;
1110
+ INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
1111
+ INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
1112
+ INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
1113
+ INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
1114
+ INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
1115
+ INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
1116
+ INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
1117
+ INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
1118
+ OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
1119
+ OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
1120
+ OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
1121
+ OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
1122
+ WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
1123
+ PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
1124
+ V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1125
+ CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1126
+ ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1127
+ ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1128
+ TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1129
+ TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1130
+ COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1131
+ COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1132
+ COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1133
+ RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1134
+ FILTERS?: boolean | "suppress-warning" | undefined;
1135
+ PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1136
+ MODE?: 3 | 2 | ((comp: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any> | null) => 3 | 2) | undefined;
1137
+ } | undefined;
1138
+ data?: ((this: any, vm: any) => any) | undefined;
1139
+ computed?: import("vue").ComputedOptions | undefined;
1140
+ methods?: import("vue").MethodOptions | undefined;
1141
+ watch?: {
1142
+ [x: string]: (string | import("vue").WatchCallback<any, any> | ({
1143
+ handler: string | import("vue").WatchCallback<any, any>;
1144
+ } & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({
1145
+ handler: string | import("vue").WatchCallback<any, any>;
1146
+ } & import("vue").WatchOptions<boolean>))[];
1147
+ } | undefined;
1148
+ provide?: import("vue").ComponentProvideOptions | undefined;
1149
+ inject?: {} | string[] | undefined;
1150
+ filters?: Record<string, Function> | undefined;
1151
+ mixins?: any[] | undefined;
1152
+ extends?: any;
1153
+ beforeCreate?: (() => any) | undefined;
1154
+ created?: (() => any) | undefined;
1155
+ beforeMount?: (() => any) | undefined;
1156
+ mounted?: (() => any) | undefined;
1157
+ beforeUpdate?: (() => any) | undefined;
1158
+ updated?: (() => any) | undefined;
1159
+ activated?: (() => any) | undefined;
1160
+ deactivated?: (() => any) | undefined;
1161
+ beforeDestroy?: (() => any) | undefined;
1162
+ beforeUnmount?: (() => any) | undefined;
1163
+ destroyed?: (() => any) | undefined;
1164
+ unmounted?: (() => any) | undefined;
1165
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1166
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1167
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | undefined;
1168
+ delimiters?: [string, string] | undefined;
1169
+ __differentiator?: string | number | symbol | undefined;
1170
+ __isBuiltIn?: boolean | undefined;
1171
+ __file?: string | undefined;
1172
+ __name?: string | undefined;
1173
+ } | undefined;
1174
+ } | undefined;
1175
+ underline?: boolean | {
1176
+ icon?: string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1177
+ [key: string]: any;
1178
+ }> | {
1179
+ new (...args: any[]): any;
1180
+ __isFragment?: undefined;
1181
+ __isTeleport?: undefined;
1182
+ __isSuspense?: undefined;
1183
+ } | import("vue").FunctionalComponent<any, {}, any, {}> | {
1184
+ [x: string]: any;
1185
+ setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: {
1186
+ attrs: {
1187
+ [x: string]: unknown;
1188
+ };
1189
+ slots: Readonly<{
1190
+ [name: string]: Slot<any> | undefined;
1191
+ }>;
1192
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
1193
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed | undefined) => void;
1194
+ }) => any) | undefined;
1195
+ name?: string | undefined;
1196
+ template?: string | object | undefined;
1197
+ render?: Function | undefined;
1198
+ components?: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>> | undefined;
1199
+ directives?: Record<string, import("vue").Directive<any, any, string, any>> | undefined;
1200
+ inheritAttrs?: boolean | undefined;
1201
+ emits?: any;
1202
+ slots?: {} | undefined;
1203
+ expose?: string[] | undefined;
1204
+ serverPrefetch?: (() => void | Promise<any>) | undefined;
1205
+ compilerOptions?: {
1206
+ isCustomElement?: ((tag: string) => boolean) | undefined;
1207
+ whitespace?: "preserve" | "condense" | undefined;
1208
+ comments?: boolean | undefined;
1209
+ delimiters?: [string, string] | undefined;
1210
+ } | undefined;
1211
+ call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
1212
+ __isFragment?: undefined;
1213
+ __isTeleport?: undefined;
1214
+ __isSuspense?: undefined;
1215
+ __defaults?: {} | undefined;
1216
+ compatConfig?: {
1217
+ GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
1218
+ GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
1219
+ GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
1220
+ GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
1221
+ GLOBAL_SET?: boolean | "suppress-warning" | undefined;
1222
+ GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
1223
+ GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
1224
+ GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
1225
+ CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
1226
+ CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
1227
+ CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
1228
+ CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
1229
+ CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
1230
+ CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
1231
+ CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
1232
+ INSTANCE_SET?: boolean | "suppress-warning" | undefined;
1233
+ INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
1234
+ INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
1235
+ INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
1236
+ INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
1237
+ INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
1238
+ INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
1239
+ INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
1240
+ INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
1241
+ OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
1242
+ OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
1243
+ OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
1244
+ OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
1245
+ WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
1246
+ PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
1247
+ V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1248
+ CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1249
+ ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1250
+ ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1251
+ TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1252
+ TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1253
+ COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1254
+ COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1255
+ COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1256
+ RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1257
+ FILTERS?: boolean | "suppress-warning" | undefined;
1258
+ PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1259
+ MODE?: 3 | 2 | ((comp: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any> | null) => 3 | 2) | undefined;
1260
+ } | undefined;
1261
+ data?: ((this: any, vm: any) => any) | undefined;
1262
+ computed?: import("vue").ComputedOptions | undefined;
1263
+ methods?: import("vue").MethodOptions | undefined;
1264
+ watch?: {
1265
+ [x: string]: (string | import("vue").WatchCallback<any, any> | ({
1266
+ handler: string | import("vue").WatchCallback<any, any>;
1267
+ } & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({
1268
+ handler: string | import("vue").WatchCallback<any, any>;
1269
+ } & import("vue").WatchOptions<boolean>))[];
1270
+ } | undefined;
1271
+ provide?: import("vue").ComponentProvideOptions | undefined;
1272
+ inject?: {} | string[] | undefined;
1273
+ filters?: Record<string, Function> | undefined;
1274
+ mixins?: any[] | undefined;
1275
+ extends?: any;
1276
+ beforeCreate?: (() => any) | undefined;
1277
+ created?: (() => any) | undefined;
1278
+ beforeMount?: (() => any) | undefined;
1279
+ mounted?: (() => any) | undefined;
1280
+ beforeUpdate?: (() => any) | undefined;
1281
+ updated?: (() => any) | undefined;
1282
+ activated?: (() => any) | undefined;
1283
+ deactivated?: (() => any) | undefined;
1284
+ beforeDestroy?: (() => any) | undefined;
1285
+ beforeUnmount?: (() => any) | undefined;
1286
+ destroyed?: (() => any) | undefined;
1287
+ unmounted?: (() => any) | undefined;
1288
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1289
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1290
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | undefined;
1291
+ delimiters?: [string, string] | undefined;
1292
+ __differentiator?: string | number | symbol | undefined;
1293
+ __isBuiltIn?: boolean | undefined;
1294
+ __file?: string | undefined;
1295
+ __name?: string | undefined;
1296
+ } | undefined;
1297
+ component?: {
1298
+ new (...args: any[]): any;
1299
+ __isFragment?: undefined;
1300
+ __isTeleport?: undefined;
1301
+ __isSuspense?: undefined;
1302
+ } | import("vue").FunctionalComponent<any, {}, any, {}> | {
1303
+ [x: string]: any;
1304
+ setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: {
1305
+ attrs: {
1306
+ [x: string]: unknown;
1307
+ };
1308
+ slots: Readonly<{
1309
+ [name: string]: Slot<any> | undefined;
1310
+ }>;
1311
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
1312
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed | undefined) => void;
1313
+ }) => any) | undefined;
1314
+ name?: string | undefined;
1315
+ template?: string | object | undefined;
1316
+ render?: Function | undefined;
1317
+ components?: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>> | undefined;
1318
+ directives?: Record<string, import("vue").Directive<any, any, string, any>> | undefined;
1319
+ inheritAttrs?: boolean | undefined;
1320
+ emits?: any;
1321
+ slots?: {} | undefined;
1322
+ expose?: string[] | undefined;
1323
+ serverPrefetch?: (() => void | Promise<any>) | undefined;
1324
+ compilerOptions?: {
1325
+ isCustomElement?: ((tag: string) => boolean) | undefined;
1326
+ whitespace?: "preserve" | "condense" | undefined;
1327
+ comments?: boolean | undefined;
1328
+ delimiters?: [string, string] | undefined;
1329
+ } | undefined;
1330
+ call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
1331
+ __isFragment?: undefined;
1332
+ __isTeleport?: undefined;
1333
+ __isSuspense?: undefined;
1334
+ __defaults?: {} | undefined;
1335
+ compatConfig?: {
1336
+ GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
1337
+ GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
1338
+ GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
1339
+ GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
1340
+ GLOBAL_SET?: boolean | "suppress-warning" | undefined;
1341
+ GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
1342
+ GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
1343
+ GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
1344
+ CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
1345
+ CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
1346
+ CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
1347
+ CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
1348
+ CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
1349
+ CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
1350
+ CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
1351
+ INSTANCE_SET?: boolean | "suppress-warning" | undefined;
1352
+ INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
1353
+ INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
1354
+ INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
1355
+ INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
1356
+ INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
1357
+ INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
1358
+ INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
1359
+ INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
1360
+ OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
1361
+ OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
1362
+ OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
1363
+ OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
1364
+ WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
1365
+ PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
1366
+ V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1367
+ CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1368
+ ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1369
+ ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1370
+ TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1371
+ TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1372
+ COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1373
+ COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1374
+ COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1375
+ RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1376
+ FILTERS?: boolean | "suppress-warning" | undefined;
1377
+ PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1378
+ MODE?: 3 | 2 | ((comp: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any> | null) => 3 | 2) | undefined;
1379
+ } | undefined;
1380
+ data?: ((this: any, vm: any) => any) | undefined;
1381
+ computed?: import("vue").ComputedOptions | undefined;
1382
+ methods?: import("vue").MethodOptions | undefined;
1383
+ watch?: {
1384
+ [x: string]: (string | import("vue").WatchCallback<any, any> | ({
1385
+ handler: string | import("vue").WatchCallback<any, any>;
1386
+ } & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({
1387
+ handler: string | import("vue").WatchCallback<any, any>;
1388
+ } & import("vue").WatchOptions<boolean>))[];
1389
+ } | undefined;
1390
+ provide?: import("vue").ComponentProvideOptions | undefined;
1391
+ inject?: {} | string[] | undefined;
1392
+ filters?: Record<string, Function> | undefined;
1393
+ mixins?: any[] | undefined;
1394
+ extends?: any;
1395
+ beforeCreate?: (() => any) | undefined;
1396
+ created?: (() => any) | undefined;
1397
+ beforeMount?: (() => any) | undefined;
1398
+ mounted?: (() => any) | undefined;
1399
+ beforeUpdate?: (() => any) | undefined;
1400
+ updated?: (() => any) | undefined;
1401
+ activated?: (() => any) | undefined;
1402
+ deactivated?: (() => any) | undefined;
1403
+ beforeDestroy?: (() => any) | undefined;
1404
+ beforeUnmount?: (() => any) | undefined;
1405
+ destroyed?: (() => any) | undefined;
1406
+ unmounted?: (() => any) | undefined;
1407
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1408
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1409
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | undefined;
1410
+ delimiters?: [string, string] | undefined;
1411
+ __differentiator?: string | number | symbol | undefined;
1412
+ __isBuiltIn?: boolean | undefined;
1413
+ __file?: string | undefined;
1414
+ __name?: string | undefined;
1415
+ } | undefined;
1416
+ } | undefined;
1417
+ strikethrough?: boolean | {
1418
+ icon?: string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1419
+ [key: string]: any;
1420
+ }> | {
1421
+ new (...args: any[]): any;
1422
+ __isFragment?: undefined;
1423
+ __isTeleport?: undefined;
1424
+ __isSuspense?: undefined;
1425
+ } | import("vue").FunctionalComponent<any, {}, any, {}> | {
1426
+ [x: string]: any;
1427
+ setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: {
1428
+ attrs: {
1429
+ [x: string]: unknown;
1430
+ };
1431
+ slots: Readonly<{
1432
+ [name: string]: Slot<any> | undefined;
1433
+ }>;
1434
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
1435
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed | undefined) => void;
1436
+ }) => any) | undefined;
1437
+ name?: string | undefined;
1438
+ template?: string | object | undefined;
1439
+ render?: Function | undefined;
1440
+ components?: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>> | undefined;
1441
+ directives?: Record<string, import("vue").Directive<any, any, string, any>> | undefined;
1442
+ inheritAttrs?: boolean | undefined;
1443
+ emits?: any;
1444
+ slots?: {} | undefined;
1445
+ expose?: string[] | undefined;
1446
+ serverPrefetch?: (() => void | Promise<any>) | undefined;
1447
+ compilerOptions?: {
1448
+ isCustomElement?: ((tag: string) => boolean) | undefined;
1449
+ whitespace?: "preserve" | "condense" | undefined;
1450
+ comments?: boolean | undefined;
1451
+ delimiters?: [string, string] | undefined;
1452
+ } | undefined;
1453
+ call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
1454
+ __isFragment?: undefined;
1455
+ __isTeleport?: undefined;
1456
+ __isSuspense?: undefined;
1457
+ __defaults?: {} | undefined;
1458
+ compatConfig?: {
1459
+ GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
1460
+ GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
1461
+ GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
1462
+ GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
1463
+ GLOBAL_SET?: boolean | "suppress-warning" | undefined;
1464
+ GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
1465
+ GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
1466
+ GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
1467
+ CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
1468
+ CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
1469
+ CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
1470
+ CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
1471
+ CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
1472
+ CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
1473
+ CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
1474
+ INSTANCE_SET?: boolean | "suppress-warning" | undefined;
1475
+ INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
1476
+ INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
1477
+ INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
1478
+ INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
1479
+ INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
1480
+ INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
1481
+ INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
1482
+ INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
1483
+ OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
1484
+ OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
1485
+ OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
1486
+ OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
1487
+ WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
1488
+ PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
1489
+ V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1490
+ CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1491
+ ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1492
+ ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1493
+ TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1494
+ TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1495
+ COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1496
+ COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1497
+ COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1498
+ RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1499
+ FILTERS?: boolean | "suppress-warning" | undefined;
1500
+ PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1501
+ MODE?: 3 | 2 | ((comp: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any> | null) => 3 | 2) | undefined;
1502
+ } | undefined;
1503
+ data?: ((this: any, vm: any) => any) | undefined;
1504
+ computed?: import("vue").ComputedOptions | undefined;
1505
+ methods?: import("vue").MethodOptions | undefined;
1506
+ watch?: {
1507
+ [x: string]: (string | import("vue").WatchCallback<any, any> | ({
1508
+ handler: string | import("vue").WatchCallback<any, any>;
1509
+ } & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({
1510
+ handler: string | import("vue").WatchCallback<any, any>;
1511
+ } & import("vue").WatchOptions<boolean>))[];
1512
+ } | undefined;
1513
+ provide?: import("vue").ComponentProvideOptions | undefined;
1514
+ inject?: {} | string[] | undefined;
1515
+ filters?: Record<string, Function> | undefined;
1516
+ mixins?: any[] | undefined;
1517
+ extends?: any;
1518
+ beforeCreate?: (() => any) | undefined;
1519
+ created?: (() => any) | undefined;
1520
+ beforeMount?: (() => any) | undefined;
1521
+ mounted?: (() => any) | undefined;
1522
+ beforeUpdate?: (() => any) | undefined;
1523
+ updated?: (() => any) | undefined;
1524
+ activated?: (() => any) | undefined;
1525
+ deactivated?: (() => any) | undefined;
1526
+ beforeDestroy?: (() => any) | undefined;
1527
+ beforeUnmount?: (() => any) | undefined;
1528
+ destroyed?: (() => any) | undefined;
1529
+ unmounted?: (() => any) | undefined;
1530
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1531
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1532
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | undefined;
1533
+ delimiters?: [string, string] | undefined;
1534
+ __differentiator?: string | number | symbol | undefined;
1535
+ __isBuiltIn?: boolean | undefined;
1536
+ __file?: string | undefined;
1537
+ __name?: string | undefined;
1538
+ } | undefined;
1539
+ component?: {
1540
+ new (...args: any[]): any;
1541
+ __isFragment?: undefined;
1542
+ __isTeleport?: undefined;
1543
+ __isSuspense?: undefined;
1544
+ } | import("vue").FunctionalComponent<any, {}, any, {}> | {
1545
+ [x: string]: any;
1546
+ setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: {
1547
+ attrs: {
1548
+ [x: string]: unknown;
1549
+ };
1550
+ slots: Readonly<{
1551
+ [name: string]: Slot<any> | undefined;
1552
+ }>;
1553
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
1554
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed | undefined) => void;
1555
+ }) => any) | undefined;
1556
+ name?: string | undefined;
1557
+ template?: string | object | undefined;
1558
+ render?: Function | undefined;
1559
+ components?: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>> | undefined;
1560
+ directives?: Record<string, import("vue").Directive<any, any, string, any>> | undefined;
1561
+ inheritAttrs?: boolean | undefined;
1562
+ emits?: any;
1563
+ slots?: {} | undefined;
1564
+ expose?: string[] | undefined;
1565
+ serverPrefetch?: (() => void | Promise<any>) | undefined;
1566
+ compilerOptions?: {
1567
+ isCustomElement?: ((tag: string) => boolean) | undefined;
1568
+ whitespace?: "preserve" | "condense" | undefined;
1569
+ comments?: boolean | undefined;
1570
+ delimiters?: [string, string] | undefined;
1571
+ } | undefined;
1572
+ call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
1573
+ __isFragment?: undefined;
1574
+ __isTeleport?: undefined;
1575
+ __isSuspense?: undefined;
1576
+ __defaults?: {} | undefined;
1577
+ compatConfig?: {
1578
+ GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
1579
+ GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
1580
+ GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
1581
+ GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
1582
+ GLOBAL_SET?: boolean | "suppress-warning" | undefined;
1583
+ GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
1584
+ GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
1585
+ GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
1586
+ CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
1587
+ CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
1588
+ CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
1589
+ CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
1590
+ CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
1591
+ CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
1592
+ CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
1593
+ INSTANCE_SET?: boolean | "suppress-warning" | undefined;
1594
+ INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
1595
+ INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
1596
+ INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
1597
+ INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
1598
+ INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
1599
+ INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
1600
+ INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
1601
+ INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
1602
+ OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
1603
+ OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
1604
+ OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
1605
+ OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
1606
+ WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
1607
+ PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
1608
+ V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1609
+ CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1610
+ ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1611
+ ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1612
+ TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1613
+ TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1614
+ COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1615
+ COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1616
+ COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1617
+ RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1618
+ FILTERS?: boolean | "suppress-warning" | undefined;
1619
+ PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1620
+ MODE?: 3 | 2 | ((comp: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any> | null) => 3 | 2) | undefined;
1621
+ } | undefined;
1622
+ data?: ((this: any, vm: any) => any) | undefined;
1623
+ computed?: import("vue").ComputedOptions | undefined;
1624
+ methods?: import("vue").MethodOptions | undefined;
1625
+ watch?: {
1626
+ [x: string]: (string | import("vue").WatchCallback<any, any> | ({
1627
+ handler: string | import("vue").WatchCallback<any, any>;
1628
+ } & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({
1629
+ handler: string | import("vue").WatchCallback<any, any>;
1630
+ } & import("vue").WatchOptions<boolean>))[];
1631
+ } | undefined;
1632
+ provide?: import("vue").ComponentProvideOptions | undefined;
1633
+ inject?: {} | string[] | undefined;
1634
+ filters?: Record<string, Function> | undefined;
1635
+ mixins?: any[] | undefined;
1636
+ extends?: any;
1637
+ beforeCreate?: (() => any) | undefined;
1638
+ created?: (() => any) | undefined;
1639
+ beforeMount?: (() => any) | undefined;
1640
+ mounted?: (() => any) | undefined;
1641
+ beforeUpdate?: (() => any) | undefined;
1642
+ updated?: (() => any) | undefined;
1643
+ activated?: (() => any) | undefined;
1644
+ deactivated?: (() => any) | undefined;
1645
+ beforeDestroy?: (() => any) | undefined;
1646
+ beforeUnmount?: (() => any) | undefined;
1647
+ destroyed?: (() => any) | undefined;
1648
+ unmounted?: (() => any) | undefined;
1649
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1650
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined;
1651
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | undefined;
1652
+ delimiters?: [string, string] | undefined;
1653
+ __differentiator?: string | number | symbol | undefined;
1654
+ __isBuiltIn?: boolean | undefined;
1655
+ __file?: string | undefined;
1656
+ __name?: string | undefined;
1657
+ } | undefined;
1658
+ } | undefined;
1659
+ }>;
1660
+ TEXT_SELECTION_DEFAULT_TOOL: InjectionKey<Ref<AnnotationTextSelectionType | null, AnnotationTextSelectionType | null>>;
1661
+ TEXT_SELECTION_DEFAULT_COLORS: InjectionKey<Ref<AnnotationTextSelectionColors, AnnotationTextSelectionColors>>;
1662
+ TEXT_SELECTION_DEFAULT_COLOR: InjectionKey<Ref<string | null, string | null>>;
909
1663
  };
910
1664
  export declare const SYMBOL_INSTANCE_ID: InjectionKey<number>;
911
1665
  export declare const FUNC_GO_TO_PAGE: InjectionKey<(page: number) => void>;