el-plus-crud 0.1.68 → 0.1.72

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 (75) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/components/el-plus-form/ElPlusForm.vue.d.ts +195 -0
  3. package/dist/components/el-plus-form/ElPlusFormDialog.vue.d.ts +85 -0
  4. package/dist/components/el-plus-form/ElPlusFormGroup.vue.d.ts +60 -0
  5. package/dist/components/el-plus-form/components/ElPlusFormArea.vue.d.ts +33 -0
  6. package/dist/components/el-plus-form/components/ElPlusFormAutocomplete.vue.d.ts +44 -0
  7. package/dist/components/el-plus-form/components/ElPlusFormBtn.vue.d.ts +38 -0
  8. package/dist/components/el-plus-form/components/ElPlusFormBtns.vue.d.ts +31 -0
  9. package/dist/components/el-plus-form/components/ElPlusFormCascader.vue.d.ts +35 -0
  10. package/dist/components/el-plus-form/components/ElPlusFormCascaderPanel.vue.d.ts +35 -0
  11. package/dist/components/el-plus-form/components/ElPlusFormCheckbox.vue.d.ts +35 -0
  12. package/dist/components/el-plus-form/components/ElPlusFormCheckboxButton.vue.d.ts +35 -0
  13. package/dist/components/el-plus-form/components/ElPlusFormColor.vue.d.ts +35 -0
  14. package/dist/components/el-plus-form/components/ElPlusFormDate.vue.d.ts +35 -0
  15. package/dist/components/el-plus-form/components/ElPlusFormDaterange.vue.d.ts +42 -0
  16. package/dist/components/el-plus-form/components/ElPlusFormDatetime.vue.d.ts +35 -0
  17. package/dist/components/el-plus-form/components/ElPlusFormDatetimerange.vue.d.ts +42 -0
  18. package/dist/components/el-plus-form/components/ElPlusFormFile.vue.d.ts +33 -0
  19. package/dist/components/el-plus-form/components/ElPlusFormFormula.vue.d.ts +43 -0
  20. package/dist/components/el-plus-form/components/ElPlusFormImage.vue.d.ts +31 -0
  21. package/dist/components/el-plus-form/components/ElPlusFormInput.vue.d.ts +42 -0
  22. package/dist/components/el-plus-form/components/ElPlusFormLink.vue.d.ts +43 -0
  23. package/dist/components/el-plus-form/components/ElPlusFormLkuser.vue.d.ts +45 -0
  24. package/dist/components/el-plus-form/components/ElPlusFormNbinput.vue.d.ts +44 -0
  25. package/dist/components/el-plus-form/components/ElPlusFormNumber.vue.d.ts +41 -0
  26. package/dist/components/el-plus-form/components/ElPlusFormPassword.vue.d.ts +44 -0
  27. package/dist/components/el-plus-form/components/ElPlusFormPercentinput.vue.d.ts +49 -0
  28. package/dist/components/el-plus-form/components/ElPlusFormQuickInput.vue.d.ts +39 -0
  29. package/dist/components/el-plus-form/components/ElPlusFormRadio.vue.d.ts +35 -0
  30. package/dist/components/el-plus-form/components/ElPlusFormRate.vue.d.ts +37 -0
  31. package/dist/components/el-plus-form/components/ElPlusFormSelect.vue.d.ts +58 -0
  32. package/dist/components/el-plus-form/components/ElPlusFormSlider.vue.d.ts +35 -0
  33. package/dist/components/el-plus-form/components/ElPlusFormStatus.vue.d.ts +33 -0
  34. package/dist/components/el-plus-form/components/ElPlusFormSwitch.vue.d.ts +37 -0
  35. package/dist/components/el-plus-form/components/ElPlusFormTag.vue.d.ts +33 -0
  36. package/dist/components/el-plus-form/components/ElPlusFormText.vue.d.ts +33 -0
  37. package/dist/components/el-plus-form/components/ElPlusFormTextarea.vue.d.ts +39 -0
  38. package/dist/components/el-plus-form/components/ElPlusFormTime.vue.d.ts +35 -0
  39. package/dist/components/el-plus-form/components/ElPlusFormTimerange.vue.d.ts +42 -0
  40. package/dist/components/el-plus-form/components/ElPlusFormTransfer.vue.d.ts +44 -0
  41. package/dist/components/el-plus-form/components/ElPlusFormTree.vue.d.ts +39 -0
  42. package/dist/components/el-plus-form/components/ElPlusFormTreeSelect.vue.d.ts +37 -0
  43. package/dist/components/el-plus-form/components/ElPlusFormUpbtn.vue.d.ts +33 -0
  44. package/dist/components/el-plus-form/components/ElPlusFormUpload.vue.d.ts +41 -0
  45. package/dist/components/el-plus-form/components/components/file-icons/FileIcons.vue.d.ts +27 -0
  46. package/dist/components/el-plus-form/components/components/file-icons/data/index.d.ts +5 -0
  47. package/dist/components/el-plus-form/components/components/tree/CustomTreeNode.vue.d.ts +33 -0
  48. package/dist/components/el-plus-form/components/index.d.ts +3 -0
  49. package/dist/components/el-plus-form/data/file.d.ts +63 -0
  50. package/dist/components/el-plus-form/mixins/index.d.ts +28 -0
  51. package/dist/components/el-plus-form/util/validate.d.ts +275 -0
  52. package/dist/components/el-plus-table/ElPlusTable.vue.d.ts +174 -0
  53. package/dist/components/el-plus-table/ElPlusTableColumn.vue.d.ts +21 -0
  54. package/dist/components/el-plus-table/components/columnItem.vue.d.ts +29 -0
  55. package/dist/components/el-plus-table/components/header.vue.d.ts +89 -0
  56. package/dist/components/el-plus-table/components/settingColumn.vue.d.ts +30 -0
  57. package/dist/components-list.d.ts +2 -0
  58. package/dist/config/index.d.ts +4 -0
  59. package/dist/el-plus-crud.mjs +1901 -1903
  60. package/dist/el-plus-crud.umd.js +1 -0
  61. package/dist/index.d.ts +11 -0
  62. package/dist/style.css +1 -0
  63. package/dist/util/index.d.ts +81 -0
  64. package/lib/components/el-plus-form/ElPlusForm.vue +10 -6
  65. package/lib/components/el-plus-form/components/ElPlusFormFormula.vue +1 -1
  66. package/lib/components/el-plus-form/components/ElPlusFormLink.vue +2 -2
  67. package/lib/components/el-plus-form/components/ElPlusFormLkuser.vue +1 -1
  68. package/lib/components/el-plus-form/components/ElPlusFormNumber.vue +2 -2
  69. package/lib/components/el-plus-form/components/ElPlusFormPercentinput.vue +2 -2
  70. package/lib/components/el-plus-form/components/ElPlusFormSelect.vue +2 -5
  71. package/lib/components/el-plus-form/components/ElPlusFormTree.vue +45 -24
  72. package/lib/components/el-plus-table/ElPlusTable.vue +1 -1
  73. package/package.json +2 -2
  74. package/types/index.d.ts +1 -0
  75. package/pnpm-lock.yaml +0 -6204
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.72](https://github.com/KDJack/el-plus-crud/compare/v0.1.71...v0.1.72) (2026-06-30)
6
+
7
+ ### [0.1.71](https://github.com/KDJack/el-plus-crud/compare/v0.1.70...v0.1.71) (2026-06-30)
8
+
9
+ ### [0.1.70](https://github.com/KDJack/el-plus-crud/compare/v0.1.69...v0.1.70) (2026-06-17)
10
+
11
+ ### [0.1.69](https://github.com/KDJack/el-plus-crud/compare/v0.1.68...v0.1.69) (2026-06-17)
12
+
5
13
  ### [0.1.68](https://github.com/KDJack/el-plus-crud/compare/v0.1.67...v0.1.68) (2026-06-11)
6
14
 
7
15
  ### 0.1.67 (2026-06-11)
@@ -0,0 +1,195 @@
1
+ import { Ref } from 'vue';
2
+ import { IFormDesc } from '../../../types';
3
+
4
+ export interface IFormProps {
5
+ fid?: string;
6
+ formDesc?: IFormDesc | null;
7
+ groupFormDesc?: IFormDesc | null;
8
+ descOrders?: string[];
9
+ modelValue?: {
10
+ [key: string]: any;
11
+ };
12
+ formAttrs?: {
13
+ [key: string]: any;
14
+ };
15
+ rules?: {
16
+ [key: string]: any;
17
+ } | null;
18
+ isLoading?: boolean;
19
+ requestFn?: Function | null;
20
+ updateFn?: Function | null;
21
+ showBtns?: boolean;
22
+ showSubmit?: boolean;
23
+ submitBtnText?: string;
24
+ showCancel?: boolean;
25
+ cancelBtnText?: string;
26
+ showReset?: boolean;
27
+ resetBtnText?: string;
28
+ showLabel?: boolean;
29
+ labelWidth?: number | string;
30
+ disabled?: boolean;
31
+ isDialog?: boolean;
32
+ size?: string;
33
+ column?: number;
34
+ isTable?: boolean;
35
+ idKey?: string;
36
+ maxWidth?: string;
37
+ isGroupForm?: boolean;
38
+ disabledTab?: boolean;
39
+ itemMB?: string;
40
+ maxShowRowIndex?: number;
41
+ }
42
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFormProps>, {
43
+ formDesc: null;
44
+ modelValue: () => {};
45
+ formAttrs: () => {};
46
+ rules: null;
47
+ isLoading: boolean;
48
+ requestFn: null;
49
+ updateFn: null;
50
+ showBtns: boolean;
51
+ showSubmit: boolean;
52
+ submitBtnText: string;
53
+ showCancel: boolean;
54
+ cancelBtnText: string;
55
+ showReset: boolean;
56
+ resetBtnText: string;
57
+ showLabel: boolean;
58
+ labelWidth: string;
59
+ disabled: boolean;
60
+ isDialog: boolean;
61
+ size: string;
62
+ column: number;
63
+ isTable: boolean;
64
+ idKey: string;
65
+ disabledTab: boolean;
66
+ itemMB: string;
67
+ maxShowRowIndex: number;
68
+ }>>, {
69
+ fid: string | undefined;
70
+ formRef: Ref<any, any>;
71
+ submit: () => Promise<void>;
72
+ getData: () => {
73
+ [key: string]: any;
74
+ };
75
+ validate: () => Promise<unknown>;
76
+ reset: () => void;
77
+ clearValid: () => void;
78
+ clear: () => void;
79
+ changeValidImg: () => void;
80
+ refresh: () => void;
81
+ init: () => void;
82
+ totalRows: import('vue').ComputedRef<number>;
83
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
84
+ cancel: (...args: any[]) => void;
85
+ reset: (...args: any[]) => void;
86
+ request: (...args: any[]) => void;
87
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFormProps>, {
88
+ formDesc: null;
89
+ modelValue: () => {};
90
+ formAttrs: () => {};
91
+ rules: null;
92
+ isLoading: boolean;
93
+ requestFn: null;
94
+ updateFn: null;
95
+ showBtns: boolean;
96
+ showSubmit: boolean;
97
+ submitBtnText: string;
98
+ showCancel: boolean;
99
+ cancelBtnText: string;
100
+ showReset: boolean;
101
+ resetBtnText: string;
102
+ showLabel: boolean;
103
+ labelWidth: string;
104
+ disabled: boolean;
105
+ isDialog: boolean;
106
+ size: string;
107
+ column: number;
108
+ isTable: boolean;
109
+ idKey: string;
110
+ disabledTab: boolean;
111
+ itemMB: string;
112
+ maxShowRowIndex: number;
113
+ }>>> & Readonly<{
114
+ onCancel?: ((...args: any[]) => any) | undefined;
115
+ onReset?: ((...args: any[]) => any) | undefined;
116
+ onRequest?: ((...args: any[]) => any) | undefined;
117
+ }>, {
118
+ size: string;
119
+ disabled: boolean;
120
+ formDesc: IFormDesc | null;
121
+ modelValue: {
122
+ [key: string]: any;
123
+ };
124
+ formAttrs: {
125
+ [key: string]: any;
126
+ };
127
+ rules: {
128
+ [key: string]: any;
129
+ } | null;
130
+ isLoading: boolean;
131
+ requestFn: Function | null;
132
+ updateFn: Function | null;
133
+ showBtns: boolean;
134
+ showSubmit: boolean;
135
+ submitBtnText: string;
136
+ showCancel: boolean;
137
+ cancelBtnText: string;
138
+ showReset: boolean;
139
+ resetBtnText: string;
140
+ showLabel: boolean;
141
+ labelWidth: string | number;
142
+ isDialog: boolean;
143
+ column: number;
144
+ isTable: boolean;
145
+ idKey: string;
146
+ disabledTab: boolean;
147
+ itemMB: string;
148
+ maxShowRowIndex: number;
149
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
150
+ top?(_: {
151
+ formData: {
152
+ [key: string]: any;
153
+ };
154
+ }): any;
155
+ row?(_: {}): any;
156
+ default?(_: {}): any;
157
+ "form-btn"?(_: {
158
+ data: {
159
+ [key: string]: any;
160
+ };
161
+ }): any;
162
+ bottom?(_: {
163
+ formData: {
164
+ [key: string]: any;
165
+ };
166
+ }): any;
167
+ "form-footer"?(_: {
168
+ formData: {
169
+ [key: string]: any;
170
+ };
171
+ }): any;
172
+ }>;
173
+ export default _default;
174
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
175
+ type __VLS_TypePropsToRuntimeProps<T> = {
176
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
177
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
178
+ } : {
179
+ type: import('vue').PropType<T[K]>;
180
+ required: true;
181
+ };
182
+ };
183
+ type __VLS_WithDefaults<P, D> = {
184
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
185
+ default: D[K];
186
+ }> : P[K];
187
+ };
188
+ type __VLS_Prettify<T> = {
189
+ [K in keyof T]: T[K];
190
+ } & {};
191
+ type __VLS_WithTemplateSlots<T, S> = T & {
192
+ new (): {
193
+ $slots: S;
194
+ };
195
+ };
@@ -0,0 +1,85 @@
1
+ import { IFormDesc, IFormGroupConfig } from '../../../types';
2
+
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
+ modelValue?: {} | {
5
+ [key: string]: any;
6
+ } | undefined;
7
+ formDesc?: IFormDesc | undefined;
8
+ formGroup?: IFormGroupConfig | undefined;
9
+ show?: boolean | undefined;
10
+ title?: string | undefined;
11
+ tableRef?: any;
12
+ success?: Function | undefined;
13
+ isLoading?: boolean | undefined;
14
+ successTip?: string | ((data?: any) => string) | undefined;
15
+ }>, {
16
+ title: string;
17
+ modelValue: () => {};
18
+ show: boolean;
19
+ successTip: string;
20
+ }>>, {
21
+ submit: () => void;
22
+ validate: () => any;
23
+ getData: () => any;
24
+ clearValid: () => any;
25
+ clear: () => any;
26
+ init: () => any;
27
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
28
+ "update:show": (...args: any[]) => void;
29
+ "update:modelValue": (...args: any[]) => void;
30
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
31
+ modelValue?: {} | {
32
+ [key: string]: any;
33
+ } | undefined;
34
+ formDesc?: IFormDesc | undefined;
35
+ formGroup?: IFormGroupConfig | undefined;
36
+ show?: boolean | undefined;
37
+ title?: string | undefined;
38
+ tableRef?: any;
39
+ success?: Function | undefined;
40
+ isLoading?: boolean | undefined;
41
+ successTip?: string | ((data?: any) => string) | undefined;
42
+ }>, {
43
+ title: string;
44
+ modelValue: () => {};
45
+ show: boolean;
46
+ successTip: string;
47
+ }>>> & Readonly<{
48
+ "onUpdate:show"?: ((...args: any[]) => any) | undefined;
49
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
50
+ }>, {
51
+ title: string;
52
+ modelValue: {} | {
53
+ [key: string]: any;
54
+ };
55
+ show: boolean;
56
+ successTip: string | ((data?: any) => string);
57
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
58
+ header?(_: {}): any;
59
+ top?(_: {}): any;
60
+ default?(_: {}): any;
61
+ footer?(_: {}): any;
62
+ }>;
63
+ export default _default;
64
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
65
+ type __VLS_TypePropsToRuntimeProps<T> = {
66
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
67
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
68
+ } : {
69
+ type: import('vue').PropType<T[K]>;
70
+ required: true;
71
+ };
72
+ };
73
+ type __VLS_WithDefaults<P, D> = {
74
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
75
+ default: D[K];
76
+ }> : P[K];
77
+ };
78
+ type __VLS_Prettify<T> = {
79
+ [K in keyof T]: T[K];
80
+ } & {};
81
+ type __VLS_WithTemplateSlots<T, S> = T & {
82
+ new (): {
83
+ $slots: S;
84
+ };
85
+ };
@@ -0,0 +1,60 @@
1
+ import { IFormGroupConfig } from '../../../types';
2
+
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
+ modelValue: {} | {
5
+ [key: string]: any;
6
+ };
7
+ formGroup: IFormGroupConfig;
8
+ isLoading?: boolean | undefined;
9
+ disabledTab?: boolean | undefined;
10
+ }>>, {
11
+ validate: () => Promise<any[]>;
12
+ getData: () => any;
13
+ clearValid: () => Promise<any[]>;
14
+ clear: () => Promise<any[]>;
15
+ init: () => Promise<any[]>;
16
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
+ cancel: (...args: any[]) => void;
18
+ request: (...args: any[]) => void;
19
+ "update:show": (...args: any[]) => void;
20
+ "update:modelValue": (...args: any[]) => void;
21
+ "before-validate": (...args: any[]) => void;
22
+ "before-request": (...args: any[]) => void;
23
+ "request-success": (...args: any[]) => void;
24
+ "request-error": (...args: any[]) => void;
25
+ "request-end": (...args: any[]) => void;
26
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
27
+ modelValue: {} | {
28
+ [key: string]: any;
29
+ };
30
+ formGroup: IFormGroupConfig;
31
+ isLoading?: boolean | undefined;
32
+ disabledTab?: boolean | undefined;
33
+ }>>> & Readonly<{
34
+ onCancel?: ((...args: any[]) => any) | undefined;
35
+ onRequest?: ((...args: any[]) => any) | undefined;
36
+ "onUpdate:show"?: ((...args: any[]) => any) | undefined;
37
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
38
+ "onBefore-validate"?: ((...args: any[]) => any) | undefined;
39
+ "onBefore-request"?: ((...args: any[]) => any) | undefined;
40
+ "onRequest-success"?: ((...args: any[]) => any) | undefined;
41
+ "onRequest-error"?: ((...args: any[]) => any) | undefined;
42
+ "onRequest-end"?: ((...args: any[]) => any) | undefined;
43
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, Partial<Record<string, (_: {}) => any>> & Partial<Record<string, (_: {}) => any>> & Partial<Record<string, (_: {}) => any>> & {
44
+ default?(_: {}): any;
45
+ }>;
46
+ export default _default;
47
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
48
+ type __VLS_TypePropsToRuntimeProps<T> = {
49
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
50
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
51
+ } : {
52
+ type: import('vue').PropType<T[K]>;
53
+ required: true;
54
+ };
55
+ };
56
+ type __VLS_WithTemplateSlots<T, S> = T & {
57
+ new (): {
58
+ $slots: S;
59
+ };
60
+ };
@@ -0,0 +1,33 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ modelValue?: any[] | null | undefined;
3
+ desc: {
4
+ [key: string]: any;
5
+ };
6
+ formData?: {
7
+ [key: string]: any;
8
+ } | undefined;
9
+ disabled?: boolean | undefined;
10
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
+ "update:modelValue": (...args: any[]) => void;
12
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
13
+ modelValue?: any[] | null | undefined;
14
+ desc: {
15
+ [key: string]: any;
16
+ };
17
+ formData?: {
18
+ [key: string]: any;
19
+ } | undefined;
20
+ disabled?: boolean | undefined;
21
+ }>>> & Readonly<{
22
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
23
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
24
+ export default _default;
25
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
26
+ type __VLS_TypePropsToRuntimeProps<T> = {
27
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
28
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
29
+ } : {
30
+ type: import('vue').PropType<T[K]>;
31
+ required: true;
32
+ };
33
+ };
@@ -0,0 +1,44 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ modelValue?: string | number | null | undefined;
3
+ desc: {
4
+ [key: string]: any;
5
+ };
6
+ formData?: {
7
+ [key: string]: any;
8
+ } | undefined;
9
+ disabled?: boolean | undefined;
10
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
+ "update:modelValue": (...args: any[]) => void;
12
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
13
+ modelValue?: string | number | null | undefined;
14
+ desc: {
15
+ [key: string]: any;
16
+ };
17
+ formData?: {
18
+ [key: string]: any;
19
+ } | undefined;
20
+ disabled?: boolean | undefined;
21
+ }>>> & Readonly<{
22
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
23
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, Partial<Record<number, (_: {
24
+ data: any;
25
+ }) => any>> & {
26
+ default?(_: {
27
+ data: any;
28
+ }): any;
29
+ }>;
30
+ export default _default;
31
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
32
+ type __VLS_TypePropsToRuntimeProps<T> = {
33
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
34
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
35
+ } : {
36
+ type: import('vue').PropType<T[K]>;
37
+ required: true;
38
+ };
39
+ };
40
+ type __VLS_WithTemplateSlots<T, S> = T & {
41
+ new (): {
42
+ $slots: S;
43
+ };
44
+ };
@@ -0,0 +1,38 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ field?: string | undefined;
3
+ rowIndex?: number | undefined;
4
+ loading?: boolean | undefined;
5
+ desc?: {
6
+ [key: string]: any;
7
+ } | undefined;
8
+ formData?: {
9
+ [key: string]: any;
10
+ } | undefined;
11
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
+ field?: string | undefined;
13
+ rowIndex?: number | undefined;
14
+ loading?: boolean | undefined;
15
+ desc?: {
16
+ [key: string]: any;
17
+ } | undefined;
18
+ formData?: {
19
+ [key: string]: any;
20
+ } | undefined;
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
22
+ default?(_: {}): any;
23
+ }>;
24
+ export default _default;
25
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
26
+ type __VLS_TypePropsToRuntimeProps<T> = {
27
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
28
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
29
+ } : {
30
+ type: import('vue').PropType<T[K]>;
31
+ required: true;
32
+ };
33
+ };
34
+ type __VLS_WithTemplateSlots<T, S> = T & {
35
+ new (): {
36
+ $slots: S;
37
+ };
38
+ };
@@ -0,0 +1,31 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ field?: string | undefined;
3
+ rowIndex?: number | undefined;
4
+ desc: {
5
+ [key: string]: any;
6
+ };
7
+ formData?: {
8
+ [key: string]: any;
9
+ } | undefined;
10
+ disabled?: boolean | undefined;
11
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
+ field?: string | undefined;
13
+ rowIndex?: number | undefined;
14
+ desc: {
15
+ [key: string]: any;
16
+ };
17
+ formData?: {
18
+ [key: string]: any;
19
+ } | undefined;
20
+ disabled?: boolean | undefined;
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
22
+ export default _default;
23
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
24
+ type __VLS_TypePropsToRuntimeProps<T> = {
25
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
26
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
27
+ } : {
28
+ type: import('vue').PropType<T[K]>;
29
+ required: true;
30
+ };
31
+ };
@@ -0,0 +1,35 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ modelValue?: string | string[] | null | undefined;
3
+ field?: string | undefined;
4
+ desc: {
5
+ [key: string]: any;
6
+ };
7
+ formData?: {
8
+ [key: string]: any;
9
+ } | undefined;
10
+ disabled?: boolean | undefined;
11
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ "update:modelValue": (...args: any[]) => void;
13
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
14
+ modelValue?: string | string[] | null | undefined;
15
+ field?: string | undefined;
16
+ desc: {
17
+ [key: string]: any;
18
+ };
19
+ formData?: {
20
+ [key: string]: any;
21
+ } | undefined;
22
+ disabled?: boolean | undefined;
23
+ }>>> & Readonly<{
24
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,35 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ modelValue?: string | string[] | null | undefined;
3
+ field?: string | undefined;
4
+ desc: {
5
+ [key: string]: any;
6
+ };
7
+ formData?: {
8
+ [key: string]: any;
9
+ } | undefined;
10
+ disabled?: boolean | undefined;
11
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ "update:modelValue": (...args: any[]) => void;
13
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
14
+ modelValue?: string | string[] | null | undefined;
15
+ field?: string | undefined;
16
+ desc: {
17
+ [key: string]: any;
18
+ };
19
+ formData?: {
20
+ [key: string]: any;
21
+ } | undefined;
22
+ disabled?: boolean | undefined;
23
+ }>>> & Readonly<{
24
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,35 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ modelValue?: string | number | (string | number)[] | null | undefined;
3
+ field?: string | undefined;
4
+ desc: {
5
+ [key: string]: any;
6
+ };
7
+ formData?: {
8
+ [key: string]: any;
9
+ } | undefined;
10
+ disabled?: boolean | undefined;
11
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ "update:modelValue": (...args: any[]) => void;
13
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
14
+ modelValue?: string | number | (string | number)[] | null | undefined;
15
+ field?: string | undefined;
16
+ desc: {
17
+ [key: string]: any;
18
+ };
19
+ formData?: {
20
+ [key: string]: any;
21
+ } | undefined;
22
+ disabled?: boolean | undefined;
23
+ }>>> & Readonly<{
24
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,35 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ modelValue?: string | number | null | undefined;
3
+ field?: string | undefined;
4
+ desc: {
5
+ [key: string]: any;
6
+ };
7
+ formData?: {
8
+ [key: string]: any;
9
+ } | undefined;
10
+ disabled?: boolean | undefined;
11
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ "update:modelValue": (...args: any[]) => void;
13
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
14
+ modelValue?: string | number | null | undefined;
15
+ field?: string | undefined;
16
+ desc: {
17
+ [key: string]: any;
18
+ };
19
+ formData?: {
20
+ [key: string]: any;
21
+ } | undefined;
22
+ disabled?: boolean | undefined;
23
+ }>>> & Readonly<{
24
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,35 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ modelValue?: string | number | null | undefined;
3
+ field?: string | undefined;
4
+ desc: {
5
+ [key: string]: any;
6
+ };
7
+ formData?: {
8
+ [key: string]: any;
9
+ } | undefined;
10
+ disabled?: boolean | undefined;
11
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ "update:modelValue": (...args: any[]) => void;
13
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
14
+ modelValue?: string | number | null | undefined;
15
+ field?: string | undefined;
16
+ desc: {
17
+ [key: string]: any;
18
+ };
19
+ formData?: {
20
+ [key: string]: any;
21
+ } | undefined;
22
+ disabled?: boolean | undefined;
23
+ }>>> & Readonly<{
24
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };