jky-component-lib 0.0.98 → 0.0.100

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 (65) hide show
  1. package/dist/es/add-input/style.css +1 -1
  2. package/dist/es/amap/ATrackPlayback.vue.d.ts +69 -0
  3. package/dist/es/amap/ATrackPlayback.vue.js +237 -0
  4. package/dist/es/amap/ATrackPlayback.vue3.js +5 -0
  5. package/dist/es/amap/index.d.ts +3 -1
  6. package/dist/es/amap/index.js +5 -0
  7. package/dist/es/amap/style.css +5 -12
  8. package/dist/es/amap/style2.css +12 -5
  9. package/dist/es/amap/style3.css +3 -0
  10. package/dist/es/components.js +5 -1
  11. package/dist/es/form/Form.vue.d.ts +5 -103
  12. package/dist/es/form/Form.vue.js +91 -156
  13. package/dist/es/form/FormItem.vue.js +3 -1
  14. package/dist/es/form/SelectTable.vue.js +14 -5
  15. package/dist/es/form/style.css +1 -21
  16. package/dist/es/index.js +8 -2
  17. package/dist/es/package.json.js +1 -1
  18. package/dist/es/page-table/ActionColumn.vue.d.ts +11 -0
  19. package/dist/es/page-table/ActionColumn.vue.js +137 -0
  20. package/dist/es/page-table/ActionColumn.vue3.js +5 -0
  21. package/dist/es/page-table/PageTable.vue.d.ts +51 -433
  22. package/dist/es/page-table/PageTable.vue.js +136 -76
  23. package/dist/es/page-table/PageTableColumn.vue.d.ts +36 -0
  24. package/dist/es/page-table/PageTableColumn.vue.js +121 -0
  25. package/dist/es/page-table/PageTableColumn.vue3.js +5 -0
  26. package/dist/es/page-table/Toolbar.vue.d.ts +1 -1
  27. package/dist/es/page-table/Toolbar.vue.js +2 -2
  28. package/dist/es/page-table/index.d.ts +5 -1
  29. package/dist/es/page-table/index.js +8 -0
  30. package/dist/es/page-table/style.css +9 -0
  31. package/dist/es/style.css +144 -0
  32. package/dist/es/styles.css +1 -1
  33. package/dist/lib/add-input/style.css +1 -1
  34. package/dist/lib/amap/ATrackPlayback.vue.d.ts +69 -0
  35. package/dist/lib/amap/ATrackPlayback.vue.js +237 -0
  36. package/dist/lib/amap/ATrackPlayback.vue3.js +5 -0
  37. package/dist/lib/amap/index.d.ts +3 -1
  38. package/dist/lib/amap/index.js +5 -0
  39. package/dist/lib/amap/style.css +5 -12
  40. package/dist/lib/amap/style2.css +12 -5
  41. package/dist/lib/amap/style3.css +3 -0
  42. package/dist/lib/components.js +33 -30
  43. package/dist/lib/form/Form.vue.d.ts +5 -103
  44. package/dist/lib/form/Form.vue.js +89 -154
  45. package/dist/lib/form/FormItem.vue.js +3 -1
  46. package/dist/lib/form/SelectTable.vue.js +13 -4
  47. package/dist/lib/form/style.css +1 -21
  48. package/dist/lib/index.js +26 -20
  49. package/dist/lib/package.json.js +1 -1
  50. package/dist/lib/page-table/ActionColumn.vue.d.ts +11 -0
  51. package/dist/lib/page-table/ActionColumn.vue.js +137 -0
  52. package/dist/lib/page-table/ActionColumn.vue3.js +5 -0
  53. package/dist/lib/page-table/PageTable.vue.d.ts +51 -433
  54. package/dist/lib/page-table/PageTable.vue.js +135 -75
  55. package/dist/lib/page-table/PageTableColumn.vue.d.ts +36 -0
  56. package/dist/lib/page-table/PageTableColumn.vue.js +121 -0
  57. package/dist/lib/page-table/PageTableColumn.vue3.js +5 -0
  58. package/dist/lib/page-table/Toolbar.vue.d.ts +1 -1
  59. package/dist/lib/page-table/Toolbar.vue.js +2 -2
  60. package/dist/lib/page-table/index.d.ts +5 -1
  61. package/dist/lib/page-table/index.js +8 -0
  62. package/dist/lib/page-table/style.css +9 -0
  63. package/dist/lib/style.css +144 -0
  64. package/dist/lib/styles.css +1 -1
  65. package/package.json +1 -1
