@dt-frames/ui 2.0.2 → 2.0.3

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 (54) hide show
  1. package/es/components/container/index.d.ts +4 -3
  2. package/es/components/container/index.js +24 -22
  3. package/es/components/container/src/slot-container.d.ts +5 -3
  4. package/es/components/curd/index.js +304 -282
  5. package/es/components/curd/src/components/Curd.d.ts +126 -331
  6. package/es/components/curd/src/props.d.ts +14 -15
  7. package/es/components/drawer/index.d.ts +2 -4
  8. package/es/components/drawer/index.js +64 -63
  9. package/es/components/drawer/src/components/DrawerHeader.d.ts +1 -3
  10. package/es/components/drawer/src/index.d.ts +2 -4
  11. package/es/components/form/index.d.ts +196 -344
  12. package/es/components/form/index.js +140 -139
  13. package/es/components/form/src/components/FormButtons.d.ts +3 -3
  14. package/es/components/form/src/components/FormItem.d.ts +156 -304
  15. package/es/components/form/src/components/formIcon.d.ts +10 -10
  16. package/es/components/form/src/components/formInputUseDialog.d.ts +5 -5
  17. package/es/components/form/src/index.d.ts +186 -334
  18. package/es/components/form/src/props.d.ts +7 -7
  19. package/es/components/form/src/types/form.type.d.ts +1 -1
  20. package/es/components/icons/index.d.ts +496 -2
  21. package/es/components/icons/src/pick-icon.d.ts +5 -5
  22. package/es/components/modal/index.js +87 -86
  23. package/es/components/modal/src/components/Modal.d.ts +108 -215
  24. package/es/components/modal/src/index.d.ts +107 -214
  25. package/es/components/source/index.js +1 -0
  26. package/es/components/table/index.js +357 -788
  27. package/es/components/table/index.less +9 -0
  28. package/es/components/table/src/components/TableAction.d.ts +1 -1
  29. package/es/components/table/src/components/TableHeader.d.ts +109 -216
  30. package/es/components/table/src/components/TableRender.d.ts +13 -9
  31. package/es/components/table/src/components/tableSetting/Download.d.ts +107 -214
  32. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +107 -214
  33. package/es/components/table/src/components/tableSetting/index.d.ts +107 -214
  34. package/es/components/table/src/hooks/useDataSource.d.ts +1 -2
  35. package/es/components/table/src/hooks/usePagination.d.ts +3 -118
  36. package/es/components/table/src/index.d.ts +79 -425
  37. package/es/components/table/src/props.d.ts +11 -70
  38. package/es/components/table/src/types/actions.type.d.ts +1 -2
  39. package/es/components/table/src/types/table.type.d.ts +9 -3
  40. package/es/index.d.ts +1 -1
  41. package/es/index.js +2 -3240
  42. package/es/theme/index.js +406 -393
  43. package/es/theme/src/components/header/components/logo.d.ts +0 -1
  44. package/es/theme/src/components/header/components/notify.d.ts +4 -3
  45. package/es/theme/src/components/header/components/setting-theme.d.ts +2 -1
  46. package/es/theme/src/components/header/components/size.d.ts +5 -5
  47. package/es/theme/src/components/header/components/user-info.d.ts +4 -3
  48. package/es/theme/src/components/header/index.d.ts +13 -12
  49. package/es/theme/src/components/header/multiple-header.d.ts +26 -28
  50. package/es/theme/src/hooks/useMenu.d.ts +1 -1
  51. package/es/theme/src/index.d.ts +27 -28
  52. package/es/theme/src/types/theme.type.d.ts +1 -1
  53. package/package.json +3 -2
  54. package/vite.config.ts +0 -27
@@ -12,7 +12,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
12
12
  };
13
13
  model: {
14
14
  type: import("vue").PropType<Recordable<any>>;
15
- default: {};
15
+ default: () => {};
16
16
  };
17
17
  layout: {
18
18
  type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
@@ -32,11 +32,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
32
32
  };
33
33
  labelCol: {
34
34
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
35
- default: () => void;
35
+ default: () => {};
36
36
  };
