fengmao-ui 1.3.1 → 1.3.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 (61) hide show
  1. package/lib/adaptive-page/index.d.ts +2389 -0
  2. package/lib/adaptive-page/src/index.vue.d.ts +774 -0
  3. package/lib/button/index.d.ts +176 -0
  4. package/lib/button/src/index.vue.d.ts +48 -0
  5. package/lib/components.d.ts +35 -0
  6. package/lib/date-picker/index.d.ts +218 -0
  7. package/lib/date-picker/src/index.vue.d.ts +73 -0
  8. package/lib/detail/index.d.ts +184 -0
  9. package/lib/detail/src/index.vue.d.ts +51 -0
  10. package/lib/detail/src/renderTooltip.vue.d.ts +8 -0
  11. package/lib/fengmao-ui.js +8 -7
  12. package/lib/fengmao-ui.js.gz +0 -0
  13. package/lib/fengmao-ui.umd.cjs +2 -2
  14. package/lib/form/index.d.ts +253 -0
  15. package/lib/form/src/index.vue.d.ts +94 -0
  16. package/lib/form/src/renderComp.vue.d.ts +8 -0
  17. package/lib/iconfont/iconfont.css +255 -0
  18. package/lib/iconfont/iconfont.js +1 -0
  19. package/lib/iconfont/iconfont.js.gz +0 -0
  20. package/lib/iconfont/iconfont.json +429 -0
  21. package/lib/iconfont/iconfont.json.gz +0 -0
  22. package/lib/iconfont/iconfont.ttf +0 -0
  23. package/lib/iconfont/iconfont.woff +0 -0
  24. package/lib/iconfont/iconfont.woff2 +0 -0
  25. package/lib/index.d.ts +20 -0
  26. package/lib/layout-page/index.d.ts +136 -0
  27. package/lib/layout-page/src/index.vue.d.ts +27 -0
  28. package/lib/layout-page-item/index.d.ts +109 -0
  29. package/lib/layout-page-item/src/index.vue.d.ts +14 -0
  30. package/lib/module-form/index.d.ts +486 -0
  31. package/lib/module-form/src/index.vue.d.ts +168 -0
  32. package/lib/module-form/src/moduleDetail.vue.d.ts +30 -0
  33. package/lib/module-form/src/moduleForm.vue.d.ts +36 -0
  34. package/lib/query-condition/index.d.ts +458 -0
  35. package/lib/query-condition/src/index.vue.d.ts +169 -0
  36. package/lib/query-condition/src/renderComp.vue.d.ts +8 -0
  37. package/lib/radio/index.d.ts +217 -0
  38. package/lib/radio/src/index.vue.d.ts +70 -0
  39. package/lib/radio/src/radio.d.ts +12 -0
  40. package/lib/select/index.d.ts +281 -0
  41. package/lib/select/src/index.vue.d.ts +108 -0
  42. package/lib/select-table/index.d.ts +1069 -0
  43. package/lib/select-table/src/index.vue.d.ts +402 -0
  44. package/lib/select-table/src/renderCol.vue.d.ts +20 -0
  45. package/lib/step-wizard/index.d.ts +206 -0
  46. package/lib/step-wizard/src/fixBtn.vue.d.ts +4 -0
  47. package/lib/step-wizard/src/index.vue.d.ts +64 -0
  48. package/lib/style.css +1 -1
  49. package/lib/style.css.gz +0 -0
  50. package/lib/table/index.d.ts +1534 -0
  51. package/lib/table/src/ColumnSet.vue.d.ts +137 -0
  52. package/lib/table/src/TTableColumn.vue.d.ts +103 -0
  53. package/lib/table/src/index.vue.d.ts +560 -0
  54. package/lib/table/src/renderCol.vue.d.ts +20 -0
  55. package/lib/table/src/renderHeader.vue.d.ts +16 -0
  56. package/lib/table/src/singleEditCell.vue.d.ts +83 -0
  57. package/lib/timer-btn/index.d.ts +156 -0
  58. package/lib/timer-btn/src/index.vue.d.ts +32 -0
  59. package/lib/utils/directives/click-outside/index.d.ts +3 -0
  60. package/lib/withInstall.d.ts +4 -0
  61. package/package.json +6 -1
@@ -0,0 +1,108 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ modelValue: {
3
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
4
+ };
5
+ multiple: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ width: {
10
+ type: StringConstructor;
11
+ };
12
+ valueCustom: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ labelCustom: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ customLabel: {
21
+ type: StringConstructor;
22
+ };
23
+ optionSource: {
24
+ type: any[];
25
+ default: () => never[];
26
+ };
27
+ isShowPagination: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ paginationOption: {
32
+ type: ObjectConstructor;
33
+ default: () => {
34
+ pageSize: number;
35
+ currentPage: number;
36
+ pagerCount: number;
37
+ total: number;
38
+ };
39
+ };
40
+ useVirtual: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ }, {
45
+ props: any;
46
+ slots: Readonly<{
47
+ [name: string]: import("vue").Slot<any> | undefined;
48
+ }>;
49
+ emits: (event: "update:modelValue", ...args: any[]) => void;
50
+ childSelectedValue: any;
51
+ selectChecked: import("vue").WritableComputedRef<any>;
52
+ selectAll: (val: any) => void;
53
+ customLabelHandler: (item: any) => any;
54
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
55
+ modelValue: {
56
+ type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
57
+ };
58
+ multiple: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
62
+ width: {
63
+ type: StringConstructor;
64
+ };
65
+ valueCustom: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ labelCustom: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ };
73
+ customLabel: {
74
+ type: StringConstructor;
75
+ };
76
+ optionSource: {
77
+ type: any[];
78
+ default: () => never[];
79
+ };
80
+ isShowPagination: {
81
+ type: BooleanConstructor;
82
+ default: boolean;
83
+ };
84
+ paginationOption: {
85
+ type: ObjectConstructor;
86
+ default: () => {
87
+ pageSize: number;
88
+ currentPage: number;
89
+ pagerCount: number;
90
+ total: number;
91
+ };
92
+ };
93
+ useVirtual: {
94
+ type: BooleanConstructor;
95
+ default: boolean;
96
+ };
97
+ }>> & {
98
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
99
+ }, {
100
+ isShowPagination: boolean;
101
+ multiple: boolean;
102
+ valueCustom: string;
103
+ labelCustom: string;
104
+ optionSource: any;
105
+ paginationOption: Record<string, any>;
106
+ useVirtual: boolean;
107
+ }, {}>;
108
+ export default _sfc_main;