cnhis-design-vue 3.1.15-beta.9 → 3.1.15

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.
Files changed (39) hide show
  1. package/es/packages/big-table/src/hooks/useAnnotation.js +1 -2
  2. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.js +7 -2
  3. package/es/packages/big-table/src/hooks/useEdit.js +16 -8
  4. package/es/packages/fabric-chart/src/hooks/useDraw.js +1 -0
  5. package/es/packages/fabric-chart/src/hooks/useLeft.js +1 -2
  6. package/es/packages/form-config/index.d.ts +1749 -0
  7. package/es/packages/form-config/src/FormConfig.vue.d.ts +1749 -0
  8. package/es/packages/form-config/src/components/FormConfigEdit.js +3 -3
  9. package/es/packages/form-config/src/components/FormConfigEdit.vue.d.ts +1747 -0
  10. package/es/packages/form-config/style/index.css +1 -1
  11. package/es/packages/form-render/src/components/renderer/combination/index.js +3 -3
  12. package/es/packages/form-render/src/components/renderer/formItem.js +1 -2
  13. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +2 -2
  14. package/es/packages/form-render/src/types/fieldItem.d.ts +8 -0
  15. package/es/packages/form-render/src/utils/index.d.ts +1 -0
  16. package/es/packages/form-render/src/utils/index.js +9 -2
  17. package/es/packages/form-table/src/hooks/useNuiThemeOverrides.js +1 -1
  18. package/es/packages/index.css +1 -1
  19. package/es/packages/index.d.ts +1 -0
  20. package/es/packages/index.js +1 -1
  21. package/es/packages/scale-view/src/hooks/scaleview-init.js +35 -35
  22. package/es/packages/shortcut-provider/index.d.ts +17 -2
  23. package/es/packages/shortcut-provider/index.js +1 -1
  24. package/es/packages/shortcut-provider/src/ShortcutProvider.js +5 -1
  25. package/es/packages/shortcut-provider/src/ShortcutProvider.vue.d.ts +17 -2
  26. package/es/packages/shortcut-provider/src/hooks/index.js +1 -1
  27. package/es/packages/shortcut-provider/src/hooks/useShortcuts.d.ts +10 -10
  28. package/es/packages/shortcut-provider/src/hooks/useShortcuts.js +45 -38
  29. package/es/packages/shortcut-provider/src/types/index.d.ts +2 -19
  30. package/es/packages/shortcut-setter/index.d.ts +1698 -4283
  31. package/es/packages/shortcut-setter/src/ShortcutSetter.js +63 -10
  32. package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +1723 -4306
  33. package/es/packages/shortcut-setter/src/ShortcutSetterItem.js +26 -95
  34. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +30 -3363
  35. package/es/packages/shortcut-setter/src/types/index.d.ts +6 -0
  36. package/es/packages/shortcut-setter/src/types/index.js +1 -0
  37. package/package.json +1 -1
  38. package/es/packages/shortcut-setter/constant/index.d.ts +0 -4
  39. package/es/packages/shortcut-setter/constant/index.js +0 -7
@@ -75,6 +75,8 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
75
75
  value: any;
76
76
  children?: any[] | undefined;
77
77
  }[] | undefined;
78
+ multi_select?: import("..").FormCommonState | undefined;
79
+ multi_select_value?: string | number | undefined;
78
80
  wordbook?: {
79
81
  level_num: number;
80
82
  } | undefined;
@@ -1726,6 +1728,8 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
1726
1728
  value: any;
1727
1729
  children?: any[] | undefined;
1728
1730
  }[] | undefined;
1731
+ multi_select?: import("..").FormCommonState | undefined;
1732
+ multi_select_value?: string | number | undefined;
1729
1733
  wordbook?: {
1730
1734
  level_num: number;
1731
1735
  } | undefined;
@@ -3478,6 +3482,8 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
3478
3482
  value: any;
3479
3483
  children?: any[] | undefined;
3480
3484
  }[] | undefined;
3485
+ multi_select?: import("..").FormCommonState | undefined;
3486
+ multi_select_value?: string | number | undefined;
3481
3487
  wordbook?: {
3482
3488
  level_num: number;
3483
3489
  } | undefined;
@@ -7005,6 +7011,1749 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
7005
7011
  maskClosable: boolean;
7006
7012
  closeOnEsc: boolean;
7007
7013
  }>;