37
37
  wrapperCol: {
38
38
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
39
- default: () => void;
39
+ default: () => {};
40
40
  };
41
41
  rowProps: {
42
42
  type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
@@ -52,11 +52,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
52
52
  default: any;
53
53
  };
54
54
  }>>>;
55
- default: () => void;
55
+ default: () => {};
56
56
  };
57
57
  colProps: {
58
58
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
59
- default: () => void;
59
+ default: () => {};
60
60
  };
61
61
  size: {
62
62
  type: import("vue").PropType<"small" | "middle" | "large">;
@@ -148,7 +148,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
148
148
  };
149
149
  model: {
150
150
  type: import("vue").PropType<Recordable<any>>;
151
- default: {};
151
+ default: () => {};
152
152
  };
153
153
  layout: {
154
154
  type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
@@ -168,11 +168,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
168
168
  };
169
169
  labelCol: {
170
170
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
171
- default: () => void;
171
+ default: () => {};
172
172
  };
173
173
  wrapperCol: {
174
174
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
175
- default: () => void;
175
+ default: () => {};
176
176
  };
177
177
  rowProps: {
178
178
  type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
@@ -188,11 +188,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
188
188
  default: any;
189
189
  };
190
190
  }>>>;
191
- default: () => void;
191
+ default: () => {};
192
192
  };
193
193
  colProps: {
194
194
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
195
- default: () => void;
195
+ default: () => {};
196
196
  };
197
197
  size: {
198
198
  type: import("vue").PropType<"small" | "middle" | "large">;
@@ -290,7 +290,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
290
290
  };
291
291
  model: {
292
292
  type: import("vue").PropType<Recordable<any>>;
293
- default: {};
293
+ default: () => {};
294
294
  };
295
295
  layout: {
296
296
  type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
@@ -310,11 +310,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
310
310
  };
311
311
  labelCol: {
312
312
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
313
- default: () => void;
313
+ default: () => {};
314
314
  };
315
315
  wrapperCol: {
316
316
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
317
- default: () => void;
317
+ default: () => {};
318
318
  };
319
319
  rowProps: {
320
320
  type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
@@ -330,11 +330,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
330
330
  default: any;
331
331
  };
332
332
  }>>>;
333
- default: () => void;
333
+ default: () => {};
334
334
  };
335
335
  colProps: {
336
336
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
337
- default: () => void;
337
+ default: () => {};
338
338
  };
339
339
  size: {
340
340
  type: import("vue").PropType<"small" | "middle" | "large">;
@@ -2405,7 +2405,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2405
2405
  };
2406
2406
  model: {
2407
2407
  type: import("vue").PropType<Recordable<any>>;
2408
- default: {};
2408
+ default: () => {};
2409
2409
  };
2410
2410
  layout: {
2411
2411
  type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
@@ -2425,11 +2425,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
2425
2425
  };
2426
2426
  labelCol: {
2427
2427
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2428
- default: () => void;
2428
+ default: () => {};
2429
2429
  };
2430
2430
  wrapperCol: {
2431
2431
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2432
- default: () => void;
2432
+ default: () => {};
2433
2433
  };
2434
2434
  rowProps: {
2435
2435
  type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
@@ -2445,11 +2445,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
2445
2445
  default: any;
2446
2446
  };
2447
2447
  }>>>;
2448
- default: () => void;
2448
+ default: () => {};
2449
2449
  };
2450
2450
  colProps: {
2451
2451
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2452
- default: () => void;
2452
+ default: () => {};
2453
2453
  };