@@ -1,16 +1,15 @@
1
1
  import { TableColumnCtx } from 'element-plus';
2
- import { PageTableProps, PaginationConfig } from './types';
2
+ import { PageTableProps } from './types';
3
+ import { nextTick } from 'vue';
3
4
  type __VLS_Props = PageTableProps;
4
5
  type __VLS_PublicProps = {
5
- 'pagination'?: PaginationConfig;
6
+ 'pageNo'?: number;
7
+ 'pageSize'?: number;
8
+ 'total'?: number;
6
9
  } & __VLS_Props;
7
10
  declare function __VLS_template(): {
8
11
  attrs: Partial<{}>;
9
- slots: Partial<Record<`column-${string}`, (_: {
10
- row: any;
11
- column: any;
12
- index: any;
13
- }) => any>> & {
12
+ slots: {
14
13
  columns?(_: {}): any;
15
14
  };
16
15
  refs: {
@@ -28,7 +27,6 @@ declare function __VLS_template(): {
28
27
  }) => any) | undefined;
29
28
  }>, {
30
29
  validate: (callback?: (isValid: boolean, invalidFields?: any) => void) => Promise<boolean>;
31
- resetFields: () => void;
32
30
  clearValidate: (props?: any) => void;
33
31
  getFormInstance: () => ({
34
32
  $: import('vue').ComponentInternalInstance;
@@ -103,7 +101,7 @@ declare function __VLS_template(): {
103
101
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
104
102
  };
105
103
  $forceUpdate: () => void;
106
- $nextTick: typeof import('vue').nextTick;
104
+ $nextTick: typeof nextTick;
107
105
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
108
106
  } & Readonly<{
109
107
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -129,7 +127,7 @@ declare function __VLS_template(): {
129
127
  default?: (props: {}) => any;
130
128
  };
131
129
  }) | undefined;
132
- formRef: globalThis.Ref<({
130
+ form: ({
133
131
  $: import('vue').ComponentInternalInstance;
134
132
  $data: {};
135
133
  $props: {
@@ -202,7 +200,7 @@ declare function __VLS_template(): {
202
200
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
203
201
  };
204
202
  $forceUpdate: () => void;
205
- $nextTick: typeof import('vue').nextTick;
203
+ $nextTick: typeof nextTick;
206
204
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
207
205
  } & Readonly<{
208
206
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -227,105 +225,7 @@ declare function __VLS_template(): {
227
225
  $slots: {
228
226
  default?: (props: {}) => any;
229
227
  };
230
- }) | undefined, ({
231
- $: import('vue').ComponentInternalInstance;
232
- $data: {};
233
- $props: {
234
- readonly model?: Record<string, any> | undefined;
235
- readonly rules?: import('element-plus').FormRules | undefined;
236
- readonly labelPosition?: "left" | "right" | "top" | undefined;
237
- readonly requireAsteriskPosition?: "left" | "right" | undefined;
238
- readonly labelWidth?: string | number | undefined;
239
- readonly labelSuffix?: string | undefined;
240
- readonly inline?: boolean | undefined;
241
- readonly inlineMessage?: boolean | undefined;
242
- readonly statusIcon?: boolean | undefined;
243
- readonly showMessage?: boolean | undefined;
244
- readonly validateOnRuleChange?: boolean | undefined;
245
- readonly hideRequiredAsterisk?: boolean | undefined;
246
- readonly scrollToError?: boolean | undefined;
247
- readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
248
- readonly size?: import('element-plus').ComponentSize | undefined;
249
- readonly disabled?: boolean | undefined;
250
- readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
251
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
252
- $attrs: import('vue').Attrs;
253
- $refs: {
254
- [x: string]: unknown;
255
- };
256
- $slots: Readonly<{
257
- [name: string]: globalThis.Slot | undefined;
258
- }>;
259
- $root: ComponentPublicInstance | null;
260
- $parent: ComponentPublicInstance | null;
261
- $host: Element | null;
262
- $emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
263
- $el: any;
264
- $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
265
- onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
266
- }>, {
267
- validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
268
- validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
269
- resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
270
- clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
271
- scrollToField: (prop: import('element-plus').FormItemProp) => void;
272
- getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
273
- fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
274
- setInitialValues: (initModel: Record<string, any>) => void;
275
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
276
- validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
277
- }, string, {
278
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
279
- labelWidth: string | number;
280
- labelPosition: "left" | "right" | "top";
281
- requireAsteriskPosition: "left" | "right";
282
- labelSuffix: string;
283
- showMessage: boolean;
284
- validateOnRuleChange: boolean;
285
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
286
- beforeCreate?: (() => void) | (() => void)[];
287
- created?: (() => void) | (() => void)[];
288
- beforeMount?: (() => void) | (() => void)[];
289
- mounted?: (() => void) | (() => void)[];
290
- beforeUpdate?: (() => void) | (() => void)[];
291
- updated?: (() => void) | (() => void)[];
292
- activated?: (() => void) | (() => void)[];
293
- deactivated?: (() => void) | (() => void)[];
294
- beforeDestroy?: (() => void) | (() => void)[];
295
- beforeUnmount?: (() => void) | (() => void)[];
296
- destroyed?: (() => void) | (() => void)[];
297
- unmounted?: (() => void) | (() => void)[];
298
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
299
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
300
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
301
- };
302
- $forceUpdate: () => void;
303
- $nextTick: typeof import('vue').nextTick;
304
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
305
- } & Readonly<{
306
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
307
- labelWidth: string | number;
308
- labelPosition: "left" | "right" | "top";
309
- requireAsteriskPosition: "left" | "right";
310
- labelSuffix: string;
311
- showMessage: boolean;
312
- validateOnRuleChange: boolean;
313
- }> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
314
- onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
315
- }>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & {
316
- validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
317
- validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
318
- resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
319
- clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
320
- scrollToField: (prop: import('element-plus').FormItemProp) => void;
321
- getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
322
- fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
323
- setInitialValues: (initModel: Record<string, any>) => void;
324
- } & {} & import('vue').ComponentCustomProperties & {} & {
325
- $slots: {
326
- default?: (props: {}) => any;
327
- };
328
- }) | undefined>;
228
+ }) | undefined;
329
229
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
330
230
  "update:modelValue": (value: Record<string, any>) => any;
331
231
  change: (value: Record<string, any>) => any;
@@ -337,11 +237,11 @@ declare function __VLS_template(): {
337
237
  }) => any;
338
238
  }, import('vue').PublicProps, {
339
239
  size: import('element-plus').ComponentSize;
240
+ disabled: boolean;
340
241
  grid: import('../form').GridConfig;
341
242
  inline: boolean;
342
243
  labelPosition: "left" | "right" | "top";
343
244
  labelWidth: string | number;
344
- showTitle: boolean;
345
245
  gutter: number;
346
246
  defaultSpan: number;
347
247
  responsive: boolean;
@@ -350,6 +250,8 @@ declare function __VLS_template(): {
350
250
  footerClass: string;
351
251
  submitText: string;
352
252
  cancelText: string;
253
+ submitDisabled: boolean;
254
+ cancelDisabled: boolean;
353
255
  showCount: number;
354
256
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
355
257
  formRef: ({
@@ -425,7 +327,7 @@ declare function __VLS_template(): {
425
327
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
426
328
  };
427
329
  $forceUpdate: () => void;
428
- $nextTick: typeof import('vue').nextTick;
330
+ $nextTick: typeof nextTick;
429
331
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
430
332
  } & Readonly<{
431
333
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -471,7 +373,6 @@ declare function __VLS_template(): {
471
373
  }) => any) | undefined;
472
374
  }>, {
473
375
  validate: (callback?: (isValid: boolean, invalidFields?: any) => void) => Promise<boolean>;
474
- resetFields: () => void;
475
376
  clearValidate: (props?: any) => void;
476
377
  getFormInstance: () => ({
477
378
  $: import('vue').ComponentInternalInstance;
@@ -546,7 +447,7 @@ declare function __VLS_template(): {
546
447
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
547
448
  };
548
449
  $forceUpdate: () => void;
549
- $nextTick: typeof import('vue').nextTick;
450
+ $nextTick: typeof nextTick;
550
451
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
551
452
  } & Readonly<{
552
453
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -572,105 +473,7 @@ declare function __VLS_template(): {
572
473
  default?: (props: {}) => any;
573
474
  };
574
475
  }) | undefined;
575
- formRef: globalThis.Ref<({
576
- $: import('vue').ComponentInternalInstance;
577
- $data: {};
578
- $props: {
579
- readonly model?: Record<string, any> | undefined;
580
- readonly rules?: import('element-plus').FormRules | undefined;
581
- readonly labelPosition?: "left" | "right" | "top" | undefined;
582
- readonly requireAsteriskPosition?: "left" | "right" | undefined;
583
- readonly labelWidth?: string | number | undefined;
584
- readonly labelSuffix?: string | undefined;
585
- readonly inline?: boolean | undefined;
586
- readonly inlineMessage?: boolean | undefined;
587
- readonly statusIcon?: boolean | undefined;
588
- readonly showMessage?: boolean | undefined;
589
- readonly validateOnRuleChange?: boolean | undefined;
590
- readonly hideRequiredAsterisk?: boolean | undefined;
591
- readonly scrollToError?: boolean | undefined;
592
- readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
593
- readonly size?: import('element-plus').ComponentSize | undefined;
594
- readonly disabled?: boolean | undefined;
595
- readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
596
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
597
- $attrs: import('vue').Attrs;
598
- $refs: {
599
- [x: string]: unknown;
600
- };
601
- $slots: Readonly<{
602
- [name: string]: globalThis.Slot | undefined;
603
- }>;
604
- $root: ComponentPublicInstance | null;
605
- $parent: ComponentPublicInstance | null;
606
- $host: Element | null;
607
- $emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
608
- $el: any;
609
- $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
610
- onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
611
- }>, {
612
- validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
613
- validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
614
- resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
615
- clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
616
- scrollToField: (prop: import('element-plus').FormItemProp) => void;
617
- getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
618
- fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
619
- setInitialValues: (initModel: Record<string, any>) => void;
620
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
621
- validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
622
- }, string, {
623
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
624
- labelWidth: string | number;
625
- labelPosition: "left" | "right" | "top";
626
- requireAsteriskPosition: "left" | "right";
627
- labelSuffix: string;
628
- showMessage: boolean;
629
- validateOnRuleChange: boolean;
630
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
631
- beforeCreate?: (() => void) | (() => void)[];
632
- created?: (() => void) | (() => void)[];
633
- beforeMount?: (() => void) | (() => void)[];
634
- mounted?: (() => void) | (() => void)[];
635
- beforeUpdate?: (() => void) | (() => void)[];
636
- updated?: (() => void) | (() => void)[];
637
- activated?: (() => void) | (() => void)[];
638
- deactivated?: (() => void) | (() => void)[];
639
- beforeDestroy?: (() => void) | (() => void)[];
640
- beforeUnmount?: (() => void) | (() => void)[];
641
- destroyed?: (() => void) | (() => void)[];
642
- unmounted?: (() => void) | (() => void)[];
643
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
644
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
645
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
646
- };
647
- $forceUpdate: () => void;
648
- $nextTick: typeof import('vue').nextTick;
649
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
650
- } & Readonly<{
651
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
652
- labelWidth: string | number;
653
- labelPosition: "left" | "right" | "top";
654
- requireAsteriskPosition: "left" | "right";
655
- labelSuffix: string;
656
- showMessage: boolean;
657
- validateOnRuleChange: boolean;
658
- }> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
659
- onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
660
- }>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & {
661
- validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
662
- validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
663
- resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
664
- clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
665
- scrollToField: (prop: import('element-plus').FormItemProp) => void;
666
- getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
667
- fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
668
- setInitialValues: (initModel: Record<string, any>) => void;
669
- } & {} & import('vue').ComponentCustomProperties & {} & {
670
- $slots: {
671
- default?: (props: {}) => any;
672
- };
673
- }) | undefined, ({
476
+ form: ({
674
477
  $: import('vue').ComponentInternalInstance;
675
478
  $data: {};
676
479
  $props: {
@@ -743,7 +546,7 @@ declare function __VLS_template(): {
743
546
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
744
547
  };
745
548
  $forceUpdate: () => void;
746
- $nextTick: typeof import('vue').nextTick;
549
+ $nextTick: typeof nextTick;
747
550
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
748
551
  } & Readonly<{
749
552
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -768,14 +571,14 @@ declare function __VLS_template(): {
768
571
  $slots: {
769
572
  default?: (props: {}) => any;
770
573
  };
771
- }) | undefined>;
574
+ }) | undefined;
772
575
  }, {}, {}, {}, {
773
576
  size: import('element-plus').ComponentSize;
577
+ disabled: boolean;
774
578
  grid: import('../form').GridConfig;
775
579
  inline: boolean;
776
580
  labelPosition: "left" | "right" | "top";
777
581
  labelWidth: string | number;
778
- showTitle: boolean;
779
582
  gutter: number;
780
583
  defaultSpan: number;
781
584
  responsive: boolean;
@@ -784,6 +587,8 @@ declare function __VLS_template(): {
784
587
  footerClass: string;
785
588
  submitText: string;
786
589
  cancelText: string;
590
+ submitDisabled: boolean;
591
+ cancelDisabled: boolean;
787
592
  showCount: number;
788
593
  }> | null;
789
594
  tableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
@@ -2910,42 +2715,48 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
2910
2715
  formRef: any;
2911
2716
  tableRef: any;
2912
2717
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2913
- "update:pagination": (value: PaginationConfig) => any;
2718
+ "update:pageNo": (value: number) => any;
2719
+ "update:pageSize": (value: number) => any;
2720
+ "update:total": (value: number) => any;
2914
2721
  } & {
2915
2722
  search: (filterData: Record<string, any>) => any;
2916
2723
  reset: () => any;
2917
2724
  refresh: () => any;
2918
2725
  pageChange: (page: {
2919
- currentPage: number;
2726
+ pageNo: number;
2920
2727
  pageSize: number;
2728
+ total?: number;
2921
2729
  }) => any;
2922
2730
  "update:form": (form: Record<string, any>) => any;
2923
2731
  selectionChange: (selection: any[]) => any;
2924
- rowClick: (row: any, column: TableColumnCtx<any>) => any;
2925
- rowDblclick: (row: any, column: TableColumnCtx<any>) => any;
2926
2732
  sortChange: (args_0: {
2927
2733
  column: TableColumnCtx<any>;
2928
2734
  prop: string;
2929
2735
  order: "ascending" | "descending" | null;
2930
2736
  }) => any;
2737
+ rowClick: (row: any, column: TableColumnCtx<any>) => any;
2738
+ rowDblclick: (row: any, column: TableColumnCtx<any>) => any;
2931
2739
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
2932
2740
  onSearch?: ((filterData: Record<string, any>) => any) | undefined;
2933
2741
  onReset?: (() => any) | undefined;
2934
2742
  onRefresh?: (() => any) | undefined;
2935
2743
  onPageChange?: ((page: {
2936
- currentPage: number;
2744
+ pageNo: number;
2937
2745
  pageSize: number;
2746
+ total?: number;
2938
2747
  }) => any) | undefined;
2939
2748
  "onUpdate:form"?: ((form: Record<string, any>) => any) | undefined;
2940
2749
  onSelectionChange?: ((selection: any[]) => any) | undefined;
2941
- onRowClick?: ((row: any, column: TableColumnCtx<any>) => any) | undefined;
2942
- onRowDblclick?: ((row: any, column: TableColumnCtx<any>) => any) | undefined;
2943
2750
  onSortChange?: ((args_0: {
2944
2751
  column: TableColumnCtx<any>;
2945
2752
  prop: string;
2946
2753
  order: "ascending" | "descending" | null;
2947
2754
  }) => any) | undefined;
2948
- "onUpdate:pagination"?: ((value: PaginationConfig) => any) | undefined;
2755
+ onRowClick?: ((row: any, column: TableColumnCtx<any>) => any) | undefined;
2756
+ onRowDblclick?: ((row: any, column: TableColumnCtx<any>) => any) | undefined;
2757
+ "onUpdate:pageNo"?: ((value: number) => any) | undefined;
2758
+ "onUpdate:pageSize"?: ((value: number) => any) | undefined;
2759
+ "onUpdate:total"?: ((value: number) => any) | undefined;
2949
2760
  }>, {
2950
2761
  title: string;
2951
2762
  loading: boolean;
@@ -2956,6 +2767,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
2956
2767
  searchText: string;
2957
2768
  resetText: string;
2958
2769
  selection: boolean;
2770
+ selectionColumn: import('./types').TableColumnConfig;
2959
2771
  selectedRows: any[];
2960
2772
  border: boolean;
2961
2773
  stripe: boolean;
@@ -2979,7 +2791,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
2979
2791
  }) => any) | undefined;
2980
2792
  }>, {
2981
2793
  validate: (callback?: (isValid: boolean, invalidFields?: any) => void) => Promise<boolean>;
2982
- resetFields: () => void;
2983
2794
  clearValidate: (props?: any) => void;
2984
2795
  getFormInstance: () => ({
2985
2796
  $: import('vue').ComponentInternalInstance;
@@ -3054,7 +2865,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3054
2865
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3055
2866
  };
3056
2867
  $forceUpdate: () => void;
3057
- $nextTick: typeof import('vue').nextTick;
2868
+ $nextTick: typeof nextTick;
3058
2869
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
3059
2870
  } & Readonly<{
3060
2871
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -3080,105 +2891,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3080
2891
  default?: (props: {}) => any;
3081
2892
  };
3082
2893
  }) | undefined;
3083
- formRef: globalThis.Ref<({
3084
- $: import('vue').ComponentInternalInstance;
3085
- $data: {};
3086
- $props: {
3087
- readonly model?: Record<string, any> | undefined;
3088
- readonly rules?: import('element-plus').FormRules | undefined;
3089
- readonly labelPosition?: "left" | "right" | "top" | undefined;
3090
- readonly requireAsteriskPosition?: "left" | "right" | undefined;
3091
- readonly labelWidth?: string | number | undefined;
3092
- readonly labelSuffix?: string | undefined;
3093
- readonly inline?: boolean | undefined;
3094
- readonly inlineMessage?: boolean | undefined;
3095
- readonly statusIcon?: boolean | undefined;
3096
- readonly showMessage?: boolean | undefined;
3097
- readonly validateOnRuleChange?: boolean | undefined;
3098
- readonly hideRequiredAsterisk?: boolean | undefined;
3099
- readonly scrollToError?: boolean | undefined;
3100
- readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
3101
- readonly size?: import('element-plus').ComponentSize | undefined;
3102
- readonly disabled?: boolean | undefined;
3103
- readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
3104
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
3105
- $attrs: import('vue').Attrs;
3106
- $refs: {
3107
- [x: string]: unknown;
3108
- };
3109
- $slots: Readonly<{
3110
- [name: string]: globalThis.Slot | undefined;
3111
- }>;
3112
- $root: ComponentPublicInstance | null;
3113
- $parent: ComponentPublicInstance | null;
3114
- $host: Element | null;
3115
- $emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
3116
- $el: any;
3117
- $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
3118
- onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
3119
- }>, {
3120
- validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
3121
- validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
3122
- resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
3123
- clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
3124
- scrollToField: (prop: import('element-plus').FormItemProp) => void;
3125
- getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
3126
- fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
3127
- setInitialValues: (initModel: Record<string, any>) => void;
3128
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3129
- validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
3130
- }, string, {
3131
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
3132
- labelWidth: string | number;
3133
- labelPosition: "left" | "right" | "top";
3134
- requireAsteriskPosition: "left" | "right";
3135
- labelSuffix: string;
3136
- showMessage: boolean;
3137
- validateOnRuleChange: boolean;
3138
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
3139
- beforeCreate?: (() => void) | (() => void)[];
3140
- created?: (() => void) | (() => void)[];
3141
- beforeMount?: (() => void) | (() => void)[];
3142
- mounted?: (() => void) | (() => void)[];
3143
- beforeUpdate?: (() => void) | (() => void)[];
3144
- updated?: (() => void) | (() => void)[];
3145
- activated?: (() => void) | (() => void)[];
3146
- deactivated?: (() => void) | (() => void)[];
3147
- beforeDestroy?: (() => void) | (() => void)[];
3148
- beforeUnmount?: (() => void) | (() => void)[];
3149
- destroyed?: (() => void) | (() => void)[];
3150
- unmounted?: (() => void) | (() => void)[];
3151
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
3152
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
3153
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3154
- };
3155
- $forceUpdate: () => void;
3156
- $nextTick: typeof import('vue').nextTick;
3157
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
3158
- } & Readonly<{
3159
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
3160
- labelWidth: string | number;
3161
- labelPosition: "left" | "right" | "top";
3162
- requireAsteriskPosition: "left" | "right";
3163
- labelSuffix: string;
3164
- showMessage: boolean;
3165
- validateOnRuleChange: boolean;
3166
- }> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
3167
- onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
3168
- }>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & {
3169
- validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
3170
- validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
3171
- resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
3172
- clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
3173
- scrollToField: (prop: import('element-plus').FormItemProp) => void;
3174
- getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
3175
- fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
3176
- setInitialValues: (initModel: Record<string, any>) => void;
3177
- } & {} & import('vue').ComponentCustomProperties & {} & {
3178
- $slots: {
3179
- default?: (props: {}) => any;
3180
- };
3181
- }) | undefined, ({
2894
+ form: ({
3182
2895
  $: import('vue').ComponentInternalInstance;
3183
2896
  $data: {};
3184
2897
  $props: {
@@ -3251,7 +2964,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3251
2964
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3252
2965
  };
3253
2966
  $forceUpdate: () => void;
3254
- $nextTick: typeof import('vue').nextTick;
2967
+ $nextTick: typeof nextTick;
3255
2968
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
3256
2969
  } & Readonly<{
3257
2970
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -3276,7 +2989,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3276
2989
  $slots: {
3277
2990
  default?: (props: {}) => any;
3278
2991
  };
3279
- }) | undefined>;
2992
+ }) | undefined;
3280
2993
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3281
2994
  "update:modelValue": (value: Record<string, any>) => any;
3282
2995
  change: (value: Record<string, any>) => any;
@@ -3288,11 +3001,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3288
3001
  }) => any;
3289
3002
  }, import('vue').PublicProps, {
3290
3003
  size: import('element-plus').ComponentSize;
3004
+ disabled: boolean;
3291
3005
  grid: import('../form').GridConfig;
3292
3006
  inline: boolean;
3293
3007
  labelPosition: "left" | "right" | "top";
3294
3008
  labelWidth: string | number;
3295
- showTitle: boolean;
3296
3009
  gutter: number;
3297
3010
  defaultSpan: number;
3298
3011
  responsive: boolean;
@@ -3301,6 +3014,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3301
3014
  footerClass: string;
3302
3015
  submitText: string;
3303
3016
  cancelText: string;
3017
+ submitDisabled: boolean;
3018
+ cancelDisabled: boolean;
3304
3019
  showCount: number;
3305
3020
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
3306
3021
  formRef: ({
@@ -3376,7 +3091,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3376
3091
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3377
3092
  };
3378
3093
  $forceUpdate: () => void;
3379
- $nextTick: typeof import('vue').nextTick;
3094
+ $nextTick: typeof nextTick;
3380
3095
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
3381
3096
  } & Readonly<{
3382
3097
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -3422,7 +3137,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3422
3137
  }) => any) | undefined;