7014
+ CFormRender: SFCWithInstall<import("vue").DefineComponent<{
7015
+ fieldList: {
7016
+ type: import("vue").PropType<import("..").FieldItem[]>;
7017
+ };
7018
+ initialData: {
7019
+ type: import("vue").PropType<import("../../../es/src/types").AnyObject>;
7020
+ default: () => {};
7021
+ };
7022
+ fieldVisitor: {
7023
+ type: import("vue").PropType<import("..").FieldVisitor>;
7024
+ };
7025
+ column: {
7026
+ type: NumberConstructor;
7027
+ default: number;
7028
+ };
7029
+ maxHeight: {
7030
+ type: (NumberConstructor | StringConstructor)[];
7031
+ default: string;
7032
+ };
7033
+ anchor: {
7034
+ type: BooleanConstructor;
7035
+ default: boolean;
7036
+ };
7037
+ parallelism: {
7038
+ type: NumberConstructor;
7039
+ default: number;
7040
+ };
7041
+ schema: {
7042
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
7043
+ [key: symbol]: any;
7044
+ [key: `x-${string}`]: any;
7045
+ [key: `x-${number}`]: any;
7046
+ version?: string | undefined;
7047
+ name?: import("@formily/json-schema").SchemaKey | undefined;
7048
+ title?: any;
7049
+ description?: any;
7050
+ default?: any;
7051
+ readOnly?: boolean | undefined;
7052
+ writeOnly?: boolean | undefined;
7053
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
7054
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
7055
+ const?: any;
7056
+ multipleOf?: number | undefined;
7057
+ maximum?: number | undefined;
7058
+ exclusiveMaximum?: number | undefined;
7059
+ minimum?: number | undefined;
7060
+ exclusiveMinimum?: number | undefined;
7061
+ maxLength?: number | undefined;
7062
+ minLength?: number | undefined;
7063
+ pattern?: string | RegExp | undefined;
7064
+ maxItems?: number | undefined;
7065
+ minItems?: number | undefined;
7066
+ uniqueItems?: boolean | undefined;
7067
+ maxProperties?: number | undefined;
7068
+ minProperties?: number | undefined;
7069
+ required?: string | boolean | string[] | undefined;
7070
+ format?: string | undefined;
7071
+ $ref?: string | undefined;
7072
+ $namespace?: string | undefined;
7073
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7074
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7075
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
7076
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
7077
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7078
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
7079
+ "x-value"?: any;
7080
+ "x-index"?: number | undefined;
7081
+ "x-pattern"?: any;
7082
+ "x-display"?: any;
7083
+ "x-validator"?: any;
7084
+ "x-decorator"?: any;
7085
+ "x-decorator-props"?: any;
7086
+ "x-component"?: any;
7087
+ "x-component-props"?: any;
7088
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
7089
+ "x-content"?: any;
7090
+ "x-data"?: any;
7091
+ "x-visible"?: boolean | undefined;
7092
+ "x-hidden"?: boolean | undefined;
7093
+ "x-disabled"?: boolean | undefined;
7094
+ "x-editable"?: boolean | undefined;
7095
+ "x-read-only"?: boolean | undefined;
7096
+ "x-read-pretty"?: boolean | undefined;
7097
+ "x-compile-omitted"?: string[] | undefined;
7098
+ }>>;
7099
+ };
7100
+ components: {
7101
+ type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
7102
+ default: () => {};
7103
+ };
7104
+ businessFilter: {
7105
+ type: import("vue").PropType<import("..").FormBusinessFilter>;
7106
+ };
7107
+ scope: {
7108
+ type: import("vue").PropType<import("../../../es/src/types").AnyObject>;
7109
+ default: () => {};
7110
+ };
7111
+ annotation: {
7112
+ type: import("vue").PropType<import("../../../es/src/types").AnyObject>;
7113
+ };
7114
+ consumer: {
7115
+ type: BooleanConstructor;
7116
+ default: boolean;
7117
+ };
7118
+ uuid: {
7119
+ type: StringConstructor;
7120
+ };
7121
+ lifeCycle: {
7122
+ type: import("vue").PropType<Partial<{
7123
+ onSetup(): void;
7124
+ beforeRequest(fieldKey: string, params?: import("../../../es/src/types").AnyObject | undefined): void | import("../../../es/src/types").WithUndefined<import("../../../es/src/types").AnyObject>;
7125
+ afterRequest(fieldKey: string, payload?: any): import("../../../es/src/types").AnyObject[];
7126
+ }>>;
7127
+ };
7128
+ }, {
7129
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
7130
+ fieldList: {
7131
+ type: import("vue").PropType<import("..").FieldItem[]>;
7132
+ };
7133
+ initialData: {
7134
+ type: import("vue").PropType<import("../../../es/src/types").AnyObject>;
7135
+ default: () => {};
7136
+ };
7137
+ fieldVisitor: {
7138
+ type: import("vue").PropType<import("..").FieldVisitor>;
7139
+ };
7140
+ column: {
7141
+ type: NumberConstructor;
7142
+ default: number;
7143
+ };
7144
+ maxHeight: {
7145
+ type: (NumberConstructor | StringConstructor)[];
7146
+ default: string;
7147
+ };
7148
+ anchor: {
7149
+ type: BooleanConstructor;
7150
+ default: boolean;
7151
+ };
7152
+ parallelism: {
7153
+ type: NumberConstructor;
7154
+ default: number;
7155
+ };
7156
+ schema: {
7157
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
7158
+ [key: symbol]: any;
7159
+ [key: `x-${string}`]: any;
7160
+ [key: `x-${number}`]: any;
7161
+ version?: string | undefined;
7162
+ name?: import("@formily/json-schema").SchemaKey | undefined;
7163
+ title?: any;
7164
+ description?: any;
7165
+ default?: any;
7166
+ readOnly?: boolean | undefined;
7167
+ writeOnly?: boolean | undefined;
7168
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
7169
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
7170
+ const?: any;
7171
+ multipleOf?: number | undefined;
7172
+ maximum?: number | undefined;
7173
+ exclusiveMaximum?: number | undefined;
7174
+ minimum?: number | undefined;
7175
+ exclusiveMinimum?: number | undefined;
7176
+ maxLength?: number | undefined;
7177
+ minLength?: number | undefined;
7178
+ pattern?: string | RegExp | undefined;
7179
+ maxItems?: number | undefined;
7180
+ minItems?: number | undefined;
7181
+ uniqueItems?: boolean | undefined;
7182
+ maxProperties?: number | undefined;
7183
+ minProperties?: number | undefined;
7184
+ required?: string | boolean | string[] | undefined;
7185
+ format?: string | undefined;
7186
+ $ref?: string | undefined;
7187
+ $namespace?: string | undefined;
7188
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7189
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7190
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
7191
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
7192
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7193
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
7194
+ "x-value"?: any;
7195
+ "x-index"?: number | undefined;
7196
+ "x-pattern"?: any;
7197
+ "x-display"?: any;
7198
+ "x-validator"?: any;
7199
+ "x-decorator"?: any;
7200
+ "x-decorator-props"?: any;
7201
+ "x-component"?: any;
7202
+ "x-component-props"?: any;
7203
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
7204
+ "x-content"?: any;
7205
+ "x-data"?: any;
7206
+ "x-visible"?: boolean | undefined;
7207
+ "x-hidden"?: boolean | undefined;
7208
+ "x-disabled"?: boolean | undefined;
7209
+ "x-editable"?: boolean | undefined;
7210
+ "x-read-only"?: boolean | undefined;
7211
+ "x-read-pretty"?: boolean | undefined;
7212
+ "x-compile-omitted"?: string[] | undefined;
7213
+ }>>;
7214
+ };
7215
+ components: {
7216
+ type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
7217
+ default: () => {};
7218
+ };
7219
+ businessFilter: {
7220
+ type: import("vue").PropType<import("..").FormBusinessFilter>;
7221
+ };
7222
+ scope: {
7223
+ type: import("vue").PropType<import("../../../es/src/types").AnyObject>;
7224
+ default: () => {};
7225
+ };
7226
+ annotation: {
7227
+ type: import("vue").PropType<import("../../../es/src/types").AnyObject>;
7228
+ };
7229
+ consumer: {
7230
+ type: BooleanConstructor;
7231
+ default: boolean;
7232
+ };
7233
+ uuid: {
7234
+ type: StringConstructor;
7235
+ };
7236
+ lifeCycle: {
7237
+ type: import("vue").PropType<Partial<{
7238
+ onSetup(): void;
7239
+ beforeRequest(fieldKey: string, params?: import("../../../es/src/types").AnyObject | undefined): void | import("../../../es/src/types").WithUndefined<import("../../../es/src/types").AnyObject>;
7240
+ afterRequest(fieldKey: string, payload?: any): import("../../../es/src/types").AnyObject[];
7241
+ }>>;
7242
+ };
7243
+ }>> & {
7244
+ onFormChange?: ((...args: any[]) => any) | undefined;
7245
+ }>>;
7246
+ emit: (event: "formChange", ...args: any[]) => void;
7247
+ nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
7248
+ SchemaField: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
7249
+ businessCollector: import("..").BusinessCollector;
7250
+ formItemDepsCollector: import("..").FormItemDepsCollector;
7251
+ changeContextCollector: import("..").ContextCollector;
7252
+ formUUID: string;
7253
+ formModel: import("@formily/core").Form<{
7254
+ [x: string]: any;
7255
+ }>;
7256
+ scrollbarRef: import("vue").Ref<HTMLElement | undefined>;
7257
+ schemaAdaptor: (fieldList: import("..").FieldItem[]) => Record<string, import("@formily/json-schema").Stringify<{
7258
+ [key: symbol]: any;
7259
+ [key: `x-${string}`]: any;
7260
+ [key: `x-${number}`]: any;
7261
+ version?: string | undefined;
7262
+ name?: import("@formily/json-schema").SchemaKey | undefined;
7263
+ title?: any;
7264
+ description?: any;
7265
+ default?: any;
7266
+ readOnly?: boolean | undefined;
7267
+ writeOnly?: boolean | undefined;
7268
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
7269
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
7270
+ const?: any;
7271
+ multipleOf?: number | undefined;
7272
+ maximum?: number | undefined;
7273
+ exclusiveMaximum?: number | undefined;
7274
+ minimum?: number | undefined;
7275
+ exclusiveMinimum?: number | undefined;
7276
+ maxLength?: number | undefined;
7277
+ minLength?: number | undefined;
7278
+ pattern?: string | RegExp | undefined;
7279
+ maxItems?: number | undefined;
7280
+ minItems?: number | undefined;
7281
+ uniqueItems?: boolean | undefined;
7282
+ maxProperties?: number | undefined;
7283
+ minProperties?: number | undefined;
7284
+ required?: string | boolean | string[] | undefined;
7285
+ format?: string | undefined;
7286
+ $ref?: string | undefined;
7287
+ $namespace?: string | undefined;
7288
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7289
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7290
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
7291
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
7292
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7293
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
7294
+ "x-value"?: any;
7295
+ "x-index"?: number | undefined;
7296
+ "x-pattern"?: any;
7297
+ "x-display"?: any;
7298
+ "x-validator"?: any;
7299
+ "x-decorator"?: any;
7300
+ "x-decorator-props"?: any;
7301
+ "x-component"?: any;
7302
+ "x-component-props"?: any;
7303
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
7304
+ "x-content"?: any;
7305
+ "x-data"?: any;
7306
+ "x-visible"?: boolean | undefined;
7307
+ "x-hidden"?: boolean | undefined;
7308
+ "x-disabled"?: boolean | undefined;
7309
+ "x-editable"?: boolean | undefined;
7310
+ "x-read-only"?: boolean | undefined;
7311
+ "x-read-pretty"?: boolean | undefined;
7312
+ "x-compile-omitted"?: string[] | undefined;
7313
+ }>>;
7314
+ parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
7315
+ [key: symbol]: any;
7316
+ [key: `x-${string}`]: any;
7317
+ [key: `x-${number}`]: any;
7318
+ version?: string | undefined;
7319
+ name?: import("@formily/json-schema").SchemaKey | undefined;
7320
+ title?: any;
7321
+ description?: any;
7322
+ default?: any;
7323
+ readOnly?: boolean | undefined;
7324
+ writeOnly?: boolean | undefined;
7325
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
7326
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
7327
+ const?: any;
7328
+ multipleOf?: number | undefined;
7329
+ maximum?: number | undefined;
7330
+ exclusiveMaximum?: number | undefined;
7331
+ minimum?: number | undefined;
7332
+ exclusiveMinimum?: number | undefined;
7333
+ maxLength?: number | undefined;
7334
+ minLength?: number | undefined;
7335
+ pattern?: string | RegExp | undefined;
7336
+ maxItems?: number | undefined;
7337
+ minItems?: number | undefined;
7338
+ uniqueItems?: boolean | undefined;
7339
+ maxProperties?: number | undefined;
7340
+ minProperties?: number | undefined;
7341
+ required?: string | boolean | string[] | undefined;
7342
+ format?: string | undefined;
7343
+ $ref?: string | undefined;
7344
+ $namespace?: string | undefined;
7345
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7346
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7347
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
7348
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
7349
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7350
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
7351
+ "x-value"?: any;
7352
+ "x-index"?: number | undefined;
7353
+ "x-pattern"?: any;
7354
+ "x-display"?: any;
7355
+ "x-validator"?: any;
7356
+ "x-decorator"?: any;
7357
+ "x-decorator-props"?: any;
7358
+ "x-component"?: any;
7359
+ "x-component-props"?: any;
7360
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
7361
+ "x-content"?: any;
7362
+ "x-data"?: any;
7363
+ "x-visible"?: boolean | undefined;
7364
+ "x-hidden"?: boolean | undefined;
7365
+ "x-disabled"?: boolean | undefined;
7366
+ "x-editable"?: boolean | undefined;
7367
+ "x-read-only"?: boolean | undefined;
7368
+ "x-read-pretty"?: boolean | undefined;
7369
+ "x-compile-omitted"?: string[] | undefined;
7370
+ }>>;
7371
+ currentAnchor: import("vue").WritableComputedRef<string>;
7372
+ generateAnchorList: (schema: import("@formily/json-schema").Stringify<{
7373
+ [key: symbol]: any;
7374
+ [key: `x-${string}`]: any;
7375
+ [key: `x-${number}`]: any;
7376
+ version?: string | undefined;
7377
+ name?: import("@formily/json-schema").SchemaKey | undefined;
7378
+ title?: any;
7379
+ description?: any;
7380
+ default?: any;
7381
+ readOnly?: boolean | undefined;
7382
+ writeOnly?: boolean | undefined;
7383
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
7384
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
7385
+ const?: any;
7386
+ multipleOf?: number | undefined;
7387
+ maximum?: number | undefined;
7388
+ exclusiveMaximum?: number | undefined;
7389
+ minimum?: number | undefined;
7390
+ exclusiveMinimum?: number | undefined;
7391
+ maxLength?: number | undefined;
7392
+ minLength?: number | undefined;
7393
+ pattern?: string | RegExp | undefined;
7394
+ maxItems?: number | undefined;
7395
+ minItems?: number | undefined;
7396
+ uniqueItems?: boolean | undefined;
7397
+ maxProperties?: number | undefined;
7398
+ minProperties?: number | undefined;
7399
+ required?: string | boolean | string[] | undefined;
7400
+ format?: string | undefined;
7401
+ $ref?: string | undefined;
7402
+ $namespace?: string | undefined;
7403
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7404
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7405
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
7406
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
7407
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
7408
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
7409
+ "x-value"?: any;
7410
+ "x-index"?: number | undefined;
7411
+ "x-pattern"?: any;
7412
+ "x-display"?: any;
7413
+ "x-validator"?: any;
7414
+ "x-decorator"?: any;
7415
+ "x-decorator-props"?: any;
7416
+ "x-component"?: any;
7417
+ "x-component-props"?: any;
7418
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
7419
+ "x-content"?: any;
7420
+ "x-data"?: any;
7421
+ "x-visible"?: boolean | undefined;
7422
+ "x-hidden"?: boolean | undefined;
7423
+ "x-disabled"?: boolean | undefined;
7424
+ "x-editable"?: boolean | undefined;
7425
+ "x-read-only"?: boolean | undefined;
7426
+ "x-read-pretty"?: boolean | undefined;
7427
+ "x-compile-omitted"?: string[] | undefined;
7428
+ }>) => void;
7429
+ anchorIdList: import("vue").Ref<{
7430
+ name: string;
7431
+ title: string;
7432
+ }[]>;
7433
+ formHeight: import("vue").ComputedRef<string | undefined>;
7434
+ onScroll: () => void;
7435
+ queryWidget: (key: string, wrapperElement: HTMLElement, fieldList: import("..").FieldItem[]) => Promise<{
7436
+ widgetElement: HTMLInputElement | null | undefined;
7437
+ widgetElementList: HTMLInputElement[];
7438
+ decoratorElement: HTMLElement | null | undefined;
7439
+ }>;
7440
+ FormConsumer: import("vue").DefineComponent<{}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
7441
+ FormProvider: import("vue").DefineComponent<Record<"form", any>, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<Record<"form", any>>>, {
7442
+ form: any;
7443
+ }>;
7444
+ NForm: import("vue").DefineComponent<{
7445
+ readonly inline: BooleanConstructor;
7446
+ readonly labelWidth: import("vue").PropType<string | number>;
7447
+ readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
7448
+ readonly labelPlacement: {
7449
+ readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
7450
+ readonly default: "top";
7451
+ };
7452
+ readonly model: {
7453
+ readonly type: import("vue").PropType<Record<string, any>>;
7454
+ readonly default: () => void;
7455
+ };
7456
+ readonly rules: import("vue").PropType<import("naive-ui").FormRules>;
7457
+ readonly disabled: BooleanConstructor;
7458
+ readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
7459
+ readonly showRequireMark: {
7460
+ readonly type: import("vue").PropType<boolean | undefined>;
7461
+ readonly default: undefined;
7462
+ };
7463
+ readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
7464
+ readonly showFeedback: {
7465
+ readonly type: BooleanConstructor;
7466
+ readonly default: true;
7467
+ };
7468
+ readonly onSubmit: {
7469
+ readonly type: import("vue").PropType<(e: Event) => void>;
7470
+ readonly default: (e: Event) => void;
7471
+ };
7472
+ readonly showLabel: {
7473
+ readonly type: import("vue").PropType<boolean | undefined>;
7474
+ readonly default: undefined;
7475
+ };
7476
+ readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
7477
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
7478
+ blankHeightSmall: string;
7479
+ blankHeightMedium: string;
7480
+ blankHeightLarge: string;
7481
+ lineHeight: string;
7482
+ labelTextColor: string;
7483
+ asteriskColor: string;
7484
+ feedbackTextColorError: string;
7485
+ feedbackTextColorWarning: string;
7486
+ feedbackTextColor: string;
7487
+ feedbackPadding: string;
7488
+ feedbackHeightSmall: string;
7489
+ feedbackHeightMedium: string;
7490
+ feedbackHeightLarge: string;
7491
+ feedbackFontSizeSmall: string;
7492
+ feedbackFontSizeMedium: string;
7493
+ feedbackFontSizeLarge: string;
7494
+ labelFontSizeLeftSmall: string;
7495
+ labelFontSizeLeftMedium: string;
7496
+ labelFontSizeLeftLarge: string;
7497
+ labelFontSizeTopSmall: string;
7498
+ labelFontSizeTopMedium: string;
7499
+ labelFontSizeTopLarge: string;
7500
+ labelHeightSmall: string;
7501
+ labelHeightMedium: string;
7502
+ labelHeightLarge: string;
7503
+ labelPaddingVertical: string;
7504
+ labelPaddingHorizontal: string;
7505
+ labelTextAlignVertical: string;
7506
+ labelTextAlignHorizontal: string;
7507
+ }, any>>;
7508
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
7509
+ blankHeightSmall: string;
7510
+ blankHeightMedium: string;
7511
+ blankHeightLarge: string;
7512
+ lineHeight: string;
7513
+ labelTextColor: string;
7514
+ asteriskColor: string;
7515
+ feedbackTextColorError: string;
7516
+ feedbackTextColorWarning: string;
7517
+ feedbackTextColor: string;
7518
+ feedbackPadding: string;
7519
+ feedbackHeightSmall: string;
7520
+ feedbackHeightMedium: string;
7521
+ feedbackHeightLarge: string;
7522
+ feedbackFontSizeSmall: string;
7523
+ feedbackFontSizeMedium: string;
7524
+ feedbackFontSizeLarge: string;
7525
+ labelFontSizeLeftSmall: string;
7526
+ labelFontSizeLeftMedium: string;
7527
+ labelFontSizeLeftLarge: string;
7528
+ labelFontSizeTopSmall: string;
7529
+ labelFontSizeTopMedium: string;
7530
+ labelFontSizeTopLarge: string;
7531
+ labelHeightSmall: string;
7532
+ labelHeightMedium: string;
7533
+ labelHeightLarge: string;
7534
+ labelPaddingVertical: string;
7535
+ labelPaddingHorizontal: string;
7536
+ labelTextAlignVertical: string;
7537
+ labelTextAlignHorizontal: string;
7538
+ }, any>>>;
7539
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
7540
+ blankHeightSmall: string;
7541
+ blankHeightMedium: string;
7542
+ blankHeightLarge: string;
7543
+ lineHeight: string;
7544
+ labelTextColor: string;
7545
+ asteriskColor: string;
7546
+ feedbackTextColorError: string;
7547
+ feedbackTextColorWarning: string;
7548
+ feedbackTextColor: string;
7549
+ feedbackPadding: string;
7550
+ feedbackHeightSmall: string;
7551
+ feedbackHeightMedium: string;
7552
+ feedbackHeightLarge: string;
7553
+ feedbackFontSizeSmall: string;
7554
+ feedbackFontSizeMedium: string;
7555
+ feedbackFontSizeLarge: string;
7556
+ labelFontSizeLeftSmall: string;
7557
+ labelFontSizeLeftMedium: string;
7558
+ labelFontSizeLeftLarge: string;
7559
+ labelFontSizeTopSmall: string;
7560
+ labelFontSizeTopMedium: string;
7561
+ labelFontSizeTopLarge: string;
7562
+ labelHeightSmall: string;
7563
+ labelHeightMedium: string;
7564
+ labelHeightLarge: string;
7565
+ labelPaddingVertical: string;
7566
+ labelPaddingHorizontal: string;
7567
+ labelTextAlignVertical: string;
7568
+ labelTextAlignHorizontal: string;
7569
+ }, any>>>;
7570
+ }, import("naive-ui").FormInst & {
7571
+ mergedClsPrefix: import("vue").ComputedRef<string>;
7572
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7573
+ readonly inline: BooleanConstructor;
7574
+ readonly labelWidth: import("vue").PropType<string | number>;
7575
+ readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
7576
+ readonly labelPlacement: {
7577
+ readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
7578
+ readonly default: "top";
7579
+ };
7580
+ readonly model: {
7581
+ readonly type: import("vue").PropType<Record<string, any>>;
7582
+ readonly default: () => void;
7583
+ };
7584
+ readonly rules: import("vue").PropType<import("naive-ui").FormRules>;
7585
+ readonly disabled: BooleanConstructor;
7586
+ readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
7587
+ readonly showRequireMark: {
7588
+ readonly type: import("vue").PropType<boolean | undefined>;
7589
+ readonly default: undefined;
7590
+ };
7591
+ readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
7592
+ readonly showFeedback: {
7593
+ readonly type: BooleanConstructor;
7594
+ readonly default: true;
7595
+ };
7596
+ readonly onSubmit: {
7597
+ readonly type: import("vue").PropType<(e: Event) => void>;
7598
+ readonly default: (e: Event) => void;
7599
+ };
7600
+ readonly showLabel: {
7601
+ readonly type: import("vue").PropType<boolean | undefined>;
7602
+ readonly default: undefined;
7603
+ };
7604
+ readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
7605
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
7606
+ blankHeightSmall: string;
7607
+ blankHeightMedium: string;
7608
+ blankHeightLarge: string;
7609
+ lineHeight: string;
7610
+ labelTextColor: string;
7611
+ asteriskColor: string;
7612
+ feedbackTextColorError: string;
7613
+ feedbackTextColorWarning: string;
7614
+ feedbackTextColor: string;
7615
+ feedbackPadding: string;
7616
+ feedbackHeightSmall: string;
7617
+ feedbackHeightMedium: string;
7618
+ feedbackHeightLarge: string;
7619
+ feedbackFontSizeSmall: string;
7620
+ feedbackFontSizeMedium: string;
7621
+ feedbackFontSizeLarge: string;
7622
+ labelFontSizeLeftSmall: string;
7623
+ labelFontSizeLeftMedium: string;
7624
+ labelFontSizeLeftLarge: string;
7625
+ labelFontSizeTopSmall: string;
7626
+ labelFontSizeTopMedium: string;
7627
+ labelFontSizeTopLarge: string;
7628
+ labelHeightSmall: string;
7629
+ labelHeightMedium: string;
7630
+ labelHeightLarge: string;
7631
+ labelPaddingVertical: string;
7632
+ labelPaddingHorizontal: string;
7633
+ labelTextAlignVertical: string;
7634
+ labelTextAlignHorizontal: string;
7635
+ }, any>>;
7636
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
7637
+ blankHeightSmall: string;
7638
+ blankHeightMedium: string;
7639
+ blankHeightLarge: string;
7640
+ lineHeight: string;
7641
+ labelTextColor: string;
7642
+ asteriskColor: string;
7643
+ feedbackTextColorError: string;
7644
+ feedbackTextColorWarning: string;
7645
+ feedbackTextColor: string;
7646
+ feedbackPadding: string;
7647
+ feedbackHeightSmall: string;
7648
+ feedbackHeightMedium: string;
7649
+ feedbackHeightLarge: string;
7650
+ feedbackFontSizeSmall: string;
7651
+ feedbackFontSizeMedium: string;
7652
+ feedbackFontSizeLarge: string;
7653
+ labelFontSizeLeftSmall: string;
7654
+ labelFontSizeLeftMedium: string;
7655
+ labelFontSizeLeftLarge: string;
7656
+ labelFontSizeTopSmall: string;
7657
+ labelFontSizeTopMedium: string;
7658
+ labelFontSizeTopLarge: string;
7659
+ labelHeightSmall: string;
7660
+ labelHeightMedium: string;
7661
+ labelHeightLarge: string;
7662
+ labelPaddingVertical: string;
7663
+ labelPaddingHorizontal: string;
7664
+ labelTextAlignVertical: string;
7665
+ labelTextAlignHorizontal: string;
7666
+ }, any>>>;
7667
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
7668
+ blankHeightSmall: string;
7669
+ blankHeightMedium: string;
7670
+ blankHeightLarge: string;
7671
+ lineHeight: string;
7672
+ labelTextColor: string;
7673
+ asteriskColor: string;
7674
+ feedbackTextColorError: string;
7675
+ feedbackTextColorWarning: string;
7676
+ feedbackTextColor: string;
7677
+ feedbackPadding: string;
7678
+ feedbackHeightSmall: string;
7679
+ feedbackHeightMedium: string;
7680
+ feedbackHeightLarge: string;
7681
+ feedbackFontSizeSmall: string;
7682
+ feedbackFontSizeMedium: string;
7683
+ feedbackFontSizeLarge: string;
7684
+ labelFontSizeLeftSmall: string;
7685
+ labelFontSizeLeftMedium: string;
7686
+ labelFontSizeLeftLarge: string;
7687
+ labelFontSizeTopSmall: string;
7688
+ labelFontSizeTopMedium: string;
7689
+ labelFontSizeTopLarge: string;
7690
+ labelHeightSmall: string;
7691
+ labelHeightMedium: string;
7692
+ labelHeightLarge: string;
7693
+ labelPaddingVertical: string;
7694
+ labelPaddingHorizontal: string;
7695
+ labelTextAlignVertical: string;
7696
+ labelTextAlignHorizontal: string;
7697
+ }, any>>>;
7698
+ }>>, {
7699
+ readonly inline: boolean;
7700
+ readonly disabled: boolean;
7701
+ readonly onSubmit: (e: Event) => void;
7702
+ readonly labelPlacement: import("naive-ui/es/form/src/interface").LabelPlacement;
7703
+ readonly model: Record<string, any>;
7704
+ readonly showRequireMark: boolean | undefined;
7705
+ readonly showFeedback: boolean;
7706
+ readonly showLabel: boolean | undefined;
7707
+ }>;
7708
+ NTabPane: import("vue").DefineComponent<{
7709
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7710
+ [key: string]: any;
7711
+ }> | (() => import("vue").VNodeChild)>;
7712
+ readonly name: {
7713
+ readonly type: import("vue").PropType<string | number>;
7714
+ readonly required: true;
7715
+ };
7716
+ readonly disabled: BooleanConstructor;
7717
+ readonly displayDirective: {
7718
+ readonly type: import("vue").PropType<"show" | "if" | "show:lazy">;
7719
+ readonly default: "if";
7720
+ };
7721
+ readonly closable: {
7722
+ readonly type: import("vue").PropType<boolean | undefined>;
7723
+ readonly default: undefined;
7724
+ };
7725
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
7726
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7727
+ [key: string]: any;
7728
+ }> | (() => import("vue").VNodeChild)>;
7729
+ }, {
7730
+ style: import("vue").Ref<string | import("vue").CSSProperties | undefined>;
7731
+ class: import("vue").Ref<string | undefined>;
7732
+ mergedClsPrefix: import("vue").Ref<string>;
7733
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7734
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7735
+ [key: string]: any;
7736
+ }> | (() => import("vue").VNodeChild)>;
7737
+ readonly name: {
7738
+ readonly type: import("vue").PropType<string | number>;
7739
+ readonly required: true;
7740
+ };
7741
+ readonly disabled: BooleanConstructor;
7742
+ readonly displayDirective: {
7743
+ readonly type: import("vue").PropType<"show" | "if" | "show:lazy">;
7744
+ readonly default: "if";
7745
+ };
7746
+ readonly closable: {
7747
+ readonly type: import("vue").PropType<boolean | undefined>;
7748
+ readonly default: undefined;
7749
+ };
7750
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
7751
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7752
+ [key: string]: any;
7753
+ }> | (() => import("vue").VNodeChild)>;
7754
+ }>>, {
7755
+ readonly disabled: boolean;
7756
+ readonly closable: boolean | undefined;
7757
+ readonly displayDirective: "show" | "if" | "show:lazy";
7758
+ }>;
7759
+ NTabs: import("vue").DefineComponent<{
7760
+ readonly value: import("vue").PropType<string | number>;
7761
+ readonly defaultValue: import("vue").PropType<string | number>;
7762
+ readonly trigger: {
7763
+ readonly type: import("vue").PropType<"click" | "hover">;
7764
+ readonly default: "click";
7765
+ };
7766
+ readonly type: {
7767
+ readonly type: import("vue").PropType<import("naive-ui/es/tabs/src/interface").TabsType>;
7768
+ readonly default: "bar";
7769
+ };
7770
+ readonly closable: BooleanConstructor;
7771
+ readonly justifyContent: import("vue").PropType<"center" | "start" | "end" | "space-around" | "space-between" | "space-evenly">;
7772
+ readonly size: {
7773
+ readonly type: import("vue").PropType<"small" | "medium" | "large">;
7774
+ readonly default: "medium";
7775
+ };
7776
+ readonly tabStyle: import("vue").PropType<string | import("vue").CSSProperties>;
7777
+ readonly barWidth: NumberConstructor;
7778
+ readonly paneClass: StringConstructor;
7779
+ readonly paneStyle: import("vue").PropType<string | import("vue").CSSProperties>;
7780
+ readonly addable: import("vue").PropType<import("naive-ui/es/tabs/src/interface").Addable>;
7781
+ readonly tabsPadding: {
7782
+ readonly type: NumberConstructor;
7783
+ readonly default: 0;
7784
+ };
7785
+ readonly animated: BooleanConstructor;
7786
+ readonly onBeforeLeave: import("vue").PropType<import("naive-ui/es/tabs/src/interface").OnBeforeLeave>;
7787
+ readonly onAdd: import("vue").PropType<() => void>;
7788
+ readonly 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
7789
+ readonly onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
7790
+ readonly onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnClose>>;
7791
+ readonly labelSize: import("vue").PropType<"small" | "medium" | "large">;
7792
+ readonly activeName: import("vue").PropType<string | number>;
7793
+ readonly onActiveNameChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: never) => void>>;
7794
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tabs", {
7795
+ colorSegment: string;
7796
+ tabFontSizeCard: string;
7797
+ tabTextColorLine: string;
7798
+ tabTextColorActiveLine: string;
7799
+ tabTextColorHoverLine: string;
7800
+ tabTextColorDisabledLine: string;
7801
+ tabTextColorSegment: string;
7802
+ tabTextColorActiveSegment: string;
7803
+ tabTextColorHoverSegment: string;
7804
+ tabTextColorDisabledSegment: string;
7805
+ tabTextColorBar: string;
7806
+ tabTextColorActiveBar: string;
7807
+ tabTextColorHoverBar: string;
7808
+ tabTextColorDisabledBar: string;
7809
+ tabTextColorCard: string;
7810
+ tabTextColorHoverCard: string;
7811
+ tabTextColorActiveCard: string;
7812
+ tabTextColorDisabledCard: string;
7813
+ barColor: string;
7814
+ closeIconColor: string;
7815
+ closeIconColorHover: string;
7816
+ closeIconColorPressed: string;
7817
+ closeColorHover: string;
7818
+ closeColorPressed: string;
7819
+ closeBorderRadius: string;
7820
+ tabColor: string;
7821
+ tabColorSegment: string;
7822
+ tabBorderColor: string;
7823
+ tabFontWeightActive: string;
7824
+ tabFontWeight: string;
7825
+ tabBorderRadius: string;
7826
+ paneTextColor: string;
7827
+ fontWeightStrong: string;
7828
+ tabFontSizeSmall: string;
7829
+ tabFontSizeMedium: string;
7830
+ tabFontSizeLarge: string;
7831
+ tabGapSmallLine: string;
7832
+ tabGapMediumLine: string;
7833
+ tabGapLargeLine: string;
7834
+ tabPaddingSmallLine: string;
7835
+ tabPaddingMediumLine: string;
7836
+ tabPaddingLargeLine: string;
7837
+ tabGapSmallBar: string;
7838
+ tabGapMediumBar: string;
7839
+ tabGapLargeBar: string;
7840
+ tabPaddingSmallBar: string;
7841
+ tabPaddingMediumBar: string;
7842
+ tabPaddingLargeBar: string;
7843
+ tabGapSmallCard: string;
7844
+ tabGapMediumCard: string;
7845
+ tabGapLargeCard: string;
7846
+ tabPaddingSmallCard: string;
7847
+ tabPaddingMediumCard: string;
7848
+ tabPaddingLargeCard: string;
7849
+ tabPaddingSmallSegment: string;
7850
+ tabPaddingMediumSegment: string;
7851
+ tabPaddingLargeSegment: string;
7852
+ tabGapSmallSegment: string;
7853
+ tabGapMediumSegment: string;
7854
+ tabGapLargeSegment: string;
7855
+ panePaddingSmall: string;
7856
+ panePaddingMedium: string;
7857
+ panePaddingLarge: string;
7858
+ closeSize: string;
7859
+ closeIconSize: string;
7860
+ }, any>>;
7861
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
7862
+ colorSegment: string;
7863
+ tabFontSizeCard: string;
7864
+ tabTextColorLine: string;
7865
+ tabTextColorActiveLine: string;
7866
+ tabTextColorHoverLine: string;
7867
+ tabTextColorDisabledLine: string;
7868
+ tabTextColorSegment: string;
7869
+ tabTextColorActiveSegment: string;
7870
+ tabTextColorHoverSegment: string;
7871
+ tabTextColorDisabledSegment: string;
7872
+ tabTextColorBar: string;
7873
+ tabTextColorActiveBar: string;
7874
+ tabTextColorHoverBar: string;
7875
+ tabTextColorDisabledBar: string;
7876
+ tabTextColorCard: string;
7877
+ tabTextColorHoverCard: string;
7878
+ tabTextColorActiveCard: string;
7879
+ tabTextColorDisabledCard: string;
7880
+ barColor: string;
7881
+ closeIconColor: string;
7882
+ closeIconColorHover: string;
7883
+ closeIconColorPressed: string;
7884
+ closeColorHover: string;
7885
+ closeColorPressed: string;
7886
+ closeBorderRadius: string;
7887
+ tabColor: string;
7888
+ tabColorSegment: string;
7889
+ tabBorderColor: string;
7890
+ tabFontWeightActive: string;
7891
+ tabFontWeight: string;
7892
+ tabBorderRadius: string;
7893
+ paneTextColor: string;
7894
+ fontWeightStrong: string;
7895
+ tabFontSizeSmall: string;
7896
+ tabFontSizeMedium: string;
7897
+ tabFontSizeLarge: string;
7898
+ tabGapSmallLine: string;
7899
+ tabGapMediumLine: string;
7900
+ tabGapLargeLine: string;
7901
+ tabPaddingSmallLine: string;
7902
+ tabPaddingMediumLine: string;
7903
+ tabPaddingLargeLine: string;
7904
+ tabGapSmallBar: string;
7905
+ tabGapMediumBar: string;
7906
+ tabGapLargeBar: string;
7907
+ tabPaddingSmallBar: string;
7908
+ tabPaddingMediumBar: string;
7909
+ tabPaddingLargeBar: string;
7910
+ tabGapSmallCard: string;
7911
+ tabGapMediumCard: string;
7912
+ tabGapLargeCard: string;
7913
+ tabPaddingSmallCard: string;
7914
+ tabPaddingMediumCard: string;
7915
+ tabPaddingLargeCard: string;
7916
+ tabPaddingSmallSegment: string;
7917
+ tabPaddingMediumSegment: string;
7918
+ tabPaddingLargeSegment: string;
7919
+ tabGapSmallSegment: string;
7920
+ tabGapMediumSegment: string;
7921
+ tabGapLargeSegment: string;
7922
+ panePaddingSmall: string;
7923
+ panePaddingMedium: string;
7924
+ panePaddingLarge: string;
7925
+ closeSize: string;
7926
+ closeIconSize: string;
7927
+ }, any>>>;
7928
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
7929
+ colorSegment: string;
7930
+ tabFontSizeCard: string;
7931
+ tabTextColorLine: string;
7932
+ tabTextColorActiveLine: string;
7933
+ tabTextColorHoverLine: string;
7934
+ tabTextColorDisabledLine: string;
7935
+ tabTextColorSegment: string;
7936
+ tabTextColorActiveSegment: string;
7937
+ tabTextColorHoverSegment: string;
7938
+ tabTextColorDisabledSegment: string;
7939
+ tabTextColorBar: string;
7940
+ tabTextColorActiveBar: string;
7941
+ tabTextColorHoverBar: string;
7942
+ tabTextColorDisabledBar: string;
7943
+ tabTextColorCard: string;
7944
+ tabTextColorHoverCard: string;
7945
+ tabTextColorActiveCard: string;
7946
+ tabTextColorDisabledCard: string;
7947
+ barColor: string;
7948
+ closeIconColor: string;
7949
+ closeIconColorHover: string;
7950
+ closeIconColorPressed: string;
7951
+ closeColorHover: string;
7952
+ closeColorPressed: string;
7953
+ closeBorderRadius: string;
7954
+ tabColor: string;
7955
+ tabColorSegment: string;
7956
+ tabBorderColor: string;
7957
+ tabFontWeightActive: string;
7958
+ tabFontWeight: string;
7959
+ tabBorderRadius: string;
7960
+ paneTextColor: string;
7961
+ fontWeightStrong: string;
7962
+ tabFontSizeSmall: string;
7963
+ tabFontSizeMedium: string;
7964
+ tabFontSizeLarge: string;
7965
+ tabGapSmallLine: string;
7966
+ tabGapMediumLine: string;
7967
+ tabGapLargeLine: string;
7968
+ tabPaddingSmallLine: string;
7969
+ tabPaddingMediumLine: string;
7970
+ tabPaddingLargeLine: string;
7971
+ tabGapSmallBar: string;
7972
+ tabGapMediumBar: string;
7973
+ tabGapLargeBar: string;
7974
+ tabPaddingSmallBar: string;
7975
+ tabPaddingMediumBar: string;
7976
+ tabPaddingLargeBar: string;
7977
+ tabGapSmallCard: string;
7978
+ tabGapMediumCard: string;
7979
+ tabGapLargeCard: string;
7980
+ tabPaddingSmallCard: string;
7981
+ tabPaddingMediumCard: string;
7982
+ tabPaddingLargeCard: string;
7983
+ tabPaddingSmallSegment: string;
7984
+ tabPaddingMediumSegment: string;
7985
+ tabPaddingLargeSegment: string;
7986
+ tabGapSmallSegment: string;
7987
+ tabGapMediumSegment: string;
7988
+ tabGapLargeSegment: string;
7989
+ panePaddingSmall: string;
7990
+ panePaddingMedium: string;
7991
+ panePaddingLarge: string;
7992
+ closeSize: string;
7993
+ closeIconSize: string;
7994
+ }, any>>>;
7995
+ }, {
7996
+ syncBarPosition: () => void;
7997
+ mergedClsPrefix: import("vue").ComputedRef<string>;
7998
+ mergedValue: import("vue").ComputedRef<string | number | null>;
7999
+ renderedNames: Set<string | number>;
8000
+ tabsRailElRef: import("vue").Ref<HTMLElement | null>;
8001
+ tabsPaneWrapperRef: import("vue").Ref<HTMLElement | null>;
8002
+ tabsElRef: import("vue").Ref<HTMLElement | null>;
8003
+ barElRef: import("vue").Ref<HTMLElement | null>;
8004
+ addTabInstRef: import("vue").Ref<import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null>;
8005
+ xScrollInstRef: import("vue").Ref<(import("vueuc").VXScrollInst & {
8006
+ $: import("vue").ComponentInternalInstance;
8007
+ $data: {};
8008
+ $props: {};
8009
+ $attrs: {
8010
+ [x: string]: unknown;
8011
+ };
8012
+ $refs: {
8013
+ [x: string]: unknown;
8014
+ };
8015
+ $slots: Readonly<{
8016
+ [name: string]: import("vue").Slot | undefined;
8017
+ }>;
8018
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
8019
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
8020
+ $emit: (event: string, ...args: any[]) => void;
8021
+ $el: any;
8022
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}> & {
8023
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
8024
+ created?: (() => void) | (() => void)[] | undefined;
8025
+ beforeMount?: (() => void) | (() => void)[] | undefined;
8026
+ mounted?: (() => void) | (() => void)[] | undefined;
8027
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
8028
+ updated?: (() => void) | (() => void)[] | undefined;
8029
+ activated?: (() => void) | (() => void)[] | undefined;
8030
+ deactivated?: (() => void) | (() => void)[] | undefined;
8031
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
8032
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
8033
+ destroyed?: (() => void) | (() => void)[] | undefined;
8034
+ unmounted?: (() => void) | (() => void)[] | undefined;
8035
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
8036
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
8037
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[] | undefined;
8038
+ };
8039
+ $forceUpdate: () => void;
8040
+ $nextTick: typeof import("vue").nextTick;
8041
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
8042
+ } & import("vue").ShallowUnwrapRef<{}> & import("vue").ComponentCustomProperties) | null>;
8043
+ scrollWrapperElRef: import("vue").Ref<HTMLElement | null>;
8044
+ addTabFixed: import("vue").Ref<boolean>;
8045
+ tabWrapperStyle: import("vue").ComputedRef<{
8046
+ display: string;
8047
+ justifyContent: "center" | "start" | "end" | "space-around" | "space-between" | "space-evenly";
8048
+ } | undefined>;
8049
+ handleNavResize: import("lodash").DebouncedFunc<(entry: ResizeObserverEntry) => void>;
8050
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
8051
+ handleScroll: import("lodash").DebouncedFunc<(e: Event) => void>;
8052
+ handleTabsResize: import("lodash").DebouncedFunc<(entry: ResizeObserverEntry) => void>;
8053
+ cssVars: import("vue").ComputedRef<{
8054
+ '--n-bezier': string;
8055
+ '--n-color-segment': string;
8056
+ '--n-bar-color': string;
8057
+ '--n-tab-font-size': string;
8058
+ '--n-tab-text-color': string;
8059
+ '--n-tab-text-color-active': string;
8060
+ '--n-tab-text-color-disabled': string;
8061
+ '--n-tab-text-color-hover': string;
8062
+ '--n-pane-text-color': string;
8063
+ '--n-tab-border-color': string;
8064
+ '--n-tab-border-radius': string;
8065
+ '--n-close-size': string;
8066
+ '--n-close-icon-size': string;
8067
+ '--n-close-color-hover': string;
8068
+ '--n-close-color-pressed': string;
8069
+ '--n-close-border-radius': string;
8070
+ '--n-close-icon-color': string;
8071
+ '--n-close-icon-color-hover': string;
8072
+ '--n-close-icon-color-pressed': string;
8073
+ '--n-tab-color': string;
8074
+ '--n-tab-font-weight': string;
8075
+ '--n-tab-font-weight-active': string;
8076
+ '--n-tab-padding': string;
8077
+ '--n-tab-gap': string;
8078
+ '--n-pane-padding': string;
8079
+ '--n-font-weight-strong': string;
8080
+ '--n-tab-color-segment': string;
8081
+ }> | undefined;
8082
+ themeClass: import("vue").Ref<string> | undefined;
8083
+ animationDirection: import("vue").Ref<"prev" | "next">;
8084
+ renderNameListRef: {
8085
+ value: (string | number)[];
8086
+ };
8087
+ onAnimationBeforeLeave: (el: HTMLElement) => void;
8088
+ onAnimationEnter: (el: HTMLElement) => void;
8089
+ onAnimationAfterEnter: () => void;
8090
+ onRender: (() => void) | undefined;
8091
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
8092
+ readonly value: import("vue").PropType<string | number>;
8093
+ readonly defaultValue: import("vue").PropType<string | number>;
8094
+ readonly trigger: {
8095
+ readonly type: import("vue").PropType<"click" | "hover">;
8096
+ readonly default: "click";
8097
+ };
8098
+ readonly type: {
8099
+ readonly type: import("vue").PropType<import("naive-ui/es/tabs/src/interface").TabsType>;
8100
+ readonly default: "bar";
8101
+ };
8102
+ readonly closable: BooleanConstructor;
8103
+ readonly justifyContent: import("vue").PropType<"center" | "start" | "end" | "space-around" | "space-between" | "space-evenly">;
8104
+ readonly size: {
8105
+ readonly type: import("vue").PropType<"small" | "medium" | "large">;
8106
+ readonly default: "medium";
8107
+ };
8108
+ readonly tabStyle: import("vue").PropType<string | import("vue").CSSProperties>;
8109
+ readonly barWidth: NumberConstructor;
8110
+ readonly paneClass: StringConstructor;
8111
+ readonly paneStyle: import("vue").PropType<string | import("vue").CSSProperties>;
8112
+ readonly addable: import("vue").PropType<import("naive-ui/es/tabs/src/interface").Addable>;
8113
+ readonly tabsPadding: {
8114
+ readonly type: NumberConstructor;
8115
+ readonly default: 0;
8116
+ };
8117
+ readonly animated: BooleanConstructor;
8118
+ readonly onBeforeLeave: import("vue").PropType<import("naive-ui/es/tabs/src/interface").OnBeforeLeave>;
8119
+ readonly onAdd: import("vue").PropType<() => void>;
8120
+ readonly 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
8121
+ readonly onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
8122
+ readonly onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnClose>>;
8123
+ readonly labelSize: import("vue").PropType<"small" | "medium" | "large">;
8124
+ readonly activeName: import("vue").PropType<string | number>;
8125
+ readonly onActiveNameChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: never) => void>>;
8126
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tabs", {
8127
+ colorSegment: string;
8128
+ tabFontSizeCard: string;
8129
+ tabTextColorLine: string;
8130
+ tabTextColorActiveLine: string;
8131
+ tabTextColorHoverLine: string;
8132
+ tabTextColorDisabledLine: string;
8133
+ tabTextColorSegment: string;
8134
+ tabTextColorActiveSegment: string;
8135
+ tabTextColorHoverSegment: string;
8136
+ tabTextColorDisabledSegment: string;
8137
+ tabTextColorBar: string;
8138
+ tabTextColorActiveBar: string;
8139
+ tabTextColorHoverBar: string;
8140
+ tabTextColorDisabledBar: string;
8141
+ tabTextColorCard: string;
8142
+ tabTextColorHoverCard: string;
8143
+ tabTextColorActiveCard: string;
8144
+ tabTextColorDisabledCard: string;
8145
+ barColor: string;
8146
+ closeIconColor: string;
8147
+ closeIconColorHover: string;
8148
+ closeIconColorPressed: string;
8149
+ closeColorHover: string;
8150
+ closeColorPressed: string;
8151
+ closeBorderRadius: string;
8152
+ tabColor: string;
8153
+ tabColorSegment: string;
8154
+ tabBorderColor: string;
8155
+ tabFontWeightActive: string;
8156
+ tabFontWeight: string;
8157
+ tabBorderRadius: string;
8158
+ paneTextColor: string;
8159
+ fontWeightStrong: string;
8160
+ tabFontSizeSmall: string;
8161
+ tabFontSizeMedium: string;
8162
+ tabFontSizeLarge: string;
8163
+ tabGapSmallLine: string;
8164
+ tabGapMediumLine: string;
8165
+ tabGapLargeLine: string;
8166
+ tabPaddingSmallLine: string;
8167
+ tabPaddingMediumLine: string;
8168
+ tabPaddingLargeLine: string;
8169
+ tabGapSmallBar: string;
8170
+ tabGapMediumBar: string;
8171
+ tabGapLargeBar: string;
8172
+ tabPaddingSmallBar: string;
8173
+ tabPaddingMediumBar: string;
8174
+ tabPaddingLargeBar: string;
8175
+ tabGapSmallCard: string;
8176
+ tabGapMediumCard: string;
8177
+ tabGapLargeCard: string;
8178
+ tabPaddingSmallCard: string;
8179
+ tabPaddingMediumCard: string;
8180
+ tabPaddingLargeCard: string;
8181
+ tabPaddingSmallSegment: string;
8182
+ tabPaddingMediumSegment: string;
8183
+ tabPaddingLargeSegment: string;
8184
+ tabGapSmallSegment: string;
8185
+ tabGapMediumSegment: string;
8186
+ tabGapLargeSegment: string;
8187
+ panePaddingSmall: string;
8188
+ panePaddingMedium: string;
8189
+ panePaddingLarge: string;
8190
+ closeSize: string;
8191
+ closeIconSize: string;
8192
+ }, any>>;
8193
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
8194
+ colorSegment: string;
8195
+ tabFontSizeCard: string;
8196
+ tabTextColorLine: string;
8197
+ tabTextColorActiveLine: string;
8198
+ tabTextColorHoverLine: string;
8199
+ tabTextColorDisabledLine: string;
8200
+ tabTextColorSegment: string;
8201
+ tabTextColorActiveSegment: string;
8202
+ tabTextColorHoverSegment: string;
8203
+ tabTextColorDisabledSegment: string;
8204
+ tabTextColorBar: string;
8205
+ tabTextColorActiveBar: string;
8206
+ tabTextColorHoverBar: string;
8207
+ tabTextColorDisabledBar: string;
8208
+ tabTextColorCard: string;
8209
+ tabTextColorHoverCard: string;
8210
+ tabTextColorActiveCard: string;
8211
+ tabTextColorDisabledCard: string;
8212
+ barColor: string;
8213
+ closeIconColor: string;
8214
+ closeIconColorHover: string;
8215
+ closeIconColorPressed: string;
8216
+ closeColorHover: string;
8217
+ closeColorPressed: string;
8218
+ closeBorderRadius: string;
8219
+ tabColor: string;
8220
+ tabColorSegment: string;
8221
+ tabBorderColor: string;
8222
+ tabFontWeightActive: string;
8223
+ tabFontWeight: string;
8224
+ tabBorderRadius: string;
8225
+ paneTextColor: string;
8226
+ fontWeightStrong: string;
8227
+ tabFontSizeSmall: string;
8228
+ tabFontSizeMedium: string;
8229
+ tabFontSizeLarge: string;
8230
+ tabGapSmallLine: string;
8231
+ tabGapMediumLine: string;
8232
+ tabGapLargeLine: string;
8233
+ tabPaddingSmallLine: string;
8234
+ tabPaddingMediumLine: string;
8235
+ tabPaddingLargeLine: string;
8236
+ tabGapSmallBar: string;
8237
+ tabGapMediumBar: string;
8238
+ tabGapLargeBar: string;
8239
+ tabPaddingSmallBar: string;
8240
+ tabPaddingMediumBar: string;
8241
+ tabPaddingLargeBar: string;
8242
+ tabGapSmallCard: string;
8243
+ tabGapMediumCard: string;
8244
+ tabGapLargeCard: string;
8245
+ tabPaddingSmallCard: string;
8246
+ tabPaddingMediumCard: string;
8247
+ tabPaddingLargeCard: string;
8248
+ tabPaddingSmallSegment: string;
8249
+ tabPaddingMediumSegment: string;
8250
+ tabPaddingLargeSegment: string;
8251
+ tabGapSmallSegment: string;
8252
+ tabGapMediumSegment: string;
8253
+ tabGapLargeSegment: string;
8254
+ panePaddingSmall: string;
8255
+ panePaddingMedium: string;
8256
+ panePaddingLarge: string;
8257
+ closeSize: string;
8258
+ closeIconSize: string;
8259
+ }, any>>>;
8260
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
8261
+ colorSegment: string;
8262
+ tabFontSizeCard: string;
8263
+ tabTextColorLine: string;
8264
+ tabTextColorActiveLine: string;
8265
+ tabTextColorHoverLine: string;
8266
+ tabTextColorDisabledLine: string;
8267
+ tabTextColorSegment: string;
8268
+ tabTextColorActiveSegment: string;
8269
+ tabTextColorHoverSegment: string;
8270
+ tabTextColorDisabledSegment: string;
8271
+ tabTextColorBar: string;
8272
+ tabTextColorActiveBar: string;
8273
+ tabTextColorHoverBar: string;
8274
+ tabTextColorDisabledBar: string;
8275
+ tabTextColorCard: string;
8276
+ tabTextColorHoverCard: string;
8277
+ tabTextColorActiveCard: string;
8278
+ tabTextColorDisabledCard: string;
8279
+ barColor: string;
8280
+ closeIconColor: string;
8281
+ closeIconColorHover: string;
8282
+ closeIconColorPressed: string;
8283
+ closeColorHover: string;
8284
+ closeColorPressed: string;
8285
+ closeBorderRadius: string;
8286
+ tabColor: string;
8287
+ tabColorSegment: string;
8288
+ tabBorderColor: string;
8289
+ tabFontWeightActive: string;
8290
+ tabFontWeight: string;
8291
+ tabBorderRadius: string;
8292
+ paneTextColor: string;
8293
+ fontWeightStrong: string;
8294
+ tabFontSizeSmall: string;
8295
+ tabFontSizeMedium: string;
8296
+ tabFontSizeLarge: string;
8297
+ tabGapSmallLine: string;
8298
+ tabGapMediumLine: string;
8299
+ tabGapLargeLine: string;
8300
+ tabPaddingSmallLine: string;
8301
+ tabPaddingMediumLine: string;
8302
+ tabPaddingLargeLine: string;
8303
+ tabGapSmallBar: string;
8304
+ tabGapMediumBar: string;
8305
+ tabGapLargeBar: string;
8306
+ tabPaddingSmallBar: string;
8307
+ tabPaddingMediumBar: string;
8308
+ tabPaddingLargeBar: string;
8309
+ tabGapSmallCard: string;
8310
+ tabGapMediumCard: string;
8311
+ tabGapLargeCard: string;
8312
+ tabPaddingSmallCard: string;
8313
+ tabPaddingMediumCard: string;
8314
+ tabPaddingLargeCard: string;
8315
+ tabPaddingSmallSegment: string;
8316
+ tabPaddingMediumSegment: string;
8317
+ tabPaddingLargeSegment: string;
8318
+ tabGapSmallSegment: string;
8319
+ tabGapMediumSegment: string;
8320
+ tabGapLargeSegment: string;
8321
+ panePaddingSmall: string;
8322
+ panePaddingMedium: string;
8323
+ panePaddingLarge: string;
8324
+ closeSize: string;
8325
+ closeIconSize: string;
8326
+ }, any>>>;
8327
+ }>>, {
8328
+ readonly type: import("naive-ui/es/tabs/src/interface").TabsType;
8329
+ readonly size: "small" | "medium" | "large";
8330
+ readonly closable: boolean;
8331
+ readonly trigger: "click" | "hover";
8332
+ readonly animated: boolean;
8333
+ readonly tabsPadding: number;
8334
+ }>;
8335
+ NConfigProvider: import("vue").DefineComponent<{
8336
+ readonly abstract: BooleanConstructor;
8337
+ readonly bordered: {
8338
+ readonly type: import("vue").PropType<boolean | undefined>;
8339
+ readonly default: undefined;
8340
+ };
8341
+ readonly clsPrefix: StringConstructor;
8342
+ readonly locale: import("vue").PropType<{
8343
+ name: string;
8344
+ global: {
8345
+ undo: string;
8346
+ redo: string;
8347
+ confirm: string;
8348
+ };
8349
+ Popconfirm: {
8350
+ positiveText: string;
8351
+ negativeText: string;
8352
+ };
8353
+ Cascader: {
8354
+ placeholder: string;
8355
+ loading: string;
8356
+ loadingRequiredMessage: (label: string) => string;
8357
+ };
8358
+ Time: {
8359
+ dateFormat: string;
8360
+ dateTimeFormat: string;
8361
+ };
8362
+ DatePicker: {
8363
+ yearFormat: string;
8364
+ monthFormat: string;
8365
+ dayFormat: string;
8366
+ yearTypeFormat: string;
8367
+ monthTypeFormat: string;
8368
+ dateFormat: string;
8369
+ dateTimeFormat: string;
8370
+ quarterFormat: string;
8371
+ clear: string;
8372
+ now: string;
8373
+ confirm: string;
8374
+ selectTime: string;
8375
+ selectDate: string;
8376
+ datePlaceholder: string;
8377
+ datetimePlaceholder: string;
8378
+ monthPlaceholder: string;
8379
+ yearPlaceholder: string;
8380
+ quarterPlaceholder: string;
8381
+ startDatePlaceholder: string;
8382
+ endDatePlaceholder: string;
8383
+ startDatetimePlaceholder: string;
8384
+ endDatetimePlaceholder: string;
8385
+ startMonthPlaceholder: string;
8386
+ endMonthPlaceholder: string;
8387
+ monthBeforeYear: boolean;
8388
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
8389
+ today: string;
8390
+ };
8391
+ DataTable: {
8392
+ checkTableAll: string;
8393
+ uncheckTableAll: string;
8394
+ confirm: string;
8395
+ clear: string;
8396
+ };
8397
+ Transfer: {
8398
+ sourceTitle: string;
8399
+ targetTitle: string;
8400
+ };
8401
+ Empty: {
8402
+ description: string;
8403
+ };
8404
+ Select: {
8405
+ placeholder: string;
8406
+ };
8407
+ TimePicker: {
8408
+ placeholder: string;
8409
+ positiveText: string;
8410
+ negativeText: string;
8411
+ now: string;
8412
+ };
8413
+ Pagination: {
8414
+ goto: string;
8415
+ selectionSuffix: string;
8416
+ };
8417
+ DynamicTags: {
8418
+ add: string;
8419
+ };
8420
+ Log: {
8421
+ loading: string;
8422
+ };
8423
+ Input: {
8424
+ placeholder: string;
8425
+ };
8426
+ InputNumber: {
8427
+ placeholder: string;
8428
+ };
8429
+ DynamicInput: {
8430
+ create: string;
8431
+ };
8432
+ ThemeEditor: {
8433
+ title: string;
8434
+ clearAllVars: string;
8435
+ clearSearch: string;
8436
+ filterCompName: string;
8437
+ filterVarName: string;
8438
+ import: string;
8439
+ export: string;
8440
+ restore: string;
8441
+ };
8442
+ Image: {
8443
+ tipPrevious: string;
8444
+ tipNext: string;
8445
+ tipCounterclockwise: string;
8446
+ tipClockwise: string;
8447
+ tipZoomOut: string;
8448
+ tipZoomIn: string;
8449
+ tipClose: string;
8450
+ tipOriginalSize: string;
8451
+ };
8452
+ } | null>;
8453
+ readonly dateLocale: import("vue").PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
8454
+ readonly namespace: StringConstructor;
8455
+ readonly rtl: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
8456
+ readonly tag: {
8457
+ readonly type: StringConstructor;
8458
+ readonly default: "div";
8459
+ };
8460
+ readonly hljs: import("vue").PropType<import("naive-ui/es/_mixins").Hljs>;
8461
+ readonly theme: import("vue").PropType<import("naive-ui").GlobalTheme | null>;
8462
+ readonly themeOverrides: import("vue").PropType<import("naive-ui").GlobalThemeOverrides | null>;
8463
+ readonly componentOptions: import("vue").PropType<import("naive-ui").GlobalComponentConfig>;
8464
+ readonly icons: import("vue").PropType<import("naive-ui").GlobalIconConfig>;
8465
+ readonly breakpoints: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
8466
+ readonly preflightStyleDisabled: BooleanConstructor;
8467
+ readonly inlineThemeDisabled: {
8468
+ readonly type: BooleanConstructor;
8469
+ readonly default: undefined;
8470
+ };
8471
+ readonly as: {
8472
+ readonly type: import("vue").PropType<string | undefined>;
8473
+ readonly validator: () => boolean;
8474
+ readonly default: undefined;
8475
+ };
8476
+ }, {
8477
+ mergedClsPrefix: import("vue").ComputedRef<string | undefined>;
8478
+ mergedBordered: import("vue").ComputedRef<boolean | undefined>;
8479
+ mergedNamespace: import("vue").ComputedRef<string | undefined>;
8480
+ mergedTheme: import("vue").ComputedRef<import("naive-ui").GlobalTheme | undefined>;
8481
+ mergedThemeOverrides: import("vue").ComputedRef<import("naive-ui").GlobalThemeOverrides | undefined>;
8482
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
8483
+ readonly abstract: BooleanConstructor;
8484
+ readonly bordered: {
8485
+ readonly type: import("vue").PropType<boolean | undefined>;
8486
+ readonly default: undefined;
8487
+ };
8488
+ readonly clsPrefix: StringConstructor;
8489
+ readonly locale: import("vue").PropType<{
8490
+ name: string;
8491
+ global: {
8492
+ undo: string;
8493
+ redo: string;
8494
+ confirm: string;
8495
+ };
8496
+ Popconfirm: {
8497
+ positiveText: string;
8498
+ negativeText: string;
8499
+ };
8500
+ Cascader: {
8501
+ placeholder: string;
8502
+ loading: string;
8503
+ loadingRequiredMessage: (label: string) => string;
8504
+ };
8505
+ Time: {
8506
+ dateFormat: string;
8507
+ dateTimeFormat: string;
8508
+ };
8509
+ DatePicker: {
8510
+ yearFormat: string;
8511
+ monthFormat: string;
8512
+ dayFormat: string;
8513
+ yearTypeFormat: string;
8514
+ monthTypeFormat: string;
8515
+ dateFormat: string;
8516
+ dateTimeFormat: string;
8517
+ quarterFormat: string;
8518
+ clear: string;
8519
+ now: string;
8520
+ confirm: string;
8521
+ selectTime: string;
8522
+ selectDate: string;
8523
+ datePlaceholder: string;
8524
+ datetimePlaceholder: string;
8525
+ monthPlaceholder: string;
8526
+ yearPlaceholder: string;
8527
+ quarterPlaceholder: string;
8528
+ startDatePlaceholder: string;
8529
+ endDatePlaceholder: string;
8530
+ startDatetimePlaceholder: string;
8531
+ endDatetimePlaceholder: string;
8532
+ startMonthPlaceholder: string;
8533
+ endMonthPlaceholder: string;
8534
+ monthBeforeYear: boolean;
8535
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
8536
+ today: string;
8537
+ };
8538
+ DataTable: {
8539
+ checkTableAll: string;
8540
+ uncheckTableAll: string;
8541
+ confirm: string;
8542
+ clear: string;
8543
+ };
8544
+ Transfer: {
8545
+ sourceTitle: string;
8546
+ targetTitle: string;
8547
+ };
8548
+ Empty: {
8549
+ description: string;
8550
+ };
8551
+ Select: {
8552
+ placeholder: string;
8553
+ };
8554
+ TimePicker: {
8555
+ placeholder: string;
8556
+ positiveText: string;
8557
+ negativeText: string;
8558
+ now: string;
8559
+ };
8560
+ Pagination: {
8561
+ goto: string;
8562
+ selectionSuffix: string;
8563
+ };
8564
+ DynamicTags: {
8565
+ add: string;
8566
+ };
8567
+ Log: {
8568
+ loading: string;
8569
+ };
8570
+ Input: {
8571
+ placeholder: string;
8572
+ };
8573
+ InputNumber: {
8574
+ placeholder: string;
8575
+ };
8576
+ DynamicInput: {
8577
+ create: string;
8578
+ };
8579
+ ThemeEditor: {
8580
+ title: string;
8581
+ clearAllVars: string;
8582
+ clearSearch: string;
8583
+ filterCompName: string;
8584
+ filterVarName: string;
8585
+ import: string;
8586
+ export: string;
8587
+ restore: string;
8588
+ };
8589
+ Image: {
8590
+ tipPrevious: string;
8591
+ tipNext: string;
8592
+ tipCounterclockwise: string;
8593
+ tipClockwise: string;
8594
+ tipZoomOut: string;
8595
+ tipZoomIn: string;
8596
+ tipClose: string;
8597
+ tipOriginalSize: string;
8598
+ };
8599
+ } | null>;
8600
+ readonly dateLocale: import("vue").PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
8601
+ readonly namespace: StringConstructor;
8602
+ readonly rtl: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
8603
+ readonly tag: {
8604
+ readonly type: StringConstructor;
8605
+ readonly default: "div";
8606
+ };
8607
+ readonly hljs: import("vue").PropType<import("naive-ui/es/_mixins").Hljs>;
8608
+ readonly theme: import("vue").PropType<import("naive-ui").GlobalTheme | null>;
8609
+ readonly themeOverrides: import("vue").PropType<import("naive-ui").GlobalThemeOverrides | null>;
8610
+ readonly componentOptions: import("vue").PropType<import("naive-ui").GlobalComponentConfig>;
8611
+ readonly icons: import("vue").PropType<import("naive-ui").GlobalIconConfig>;
8612
+ readonly breakpoints: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
8613
+ readonly preflightStyleDisabled: BooleanConstructor;
8614
+ readonly inlineThemeDisabled: {
8615
+ readonly type: BooleanConstructor;
8616
+ readonly default: undefined;
8617
+ };
8618
+ readonly as: {
8619
+ readonly type: import("vue").PropType<string | undefined>;
8620
+ readonly validator: () => boolean;
8621
+ readonly default: undefined;
8622
+ };
8623
+ }>>, {
8624
+ readonly abstract: boolean;
8625
+ readonly tag: string;
8626
+ readonly as: string | undefined;
8627
+ readonly bordered: boolean | undefined;
8628
+ readonly preflightStyleDisabled: boolean;
8629
+ readonly inlineThemeDisabled: boolean;
8630
+ }>;
8631
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formChange"[], "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
8632
+ fieldList: {
8633
+ type: import("vue").PropType<import("..").FieldItem[]>;
8634
+ };
8635
+ initialData: {
8636
+ type: import("vue").PropType<import("../../../es/src/types").AnyObject>;
8637
+ default: () => {};
8638
+ };
8639
+ fieldVisitor: {
8640
+ type: import("vue").PropType<import("..").FieldVisitor>;
8641
+ };
8642
+ column: {
8643
+ type: NumberConstructor;
8644
+ default: number;
8645
+ };
8646
+ maxHeight: {
8647
+ type: (NumberConstructor | StringConstructor)[];
8648
+ default: string;
8649
+ };
8650
+ anchor: {
8651
+ type: BooleanConstructor;
8652
+ default: boolean;
8653
+ };
8654
+ parallelism: {
8655
+ type: NumberConstructor;
8656
+ default: number;
8657
+ };
8658
+ schema: {
8659
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
8660
+ [key: symbol]: any;
8661
+ [key: `x-${string}`]: any;
8662
+ [key: `x-${number}`]: any;
8663
+ version?: string | undefined;
8664
+ name?: import("@formily/json-schema").SchemaKey | undefined;
8665
+ title?: any;
8666
+ description?: any;
8667
+ default?: any;
8668
+ readOnly?: boolean | undefined;
8669
+ writeOnly?: boolean | undefined;
8670
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
8671
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
8672
+ const?: any;
8673
+ multipleOf?: number | undefined;
8674
+ maximum?: number | undefined;
8675
+ exclusiveMaximum?: number | undefined;
8676
+ minimum?: number | undefined;
8677
+ exclusiveMinimum?: number | undefined;
8678
+ maxLength?: number | undefined;
8679
+ minLength?: number | undefined;
8680
+ pattern?: string | RegExp | undefined;
8681
+ maxItems?: number | undefined;
8682
+ minItems?: number | undefined;
8683
+ uniqueItems?: boolean | undefined;
8684
+ maxProperties?: number | undefined;
8685
+ minProperties?: number | undefined;
8686
+ required?: string | boolean | string[] | undefined;
8687
+ format?: string | undefined;
8688
+ $ref?: string | undefined;
8689
+ $namespace?: string | undefined;
8690
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
8691
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
8692
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
8693
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
8694
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
8695
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
8696
+ "x-value"?: any;
8697
+ "x-index"?: number | undefined;
8698
+ "x-pattern"?: any;
8699
+ "x-display"?: any;
8700
+ "x-validator"?: any;
8701
+ "x-decorator"?: any;
8702
+ "x-decorator-props"?: any;
8703
+ "x-component"?: any;
8704
+ "x-component-props"?: any;
8705
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
8706
+ "x-content"?: any;
8707
+ "x-data"?: any;
8708
+ "x-visible"?: boolean | undefined;
8709
+ "x-hidden"?: boolean | undefined;
8710
+ "x-disabled"?: boolean | undefined;
8711
+ "x-editable"?: boolean | undefined;
8712
+ "x-read-only"?: boolean | undefined;
8713
+ "x-read-pretty"?: boolean | undefined;
8714
+ "x-compile-omitted"?: string[] | undefined;
8715
+ }>>;
8716
+ };
8717
+ components: {
8718
+ type: import("vue").PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
8719
+ default: () => {};
8720
+ };
8721
+ businessFilter: {
8722
+ type: import("vue").PropType<import("..").FormBusinessFilter>;
8723
+ };
8724
+ scope: {
8725
+ type: import("vue").PropType<import("../../../es/src/types").AnyObject>;
8726
+ default: () => {};
8727
+ };
8728
+ annotation: {
8729
+ type: import("vue").PropType<import("../../../es/src/types").AnyObject>;
8730
+ };
8731
+ consumer: {
8732
+ type: BooleanConstructor;
8733
+ default: boolean;
8734
+ };
8735
+ uuid: {
8736
+ type: StringConstructor;
8737
+ };
8738
+ lifeCycle: {
8739
+ type: import("vue").PropType<Partial<{
8740
+ onSetup(): void;
8741
+ beforeRequest(fieldKey: string, params?: import("../../../es/src/types").AnyObject | undefined): void | import("../../../es/src/types").WithUndefined<import("../../../es/src/types").AnyObject>;
8742
+ afterRequest(fieldKey: string, payload?: any): import("../../../es/src/types").AnyObject[];
8743
+ }>>;
8744
+ };
8745
+ }>> & {
8746
+ onFormChange?: ((...args: any[]) => any) | undefined;
8747
+ }, {
8748
+ anchor: boolean;
8749
+ maxHeight: string | number;
8750
+ column: number;
8751
+ components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
8752
+ initialData: import("../../../es/src/types").AnyObject;
8753
+ parallelism: number;
8754
+ scope: import("../../../es/src/types").AnyObject;
8755
+ consumer: boolean;
8756
+ }>>;
7008
8757
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
7009
8758
  FormConfigCreator: import("vue").DefineComponent<{}, {
7010
8759
  linebarField: import("..").FieldItem[];