2454
2454
  size: {
2455
2455
  type: import("vue").PropType<"small" | "middle" | "large">;
@@ -2558,314 +2558,166 @@ declare const _sfc_main: import("vue").DefineComponent<{
2558
2558
  };
2559
2559
  getActionsProps: import("vue").ComputedRef<Recordable<any>>;
2560
2560
  handleMethod: (params: boolean | ButtonProps) => void;
2561
- readonly DtFormItem: import("vue").DefineComponent<{
2562
- schema: {
2563
- type: import("vue").PropType<FormSchema>;
2564
- default: () => {};
2565
- };
2566
- formProps: {
2567
- type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2568
- mode: {
2569
- type: import("vue").PropType<"search" | "dialog">;
2570
- default: string;
2571
- };
2572
- autoFetch: {
2573
- type: BooleanConstructor;
2574
- default: boolean;
2575
- };
2576
- model: {
2577
- type: import("vue").PropType<Recordable<any>>;
2578
- default: {};
2579
- };
2580
- layout: {
2581
- type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
2582
- default: string;
2583
- };
2584
- labelWidth: {
2585
- type: import("vue").PropType<string | number>;
2586
- default: number;
2587
- };
2588
- enLabelWidth: {
2589
- type: import("vue").PropType<string | number>;
2590
- default: number;
2591
- };
2592
- labelAlign: {
2593
- type: import("vue").PropType<"left" | "right">;
2594
- default: string;
2595
- };
2596
- labelCol: {
2597
- type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2598
- default: () => void;
2599
- };
2600
- wrapperCol: {
2601
- type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2602
- default: () => void;
2603
- };
2604
- rowProps: {
2605
- type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2606
- align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
2607
- justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
2608
- prefixCls: StringConstructor;
2609
- gutter: {
2610
- type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
2611
- default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
2612
- };
2613
- wrap: {
2614
- type: BooleanConstructor;
2615
- default: any;
2616
- };
2617
- }>>>;
2618
- default: () => void;
2619
- };
2620
- colProps: {
2621
- type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2622
- default: () => void;
2623
- };
2624
- size: {
2625
- type: import("vue").PropType<"small" | "middle" | "large">;
2626
- default: string;
2627
- };
2628
- disabled: {
2629
- type: BooleanConstructor;
2630
- default: boolean;
2631
- };
2632
- compact: {
2633
- type: BooleanConstructor;
2634
- default: any;
2635
- };
2636
- schemas: {
2637
- type: import("vue").PropType<FormSchema[]>;
2638
- default: () => any[];
2639
- };
2640
- autoSearchOnEnter: {
2641
- type: BooleanConstructor;
2642
- default: boolean;
2643
- };
2644
- alwaysShowLines: {
2645
- type: BooleanConstructor;
2646
- default: boolean;
2647
- };
2648
- minShowColumn: {
2649
- type: NumberConstructor;
2650
- default: number;
2651
- };
2652
- showAdvancedButton: {
2653
- type: BooleanConstructor;
2654
- default: boolean;
2655
- };
2656
- allowClear: {
2657
- type: BooleanConstructor;
2658
- default: boolean;
2659
- };
2660
- scrollToFirstError: {
2661
- type: BooleanConstructor;
2662
- default: boolean;
2663
- };
2664
- colon: {
2665
- type: BooleanConstructor;
2666
- default: boolean;
2667
- };
2668
- loading: {
2669
- type: import("vue").PropType<{
2670
- [key: string]: import("vue").Ref<boolean>;
2671
- }>;
2672
- default: () => {
2673
- onSearch: import("vue").Ref<boolean>;
2674
- onReset: import("vue").Ref<boolean>;
2561
+ readonly DtFormItem: {
2562
+ name: string;
2563
+ inheritAttrs: boolean;
2564
+ props: {
2565
+ schema: {
2566
+ type: import("vue").PropType<FormSchema>;
2567
+ default: () => {};
2568
+ };
2569
+ formProps: {
2570
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2571
+ mode: {
2572
+ type: import("vue").PropType<"search" | "dialog">;
2573
+ default: string;
2675
2574
  };
2676
- };
2677
- onSearch: {
2678
- type: import("vue").PropType<(params: Recordable<any>) => void>;
2679
- default: (params: Recordable<any>) => void;
2680
- };
2681
- onReset: {
2682
- type: import("vue").PropType<(params: Recordable<any>) => void>;
2683
- default: (params: Recordable<any>) => void;
2684
- };
2685
- buttons: {
2686
- type: import("vue").PropType<boolean | ButtonProps[]>;
2687
- default: boolean;
2688
- };
2689
- resetFunc: {
2690
- type: import("vue").PropType<() => void>;
2691
- };
2692
- registerInstance: {
2693
- type: import("vue").PropType<(instance: FormActionType) => void>;
2694
- };
2695
- }>>>;
2696
- default: () => {};
2697
- };
2698
- defaultValues: {
2699
- type: import("vue").PropType<Recordable<any>>;
2700
- default: () => {};
2701
- };
2702
- formModel: {
2703
- type: import("vue").PropType<Recordable<any>>;
2704
- default: () => {};
2705
- };
2706
- setFormModel: {
2707
- type: import("vue").PropType<(key: string, value: any) => void>;
2708
- };
2709
- formActionType: {
2710
- type: import("vue").PropType<FormActionType>;
2711
- };
2712
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2713
- schema: {
2714
- type: import("vue").PropType<FormSchema>;
2715
- default: () => {};
2716
- };
2717
- formProps: {
2718
- type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2719
- mode: {
2720
- type: import("vue").PropType<"search" | "dialog">;
2721
- default: string;
2722
- };
2723
- autoFetch: {
2724
- type: BooleanConstructor;
2725
- default: boolean;
2726
- };
2727
- model: {
2728
- type: import("vue").PropType<Recordable<any>>;
2729
- default: {};
2730
- };
2731
- layout: {
2732
- type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
2733
- default: string;
2734
- };
2735
- labelWidth: {
2736
- type: import("vue").PropType<string | number>;
2737
- default: number;
2738
- };
2739
- enLabelWidth: {
2740
- type: import("vue").PropType<string | number>;
2741
- default: number;
2742
- };
2743
- labelAlign: {
2744
- type: import("vue").PropType<"left" | "right">;
2745
- default: string;
2746
- };
2747
- labelCol: {
2748
- type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2749
- default: () => void;
2750
- };
2751
- wrapperCol: {
2752
- type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2753
- default: () => void;
2754
- };
2755
- rowProps: {
2756
- type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2757
- align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
2758
- justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
2759
- prefixCls: StringConstructor;
2760
- gutter: {
2761
- type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
2762
- default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
2763
- };
2764
- wrap: {
2765
- type: BooleanConstructor;
2766
- default: any;
2575
+ autoFetch: {
2576
+ type: BooleanConstructor;
2577
+ default: boolean;
2578
+ };
2579
+ model: {
2580
+ type: import("vue").PropType<Recordable<any>>;
2581
+ default: () => {};
2582
+ };
2583
+ layout: {
2584
+ type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
2585
+ default: string;
2586
+ };
2587
+ labelWidth: {
2588
+ type: import("vue").PropType<string | number>;
2589
+ default: number;
2590
+ };
2591
+ enLabelWidth: {
2592
+ type: import("vue").PropType<string | number>;
2593
+ default: number;
2594
+ };
2595
+ labelAlign: {
2596
+ type: import("vue").PropType<"left" | "right">;
2597
+ default: string;
2598
+ };
2599
+ labelCol: {
2600
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2601
+ default: () => {};
2602
+ };
2603
+ wrapperCol: {
2604
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2605
+ default: () => {};
2606
+ };
2607
+ rowProps: {
2608
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2609
+ align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
2610
+ justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
2611
+ prefixCls: StringConstructor;
2612
+ gutter: {
2613
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
2614
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
2615
+ };
2616
+ wrap: {
2617
+ type: BooleanConstructor;
2618
+ default: any;
2619
+ };
2620
+ }>>>;
2621
+ default: () => {};
2622
+ };
2623
+ colProps: {
2624
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2625
+ default: () => {};
2626
+ };
2627
+ size: {
2628
+ type: import("vue").PropType<"small" | "middle" | "large">;
2629
+ default: string;
2630
+ };
2631
+ disabled: {
2632
+ type: BooleanConstructor;
2633
+ default: boolean;
2634
+ };
2635
+ compact: {
2636
+ type: BooleanConstructor;
2637
+ default: any;
2638
+ };
2639
+ schemas: {
2640
+ type: import("vue").PropType<FormSchema[]>;
2641
+ default: () => any[];
2642
+ };
2643
+ autoSearchOnEnter: {
2644
+ type: BooleanConstructor;
2645
+ default: boolean;
2646
+ };
2647
+ alwaysShowLines: {
2648
+ type: BooleanConstructor;
2649
+ default: boolean;
2650
+ };
2651
+ minShowColumn: {
2652
+ type: NumberConstructor;
2653
+ default: number;
2654
+ };
2655
+ showAdvancedButton: {
2656
+ type: BooleanConstructor;
2657
+ default: boolean;
2658
+ };
2659
+ allowClear: {
2660
+ type: BooleanConstructor;
2661
+ default: boolean;
2662
+ };
2663
+ scrollToFirstError: {
2664
+ type: BooleanConstructor;
2665
+ default: boolean;
2666
+ };
2667
+ colon: {
2668
+ type: BooleanConstructor;
2669
+ default: boolean;
2670
+ };
2671
+ loading: {
2672
+ type: import("vue").PropType<{
2673
+ [key: string]: import("vue").Ref<boolean>;
2674
+ }>;
2675
+ default: () => {
2676
+ onSearch: import("vue").Ref<boolean>;
2677
+ onReset: import("vue").Ref<boolean>;
2767
2678
  };
2768
- }>>>;
2769
- default: () => void;
2770
- };
2771
- colProps: {
2772
- type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2773
- default: () => void;
2774
- };
2775
- size: {
2776
- type: import("vue").PropType<"small" | "middle" | "large">;
2777
- default: string;
2778
- };
2779
- disabled: {
2780
- type: BooleanConstructor;
2781
- default: boolean;
2782
- };
2783
- compact: {
2784
- type: BooleanConstructor;
2785
- default: any;
2786
- };
2787
- schemas: {
2788
- type: import("vue").PropType<FormSchema[]>;
2789
- default: () => any[];
2790
- };
2791
- autoSearchOnEnter: {
2792
- type: BooleanConstructor;
2793
- default: boolean;
2794
- };
2795
- alwaysShowLines: {
2796
- type: BooleanConstructor;
2797
- default: boolean;
2798
- };
2799
- minShowColumn: {
2800
- type: NumberConstructor;
2801
- default: number;
2802
- };
2803
- showAdvancedButton: {
2804
- type: BooleanConstructor;
2805
- default: boolean;
2806
- };
2807
- allowClear: {
2808
- type: BooleanConstructor;
2809
- default: boolean;
2810
- };
2811
- scrollToFirstError: {
2812
- type: BooleanConstructor;
2813
- default: boolean;
2814
- };
2815
- colon: {
2816
- type: BooleanConstructor;
2817
- default: boolean;
2818
- };
2819
- loading: {
2820
- type: import("vue").PropType<{
2821
- [key: string]: import("vue").Ref<boolean>;
2822
- }>;
2823
- default: () => {
2824
- onSearch: import("vue").Ref<boolean>;
2825
- onReset: import("vue").Ref<boolean>;
2826
2679
  };
2827
- };
2828
- onSearch: {
2829
- type: import("vue").PropType<(params: Recordable<any>) => void>;
2830
- default: (params: Recordable<any>) => void;
2831
- };
2832
- onReset: {
2833
- type: import("vue").PropType<(params: Recordable<any>) => void>;
2834
- default: (params: Recordable<any>) => void;
2835
- };
2836
- buttons: {
2837
- type: import("vue").PropType<boolean | ButtonProps[]>;
2838
- default: boolean;
2839
- };
2840
- resetFunc: {
2841
- type: import("vue").PropType<() => void>;
2842
- };
2843
- registerInstance: {
2844
- type: import("vue").PropType<(instance: FormActionType) => void>;
2845
- };
2846
- }>>>;
2847
- default: () => {};
2848
- };
2849
- defaultValues: {
2850
- type: import("vue").PropType<Recordable<any>>;
2851
- default: () => {};
2852
- };
2853
- formModel: {
2854
- type: import("vue").PropType<Recordable<any>>;
2855
- default: () => {};
2856
- };
2857
- setFormModel: {
2858
- type: import("vue").PropType<(key: string, value: any) => void>;
2859
- };
2860
- formActionType: {
2861
- type: import("vue").PropType<FormActionType>;
2680
+ onSearch: {
2681
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
2682
+ default: (params: Recordable<any>) => void;
2683
+ };
2684
+ onReset: {
2685
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
2686
+ default: (params: Recordable<any>) => void;
2687
+ };
2688
+ buttons: {
2689
+ type: import("vue").PropType<boolean | ButtonProps[]>;
2690
+ default: boolean;
2691
+ };
2692
+ resetFunc: {
2693
+ type: import("vue").PropType<() => void>;
2694
+ };
2695
+ registerInstance: {
2696
+ type: import("vue").PropType<(instance: FormActionType) => void>;
2697
+ };
2698
+ }>>>;
2699
+ default: () => {};
2700
+ };
2701
+ defaultValues: {
2702
+ type: import("vue").PropType<Recordable<any>>;
2703
+ default: () => {};
2704
+ };
2705
+ formModel: {
2706
+ type: import("vue").PropType<Recordable<any>>;
2707
+ default: () => {};
2708
+ };
2709
+ setFormModel: {
2710
+ type: import("vue").PropType<(key: string, value: any) => void>;
2711
+ };
2712
+ formActionType: {
2713
+ type: import("vue").PropType<FormActionType>;
2714
+ };
2862
2715
  };
2863
- }>>, {
2864
- formModel: {};
2865
- schema: {};
2866
- formProps: {};
2867
- defaultValues: {};
2868
- }>;
2716
+ setup(props: any, { emit, slots }: {
2717
+ emit: any;
2718
+ slots: any;
2719
+ }): () => JSX.Element;
2720
+ };
2869
2721
  readonly DtFormButtons: import("vue").DefineComponent<{
2870
2722
  mode: {
2871
2723
  type: import("vue").PropType<"search" | "dialog">;
@@ -2961,7 +2813,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2961
2813
  };
2962
2814
  model: {
2963
2815
  type: import("vue").PropType<Recordable<any>>;
2964
- default: {};
2816
+ default: () => {};
2965
2817
  };
2966
2818
  layout: {
2967
2819
  type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
@@ -2981,11 +2833,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
2981
2833
  };
2982
2834
  labelCol: {
2983
2835
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2984
- default: () => void;
2836
+ default: () => {};
2985
2837
  };
2986
2838
  wrapperCol: {
2987
2839
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2988
- default: () => void;
2840
+ default: () => {};
2989
2841
  };
2990
2842
  rowProps: {
2991
2843
  type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
@@ -3001,11 +2853,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
3001
2853
  default: any;
3002
2854
  };
3003
2855
  }>>>;
