@oiij/naive-ui 0.0.62 → 0.0.64
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.
- package/LICENSE +5 -17
- package/dist/components/data-table-plus/DataTablePlus.vue.d.ts +98 -7
- package/dist/components/preset-form/PresetForm.vue.d.ts +4 -6
- package/dist/components/search-input/SearchInput.vue.d.ts +48 -48
- package/dist/components/toggle-editor/ToggleEditor.vue.d.ts +24 -24
- package/dist/components.js +508 -525
- package/dist/composables/{index.d.ts → index.d.mts} +3 -3
- package/dist/composables/{useNaiveForm.d.ts → useNaiveForm.d.mts} +4 -5
- package/dist/composables/{useNaiveForm.js → useNaiveForm.mjs} +1 -3
- package/dist/composables/{useNaiveTheme.d.ts → useNaiveTheme.d.mts} +1 -1
- package/dist/composables/{useNaiveTheme.js → useNaiveTheme.mjs} +2 -2
- package/dist/{index.d.cts → index.d.mts} +4 -3
- package/dist/index.mjs +5 -0
- package/package.json +21 -24
- package/dist/_virtual/rolldown_runtime.cjs +0 -25
- package/dist/components.cjs +0 -42
- package/dist/components.umd.cjs +0 -42
- package/dist/composables/_helper.cjs +0 -29
- package/dist/composables/_helper.d.ts +0 -10
- package/dist/composables/useDataRequest.cjs +0 -105
- package/dist/composables/useDataRequest.d.cts +0 -61
- package/dist/composables/useNaiveForm.cjs +0 -92
- package/dist/composables/useNaiveForm.d.cts +0 -40
- package/dist/composables/useNaiveTheme.cjs +0 -89
- package/dist/composables/useNaiveTheme.d.cts +0 -171
- package/dist/index.cjs +0 -7
- package/dist/index.d.ts +0 -5
- package/dist/index.js +0 -5
- /package/dist/composables/{_helper.d.cts → _helper.d.mts} +0 -0
- /package/dist/composables/{_helper.js → _helper.mjs} +0 -0
- /package/dist/composables/{useDataRequest.d.ts → useDataRequest.d.mts} +0 -0
- /package/dist/composables/{useDataRequest.js → useDataRequest.mjs} +0 -0
package/LICENSE
CHANGED
|
@@ -1,21 +1,9 @@
|
|
|
1
|
-
MIT License
|
|
1
|
+
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright
|
|
3
|
+
Copyright © 2025 [OIIJ](https://github.com/oiij)
|
|
4
4
|
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
11
6
|
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14
8
|
|
|
15
|
-
THE SOFTWARE IS PROVIDED
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
9
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -31,7 +31,7 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
31
31
|
error: Error | undefined;
|
|
32
32
|
params: [] | P[];
|
|
33
33
|
list: R[];
|
|
34
|
-
|
|
34
|
+
paginationRef: {
|
|
35
35
|
page: number;
|
|
36
36
|
pageSize: number;
|
|
37
37
|
itemCount: number;
|
|
@@ -43,6 +43,19 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
43
43
|
filters: DataTableFilterState | undefined;
|
|
44
44
|
sorters: Record<string, DataTableSortState> | undefined;
|
|
45
45
|
dataTableRef: DataTableInst | null;
|
|
46
|
+
pagination: import('vue').Ref<{
|
|
47
|
+
page: number;
|
|
48
|
+
pageSize: number;
|
|
49
|
+
itemCount: number;
|
|
50
|
+
}, {
|
|
51
|
+
page: number;
|
|
52
|
+
pageSize: number;
|
|
53
|
+
itemCount: number;
|
|
54
|
+
} | {
|
|
55
|
+
page: number;
|
|
56
|
+
pageSize: number;
|
|
57
|
+
itemCount: number;
|
|
58
|
+
}>;
|
|
46
59
|
run: (...params: P[]) => void;
|
|
47
60
|
runAsync: (...params: P[]) => Promise<D>;
|
|
48
61
|
refresh: () => void;
|
|
@@ -64,7 +77,7 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
64
77
|
error: Error | undefined;
|
|
65
78
|
params: [] | P[];
|
|
66
79
|
list: R[];
|
|
67
|
-
|
|
80
|
+
paginationRef: {
|
|
68
81
|
page: number;
|
|
69
82
|
pageSize: number;
|
|
70
83
|
itemCount: number;
|
|
@@ -76,6 +89,19 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
76
89
|
filters: DataTableFilterState | undefined;
|
|
77
90
|
sorters: Record<string, DataTableSortState> | undefined;
|
|
78
91
|
dataTableRef: DataTableInst | null;
|
|
92
|
+
pagination: import('vue').Ref<{
|
|
93
|
+
page: number;
|
|
94
|
+
pageSize: number;
|
|
95
|
+
itemCount: number;
|
|
96
|
+
}, {
|
|
97
|
+
page: number;
|
|
98
|
+
pageSize: number;
|
|
99
|
+
itemCount: number;
|
|
100
|
+
} | {
|
|
101
|
+
page: number;
|
|
102
|
+
pageSize: number;
|
|
103
|
+
itemCount: number;
|
|
104
|
+
}>;
|
|
79
105
|
run: (...params: P[]) => void;
|
|
80
106
|
runAsync: (...params: P[]) => Promise<D>;
|
|
81
107
|
refresh: () => void;
|
|
@@ -96,7 +122,7 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
96
122
|
error: Error | undefined;
|
|
97
123
|
params: [] | P[];
|
|
98
124
|
list: R[];
|
|
99
|
-
|
|
125
|
+
paginationRef: {
|
|
100
126
|
page: number;
|
|
101
127
|
pageSize: number;
|
|
102
128
|
itemCount: number;
|
|
@@ -108,6 +134,19 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
108
134
|
filters: DataTableFilterState | undefined;
|
|
109
135
|
sorters: Record<string, DataTableSortState> | undefined;
|
|
110
136
|
dataTableRef: DataTableInst | null;
|
|
137
|
+
pagination: import('vue').Ref<{
|
|
138
|
+
page: number;
|
|
139
|
+
pageSize: number;
|
|
140
|
+
itemCount: number;
|
|
141
|
+
}, {
|
|
142
|
+
page: number;
|
|
143
|
+
pageSize: number;
|
|
144
|
+
itemCount: number;
|
|
145
|
+
} | {
|
|
146
|
+
page: number;
|
|
147
|
+
pageSize: number;
|
|
148
|
+
itemCount: number;
|
|
149
|
+
}>;
|
|
111
150
|
run: (...params: P[]) => void;
|
|
112
151
|
runAsync: (...params: P[]) => Promise<D>;
|
|
113
152
|
refresh: () => void;
|
|
@@ -128,7 +167,7 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
128
167
|
error: Error | undefined;
|
|
129
168
|
params: [] | P[];
|
|
130
169
|
list: R[];
|
|
131
|
-
|
|
170
|
+
paginationRef: {
|
|
132
171
|
page: number;
|
|
133
172
|
pageSize: number;
|
|
134
173
|
itemCount: number;
|
|
@@ -140,6 +179,19 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
140
179
|
filters: DataTableFilterState | undefined;
|
|
141
180
|
sorters: Record<string, DataTableSortState> | undefined;
|
|
142
181
|
dataTableRef: DataTableInst | null;
|
|
182
|
+
pagination: import('vue').Ref<{
|
|
183
|
+
page: number;
|
|
184
|
+
pageSize: number;
|
|
185
|
+
itemCount: number;
|
|
186
|
+
}, {
|
|
187
|
+
page: number;
|
|
188
|
+
pageSize: number;
|
|
189
|
+
itemCount: number;
|
|
190
|
+
} | {
|
|
191
|
+
page: number;
|
|
192
|
+
pageSize: number;
|
|
193
|
+
itemCount: number;
|
|
194
|
+
}>;
|
|
143
195
|
run: (...params: P[]) => void;
|
|
144
196
|
runAsync: (...params: P[]) => Promise<D>;
|
|
145
197
|
refresh: () => void;
|
|
@@ -160,7 +212,7 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
160
212
|
error: Error | undefined;
|
|
161
213
|
params: [] | P[];
|
|
162
214
|
list: R[];
|
|
163
|
-
|
|
215
|
+
paginationRef: {
|
|
164
216
|
page: number;
|
|
165
217
|
pageSize: number;
|
|
166
218
|
itemCount: number;
|
|
@@ -172,6 +224,19 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
172
224
|
filters: DataTableFilterState | undefined;
|
|
173
225
|
sorters: Record<string, DataTableSortState> | undefined;
|
|
174
226
|
dataTableRef: DataTableInst | null;
|
|
227
|
+
pagination: import('vue').Ref<{
|
|
228
|
+
page: number;
|
|
229
|
+
pageSize: number;
|
|
230
|
+
itemCount: number;
|
|
231
|
+
}, {
|
|
232
|
+
page: number;
|
|
233
|
+
pageSize: number;
|
|
234
|
+
itemCount: number;
|
|
235
|
+
} | {
|
|
236
|
+
page: number;
|
|
237
|
+
pageSize: number;
|
|
238
|
+
itemCount: number;
|
|
239
|
+
}>;
|
|
175
240
|
run: (...params: P[]) => void;
|
|
176
241
|
runAsync: (...params: P[]) => Promise<D>;
|
|
177
242
|
refresh: () => void;
|
|
@@ -192,7 +257,7 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
192
257
|
error: Error | undefined;
|
|
193
258
|
params: [] | P[];
|
|
194
259
|
list: R[];
|
|
195
|
-
|
|
260
|
+
paginationRef: {
|
|
196
261
|
page: number;
|
|
197
262
|
pageSize: number;
|
|
198
263
|
itemCount: number;
|
|
@@ -204,6 +269,19 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
204
269
|
filters: DataTableFilterState | undefined;
|
|
205
270
|
sorters: Record<string, DataTableSortState> | undefined;
|
|
206
271
|
dataTableRef: DataTableInst | null;
|
|
272
|
+
pagination: import('vue').Ref<{
|
|
273
|
+
page: number;
|
|
274
|
+
pageSize: number;
|
|
275
|
+
itemCount: number;
|
|
276
|
+
}, {
|
|
277
|
+
page: number;
|
|
278
|
+
pageSize: number;
|
|
279
|
+
itemCount: number;
|
|
280
|
+
} | {
|
|
281
|
+
page: number;
|
|
282
|
+
pageSize: number;
|
|
283
|
+
itemCount: number;
|
|
284
|
+
}>;
|
|
207
285
|
run: (...params: P[]) => void;
|
|
208
286
|
runAsync: (...params: P[]) => Promise<D>;
|
|
209
287
|
refresh: () => void;
|
|
@@ -224,7 +302,7 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
224
302
|
error: Error | undefined;
|
|
225
303
|
params: [] | P[];
|
|
226
304
|
list: R[];
|
|
227
|
-
|
|
305
|
+
paginationRef: {
|
|
228
306
|
page: number;
|
|
229
307
|
pageSize: number;
|
|
230
308
|
itemCount: number;
|
|
@@ -236,6 +314,19 @@ declare const _default: <P extends DataObject, D extends DataObject, R extends D
|
|
|
236
314
|
filters: DataTableFilterState | undefined;
|
|
237
315
|
sorters: Record<string, DataTableSortState> | undefined;
|
|
238
316
|
dataTableRef: DataTableInst | null;
|
|
317
|
+
pagination: import('vue').Ref<{
|
|
318
|
+
page: number;
|
|
319
|
+
pageSize: number;
|
|
320
|
+
itemCount: number;
|
|
321
|
+
}, {
|
|
322
|
+
page: number;
|
|
323
|
+
pageSize: number;
|
|
324
|
+
itemCount: number;
|
|
325
|
+
} | {
|
|
326
|
+
page: number;
|
|
327
|
+
pageSize: number;
|
|
328
|
+
itemCount: number;
|
|
329
|
+
}>;
|
|
239
330
|
run: (...params: P[]) => void;
|
|
240
331
|
runAsync: (...params: P[]) => Promise<D>;
|
|
241
332
|
refresh: () => void;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FormInst } from 'naive-ui';
|
|
1
2
|
import { DataObject } from '../../composables/useDataRequest';
|
|
2
3
|
import { PresetFormExpose, PresetFormProps } from './index';
|
|
3
4
|
declare const _default: <V extends DataObject>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
@@ -8,11 +9,10 @@ declare const _default: <V extends DataObject>(__VLS_props: NonNullable<Awaited<
|
|
|
8
9
|
attrs: any;
|
|
9
10
|
slots: {
|
|
10
11
|
header?(_: {
|
|
11
|
-
formRef:
|
|
12
|
+
formRef: FormInst | null;
|
|
12
13
|
formValue: V;
|
|
13
14
|
formRules: Partial<Record<keyof V, import('naive-ui').FormRules | import('naive-ui').FormItemRule | import('naive-ui').FormItemRule[]>>;
|
|
14
15
|
formProps: {
|
|
15
|
-
ref: import('vue').Ref<import('naive-ui').FormInst | undefined, import('naive-ui').FormInst | undefined>;
|
|
16
16
|
model: import('vue').Reactive<V>;
|
|
17
17
|
rules: import('vue').Reactive<Partial<Record<keyof V, import('naive-ui').FormRules | import('naive-ui').FormItemRule | import('naive-ui').FormItemRule[]>>>;
|
|
18
18
|
};
|
|
@@ -27,11 +27,10 @@ declare const _default: <V extends DataObject>(__VLS_props: NonNullable<Awaited<
|
|
|
27
27
|
onValidated: import('@vueuse/core').EventHookOn<[V]>;
|
|
28
28
|
}): any;
|
|
29
29
|
default?(_: {
|
|
30
|
-
formRef:
|
|
30
|
+
formRef: FormInst | null;
|
|
31
31
|
formValue: V;
|
|
32
32
|
formRules: Partial<Record<keyof V, import('naive-ui').FormRules | import('naive-ui').FormItemRule | import('naive-ui').FormItemRule[]>>;
|
|
33
33
|
formProps: {
|
|
34
|
-
ref: import('vue').Ref<import('naive-ui').FormInst | undefined, import('naive-ui').FormInst | undefined>;
|
|
35
34
|
model: import('vue').Reactive<V>;
|
|
36
35
|
rules: import('vue').Reactive<Partial<Record<keyof V, import('naive-ui').FormRules | import('naive-ui').FormItemRule | import('naive-ui').FormItemRule[]>>>;
|
|
37
36
|
};
|
|
@@ -46,11 +45,10 @@ declare const _default: <V extends DataObject>(__VLS_props: NonNullable<Awaited<
|
|
|
46
45
|
onValidated: import('@vueuse/core').EventHookOn<[V]>;
|
|
47
46
|
}): any;
|
|
48
47
|
footer?(_: {
|
|
49
|
-
formRef:
|
|
48
|
+
formRef: FormInst | null;
|
|
50
49
|
formValue: V;
|
|
51
50
|
formRules: Partial<Record<keyof V, import('naive-ui').FormRules | import('naive-ui').FormItemRule | import('naive-ui').FormItemRule[]>>;
|
|
52
51
|
formProps: {
|
|
53
|
-
ref: import('vue').Ref<import('naive-ui').FormInst | undefined, import('naive-ui').FormInst | undefined>;
|
|
54
52
|
model: import('vue').Reactive<V>;
|
|
55
53
|
rules: import('vue').Reactive<Partial<Record<keyof V, import('naive-ui').FormRules | import('naive-ui').FormItemRule | import('naive-ui').FormItemRule[]>>>;
|
|
56
54
|
};
|
|
@@ -48,7 +48,7 @@ declare function __VLS_template(): {
|
|
|
48
48
|
pair: BooleanConstructor;
|
|
49
49
|
separator: StringConstructor;
|
|
50
50
|
readonly: {
|
|
51
|
-
type: (
|
|
51
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
52
52
|
default: boolean;
|
|
53
53
|
};
|
|
54
54
|
passivelyActivated: BooleanConstructor;
|
|
@@ -362,14 +362,14 @@ declare function __VLS_template(): {
|
|
|
362
362
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
363
363
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
364
364
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
365
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
365
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
366
366
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
367
367
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
368
368
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
369
369
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
370
370
|
activated: import('vue').Ref<boolean, boolean>;
|
|
371
371
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
372
|
-
mergedSize: import('vue').ComputedRef<"
|
|
372
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
373
373
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
374
374
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
375
375
|
textDecoration: string;
|
|
@@ -554,24 +554,24 @@ declare function __VLS_template(): {
|
|
|
554
554
|
deactivate: () => void;
|
|
555
555
|
scrollTo: (options: ScrollToOptions) => void;
|
|
556
556
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
557
|
-
type: "textarea" | "text" | "password";
|
|
558
|
-
readonly: string | boolean;
|
|
559
557
|
disabled: boolean | undefined;
|
|
560
|
-
|
|
561
|
-
autofocus: boolean;
|
|
562
|
-
loading: boolean;
|
|
563
|
-
autosize: boolean | {
|
|
564
|
-
minRows?: number;
|
|
565
|
-
maxRows?: number;
|
|
566
|
-
};
|
|
558
|
+
type: "text" | "textarea" | "password";
|
|
567
559
|
bordered: boolean | undefined;
|
|
568
560
|
clearable: boolean;
|
|
569
561
|
defaultValue: string | [string, string] | null;
|
|
562
|
+
loading: boolean;
|
|
563
|
+
round: boolean;
|
|
570
564
|
resizable: boolean;
|
|
571
565
|
stateful: boolean;
|
|
572
566
|
pair: boolean;
|
|
573
567
|
rows: string | number;
|
|
568
|
+
autosize: boolean | {
|
|
569
|
+
minRows?: number;
|
|
570
|
+
maxRows?: number;
|
|
571
|
+
};
|
|
572
|
+
readonly: string | boolean;
|
|
574
573
|
passivelyActivated: boolean;
|
|
574
|
+
autofocus: boolean;
|
|
575
575
|
showCount: boolean;
|
|
576
576
|
attrSize: number;
|
|
577
577
|
internalDeactivateOnEnter: boolean;
|
|
@@ -623,7 +623,7 @@ declare function __VLS_template(): {
|
|
|
623
623
|
pair: BooleanConstructor;
|
|
624
624
|
separator: StringConstructor;
|
|
625
625
|
readonly: {
|
|
626
|
-
type: (
|
|
626
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
627
627
|
default: boolean;
|
|
628
628
|
};
|
|
629
629
|
passivelyActivated: BooleanConstructor;
|
|
@@ -937,14 +937,14 @@ declare function __VLS_template(): {
|
|
|
937
937
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
938
938
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
939
939
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
940
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
940
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
941
941
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
942
942
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
943
943
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
944
944
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
945
945
|
activated: import('vue').Ref<boolean, boolean>;
|
|
946
946
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
947
|
-
mergedSize: import('vue').ComputedRef<"
|
|
947
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
948
948
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
949
949
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
950
950
|
textDecoration: string;
|
|
@@ -1129,24 +1129,24 @@ declare function __VLS_template(): {
|
|
|
1129
1129
|
deactivate: () => void;
|
|
1130
1130
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1131
1131
|
}, {}, {}, {}, {
|
|
1132
|
-
type: "textarea" | "text" | "password";
|
|
1133
|
-
readonly: string | boolean;
|
|
1134
1132
|
disabled: boolean | undefined;
|
|
1135
|
-
|
|
1136
|
-
autofocus: boolean;
|
|
1137
|
-
loading: boolean;
|
|
1138
|
-
autosize: boolean | {
|
|
1139
|
-
minRows?: number;
|
|
1140
|
-
maxRows?: number;
|
|
1141
|
-
};
|
|
1133
|
+
type: "text" | "textarea" | "password";
|
|
1142
1134
|
bordered: boolean | undefined;
|
|
1143
1135
|
clearable: boolean;
|
|
1144
1136
|
defaultValue: string | [string, string] | null;
|
|
1137
|
+
loading: boolean;
|
|
1138
|
+
round: boolean;
|
|
1145
1139
|
resizable: boolean;
|
|
1146
1140
|
stateful: boolean;
|
|
1147
1141
|
pair: boolean;
|
|
1148
1142
|
rows: string | number;
|
|
1143
|
+
autosize: boolean | {
|
|
1144
|
+
minRows?: number;
|
|
1145
|
+
maxRows?: number;
|
|
1146
|
+
};
|
|
1147
|
+
readonly: string | boolean;
|
|
1149
1148
|
passivelyActivated: boolean;
|
|
1149
|
+
autofocus: boolean;
|
|
1150
1150
|
showCount: boolean;
|
|
1151
1151
|
attrSize: number;
|
|
1152
1152
|
internalDeactivateOnEnter: boolean;
|
|
@@ -1219,7 +1219,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1219
1219
|
pair: BooleanConstructor;
|
|
1220
1220
|
separator: StringConstructor;
|
|
1221
1221
|
readonly: {
|
|
1222
|
-
type: (
|
|
1222
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1223
1223
|
default: boolean;
|
|
1224
1224
|
};
|
|
1225
1225
|
passivelyActivated: BooleanConstructor;
|
|
@@ -1533,14 +1533,14 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1533
1533
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
1534
1534
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
1535
1535
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
1536
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
1536
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
1537
1537
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
1538
1538
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
1539
1539
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
1540
1540
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
1541
1541
|
activated: import('vue').Ref<boolean, boolean>;
|
|
1542
1542
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
1543
|
-
mergedSize: import('vue').ComputedRef<"
|
|
1543
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
1544
1544
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
1545
1545
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
1546
1546
|
textDecoration: string;
|
|
@@ -1725,24 +1725,24 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1725
1725
|
deactivate: () => void;
|
|
1726
1726
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1727
1727
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1728
|
-
type: "textarea" | "text" | "password";
|
|
1729
|
-
readonly: string | boolean;
|
|
1730
1728
|
disabled: boolean | undefined;
|
|
1731
|
-
|
|
1732
|
-
autofocus: boolean;
|
|
1733
|
-
loading: boolean;
|
|
1734
|
-
autosize: boolean | {
|
|
1735
|
-
minRows?: number;
|
|
1736
|
-
maxRows?: number;
|
|
1737
|
-
};
|
|
1729
|
+
type: "text" | "textarea" | "password";
|
|
1738
1730
|
bordered: boolean | undefined;
|
|
1739
1731
|
clearable: boolean;
|
|
1740
1732
|
defaultValue: string | [string, string] | null;
|
|
1733
|
+
loading: boolean;
|
|
1734
|
+
round: boolean;
|
|
1741
1735
|
resizable: boolean;
|
|
1742
1736
|
stateful: boolean;
|
|
1743
1737
|
pair: boolean;
|
|
1744
1738
|
rows: string | number;
|
|
1739
|
+
autosize: boolean | {
|
|
1740
|
+
minRows?: number;
|
|
1741
|
+
maxRows?: number;
|
|
1742
|
+
};
|
|
1743
|
+
readonly: string | boolean;
|
|
1745
1744
|
passivelyActivated: boolean;
|
|
1745
|
+
autofocus: boolean;
|
|
1746
1746
|
showCount: boolean;
|
|
1747
1747
|
attrSize: number;
|
|
1748
1748
|
internalDeactivateOnEnter: boolean;
|
|
@@ -1794,7 +1794,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1794
1794
|
pair: BooleanConstructor;
|
|
1795
1795
|
separator: StringConstructor;
|
|
1796
1796
|
readonly: {
|
|
1797
|
-
type: (
|
|
1797
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1798
1798
|
default: boolean;
|
|
1799
1799
|
};
|
|
1800
1800
|
passivelyActivated: BooleanConstructor;
|
|
@@ -2108,14 +2108,14 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
2108
2108
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
2109
2109
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
2110
2110
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
2111
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
2111
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
2112
2112
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
2113
2113
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
2114
2114
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
2115
2115
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
2116
2116
|
activated: import('vue').Ref<boolean, boolean>;
|
|
2117
2117
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
2118
|
-
mergedSize: import('vue').ComputedRef<"
|
|
2118
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
2119
2119
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
2120
2120
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
2121
2121
|
textDecoration: string;
|
|
@@ -2300,24 +2300,24 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
2300
2300
|
deactivate: () => void;
|
|
2301
2301
|
scrollTo: (options: ScrollToOptions) => void;
|
|
2302
2302
|
}, {}, {}, {}, {
|
|
2303
|
-
type: "textarea" | "text" | "password";
|
|
2304
|
-
readonly: string | boolean;
|
|
2305
2303
|
disabled: boolean | undefined;
|
|
2306
|
-
|
|
2307
|
-
autofocus: boolean;
|
|
2308
|
-
loading: boolean;
|
|
2309
|
-
autosize: boolean | {
|
|
2310
|
-
minRows?: number;
|
|
2311
|
-
maxRows?: number;
|
|
2312
|
-
};
|
|
2304
|
+
type: "text" | "textarea" | "password";
|
|
2313
2305
|
bordered: boolean | undefined;
|
|
2314
2306
|
clearable: boolean;
|
|
2315
2307
|
defaultValue: string | [string, string] | null;
|
|
2308
|
+
loading: boolean;
|
|
2309
|
+
round: boolean;
|
|
2316
2310
|
resizable: boolean;
|
|
2317
2311
|
stateful: boolean;
|
|
2318
2312
|
pair: boolean;
|
|
2319
2313
|
rows: string | number;
|
|
2314
|
+
autosize: boolean | {
|
|
2315
|
+
minRows?: number;
|
|
2316
|
+
maxRows?: number;
|
|
2317
|
+
};
|
|
2318
|
+
readonly: string | boolean;
|
|
2320
2319
|
passivelyActivated: boolean;
|
|
2320
|
+
autofocus: boolean;
|
|
2321
2321
|
showCount: boolean;
|
|
2322
2322
|
attrSize: number;
|
|
2323
2323
|
internalDeactivateOnEnter: boolean;
|
|
@@ -49,7 +49,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
49
49
|
pair: BooleanConstructor;
|
|
50
50
|
separator: StringConstructor;
|
|
51
51
|
readonly: {
|
|
52
|
-
type: (
|
|
52
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
53
53
|
default: boolean;
|
|
54
54
|
};
|
|
55
55
|
passivelyActivated: BooleanConstructor;
|
|
@@ -363,14 +363,14 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
363
363
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
364
364
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
365
365
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
366
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
366
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
367
367
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
368
368
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
369
369
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
370
370
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
371
371
|
activated: import('vue').Ref<boolean, boolean>;
|
|
372
372
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
373
|
-
mergedSize: import('vue').ComputedRef<"
|
|
373
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
374
374
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
375
375
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
376
376
|
textDecoration: string;
|
|
@@ -555,24 +555,24 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
555
555
|
deactivate: () => void;
|
|
556
556
|
scrollTo: (options: ScrollToOptions) => void;
|
|
557
557
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
558
|
-
type: "textarea" | "text" | "password";
|
|
559
|
-
readonly: string | boolean;
|
|
560
558
|
disabled: boolean | undefined;
|
|
561
|
-
|
|
562
|
-
autofocus: boolean;
|
|
563
|
-
loading: boolean;
|
|
564
|
-
autosize: boolean | {
|
|
565
|
-
minRows?: number;
|
|
566
|
-
maxRows?: number;
|
|
567
|
-
};
|
|
559
|
+
type: "text" | "textarea" | "password";
|
|
568
560
|
bordered: boolean | undefined;
|
|
569
561
|
clearable: boolean;
|
|
570
562
|
defaultValue: string | [string, string] | null;
|
|
563
|
+
loading: boolean;
|
|
564
|
+
round: boolean;
|
|
571
565
|
resizable: boolean;
|
|
572
566
|
stateful: boolean;
|
|
573
567
|
pair: boolean;
|
|
574
568
|
rows: string | number;
|
|
569
|
+
autosize: boolean | {
|
|
570
|
+
minRows?: number;
|
|
571
|
+
maxRows?: number;
|
|
572
|
+
};
|
|
573
|
+
readonly: string | boolean;
|
|
575
574
|
passivelyActivated: boolean;
|
|
575
|
+
autofocus: boolean;
|
|
576
576
|
showCount: boolean;
|
|
577
577
|
attrSize: number;
|
|
578
578
|
internalDeactivateOnEnter: boolean;
|
|
@@ -624,7 +624,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
624
624
|
pair: BooleanConstructor;
|
|
625
625
|
separator: StringConstructor;
|
|
626
626
|
readonly: {
|
|
627
|
-
type: (
|
|
627
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
628
628
|
default: boolean;
|
|
629
629
|
};
|
|
630
630
|
passivelyActivated: BooleanConstructor;
|
|
@@ -938,14 +938,14 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
938
938
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
939
939
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
940
940
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
941
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
941
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
942
942
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
943
943
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
944
944
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
945
945
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
946
946
|
activated: import('vue').Ref<boolean, boolean>;
|
|
947
947
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
948
|
-
mergedSize: import('vue').ComputedRef<"
|
|
948
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
949
949
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
950
950
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
951
951
|
textDecoration: string;
|
|
@@ -1130,24 +1130,24 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
1130
1130
|
deactivate: () => void;
|
|
1131
1131
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1132
1132
|
}, {}, {}, {}, {
|
|
1133
|
-
type: "textarea" | "text" | "password";
|
|
1134
|
-
readonly: string | boolean;
|
|
1135
1133
|
disabled: boolean | undefined;
|
|
1136
|
-
|
|
1137
|
-
autofocus: boolean;
|
|
1138
|
-
loading: boolean;
|
|
1139
|
-
autosize: boolean | {
|
|
1140
|
-
minRows?: number;
|
|
1141
|
-
maxRows?: number;
|
|
1142
|
-
};
|
|
1134
|
+
type: "text" | "textarea" | "password";
|
|
1143
1135
|
bordered: boolean | undefined;
|
|
1144
1136
|
clearable: boolean;
|
|
1145
1137
|
defaultValue: string | [string, string] | null;
|
|
1138
|
+
loading: boolean;
|
|
1139
|
+
round: boolean;
|
|
1146
1140
|
resizable: boolean;
|
|
1147
1141
|
stateful: boolean;
|
|
1148
1142
|
pair: boolean;
|
|
1149
1143
|
rows: string | number;
|
|
1144
|
+
autosize: boolean | {
|
|
1145
|
+
minRows?: number;
|
|
1146
|
+
maxRows?: number;
|
|
1147
|
+
};
|
|
1148
|
+
readonly: string | boolean;
|
|
1150
1149
|
passivelyActivated: boolean;
|
|
1150
|
+
autofocus: boolean;
|
|
1151
1151
|
showCount: boolean;
|
|
1152
1152
|
attrSize: number;
|
|
1153
1153
|
internalDeactivateOnEnter: boolean;
|