@fastkit/vui 0.19.34 → 0.19.36
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/dist/vui.css +67 -41
- package/dist/vui.d.ts +357 -711
- package/dist/vui.mjs +2 -2
- package/dist/vui.mjs.map +1 -1
- package/package.json +27 -27
- package/src/components/VAvatar/VAvatar.scss +26 -23
- package/src/components/VCard/VCard.scss +12 -9
- package/src/components/VCheckable/VCheckable.scss +4 -4
- package/src/components/VChip/VChip.scss +24 -21
- package/src/components/VOption/VOption.scss +7 -4
- package/src/components/VPagination/VPagination.scss +19 -16
- package/src/components/VPaper/VPaper.scss +5 -5
- package/src/components/VTabs/VTab.scss +20 -17
- package/src/components/VTooltip/VTooltip.scss +1 -2
- package/src/styles/core/functions.scss +10 -8
package/dist/vui.d.ts
CHANGED
|
@@ -37,9 +37,11 @@ export * from '@fastkit/vue-loading';
|
|
|
37
37
|
import * as vue from 'vue';
|
|
38
38
|
import { PropType, ExtractPropTypes, ComputedRef, VNodeChild, VNodeProps, InjectionKey, UnwrapNestedRefs, ImgHTMLAttributes, HTMLAttributes, App } from 'vue';
|
|
39
39
|
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
40
|
+
import * as _fastkit_color_scheme from '@fastkit/color-scheme';
|
|
40
41
|
import { ScopeName, ColorVariant , ThemeName, PaletteName } from '@fastkit/color-scheme';
|
|
41
|
-
import * as
|
|
42
|
+
import * as vue_router from 'vue-router';
|
|
42
43
|
import { useLink, Router, UseLinkOptions, RouteLocationRaw } from 'vue-router';
|
|
44
|
+
import * as _fastkit_vue_resize from '@fastkit/vue-resize';
|
|
43
45
|
|
|
44
46
|
declare const CONTROL_SIZES: readonly ["sm", "md", "lg"];
|
|
45
47
|
type ControlSize = (typeof CONTROL_SIZES)[number];
|
|
@@ -51,7 +53,7 @@ type VuiElevationValue = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
|
|
|
51
53
|
|
|
52
54
|
declare function createControlProps(): {
|
|
53
55
|
size: {
|
|
54
|
-
type: PropType<
|
|
56
|
+
type: PropType<ControlSize>;
|
|
55
57
|
validator: (value: any) => boolean;
|
|
56
58
|
};
|
|
57
59
|
loading: BooleanConstructor;
|
|
@@ -68,7 +70,7 @@ interface UseControlProviderOptions {
|
|
|
68
70
|
declare function useControl(props: ControlProps, opts?: UseControlProviderOptions): ControlProvider;
|
|
69
71
|
declare function createControlFieldProviderProps(): {
|
|
70
72
|
variant: {
|
|
71
|
-
type: PropType<
|
|
73
|
+
type: PropType<ControlFieldVariant>;
|
|
72
74
|
validator: (value: any) => boolean;
|
|
73
75
|
};
|
|
74
76
|
};
|
|
@@ -115,11 +117,11 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
115
117
|
loadingMessage: PropType<VNodeChildOrSlot>;
|
|
116
118
|
failedToLoadItemsMessage: PropType<VNodeChildOrSlot>;
|
|
117
119
|
size: {
|
|
118
|
-
type: PropType<
|
|
120
|
+
type: PropType<ControlSize>;
|
|
119
121
|
validator: (value: any) => boolean;
|
|
120
122
|
};
|
|
121
123
|
loading: BooleanConstructor;
|
|
122
|
-
nodeControl: PropType<FormNodeControl
|
|
124
|
+
nodeControl: PropType<FormNodeControl>;
|
|
123
125
|
label: PropType<VNodeChildOrSlot>;
|
|
124
126
|
hint: PropType<VNodeChildOrSlot>;
|
|
125
127
|
hinttip: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -144,7 +146,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
144
146
|
tag: StringConstructor;
|
|
145
147
|
modelValue: vue.Prop<_fastkit_vue_form_control.FormSelectorValue, _fastkit_vue_form_control.FormSelectorValue>;
|
|
146
148
|
tabindex: {
|
|
147
|
-
type: (
|
|
149
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
148
150
|
default: number;
|
|
149
151
|
};
|
|
150
152
|
autofocus: BooleanConstructor;
|
|
@@ -152,7 +154,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
152
154
|
readonly: BooleanConstructor;
|
|
153
155
|
viewonly: BooleanConstructor;
|
|
154
156
|
spellcheck: BooleanConstructor;
|
|
155
|
-
required:
|
|
157
|
+
required: PropType<boolean> | BooleanConstructor;
|
|
156
158
|
clearable: BooleanConstructor;
|
|
157
159
|
validateTiming: {
|
|
158
160
|
type: PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -162,7 +164,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
162
164
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
163
165
|
default: () => never[];
|
|
164
166
|
};
|
|
165
|
-
validationDeps: PropType<(nodeControl: FormNodeControl
|
|
167
|
+
validationDeps: PropType<(nodeControl: FormNodeControl) => any>;
|
|
166
168
|
error: BooleanConstructor;
|
|
167
169
|
errorMessages: PropType<string | string[]>;
|
|
168
170
|
showOwnErrors: {
|
|
@@ -192,11 +194,11 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
192
194
|
loadingMessage: PropType<VNodeChildOrSlot>;
|
|
193
195
|
failedToLoadItemsMessage: PropType<VNodeChildOrSlot>;
|
|
194
196
|
size: {
|
|
195
|
-
type: PropType<
|
|
197
|
+
type: PropType<ControlSize>;
|
|
196
198
|
validator: (value: any) => boolean;
|
|
197
199
|
};
|
|
198
200
|
loading: BooleanConstructor;
|
|
199
|
-
nodeControl: PropType<FormNodeControl
|
|
201
|
+
nodeControl: PropType<FormNodeControl>;
|
|
200
202
|
label: PropType<VNodeChildOrSlot>;
|
|
201
203
|
hint: PropType<VNodeChildOrSlot>;
|
|
202
204
|
hinttip: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -221,7 +223,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
221
223
|
tag: StringConstructor;
|
|
222
224
|
modelValue: vue.Prop<_fastkit_vue_form_control.FormSelectorValue, _fastkit_vue_form_control.FormSelectorValue>;
|
|
223
225
|
tabindex: {
|
|
224
|
-
type: (
|
|
226
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
225
227
|
default: number;
|
|
226
228
|
};
|
|
227
229
|
autofocus: BooleanConstructor;
|
|
@@ -229,7 +231,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
229
231
|
readonly: BooleanConstructor;
|
|
230
232
|
viewonly: BooleanConstructor;
|
|
231
233
|
spellcheck: BooleanConstructor;
|
|
232
|
-
required:
|
|
234
|
+
required: PropType<boolean> | BooleanConstructor;
|
|
233
235
|
clearable: BooleanConstructor;
|
|
234
236
|
validateTiming: {
|
|
235
237
|
type: PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -239,7 +241,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
239
241
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
240
242
|
default: () => never[];
|
|
241
243
|
};
|
|
242
|
-
validationDeps: PropType<(nodeControl: FormNodeControl
|
|
244
|
+
validationDeps: PropType<(nodeControl: FormNodeControl) => any>;
|
|
243
245
|
error: BooleanConstructor;
|
|
244
246
|
errorMessages: PropType<string | string[]>;
|
|
245
247
|
showOwnErrors: {
|
|
@@ -289,7 +291,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
289
291
|
[key: string]: any;
|
|
290
292
|
}>[]) | undefined;
|
|
291
293
|
} & {
|
|
292
|
-
default?: (
|
|
294
|
+
default?: () => any;
|
|
293
295
|
}>>;
|
|
294
296
|
|
|
295
297
|
declare function createElevationProps(): {
|
|
@@ -316,12 +318,12 @@ declare function createTextFieldProps(): {
|
|
|
316
318
|
endAdornment?: (() => vue.VNodeChild) | undefined;
|
|
317
319
|
}>;
|
|
318
320
|
size: {
|
|
319
|
-
type: vue.PropType<
|
|
321
|
+
type: vue.PropType<ControlSize>;
|
|
320
322
|
validator: (value: any) => boolean;
|
|
321
323
|
};
|
|
322
324
|
loading: BooleanConstructor;
|
|
323
325
|
variant: {
|
|
324
|
-
type: vue.PropType<
|
|
326
|
+
type: vue.PropType<ControlFieldVariant>;
|
|
325
327
|
validator: (value: any) => boolean;
|
|
326
328
|
};
|
|
327
329
|
startAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
@@ -330,7 +332,7 @@ declare function createTextFieldProps(): {
|
|
|
330
332
|
type: (StringConstructor | NumberConstructor)[];
|
|
331
333
|
default: number;
|
|
332
334
|
};
|
|
333
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
335
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
334
336
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
335
337
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
336
338
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -343,25 +345,25 @@ declare function createTextFieldProps(): {
|
|
|
343
345
|
default: boolean;
|
|
344
346
|
};
|
|
345
347
|
type: {
|
|
346
|
-
type: vue.PropType<
|
|
348
|
+
type: vue.PropType<_fastkit_vue_form_control.TextInputType>;
|
|
347
349
|
default: string;
|
|
348
350
|
};
|
|
349
|
-
inputmode: vue.PropType<
|
|
351
|
+
inputmode: vue.PropType<_fastkit_vue_form_control.TextInputMode>;
|
|
350
352
|
maskModel: {
|
|
351
353
|
type: vue.PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
352
354
|
default: string;
|
|
353
355
|
};
|
|
354
356
|
mask: vue.PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
355
|
-
minlength: (
|
|
356
|
-
maxlength: (
|
|
357
|
-
pattern: (
|
|
357
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
358
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
359
|
+
pattern: (RegExpConstructor | StringConstructor)[];
|
|
358
360
|
placeholder: StringConstructor;
|
|
359
361
|
autocapitalize: vue.PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
360
362
|
finalizers: vue.PropType<_fastkit_vue_form_control.TextableFinalizerSpec>;
|
|
361
|
-
counter: vue.PropType<
|
|
363
|
+
counter: vue.PropType<boolean | string | number>;
|
|
362
364
|
counterValue: vue.PropType<(value: string) => number>;
|
|
363
365
|
limit: BooleanConstructor;
|
|
364
|
-
autocomplete: vue.PropType<
|
|
366
|
+
autocomplete: vue.PropType<_fastkit_vue_form_control.FormAutoComplete | boolean>;
|
|
365
367
|
name: StringConstructor;
|
|
366
368
|
tag: StringConstructor;
|
|
367
369
|
modelValue: vue.Prop<any, any>;
|
|
@@ -370,7 +372,7 @@ declare function createTextFieldProps(): {
|
|
|
370
372
|
readonly: BooleanConstructor;
|
|
371
373
|
viewonly: BooleanConstructor;
|
|
372
374
|
spellcheck: BooleanConstructor;
|
|
373
|
-
required:
|
|
375
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
374
376
|
clearable: BooleanConstructor;
|
|
375
377
|
validateTiming: {
|
|
376
378
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -380,7 +382,7 @@ declare function createTextFieldProps(): {
|
|
|
380
382
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
381
383
|
default: () => never[];
|
|
382
384
|
};
|
|
383
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
385
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
384
386
|
error: BooleanConstructor;
|
|
385
387
|
errorMessages: vue.PropType<string | string[]>;
|
|
386
388
|
showOwnErrors: {
|
|
@@ -404,12 +406,12 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
404
406
|
endAdornment?: (() => vue.VNodeChild) | undefined;
|
|
405
407
|
}>;
|
|
406
408
|
size: {
|
|
407
|
-
type: vue.PropType<
|
|
409
|
+
type: vue.PropType<ControlSize>;
|
|
408
410
|
validator: (value: any) => boolean;
|
|
409
411
|
};
|
|
410
412
|
loading: BooleanConstructor;
|
|
411
413
|
variant: {
|
|
412
|
-
type: vue.PropType<
|
|
414
|
+
type: vue.PropType<ControlFieldVariant>;
|
|
413
415
|
validator: (value: any) => boolean;
|
|
414
416
|
};
|
|
415
417
|
startAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
@@ -418,7 +420,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
418
420
|
type: (StringConstructor | NumberConstructor)[];
|
|
419
421
|
default: number;
|
|
420
422
|
};
|
|
421
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
423
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
422
424
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
423
425
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
424
426
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -431,25 +433,25 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
431
433
|
default: boolean;
|
|
432
434
|
};
|
|
433
435
|
type: {
|
|
434
|
-
type: vue.PropType<
|
|
436
|
+
type: vue.PropType<_fastkit_vue_form_control.TextInputType>;
|
|
435
437
|
default: string;
|
|
436
438
|
};
|
|
437
|
-
inputmode: vue.PropType<
|
|
439
|
+
inputmode: vue.PropType<_fastkit_vue_form_control.TextInputMode>;
|
|
438
440
|
maskModel: {
|
|
439
441
|
type: vue.PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
440
442
|
default: string;
|
|
441
443
|
};
|
|
442
444
|
mask: vue.PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
443
|
-
minlength: (
|
|
444
|
-
maxlength: (
|
|
445
|
-
pattern: (
|
|
445
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
446
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
447
|
+
pattern: (RegExpConstructor | StringConstructor)[];
|
|
446
448
|
placeholder: StringConstructor;
|
|
447
449
|
autocapitalize: vue.PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
448
450
|
finalizers: vue.PropType<_fastkit_vue_form_control.TextableFinalizerSpec>;
|
|
449
|
-
counter: vue.PropType<
|
|
451
|
+
counter: vue.PropType<boolean | string | number>;
|
|
450
452
|
counterValue: vue.PropType<(value: string) => number>;
|
|
451
453
|
limit: BooleanConstructor;
|
|
452
|
-
autocomplete: vue.PropType<
|
|
454
|
+
autocomplete: vue.PropType<_fastkit_vue_form_control.FormAutoComplete | boolean>;
|
|
453
455
|
name: StringConstructor;
|
|
454
456
|
tag: StringConstructor;
|
|
455
457
|
modelValue: vue.Prop<any, any>;
|
|
@@ -458,7 +460,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
458
460
|
readonly: BooleanConstructor;
|
|
459
461
|
viewonly: BooleanConstructor;
|
|
460
462
|
spellcheck: BooleanConstructor;
|
|
461
|
-
required:
|
|
463
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
462
464
|
clearable: BooleanConstructor;
|
|
463
465
|
validateTiming: {
|
|
464
466
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -468,7 +470,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
468
470
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
469
471
|
default: () => never[];
|
|
470
472
|
};
|
|
471
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
473
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
472
474
|
error: BooleanConstructor;
|
|
473
475
|
errorMessages: vue.PropType<string | string[]>;
|
|
474
476
|
showOwnErrors: {
|
|
@@ -500,12 +502,12 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
500
502
|
endAdornment?: (() => vue.VNodeChild) | undefined;
|
|
501
503
|
}>;
|
|
502
504
|
size: {
|
|
503
|
-
type: vue.PropType<
|
|
505
|
+
type: vue.PropType<ControlSize>;
|
|
504
506
|
validator: (value: any) => boolean;
|
|
505
507
|
};
|
|
506
508
|
loading: BooleanConstructor;
|
|
507
509
|
variant: {
|
|
508
|
-
type: vue.PropType<
|
|
510
|
+
type: vue.PropType<ControlFieldVariant>;
|
|
509
511
|
validator: (value: any) => boolean;
|
|
510
512
|
};
|
|
511
513
|
startAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
@@ -514,7 +516,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
514
516
|
type: (StringConstructor | NumberConstructor)[];
|
|
515
517
|
default: number;
|
|
516
518
|
};
|
|
517
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
519
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
518
520
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
519
521
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
520
522
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -527,25 +529,25 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
527
529
|
default: boolean;
|
|
528
530
|
};
|
|
529
531
|
type: {
|
|
530
|
-
type: vue.PropType<
|
|
532
|
+
type: vue.PropType<_fastkit_vue_form_control.TextInputType>;
|
|
531
533
|
default: string;
|
|
532
534
|
};
|
|
533
|
-
inputmode: vue.PropType<
|
|
535
|
+
inputmode: vue.PropType<_fastkit_vue_form_control.TextInputMode>;
|
|
534
536
|
maskModel: {
|
|
535
537
|
type: vue.PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
536
538
|
default: string;
|
|
537
539
|
};
|
|
538
540
|
mask: vue.PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
539
|
-
minlength: (
|
|
540
|
-
maxlength: (
|
|
541
|
-
pattern: (
|
|
541
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
542
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
543
|
+
pattern: (RegExpConstructor | StringConstructor)[];
|
|
542
544
|
placeholder: StringConstructor;
|
|
543
545
|
autocapitalize: vue.PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
544
546
|
finalizers: vue.PropType<_fastkit_vue_form_control.TextableFinalizerSpec>;
|
|
545
|
-
counter: vue.PropType<
|
|
547
|
+
counter: vue.PropType<boolean | string | number>;
|
|
546
548
|
counterValue: vue.PropType<(value: string) => number>;
|
|
547
549
|
limit: BooleanConstructor;
|
|
548
|
-
autocomplete: vue.PropType<
|
|
550
|
+
autocomplete: vue.PropType<_fastkit_vue_form_control.FormAutoComplete | boolean>;
|
|
549
551
|
name: StringConstructor;
|
|
550
552
|
tag: StringConstructor;
|
|
551
553
|
modelValue: vue.Prop<any, any>;
|
|
@@ -554,7 +556,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
554
556
|
readonly: BooleanConstructor;
|
|
555
557
|
viewonly: BooleanConstructor;
|
|
556
558
|
spellcheck: BooleanConstructor;
|
|
557
|
-
required:
|
|
559
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
558
560
|
clearable: BooleanConstructor;
|
|
559
561
|
validateTiming: {
|
|
560
562
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -564,7 +566,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
564
566
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
565
567
|
default: () => never[];
|
|
566
568
|
};
|
|
567
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
569
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
568
570
|
error: BooleanConstructor;
|
|
569
571
|
errorMessages: vue.PropType<string | string[]>;
|
|
570
572
|
showOwnErrors: {
|
|
@@ -640,7 +642,7 @@ declare function rawIconProp(): PropType<RawIconProp>;
|
|
|
640
642
|
declare function resolveRawIconProp(payload: boolean, prop?: RawIconProp, extraProps?: Record<string, unknown> & VNodeProps): VNodeChild;
|
|
641
643
|
declare const iconProps: {
|
|
642
644
|
name: {
|
|
643
|
-
type: PropType<IconName |
|
|
645
|
+
type: PropType<IconName | EmptyIconSymbol>;
|
|
644
646
|
required: true;
|
|
645
647
|
};
|
|
646
648
|
rotate: {
|
|
@@ -649,7 +651,7 @@ declare const iconProps: {
|
|
|
649
651
|
};
|
|
650
652
|
declare const VIcon: vue.DefineComponent<{
|
|
651
653
|
name: {
|
|
652
|
-
type: PropType<IconName |
|
|
654
|
+
type: PropType<IconName | EmptyIconSymbol>;
|
|
653
655
|
required: true;
|
|
654
656
|
};
|
|
655
657
|
rotate: {
|
|
@@ -659,7 +661,7 @@ declare const VIcon: vue.DefineComponent<{
|
|
|
659
661
|
click: (ev: MouseEvent) => true;
|
|
660
662
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
661
663
|
name: {
|
|
662
|
-
type: PropType<IconName |
|
|
664
|
+
type: PropType<IconName | EmptyIconSymbol>;
|
|
663
665
|
required: true;
|
|
664
666
|
};
|
|
665
667
|
rotate: {
|
|
@@ -685,7 +687,7 @@ declare const VDialog: vue.DefineComponent<{
|
|
|
685
687
|
};
|
|
686
688
|
alwaysRender: BooleanConstructor;
|
|
687
689
|
backdrop: {
|
|
688
|
-
type: vue.PropType<
|
|
690
|
+
type: vue.PropType<boolean | string>;
|
|
689
691
|
default: string | boolean;
|
|
690
692
|
};
|
|
691
693
|
focusTrap: {
|
|
@@ -752,7 +754,7 @@ declare const VDialog: vue.DefineComponent<{
|
|
|
752
754
|
default: boolean;
|
|
753
755
|
};
|
|
754
756
|
guardEffect: {
|
|
755
|
-
type: (
|
|
757
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
756
758
|
default: boolean;
|
|
757
759
|
};
|
|
758
760
|
includeElements: vue.PropType<() => Element[]>;
|
|
@@ -761,7 +763,7 @@ declare const VDialog: vue.DefineComponent<{
|
|
|
761
763
|
cancelHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
762
764
|
} & {
|
|
763
765
|
dense: BooleanConstructor;
|
|
764
|
-
variant: vue.PropType<ColorVariant>;
|
|
766
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
765
767
|
theme: vue.PropType<ThemeName>;
|
|
766
768
|
color: vue.PropType<ScopeName>;
|
|
767
769
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -812,7 +814,7 @@ declare const VDialog: vue.DefineComponent<{
|
|
|
812
814
|
};
|
|
813
815
|
alwaysRender: BooleanConstructor;
|
|
814
816
|
backdrop: {
|
|
815
|
-
type: vue.PropType<
|
|
817
|
+
type: vue.PropType<boolean | string>;
|
|
816
818
|
default: string | boolean;
|
|
817
819
|
};
|
|
818
820
|
focusTrap: {
|
|
@@ -879,7 +881,7 @@ declare const VDialog: vue.DefineComponent<{
|
|
|
879
881
|
default: boolean;
|
|
880
882
|
};
|
|
881
883
|
guardEffect: {
|
|
882
|
-
type: (
|
|
884
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
883
885
|
default: boolean;
|
|
884
886
|
};
|
|
885
887
|
includeElements: vue.PropType<() => Element[]>;
|
|
@@ -888,7 +890,7 @@ declare const VDialog: vue.DefineComponent<{
|
|
|
888
890
|
cancelHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
889
891
|
} & {
|
|
890
892
|
dense: BooleanConstructor;
|
|
891
|
-
variant: vue.PropType<ColorVariant>;
|
|
893
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
892
894
|
theme: vue.PropType<ThemeName>;
|
|
893
895
|
color: vue.PropType<ScopeName>;
|
|
894
896
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -970,7 +972,7 @@ declare const VSnackbar: vue.DefineComponent<{
|
|
|
970
972
|
};
|
|
971
973
|
alwaysRender: BooleanConstructor;
|
|
972
974
|
backdrop: {
|
|
973
|
-
type: vue.PropType<
|
|
975
|
+
type: vue.PropType<boolean | string>;
|
|
974
976
|
default: string | boolean;
|
|
975
977
|
};
|
|
976
978
|
focusTrap: {
|
|
@@ -1037,7 +1039,7 @@ declare const VSnackbar: vue.DefineComponent<{
|
|
|
1037
1039
|
default: boolean;
|
|
1038
1040
|
};
|
|
1039
1041
|
guardEffect: {
|
|
1040
|
-
type: (
|
|
1042
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1041
1043
|
default: boolean;
|
|
1042
1044
|
};
|
|
1043
1045
|
includeElements: vue.PropType<() => Element[]>;
|
|
@@ -1045,7 +1047,7 @@ declare const VSnackbar: vue.DefineComponent<{
|
|
|
1045
1047
|
resolveHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
1046
1048
|
cancelHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
1047
1049
|
} & {
|
|
1048
|
-
variant: vue.PropType<ColorVariant>;
|
|
1050
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
1049
1051
|
theme: vue.PropType<ThemeName>;
|
|
1050
1052
|
color: vue.PropType<ScopeName>;
|
|
1051
1053
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -1100,7 +1102,7 @@ declare const VSnackbar: vue.DefineComponent<{
|
|
|
1100
1102
|
};
|
|
1101
1103
|
alwaysRender: BooleanConstructor;
|
|
1102
1104
|
backdrop: {
|
|
1103
|
-
type: vue.PropType<
|
|
1105
|
+
type: vue.PropType<boolean | string>;
|
|
1104
1106
|
default: string | boolean;
|
|
1105
1107
|
};
|
|
1106
1108
|
focusTrap: {
|
|
@@ -1167,7 +1169,7 @@ declare const VSnackbar: vue.DefineComponent<{
|
|
|
1167
1169
|
default: boolean;
|
|
1168
1170
|
};
|
|
1169
1171
|
guardEffect: {
|
|
1170
|
-
type: (
|
|
1172
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1171
1173
|
default: boolean;
|
|
1172
1174
|
};
|
|
1173
1175
|
includeElements: vue.PropType<() => Element[]>;
|
|
@@ -1175,7 +1177,7 @@ declare const VSnackbar: vue.DefineComponent<{
|
|
|
1175
1177
|
resolveHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
1176
1178
|
cancelHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
1177
1179
|
} & {
|
|
1178
|
-
variant: vue.PropType<ColorVariant>;
|
|
1180
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
1179
1181
|
theme: vue.PropType<ThemeName>;
|
|
1180
1182
|
color: vue.PropType<ScopeName>;
|
|
1181
1183
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -1274,7 +1276,7 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1274
1276
|
default: number;
|
|
1275
1277
|
};
|
|
1276
1278
|
overlap: {
|
|
1277
|
-
type: vue.PropType<
|
|
1279
|
+
type: vue.PropType<_fastkit_vue_stack.MenuOverlapSettings | boolean>;
|
|
1278
1280
|
default: boolean | _fastkit_vue_stack.MenuOverlapSettings;
|
|
1279
1281
|
};
|
|
1280
1282
|
resizeWatchDebounce: {
|
|
@@ -1296,7 +1298,7 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1296
1298
|
};
|
|
1297
1299
|
alwaysRender: BooleanConstructor;
|
|
1298
1300
|
backdrop: {
|
|
1299
|
-
type: vue.PropType<
|
|
1301
|
+
type: vue.PropType<boolean | string>;
|
|
1300
1302
|
default: string | boolean;
|
|
1301
1303
|
};
|
|
1302
1304
|
focusTrap: {
|
|
@@ -1363,7 +1365,7 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1363
1365
|
default: boolean;
|
|
1364
1366
|
};
|
|
1365
1367
|
guardEffect: {
|
|
1366
|
-
type: (
|
|
1368
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1367
1369
|
default: boolean;
|
|
1368
1370
|
};
|
|
1369
1371
|
includeElements: vue.PropType<() => Element[]>;
|
|
@@ -1371,7 +1373,7 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1371
1373
|
resolveHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
1372
1374
|
cancelHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
1373
1375
|
} & {
|
|
1374
|
-
variant: vue.PropType<ColorVariant>;
|
|
1376
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
1375
1377
|
theme: vue.PropType<ThemeName>;
|
|
1376
1378
|
color: vue.PropType<ScopeName>;
|
|
1377
1379
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -1436,7 +1438,7 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1436
1438
|
default: number;
|
|
1437
1439
|
};
|
|
1438
1440
|
overlap: {
|
|
1439
|
-
type: vue.PropType<
|
|
1441
|
+
type: vue.PropType<_fastkit_vue_stack.MenuOverlapSettings | boolean>;
|
|
1440
1442
|
default: boolean | _fastkit_vue_stack.MenuOverlapSettings;
|
|
1441
1443
|
};
|
|
1442
1444
|
resizeWatchDebounce: {
|
|
@@ -1458,7 +1460,7 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1458
1460
|
};
|
|
1459
1461
|
alwaysRender: BooleanConstructor;
|
|
1460
1462
|
backdrop: {
|
|
1461
|
-
type: vue.PropType<
|
|
1463
|
+
type: vue.PropType<boolean | string>;
|
|
1462
1464
|
default: string | boolean;
|
|
1463
1465
|
};
|
|
1464
1466
|
focusTrap: {
|
|
@@ -1525,7 +1527,7 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1525
1527
|
default: boolean;
|
|
1526
1528
|
};
|
|
1527
1529
|
guardEffect: {
|
|
1528
|
-
type: (
|
|
1530
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1529
1531
|
default: boolean;
|
|
1530
1532
|
};
|
|
1531
1533
|
includeElements: vue.PropType<() => Element[]>;
|
|
@@ -1533,7 +1535,7 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1533
1535
|
resolveHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
1534
1536
|
cancelHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
1535
1537
|
} & {
|
|
1536
|
-
variant: vue.PropType<ColorVariant>;
|
|
1538
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
1537
1539
|
theme: vue.PropType<ThemeName>;
|
|
1538
1540
|
color: vue.PropType<ScopeName>;
|
|
1539
1541
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -1615,7 +1617,7 @@ declare const sheetModalProps: {
|
|
|
1615
1617
|
};
|
|
1616
1618
|
alwaysRender: BooleanConstructor;
|
|
1617
1619
|
backdrop: {
|
|
1618
|
-
type: PropType<
|
|
1620
|
+
type: PropType<boolean | string>;
|
|
1619
1621
|
default: string | boolean;
|
|
1620
1622
|
};
|
|
1621
1623
|
focusTrap: {
|
|
@@ -1682,7 +1684,7 @@ declare const sheetModalProps: {
|
|
|
1682
1684
|
default: boolean;
|
|
1683
1685
|
};
|
|
1684
1686
|
guardEffect: {
|
|
1685
|
-
type: (
|
|
1687
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1686
1688
|
default: boolean;
|
|
1687
1689
|
};
|
|
1688
1690
|
includeElements: PropType<() => Element[]>;
|
|
@@ -1704,7 +1706,7 @@ declare const VSheetModal: vue.DefineComponent<{
|
|
|
1704
1706
|
};
|
|
1705
1707
|
alwaysRender: BooleanConstructor;
|
|
1706
1708
|
backdrop: {
|
|
1707
|
-
type: PropType<
|
|
1709
|
+
type: PropType<boolean | string>;
|
|
1708
1710
|
default: string | boolean;
|
|
1709
1711
|
};
|
|
1710
1712
|
focusTrap: {
|
|
@@ -1771,7 +1773,7 @@ declare const VSheetModal: vue.DefineComponent<{
|
|
|
1771
1773
|
default: boolean;
|
|
1772
1774
|
};
|
|
1773
1775
|
guardEffect: {
|
|
1774
|
-
type: (
|
|
1776
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1775
1777
|
default: boolean;
|
|
1776
1778
|
};
|
|
1777
1779
|
includeElements: PropType<() => Element[]>;
|
|
@@ -1807,7 +1809,7 @@ declare const VSheetModal: vue.DefineComponent<{
|
|
|
1807
1809
|
};
|
|
1808
1810
|
alwaysRender: BooleanConstructor;
|
|
1809
1811
|
backdrop: {
|
|
1810
|
-
type: PropType<
|
|
1812
|
+
type: PropType<boolean | string>;
|
|
1811
1813
|
default: string | boolean;
|
|
1812
1814
|
};
|
|
1813
1815
|
focusTrap: {
|
|
@@ -1874,7 +1876,7 @@ declare const VSheetModal: vue.DefineComponent<{
|
|
|
1874
1876
|
default: boolean;
|
|
1875
1877
|
};
|
|
1876
1878
|
guardEffect: {
|
|
1877
|
-
type: (
|
|
1879
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1878
1880
|
default: boolean;
|
|
1879
1881
|
};
|
|
1880
1882
|
includeElements: PropType<() => Element[]>;
|
|
@@ -2075,363 +2077,7 @@ interface VuiColorProvider {
|
|
|
2075
2077
|
className: (type: 'primary' | 'error') => string;
|
|
2076
2078
|
}
|
|
2077
2079
|
|
|
2078
|
-
declare const VTooltip:
|
|
2079
|
-
x: vue.PropType<_fastkit_vue_stack.VMenuXPosition>;
|
|
2080
|
-
y: vue.PropType<_fastkit_vue_stack.VMenuYPosition>;
|
|
2081
|
-
allowOverflow: {
|
|
2082
|
-
type: BooleanConstructor;
|
|
2083
|
-
default: boolean;
|
|
2084
|
-
};
|
|
2085
|
-
width: {
|
|
2086
|
-
type: vue.PropType<number | "fit" | "free">;
|
|
2087
|
-
default: undefined;
|
|
2088
|
-
};
|
|
2089
|
-
height: {
|
|
2090
|
-
type: vue.PropType<number | "fit" | "free">;
|
|
2091
|
-
default: undefined;
|
|
2092
|
-
};
|
|
2093
|
-
minWidth: {
|
|
2094
|
-
type: vue.PropType<number | "fit" | "free">;
|
|
2095
|
-
default: undefined;
|
|
2096
|
-
};
|
|
2097
|
-
minHeight: {
|
|
2098
|
-
type: vue.PropType<number | "fit" | "free">;
|
|
2099
|
-
default: undefined;
|
|
2100
|
-
};
|
|
2101
|
-
maxWidth: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize.UseWindowRef) => number | undefined)>;
|
|
2102
|
-
maxHeight: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize.UseWindowRef) => number | undefined)>;
|
|
2103
|
-
distance: {
|
|
2104
|
-
type: NumberConstructor;
|
|
2105
|
-
default: number;
|
|
2106
|
-
};
|
|
2107
|
-
edgeMargin: {
|
|
2108
|
-
type: NumberConstructor;
|
|
2109
|
-
default: number;
|
|
2110
|
-
};
|
|
2111
|
-
overlap: {
|
|
2112
|
-
type: vue.PropType<boolean | _fastkit_vue_stack.MenuOverlapSettings>;
|
|
2113
|
-
default: boolean | _fastkit_vue_stack.MenuOverlapSettings;
|
|
2114
|
-
};
|
|
2115
|
-
resizeWatchDebounce: {
|
|
2116
|
-
type: NumberConstructor;
|
|
2117
|
-
default: number;
|
|
2118
|
-
};
|
|
2119
|
-
'v-slots': vue.PropType<{
|
|
2120
|
-
default?: ((control: _fastkit_vue_stack.VStackControl) => vue.VNodeChild) | undefined;
|
|
2121
|
-
activator?: ((payload: _fastkit_vue_stack.VStackActivatorPayload) => vue.VNodeChild) | undefined;
|
|
2122
|
-
}>;
|
|
2123
|
-
modelValue: BooleanConstructor;
|
|
2124
|
-
lazyBoot: BooleanConstructor;
|
|
2125
|
-
value: null;
|
|
2126
|
-
class: null;
|
|
2127
|
-
style: vue.PropType<_fastkit_vue_utils.StyleValue>;
|
|
2128
|
-
transition: {
|
|
2129
|
-
type: vue.PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions.JavaScriptTransition>>;
|
|
2130
|
-
default: string;
|
|
2131
|
-
};
|
|
2132
|
-
alwaysRender: BooleanConstructor;
|
|
2133
|
-
backdrop: {
|
|
2134
|
-
type: vue.PropType<string | boolean>;
|
|
2135
|
-
default: string | boolean;
|
|
2136
|
-
};
|
|
2137
|
-
focusTrap: {
|
|
2138
|
-
type: BooleanConstructor;
|
|
2139
|
-
default: boolean;
|
|
2140
|
-
};
|
|
2141
|
-
focusRestorable: {
|
|
2142
|
-
type: BooleanConstructor;
|
|
2143
|
-
default: boolean;
|
|
2144
|
-
};
|
|
2145
|
-
scrollLock: {
|
|
2146
|
-
type: BooleanConstructor;
|
|
2147
|
-
default: boolean;
|
|
2148
|
-
};
|
|
2149
|
-
openOnClick: {
|
|
2150
|
-
type: BooleanConstructor;
|
|
2151
|
-
default: undefined;
|
|
2152
|
-
};
|
|
2153
|
-
openOnHover: BooleanConstructor;
|
|
2154
|
-
openOnContextmenu: BooleanConstructor;
|
|
2155
|
-
openOnFocus: {
|
|
2156
|
-
type: BooleanConstructor;
|
|
2157
|
-
default: undefined;
|
|
2158
|
-
};
|
|
2159
|
-
openDelay: {
|
|
2160
|
-
type: vue.PropType<string | number>;
|
|
2161
|
-
default: string | number;
|
|
2162
|
-
};
|
|
2163
|
-
closeDelay: {
|
|
2164
|
-
type: vue.PropType<string | number>;
|
|
2165
|
-
default: string | number;
|
|
2166
|
-
};
|
|
2167
|
-
closeOnOutsideClick: {
|
|
2168
|
-
type: BooleanConstructor;
|
|
2169
|
-
default: boolean;
|
|
2170
|
-
};
|
|
2171
|
-
closeOnEsc: {
|
|
2172
|
-
type: BooleanConstructor;
|
|
2173
|
-
default: boolean;
|
|
2174
|
-
};
|
|
2175
|
-
closeOnTab: {
|
|
2176
|
-
type: vue.PropType<_fastkit_vue_stack.StackableTabCloseSpec>;
|
|
2177
|
-
default: _fastkit_vue_stack.StackableTabCloseSpec;
|
|
2178
|
-
};
|
|
2179
|
-
closeOnNavigation: {
|
|
2180
|
-
type: BooleanConstructor;
|
|
2181
|
-
default: boolean;
|
|
2182
|
-
};
|
|
2183
|
-
persistent: {
|
|
2184
|
-
type: BooleanConstructor;
|
|
2185
|
-
default: boolean;
|
|
2186
|
-
};
|
|
2187
|
-
disabled: BooleanConstructor;
|
|
2188
|
-
zIndex: {
|
|
2189
|
-
type: vue.PropType<string | number>;
|
|
2190
|
-
default: string | number;
|
|
2191
|
-
};
|
|
2192
|
-
timeout: {
|
|
2193
|
-
type: vue.PropType<string | number>;
|
|
2194
|
-
default: string | number;
|
|
2195
|
-
};
|
|
2196
|
-
navigationGuard: {
|
|
2197
|
-
type: vue.PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
2198
|
-
default: boolean;
|
|
2199
|
-
};
|
|
2200
|
-
guardEffect: {
|
|
2201
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
2202
|
-
default: boolean;
|
|
2203
|
-
};
|
|
2204
|
-
includeElements: vue.PropType<() => Element[]>;
|
|
2205
|
-
activator: vue.PropType<_fastkit_vue_stack.VStackActivatorQuery>;
|
|
2206
|
-
resolveHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
2207
|
-
cancelHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
2208
|
-
} & {
|
|
2209
|
-
variant: vue.PropType<ColorVariant>;
|
|
2210
|
-
theme: vue.PropType<ThemeName>;
|
|
2211
|
-
color: vue.PropType<ScopeName>;
|
|
2212
|
-
textColor: vue.PropType<PaletteName>;
|
|
2213
|
-
borderColor: vue.PropType<PaletteName>;
|
|
2214
|
-
} & {
|
|
2215
|
-
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
2216
|
-
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
2217
|
-
onPayload: vue.PropType<(value: any) => any>;
|
|
2218
|
-
onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2219
|
-
onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2220
|
-
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2221
|
-
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2222
|
-
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2223
|
-
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2224
|
-
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2225
|
-
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2226
|
-
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2227
|
-
[key: string]: any;
|
|
2228
|
-
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2229
|
-
'update:modelValue': (modelValue: boolean) => boolean;
|
|
2230
|
-
change: (modelValue: boolean) => boolean;
|
|
2231
|
-
payload: (value: any) => boolean;
|
|
2232
|
-
show: (control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
2233
|
-
close: (control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
2234
|
-
beforeEnter: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
2235
|
-
afterEnter: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
2236
|
-
enterCancelled: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
2237
|
-
beforeLeave: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
2238
|
-
afterLeave: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
2239
|
-
leaveCancelled: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
2240
|
-
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
2241
|
-
x: vue.PropType<_fastkit_vue_stack.VMenuXPosition>;
|
|
2242
|
-
y: vue.PropType<_fastkit_vue_stack.VMenuYPosition>;
|
|
2243
|
-
allowOverflow: {
|
|
2244
|
-
type: BooleanConstructor;
|
|
2245
|
-
default: boolean;
|
|
2246
|
-
};
|
|
2247
|
-
width: {
|
|
2248
|
-
type: vue.PropType<number | "fit" | "free">;
|
|
2249
|
-
default: undefined;
|
|
2250
|
-
};
|
|
2251
|
-
height: {
|
|
2252
|
-
type: vue.PropType<number | "fit" | "free">;
|
|
2253
|
-
default: undefined;
|
|
2254
|
-
};
|
|
2255
|
-
minWidth: {
|
|
2256
|
-
type: vue.PropType<number | "fit" | "free">;
|
|
2257
|
-
default: undefined;
|
|
2258
|
-
};
|
|
2259
|
-
minHeight: {
|
|
2260
|
-
type: vue.PropType<number | "fit" | "free">;
|
|
2261
|
-
default: undefined;
|
|
2262
|
-
};
|
|
2263
|
-
maxWidth: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize.UseWindowRef) => number | undefined)>;
|
|
2264
|
-
maxHeight: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize.UseWindowRef) => number | undefined)>;
|
|
2265
|
-
distance: {
|
|
2266
|
-
type: NumberConstructor;
|
|
2267
|
-
default: number;
|
|
2268
|
-
};
|
|
2269
|
-
edgeMargin: {
|
|
2270
|
-
type: NumberConstructor;
|
|
2271
|
-
default: number;
|
|
2272
|
-
};
|
|
2273
|
-
overlap: {
|
|
2274
|
-
type: vue.PropType<boolean | _fastkit_vue_stack.MenuOverlapSettings>;
|
|
2275
|
-
default: boolean | _fastkit_vue_stack.MenuOverlapSettings;
|
|
2276
|
-
};
|
|
2277
|
-
resizeWatchDebounce: {
|
|
2278
|
-
type: NumberConstructor;
|
|
2279
|
-
default: number;
|
|
2280
|
-
};
|
|
2281
|
-
'v-slots': vue.PropType<{
|
|
2282
|
-
default?: ((control: _fastkit_vue_stack.VStackControl) => vue.VNodeChild) | undefined;
|
|
2283
|
-
activator?: ((payload: _fastkit_vue_stack.VStackActivatorPayload) => vue.VNodeChild) | undefined;
|
|
2284
|
-
}>;
|
|
2285
|
-
modelValue: BooleanConstructor;
|
|
2286
|
-
lazyBoot: BooleanConstructor;
|
|
2287
|
-
value: null;
|
|
2288
|
-
class: null;
|
|
2289
|
-
style: vue.PropType<_fastkit_vue_utils.StyleValue>;
|
|
2290
|
-
transition: {
|
|
2291
|
-
type: vue.PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions.JavaScriptTransition>>;
|
|
2292
|
-
default: string;
|
|
2293
|
-
};
|
|
2294
|
-
alwaysRender: BooleanConstructor;
|
|
2295
|
-
backdrop: {
|
|
2296
|
-
type: vue.PropType<string | boolean>;
|
|
2297
|
-
default: string | boolean;
|
|
2298
|
-
};
|
|
2299
|
-
focusTrap: {
|
|
2300
|
-
type: BooleanConstructor;
|
|
2301
|
-
default: boolean;
|
|
2302
|
-
};
|
|
2303
|
-
focusRestorable: {
|
|
2304
|
-
type: BooleanConstructor;
|
|
2305
|
-
default: boolean;
|
|
2306
|
-
};
|
|
2307
|
-
scrollLock: {
|
|
2308
|
-
type: BooleanConstructor;
|
|
2309
|
-
default: boolean;
|
|
2310
|
-
};
|
|
2311
|
-
openOnClick: {
|
|
2312
|
-
type: BooleanConstructor;
|
|
2313
|
-
default: undefined;
|
|
2314
|
-
};
|
|
2315
|
-
openOnHover: BooleanConstructor;
|
|
2316
|
-
openOnContextmenu: BooleanConstructor;
|
|
2317
|
-
openOnFocus: {
|
|
2318
|
-
type: BooleanConstructor;
|
|
2319
|
-
default: undefined;
|
|
2320
|
-
};
|
|
2321
|
-
openDelay: {
|
|
2322
|
-
type: vue.PropType<string | number>;
|
|
2323
|
-
default: string | number;
|
|
2324
|
-
};
|
|
2325
|
-
closeDelay: {
|
|
2326
|
-
type: vue.PropType<string | number>;
|
|
2327
|
-
default: string | number;
|
|
2328
|
-
};
|
|
2329
|
-
closeOnOutsideClick: {
|
|
2330
|
-
type: BooleanConstructor;
|
|
2331
|
-
default: boolean;
|
|
2332
|
-
};
|
|
2333
|
-
closeOnEsc: {
|
|
2334
|
-
type: BooleanConstructor;
|
|
2335
|
-
default: boolean;
|
|
2336
|
-
};
|
|
2337
|
-
closeOnTab: {
|
|
2338
|
-
type: vue.PropType<_fastkit_vue_stack.StackableTabCloseSpec>;
|
|
2339
|
-
default: _fastkit_vue_stack.StackableTabCloseSpec;
|
|
2340
|
-
};
|
|
2341
|
-
closeOnNavigation: {
|
|
2342
|
-
type: BooleanConstructor;
|
|
2343
|
-
default: boolean;
|
|
2344
|
-
};
|
|
2345
|
-
persistent: {
|
|
2346
|
-
type: BooleanConstructor;
|
|
2347
|
-
default: boolean;
|
|
2348
|
-
};
|
|
2349
|
-
disabled: BooleanConstructor;
|
|
2350
|
-
zIndex: {
|
|
2351
|
-
type: vue.PropType<string | number>;
|
|
2352
|
-
default: string | number;
|
|
2353
|
-
};
|
|
2354
|
-
timeout: {
|
|
2355
|
-
type: vue.PropType<string | number>;
|
|
2356
|
-
default: string | number;
|
|
2357
|
-
};
|
|
2358
|
-
navigationGuard: {
|
|
2359
|
-
type: vue.PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
2360
|
-
default: boolean;
|
|
2361
|
-
};
|
|
2362
|
-
guardEffect: {
|
|
2363
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
2364
|
-
default: boolean;
|
|
2365
|
-
};
|
|
2366
|
-
includeElements: vue.PropType<() => Element[]>;
|
|
2367
|
-
activator: vue.PropType<_fastkit_vue_stack.VStackActivatorQuery>;
|
|
2368
|
-
resolveHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
2369
|
-
cancelHandler: vue.PropType<_fastkit_vue_stack.StackableResolveHandler>;
|
|
2370
|
-
} & {
|
|
2371
|
-
variant: vue.PropType<ColorVariant>;
|
|
2372
|
-
theme: vue.PropType<ThemeName>;
|
|
2373
|
-
color: vue.PropType<ScopeName>;
|
|
2374
|
-
textColor: vue.PropType<PaletteName>;
|
|
2375
|
-
borderColor: vue.PropType<PaletteName>;
|
|
2376
|
-
} & {
|
|
2377
|
-
"onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
|
|
2378
|
-
onChange: vue.PropType<(modelValue: boolean) => any>;
|
|
2379
|
-
onPayload: vue.PropType<(value: any) => any>;
|
|
2380
|
-
onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2381
|
-
onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2382
|
-
onBeforeEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2383
|
-
onAfterEnter: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2384
|
-
onEnterCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2385
|
-
onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2386
|
-
onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2387
|
-
onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
|
|
2388
|
-
}>> & {
|
|
2389
|
-
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
2390
|
-
onChange?: ((modelValue: boolean) => any) | undefined;
|
|
2391
|
-
onPayload?: ((value: any) => any) | undefined;
|
|
2392
|
-
onShow?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
2393
|
-
onClose?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
2394
|
-
onBeforeEnter?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
2395
|
-
onAfterEnter?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
2396
|
-
onEnterCancelled?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
2397
|
-
onBeforeLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
2398
|
-
onAfterLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
2399
|
-
onLeaveCancelled?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
2400
|
-
}, {
|
|
2401
|
-
modelValue: boolean;
|
|
2402
|
-
disabled: boolean;
|
|
2403
|
-
lazyBoot: boolean;
|
|
2404
|
-
transition: _fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions.JavaScriptTransition>;
|
|
2405
|
-
alwaysRender: boolean;
|
|
2406
|
-
backdrop: string | boolean;
|
|
2407
|
-
focusTrap: boolean;
|
|
2408
|
-
focusRestorable: boolean;
|
|
2409
|
-
scrollLock: boolean;
|
|
2410
|
-
openOnClick: boolean;
|
|
2411
|
-
openOnHover: boolean;
|
|
2412
|
-
openOnContextmenu: boolean;
|
|
2413
|
-
openOnFocus: boolean;
|
|
2414
|
-
openDelay: string | number;
|
|
2415
|
-
closeDelay: string | number;
|
|
2416
|
-
closeOnOutsideClick: boolean;
|
|
2417
|
-
closeOnEsc: boolean;
|
|
2418
|
-
closeOnTab: _fastkit_vue_stack.StackableTabCloseSpec;
|
|
2419
|
-
closeOnNavigation: boolean;
|
|
2420
|
-
persistent: boolean;
|
|
2421
|
-
zIndex: string | number;
|
|
2422
|
-
timeout: string | number;
|
|
2423
|
-
navigationGuard: boolean | _fastkit_vue_stack.VStackNavigationGuard;
|
|
2424
|
-
guardEffect: string | boolean;
|
|
2425
|
-
allowOverflow: boolean;
|
|
2426
|
-
width: number | "fit" | "free";
|
|
2427
|
-
height: number | "fit" | "free";
|
|
2428
|
-
minWidth: number | "fit" | "free";
|
|
2429
|
-
minHeight: number | "fit" | "free";
|
|
2430
|
-
distance: number;
|
|
2431
|
-
edgeMargin: number;
|
|
2432
|
-
overlap: boolean | _fastkit_vue_stack.MenuOverlapSettings;
|
|
2433
|
-
resizeWatchDebounce: number;
|
|
2434
|
-
}, _fastkit_vue_stack.MergeStackBaseSlots<vue.SlotsType<{}>>>;
|
|
2080
|
+
declare const VTooltip: typeof VMenu;
|
|
2435
2081
|
|
|
2436
2082
|
declare const VSkeltonLoaderBone: vue.DefineComponent<{
|
|
2437
2083
|
tag: {
|
|
@@ -2524,7 +2170,7 @@ declare const VBusyImage: vue.DefineComponent<{
|
|
|
2524
2170
|
results: PropType<(string | number) | undefined>;
|
|
2525
2171
|
security: PropType<string | undefined>;
|
|
2526
2172
|
unselectable: PropType<"off" | "on" | undefined>;
|
|
2527
|
-
inputmode: PropType<"search" | "text" | "none" | "
|
|
2173
|
+
inputmode: PropType<"search" | "text" | "none" | "decimal" | "email" | "numeric" | "tel" | "url" | undefined>;
|
|
2528
2174
|
is: PropType<string | undefined>;
|
|
2529
2175
|
'aria-activedescendant': PropType<string | undefined>;
|
|
2530
2176
|
'aria-atomic': PropType<(boolean | "true" | "false") | undefined>;
|
|
@@ -2661,8 +2307,8 @@ declare const VBusyImage: vue.DefineComponent<{
|
|
|
2661
2307
|
'v-click-outside': PropType<_fastkit_vue_click_outside.ClickOutsideDirectiveBindingValue | undefined>;
|
|
2662
2308
|
'v-resize': PropType<_fastkit_vue_resize.RawResizeDirectiveBindingValue | undefined>;
|
|
2663
2309
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2664
|
-
load: (ev: Event) =>
|
|
2665
|
-
error: (ev: Event) =>
|
|
2310
|
+
load: (ev: Event) => true;
|
|
2311
|
+
error: (ev: Event) => true;
|
|
2666
2312
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
2667
2313
|
'v-slots': PropType<{
|
|
2668
2314
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -2719,7 +2365,7 @@ declare const VBusyImage: vue.DefineComponent<{
|
|
|
2719
2365
|
results: PropType<(string | number) | undefined>;
|
|
2720
2366
|
security: PropType<string | undefined>;
|
|
2721
2367
|
unselectable: PropType<"off" | "on" | undefined>;
|
|
2722
|
-
inputmode: PropType<"search" | "text" | "none" | "
|
|
2368
|
+
inputmode: PropType<"search" | "text" | "none" | "decimal" | "email" | "numeric" | "tel" | "url" | undefined>;
|
|
2723
2369
|
is: PropType<string | undefined>;
|
|
2724
2370
|
'aria-activedescendant': PropType<string | undefined>;
|
|
2725
2371
|
'aria-atomic': PropType<(boolean | "true" | "false") | undefined>;
|
|
@@ -2861,7 +2507,7 @@ declare const VBusyImage: vue.DefineComponent<{
|
|
|
2861
2507
|
}, {
|
|
2862
2508
|
cover: boolean;
|
|
2863
2509
|
}, _fastkit_vue_utils.DefinedSlots<{
|
|
2864
|
-
default?: (
|
|
2510
|
+
default?: () => any;
|
|
2865
2511
|
}>>;
|
|
2866
2512
|
|
|
2867
2513
|
type RawGridValue<T extends number | string = number | string> = T | Partial<Record<MediaMatchKey, T>> | undefined;
|
|
@@ -2879,7 +2525,7 @@ declare const VGridItem: vue.DefineComponent<{
|
|
|
2879
2525
|
size: RawGridValueProp<GridItemSizeValue>;
|
|
2880
2526
|
align: RawGridValueProp<GridItemAlignValue>;
|
|
2881
2527
|
justify: RawGridValueProp<GridItemJustifyValue>;
|
|
2882
|
-
order: RawGridValueProp<
|
|
2528
|
+
order: RawGridValueProp<number | string>;
|
|
2883
2529
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
2884
2530
|
tag: {
|
|
2885
2531
|
type: StringConstructor;
|
|
@@ -2888,7 +2534,7 @@ declare const VGridItem: vue.DefineComponent<{
|
|
|
2888
2534
|
size: RawGridValueProp<GridItemSizeValue>;
|
|
2889
2535
|
align: RawGridValueProp<GridItemAlignValue>;
|
|
2890
2536
|
justify: RawGridValueProp<GridItemJustifyValue>;
|
|
2891
|
-
order: RawGridValueProp<
|
|
2537
|
+
order: RawGridValueProp<number | string>;
|
|
2892
2538
|
}>>, {
|
|
2893
2539
|
tag: string;
|
|
2894
2540
|
}, {}>;
|
|
@@ -2936,9 +2582,9 @@ declare const VGridContainer: vue.DefineComponent<{
|
|
|
2936
2582
|
}, {}>;
|
|
2937
2583
|
|
|
2938
2584
|
declare const paperBaseSlots: _fastkit_vue_utils.DefinedSlots<{
|
|
2939
|
-
header?: (
|
|
2940
|
-
default?: (
|
|
2941
|
-
footer?: (
|
|
2585
|
+
header?: () => void;
|
|
2586
|
+
default?: () => void;
|
|
2587
|
+
footer?: () => void;
|
|
2942
2588
|
}>;
|
|
2943
2589
|
declare function createPaperBaseProps(): {
|
|
2944
2590
|
'v-slots': PropType<{
|
|
@@ -2946,7 +2592,7 @@ declare function createPaperBaseProps(): {
|
|
|
2946
2592
|
default?: (() => vue.VNodeChild) | undefined;
|
|
2947
2593
|
footer?: (() => vue.VNodeChild) | undefined;
|
|
2948
2594
|
}>;
|
|
2949
|
-
color: PropType<ScopeName>;
|
|
2595
|
+
color: PropType<ScopeName$1>;
|
|
2950
2596
|
tag: {
|
|
2951
2597
|
type: PropType<any>;
|
|
2952
2598
|
default: string;
|
|
@@ -2964,7 +2610,7 @@ declare function createPaperProps(): {
|
|
|
2964
2610
|
default?: (() => vue.VNodeChild) | undefined;
|
|
2965
2611
|
footer?: (() => vue.VNodeChild) | undefined;
|
|
2966
2612
|
}>;
|
|
2967
|
-
color: PropType<ScopeName>;
|
|
2613
|
+
color: PropType<ScopeName$1>;
|
|
2968
2614
|
tag: {
|
|
2969
2615
|
type: PropType<any>;
|
|
2970
2616
|
default: string;
|
|
@@ -2982,7 +2628,7 @@ declare const VPaper: vue.DefineComponent<{
|
|
|
2982
2628
|
default?: (() => vue.VNodeChild) | undefined;
|
|
2983
2629
|
footer?: (() => vue.VNodeChild) | undefined;
|
|
2984
2630
|
}>;
|
|
2985
|
-
color: PropType<ScopeName>;
|
|
2631
|
+
color: PropType<ScopeName$1>;
|
|
2986
2632
|
tag: {
|
|
2987
2633
|
type: PropType<any>;
|
|
2988
2634
|
default: string;
|
|
@@ -2999,7 +2645,7 @@ declare const VPaper: vue.DefineComponent<{
|
|
|
2999
2645
|
default?: (() => vue.VNodeChild) | undefined;
|
|
3000
2646
|
footer?: (() => vue.VNodeChild) | undefined;
|
|
3001
2647
|
}>;
|
|
3002
|
-
color: PropType<ScopeName>;
|
|
2648
|
+
color: PropType<ScopeName$1>;
|
|
3003
2649
|
tag: {
|
|
3004
2650
|
type: PropType<any>;
|
|
3005
2651
|
default: string;
|
|
@@ -3009,16 +2655,16 @@ declare const VPaper: vue.DefineComponent<{
|
|
|
3009
2655
|
tag: any;
|
|
3010
2656
|
square: boolean;
|
|
3011
2657
|
}, _fastkit_vue_utils.DefinedSlots<{
|
|
3012
|
-
header?: (
|
|
3013
|
-
default?: (
|
|
3014
|
-
footer?: (
|
|
2658
|
+
header?: () => void;
|
|
2659
|
+
default?: () => void;
|
|
2660
|
+
footer?: () => void;
|
|
3015
2661
|
}>>;
|
|
3016
2662
|
|
|
3017
2663
|
declare const AVATAR_SIZES: readonly ["sm", "md", "lg"];
|
|
3018
2664
|
type AvatarSize = (typeof AVATAR_SIZES)[number];
|
|
3019
2665
|
declare function createAvatarProps(): {
|
|
3020
2666
|
size: {
|
|
3021
|
-
type: PropType<
|
|
2667
|
+
type: PropType<AvatarSize | number>;
|
|
3022
2668
|
default: string;
|
|
3023
2669
|
};
|
|
3024
2670
|
tile: BooleanConstructor;
|
|
@@ -3045,7 +2691,7 @@ declare function createAvatarProps(): {
|
|
|
3045
2691
|
type: PropType<"submit" | "button" | "reset">;
|
|
3046
2692
|
title: PropType<string>;
|
|
3047
2693
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3048
|
-
to: PropType<
|
|
2694
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3049
2695
|
replace: PropType<boolean>;
|
|
3050
2696
|
custom: PropType<boolean>;
|
|
3051
2697
|
activeClass: PropType<string>;
|
|
@@ -3079,7 +2725,7 @@ declare function createAvatarProps(): {
|
|
|
3079
2725
|
tabindex: PropType<(string | number) | undefined>;
|
|
3080
2726
|
onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3081
2727
|
onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3082
|
-
variant: PropType<ColorVariant>;
|
|
2728
|
+
variant: PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3083
2729
|
theme: PropType<ThemeName>;
|
|
3084
2730
|
color: PropType<ScopeName>;
|
|
3085
2731
|
textColor: PropType<PaletteName>;
|
|
@@ -3087,7 +2733,7 @@ declare function createAvatarProps(): {
|
|
|
3087
2733
|
};
|
|
3088
2734
|
declare const VAvatar: vue.DefineComponent<{
|
|
3089
2735
|
size: {
|
|
3090
|
-
type: PropType<
|
|
2736
|
+
type: PropType<AvatarSize | number>;
|
|
3091
2737
|
default: string;
|
|
3092
2738
|
};
|
|
3093
2739
|
tile: BooleanConstructor;
|
|
@@ -3114,7 +2760,7 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
3114
2760
|
type: PropType<"submit" | "button" | "reset">;
|
|
3115
2761
|
title: PropType<string>;
|
|
3116
2762
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3117
|
-
to: PropType<
|
|
2763
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3118
2764
|
replace: PropType<boolean>;
|
|
3119
2765
|
custom: PropType<boolean>;
|
|
3120
2766
|
activeClass: PropType<string>;
|
|
@@ -3148,7 +2794,7 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
3148
2794
|
tabindex: PropType<(string | number) | undefined>;
|
|
3149
2795
|
onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3150
2796
|
onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3151
|
-
variant: PropType<ColorVariant>;
|
|
2797
|
+
variant: PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3152
2798
|
theme: PropType<ThemeName>;
|
|
3153
2799
|
color: PropType<ScopeName>;
|
|
3154
2800
|
textColor: PropType<PaletteName>;
|
|
@@ -3157,7 +2803,7 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
3157
2803
|
[key: string]: any;
|
|
3158
2804
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
3159
2805
|
size: {
|
|
3160
|
-
type: PropType<
|
|
2806
|
+
type: PropType<AvatarSize | number>;
|
|
3161
2807
|
default: string;
|
|
3162
2808
|
};
|
|
3163
2809
|
tile: BooleanConstructor;
|
|
@@ -3184,7 +2830,7 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
3184
2830
|
type: PropType<"submit" | "button" | "reset">;
|
|
3185
2831
|
title: PropType<string>;
|
|
3186
2832
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3187
|
-
to: PropType<
|
|
2833
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3188
2834
|
replace: PropType<boolean>;
|
|
3189
2835
|
custom: PropType<boolean>;
|
|
3190
2836
|
activeClass: PropType<string>;
|
|
@@ -3218,7 +2864,7 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
3218
2864
|
tabindex: PropType<(string | number) | undefined>;
|
|
3219
2865
|
onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3220
2866
|
onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3221
|
-
variant: PropType<ColorVariant>;
|
|
2867
|
+
variant: PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3222
2868
|
theme: PropType<ThemeName>;
|
|
3223
2869
|
color: PropType<ScopeName>;
|
|
3224
2870
|
textColor: PropType<PaletteName>;
|
|
@@ -3236,7 +2882,7 @@ type VChipIcon = () => VNodeChild;
|
|
|
3236
2882
|
type RawVChipIcon = IconName | VChipIcon;
|
|
3237
2883
|
declare function createChipProps(): {
|
|
3238
2884
|
size: {
|
|
3239
|
-
type: PropType<
|
|
2885
|
+
type: PropType<ChipSize>;
|
|
3240
2886
|
default: string;
|
|
3241
2887
|
};
|
|
3242
2888
|
startIcon: PropType<RawVChipIcon>;
|
|
@@ -3263,7 +2909,7 @@ declare function createChipProps(): {
|
|
|
3263
2909
|
type: PropType<"submit" | "button" | "reset">;
|
|
3264
2910
|
title: PropType<string>;
|
|
3265
2911
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3266
|
-
to: PropType<
|
|
2912
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3267
2913
|
replace: PropType<boolean>;
|
|
3268
2914
|
custom: PropType<boolean>;
|
|
3269
2915
|
activeClass: PropType<string>;
|
|
@@ -3297,7 +2943,7 @@ declare function createChipProps(): {
|
|
|
3297
2943
|
tabindex: PropType<(string | number) | undefined>;
|
|
3298
2944
|
onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3299
2945
|
onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3300
|
-
variant: PropType<ColorVariant>;
|
|
2946
|
+
variant: PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3301
2947
|
theme: PropType<ThemeName>;
|
|
3302
2948
|
color: PropType<ScopeName>;
|
|
3303
2949
|
textColor: PropType<PaletteName>;
|
|
@@ -3305,7 +2951,7 @@ declare function createChipProps(): {
|
|
|
3305
2951
|
};
|
|
3306
2952
|
declare const VChip: vue.DefineComponent<{
|
|
3307
2953
|
size: {
|
|
3308
|
-
type: PropType<
|
|
2954
|
+
type: PropType<ChipSize>;
|
|
3309
2955
|
default: string;
|
|
3310
2956
|
};
|
|
3311
2957
|
startIcon: PropType<RawVChipIcon>;
|
|
@@ -3332,7 +2978,7 @@ declare const VChip: vue.DefineComponent<{
|
|
|
3332
2978
|
type: PropType<"submit" | "button" | "reset">;
|
|
3333
2979
|
title: PropType<string>;
|
|
3334
2980
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3335
|
-
to: PropType<
|
|
2981
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3336
2982
|
replace: PropType<boolean>;
|
|
3337
2983
|
custom: PropType<boolean>;
|
|
3338
2984
|
activeClass: PropType<string>;
|
|
@@ -3366,7 +3012,7 @@ declare const VChip: vue.DefineComponent<{
|
|
|
3366
3012
|
tabindex: PropType<(string | number) | undefined>;
|
|
3367
3013
|
onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3368
3014
|
onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3369
|
-
variant: PropType<ColorVariant>;
|
|
3015
|
+
variant: PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3370
3016
|
theme: PropType<ThemeName>;
|
|
3371
3017
|
color: PropType<ScopeName>;
|
|
3372
3018
|
textColor: PropType<PaletteName>;
|
|
@@ -3375,7 +3021,7 @@ declare const VChip: vue.DefineComponent<{
|
|
|
3375
3021
|
[key: string]: any;
|
|
3376
3022
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
3377
3023
|
size: {
|
|
3378
|
-
type: PropType<
|
|
3024
|
+
type: PropType<ChipSize>;
|
|
3379
3025
|
default: string;
|
|
3380
3026
|
};
|
|
3381
3027
|
startIcon: PropType<RawVChipIcon>;
|
|
@@ -3402,7 +3048,7 @@ declare const VChip: vue.DefineComponent<{
|
|
|
3402
3048
|
type: PropType<"submit" | "button" | "reset">;
|
|
3403
3049
|
title: PropType<string>;
|
|
3404
3050
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3405
|
-
to: PropType<
|
|
3051
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3406
3052
|
replace: PropType<boolean>;
|
|
3407
3053
|
custom: PropType<boolean>;
|
|
3408
3054
|
activeClass: PropType<string>;
|
|
@@ -3436,7 +3082,7 @@ declare const VChip: vue.DefineComponent<{
|
|
|
3436
3082
|
tabindex: PropType<(string | number) | undefined>;
|
|
3437
3083
|
onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3438
3084
|
onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3439
|
-
variant: PropType<ColorVariant>;
|
|
3085
|
+
variant: PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3440
3086
|
theme: PropType<ThemeName>;
|
|
3441
3087
|
color: PropType<ScopeName>;
|
|
3442
3088
|
textColor: PropType<PaletteName>;
|
|
@@ -3469,7 +3115,7 @@ declare function createCardProps(): {
|
|
|
3469
3115
|
type: vue.PropType<"submit" | "button" | "reset">;
|
|
3470
3116
|
title: vue.PropType<string>;
|
|
3471
3117
|
guard: vue.PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3472
|
-
to: vue.PropType<
|
|
3118
|
+
to: vue.PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3473
3119
|
replace: vue.PropType<boolean>;
|
|
3474
3120
|
custom: vue.PropType<boolean>;
|
|
3475
3121
|
activeClass: vue.PropType<string>;
|
|
@@ -3513,7 +3159,7 @@ declare function createCardProps(): {
|
|
|
3513
3159
|
default?: (() => vue.VNodeChild) | undefined;
|
|
3514
3160
|
footer?: (() => vue.VNodeChild) | undefined;
|
|
3515
3161
|
}>;
|
|
3516
|
-
color: vue.PropType<ScopeName>;
|
|
3162
|
+
color: vue.PropType<_fastkit_color_scheme.ScopeName>;
|
|
3517
3163
|
elevation: vue.PropType<VuiElevationValue>;
|
|
3518
3164
|
};
|
|
3519
3165
|
declare const VCard: vue.DefineComponent<{
|
|
@@ -3538,7 +3184,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
3538
3184
|
type: vue.PropType<"submit" | "button" | "reset">;
|
|
3539
3185
|
title: vue.PropType<string>;
|
|
3540
3186
|
guard: vue.PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3541
|
-
to: vue.PropType<
|
|
3187
|
+
to: vue.PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3542
3188
|
replace: vue.PropType<boolean>;
|
|
3543
3189
|
custom: vue.PropType<boolean>;
|
|
3544
3190
|
activeClass: vue.PropType<string>;
|
|
@@ -3582,7 +3228,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
3582
3228
|
default?: (() => vue.VNodeChild) | undefined;
|
|
3583
3229
|
footer?: (() => vue.VNodeChild) | undefined;
|
|
3584
3230
|
}>;
|
|
3585
|
-
color: vue.PropType<ScopeName>;
|
|
3231
|
+
color: vue.PropType<_fastkit_color_scheme.ScopeName>;
|
|
3586
3232
|
elevation: vue.PropType<VuiElevationValue>;
|
|
3587
3233
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
3588
3234
|
disabled: BooleanConstructor;
|
|
@@ -3606,7 +3252,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
3606
3252
|
type: vue.PropType<"submit" | "button" | "reset">;
|
|
3607
3253
|
title: vue.PropType<string>;
|
|
3608
3254
|
guard: vue.PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3609
|
-
to: vue.PropType<
|
|
3255
|
+
to: vue.PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3610
3256
|
replace: vue.PropType<boolean>;
|
|
3611
3257
|
custom: vue.PropType<boolean>;
|
|
3612
3258
|
activeClass: vue.PropType<string>;
|
|
@@ -3650,7 +3296,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
3650
3296
|
default?: (() => vue.VNodeChild) | undefined;
|
|
3651
3297
|
footer?: (() => vue.VNodeChild) | undefined;
|
|
3652
3298
|
}>;
|
|
3653
|
-
color: vue.PropType<ScopeName>;
|
|
3299
|
+
color: vue.PropType<_fastkit_color_scheme.ScopeName>;
|
|
3654
3300
|
elevation: vue.PropType<VuiElevationValue>;
|
|
3655
3301
|
}>>, {
|
|
3656
3302
|
disabled: boolean;
|
|
@@ -3669,7 +3315,7 @@ declare const BUTTON_ALIGNS: readonly ["left", "center", "right"];
|
|
|
3669
3315
|
type VButtonAlign = (typeof BUTTON_ALIGNS)[number];
|
|
3670
3316
|
declare const vueButtonProps: {
|
|
3671
3317
|
size: {
|
|
3672
|
-
type: PropType<
|
|
3318
|
+
type: PropType<ControlSize>;
|
|
3673
3319
|
validator: (value: any) => boolean;
|
|
3674
3320
|
};
|
|
3675
3321
|
loading: BooleanConstructor;
|
|
@@ -3679,7 +3325,7 @@ declare const vueButtonProps: {
|
|
|
3679
3325
|
startIcon: PropType<RawVButtonIcon>;
|
|
3680
3326
|
endIcon: PropType<RawVButtonIcon>;
|
|
3681
3327
|
align: {
|
|
3682
|
-
type: PropType<
|
|
3328
|
+
type: PropType<VButtonAlign>;
|
|
3683
3329
|
default: string;
|
|
3684
3330
|
};
|
|
3685
3331
|
tag: PropType<string>;
|
|
@@ -3703,7 +3349,7 @@ declare const vueButtonProps: {
|
|
|
3703
3349
|
title: PropType<string>;
|
|
3704
3350
|
disabled: PropType<boolean>;
|
|
3705
3351
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3706
|
-
to: PropType<
|
|
3352
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3707
3353
|
replace: PropType<boolean>;
|
|
3708
3354
|
custom: PropType<boolean>;
|
|
3709
3355
|
activeClass: PropType<string>;
|
|
@@ -3737,7 +3383,7 @@ declare const vueButtonProps: {
|
|
|
3737
3383
|
tabindex: PropType<(string | number) | undefined>;
|
|
3738
3384
|
onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3739
3385
|
onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3740
|
-
variant: PropType<ColorVariant>;
|
|
3386
|
+
variant: PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3741
3387
|
theme: PropType<ThemeName>;
|
|
3742
3388
|
color: PropType<ScopeName>;
|
|
3743
3389
|
textColor: PropType<PaletteName>;
|
|
@@ -3747,7 +3393,7 @@ type VButtonProps = ExtractPropInput<typeof vueButtonProps>;
|
|
|
3747
3393
|
type VButtonResolvedProps = ExtractPropTypes<typeof vueButtonProps>;
|
|
3748
3394
|
declare const VButton: vue.DefineComponent<{
|
|
3749
3395
|
size: {
|
|
3750
|
-
type: PropType<
|
|
3396
|
+
type: PropType<ControlSize>;
|
|
3751
3397
|
validator: (value: any) => boolean;
|
|
3752
3398
|
};
|
|
3753
3399
|
loading: BooleanConstructor;
|
|
@@ -3757,7 +3403,7 @@ declare const VButton: vue.DefineComponent<{
|
|
|
3757
3403
|
startIcon: PropType<RawVButtonIcon>;
|
|
3758
3404
|
endIcon: PropType<RawVButtonIcon>;
|
|
3759
3405
|
align: {
|
|
3760
|
-
type: PropType<
|
|
3406
|
+
type: PropType<VButtonAlign>;
|
|
3761
3407
|
default: string;
|
|
3762
3408
|
};
|
|
3763
3409
|
tag: PropType<string>;
|
|
@@ -3781,7 +3427,7 @@ declare const VButton: vue.DefineComponent<{
|
|
|
3781
3427
|
title: PropType<string>;
|
|
3782
3428
|
disabled: PropType<boolean>;
|
|
3783
3429
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3784
|
-
to: PropType<
|
|
3430
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3785
3431
|
replace: PropType<boolean>;
|
|
3786
3432
|
custom: PropType<boolean>;
|
|
3787
3433
|
activeClass: PropType<string>;
|
|
@@ -3815,14 +3461,14 @@ declare const VButton: vue.DefineComponent<{
|
|
|
3815
3461
|
tabindex: PropType<(string | number) | undefined>;
|
|
3816
3462
|
onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3817
3463
|
onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3818
|
-
variant: PropType<ColorVariant>;
|
|
3464
|
+
variant: PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3819
3465
|
theme: PropType<ThemeName>;
|
|
3820
3466
|
color: PropType<ScopeName>;
|
|
3821
3467
|
textColor: PropType<PaletteName>;
|
|
3822
3468
|
borderColor: PropType<PaletteName>;
|
|
3823
3469
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ExtractPropTypes<{
|
|
3824
3470
|
size: {
|
|
3825
|
-
type: PropType<
|
|
3471
|
+
type: PropType<ControlSize>;
|
|
3826
3472
|
validator: (value: any) => boolean;
|
|
3827
3473
|
};
|
|
3828
3474
|
loading: BooleanConstructor;
|
|
@@ -3832,7 +3478,7 @@ declare const VButton: vue.DefineComponent<{
|
|
|
3832
3478
|
startIcon: PropType<RawVButtonIcon>;
|
|
3833
3479
|
endIcon: PropType<RawVButtonIcon>;
|
|
3834
3480
|
align: {
|
|
3835
|
-
type: PropType<
|
|
3481
|
+
type: PropType<VButtonAlign>;
|
|
3836
3482
|
default: string;
|
|
3837
3483
|
};
|
|
3838
3484
|
tag: PropType<string>;
|
|
@@ -3856,7 +3502,7 @@ declare const VButton: vue.DefineComponent<{
|
|
|
3856
3502
|
title: PropType<string>;
|
|
3857
3503
|
disabled: PropType<boolean>;
|
|
3858
3504
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
3859
|
-
to: PropType<
|
|
3505
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
3860
3506
|
replace: PropType<boolean>;
|
|
3861
3507
|
custom: PropType<boolean>;
|
|
3862
3508
|
activeClass: PropType<string>;
|
|
@@ -3890,7 +3536,7 @@ declare const VButton: vue.DefineComponent<{
|
|
|
3890
3536
|
tabindex: PropType<(string | number) | undefined>;
|
|
3891
3537
|
onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3892
3538
|
onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
3893
|
-
variant: PropType<ColorVariant>;
|
|
3539
|
+
variant: PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3894
3540
|
theme: PropType<ThemeName>;
|
|
3895
3541
|
color: PropType<ScopeName>;
|
|
3896
3542
|
textColor: PropType<PaletteName>;
|
|
@@ -3904,11 +3550,11 @@ declare const VButton: vue.DefineComponent<{
|
|
|
3904
3550
|
declare const VButtonGroup: vue.DefineComponent<{
|
|
3905
3551
|
disabled: BooleanConstructor;
|
|
3906
3552
|
size: {
|
|
3907
|
-
type: vue.PropType<
|
|
3553
|
+
type: vue.PropType<ControlSize>;
|
|
3908
3554
|
validator: (value: any) => boolean;
|
|
3909
3555
|
};
|
|
3910
3556
|
loading: BooleanConstructor;
|
|
3911
|
-
variant: vue.PropType<ColorVariant>;
|
|
3557
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3912
3558
|
theme: vue.PropType<ThemeName>;
|
|
3913
3559
|
color: vue.PropType<ScopeName>;
|
|
3914
3560
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -3916,11 +3562,11 @@ declare const VButtonGroup: vue.DefineComponent<{
|
|
|
3916
3562
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
3917
3563
|
disabled: BooleanConstructor;
|
|
3918
3564
|
size: {
|
|
3919
|
-
type: vue.PropType<
|
|
3565
|
+
type: vue.PropType<ControlSize>;
|
|
3920
3566
|
validator: (value: any) => boolean;
|
|
3921
3567
|
};
|
|
3922
3568
|
loading: BooleanConstructor;
|
|
3923
|
-
variant: vue.PropType<ColorVariant>;
|
|
3569
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
3924
3570
|
theme: vue.PropType<ThemeName>;
|
|
3925
3571
|
color: vue.PropType<ScopeName>;
|
|
3926
3572
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -3958,7 +3604,7 @@ declare function paginationProps(): {
|
|
|
3958
3604
|
dense: BooleanConstructor;
|
|
3959
3605
|
disabled: BooleanConstructor;
|
|
3960
3606
|
align: {
|
|
3961
|
-
type: PropType<
|
|
3607
|
+
type: PropType<VPaginationAlign>;
|
|
3962
3608
|
default: string;
|
|
3963
3609
|
};
|
|
3964
3610
|
/**
|
|
@@ -3966,7 +3612,7 @@ declare function paginationProps(): {
|
|
|
3966
3612
|
*/
|
|
3967
3613
|
routeQuery: StringConstructor;
|
|
3968
3614
|
beforeChange: PropType<VPaginationGuard>;
|
|
3969
|
-
color: PropType<ScopeName>;
|
|
3615
|
+
color: PropType<ScopeName$1>;
|
|
3970
3616
|
};
|
|
3971
3617
|
declare const VPagination: vue.DefineComponent<{
|
|
3972
3618
|
/**
|
|
@@ -3993,7 +3639,7 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
3993
3639
|
dense: BooleanConstructor;
|
|
3994
3640
|
disabled: BooleanConstructor;
|
|
3995
3641
|
align: {
|
|
3996
|
-
type: PropType<
|
|
3642
|
+
type: PropType<VPaginationAlign>;
|
|
3997
3643
|
default: string;
|
|
3998
3644
|
};
|
|
3999
3645
|
/**
|
|
@@ -4001,10 +3647,10 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
4001
3647
|
*/
|
|
4002
3648
|
routeQuery: StringConstructor;
|
|
4003
3649
|
beforeChange: PropType<VPaginationGuard>;
|
|
4004
|
-
color: PropType<ScopeName>;
|
|
3650
|
+
color: PropType<ScopeName$1>;
|
|
4005
3651
|
}, () => vue_jsx_runtime.JSX.Element | undefined, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
4006
|
-
change: (page: number) =>
|
|
4007
|
-
'update:modelValue': (page: number) =>
|
|
3652
|
+
change: (page: number) => true;
|
|
3653
|
+
'update:modelValue': (page: number) => true;
|
|
4008
3654
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
4009
3655
|
/**
|
|
4010
3656
|
* Active Pages
|
|
@@ -4030,7 +3676,7 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
4030
3676
|
dense: BooleanConstructor;
|
|
4031
3677
|
disabled: BooleanConstructor;
|
|
4032
3678
|
align: {
|
|
4033
|
-
type: PropType<
|
|
3679
|
+
type: PropType<VPaginationAlign>;
|
|
4034
3680
|
default: string;
|
|
4035
3681
|
};
|
|
4036
3682
|
/**
|
|
@@ -4038,7 +3684,7 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
4038
3684
|
*/
|
|
4039
3685
|
routeQuery: StringConstructor;
|
|
4040
3686
|
beforeChange: PropType<VPaginationGuard>;
|
|
4041
|
-
color: PropType<ScopeName>;
|
|
3687
|
+
color: PropType<ScopeName$1>;
|
|
4042
3688
|
}>> & {
|
|
4043
3689
|
"onUpdate:modelValue"?: ((page: number) => any) | undefined;
|
|
4044
3690
|
onChange?: ((page: number) => any) | undefined;
|
|
@@ -4058,7 +3704,7 @@ declare function createListTileProps(): {
|
|
|
4058
3704
|
default: string;
|
|
4059
3705
|
};
|
|
4060
3706
|
startIconEmptySpace: BooleanConstructor;
|
|
4061
|
-
color: PropType<ScopeName>;
|
|
3707
|
+
color: PropType<ScopeName$1>;
|
|
4062
3708
|
exactMatch: BooleanConstructor;
|
|
4063
3709
|
tag: PropType<string>;
|
|
4064
3710
|
class: PropType<any>;
|
|
@@ -4080,7 +3726,7 @@ declare function createListTileProps(): {
|
|
|
4080
3726
|
title: PropType<string>;
|
|
4081
3727
|
disabled: PropType<boolean>;
|
|
4082
3728
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
4083
|
-
to: PropType<
|
|
3729
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
4084
3730
|
replace: PropType<boolean>;
|
|
4085
3731
|
custom: PropType<boolean>;
|
|
4086
3732
|
activeClass: PropType<string>;
|
|
@@ -4126,7 +3772,7 @@ declare const VListTile: vue.DefineComponent<{
|
|
|
4126
3772
|
default: string;
|
|
4127
3773
|
};
|
|
4128
3774
|
startIconEmptySpace: BooleanConstructor;
|
|
4129
|
-
color: PropType<ScopeName>;
|
|
3775
|
+
color: PropType<ScopeName$1>;
|
|
4130
3776
|
exactMatch: BooleanConstructor;
|
|
4131
3777
|
tag: PropType<string>;
|
|
4132
3778
|
class: PropType<any>;
|
|
@@ -4148,7 +3794,7 @@ declare const VListTile: vue.DefineComponent<{
|
|
|
4148
3794
|
title: PropType<string>;
|
|
4149
3795
|
disabled: PropType<boolean>;
|
|
4150
3796
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
4151
|
-
to: PropType<
|
|
3797
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
4152
3798
|
replace: PropType<boolean>;
|
|
4153
3799
|
custom: PropType<boolean>;
|
|
4154
3800
|
activeClass: PropType<string>;
|
|
@@ -4192,7 +3838,7 @@ declare const VListTile: vue.DefineComponent<{
|
|
|
4192
3838
|
default: string;
|
|
4193
3839
|
};
|
|
4194
3840
|
startIconEmptySpace: BooleanConstructor;
|
|
4195
|
-
color: PropType<ScopeName>;
|
|
3841
|
+
color: PropType<ScopeName$1>;
|
|
4196
3842
|
exactMatch: BooleanConstructor;
|
|
4197
3843
|
tag: PropType<string>;
|
|
4198
3844
|
class: PropType<any>;
|
|
@@ -4214,7 +3860,7 @@ declare const VListTile: vue.DefineComponent<{
|
|
|
4214
3860
|
title: PropType<string>;
|
|
4215
3861
|
disabled: PropType<boolean>;
|
|
4216
3862
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
4217
|
-
to: PropType<
|
|
3863
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
4218
3864
|
replace: PropType<boolean>;
|
|
4219
3865
|
custom: PropType<boolean>;
|
|
4220
3866
|
activeClass: PropType<string>;
|
|
@@ -4262,7 +3908,7 @@ declare const VDrawerLayout: vue.DefineComponent<{
|
|
|
4262
3908
|
default?: (() => vue.VNodeChild) | undefined;
|
|
4263
3909
|
footer?: (() => vue.VNodeChild) | undefined;
|
|
4264
3910
|
}>;
|
|
4265
|
-
color: vue.PropType<ScopeName>;
|
|
3911
|
+
color: vue.PropType<_fastkit_color_scheme.ScopeName>;
|
|
4266
3912
|
tag: {
|
|
4267
3913
|
type: vue.PropType<any>;
|
|
4268
3914
|
default: string;
|
|
@@ -4273,7 +3919,7 @@ declare const VDrawerLayout: vue.DefineComponent<{
|
|
|
4273
3919
|
default?: (() => vue.VNodeChild) | undefined;
|
|
4274
3920
|
footer?: (() => vue.VNodeChild) | undefined;
|
|
4275
3921
|
}>;
|
|
4276
|
-
color: vue.PropType<ScopeName>;
|
|
3922
|
+
color: vue.PropType<_fastkit_color_scheme.ScopeName>;
|
|
4277
3923
|
tag: {
|
|
4278
3924
|
type: vue.PropType<any>;
|
|
4279
3925
|
default: string;
|
|
@@ -4281,9 +3927,9 @@ declare const VDrawerLayout: vue.DefineComponent<{
|
|
|
4281
3927
|
}>>, {
|
|
4282
3928
|
tag: any;
|
|
4283
3929
|
}, _fastkit_vue_utils.DefinedSlots<{
|
|
4284
|
-
header?: (
|
|
4285
|
-
default?: (
|
|
4286
|
-
footer?: (
|
|
3930
|
+
header?: () => void;
|
|
3931
|
+
default?: () => void;
|
|
3932
|
+
footer?: () => void;
|
|
4287
3933
|
}>>;
|
|
4288
3934
|
|
|
4289
3935
|
declare const VHero: vue.DefineComponent<{
|
|
@@ -4292,7 +3938,7 @@ declare const VHero: vue.DefineComponent<{
|
|
|
4292
3938
|
adornment?: (() => vue.VNodeChild) | undefined;
|
|
4293
3939
|
}>;
|
|
4294
3940
|
color: {
|
|
4295
|
-
type: PropType<ScopeName>;
|
|
3941
|
+
type: PropType<ScopeName$1>;
|
|
4296
3942
|
default: string;
|
|
4297
3943
|
};
|
|
4298
3944
|
tag: {
|
|
@@ -4309,7 +3955,7 @@ declare const VHero: vue.DefineComponent<{
|
|
|
4309
3955
|
adornment?: (() => vue.VNodeChild) | undefined;
|
|
4310
3956
|
}>;
|
|
4311
3957
|
color: {
|
|
4312
|
-
type: PropType<ScopeName>;
|
|
3958
|
+
type: PropType<ScopeName$1>;
|
|
4313
3959
|
default: string;
|
|
4314
3960
|
};
|
|
4315
3961
|
tag: {
|
|
@@ -4325,8 +3971,8 @@ declare const VHero: vue.DefineComponent<{
|
|
|
4325
3971
|
color: ScopeName;
|
|
4326
3972
|
hTag: string;
|
|
4327
3973
|
}, _fastkit_vue_utils.DefinedSlots<{
|
|
4328
|
-
default?: (
|
|
4329
|
-
adornment?: (
|
|
3974
|
+
default?: () => void;
|
|
3975
|
+
adornment?: () => void;
|
|
4330
3976
|
}>>;
|
|
4331
3977
|
|
|
4332
3978
|
declare function createNavigationItemProps(): {
|
|
@@ -4365,7 +4011,7 @@ declare function createNavigationItemProps(): {
|
|
|
4365
4011
|
title: PropType<string>;
|
|
4366
4012
|
disabled: PropType<boolean>;
|
|
4367
4013
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
4368
|
-
to: PropType<
|
|
4014
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
4369
4015
|
replace: PropType<boolean>;
|
|
4370
4016
|
custom: PropType<boolean>;
|
|
4371
4017
|
activeClass: PropType<string>;
|
|
@@ -4447,7 +4093,7 @@ declare const VNavigationItem: vue.DefineComponent<{
|
|
|
4447
4093
|
title: PropType<string>;
|
|
4448
4094
|
disabled: PropType<boolean>;
|
|
4449
4095
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
4450
|
-
to: PropType<
|
|
4096
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
4451
4097
|
replace: PropType<boolean>;
|
|
4452
4098
|
custom: PropType<boolean>;
|
|
4453
4099
|
activeClass: PropType<string>;
|
|
@@ -4520,7 +4166,7 @@ declare const VNavigationItem: vue.DefineComponent<{
|
|
|
4520
4166
|
title: PropType<string>;
|
|
4521
4167
|
disabled: PropType<boolean>;
|
|
4522
4168
|
guard: PropType<_fastkit_vue_action.ActionableGuard>;
|
|
4523
|
-
to: PropType<
|
|
4169
|
+
to: PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
4524
4170
|
replace: PropType<boolean>;
|
|
4525
4171
|
custom: PropType<boolean>;
|
|
4526
4172
|
activeClass: PropType<string>;
|
|
@@ -4569,7 +4215,7 @@ declare function createNavigationProps(): {
|
|
|
4569
4215
|
type: PropType<NavigationItemInput[]>;
|
|
4570
4216
|
required: true;
|
|
4571
4217
|
};
|
|
4572
|
-
color: PropType<ScopeName>;
|
|
4218
|
+
color: PropType<ScopeName$1>;
|
|
4573
4219
|
startIconEmptySpace: {
|
|
4574
4220
|
type: BooleanConstructor;
|
|
4575
4221
|
default: boolean;
|
|
@@ -4582,7 +4228,7 @@ declare const VNavigation: vue.DefineComponent<{
|
|
|
4582
4228
|
type: PropType<NavigationItemInput[]>;
|
|
4583
4229
|
required: true;
|
|
4584
4230
|
};
|
|
4585
|
-
color: PropType<ScopeName>;
|
|
4231
|
+
color: PropType<ScopeName$1>;
|
|
4586
4232
|
startIconEmptySpace: {
|
|
4587
4233
|
type: BooleanConstructor;
|
|
4588
4234
|
default: boolean;
|
|
@@ -4593,7 +4239,7 @@ declare const VNavigation: vue.DefineComponent<{
|
|
|
4593
4239
|
type: PropType<NavigationItemInput[]>;
|
|
4594
4240
|
required: true;
|
|
4595
4241
|
};
|
|
4596
|
-
color: PropType<ScopeName>;
|
|
4242
|
+
color: PropType<ScopeName$1>;
|
|
4597
4243
|
startIconEmptySpace: {
|
|
4598
4244
|
type: BooleanConstructor;
|
|
4599
4245
|
default: boolean;
|
|
@@ -4607,12 +4253,12 @@ declare const ADORNMENT_POSITIONS: readonly ["start", "end"];
|
|
|
4607
4253
|
type AdornmentPosition = (typeof ADORNMENT_POSITIONS)[number];
|
|
4608
4254
|
declare function createControlFieldProps(): {
|
|
4609
4255
|
size: {
|
|
4610
|
-
type: PropType<
|
|
4256
|
+
type: PropType<ControlSize>;
|
|
4611
4257
|
validator: (value: any) => boolean;
|
|
4612
4258
|
};
|
|
4613
4259
|
loading: BooleanConstructor;
|
|
4614
4260
|
variant: {
|
|
4615
|
-
type: PropType<
|
|
4261
|
+
type: PropType<ControlFieldVariant>;
|
|
4616
4262
|
validator: (value: any) => boolean;
|
|
4617
4263
|
};
|
|
4618
4264
|
startAdornment: PropType<VNodeChildOrSlot>;
|
|
@@ -4637,12 +4283,12 @@ declare const VControlField: vue.DefineComponent<{
|
|
|
4637
4283
|
focused: BooleanConstructor;
|
|
4638
4284
|
autoHeight: BooleanConstructor;
|
|
4639
4285
|
size: {
|
|
4640
|
-
type: PropType<
|
|
4286
|
+
type: PropType<ControlSize>;
|
|
4641
4287
|
validator: (value: any) => boolean;
|
|
4642
4288
|
};
|
|
4643
4289
|
loading: BooleanConstructor;
|
|
4644
4290
|
variant: {
|
|
4645
|
-
type: PropType<
|
|
4291
|
+
type: PropType<ControlFieldVariant>;
|
|
4646
4292
|
validator: (value: any) => boolean;
|
|
4647
4293
|
};
|
|
4648
4294
|
startAdornment: PropType<VNodeChildOrSlot>;
|
|
@@ -4652,7 +4298,7 @@ declare const VControlField: vue.DefineComponent<{
|
|
|
4652
4298
|
default: number;
|
|
4653
4299
|
};
|
|
4654
4300
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
4655
|
-
click: (ev: MouseEvent) =>
|
|
4301
|
+
click: (ev: MouseEvent) => true;
|
|
4656
4302
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
4657
4303
|
error: BooleanConstructor;
|
|
4658
4304
|
'v-slots': PropType<{
|
|
@@ -4663,12 +4309,12 @@ declare const VControlField: vue.DefineComponent<{
|
|
|
4663
4309
|
focused: BooleanConstructor;
|
|
4664
4310
|
autoHeight: BooleanConstructor;
|
|
4665
4311
|
size: {
|
|
4666
|
-
type: PropType<
|
|
4312
|
+
type: PropType<ControlSize>;
|
|
4667
4313
|
validator: (value: any) => boolean;
|
|
4668
4314
|
};
|
|
4669
4315
|
loading: BooleanConstructor;
|
|
4670
4316
|
variant: {
|
|
4671
|
-
type: PropType<
|
|
4317
|
+
type: PropType<ControlFieldVariant>;
|
|
4672
4318
|
validator: (value: any) => boolean;
|
|
4673
4319
|
};
|
|
4674
4320
|
startAdornment: PropType<VNodeChildOrSlot>;
|
|
@@ -4730,7 +4376,7 @@ declare const VFormControl: vue.DefineComponent<{
|
|
|
4730
4376
|
error?: ((error: _fastkit_vue_form_control.FormNodeError) => VNodeChild) | undefined;
|
|
4731
4377
|
default?: ((formNodeWrapper: FormNodeWrapper) => VNodeChild) | undefined;
|
|
4732
4378
|
}>;
|
|
4733
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
4379
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
4734
4380
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4735
4381
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4736
4382
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -4754,7 +4400,7 @@ declare const VFormControl: vue.DefineComponent<{
|
|
|
4754
4400
|
error?: ((error: _fastkit_vue_form_control.FormNodeError) => VNodeChild) | undefined;
|
|
4755
4401
|
default?: ((formNodeWrapper: FormNodeWrapper) => VNodeChild) | undefined;
|
|
4756
4402
|
}>;
|
|
4757
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
4403
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
4758
4404
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4759
4405
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4760
4406
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -4789,24 +4435,24 @@ declare const VFormControl: vue.DefineComponent<{
|
|
|
4789
4435
|
[key: string]: any;
|
|
4790
4436
|
}>[]) | undefined;
|
|
4791
4437
|
} & {
|
|
4792
|
-
default?: (
|
|
4438
|
+
default?: (formNodeWrapper: FormNodeWrapper) => any;
|
|
4793
4439
|
}>>;
|
|
4794
4440
|
|
|
4795
4441
|
declare const VCheckbox: vue.DefineComponent<{
|
|
4796
4442
|
indeterminate: BooleanConstructor;
|
|
4797
4443
|
size: {
|
|
4798
|
-
type: vue.PropType<
|
|
4444
|
+
type: vue.PropType<ControlSize>;
|
|
4799
4445
|
validator: (value: any) => boolean;
|
|
4800
4446
|
};
|
|
4801
4447
|
loading: BooleanConstructor;
|
|
4802
4448
|
value: {
|
|
4803
|
-
type: (
|
|
4449
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
4804
4450
|
};
|
|
4805
4451
|
name: StringConstructor;
|
|
4806
4452
|
tag: StringConstructor;
|
|
4807
4453
|
modelValue: vue.Prop<boolean, boolean>;
|
|
4808
4454
|
tabindex: {
|
|
4809
|
-
type: (
|
|
4455
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
4810
4456
|
default: number;
|
|
4811
4457
|
};
|
|
4812
4458
|
autofocus: BooleanConstructor;
|
|
@@ -4814,7 +4460,7 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4814
4460
|
readonly: BooleanConstructor;
|
|
4815
4461
|
viewonly: BooleanConstructor;
|
|
4816
4462
|
spellcheck: BooleanConstructor;
|
|
4817
|
-
required:
|
|
4463
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
4818
4464
|
clearable: BooleanConstructor;
|
|
4819
4465
|
validateTiming: {
|
|
4820
4466
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -4824,7 +4470,7 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4824
4470
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
4825
4471
|
default: () => never[];
|
|
4826
4472
|
};
|
|
4827
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
4473
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
4828
4474
|
error: BooleanConstructor;
|
|
4829
4475
|
errorMessages: vue.PropType<string | string[]>;
|
|
4830
4476
|
showOwnErrors: {
|
|
@@ -4841,18 +4487,18 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4841
4487
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
4842
4488
|
indeterminate: BooleanConstructor;
|
|
4843
4489
|
size: {
|
|
4844
|
-
type: vue.PropType<
|
|
4490
|
+
type: vue.PropType<ControlSize>;
|
|
4845
4491
|
validator: (value: any) => boolean;
|
|
4846
4492
|
};
|
|
4847
4493
|
loading: BooleanConstructor;
|
|
4848
4494
|
value: {
|
|
4849
|
-
type: (
|
|
4495
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
4850
4496
|
};
|
|
4851
4497
|
name: StringConstructor;
|
|
4852
4498
|
tag: StringConstructor;
|
|
4853
4499
|
modelValue: vue.Prop<boolean, boolean>;
|
|
4854
4500
|
tabindex: {
|
|
4855
|
-
type: (
|
|
4501
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
4856
4502
|
default: number;
|
|
4857
4503
|
};
|
|
4858
4504
|
autofocus: BooleanConstructor;
|
|
@@ -4860,7 +4506,7 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4860
4506
|
readonly: BooleanConstructor;
|
|
4861
4507
|
viewonly: BooleanConstructor;
|
|
4862
4508
|
spellcheck: BooleanConstructor;
|
|
4863
|
-
required:
|
|
4509
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
4864
4510
|
clearable: BooleanConstructor;
|
|
4865
4511
|
validateTiming: {
|
|
4866
4512
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -4870,7 +4516,7 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4870
4516
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
4871
4517
|
default: () => never[];
|
|
4872
4518
|
};
|
|
4873
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
4519
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
4874
4520
|
error: BooleanConstructor;
|
|
4875
4521
|
errorMessages: vue.PropType<string | string[]>;
|
|
4876
4522
|
showOwnErrors: {
|
|
@@ -4917,11 +4563,11 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4917
4563
|
loadingMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4918
4564
|
failedToLoadItemsMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4919
4565
|
size: {
|
|
4920
|
-
type: vue.PropType<
|
|
4566
|
+
type: vue.PropType<ControlSize>;
|
|
4921
4567
|
validator: (value: any) => boolean;
|
|
4922
4568
|
};
|
|
4923
4569
|
loading: BooleanConstructor;
|
|
4924
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
4570
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
4925
4571
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4926
4572
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4927
4573
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -4946,7 +4592,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4946
4592
|
tag: StringConstructor;
|
|
4947
4593
|
modelValue: vue.Prop<_fastkit_vue_form_control.FormSelectorValue, _fastkit_vue_form_control.FormSelectorValue>;
|
|
4948
4594
|
tabindex: {
|
|
4949
|
-
type: (
|
|
4595
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
4950
4596
|
default: number;
|
|
4951
4597
|
};
|
|
4952
4598
|
autofocus: BooleanConstructor;
|
|
@@ -4954,7 +4600,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4954
4600
|
readonly: BooleanConstructor;
|
|
4955
4601
|
viewonly: BooleanConstructor;
|
|
4956
4602
|
spellcheck: BooleanConstructor;
|
|
4957
|
-
required:
|
|
4603
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
4958
4604
|
clearable: BooleanConstructor;
|
|
4959
4605
|
validateTiming: {
|
|
4960
4606
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -4964,7 +4610,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4964
4610
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
4965
4611
|
default: () => never[];
|
|
4966
4612
|
};
|
|
4967
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
4613
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
4968
4614
|
error: BooleanConstructor;
|
|
4969
4615
|
errorMessages: vue.PropType<string | string[]>;
|
|
4970
4616
|
showOwnErrors: {
|
|
@@ -4994,11 +4640,11 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4994
4640
|
loadingMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4995
4641
|
failedToLoadItemsMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4996
4642
|
size: {
|
|
4997
|
-
type: vue.PropType<
|
|
4643
|
+
type: vue.PropType<ControlSize>;
|
|
4998
4644
|
validator: (value: any) => boolean;
|
|
4999
4645
|
};
|
|
5000
4646
|
loading: BooleanConstructor;
|
|
5001
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
4647
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
5002
4648
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5003
4649
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5004
4650
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -5023,7 +4669,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
5023
4669
|
tag: StringConstructor;
|
|
5024
4670
|
modelValue: vue.Prop<_fastkit_vue_form_control.FormSelectorValue, _fastkit_vue_form_control.FormSelectorValue>;
|
|
5025
4671
|
tabindex: {
|
|
5026
|
-
type: (
|
|
4672
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5027
4673
|
default: number;
|
|
5028
4674
|
};
|
|
5029
4675
|
autofocus: BooleanConstructor;
|
|
@@ -5031,7 +4677,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
5031
4677
|
readonly: BooleanConstructor;
|
|
5032
4678
|
viewonly: BooleanConstructor;
|
|
5033
4679
|
spellcheck: BooleanConstructor;
|
|
5034
|
-
required:
|
|
4680
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5035
4681
|
clearable: BooleanConstructor;
|
|
5036
4682
|
validateTiming: {
|
|
5037
4683
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5041,7 +4687,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
5041
4687
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5042
4688
|
default: () => never[];
|
|
5043
4689
|
};
|
|
5044
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
4690
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5045
4691
|
error: BooleanConstructor;
|
|
5046
4692
|
errorMessages: vue.PropType<string | string[]>;
|
|
5047
4693
|
showOwnErrors: {
|
|
@@ -5091,23 +4737,23 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
5091
4737
|
[key: string]: any;
|
|
5092
4738
|
}>[]) | undefined;
|
|
5093
4739
|
} & {
|
|
5094
|
-
default?: (
|
|
4740
|
+
default?: () => any;
|
|
5095
4741
|
}>>;
|
|
5096
4742
|
|
|
5097
4743
|
declare const VRadio: vue.DefineComponent<{
|
|
5098
4744
|
size: {
|
|
5099
|
-
type: vue.PropType<
|
|
4745
|
+
type: vue.PropType<ControlSize>;
|
|
5100
4746
|
validator: (value: any) => boolean;
|
|
5101
4747
|
};
|
|
5102
4748
|
loading: BooleanConstructor;
|
|
5103
4749
|
value: {
|
|
5104
|
-
type: (
|
|
4750
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5105
4751
|
};
|
|
5106
4752
|
name: StringConstructor;
|
|
5107
4753
|
tag: StringConstructor;
|
|
5108
4754
|
modelValue: vue.Prop<boolean, boolean>;
|
|
5109
4755
|
tabindex: {
|
|
5110
|
-
type: (
|
|
4756
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5111
4757
|
default: number;
|
|
5112
4758
|
};
|
|
5113
4759
|
autofocus: BooleanConstructor;
|
|
@@ -5115,7 +4761,7 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5115
4761
|
readonly: BooleanConstructor;
|
|
5116
4762
|
viewonly: BooleanConstructor;
|
|
5117
4763
|
spellcheck: BooleanConstructor;
|
|
5118
|
-
required:
|
|
4764
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5119
4765
|
clearable: BooleanConstructor;
|
|
5120
4766
|
validateTiming: {
|
|
5121
4767
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5125,7 +4771,7 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5125
4771
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5126
4772
|
default: () => never[];
|
|
5127
4773
|
};
|
|
5128
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
4774
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5129
4775
|
error: BooleanConstructor;
|
|
5130
4776
|
errorMessages: vue.PropType<string | string[]>;
|
|
5131
4777
|
showOwnErrors: {
|
|
@@ -5141,18 +4787,18 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5141
4787
|
blur: (ev: FocusEvent) => boolean;
|
|
5142
4788
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
5143
4789
|
size: {
|
|
5144
|
-
type: vue.PropType<
|
|
4790
|
+
type: vue.PropType<ControlSize>;
|
|
5145
4791
|
validator: (value: any) => boolean;
|
|
5146
4792
|
};
|
|
5147
4793
|
loading: BooleanConstructor;
|
|
5148
4794
|
value: {
|
|
5149
|
-
type: (
|
|
4795
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5150
4796
|
};
|
|
5151
4797
|
name: StringConstructor;
|
|
5152
4798
|
tag: StringConstructor;
|
|
5153
4799
|
modelValue: vue.Prop<boolean, boolean>;
|
|
5154
4800
|
tabindex: {
|
|
5155
|
-
type: (
|
|
4801
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5156
4802
|
default: number;
|
|
5157
4803
|
};
|
|
5158
4804
|
autofocus: BooleanConstructor;
|
|
@@ -5160,7 +4806,7 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5160
4806
|
readonly: BooleanConstructor;
|
|
5161
4807
|
viewonly: BooleanConstructor;
|
|
5162
4808
|
spellcheck: BooleanConstructor;
|
|
5163
|
-
required:
|
|
4809
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5164
4810
|
clearable: BooleanConstructor;
|
|
5165
4811
|
validateTiming: {
|
|
5166
4812
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5170,7 +4816,7 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5170
4816
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5171
4817
|
default: () => never[];
|
|
5172
4818
|
};
|
|
5173
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
4819
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5174
4820
|
error: BooleanConstructor;
|
|
5175
4821
|
errorMessages: vue.PropType<string | string[]>;
|
|
5176
4822
|
showOwnErrors: {
|
|
@@ -5216,11 +4862,11 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5216
4862
|
loadingMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5217
4863
|
failedToLoadItemsMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5218
4864
|
size: {
|
|
5219
|
-
type: vue.PropType<
|
|
4865
|
+
type: vue.PropType<ControlSize>;
|
|
5220
4866
|
validator: (value: any) => boolean;
|
|
5221
4867
|
};
|
|
5222
4868
|
loading: BooleanConstructor;
|
|
5223
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
4869
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
5224
4870
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5225
4871
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5226
4872
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -5245,7 +4891,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5245
4891
|
tag: StringConstructor;
|
|
5246
4892
|
modelValue: vue.Prop<_fastkit_vue_form_control.FormSelectorValue, _fastkit_vue_form_control.FormSelectorValue>;
|
|
5247
4893
|
tabindex: {
|
|
5248
|
-
type: (
|
|
4894
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5249
4895
|
default: number;
|
|
5250
4896
|
};
|
|
5251
4897
|
autofocus: BooleanConstructor;
|
|
@@ -5253,7 +4899,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5253
4899
|
readonly: BooleanConstructor;
|
|
5254
4900
|
viewonly: BooleanConstructor;
|
|
5255
4901
|
spellcheck: BooleanConstructor;
|
|
5256
|
-
required:
|
|
4902
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5257
4903
|
clearable: BooleanConstructor;
|
|
5258
4904
|
validateTiming: {
|
|
5259
4905
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5263,7 +4909,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5263
4909
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5264
4910
|
default: () => never[];
|
|
5265
4911
|
};
|
|
5266
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
4912
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5267
4913
|
error: BooleanConstructor;
|
|
5268
4914
|
errorMessages: vue.PropType<string | string[]>;
|
|
5269
4915
|
showOwnErrors: {
|
|
@@ -5293,11 +4939,11 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5293
4939
|
loadingMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5294
4940
|
failedToLoadItemsMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5295
4941
|
size: {
|
|
5296
|
-
type: vue.PropType<
|
|
4942
|
+
type: vue.PropType<ControlSize>;
|
|
5297
4943
|
validator: (value: any) => boolean;
|
|
5298
4944
|
};
|
|
5299
4945
|
loading: BooleanConstructor;
|
|
5300
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
4946
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
5301
4947
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5302
4948
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5303
4949
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -5322,7 +4968,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5322
4968
|
tag: StringConstructor;
|
|
5323
4969
|
modelValue: vue.Prop<_fastkit_vue_form_control.FormSelectorValue, _fastkit_vue_form_control.FormSelectorValue>;
|
|
5324
4970
|
tabindex: {
|
|
5325
|
-
type: (
|
|
4971
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5326
4972
|
default: number;
|
|
5327
4973
|
};
|
|
5328
4974
|
autofocus: BooleanConstructor;
|
|
@@ -5330,7 +4976,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5330
4976
|
readonly: BooleanConstructor;
|
|
5331
4977
|
viewonly: BooleanConstructor;
|
|
5332
4978
|
spellcheck: BooleanConstructor;
|
|
5333
|
-
required:
|
|
4979
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5334
4980
|
clearable: BooleanConstructor;
|
|
5335
4981
|
validateTiming: {
|
|
5336
4982
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5340,7 +4986,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5340
4986
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5341
4987
|
default: () => never[];
|
|
5342
4988
|
};
|
|
5343
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
4989
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5344
4990
|
error: BooleanConstructor;
|
|
5345
4991
|
errorMessages: vue.PropType<string | string[]>;
|
|
5346
4992
|
showOwnErrors: {
|
|
@@ -5390,23 +5036,23 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5390
5036
|
[key: string]: any;
|
|
5391
5037
|
}>[]) | undefined;
|
|
5392
5038
|
} & {
|
|
5393
|
-
default?: (
|
|
5039
|
+
default?: () => any;
|
|
5394
5040
|
}>>;
|
|
5395
5041
|
|
|
5396
5042
|
declare const VSwitch: vue.DefineComponent<{
|
|
5397
5043
|
size: {
|
|
5398
|
-
type: vue.PropType<
|
|
5044
|
+
type: vue.PropType<ControlSize>;
|
|
5399
5045
|
validator: (value: any) => boolean;
|
|
5400
5046
|
};
|
|
5401
5047
|
loading: BooleanConstructor;
|
|
5402
5048
|
value: {
|
|
5403
|
-
type: (
|
|
5049
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5404
5050
|
};
|
|
5405
5051
|
name: StringConstructor;
|
|
5406
5052
|
tag: StringConstructor;
|
|
5407
5053
|
modelValue: vue.Prop<boolean, boolean>;
|
|
5408
5054
|
tabindex: {
|
|
5409
|
-
type: (
|
|
5055
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5410
5056
|
default: number;
|
|
5411
5057
|
};
|
|
5412
5058
|
autofocus: BooleanConstructor;
|
|
@@ -5414,7 +5060,7 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5414
5060
|
readonly: BooleanConstructor;
|
|
5415
5061
|
viewonly: BooleanConstructor;
|
|
5416
5062
|
spellcheck: BooleanConstructor;
|
|
5417
|
-
required:
|
|
5063
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5418
5064
|
clearable: BooleanConstructor;
|
|
5419
5065
|
validateTiming: {
|
|
5420
5066
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5424,7 +5070,7 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5424
5070
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5425
5071
|
default: () => never[];
|
|
5426
5072
|
};
|
|
5427
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5073
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5428
5074
|
error: BooleanConstructor;
|
|
5429
5075
|
errorMessages: vue.PropType<string | string[]>;
|
|
5430
5076
|
showOwnErrors: {
|
|
@@ -5440,18 +5086,18 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5440
5086
|
blur: (ev: FocusEvent) => boolean;
|
|
5441
5087
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
5442
5088
|
size: {
|
|
5443
|
-
type: vue.PropType<
|
|
5089
|
+
type: vue.PropType<ControlSize>;
|
|
5444
5090
|
validator: (value: any) => boolean;
|
|
5445
5091
|
};
|
|
5446
5092
|
loading: BooleanConstructor;
|
|
5447
5093
|
value: {
|
|
5448
|
-
type: (
|
|
5094
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5449
5095
|
};
|
|
5450
5096
|
name: StringConstructor;
|
|
5451
5097
|
tag: StringConstructor;
|
|
5452
5098
|
modelValue: vue.Prop<boolean, boolean>;
|
|
5453
5099
|
tabindex: {
|
|
5454
|
-
type: (
|
|
5100
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5455
5101
|
default: number;
|
|
5456
5102
|
};
|
|
5457
5103
|
autofocus: BooleanConstructor;
|
|
@@ -5459,7 +5105,7 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5459
5105
|
readonly: BooleanConstructor;
|
|
5460
5106
|
viewonly: BooleanConstructor;
|
|
5461
5107
|
spellcheck: BooleanConstructor;
|
|
5462
|
-
required:
|
|
5108
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5463
5109
|
clearable: BooleanConstructor;
|
|
5464
5110
|
validateTiming: {
|
|
5465
5111
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5469,7 +5115,7 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5469
5115
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5470
5116
|
default: () => never[];
|
|
5471
5117
|
};
|
|
5472
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5118
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5473
5119
|
error: BooleanConstructor;
|
|
5474
5120
|
errorMessages: vue.PropType<string | string[]>;
|
|
5475
5121
|
showOwnErrors: {
|
|
@@ -5515,11 +5161,11 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5515
5161
|
loadingMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5516
5162
|
failedToLoadItemsMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5517
5163
|
size: {
|
|
5518
|
-
type: vue.PropType<
|
|
5164
|
+
type: vue.PropType<ControlSize>;
|
|
5519
5165
|
validator: (value: any) => boolean;
|
|
5520
5166
|
};
|
|
5521
5167
|
loading: BooleanConstructor;
|
|
5522
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
5168
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
5523
5169
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5524
5170
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5525
5171
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -5544,7 +5190,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5544
5190
|
tag: StringConstructor;
|
|
5545
5191
|
modelValue: vue.Prop<_fastkit_vue_form_control.FormSelectorValue, _fastkit_vue_form_control.FormSelectorValue>;
|
|
5546
5192
|
tabindex: {
|
|
5547
|
-
type: (
|
|
5193
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5548
5194
|
default: number;
|
|
5549
5195
|
};
|
|
5550
5196
|
autofocus: BooleanConstructor;
|
|
@@ -5552,7 +5198,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5552
5198
|
readonly: BooleanConstructor;
|
|
5553
5199
|
viewonly: BooleanConstructor;
|
|
5554
5200
|
spellcheck: BooleanConstructor;
|
|
5555
|
-
required:
|
|
5201
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5556
5202
|
clearable: BooleanConstructor;
|
|
5557
5203
|
validateTiming: {
|
|
5558
5204
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5562,7 +5208,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5562
5208
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5563
5209
|
default: () => never[];
|
|
5564
5210
|
};
|
|
5565
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5211
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5566
5212
|
error: BooleanConstructor;
|
|
5567
5213
|
errorMessages: vue.PropType<string | string[]>;
|
|
5568
5214
|
showOwnErrors: {
|
|
@@ -5592,11 +5238,11 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5592
5238
|
loadingMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5593
5239
|
failedToLoadItemsMessage: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5594
5240
|
size: {
|
|
5595
|
-
type: vue.PropType<
|
|
5241
|
+
type: vue.PropType<ControlSize>;
|
|
5596
5242
|
validator: (value: any) => boolean;
|
|
5597
5243
|
};
|
|
5598
5244
|
loading: BooleanConstructor;
|
|
5599
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
5245
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
5600
5246
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5601
5247
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
5602
5248
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -5621,7 +5267,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5621
5267
|
tag: StringConstructor;
|
|
5622
5268
|
modelValue: vue.Prop<_fastkit_vue_form_control.FormSelectorValue, _fastkit_vue_form_control.FormSelectorValue>;
|
|
5623
5269
|
tabindex: {
|
|
5624
|
-
type: (
|
|
5270
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5625
5271
|
default: number;
|
|
5626
5272
|
};
|
|
5627
5273
|
autofocus: BooleanConstructor;
|
|
@@ -5629,7 +5275,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5629
5275
|
readonly: BooleanConstructor;
|
|
5630
5276
|
viewonly: BooleanConstructor;
|
|
5631
5277
|
spellcheck: BooleanConstructor;
|
|
5632
|
-
required:
|
|
5278
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5633
5279
|
clearable: BooleanConstructor;
|
|
5634
5280
|
validateTiming: {
|
|
5635
5281
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5639,7 +5285,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5639
5285
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5640
5286
|
default: () => never[];
|
|
5641
5287
|
};
|
|
5642
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5288
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5643
5289
|
error: BooleanConstructor;
|
|
5644
5290
|
errorMessages: vue.PropType<string | string[]>;
|
|
5645
5291
|
showOwnErrors: {
|
|
@@ -5689,23 +5335,23 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5689
5335
|
[key: string]: any;
|
|
5690
5336
|
}>[]) | undefined;
|
|
5691
5337
|
} & {
|
|
5692
|
-
default?: (
|
|
5338
|
+
default?: () => any;
|
|
5693
5339
|
}>>;
|
|
5694
5340
|
|
|
5695
5341
|
declare const VOption: vue.DefineComponent<{
|
|
5696
5342
|
size: {
|
|
5697
|
-
type: vue.PropType<
|
|
5343
|
+
type: vue.PropType<ControlSize>;
|
|
5698
5344
|
validator: (value: any) => boolean;
|
|
5699
5345
|
};
|
|
5700
5346
|
loading: BooleanConstructor;
|
|
5701
5347
|
value: {
|
|
5702
|
-
type: (
|
|
5348
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5703
5349
|
};
|
|
5704
5350
|
name: StringConstructor;
|
|
5705
5351
|
tag: StringConstructor;
|
|
5706
5352
|
modelValue: vue.Prop<boolean, boolean>;
|
|
5707
5353
|
tabindex: {
|
|
5708
|
-
type: (
|
|
5354
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5709
5355
|
default: number;
|
|
5710
5356
|
};
|
|
5711
5357
|
autofocus: BooleanConstructor;
|
|
@@ -5713,7 +5359,7 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5713
5359
|
readonly: BooleanConstructor;
|
|
5714
5360
|
viewonly: BooleanConstructor;
|
|
5715
5361
|
spellcheck: BooleanConstructor;
|
|
5716
|
-
required:
|
|
5362
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5717
5363
|
clearable: BooleanConstructor;
|
|
5718
5364
|
validateTiming: {
|
|
5719
5365
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5723,7 +5369,7 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5723
5369
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5724
5370
|
default: () => never[];
|
|
5725
5371
|
};
|
|
5726
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5372
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5727
5373
|
error: BooleanConstructor;
|
|
5728
5374
|
errorMessages: vue.PropType<string | string[]>;
|
|
5729
5375
|
showOwnErrors: {
|
|
@@ -5739,18 +5385,18 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5739
5385
|
blur: (ev: FocusEvent) => boolean;
|
|
5740
5386
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
5741
5387
|
size: {
|
|
5742
|
-
type: vue.PropType<
|
|
5388
|
+
type: vue.PropType<ControlSize>;
|
|
5743
5389
|
validator: (value: any) => boolean;
|
|
5744
5390
|
};
|
|
5745
5391
|
loading: BooleanConstructor;
|
|
5746
5392
|
value: {
|
|
5747
|
-
type: (
|
|
5393
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5748
5394
|
};
|
|
5749
5395
|
name: StringConstructor;
|
|
5750
5396
|
tag: StringConstructor;
|
|
5751
5397
|
modelValue: vue.Prop<boolean, boolean>;
|
|
5752
5398
|
tabindex: {
|
|
5753
|
-
type: (
|
|
5399
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5754
5400
|
default: number;
|
|
5755
5401
|
};
|
|
5756
5402
|
autofocus: BooleanConstructor;
|
|
@@ -5758,7 +5404,7 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5758
5404
|
readonly: BooleanConstructor;
|
|
5759
5405
|
viewonly: BooleanConstructor;
|
|
5760
5406
|
spellcheck: BooleanConstructor;
|
|
5761
|
-
required:
|
|
5407
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
5762
5408
|
clearable: BooleanConstructor;
|
|
5763
5409
|
validateTiming: {
|
|
5764
5410
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5768,7 +5414,7 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5768
5414
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5769
5415
|
default: () => never[];
|
|
5770
5416
|
};
|
|
5771
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5417
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5772
5418
|
error: BooleanConstructor;
|
|
5773
5419
|
errorMessages: vue.PropType<string | string[]>;
|
|
5774
5420
|
showOwnErrors: {
|
|
@@ -5806,7 +5452,7 @@ declare const VOptionGroup: vue.DefineComponent<{
|
|
|
5806
5452
|
label: PropType<VNodeChildOrSlot<FormSelectorItemGroupControl>>;
|
|
5807
5453
|
disabled: BooleanConstructor;
|
|
5808
5454
|
groupId: {
|
|
5809
|
-
type: (
|
|
5455
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5810
5456
|
required: true;
|
|
5811
5457
|
};
|
|
5812
5458
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -5817,14 +5463,14 @@ declare const VOptionGroup: vue.DefineComponent<{
|
|
|
5817
5463
|
label: PropType<VNodeChildOrSlot<FormSelectorItemGroupControl>>;
|
|
5818
5464
|
disabled: BooleanConstructor;
|
|
5819
5465
|
groupId: {
|
|
5820
|
-
type: (
|
|
5466
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
5821
5467
|
required: true;
|
|
5822
5468
|
};
|
|
5823
5469
|
}>>, {
|
|
5824
5470
|
disabled: boolean;
|
|
5825
5471
|
}, _fastkit_vue_utils.DefinedSlots<{
|
|
5826
|
-
label?: (
|
|
5827
|
-
default?: (
|
|
5472
|
+
label?: (control: FormSelectorItemGroupControl) => any;
|
|
5473
|
+
default?: () => any;
|
|
5828
5474
|
}>>;
|
|
5829
5475
|
|
|
5830
5476
|
declare const ARROW_KEY_TYPES: ("ArrowDown" | "ArrowUp")[];
|
|
@@ -5850,12 +5496,12 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5850
5496
|
}) => VNodeChild) | undefined;
|
|
5851
5497
|
}>;
|
|
5852
5498
|
size: {
|
|
5853
|
-
type: PropType<
|
|
5499
|
+
type: PropType<ControlSize>;
|
|
5854
5500
|
validator: (value: any) => boolean;
|
|
5855
5501
|
};
|
|
5856
5502
|
loading: BooleanConstructor;
|
|
5857
5503
|
variant: {
|
|
5858
|
-
type: PropType<
|
|
5504
|
+
type: PropType<ControlFieldVariant>;
|
|
5859
5505
|
validator: (value: any) => boolean;
|
|
5860
5506
|
};
|
|
5861
5507
|
startAdornment: PropType<VNodeChildOrSlot>;
|
|
@@ -5864,7 +5510,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5864
5510
|
type: (StringConstructor | NumberConstructor)[];
|
|
5865
5511
|
default: number;
|
|
5866
5512
|
};
|
|
5867
|
-
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl
|
|
5513
|
+
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
5868
5514
|
label: PropType<VNodeChildOrSlot>;
|
|
5869
5515
|
hint: PropType<VNodeChildOrSlot>;
|
|
5870
5516
|
hinttip: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -5893,7 +5539,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5893
5539
|
readonly: BooleanConstructor;
|
|
5894
5540
|
viewonly: BooleanConstructor;
|
|
5895
5541
|
spellcheck: BooleanConstructor;
|
|
5896
|
-
required:
|
|
5542
|
+
required: PropType<boolean> | BooleanConstructor;
|
|
5897
5543
|
clearable: BooleanConstructor;
|
|
5898
5544
|
validateTiming: {
|
|
5899
5545
|
type: PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5903,7 +5549,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5903
5549
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5904
5550
|
default: () => never[];
|
|
5905
5551
|
};
|
|
5906
|
-
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5552
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5907
5553
|
error: BooleanConstructor;
|
|
5908
5554
|
errorMessages: PropType<string | string[]>;
|
|
5909
5555
|
showOwnErrors: {
|
|
@@ -5937,12 +5583,12 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5937
5583
|
}) => VNodeChild) | undefined;
|
|
5938
5584
|
}>;
|
|
5939
5585
|
size: {
|
|
5940
|
-
type: PropType<
|
|
5586
|
+
type: PropType<ControlSize>;
|
|
5941
5587
|
validator: (value: any) => boolean;
|
|
5942
5588
|
};
|
|
5943
5589
|
loading: BooleanConstructor;
|
|
5944
5590
|
variant: {
|
|
5945
|
-
type: PropType<
|
|
5591
|
+
type: PropType<ControlFieldVariant>;
|
|
5946
5592
|
validator: (value: any) => boolean;
|
|
5947
5593
|
};
|
|
5948
5594
|
startAdornment: PropType<VNodeChildOrSlot>;
|
|
@@ -5951,7 +5597,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5951
5597
|
type: (StringConstructor | NumberConstructor)[];
|
|
5952
5598
|
default: number;
|
|
5953
5599
|
};
|
|
5954
|
-
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl
|
|
5600
|
+
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
5955
5601
|
label: PropType<VNodeChildOrSlot>;
|
|
5956
5602
|
hint: PropType<VNodeChildOrSlot>;
|
|
5957
5603
|
hinttip: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -5980,7 +5626,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5980
5626
|
readonly: BooleanConstructor;
|
|
5981
5627
|
viewonly: BooleanConstructor;
|
|
5982
5628
|
spellcheck: BooleanConstructor;
|
|
5983
|
-
required:
|
|
5629
|
+
required: PropType<boolean> | BooleanConstructor;
|
|
5984
5630
|
clearable: BooleanConstructor;
|
|
5985
5631
|
validateTiming: {
|
|
5986
5632
|
type: PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5990,7 +5636,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5990
5636
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
5991
5637
|
default: () => never[];
|
|
5992
5638
|
};
|
|
5993
|
-
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5639
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
5994
5640
|
error: BooleanConstructor;
|
|
5995
5641
|
errorMessages: PropType<string | string[]>;
|
|
5996
5642
|
showOwnErrors: {
|
|
@@ -6050,10 +5696,10 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
6050
5696
|
[key: string]: any;
|
|
6051
5697
|
}>[]) | undefined;
|
|
6052
5698
|
} & {
|
|
6053
|
-
selection?: (
|
|
5699
|
+
selection?: (ctx: {
|
|
6054
5700
|
item: FormSelectorItemControl;
|
|
6055
5701
|
index: number;
|
|
6056
|
-
}) => any
|
|
5702
|
+
}) => any;
|
|
6057
5703
|
}>>;
|
|
6058
5704
|
|
|
6059
5705
|
declare const VNumberField: vue.DefineComponent<{
|
|
@@ -6063,7 +5709,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6063
5709
|
};
|
|
6064
5710
|
loading: BooleanConstructor;
|
|
6065
5711
|
size: {
|
|
6066
|
-
type: PropType<
|
|
5712
|
+
type: PropType<ControlSize>;
|
|
6067
5713
|
validator: (value: any) => boolean;
|
|
6068
5714
|
};
|
|
6069
5715
|
name: StringConstructor;
|
|
@@ -6091,7 +5737,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6091
5737
|
readonly: BooleanConstructor;
|
|
6092
5738
|
viewonly: BooleanConstructor;
|
|
6093
5739
|
spellcheck: BooleanConstructor;
|
|
6094
|
-
required:
|
|
5740
|
+
required: PropType<boolean> | BooleanConstructor;
|
|
6095
5741
|
clearable: BooleanConstructor;
|
|
6096
5742
|
validateTiming: {
|
|
6097
5743
|
type: PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6101,7 +5747,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6101
5747
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6102
5748
|
default: () => never[];
|
|
6103
5749
|
};
|
|
6104
|
-
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5750
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6105
5751
|
error: BooleanConstructor;
|
|
6106
5752
|
errorMessages: PropType<string | string[]>;
|
|
6107
5753
|
showOwnErrors: {
|
|
@@ -6111,37 +5757,37 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6111
5757
|
detach: BooleanConstructor;
|
|
6112
5758
|
label: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6113
5759
|
mask: PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
6114
|
-
pattern: (
|
|
5760
|
+
pattern: (RegExpConstructor | StringConstructor)[];
|
|
6115
5761
|
variant: {
|
|
6116
|
-
type: PropType<
|
|
5762
|
+
type: PropType<ControlFieldVariant>;
|
|
6117
5763
|
validator: (value: any) => boolean;
|
|
6118
5764
|
};
|
|
6119
5765
|
hint: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6120
5766
|
infoAppends: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6121
|
-
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl
|
|
5767
|
+
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
6122
5768
|
hinttip: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
6123
5769
|
hinttipDelay: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttipDelay>;
|
|
6124
5770
|
hiddenInfo: BooleanConstructor;
|
|
6125
5771
|
requiredChip: PropType<_fastkit_vue_form_control.RequiredChipSource>;
|
|
6126
5772
|
startAdornment: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6127
5773
|
endAdornment: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6128
|
-
maxlength: (
|
|
6129
|
-
inputmode: PropType<
|
|
5774
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
5775
|
+
inputmode: PropType<_fastkit_vue_form_control.TextInputMode>;
|
|
6130
5776
|
maskModel: {
|
|
6131
5777
|
type: PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
6132
5778
|
default: string;
|
|
6133
5779
|
};
|
|
6134
|
-
minlength: (
|
|
5780
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
6135
5781
|
placeholder: StringConstructor;
|
|
6136
5782
|
autocapitalize: PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
6137
5783
|
finalizers: PropType<_fastkit_vue_form_control.TextableFinalizerSpec>;
|
|
6138
|
-
counter: PropType<
|
|
5784
|
+
counter: PropType<boolean | string | number>;
|
|
6139
5785
|
counterValue: PropType<(value: string) => number>;
|
|
6140
5786
|
limit: BooleanConstructor;
|
|
6141
|
-
autocomplete: PropType<
|
|
5787
|
+
autocomplete: PropType<_fastkit_vue_form_control.FormAutoComplete | boolean>;
|
|
6142
5788
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
6143
|
-
'update:modelValue': (value: number | null) =>
|
|
6144
|
-
change: (value: number | null) =>
|
|
5789
|
+
'update:modelValue': (value: number | null) => true;
|
|
5790
|
+
change: (value: number | null) => true;
|
|
6145
5791
|
'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
|
|
6146
5792
|
focus: (ev: FocusEvent) => boolean;
|
|
6147
5793
|
blur: (ev: FocusEvent) => boolean;
|
|
@@ -6158,7 +5804,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6158
5804
|
};
|
|
6159
5805
|
loading: BooleanConstructor;
|
|
6160
5806
|
size: {
|
|
6161
|
-
type: PropType<
|
|
5807
|
+
type: PropType<ControlSize>;
|
|
6162
5808
|
validator: (value: any) => boolean;
|
|
6163
5809
|
};
|
|
6164
5810
|
name: StringConstructor;
|
|
@@ -6186,7 +5832,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6186
5832
|
readonly: BooleanConstructor;
|
|
6187
5833
|
viewonly: BooleanConstructor;
|
|
6188
5834
|
spellcheck: BooleanConstructor;
|
|
6189
|
-
required:
|
|
5835
|
+
required: PropType<boolean> | BooleanConstructor;
|
|
6190
5836
|
clearable: BooleanConstructor;
|
|
6191
5837
|
validateTiming: {
|
|
6192
5838
|
type: PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6196,7 +5842,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6196
5842
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6197
5843
|
default: () => never[];
|
|
6198
5844
|
};
|
|
6199
|
-
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5845
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6200
5846
|
error: BooleanConstructor;
|
|
6201
5847
|
errorMessages: PropType<string | string[]>;
|
|
6202
5848
|
showOwnErrors: {
|
|
@@ -6206,34 +5852,34 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6206
5852
|
detach: BooleanConstructor;
|
|
6207
5853
|
label: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6208
5854
|
mask: PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
6209
|
-
pattern: (
|
|
5855
|
+
pattern: (RegExpConstructor | StringConstructor)[];
|
|
6210
5856
|
variant: {
|
|
6211
|
-
type: PropType<
|
|
5857
|
+
type: PropType<ControlFieldVariant>;
|
|
6212
5858
|
validator: (value: any) => boolean;
|
|
6213
5859
|
};
|
|
6214
5860
|
hint: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6215
5861
|
infoAppends: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6216
|
-
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl
|
|
5862
|
+
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
6217
5863
|
hinttip: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
6218
5864
|
hinttipDelay: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttipDelay>;
|
|
6219
5865
|
hiddenInfo: BooleanConstructor;
|
|
6220
5866
|
requiredChip: PropType<_fastkit_vue_form_control.RequiredChipSource>;
|
|
6221
5867
|
startAdornment: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6222
5868
|
endAdornment: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6223
|
-
maxlength: (
|
|
6224
|
-
inputmode: PropType<
|
|
5869
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
5870
|
+
inputmode: PropType<_fastkit_vue_form_control.TextInputMode>;
|
|
6225
5871
|
maskModel: {
|
|
6226
5872
|
type: PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
6227
5873
|
default: string;
|
|
6228
5874
|
};
|
|
6229
|
-
minlength: (
|
|
5875
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
6230
5876
|
placeholder: StringConstructor;
|
|
6231
5877
|
autocapitalize: PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
6232
5878
|
finalizers: PropType<_fastkit_vue_form_control.TextableFinalizerSpec>;
|
|
6233
|
-
counter: PropType<
|
|
5879
|
+
counter: PropType<boolean | string | number>;
|
|
6234
5880
|
counterValue: PropType<(value: string) => number>;
|
|
6235
5881
|
limit: BooleanConstructor;
|
|
6236
|
-
autocomplete: PropType<
|
|
5882
|
+
autocomplete: PropType<_fastkit_vue_form_control.FormAutoComplete | boolean>;
|
|
6237
5883
|
}>> & {
|
|
6238
5884
|
"onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
|
|
6239
5885
|
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
@@ -6279,12 +5925,12 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6279
5925
|
endAdornment?: (() => vue.VNodeChild) | undefined;
|
|
6280
5926
|
}>;
|
|
6281
5927
|
size: {
|
|
6282
|
-
type: vue.PropType<
|
|
5928
|
+
type: vue.PropType<ControlSize>;
|
|
6283
5929
|
validator: (value: any) => boolean;
|
|
6284
5930
|
};
|
|
6285
5931
|
loading: BooleanConstructor;
|
|
6286
5932
|
variant: {
|
|
6287
|
-
type: vue.PropType<
|
|
5933
|
+
type: vue.PropType<ControlFieldVariant>;
|
|
6288
5934
|
validator: (value: any) => boolean;
|
|
6289
5935
|
};
|
|
6290
5936
|
startAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
@@ -6293,7 +5939,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6293
5939
|
type: (StringConstructor | NumberConstructor)[];
|
|
6294
5940
|
default: number;
|
|
6295
5941
|
};
|
|
6296
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
5942
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
6297
5943
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6298
5944
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6299
5945
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -6311,16 +5957,16 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6311
5957
|
type: vue.PropType<_fastkit_vue_utils.Numberish>;
|
|
6312
5958
|
};
|
|
6313
5959
|
mask: vue.PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
6314
|
-
minlength: (
|
|
6315
|
-
maxlength: (
|
|
6316
|
-
pattern: (
|
|
5960
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
5961
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
5962
|
+
pattern: (RegExpConstructor | StringConstructor)[];
|
|
6317
5963
|
placeholder: StringConstructor;
|
|
6318
5964
|
autocapitalize: vue.PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
6319
5965
|
finalizers: vue.PropType<_fastkit_vue_form_control.TextableFinalizerSpec>;
|
|
6320
|
-
counter: vue.PropType<
|
|
5966
|
+
counter: vue.PropType<boolean | string | number>;
|
|
6321
5967
|
counterValue: vue.PropType<(value: string) => number>;
|
|
6322
5968
|
limit: BooleanConstructor;
|
|
6323
|
-
autocomplete: vue.PropType<
|
|
5969
|
+
autocomplete: vue.PropType<_fastkit_vue_form_control.FormAutoComplete | boolean>;
|
|
6324
5970
|
name: StringConstructor;
|
|
6325
5971
|
tag: StringConstructor;
|
|
6326
5972
|
modelValue: vue.Prop<any, any>;
|
|
@@ -6329,7 +5975,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6329
5975
|
readonly: BooleanConstructor;
|
|
6330
5976
|
viewonly: BooleanConstructor;
|
|
6331
5977
|
spellcheck: BooleanConstructor;
|
|
6332
|
-
required:
|
|
5978
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6333
5979
|
clearable: BooleanConstructor;
|
|
6334
5980
|
validateTiming: {
|
|
6335
5981
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6339,7 +5985,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6339
5985
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6340
5986
|
default: () => never[];
|
|
6341
5987
|
};
|
|
6342
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
5988
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6343
5989
|
error: BooleanConstructor;
|
|
6344
5990
|
errorMessages: vue.PropType<string | string[]>;
|
|
6345
5991
|
showOwnErrors: {
|
|
@@ -6365,12 +6011,12 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6365
6011
|
endAdornment?: (() => vue.VNodeChild) | undefined;
|
|
6366
6012
|
}>;
|
|
6367
6013
|
size: {
|
|
6368
|
-
type: vue.PropType<
|
|
6014
|
+
type: vue.PropType<ControlSize>;
|
|
6369
6015
|
validator: (value: any) => boolean;
|
|
6370
6016
|
};
|
|
6371
6017
|
loading: BooleanConstructor;
|
|
6372
6018
|
variant: {
|
|
6373
|
-
type: vue.PropType<
|
|
6019
|
+
type: vue.PropType<ControlFieldVariant>;
|
|
6374
6020
|
validator: (value: any) => boolean;
|
|
6375
6021
|
};
|
|
6376
6022
|
startAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
@@ -6379,7 +6025,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6379
6025
|
type: (StringConstructor | NumberConstructor)[];
|
|
6380
6026
|
default: number;
|
|
6381
6027
|
};
|
|
6382
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl
|
|
6028
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
6383
6029
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6384
6030
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6385
6031
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
@@ -6397,16 +6043,16 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6397
6043
|
type: vue.PropType<_fastkit_vue_utils.Numberish>;
|
|
6398
6044
|
};
|
|
6399
6045
|
mask: vue.PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
6400
|
-
minlength: (
|
|
6401
|
-
maxlength: (
|
|
6402
|
-
pattern: (
|
|
6046
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
6047
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
6048
|
+
pattern: (RegExpConstructor | StringConstructor)[];
|
|
6403
6049
|
placeholder: StringConstructor;
|
|
6404
6050
|
autocapitalize: vue.PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
6405
6051
|
finalizers: vue.PropType<_fastkit_vue_form_control.TextableFinalizerSpec>;
|
|
6406
|
-
counter: vue.PropType<
|
|
6052
|
+
counter: vue.PropType<boolean | string | number>;
|
|
6407
6053
|
counterValue: vue.PropType<(value: string) => number>;
|
|
6408
6054
|
limit: BooleanConstructor;
|
|
6409
|
-
autocomplete: vue.PropType<
|
|
6055
|
+
autocomplete: vue.PropType<_fastkit_vue_form_control.FormAutoComplete | boolean>;
|
|
6410
6056
|
name: StringConstructor;
|
|
6411
6057
|
tag: StringConstructor;
|
|
6412
6058
|
modelValue: vue.Prop<any, any>;
|
|
@@ -6415,7 +6061,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6415
6061
|
readonly: BooleanConstructor;
|
|
6416
6062
|
viewonly: BooleanConstructor;
|
|
6417
6063
|
spellcheck: BooleanConstructor;
|
|
6418
|
-
required:
|
|
6064
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6419
6065
|
clearable: BooleanConstructor;
|
|
6420
6066
|
validateTiming: {
|
|
6421
6067
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6425,7 +6071,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6425
6071
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6426
6072
|
default: () => never[];
|
|
6427
6073
|
};
|
|
6428
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
6074
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6429
6075
|
error: BooleanConstructor;
|
|
6430
6076
|
errorMessages: vue.PropType<string | string[]>;
|
|
6431
6077
|
showOwnErrors: {
|
|
@@ -6467,7 +6113,7 @@ declare const formGroupSlots: _fastkit_vue_utils.DefinedSlots<{
|
|
|
6467
6113
|
[key: string]: any;
|
|
6468
6114
|
}>[]) | undefined;
|
|
6469
6115
|
} & {
|
|
6470
|
-
error?: (
|
|
6116
|
+
error?: (error: _fastkit_vue_form_control.FormNodeError) => any;
|
|
6471
6117
|
} & {
|
|
6472
6118
|
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => any;
|
|
6473
6119
|
}>;
|
|
@@ -6478,7 +6124,7 @@ declare function createVFormGroupProps(): {
|
|
|
6478
6124
|
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild) | undefined;
|
|
6479
6125
|
}>;
|
|
6480
6126
|
size: {
|
|
6481
|
-
type: vue.PropType<
|
|
6127
|
+
type: vue.PropType<ControlSize>;
|
|
6482
6128
|
validator: (value: any) => boolean;
|
|
6483
6129
|
};
|
|
6484
6130
|
loading: BooleanConstructor;
|
|
@@ -6488,7 +6134,7 @@ declare function createVFormGroupProps(): {
|
|
|
6488
6134
|
tag: StringConstructor;
|
|
6489
6135
|
modelValue: vue.Prop<unknown, unknown>;
|
|
6490
6136
|
tabindex: {
|
|
6491
|
-
type: (
|
|
6137
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
6492
6138
|
default: number;
|
|
6493
6139
|
};
|
|
6494
6140
|
autofocus: BooleanConstructor;
|
|
@@ -6496,7 +6142,7 @@ declare function createVFormGroupProps(): {
|
|
|
6496
6142
|
readonly: BooleanConstructor;
|
|
6497
6143
|
viewonly: BooleanConstructor;
|
|
6498
6144
|
spellcheck: BooleanConstructor;
|
|
6499
|
-
required:
|
|
6145
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6500
6146
|
clearable: BooleanConstructor;
|
|
6501
6147
|
validateTiming: {
|
|
6502
6148
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6506,7 +6152,7 @@ declare function createVFormGroupProps(): {
|
|
|
6506
6152
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6507
6153
|
default: () => never[];
|
|
6508
6154
|
};
|
|
6509
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
6155
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6510
6156
|
error: BooleanConstructor;
|
|
6511
6157
|
errorMessages: vue.PropType<string | string[]>;
|
|
6512
6158
|
showOwnErrors: {
|
|
@@ -6522,7 +6168,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6522
6168
|
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild) | undefined;
|
|
6523
6169
|
}>;
|
|
6524
6170
|
size: {
|
|
6525
|
-
type: vue.PropType<
|
|
6171
|
+
type: vue.PropType<ControlSize>;
|
|
6526
6172
|
validator: (value: any) => boolean;
|
|
6527
6173
|
};
|
|
6528
6174
|
loading: BooleanConstructor;
|
|
@@ -6532,7 +6178,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6532
6178
|
tag: StringConstructor;
|
|
6533
6179
|
modelValue: vue.Prop<unknown, unknown>;
|
|
6534
6180
|
tabindex: {
|
|
6535
|
-
type: (
|
|
6181
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
6536
6182
|
default: number;
|
|
6537
6183
|
};
|
|
6538
6184
|
autofocus: BooleanConstructor;
|
|
@@ -6540,7 +6186,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6540
6186
|
readonly: BooleanConstructor;
|
|
6541
6187
|
viewonly: BooleanConstructor;
|
|
6542
6188
|
spellcheck: BooleanConstructor;
|
|
6543
|
-
required:
|
|
6189
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6544
6190
|
clearable: BooleanConstructor;
|
|
6545
6191
|
validateTiming: {
|
|
6546
6192
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6550,7 +6196,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6550
6196
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6551
6197
|
default: () => never[];
|
|
6552
6198
|
};
|
|
6553
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
6199
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6554
6200
|
error: BooleanConstructor;
|
|
6555
6201
|
errorMessages: vue.PropType<string | string[]>;
|
|
6556
6202
|
showOwnErrors: {
|
|
@@ -6573,7 +6219,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6573
6219
|
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild) | undefined;
|
|
6574
6220
|
}>;
|
|
6575
6221
|
size: {
|
|
6576
|
-
type: vue.PropType<
|
|
6222
|
+
type: vue.PropType<ControlSize>;
|
|
6577
6223
|
validator: (value: any) => boolean;
|
|
6578
6224
|
};
|
|
6579
6225
|
loading: BooleanConstructor;
|
|
@@ -6583,7 +6229,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6583
6229
|
tag: StringConstructor;
|
|
6584
6230
|
modelValue: vue.Prop<unknown, unknown>;
|
|
6585
6231
|
tabindex: {
|
|
6586
|
-
type: (
|
|
6232
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
6587
6233
|
default: number;
|
|
6588
6234
|
};
|
|
6589
6235
|
autofocus: BooleanConstructor;
|
|
@@ -6591,7 +6237,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6591
6237
|
readonly: BooleanConstructor;
|
|
6592
6238
|
viewonly: BooleanConstructor;
|
|
6593
6239
|
spellcheck: BooleanConstructor;
|
|
6594
|
-
required:
|
|
6240
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6595
6241
|
clearable: BooleanConstructor;
|
|
6596
6242
|
validateTiming: {
|
|
6597
6243
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6601,7 +6247,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6601
6247
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6602
6248
|
default: () => never[];
|
|
6603
6249
|
};
|
|
6604
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
6250
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6605
6251
|
error: BooleanConstructor;
|
|
6606
6252
|
errorMessages: vue.PropType<string | string[]>;
|
|
6607
6253
|
showOwnErrors: {
|
|
@@ -6636,7 +6282,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6636
6282
|
[key: string]: any;
|
|
6637
6283
|
}>[]) | undefined;
|
|
6638
6284
|
} & {
|
|
6639
|
-
error?: (
|
|
6285
|
+
error?: (error: _fastkit_vue_form_control.FormNodeError) => any;
|
|
6640
6286
|
} & {
|
|
6641
6287
|
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => any;
|
|
6642
6288
|
}>>;
|
|
@@ -6654,7 +6300,7 @@ declare function createVFormProps(): {
|
|
|
6654
6300
|
default?: ((form: VueForm) => vue.VNodeChild) | undefined;
|
|
6655
6301
|
}>;
|
|
6656
6302
|
size: {
|
|
6657
|
-
type: vue.PropType<
|
|
6303
|
+
type: vue.PropType<ControlSize>;
|
|
6658
6304
|
validator: (value: any) => boolean;
|
|
6659
6305
|
};
|
|
6660
6306
|
loading: BooleanConstructor;
|
|
@@ -6678,7 +6324,7 @@ declare function createVFormProps(): {
|
|
|
6678
6324
|
tag: StringConstructor;
|
|
6679
6325
|
modelValue: vue.Prop<unknown, unknown>;
|
|
6680
6326
|
tabindex: {
|
|
6681
|
-
type: (
|
|
6327
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
6682
6328
|
default: number;
|
|
6683
6329
|
};
|
|
6684
6330
|
autofocus: BooleanConstructor;
|
|
@@ -6686,7 +6332,7 @@ declare function createVFormProps(): {
|
|
|
6686
6332
|
readonly: BooleanConstructor;
|
|
6687
6333
|
viewonly: BooleanConstructor;
|
|
6688
6334
|
spellcheck: BooleanConstructor;
|
|
6689
|
-
required:
|
|
6335
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6690
6336
|
clearable: BooleanConstructor;
|
|
6691
6337
|
validateTiming: {
|
|
6692
6338
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6696,7 +6342,7 @@ declare function createVFormProps(): {
|
|
|
6696
6342
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6697
6343
|
default: () => never[];
|
|
6698
6344
|
};
|
|
6699
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
6345
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6700
6346
|
error: BooleanConstructor;
|
|
6701
6347
|
errorMessages: vue.PropType<string | string[]>;
|
|
6702
6348
|
showOwnErrors: {
|
|
@@ -6710,7 +6356,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6710
6356
|
default?: ((form: VueForm) => vue.VNodeChild) | undefined;
|
|
6711
6357
|
}>;
|
|
6712
6358
|
size: {
|
|
6713
|
-
type: vue.PropType<
|
|
6359
|
+
type: vue.PropType<ControlSize>;
|
|
6714
6360
|
validator: (value: any) => boolean;
|
|
6715
6361
|
};
|
|
6716
6362
|
loading: BooleanConstructor;
|
|
@@ -6734,7 +6380,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6734
6380
|
tag: StringConstructor;
|
|
6735
6381
|
modelValue: vue.Prop<unknown, unknown>;
|
|
6736
6382
|
tabindex: {
|
|
6737
|
-
type: (
|
|
6383
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
6738
6384
|
default: number;
|
|
6739
6385
|
};
|
|
6740
6386
|
autofocus: BooleanConstructor;
|
|
@@ -6742,7 +6388,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6742
6388
|
readonly: BooleanConstructor;
|
|
6743
6389
|
viewonly: BooleanConstructor;
|
|
6744
6390
|
spellcheck: BooleanConstructor;
|
|
6745
|
-
required:
|
|
6391
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6746
6392
|
clearable: BooleanConstructor;
|
|
6747
6393
|
validateTiming: {
|
|
6748
6394
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6752,7 +6398,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6752
6398
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6753
6399
|
default: () => never[];
|
|
6754
6400
|
};
|
|
6755
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
6401
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6756
6402
|
error: BooleanConstructor;
|
|
6757
6403
|
errorMessages: vue.PropType<string | string[]>;
|
|
6758
6404
|
showOwnErrors: {
|
|
@@ -6775,7 +6421,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6775
6421
|
default?: ((form: VueForm) => vue.VNodeChild) | undefined;
|
|
6776
6422
|
}>;
|
|
6777
6423
|
size: {
|
|
6778
|
-
type: vue.PropType<
|
|
6424
|
+
type: vue.PropType<ControlSize>;
|
|
6779
6425
|
validator: (value: any) => boolean;
|
|
6780
6426
|
};
|
|
6781
6427
|
loading: BooleanConstructor;
|
|
@@ -6799,7 +6445,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6799
6445
|
tag: StringConstructor;
|
|
6800
6446
|
modelValue: vue.Prop<unknown, unknown>;
|
|
6801
6447
|
tabindex: {
|
|
6802
|
-
type: (
|
|
6448
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
6803
6449
|
default: number;
|
|
6804
6450
|
};
|
|
6805
6451
|
autofocus: BooleanConstructor;
|
|
@@ -6807,7 +6453,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6807
6453
|
readonly: BooleanConstructor;
|
|
6808
6454
|
viewonly: BooleanConstructor;
|
|
6809
6455
|
spellcheck: BooleanConstructor;
|
|
6810
|
-
required:
|
|
6456
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6811
6457
|
clearable: BooleanConstructor;
|
|
6812
6458
|
validateTiming: {
|
|
6813
6459
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6817,7 +6463,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6817
6463
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6818
6464
|
default: () => never[];
|
|
6819
6465
|
};
|
|
6820
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl
|
|
6466
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6821
6467
|
error: BooleanConstructor;
|
|
6822
6468
|
errorMessages: vue.PropType<string | string[]>;
|
|
6823
6469
|
showOwnErrors: {
|
|
@@ -6899,11 +6545,11 @@ declare const VTabs: vue.DefineComponent<{
|
|
|
6899
6545
|
* タブのURLが /page1?tab=xxx のようになる時に設定する
|
|
6900
6546
|
*/
|
|
6901
6547
|
withQuery: BooleanConstructor;
|
|
6902
|
-
color: PropType<ScopeName>;
|
|
6548
|
+
color: PropType<ScopeName$1>;
|
|
6903
6549
|
onBeforeChange: PropType<VTabsGuard>;
|
|
6904
6550
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
6905
|
-
'update:modelValue': (newValue: string) =>
|
|
6906
|
-
change: (newValue: string) =>
|
|
6551
|
+
'update:modelValue': (newValue: string) => true;
|
|
6552
|
+
change: (newValue: string) => true;
|
|
6907
6553
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
6908
6554
|
'v-slots': PropType<{
|
|
6909
6555
|
item?: ((ctx: VTabsItemLabelSlotCtx) => VNodeChild) | undefined;
|
|
@@ -6929,7 +6575,7 @@ declare const VTabs: vue.DefineComponent<{
|
|
|
6929
6575
|
* タブのURLが /page1?tab=xxx のようになる時に設定する
|
|
6930
6576
|
*/
|
|
6931
6577
|
withQuery: BooleanConstructor;
|
|
6932
|
-
color: PropType<ScopeName>;
|
|
6578
|
+
color: PropType<ScopeName$1>;
|
|
6933
6579
|
onBeforeChange: PropType<VTabsGuard>;
|
|
6934
6580
|
}>> & {
|
|
6935
6581
|
"onUpdate:modelValue"?: ((newValue: string) => any) | undefined;
|
|
@@ -6938,7 +6584,7 @@ declare const VTabs: vue.DefineComponent<{
|
|
|
6938
6584
|
autoScrollOffset: number;
|
|
6939
6585
|
withQuery: boolean;
|
|
6940
6586
|
}, _fastkit_vue_utils.DefinedSlots<{
|
|
6941
|
-
item?: (
|
|
6587
|
+
item?: (ctx: VTabsItemLabelSlotCtx) => any;
|
|
6942
6588
|
}>>;
|
|
6943
6589
|
|
|
6944
6590
|
interface BreadcrumbsItem extends Pick<ActionableInheritProps, 'to' | 'disabled'> {
|
|
@@ -6983,7 +6629,7 @@ declare const VContentSwitcher: vue.DefineComponent<{
|
|
|
6983
6629
|
};
|
|
6984
6630
|
autotop: PropType<boolean | ContentSwitcherSeeTopOptions>;
|
|
6985
6631
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
6986
|
-
'update:modelValue': (modelValue: string) =>
|
|
6632
|
+
'update:modelValue': (modelValue: string) => true;
|
|
6987
6633
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
6988
6634
|
modelValue: StringConstructor;
|
|
6989
6635
|
order: {
|
|
@@ -7133,9 +6779,9 @@ declare const VDataTable: vue.DefineComponent<{
|
|
|
7133
6779
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
7134
6780
|
noDataMessage: PropType<VNodeChildOrSlot>;
|
|
7135
6781
|
noResultsMessage: PropType<VNodeChildOrSlot>;
|
|
7136
|
-
rowSettings: PropType<RawDataTableRowSettings
|
|
6782
|
+
rowSettings: PropType<RawDataTableRowSettings>;
|
|
7137
6783
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
7138
|
-
input: (selectedValues: string[]) =>
|
|
6784
|
+
input: (selectedValues: string[]) => true;
|
|
7139
6785
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
7140
6786
|
/** 選択中のkeyの配列 */
|
|
7141
6787
|
modelValue: {
|
|
@@ -7222,7 +6868,7 @@ declare const VDataTable: vue.DefineComponent<{
|
|
|
7222
6868
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
7223
6869
|
noDataMessage: PropType<VNodeChildOrSlot>;
|
|
7224
6870
|
noResultsMessage: PropType<VNodeChildOrSlot>;
|
|
7225
|
-
rowSettings: PropType<RawDataTableRowSettings
|
|
6871
|
+
rowSettings: PropType<RawDataTableRowSettings>;
|
|
7226
6872
|
}>> & {
|
|
7227
6873
|
onInput?: ((selectedValues: string[]) => any) | undefined;
|
|
7228
6874
|
}, {
|
|
@@ -7249,7 +6895,7 @@ declare const VApp: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {
|
|
|
7249
6895
|
|
|
7250
6896
|
declare const VToolbar: vue.DefineComponent<{
|
|
7251
6897
|
dense: BooleanConstructor;
|
|
7252
|
-
variant: vue.PropType<ColorVariant>;
|
|
6898
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
7253
6899
|
theme: vue.PropType<ThemeName>;
|
|
7254
6900
|
color: vue.PropType<ScopeName>;
|
|
7255
6901
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -7257,7 +6903,7 @@ declare const VToolbar: vue.DefineComponent<{
|
|
|
7257
6903
|
elevation: vue.PropType<VuiElevationValue>;
|
|
7258
6904
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
7259
6905
|
dense: BooleanConstructor;
|
|
7260
|
-
variant: vue.PropType<ColorVariant>;
|
|
6906
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
7261
6907
|
theme: vue.PropType<ThemeName>;
|
|
7262
6908
|
color: vue.PropType<ScopeName>;
|
|
7263
6909
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -7270,7 +6916,7 @@ declare const VToolbar: vue.DefineComponent<{
|
|
|
7270
6916
|
type VToolbarMenuEdge = 'start' | 'end';
|
|
7271
6917
|
declare const VToolbarMenu: vue.DefineComponent<{
|
|
7272
6918
|
size: {
|
|
7273
|
-
type: vue.PropType<
|
|
6919
|
+
type: vue.PropType<ControlSize>;
|
|
7274
6920
|
validator: (value: any) => boolean;
|
|
7275
6921
|
};
|
|
7276
6922
|
loading: BooleanConstructor;
|
|
@@ -7280,7 +6926,7 @@ declare const VToolbarMenu: vue.DefineComponent<{
|
|
|
7280
6926
|
startIcon: vue.PropType<RawVButtonIcon>;
|
|
7281
6927
|
endIcon: vue.PropType<RawVButtonIcon>;
|
|
7282
6928
|
align: {
|
|
7283
|
-
type: vue.PropType<
|
|
6929
|
+
type: vue.PropType<VButtonAlign>;
|
|
7284
6930
|
default: string;
|
|
7285
6931
|
};
|
|
7286
6932
|
tag: vue.PropType<string>;
|
|
@@ -7304,7 +6950,7 @@ declare const VToolbarMenu: vue.DefineComponent<{
|
|
|
7304
6950
|
title: vue.PropType<string>;
|
|
7305
6951
|
disabled: vue.PropType<boolean>;
|
|
7306
6952
|
guard: vue.PropType<_fastkit_vue_action.ActionableGuard>;
|
|
7307
|
-
to: vue.PropType<
|
|
6953
|
+
to: vue.PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
7308
6954
|
replace: vue.PropType<boolean>;
|
|
7309
6955
|
custom: vue.PropType<boolean>;
|
|
7310
6956
|
activeClass: vue.PropType<string>;
|
|
@@ -7338,14 +6984,14 @@ declare const VToolbarMenu: vue.DefineComponent<{
|
|
|
7338
6984
|
tabindex: vue.PropType<(string | number) | undefined>;
|
|
7339
6985
|
onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
|
|
7340
6986
|
onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
|
|
7341
|
-
variant: vue.PropType<ColorVariant>;
|
|
6987
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
7342
6988
|
theme: vue.PropType<ThemeName>;
|
|
7343
6989
|
color: vue.PropType<ScopeName>;
|
|
7344
6990
|
textColor: vue.PropType<PaletteName>;
|
|
7345
6991
|
borderColor: vue.PropType<PaletteName>;
|
|
7346
6992
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
7347
6993
|
size: {
|
|
7348
|
-
type: vue.PropType<
|
|
6994
|
+
type: vue.PropType<ControlSize>;
|
|
7349
6995
|
validator: (value: any) => boolean;
|
|
7350
6996
|
};
|
|
7351
6997
|
loading: BooleanConstructor;
|
|
@@ -7355,7 +7001,7 @@ declare const VToolbarMenu: vue.DefineComponent<{
|
|
|
7355
7001
|
startIcon: vue.PropType<RawVButtonIcon>;
|
|
7356
7002
|
endIcon: vue.PropType<RawVButtonIcon>;
|
|
7357
7003
|
align: {
|
|
7358
|
-
type: vue.PropType<
|
|
7004
|
+
type: vue.PropType<VButtonAlign>;
|
|
7359
7005
|
default: string;
|
|
7360
7006
|
};
|
|
7361
7007
|
tag: vue.PropType<string>;
|
|
@@ -7379,7 +7025,7 @@ declare const VToolbarMenu: vue.DefineComponent<{
|
|
|
7379
7025
|
title: vue.PropType<string>;
|
|
7380
7026
|
disabled: vue.PropType<boolean>;
|
|
7381
7027
|
guard: vue.PropType<_fastkit_vue_action.ActionableGuard>;
|
|
7382
|
-
to: vue.PropType<
|
|
7028
|
+
to: vue.PropType<string | vue_router.RouteLocationAsRelativeGeneric | vue_router.RouteLocationAsPathGeneric>;
|
|
7383
7029
|
replace: vue.PropType<boolean>;
|
|
7384
7030
|
custom: vue.PropType<boolean>;
|
|
7385
7031
|
activeClass: vue.PropType<string>;
|
|
@@ -7413,7 +7059,7 @@ declare const VToolbarMenu: vue.DefineComponent<{
|
|
|
7413
7059
|
tabindex: vue.PropType<(string | number) | undefined>;
|
|
7414
7060
|
onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
|
|
7415
7061
|
onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
|
|
7416
|
-
variant: vue.PropType<ColorVariant>;
|
|
7062
|
+
variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
|
|
7417
7063
|
theme: vue.PropType<ThemeName>;
|
|
7418
7064
|
color: vue.PropType<ScopeName>;
|
|
7419
7065
|
textColor: vue.PropType<PaletteName>;
|
|
@@ -7456,7 +7102,7 @@ declare const VToolbarTitle: vue.DefineComponent<{
|
|
|
7456
7102
|
}>>, {
|
|
7457
7103
|
tag: string;
|
|
7458
7104
|
}, _fastkit_vue_utils.DefinedSlots<{
|
|
7459
|
-
default?: (
|
|
7105
|
+
default?: () => any;
|
|
7460
7106
|
}>>;
|
|
7461
7107
|
|
|
7462
7108
|
interface VuiPluginStackOptions extends VueStackServiceOptions {
|