3004
- default: () => void;
2856
+ default: () => {};
3005
2857
  };
3006
2858
  colProps: {
3007
2859
  type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
3008
- default: () => void;
2860
+ default: () => {};
3009
2861
  };
3010
2862
  size: {
3011
2863
  type: import("vue").PropType<"small" | "middle" | "large">;
@@ -3081,18 +2933,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
3081
2933
  }>> & {
3082
2934
  onRegister?: (...args: any[]) => any;
3083
2935
  }, {
3084
- mode: "search" | "dialog";
3085
2936
  size: "small" | "middle" | "large";
2937
+ mode: "search" | "dialog";
3086
2938
  autoFetch: boolean;
3087
2939
  model: {};
3088
2940
  layout: "vertical" | "horizontal" | "inline";
3089
2941
  labelWidth: string | number;
3090
2942
  enLabelWidth: string | number;
3091
2943
  labelAlign: "left" | "right";
3092
- labelCol: void;
3093
- wrapperCol: void;
3094
- rowProps: void;
3095
- colProps: void;
2944
+ labelCol: {};
2945
+ wrapperCol: {};
2946
+ rowProps: {};
2947
+ colProps: {};
3096
2948
  disabled: boolean;
3097
2949
  compact: boolean;
3098
2950
  schemas: FormSchema[];