@fastkit/vui 0.16.81 → 0.16.82
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 +64 -70
- package/package.json +10 -10
package/dist/vui.d.ts
CHANGED
|
@@ -122,7 +122,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
122
122
|
validator: (value: any) => boolean;
|
|
123
123
|
};
|
|
124
124
|
loading: BooleanConstructor;
|
|
125
|
-
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
125
|
+
nodeControl: PropType<FormNodeControl<any, any, BooleanConstructor>>;
|
|
126
126
|
label: PropType<VNodeChildOrSlot>;
|
|
127
127
|
hint: PropType<VNodeChildOrSlot>;
|
|
128
128
|
hinttip: PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -175,7 +175,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
175
175
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
176
176
|
default: () => never[];
|
|
177
177
|
};
|
|
178
|
-
validationDeps: PropType<(nodeControl: FormNodeControl<any, any>) => any>;
|
|
178
|
+
validationDeps: PropType<(nodeControl: FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
179
179
|
error: BooleanConstructor;
|
|
180
180
|
showOwnErrors: {
|
|
181
181
|
type: BooleanConstructor;
|
|
@@ -208,7 +208,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
208
208
|
validator: (value: any) => boolean;
|
|
209
209
|
};
|
|
210
210
|
loading: BooleanConstructor;
|
|
211
|
-
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
211
|
+
nodeControl: PropType<FormNodeControl<any, any, BooleanConstructor>>;
|
|
212
212
|
label: PropType<VNodeChildOrSlot>;
|
|
213
213
|
hint: PropType<VNodeChildOrSlot>;
|
|
214
214
|
hinttip: PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -261,7 +261,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
261
261
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
262
262
|
default: () => never[];
|
|
263
263
|
};
|
|
264
|
-
validationDeps: PropType<(nodeControl: FormNodeControl<any, any>) => any>;
|
|
264
|
+
validationDeps: PropType<(nodeControl: FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
265
265
|
error: BooleanConstructor;
|
|
266
266
|
showOwnErrors: {
|
|
267
267
|
type: BooleanConstructor;
|
|
@@ -418,7 +418,7 @@ declare function createTextFieldProps(): {
|
|
|
418
418
|
type: (StringConstructor | NumberConstructor)[];
|
|
419
419
|
default: number;
|
|
420
420
|
};
|
|
421
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
421
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
422
422
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
423
423
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
424
424
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -478,7 +478,7 @@ declare function createTextFieldProps(): {
|
|
|
478
478
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
479
479
|
default: () => never[];
|
|
480
480
|
};
|
|
481
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
481
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
482
482
|
error: BooleanConstructor;
|
|
483
483
|
showOwnErrors: {
|
|
484
484
|
type: BooleanConstructor;
|
|
@@ -515,7 +515,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
515
515
|
type: (StringConstructor | NumberConstructor)[];
|
|
516
516
|
default: number;
|
|
517
517
|
};
|
|
518
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
518
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
519
519
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
520
520
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
521
521
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -575,7 +575,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
575
575
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
576
576
|
default: () => never[];
|
|
577
577
|
};
|
|
578
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
578
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
579
579
|
error: BooleanConstructor;
|
|
580
580
|
showOwnErrors: {
|
|
581
581
|
type: BooleanConstructor;
|
|
@@ -620,7 +620,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
620
620
|
type: (StringConstructor | NumberConstructor)[];
|
|
621
621
|
default: number;
|
|
622
622
|
};
|
|
623
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
623
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
624
624
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
625
625
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
626
626
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -680,7 +680,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
680
680
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
681
681
|
default: () => never[];
|
|
682
682
|
};
|
|
683
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
683
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
684
684
|
error: BooleanConstructor;
|
|
685
685
|
showOwnErrors: {
|
|
686
686
|
type: BooleanConstructor;
|
|
@@ -4624,7 +4624,7 @@ declare const VFormControl: vue.DefineComponent<{
|
|
|
4624
4624
|
error?: ((error: _fastkit_vue_form_control.FormNodeError) => VNodeChild) | undefined;
|
|
4625
4625
|
default?: ((form: FormControl) => VNodeChild) | undefined;
|
|
4626
4626
|
}>;
|
|
4627
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
4627
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
4628
4628
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4629
4629
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4630
4630
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -4662,7 +4662,7 @@ declare const VFormControl: vue.DefineComponent<{
|
|
|
4662
4662
|
error?: ((error: _fastkit_vue_form_control.FormNodeError) => VNodeChild) | undefined;
|
|
4663
4663
|
default?: ((form: FormControl) => VNodeChild) | undefined;
|
|
4664
4664
|
}>;
|
|
4665
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
4665
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
4666
4666
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4667
4667
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
4668
4668
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -4749,7 +4749,7 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4749
4749
|
readonly: BooleanConstructor;
|
|
4750
4750
|
viewonly: BooleanConstructor;
|
|
4751
4751
|
spellcheck: BooleanConstructor;
|
|
4752
|
-
required: BooleanConstructor
|
|
4752
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
4753
4753
|
clearable: BooleanConstructor;
|
|
4754
4754
|
validateTiming: {
|
|
4755
4755
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -4759,7 +4759,7 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4759
4759
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
4760
4760
|
default: () => never[];
|
|
4761
4761
|
};
|
|
4762
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
4762
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
4763
4763
|
error: BooleanConstructor;
|
|
4764
4764
|
errorMessages: vue.PropType<string | string[]>;
|
|
4765
4765
|
showOwnErrors: {
|
|
@@ -4795,7 +4795,7 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4795
4795
|
readonly: BooleanConstructor;
|
|
4796
4796
|
viewonly: BooleanConstructor;
|
|
4797
4797
|
spellcheck: BooleanConstructor;
|
|
4798
|
-
required: BooleanConstructor
|
|
4798
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
4799
4799
|
clearable: BooleanConstructor;
|
|
4800
4800
|
validateTiming: {
|
|
4801
4801
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -4805,7 +4805,7 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4805
4805
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
4806
4806
|
default: () => never[];
|
|
4807
4807
|
};
|
|
4808
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
4808
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
4809
4809
|
error: BooleanConstructor;
|
|
4810
4810
|
errorMessages: vue.PropType<string | string[]>;
|
|
4811
4811
|
showOwnErrors: {
|
|
@@ -4820,7 +4820,6 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
4820
4820
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
4821
4821
|
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
4822
4822
|
}, {
|
|
4823
|
-
required: boolean;
|
|
4824
4823
|
loading: boolean;
|
|
4825
4824
|
tabindex: string | number;
|
|
4826
4825
|
autofocus: boolean;
|
|
@@ -4857,7 +4856,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4857
4856
|
validator: (value: any) => boolean;
|
|
4858
4857
|
};
|
|
4859
4858
|
loading: BooleanConstructor;
|
|
4860
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any>>;
|
|
4859
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>>;
|
|
4861
4860
|
label: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4862
4861
|
hint: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4863
4862
|
hinttip: vue.PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
@@ -4910,7 +4909,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4910
4909
|
type: vue.PropType<_fastkit_vue_form_control__.RecursiveVerifiableRule>;
|
|
4911
4910
|
default: () => never[];
|
|
4912
4911
|
};
|
|
4913
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
4912
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
4914
4913
|
error: BooleanConstructor;
|
|
4915
4914
|
showOwnErrors: {
|
|
4916
4915
|
type: BooleanConstructor;
|
|
@@ -4943,7 +4942,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4943
4942
|
validator: (value: any) => boolean;
|
|
4944
4943
|
};
|
|
4945
4944
|
loading: BooleanConstructor;
|
|
4946
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any>>;
|
|
4945
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>>;
|
|
4947
4946
|
label: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4948
4947
|
hint: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4949
4948
|
hinttip: vue.PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
@@ -4996,7 +4995,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
4996
4995
|
type: vue.PropType<_fastkit_vue_form_control__.RecursiveVerifiableRule>;
|
|
4997
4996
|
default: () => never[];
|
|
4998
4997
|
};
|
|
4999
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
4998
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5000
4999
|
error: BooleanConstructor;
|
|
5001
5000
|
showOwnErrors: {
|
|
5002
5001
|
type: BooleanConstructor;
|
|
@@ -5079,7 +5078,7 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5079
5078
|
readonly: BooleanConstructor;
|
|
5080
5079
|
viewonly: BooleanConstructor;
|
|
5081
5080
|
spellcheck: BooleanConstructor;
|
|
5082
|
-
required: BooleanConstructor
|
|
5081
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
5083
5082
|
clearable: BooleanConstructor;
|
|
5084
5083
|
validateTiming: {
|
|
5085
5084
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5089,7 +5088,7 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5089
5088
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
5090
5089
|
default: () => never[];
|
|
5091
5090
|
};
|
|
5092
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
5091
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5093
5092
|
error: BooleanConstructor;
|
|
5094
5093
|
errorMessages: vue.PropType<string | string[]>;
|
|
5095
5094
|
showOwnErrors: {
|
|
@@ -5124,7 +5123,7 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5124
5123
|
readonly: BooleanConstructor;
|
|
5125
5124
|
viewonly: BooleanConstructor;
|
|
5126
5125
|
spellcheck: BooleanConstructor;
|
|
5127
|
-
required: BooleanConstructor
|
|
5126
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
5128
5127
|
clearable: BooleanConstructor;
|
|
5129
5128
|
validateTiming: {
|
|
5130
5129
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5134,7 +5133,7 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5134
5133
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
5135
5134
|
default: () => never[];
|
|
5136
5135
|
};
|
|
5137
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
5136
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5138
5137
|
error: BooleanConstructor;
|
|
5139
5138
|
errorMessages: vue.PropType<string | string[]>;
|
|
5140
5139
|
showOwnErrors: {
|
|
@@ -5149,7 +5148,6 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
5149
5148
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5150
5149
|
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
5151
5150
|
}, {
|
|
5152
|
-
required: boolean;
|
|
5153
5151
|
loading: boolean;
|
|
5154
5152
|
tabindex: string | number;
|
|
5155
5153
|
autofocus: boolean;
|
|
@@ -5185,7 +5183,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5185
5183
|
validator: (value: any) => boolean;
|
|
5186
5184
|
};
|
|
5187
5185
|
loading: BooleanConstructor;
|
|
5188
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any>>;
|
|
5186
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>>;
|
|
5189
5187
|
label: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
5190
5188
|
hint: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
5191
5189
|
hinttip: vue.PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
@@ -5238,7 +5236,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5238
5236
|
type: vue.PropType<_fastkit_vue_form_control__.RecursiveVerifiableRule>;
|
|
5239
5237
|
default: () => never[];
|
|
5240
5238
|
};
|
|
5241
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
5239
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5242
5240
|
error: BooleanConstructor;
|
|
5243
5241
|
showOwnErrors: {
|
|
5244
5242
|
type: BooleanConstructor;
|
|
@@ -5271,7 +5269,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5271
5269
|
validator: (value: any) => boolean;
|
|
5272
5270
|
};
|
|
5273
5271
|
loading: BooleanConstructor;
|
|
5274
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any>>;
|
|
5272
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>>;
|
|
5275
5273
|
label: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
5276
5274
|
hint: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
5277
5275
|
hinttip: vue.PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
@@ -5324,7 +5322,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
5324
5322
|
type: vue.PropType<_fastkit_vue_form_control__.RecursiveVerifiableRule>;
|
|
5325
5323
|
default: () => never[];
|
|
5326
5324
|
};
|
|
5327
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
5325
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5328
5326
|
error: BooleanConstructor;
|
|
5329
5327
|
showOwnErrors: {
|
|
5330
5328
|
type: BooleanConstructor;
|
|
@@ -5407,7 +5405,7 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5407
5405
|
readonly: BooleanConstructor;
|
|
5408
5406
|
viewonly: BooleanConstructor;
|
|
5409
5407
|
spellcheck: BooleanConstructor;
|
|
5410
|
-
required: BooleanConstructor
|
|
5408
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
5411
5409
|
clearable: BooleanConstructor;
|
|
5412
5410
|
validateTiming: {
|
|
5413
5411
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5417,7 +5415,7 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5417
5415
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
5418
5416
|
default: () => never[];
|
|
5419
5417
|
};
|
|
5420
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
5418
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5421
5419
|
error: BooleanConstructor;
|
|
5422
5420
|
errorMessages: vue.PropType<string | string[]>;
|
|
5423
5421
|
showOwnErrors: {
|
|
@@ -5452,7 +5450,7 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5452
5450
|
readonly: BooleanConstructor;
|
|
5453
5451
|
viewonly: BooleanConstructor;
|
|
5454
5452
|
spellcheck: BooleanConstructor;
|
|
5455
|
-
required: BooleanConstructor
|
|
5453
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
5456
5454
|
clearable: BooleanConstructor;
|
|
5457
5455
|
validateTiming: {
|
|
5458
5456
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5462,7 +5460,7 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5462
5460
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
5463
5461
|
default: () => never[];
|
|
5464
5462
|
};
|
|
5465
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
5463
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5466
5464
|
error: BooleanConstructor;
|
|
5467
5465
|
errorMessages: vue.PropType<string | string[]>;
|
|
5468
5466
|
showOwnErrors: {
|
|
@@ -5477,7 +5475,6 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
5477
5475
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5478
5476
|
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
5479
5477
|
}, {
|
|
5480
|
-
required: boolean;
|
|
5481
5478
|
loading: boolean;
|
|
5482
5479
|
tabindex: string | number;
|
|
5483
5480
|
autofocus: boolean;
|
|
@@ -5513,7 +5510,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5513
5510
|
validator: (value: any) => boolean;
|
|
5514
5511
|
};
|
|
5515
5512
|
loading: BooleanConstructor;
|
|
5516
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any>>;
|
|
5513
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>>;
|
|
5517
5514
|
label: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
5518
5515
|
hint: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
5519
5516
|
hinttip: vue.PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
@@ -5566,7 +5563,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5566
5563
|
type: vue.PropType<_fastkit_vue_form_control__.RecursiveVerifiableRule>;
|
|
5567
5564
|
default: () => never[];
|
|
5568
5565
|
};
|
|
5569
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
5566
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5570
5567
|
error: BooleanConstructor;
|
|
5571
5568
|
showOwnErrors: {
|
|
5572
5569
|
type: BooleanConstructor;
|
|
@@ -5599,7 +5596,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5599
5596
|
validator: (value: any) => boolean;
|
|
5600
5597
|
};
|
|
5601
5598
|
loading: BooleanConstructor;
|
|
5602
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any>>;
|
|
5599
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>>;
|
|
5603
5600
|
label: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
5604
5601
|
hint: vue.PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
5605
5602
|
hinttip: vue.PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
@@ -5652,7 +5649,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
5652
5649
|
type: vue.PropType<_fastkit_vue_form_control__.RecursiveVerifiableRule>;
|
|
5653
5650
|
default: () => never[];
|
|
5654
5651
|
};
|
|
5655
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
5652
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5656
5653
|
error: BooleanConstructor;
|
|
5657
5654
|
showOwnErrors: {
|
|
5658
5655
|
type: BooleanConstructor;
|
|
@@ -5735,7 +5732,7 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5735
5732
|
readonly: BooleanConstructor;
|
|
5736
5733
|
viewonly: BooleanConstructor;
|
|
5737
5734
|
spellcheck: BooleanConstructor;
|
|
5738
|
-
required: BooleanConstructor
|
|
5735
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
5739
5736
|
clearable: BooleanConstructor;
|
|
5740
5737
|
validateTiming: {
|
|
5741
5738
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5745,7 +5742,7 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5745
5742
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
5746
5743
|
default: () => never[];
|
|
5747
5744
|
};
|
|
5748
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
5745
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5749
5746
|
error: BooleanConstructor;
|
|
5750
5747
|
errorMessages: vue.PropType<string | string[]>;
|
|
5751
5748
|
showOwnErrors: {
|
|
@@ -5780,7 +5777,7 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5780
5777
|
readonly: BooleanConstructor;
|
|
5781
5778
|
viewonly: BooleanConstructor;
|
|
5782
5779
|
spellcheck: BooleanConstructor;
|
|
5783
|
-
required: BooleanConstructor
|
|
5780
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
5784
5781
|
clearable: BooleanConstructor;
|
|
5785
5782
|
validateTiming: {
|
|
5786
5783
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -5790,7 +5787,7 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5790
5787
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
5791
5788
|
default: () => never[];
|
|
5792
5789
|
};
|
|
5793
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
5790
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5794
5791
|
error: BooleanConstructor;
|
|
5795
5792
|
errorMessages: vue.PropType<string | string[]>;
|
|
5796
5793
|
showOwnErrors: {
|
|
@@ -5805,7 +5802,6 @@ declare const VOption: vue.DefineComponent<{
|
|
|
5805
5802
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5806
5803
|
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
5807
5804
|
}, {
|
|
5808
|
-
required: boolean;
|
|
5809
5805
|
loading: boolean;
|
|
5810
5806
|
tabindex: string | number;
|
|
5811
5807
|
autofocus: boolean;
|
|
@@ -5887,7 +5883,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5887
5883
|
type: (StringConstructor | NumberConstructor)[];
|
|
5888
5884
|
default: number;
|
|
5889
5885
|
};
|
|
5890
|
-
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
5886
|
+
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
5891
5887
|
label: PropType<VNodeChildOrSlot>;
|
|
5892
5888
|
hint: PropType<VNodeChildOrSlot>;
|
|
5893
5889
|
hinttip: PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -5936,7 +5932,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5936
5932
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
5937
5933
|
default: () => never[];
|
|
5938
5934
|
};
|
|
5939
|
-
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
5935
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
5940
5936
|
error: BooleanConstructor;
|
|
5941
5937
|
showOwnErrors: {
|
|
5942
5938
|
type: BooleanConstructor;
|
|
@@ -5983,7 +5979,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
5983
5979
|
type: (StringConstructor | NumberConstructor)[];
|
|
5984
5980
|
default: number;
|
|
5985
5981
|
};
|
|
5986
|
-
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
5982
|
+
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
5987
5983
|
label: PropType<VNodeChildOrSlot>;
|
|
5988
5984
|
hint: PropType<VNodeChildOrSlot>;
|
|
5989
5985
|
hinttip: PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -6032,7 +6028,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
6032
6028
|
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
6033
6029
|
default: () => never[];
|
|
6034
6030
|
};
|
|
6035
|
-
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6031
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6036
6032
|
error: BooleanConstructor;
|
|
6037
6033
|
showOwnErrors: {
|
|
6038
6034
|
type: BooleanConstructor;
|
|
@@ -6151,7 +6147,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6151
6147
|
type: PropType<_fastkit_vue_form_control__.RecursiveVerifiableRule>;
|
|
6152
6148
|
default: () => never[];
|
|
6153
6149
|
};
|
|
6154
|
-
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
6150
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6155
6151
|
error: BooleanConstructor;
|
|
6156
6152
|
errorMessages: PropType<string | string[]>;
|
|
6157
6153
|
showOwnErrors: {
|
|
@@ -6165,7 +6161,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6165
6161
|
};
|
|
6166
6162
|
hint: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
6167
6163
|
infoAppends: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
6168
|
-
nodeControl: PropType<_fastkit_vue_form_control__.FormNodeControl<any, any>>;
|
|
6164
|
+
nodeControl: PropType<_fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>>;
|
|
6169
6165
|
hinttip: PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
6170
6166
|
hinttipDelay: PropType<_fastkit_vue_form_control__.FormControlHinttipDelay>;
|
|
6171
6167
|
validating: BooleanConstructor;
|
|
@@ -6255,7 +6251,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6255
6251
|
type: PropType<_fastkit_vue_form_control__.RecursiveVerifiableRule>;
|
|
6256
6252
|
default: () => never[];
|
|
6257
6253
|
};
|
|
6258
|
-
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>) => any>;
|
|
6254
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6259
6255
|
error: BooleanConstructor;
|
|
6260
6256
|
errorMessages: PropType<string | string[]>;
|
|
6261
6257
|
showOwnErrors: {
|
|
@@ -6269,7 +6265,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
6269
6265
|
};
|
|
6270
6266
|
hint: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
6271
6267
|
infoAppends: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
6272
|
-
nodeControl: PropType<_fastkit_vue_form_control__.FormNodeControl<any, any>>;
|
|
6268
|
+
nodeControl: PropType<_fastkit_vue_form_control__.FormNodeControl<any, any, BooleanConstructor>>;
|
|
6273
6269
|
hinttip: PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
6274
6270
|
hinttipDelay: PropType<_fastkit_vue_form_control__.FormControlHinttipDelay>;
|
|
6275
6271
|
validating: BooleanConstructor;
|
|
@@ -6372,7 +6368,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6372
6368
|
type: (StringConstructor | NumberConstructor)[];
|
|
6373
6369
|
default: number;
|
|
6374
6370
|
};
|
|
6375
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
6371
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
6376
6372
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6377
6373
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6378
6374
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -6428,7 +6424,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6428
6424
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
6429
6425
|
default: () => never[];
|
|
6430
6426
|
};
|
|
6431
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6427
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6432
6428
|
error: BooleanConstructor;
|
|
6433
6429
|
showOwnErrors: {
|
|
6434
6430
|
type: BooleanConstructor;
|
|
@@ -6467,7 +6463,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6467
6463
|
type: (StringConstructor | NumberConstructor)[];
|
|
6468
6464
|
default: number;
|
|
6469
6465
|
};
|
|
6470
|
-
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
6466
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
6471
6467
|
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6472
6468
|
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6473
6469
|
hinttip: vue.PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
@@ -6523,7 +6519,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
6523
6519
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
6524
6520
|
default: () => never[];
|
|
6525
6521
|
};
|
|
6526
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6522
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6527
6523
|
error: BooleanConstructor;
|
|
6528
6524
|
showOwnErrors: {
|
|
6529
6525
|
type: BooleanConstructor;
|
|
@@ -6596,7 +6592,7 @@ declare function createVFormGroupProps(): {
|
|
|
6596
6592
|
readonly: BooleanConstructor;
|
|
6597
6593
|
viewonly: BooleanConstructor;
|
|
6598
6594
|
spellcheck: BooleanConstructor;
|
|
6599
|
-
required: BooleanConstructor
|
|
6595
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
6600
6596
|
clearable: BooleanConstructor;
|
|
6601
6597
|
validateTiming: {
|
|
6602
6598
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6606,7 +6602,7 @@ declare function createVFormGroupProps(): {
|
|
|
6606
6602
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
6607
6603
|
default: () => never[];
|
|
6608
6604
|
};
|
|
6609
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6605
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6610
6606
|
error: BooleanConstructor;
|
|
6611
6607
|
errorMessages: vue.PropType<string | string[]>;
|
|
6612
6608
|
showOwnErrors: {
|
|
@@ -6637,7 +6633,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6637
6633
|
readonly: BooleanConstructor;
|
|
6638
6634
|
viewonly: BooleanConstructor;
|
|
6639
6635
|
spellcheck: BooleanConstructor;
|
|
6640
|
-
required: BooleanConstructor
|
|
6636
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
6641
6637
|
clearable: BooleanConstructor;
|
|
6642
6638
|
validateTiming: {
|
|
6643
6639
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6647,7 +6643,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6647
6643
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
6648
6644
|
default: () => never[];
|
|
6649
6645
|
};
|
|
6650
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6646
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6651
6647
|
error: BooleanConstructor;
|
|
6652
6648
|
errorMessages: vue.PropType<string | string[]>;
|
|
6653
6649
|
showOwnErrors: {
|
|
@@ -6685,7 +6681,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6685
6681
|
readonly: BooleanConstructor;
|
|
6686
6682
|
viewonly: BooleanConstructor;
|
|
6687
6683
|
spellcheck: BooleanConstructor;
|
|
6688
|
-
required: BooleanConstructor
|
|
6684
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
6689
6685
|
clearable: BooleanConstructor;
|
|
6690
6686
|
validateTiming: {
|
|
6691
6687
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6695,7 +6691,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6695
6691
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
6696
6692
|
default: () => never[];
|
|
6697
6693
|
};
|
|
6698
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6694
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6699
6695
|
error: BooleanConstructor;
|
|
6700
6696
|
errorMessages: vue.PropType<string | string[]>;
|
|
6701
6697
|
showOwnErrors: {
|
|
@@ -6710,7 +6706,6 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6710
6706
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
6711
6707
|
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
6712
6708
|
}, {
|
|
6713
|
-
required: boolean;
|
|
6714
6709
|
loading: boolean;
|
|
6715
6710
|
collectErrorMessages: boolean;
|
|
6716
6711
|
tabindex: string | number;
|
|
@@ -6772,7 +6767,7 @@ declare function createVFormProps(): {
|
|
|
6772
6767
|
readonly: BooleanConstructor;
|
|
6773
6768
|
viewonly: BooleanConstructor;
|
|
6774
6769
|
spellcheck: BooleanConstructor;
|
|
6775
|
-
required: BooleanConstructor
|
|
6770
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
6776
6771
|
clearable: BooleanConstructor;
|
|
6777
6772
|
validateTiming: {
|
|
6778
6773
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6782,7 +6777,7 @@ declare function createVFormProps(): {
|
|
|
6782
6777
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
6783
6778
|
default: () => never[];
|
|
6784
6779
|
};
|
|
6785
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6780
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6786
6781
|
error: BooleanConstructor;
|
|
6787
6782
|
errorMessages: vue.PropType<string | string[]>;
|
|
6788
6783
|
showOwnErrors: {
|
|
@@ -6824,7 +6819,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6824
6819
|
readonly: BooleanConstructor;
|
|
6825
6820
|
viewonly: BooleanConstructor;
|
|
6826
6821
|
spellcheck: BooleanConstructor;
|
|
6827
|
-
required: BooleanConstructor
|
|
6822
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
6828
6823
|
clearable: BooleanConstructor;
|
|
6829
6824
|
validateTiming: {
|
|
6830
6825
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6834,7 +6829,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6834
6829
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
6835
6830
|
default: () => never[];
|
|
6836
6831
|
};
|
|
6837
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6832
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6838
6833
|
error: BooleanConstructor;
|
|
6839
6834
|
errorMessages: vue.PropType<string | string[]>;
|
|
6840
6835
|
showOwnErrors: {
|
|
@@ -6883,7 +6878,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6883
6878
|
readonly: BooleanConstructor;
|
|
6884
6879
|
viewonly: BooleanConstructor;
|
|
6885
6880
|
spellcheck: BooleanConstructor;
|
|
6886
|
-
required: BooleanConstructor
|
|
6881
|
+
required: BooleanConstructor | vue.PropType<boolean>;
|
|
6887
6882
|
clearable: BooleanConstructor;
|
|
6888
6883
|
validateTiming: {
|
|
6889
6884
|
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
@@ -6893,7 +6888,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6893
6888
|
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRule>;
|
|
6894
6889
|
default: () => never[];
|
|
6895
6890
|
};
|
|
6896
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
6891
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
6897
6892
|
error: BooleanConstructor;
|
|
6898
6893
|
errorMessages: vue.PropType<string | string[]>;
|
|
6899
6894
|
showOwnErrors: {
|
|
@@ -6910,7 +6905,6 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6910
6905
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
6911
6906
|
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
6912
6907
|
}, {
|
|
6913
|
-
required: boolean;
|
|
6914
6908
|
loading: boolean;
|
|
6915
6909
|
autoValidate: boolean;
|
|
6916
6910
|
sending: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/vui",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.82",
|
|
4
4
|
"description": "A simple, extensible UI kit for Vue applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fastkit",
|
|
@@ -44,28 +44,28 @@
|
|
|
44
44
|
"src"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@fastkit/color-scheme": "1.0.14",
|
|
48
|
-
"@fastkit/dom": "0.1.7",
|
|
49
|
-
"@fastkit/helpers": "0.13.7",
|
|
50
47
|
"@fastkit/color-scheme-gen": "0.13.14",
|
|
48
|
+
"@fastkit/dom": "0.1.7",
|
|
49
|
+
"@fastkit/color-scheme": "1.0.14",
|
|
51
50
|
"@fastkit/icon-font": "1.0.9",
|
|
52
|
-
"@fastkit/
|
|
51
|
+
"@fastkit/helpers": "0.13.7",
|
|
53
52
|
"@fastkit/media-match": "1.0.9",
|
|
53
|
+
"@fastkit/media-match-gen": "0.13.14",
|
|
54
|
+
"@fastkit/stylebase": "0.13.1",
|
|
54
55
|
"@fastkit/rules": "0.13.8",
|
|
55
56
|
"@fastkit/tiny-logger": "0.13.7",
|
|
56
57
|
"@fastkit/vue-app-layout": "0.14.17",
|
|
57
|
-
"@fastkit/vue-action": "0.2.15",
|
|
58
58
|
"@fastkit/vue-body-scroll-lock": "0.1.14",
|
|
59
|
-
"@fastkit/vue-click-outside": "0.1.15",
|
|
60
|
-
"@fastkit/vue-form-control": "0.17.0",
|
|
61
59
|
"@fastkit/vue-color-scheme": "0.14.14",
|
|
60
|
+
"@fastkit/vue-action": "0.2.15",
|
|
62
61
|
"@fastkit/vue-keyboard": "0.1.7",
|
|
63
|
-
"@fastkit/vue-
|
|
62
|
+
"@fastkit/vue-form-control": "0.17.1",
|
|
64
63
|
"@fastkit/vue-location": "0.1.21",
|
|
65
64
|
"@fastkit/vue-media-match": "0.13.14",
|
|
66
65
|
"@fastkit/vue-resize": "0.1.14",
|
|
66
|
+
"@fastkit/vue-click-outside": "0.1.15",
|
|
67
67
|
"@fastkit/vue-scroller": "0.14.16",
|
|
68
|
-
"@fastkit/
|
|
68
|
+
"@fastkit/vue-loading": "0.14.15",
|
|
69
69
|
"@fastkit/vue-stack": "0.15.36",
|
|
70
70
|
"@fastkit/vue-transitions": "0.1.15",
|
|
71
71
|
"@fastkit/vue-utils": "0.14.12"
|