@fastkit/vui 0.16.10 → 0.16.12
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.d.ts +26 -24
- package/package.json +5 -5
package/dist/vui.d.ts
CHANGED
|
@@ -35,8 +35,8 @@ import { PropType, ExtractPropTypes, ComputedRef, VNodeChild, InjectionKey, VNod
|
|
|
35
35
|
import { ScopeName, ColorVariant , ThemeName, PaletteName } from '@fastkit/color-scheme';
|
|
36
36
|
import * as _fastkit_vue_transitions__ from '@fastkit/vue-transitions/.';
|
|
37
37
|
import * as _fastkit_vue_utils__ from '@fastkit/vue-utils/.';
|
|
38
|
-
import * as _fastkit_vue_stack__ from '@fastkit/vue-stack/.';
|
|
39
38
|
import * as _fastkit_vue_resize__ from '@fastkit/vue-resize/.';
|
|
39
|
+
import * as _fastkit_vue_stack__ from '@fastkit/vue-stack/.';
|
|
40
40
|
import * as _fastkit_vue_click_outside__ from '@fastkit/vue-click-outside/.';
|
|
41
41
|
import * as _fastkit_vue_body_scroll_lock__ from '@fastkit/vue-body-scroll-lock/.';
|
|
42
42
|
import { useLink, Router, UseLinkOptions, RouteLocationRaw } from 'vue-router';
|
|
@@ -133,6 +133,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
133
133
|
type: PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
134
134
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
135
135
|
};
|
|
136
|
+
errorMessages: PropType<string | string[]>;
|
|
136
137
|
disabled: BooleanConstructor;
|
|
137
138
|
readonly: BooleanConstructor;
|
|
138
139
|
touched: BooleanConstructor;
|
|
@@ -170,7 +171,6 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
170
171
|
};
|
|
171
172
|
validationDeps: PropType<(nodeControl: FormNodeControl<any, any>) => any>;
|
|
172
173
|
error: BooleanConstructor;
|
|
173
|
-
errorMessages: PropType<string | string[]>;
|
|
174
174
|
}, {
|
|
175
175
|
loadingMessageRef: vue.ComputedRef<VNodeChild>;
|
|
176
176
|
failedToLoadItemsMessageRef: vue.ComputedRef<VNodeChild>;
|
|
@@ -264,6 +264,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
264
264
|
type: PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
265
265
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
266
266
|
};
|
|
267
|
+
errorMessages: PropType<string | string[]>;
|
|
267
268
|
disabled: BooleanConstructor;
|
|
268
269
|
readonly: BooleanConstructor;
|
|
269
270
|
touched: BooleanConstructor;
|
|
@@ -301,7 +302,6 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
301
302
|
};
|
|
302
303
|
validationDeps: PropType<(nodeControl: FormNodeControl<any, any>) => any>;
|
|
303
304
|
error: BooleanConstructor;
|
|
304
|
-
errorMessages: PropType<string | string[]>;
|
|
305
305
|
}>> & {
|
|
306
306
|
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
|
307
307
|
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
@@ -456,6 +456,7 @@ declare function createTextFieldProps(): {
|
|
|
456
456
|
type: vue.PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
457
457
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
458
458
|
};
|
|
459
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
459
460
|
disabled: BooleanConstructor;
|
|
460
461
|
readonly: BooleanConstructor;
|
|
461
462
|
touched: BooleanConstructor;
|
|
@@ -499,7 +500,6 @@ declare function createTextFieldProps(): {
|
|
|
499
500
|
};
|
|
500
501
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
501
502
|
error: BooleanConstructor;
|
|
502
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
503
503
|
};
|
|
504
504
|
type TextFieldPropsOptions = ReturnType<typeof createTextFieldProps>;
|
|
505
505
|
type TextFieldEmits = TextInputEmits;
|
|
@@ -543,6 +543,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
543
543
|
type: vue.PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
544
544
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
545
545
|
};
|
|
546
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
546
547
|
disabled: BooleanConstructor;
|
|
547
548
|
readonly: BooleanConstructor;
|
|
548
549
|
touched: BooleanConstructor;
|
|
@@ -586,7 +587,6 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
586
587
|
};
|
|
587
588
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
588
589
|
error: BooleanConstructor;
|
|
589
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
590
590
|
}, {
|
|
591
591
|
parentControl: ControlProvider | null;
|
|
592
592
|
size: vue.ComputedRef<"sm" | "md" | "lg">;
|
|
@@ -684,6 +684,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
684
684
|
type: vue.PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
685
685
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
686
686
|
};
|
|
687
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
687
688
|
disabled: BooleanConstructor;
|
|
688
689
|
readonly: BooleanConstructor;
|
|
689
690
|
touched: BooleanConstructor;
|
|
@@ -727,7 +728,6 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
727
728
|
};
|
|
728
729
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
729
730
|
error: BooleanConstructor;
|
|
730
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
731
731
|
}>> & {
|
|
732
732
|
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
|
733
733
|
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
@@ -1268,8 +1268,8 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1268
1268
|
allowOverflow: BooleanConstructor;
|
|
1269
1269
|
width: vue.PropType<number | "fit">;
|
|
1270
1270
|
height: vue.PropType<number | "fit">;
|
|
1271
|
-
maxWidth: vue.PropType<number | "fit" | "free">;
|
|
1272
|
-
maxHeight: vue.PropType<number | "fit" | "free">;
|
|
1271
|
+
maxWidth: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize__.UseWindowRef) => number | undefined)>;
|
|
1272
|
+
maxHeight: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize__.UseWindowRef) => number | undefined)>;
|
|
1273
1273
|
distance: {
|
|
1274
1274
|
type: NumberConstructor;
|
|
1275
1275
|
default: number;
|
|
@@ -1387,8 +1387,8 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1387
1387
|
allowOverflow: BooleanConstructor;
|
|
1388
1388
|
width: vue.PropType<number | "fit">;
|
|
1389
1389
|
height: vue.PropType<number | "fit">;
|
|
1390
|
-
maxWidth: vue.PropType<number | "fit" | "free">;
|
|
1391
|
-
maxHeight: vue.PropType<number | "fit" | "free">;
|
|
1390
|
+
maxWidth: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize__.UseWindowRef) => number | undefined)>;
|
|
1391
|
+
maxHeight: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize__.UseWindowRef) => number | undefined)>;
|
|
1392
1392
|
distance: {
|
|
1393
1393
|
type: NumberConstructor;
|
|
1394
1394
|
default: number;
|
|
@@ -1957,8 +1957,8 @@ declare const VTooltip: vue.DefineComponent<{
|
|
|
1957
1957
|
allowOverflow: BooleanConstructor;
|
|
1958
1958
|
width: vue.PropType<number | "fit">;
|
|
1959
1959
|
height: vue.PropType<number | "fit">;
|
|
1960
|
-
maxWidth: vue.PropType<number | "fit" | "free">;
|
|
1961
|
-
maxHeight: vue.PropType<number | "fit" | "free">;
|
|
1960
|
+
maxWidth: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize__.UseWindowRef) => number | undefined)>;
|
|
1961
|
+
maxHeight: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize__.UseWindowRef) => number | undefined)>;
|
|
1962
1962
|
distance: {
|
|
1963
1963
|
type: NumberConstructor;
|
|
1964
1964
|
default: number;
|
|
@@ -2076,8 +2076,8 @@ declare const VTooltip: vue.DefineComponent<{
|
|
|
2076
2076
|
allowOverflow: BooleanConstructor;
|
|
2077
2077
|
width: vue.PropType<number | "fit">;
|
|
2078
2078
|
height: vue.PropType<number | "fit">;
|
|
2079
|
-
maxWidth: vue.PropType<number | "fit" | "free">;
|
|
2080
|
-
maxHeight: vue.PropType<number | "fit" | "free">;
|
|
2079
|
+
maxWidth: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize__.UseWindowRef) => number | undefined)>;
|
|
2080
|
+
maxHeight: vue.PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize__.UseWindowRef) => number | undefined)>;
|
|
2081
2081
|
distance: {
|
|
2082
2082
|
type: NumberConstructor;
|
|
2083
2083
|
default: number;
|
|
@@ -4427,6 +4427,7 @@ declare const VFormControl: vue.DefineComponent<{
|
|
|
4427
4427
|
type: vue.PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
4428
4428
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
4429
4429
|
};
|
|
4430
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
4430
4431
|
disabled: BooleanConstructor;
|
|
4431
4432
|
readonly: BooleanConstructor;
|
|
4432
4433
|
touched: BooleanConstructor;
|
|
@@ -4461,6 +4462,7 @@ declare const VFormControl: vue.DefineComponent<{
|
|
|
4461
4462
|
type: vue.PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
4462
4463
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
4463
4464
|
};
|
|
4465
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
4464
4466
|
disabled: BooleanConstructor;
|
|
4465
4467
|
readonly: BooleanConstructor;
|
|
4466
4468
|
touched: BooleanConstructor;
|
|
@@ -4672,6 +4674,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4672
4674
|
type: vue.PropType<_fastkit_vue_form_control__.FormNodeError[]>;
|
|
4673
4675
|
default: () => _fastkit_vue_form_control__.FormNodeError[];
|
|
4674
4676
|
};
|
|
4677
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
4675
4678
|
disabled: BooleanConstructor;
|
|
4676
4679
|
readonly: BooleanConstructor;
|
|
4677
4680
|
touched: BooleanConstructor;
|
|
@@ -4709,7 +4712,6 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4709
4712
|
};
|
|
4710
4713
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
4711
4714
|
error: BooleanConstructor;
|
|
4712
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
4713
4715
|
}, {
|
|
4714
4716
|
loadingMessageRef: vue.ComputedRef<vue.VNodeChild>;
|
|
4715
4717
|
failedToLoadItemsMessageRef: vue.ComputedRef<vue.VNodeChild>;
|
|
@@ -4803,6 +4805,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4803
4805
|
type: vue.PropType<_fastkit_vue_form_control__.FormNodeError[]>;
|
|
4804
4806
|
default: () => _fastkit_vue_form_control__.FormNodeError[];
|
|
4805
4807
|
};
|
|
4808
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
4806
4809
|
disabled: BooleanConstructor;
|
|
4807
4810
|
readonly: BooleanConstructor;
|
|
4808
4811
|
touched: BooleanConstructor;
|
|
@@ -4840,7 +4843,6 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4840
4843
|
};
|
|
4841
4844
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
4842
4845
|
error: BooleanConstructor;
|
|
4843
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
4844
4846
|
}>> & {
|
|
4845
4847
|
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
|
4846
4848
|
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
@@ -5054,6 +5056,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5054
5056
|
type: vue.PropType<_fastkit_vue_form_control__.FormNodeError[]>;
|
|
5055
5057
|
default: () => _fastkit_vue_form_control__.FormNodeError[];
|
|
5056
5058
|
};
|
|
5059
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
5057
5060
|
disabled: BooleanConstructor;
|
|
5058
5061
|
readonly: BooleanConstructor;
|
|
5059
5062
|
touched: BooleanConstructor;
|
|
@@ -5091,7 +5094,6 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5091
5094
|
};
|
|
5092
5095
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
5093
5096
|
error: BooleanConstructor;
|
|
5094
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
5095
5097
|
}, {
|
|
5096
5098
|
loadingMessageRef: vue.ComputedRef<vue.VNodeChild>;
|
|
5097
5099
|
failedToLoadItemsMessageRef: vue.ComputedRef<vue.VNodeChild>;
|
|
@@ -5185,6 +5187,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5185
5187
|
type: vue.PropType<_fastkit_vue_form_control__.FormNodeError[]>;
|
|
5186
5188
|
default: () => _fastkit_vue_form_control__.FormNodeError[];
|
|
5187
5189
|
};
|
|
5190
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
5188
5191
|
disabled: BooleanConstructor;
|
|
5189
5192
|
readonly: BooleanConstructor;
|
|
5190
5193
|
touched: BooleanConstructor;
|
|
@@ -5222,7 +5225,6 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5222
5225
|
};
|
|
5223
5226
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
5224
5227
|
error: BooleanConstructor;
|
|
5225
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
5226
5228
|
}>> & {
|
|
5227
5229
|
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
|
5228
5230
|
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
@@ -5436,6 +5438,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5436
5438
|
type: vue.PropType<_fastkit_vue_form_control__.FormNodeError[]>;
|
|
5437
5439
|
default: () => _fastkit_vue_form_control__.FormNodeError[];
|
|
5438
5440
|
};
|
|
5441
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
5439
5442
|
disabled: BooleanConstructor;
|
|
5440
5443
|
readonly: BooleanConstructor;
|
|
5441
5444
|
touched: BooleanConstructor;
|
|
@@ -5473,7 +5476,6 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5473
5476
|
};
|
|
5474
5477
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
5475
5478
|
error: BooleanConstructor;
|
|
5476
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
5477
5479
|
}, {
|
|
5478
5480
|
loadingMessageRef: vue.ComputedRef<vue.VNodeChild>;
|
|
5479
5481
|
failedToLoadItemsMessageRef: vue.ComputedRef<vue.VNodeChild>;
|
|
@@ -5567,6 +5569,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5567
5569
|
type: vue.PropType<_fastkit_vue_form_control__.FormNodeError[]>;
|
|
5568
5570
|
default: () => _fastkit_vue_form_control__.FormNodeError[];
|
|
5569
5571
|
};
|
|
5572
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
5570
5573
|
disabled: BooleanConstructor;
|
|
5571
5574
|
readonly: BooleanConstructor;
|
|
5572
5575
|
touched: BooleanConstructor;
|
|
@@ -5604,7 +5607,6 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5604
5607
|
};
|
|
5605
5608
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
5606
5609
|
error: BooleanConstructor;
|
|
5607
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
5608
5610
|
}>> & {
|
|
5609
5611
|
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
|
5610
5612
|
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
@@ -5872,6 +5874,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5872
5874
|
type: PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
5873
5875
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
5874
5876
|
};
|
|
5877
|
+
errorMessages: PropType<string | string[]>;
|
|
5875
5878
|
disabled: BooleanConstructor;
|
|
5876
5879
|
readonly: BooleanConstructor;
|
|
5877
5880
|
touched: BooleanConstructor;
|
|
@@ -5905,7 +5908,6 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5905
5908
|
};
|
|
5906
5909
|
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
5907
5910
|
error: BooleanConstructor;
|
|
5908
|
-
errorMessages: PropType<string | string[]>;
|
|
5909
5911
|
}, {
|
|
5910
5912
|
iconName: IconName;
|
|
5911
5913
|
menuOpened: Ref<boolean>;
|
|
@@ -6021,6 +6023,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
6021
6023
|
type: PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
6022
6024
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
6023
6025
|
};
|
|
6026
|
+
errorMessages: PropType<string | string[]>;
|
|
6024
6027
|
disabled: BooleanConstructor;
|
|
6025
6028
|
readonly: BooleanConstructor;
|
|
6026
6029
|
touched: BooleanConstructor;
|
|
@@ -6054,7 +6057,6 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
6054
6057
|
};
|
|
6055
6058
|
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6056
6059
|
error: BooleanConstructor;
|
|
6057
|
-
errorMessages: PropType<string | string[]>;
|
|
6058
6060
|
}>> & {
|
|
6059
6061
|
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
|
6060
6062
|
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
@@ -6368,6 +6370,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6368
6370
|
type: vue.PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
6369
6371
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
6370
6372
|
};
|
|
6373
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
6371
6374
|
disabled: BooleanConstructor;
|
|
6372
6375
|
readonly: BooleanConstructor;
|
|
6373
6376
|
touched: BooleanConstructor;
|
|
@@ -6409,7 +6412,6 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6409
6412
|
};
|
|
6410
6413
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6411
6414
|
error: BooleanConstructor;
|
|
6412
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
6413
6415
|
}, {
|
|
6414
6416
|
parentControl: ControlProvider | null;
|
|
6415
6417
|
size: vue.ComputedRef<"sm" | "md" | "lg">;
|
|
@@ -6505,6 +6507,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6505
6507
|
type: vue.PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
6506
6508
|
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
6507
6509
|
};
|
|
6510
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
6508
6511
|
disabled: BooleanConstructor;
|
|
6509
6512
|
readonly: BooleanConstructor;
|
|
6510
6513
|
touched: BooleanConstructor;
|
|
@@ -6546,7 +6549,6 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6546
6549
|
};
|
|
6547
6550
|
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6548
6551
|
error: BooleanConstructor;
|
|
6549
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
6550
6552
|
}>> & {
|
|
6551
6553
|
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
|
6552
6554
|
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/vui",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.12",
|
|
4
4
|
"description": "A simple, extensible UI kit for Vue applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fastkit",
|
|
@@ -54,19 +54,19 @@
|
|
|
54
54
|
"@fastkit/rules": "0.13.1",
|
|
55
55
|
"@fastkit/stylebase": "0.13.0",
|
|
56
56
|
"@fastkit/tiny-logger": "0.13.1",
|
|
57
|
-
"@fastkit/vue-action": "0.2.
|
|
57
|
+
"@fastkit/vue-action": "0.2.3",
|
|
58
58
|
"@fastkit/vue-app-layout": "0.14.2",
|
|
59
59
|
"@fastkit/vue-body-scroll-lock": "0.1.3",
|
|
60
60
|
"@fastkit/vue-click-outside": "0.1.3",
|
|
61
61
|
"@fastkit/vue-color-scheme": "0.14.2",
|
|
62
|
-
"@fastkit/vue-form-control": "0.15.
|
|
63
|
-
"@fastkit/vue-keyboard": "0.1.1",
|
|
62
|
+
"@fastkit/vue-form-control": "0.15.4",
|
|
64
63
|
"@fastkit/vue-loading": "0.14.3",
|
|
65
64
|
"@fastkit/vue-location": "0.1.3",
|
|
66
65
|
"@fastkit/vue-media-match": "0.13.7",
|
|
66
|
+
"@fastkit/vue-keyboard": "0.1.1",
|
|
67
67
|
"@fastkit/vue-resize": "0.1.3",
|
|
68
68
|
"@fastkit/vue-scroller": "0.14.2",
|
|
69
|
-
"@fastkit/vue-stack": "0.15.
|
|
69
|
+
"@fastkit/vue-stack": "0.15.10",
|
|
70
70
|
"@fastkit/vue-transitions": "0.1.4",
|
|
71
71
|
"@fastkit/vue-utils": "0.14.1"
|
|
72
72
|
},
|