orion-design 0.1.45 → 0.1.47
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +5 -5
- package/dist/Throne/hooks/use-throne-context.js.map +1 -1
- package/dist/components/Form/FileInput/FileInput.vue.d.ts +24 -42
- package/dist/components/Form/Form.vue.d.ts +22 -22
- package/dist/components/Form/LovInput/LovInput.vue.d.ts +650 -662
- package/dist/components/Form/TableSelect/TableSelect.vue.d.ts +650 -662
- package/dist/components/Form/index.d.ts +11 -11
- package/dist/components/LovTable/LovPagetable.vue.d.ts +112 -0
- package/dist/components/LovTable/index.d.ts +56 -0
- package/dist/components/Pagetable/Pagetable.d.ts +52 -0
- package/dist/components/Pagetable/index.d.ts +36 -0
- package/dist/components/Pagetable/index.js +174 -165
- package/dist/components/Pagetable/index.js.map +1 -1
- package/dist/components/RichTextEditor/RichTextEditor.d.ts +13 -0
- package/dist/components/RichTextEditor/index.d.ts +9 -0
- package/dist/components/RichTextEditor/index.js +25 -22
- package/dist/components/RichTextEditor/index.js.map +1 -1
- package/dist/components/TableSelectPagetable/TableSelectPagetable.vue.d.ts +112 -0
- package/dist/components/TableSelectPagetable/index.d.ts +56 -0
- package/dist/components/Tree/Tree.vue.d.ts +198 -198
- package/dist/components/Tree/index.d.ts +99 -99
- package/dist/components-G3_R2B-U.js.map +1 -1
- package/dist/version/version.d.ts +1 -1
- package/dist/version/version.js +1 -1
- package/dist/version/version.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
# Vue 3 + TypeScript + Vite
|
2
|
-
|
3
|
-
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
4
|
-
|
5
|
-
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
1
|
+
# Vue 3 + TypeScript + Vite
|
2
|
+
|
3
|
+
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
4
|
+
|
5
|
+
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"use-throne-context.js","sources":["../../../src/Throne/hooks/use-throne-context.ts"],"sourcesContent":["import { computed, getCurrentInstance, inject, provide, ref, unref } from 'vue'\
|
1
|
+
{"version":3,"file":"use-throne-context.js","sources":["../../../src/Throne/hooks/use-throne-context.ts"],"sourcesContent":["import { computed, getCurrentInstance, inject, provide, ref, unref } from 'vue'\n\nimport type { InjectionKey } from 'vue'\n\nexport const throneContextKey: InjectionKey<Ref<Record<string, any> | undefined>> = Symbol('throneContext')\n\nimport type { App, Ref } from 'vue'\nimport type { ThroneContextProviderContext } from '../../components/Throne/ThroneContextProvider'\n\n\nexport function useThroneContext(): Ref<Record<string, any> | undefined> | undefined {\n const context = inject(throneContextKey, undefined)\n return context\n}\n\nexport const provideThroneContext = (props: ThroneContextProviderContext) => {\n const context = computed(() => {\n return props.context || undefined\n })\n\n provide(throneContextKey, context)\n\n return context\n}\n"],"names":["throneContextKey","useThroneContext","inject","provideThroneContext","props","context","computed","provide"],"mappings":";AAIa,MAAAA,IAAuE,OAAO,eAAe;AAMnG,SAASC,IAAqE;AAE5E,SADSC,EAAOF,GAAkB,MAAS;AAEpD;AAEa,MAAAG,IAAuB,CAACC,MAAwC;AACrE,QAAAC,IAAUC,EAAS,MAChBF,EAAM,WAAW,MACzB;AAED,SAAAG,EAAQP,GAAkBK,CAAO,GAE1BA;AACT;"}
|
@@ -7,15 +7,15 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
7
7
|
readonly disabled: boolean;
|
8
8
|
readonly id: string;
|
9
9
|
readonly type: string;
|
10
|
-
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
10
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown>;
|
11
11
|
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
12
|
-
readonly readonly: boolean;
|
13
12
|
readonly autosize: import('element-plus').InputAutoSize;
|
14
13
|
readonly autocomplete: string;
|
15
14
|
readonly containerRole: string;
|
16
15
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
17
16
|
readonly inputStyle: import('vue').StyleValue;
|
18
17
|
readonly rows: number;
|
18
|
+
readonly readonly: boolean;
|
19
19
|
readonly clearable: boolean;
|
20
20
|
readonly showPassword: boolean;
|
21
21
|
readonly showWordLimit: boolean;
|
@@ -24,7 +24,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
24
24
|
readonly disabled: boolean;
|
25
25
|
readonly type: string;
|
26
26
|
readonly autofocus: boolean;
|
27
|
-
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
27
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown>;
|
28
28
|
readonly readonly: boolean;
|
29
29
|
readonly autosize: import('element-plus').InputAutoSize;
|
30
30
|
readonly autocomplete: string;
|
@@ -45,8 +45,8 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
45
45
|
readonly placeholder?: string | undefined;
|
46
46
|
readonly minlength?: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
47
47
|
readonly parser?: Function | undefined;
|
48
|
-
readonly suffixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
|
49
|
-
readonly prefixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown> | undefined;
|
48
|
+
readonly suffixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) | ((new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>))[], unknown, unknown> | undefined;
|
49
|
+
readonly prefixIcon?: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) | ((new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>))[], unknown, unknown> | undefined;
|
50
50
|
readonly containerRole?: string | undefined;
|
51
51
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
52
52
|
onChange?: ((value: string) => any) | undefined;
|
@@ -70,7 +70,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
70
70
|
__epPropKey: true;
|
71
71
|
};
|
72
72
|
readonly disabled: BooleanConstructor;
|
73
|
-
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
73
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
74
74
|
readonly maxlength: {
|
75
75
|
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
76
76
|
readonly required: false;
|
@@ -90,13 +90,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
90
90
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
91
91
|
__epPropKey: true;
|
92
92
|
};
|
93
|
-
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) =>
|
94
|
-
minRows?: number;
|
95
|
-
maxRows?: number;
|
96
|
-
}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => boolean | {
|
97
|
-
minRows?: number;
|
98
|
-
maxRows?: number;
|
99
|
-
}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
93
|
+
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').InputAutoSize & {}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => import('element-plus').InputAutoSize & {}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
100
94
|
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
|
101
95
|
readonly formatter: {
|
102
96
|
readonly type: import('vue').PropType<Function>;
|
@@ -127,13 +121,13 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
127
121
|
readonly showPassword: BooleanConstructor;
|
128
122
|
readonly showWordLimit: BooleanConstructor;
|
129
123
|
readonly suffixIcon: {
|
130
|
-
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
124
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) | ((new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>))[], unknown, unknown>>;
|
131
125
|
readonly required: false;
|
132
126
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
133
127
|
__epPropKey: true;
|
134
128
|
};
|
135
129
|
readonly prefixIcon: {
|
136
|
-
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
130
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) | ((new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>))[], unknown, unknown>>;
|
137
131
|
readonly required: false;
|
138
132
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
139
133
|
__epPropKey: true;
|
@@ -141,7 +135,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
141
135
|
readonly containerRole: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
142
136
|
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
143
137
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
144
|
-
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) =>
|
138
|
+
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('vue').StyleValue & {}) | (() => import('vue').StyleValue) | ((new (...args: any[]) => import('vue').StyleValue & {}) | (() => import('vue').StyleValue))[], unknown, unknown, () => import('element-plus/es/utils/typescript.mjs').Mutable<{}>, boolean>;
|
145
139
|
readonly autofocus: BooleanConstructor;
|
146
140
|
readonly rows: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
147
141
|
}>> & {
|
@@ -182,7 +176,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
182
176
|
__epPropKey: true;
|
183
177
|
};
|
184
178
|
readonly disabled: BooleanConstructor;
|
185
|
-
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
179
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
186
180
|
readonly maxlength: {
|
187
181
|
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
188
182
|
readonly required: false;
|
@@ -202,13 +196,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
202
196
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
203
197
|
__epPropKey: true;
|
204
198
|
};
|
205
|
-
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) =>
|
206
|
-
minRows?: number;
|
207
|
-
maxRows?: number;
|
208
|
-
}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => boolean | {
|
209
|
-
minRows?: number;
|
210
|
-
maxRows?: number;
|
211
|
-
}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
199
|
+
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').InputAutoSize & {}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => import('element-plus').InputAutoSize & {}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
212
200
|
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
|
213
201
|
readonly formatter: {
|
214
202
|
readonly type: import('vue').PropType<Function>;
|
@@ -239,13 +227,13 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
239
227
|
readonly showPassword: BooleanConstructor;
|
240
228
|
readonly showWordLimit: BooleanConstructor;
|
241
229
|
readonly suffixIcon: {
|
242
|
-
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
230
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) | ((new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>))[], unknown, unknown>>;
|
243
231
|
readonly required: false;
|
244
232
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
245
233
|
__epPropKey: true;
|
246
234
|
};
|
247
235
|
readonly prefixIcon: {
|
248
|
-
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
236
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) | ((new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>))[], unknown, unknown>>;
|
249
237
|
readonly required: false;
|
250
238
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
251
239
|
__epPropKey: true;
|
@@ -253,7 +241,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
253
241
|
readonly containerRole: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
254
242
|
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
255
243
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
256
|
-
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) =>
|
244
|
+
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('vue').StyleValue & {}) | (() => import('vue').StyleValue) | ((new (...args: any[]) => import('vue').StyleValue & {}) | (() => import('vue').StyleValue))[], unknown, unknown, () => import('element-plus/es/utils/typescript.mjs').Mutable<{}>, boolean>;
|
257
245
|
readonly autofocus: BooleanConstructor;
|
258
246
|
readonly rows: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
259
247
|
}>> & {
|
@@ -298,15 +286,15 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
298
286
|
readonly disabled: boolean;
|
299
287
|
readonly id: string;
|
300
288
|
readonly type: string;
|
301
|
-
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
289
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown>;
|
302
290
|
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
303
|
-
readonly readonly: boolean;
|
304
291
|
readonly autosize: import('element-plus').InputAutoSize;
|
305
292
|
readonly autocomplete: string;
|
306
293
|
readonly containerRole: string;
|
307
294
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
308
295
|
readonly inputStyle: import('vue').StyleValue;
|
309
296
|
readonly rows: number;
|
297
|
+
readonly readonly: boolean;
|
310
298
|
readonly clearable: boolean;
|
311
299
|
readonly showPassword: boolean;
|
312
300
|
readonly showWordLimit: boolean;
|
@@ -335,15 +323,15 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
335
323
|
readonly disabled: boolean;
|
336
324
|
readonly id: string;
|
337
325
|
readonly type: string;
|
338
|
-
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
326
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown>;
|
339
327
|
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
340
|
-
readonly readonly: boolean;
|
341
328
|
readonly autosize: import('element-plus').InputAutoSize;
|
342
329
|
readonly autocomplete: string;
|
343
330
|
readonly containerRole: string;
|
344
331
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
345
332
|
readonly inputStyle: import('vue').StyleValue;
|
346
333
|
readonly rows: number;
|
334
|
+
readonly readonly: boolean;
|
347
335
|
readonly clearable: boolean;
|
348
336
|
readonly showPassword: boolean;
|
349
337
|
readonly showWordLimit: boolean;
|
@@ -358,7 +346,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
358
346
|
__epPropKey: true;
|
359
347
|
};
|
360
348
|
readonly disabled: BooleanConstructor;
|
361
|
-
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
349
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
362
350
|
readonly maxlength: {
|
363
351
|
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
364
352
|
readonly required: false;
|
@@ -378,13 +366,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
378
366
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
379
367
|
__epPropKey: true;
|
380
368
|
};
|
381
|
-
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) =>
|
382
|
-
minRows?: number;
|
383
|
-
maxRows?: number;
|
384
|
-
}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => boolean | {
|
385
|
-
minRows?: number;
|
386
|
-
maxRows?: number;
|
387
|
-
}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
369
|
+
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').InputAutoSize & {}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => import('element-plus').InputAutoSize & {}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
388
370
|
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
|
389
371
|
readonly formatter: {
|
390
372
|
readonly type: import('vue').PropType<Function>;
|
@@ -415,13 +397,13 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
415
397
|
readonly showPassword: BooleanConstructor;
|
416
398
|
readonly showWordLimit: BooleanConstructor;
|
417
399
|
readonly suffixIcon: {
|
418
|
-
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
400
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) | ((new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>))[], unknown, unknown>>;
|
419
401
|
readonly required: false;
|
420
402
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
421
403
|
__epPropKey: true;
|
422
404
|
};
|
423
405
|
readonly prefixIcon: {
|
424
|
-
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
406
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) | ((new (...args: any[]) => (string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>) & {}) | (() => string | import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions>))[], unknown, unknown>>;
|
425
407
|
readonly required: false;
|
426
408
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
427
409
|
__epPropKey: true;
|
@@ -429,7 +411,7 @@ declare const _default: import('vue').DefineComponent<FileInputProps, {}, {}, {}
|
|
429
411
|
readonly containerRole: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
430
412
|
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
431
413
|
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
432
|
-
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) =>
|
414
|
+
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('vue').StyleValue & {}) | (() => import('vue').StyleValue) | ((new (...args: any[]) => import('vue').StyleValue & {}) | (() => import('vue').StyleValue))[], unknown, unknown, () => import('element-plus/es/utils/typescript.mjs').Mutable<{}>, boolean>;
|
433
415
|
readonly autofocus: BooleanConstructor;
|
434
416
|
readonly rows: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
435
417
|
}>> & {
|
@@ -8,8 +8,8 @@ declare function __VLS_template(): {
|
|
8
8
|
$: import('vue').ComponentInternalInstance;
|
9
9
|
$data: {};
|
10
10
|
$props: Partial<{
|
11
|
-
readonly disabled: boolean;
|
12
11
|
readonly inline: boolean;
|
12
|
+
readonly disabled: boolean;
|
13
13
|
readonly labelWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
14
14
|
readonly labelPosition: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "top" | "left" | "right", unknown>;
|
15
15
|
readonly inlineMessage: boolean;
|
@@ -122,17 +122,17 @@ declare function __VLS_template(): {
|
|
122
122
|
}>> & {
|
123
123
|
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
124
124
|
}, {
|
125
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
126
|
-
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp
|
127
|
-
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
128
|
-
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
125
|
+
validate: (callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
126
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined, callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
127
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
128
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
129
129
|
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
130
130
|
fields: import('element-plus').FormItemContext[];
|
131
131
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
132
132
|
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
133
133
|
}, string, {
|
134
|
-
readonly disabled: boolean;
|
135
134
|
readonly inline: boolean;
|
135
|
+
readonly disabled: boolean;
|
136
136
|
readonly labelWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
137
137
|
readonly labelPosition: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "top" | "left" | "right", unknown>;
|
138
138
|
readonly inlineMessage: boolean;
|
@@ -164,8 +164,8 @@ declare function __VLS_template(): {
|
|
164
164
|
$nextTick: typeof import('vue').nextTick;
|
165
165
|
$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;
|
166
166
|
} & Readonly<{
|
167
|
-
readonly disabled: boolean;
|
168
167
|
readonly inline: boolean;
|
168
|
+
readonly disabled: boolean;
|
169
169
|
readonly labelWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
170
170
|
readonly labelPosition: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "top" | "left" | "right", unknown>;
|
171
171
|
readonly inlineMessage: boolean;
|
@@ -211,10 +211,10 @@ declare function __VLS_template(): {
|
|
211
211
|
}>> & {
|
212
212
|
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
213
213
|
}, "inline" | "disabled" | "validate" | "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "inlineMessage" | "statusIcon" | "showMessage" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "fields"> & import('vue').ShallowUnwrapRef<{
|
214
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
215
|
-
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp
|
216
|
-
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
217
|
-
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
214
|
+
validate: (callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
215
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined, callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
216
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
217
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
218
218
|
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
219
219
|
fields: import('element-plus').FormItemContext[];
|
220
220
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
@@ -237,8 +237,8 @@ declare const __VLS_component: import('vue').DefineComponent<FormProps, {
|
|
237
237
|
$: import('vue').ComponentInternalInstance;
|
238
238
|
$data: {};
|
239
239
|
$props: Partial<{
|
240
|
-
readonly disabled: boolean;
|
241
240
|
readonly inline: boolean;
|
241
|
+
readonly disabled: boolean;
|
242
242
|
readonly labelWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
243
243
|
readonly labelPosition: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "top" | "left" | "right", unknown>;
|
244
244
|
readonly inlineMessage: boolean;
|
@@ -351,17 +351,17 @@ declare const __VLS_component: import('vue').DefineComponent<FormProps, {
|
|
351
351
|
}>> & {
|
352
352
|
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
353
353
|
}, {
|
354
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
355
|
-
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp
|
356
|
-
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
357
|
-
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
354
|
+
validate: (callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
355
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined, callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
356
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
357
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
358
358
|
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
359
359
|
fields: import('element-plus').FormItemContext[];
|
360
360
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
361
361
|
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
362
362
|
}, string, {
|
363
|
-
readonly disabled: boolean;
|
364
363
|
readonly inline: boolean;
|
364
|
+
readonly disabled: boolean;
|
365
365
|
readonly labelWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
366
366
|
readonly labelPosition: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "top" | "left" | "right", unknown>;
|
367
367
|
readonly inlineMessage: boolean;
|
@@ -393,8 +393,8 @@ declare const __VLS_component: import('vue').DefineComponent<FormProps, {
|
|
393
393
|
$nextTick: typeof import('vue').nextTick;
|
394
394
|
$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;
|
395
395
|
} & Readonly<{
|
396
|
-
readonly disabled: boolean;
|
397
396
|
readonly inline: boolean;
|
397
|
+
readonly disabled: boolean;
|
398
398
|
readonly labelWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
399
399
|
readonly labelPosition: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "top" | "left" | "right", unknown>;
|
400
400
|
readonly inlineMessage: boolean;
|
@@ -440,10 +440,10 @@ declare const __VLS_component: import('vue').DefineComponent<FormProps, {
|
|
440
440
|
}>> & {
|
441
441
|
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
442
442
|
}, "inline" | "disabled" | "validate" | "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "inlineMessage" | "statusIcon" | "showMessage" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "fields"> & import('vue').ShallowUnwrapRef<{
|
443
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
444
|
-
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp
|
445
|
-
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
446
|
-
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
443
|
+
validate: (callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
444
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined, callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
445
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
446
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
447
447
|
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
448
448
|
fields: import('element-plus').FormItemContext[];
|
449
449
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|