3423
3138
  }>, {
3424
3139
  validate: (callback?: (isValid: boolean, invalidFields?: any) => void) => Promise<boolean>;
3425
- resetFields: () => void;
3426
3140
  clearValidate: (props?: any) => void;
3427
3141
  getFormInstance: () => ({
3428
3142
  $: import('vue').ComponentInternalInstance;
@@ -3497,7 +3211,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3497
3211
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3498
3212
  };
3499
3213
  $forceUpdate: () => void;
3500
- $nextTick: typeof import('vue').nextTick;
3214
+ $nextTick: typeof nextTick;
3501
3215
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
3502
3216
  } & Readonly<{
3503
3217
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -3523,7 +3237,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3523
3237
  default?: (props: {}) => any;
3524
3238
  };
3525
3239
  }) | undefined;
3526
- formRef: globalThis.Ref<({
3240
+ form: ({
3527
3241
  $: import('vue').ComponentInternalInstance;
3528
3242
  $data: {};
3529
3243
  $props: {
@@ -3596,7 +3310,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3596
3310
  errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3597
3311
  };
3598
3312
  $forceUpdate: () => void;
3599
- $nextTick: typeof import('vue').nextTick;
3313
+ $nextTick: typeof nextTick;
3600
3314
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
3601
3315
  } & Readonly<{
3602
3316
  scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
@@ -3621,112 +3335,14 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3621
3335
  $slots: {
3622
3336
  default?: (props: {}) => any;
3623
3337
  };
3624
- }) | undefined, ({
3625
- $: import('vue').ComponentInternalInstance;
3626
- $data: {};
3627
- $props: {
3628
- readonly model?: Record<string, any> | undefined;
3629
- readonly rules?: import('element-plus').FormRules | undefined;
3630
- readonly labelPosition?: "left" | "right" | "top" | undefined;
3631
- readonly requireAsteriskPosition?: "left" | "right" | undefined;
3632
- readonly labelWidth?: string | number | undefined;
3633
- readonly labelSuffix?: string | undefined;
3634
- readonly inline?: boolean | undefined;
3635
- readonly inlineMessage?: boolean | undefined;
3636
- readonly statusIcon?: boolean | undefined;
3637
- readonly showMessage?: boolean | undefined;
3638
- readonly validateOnRuleChange?: boolean | undefined;
3639
- readonly hideRequiredAsterisk?: boolean | undefined;
3640
- readonly scrollToError?: boolean | undefined;
3641
- readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
3642
- readonly size?: import('element-plus').ComponentSize | undefined;
3643
- readonly disabled?: boolean | undefined;
3644
- readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
3645
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
3646
- $attrs: import('vue').Attrs;
3647
- $refs: {
3648
- [x: string]: unknown;
3649
- };
3650
- $slots: Readonly<{
3651
- [name: string]: globalThis.Slot | undefined;
3652
- }>;
3653
- $root: ComponentPublicInstance | null;
3654
- $parent: ComponentPublicInstance | null;
3655
- $host: Element | null;
3656
- $emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
3657
- $el: any;
3658
- $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
3659
- onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
3660
- }>, {
3661
- validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
3662
- validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
3663
- resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
3664
- clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
3665
- scrollToField: (prop: import('element-plus').FormItemProp) => void;
3666
- getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
3667
- fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
3668
- setInitialValues: (initModel: Record<string, any>) => void;
3669
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3670
- validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
3671
- }, string, {
3672
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
3673
- labelWidth: string | number;
3674
- labelPosition: "left" | "right" | "top";
3675
- requireAsteriskPosition: "left" | "right";
3676
- labelSuffix: string;
3677
- showMessage: boolean;
3678
- validateOnRuleChange: boolean;
3679
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
3680
- beforeCreate?: (() => void) | (() => void)[];
3681
- created?: (() => void) | (() => void)[];
3682
- beforeMount?: (() => void) | (() => void)[];
3683
- mounted?: (() => void) | (() => void)[];
3684
- beforeUpdate?: (() => void) | (() => void)[];
3685
- updated?: (() => void) | (() => void)[];
3686
- activated?: (() => void) | (() => void)[];
3687
- deactivated?: (() => void) | (() => void)[];
3688
- beforeDestroy?: (() => void) | (() => void)[];
3689
- beforeUnmount?: (() => void) | (() => void)[];
3690
- destroyed?: (() => void) | (() => void)[];
3691
- unmounted?: (() => void) | (() => void)[];
3692
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
3693
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
3694
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3695
- };
3696
- $forceUpdate: () => void;
3697
- $nextTick: typeof import('vue').nextTick;
3698
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
3699
- } & Readonly<{
3700
- scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
3701
- labelWidth: string | number;
3702
- labelPosition: "left" | "right" | "top";
3703
- requireAsteriskPosition: "left" | "right";
3704
- labelSuffix: string;
3705
- showMessage: boolean;
3706
- validateOnRuleChange: boolean;
3707
- }> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
3708
- onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
3709
- }>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & {
3710
- validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
3711
- validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
3712
- resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
3713
- clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
3714
- scrollToField: (prop: import('element-plus').FormItemProp) => void;
3715
- getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
3716
- fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
3717
- setInitialValues: (initModel: Record<string, any>) => void;
3718
- } & {} & import('vue').ComponentCustomProperties & {} & {
3719
- $slots: {
3720
- default?: (props: {}) => any;
3721
- };
3722
- }) | undefined>;
3338
+ }) | undefined;
3723
3339
  }, {}, {}, {}, {
3724
3340
  size: import('element-plus').ComponentSize;
3341
+ disabled: boolean;
3725
3342
  grid: import('../form').GridConfig;
3726
3343
  inline: boolean;
3727
3344
  labelPosition: "left" | "right" | "top";
3728
3345
  labelWidth: string | number;
3729
- showTitle: boolean;
3730
3346
  gutter: number;
3731
3347
  defaultSpan: number;
3732
3348
  responsive: boolean;
@@ -3735,6 +3351,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
3735
3351
  footerClass: string;
3736
3352
  submitText: string;
3737
3353
  cancelText: string;
3354
+ submitDisabled: boolean;
3355
+ cancelDisabled: boolean;
3738
3356
  showCount: number;
3739
3357
  }> | null;
3740
3358
  tableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{