@fastkit/vui 0.7.14 → 0.7.21
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/tool/index.js +2 -0
- package/dist/tool/vite-plugin.d.ts.map +1 -1
- package/dist/vui.cjs.js +133 -70
- package/dist/vui.cjs.prod.js +133 -70
- package/dist/vui.css +45 -17
- package/dist/vui.d.ts +119 -0
- package/dist/vui.min.css +1 -1
- package/dist/vui.min.css.map +1 -1
- package/dist/vui.mjs +135 -74
- package/package.json +6 -6
- package/src/components/VFormControl/VFormControl.scss +42 -0
- package/src/components/VFormControl/VFormControl.tsx +69 -4
- package/src/components/VSelect/VSelect.tsx +21 -5
- package/src/components/VTextField/VTextField.tsx +2 -0
- package/src/components/VTextarea/VTextarea.tsx +2 -0
- package/src/components/VWysiwygEditor/VWysiwygEditor.tsx +2 -0
- package/src/components/kits.ts +1 -1
- package/src/composables/form-selector.tsx +2 -0
- package/src/service.tsx +2 -0
- package/src/tool/vite-plugin.ts +2 -0
- package/dist/assets/.DS_Store +0 -0
- package/src/.DS_Store +0 -0
- package/src/assets/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/VButton/.DS_Store +0 -0
- package/src/components/VCheckboxGroup/.DS_Store +0 -0
- package/src/components/VHero/.DS_Store +0 -0
- package/src/components/VRadio/.DS_Store +0 -0
- package/src/components/VRadioGroup/.DS_Store +0 -0
- package/src/components/VSwitchGroup/.DS_Store +0 -0
- package/src/components/VTabs/.DS_Store +0 -0
- package/src/components/VToolbar/.DS_Store +0 -0
- package/src/components/VWysiwygEditor/.DS_Store +0 -0
- package/src/composables/.DS_Store +0 -0
- package/src/styles/.DS_Store +0 -0
- package/src/tool/.DS_Store +0 -0
package/dist/vui.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ import { RawTextareaAutosizeSettings } from '@fastkit/vue-kit';
|
|
|
48
48
|
import { Ref } from 'vue';
|
|
49
49
|
import { RendererElement } from 'vue';
|
|
50
50
|
import { RendererNode } from 'vue';
|
|
51
|
+
import { RequiredChipSource } from '@fastkit/vue-kit';
|
|
51
52
|
import { ResolvedFormSelectorItemData } from '@fastkit/vue-kit';
|
|
52
53
|
import { ResolveRawSlots } from '@fastkit/vue-kit';
|
|
53
54
|
import { ResolveRawSlots as ResolveRawSlots_2 } from '@fastkit/vue-utils';
|
|
@@ -77,6 +78,7 @@ import { VNodeChild } from 'vue';
|
|
|
77
78
|
import { VNodeChildOrSlot } from '@fastkit/vue-kit';
|
|
78
79
|
import { VNodeProps } from 'vue';
|
|
79
80
|
import { VSnackbar } from '@fastkit/vue-kit';
|
|
81
|
+
import { VTooltip } from '@fastkit/vue-kit';
|
|
80
82
|
import { VueColorSchemePluginSettings } from '@fastkit/vue-kit';
|
|
81
83
|
import { VueForm } from '@fastkit/vue-kit';
|
|
82
84
|
import { VueStackService } from '@fastkit/vue-kit';
|
|
@@ -804,6 +806,10 @@ export declare function createPaperProps(): {
|
|
|
804
806
|
elevation: PropType<VuiElevationValue>;
|
|
805
807
|
};
|
|
806
808
|
|
|
809
|
+
export declare function createRequiredChipRenderer(required: () => boolean, props: {
|
|
810
|
+
requiredChip?: RequiredChipSource;
|
|
811
|
+
}, vui?: VuiService): () => VNodeChild;
|
|
812
|
+
|
|
807
813
|
declare function createTextFieldProps(): {
|
|
808
814
|
'v-slots': PropType<ResolveRawSlots<FormControlSlots & InputBoxSlots>>;
|
|
809
815
|
size: {
|
|
@@ -823,6 +829,7 @@ declare function createTextFieldProps(): {
|
|
|
823
829
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
824
830
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
825
831
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
832
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
826
833
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
827
834
|
validating: BooleanConstructor;
|
|
828
835
|
pending: BooleanConstructor;
|
|
@@ -841,6 +848,7 @@ declare function createTextFieldProps(): {
|
|
|
841
848
|
invalid: BooleanConstructor;
|
|
842
849
|
valid: BooleanConstructor;
|
|
843
850
|
hiddenInfo: BooleanConstructor;
|
|
851
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
844
852
|
type: {
|
|
845
853
|
type: PropType<"number" | "search" | "email" | "tel" | "url" | "color" | "date" | "datetime-local" | "month" | "password" | "text" | "time">;
|
|
846
854
|
default: string;
|
|
@@ -864,6 +872,7 @@ declare function createTextFieldProps(): {
|
|
|
864
872
|
autofocus: BooleanConstructor;
|
|
865
873
|
spellcheck: BooleanConstructor;
|
|
866
874
|
viewonly: BooleanConstructor;
|
|
875
|
+
clearable: BooleanConstructor;
|
|
867
876
|
validateTiming: {
|
|
868
877
|
type: PropType<ValidateTiming>;
|
|
869
878
|
default: ValidateTiming;
|
|
@@ -938,6 +947,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
938
947
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
939
948
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
940
949
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
950
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
941
951
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
942
952
|
validating: BooleanConstructor;
|
|
943
953
|
pending: BooleanConstructor;
|
|
@@ -956,6 +966,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
956
966
|
invalid: BooleanConstructor;
|
|
957
967
|
valid: BooleanConstructor;
|
|
958
968
|
hiddenInfo: BooleanConstructor;
|
|
969
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
959
970
|
multiple: {
|
|
960
971
|
type: BooleanConstructor;
|
|
961
972
|
default: boolean;
|
|
@@ -973,6 +984,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
973
984
|
autofocus: BooleanConstructor;
|
|
974
985
|
spellcheck: BooleanConstructor;
|
|
975
986
|
viewonly: BooleanConstructor;
|
|
987
|
+
clearable: BooleanConstructor;
|
|
976
988
|
validateTiming: {
|
|
977
989
|
type: PropType<ValidateTiming>;
|
|
978
990
|
default: ValidateTiming;
|
|
@@ -1048,6 +1060,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
1048
1060
|
nodeControl?: unknown;
|
|
1049
1061
|
label?: unknown;
|
|
1050
1062
|
hint?: unknown;
|
|
1063
|
+
hinttip?: unknown;
|
|
1051
1064
|
infoAppends?: unknown;
|
|
1052
1065
|
validating?: unknown;
|
|
1053
1066
|
pending?: unknown;
|
|
@@ -1063,6 +1076,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
1063
1076
|
invalid?: unknown;
|
|
1064
1077
|
valid?: unknown;
|
|
1065
1078
|
hiddenInfo?: unknown;
|
|
1079
|
+
requiredChip?: unknown;
|
|
1066
1080
|
multiple?: unknown;
|
|
1067
1081
|
items?: unknown;
|
|
1068
1082
|
name?: unknown;
|
|
@@ -1071,6 +1085,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
1071
1085
|
autofocus?: unknown;
|
|
1072
1086
|
spellcheck?: unknown;
|
|
1073
1087
|
viewonly?: unknown;
|
|
1088
|
+
clearable?: unknown;
|
|
1074
1089
|
validateTiming?: unknown;
|
|
1075
1090
|
rules?: unknown;
|
|
1076
1091
|
error?: unknown;
|
|
@@ -1082,6 +1097,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
1082
1097
|
spellcheck: boolean;
|
|
1083
1098
|
viewonly: boolean;
|
|
1084
1099
|
required: boolean;
|
|
1100
|
+
clearable: boolean;
|
|
1085
1101
|
error: boolean;
|
|
1086
1102
|
tabindex: string | number;
|
|
1087
1103
|
validateTiming: ValidateTiming;
|
|
@@ -1107,7 +1123,9 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
1107
1123
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
1108
1124
|
label?: VNodeChildOrSlot<any>;
|
|
1109
1125
|
hint?: VNodeChildOrSlot<any>;
|
|
1126
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
1110
1127
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
1128
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
1111
1129
|
size?: "sm" | "md" | "lg" | undefined;
|
|
1112
1130
|
"v-slots"?: ResolveRawSlots<FormControlSlots> | undefined;
|
|
1113
1131
|
}> & {
|
|
@@ -1123,6 +1141,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
1123
1141
|
spellcheck: boolean;
|
|
1124
1142
|
viewonly: boolean;
|
|
1125
1143
|
required: boolean;
|
|
1144
|
+
clearable: boolean;
|
|
1126
1145
|
error: boolean;
|
|
1127
1146
|
tabindex: string | number;
|
|
1128
1147
|
validateTiming: ValidateTiming;
|
|
@@ -3444,6 +3463,7 @@ export declare const VCheckbox: DefineComponent<{
|
|
|
3444
3463
|
spellcheck: BooleanConstructor;
|
|
3445
3464
|
viewonly: BooleanConstructor;
|
|
3446
3465
|
required: BooleanConstructor;
|
|
3466
|
+
clearable: BooleanConstructor;
|
|
3447
3467
|
validateTiming: {
|
|
3448
3468
|
type: PropType<ValidateTiming>;
|
|
3449
3469
|
default: ValidateTiming;
|
|
@@ -3515,6 +3535,7 @@ export declare const VCheckbox: DefineComponent<{
|
|
|
3515
3535
|
spellcheck?: unknown;
|
|
3516
3536
|
viewonly?: unknown;
|
|
3517
3537
|
required?: unknown;
|
|
3538
|
+
clearable?: unknown;
|
|
3518
3539
|
validateTiming?: unknown;
|
|
3519
3540
|
rules?: unknown;
|
|
3520
3541
|
error?: unknown;
|
|
@@ -3526,6 +3547,7 @@ export declare const VCheckbox: DefineComponent<{
|
|
|
3526
3547
|
spellcheck: boolean;
|
|
3527
3548
|
viewonly: boolean;
|
|
3528
3549
|
required: boolean;
|
|
3550
|
+
clearable: boolean;
|
|
3529
3551
|
error: boolean;
|
|
3530
3552
|
tabindex: string | number;
|
|
3531
3553
|
validateTiming: ValidateTiming;
|
|
@@ -3551,6 +3573,7 @@ export declare const VCheckbox: DefineComponent<{
|
|
|
3551
3573
|
spellcheck: boolean;
|
|
3552
3574
|
viewonly: boolean;
|
|
3553
3575
|
required: boolean;
|
|
3576
|
+
clearable: boolean;
|
|
3554
3577
|
error: boolean;
|
|
3555
3578
|
tabindex: string | number;
|
|
3556
3579
|
validateTiming: ValidateTiming;
|
|
@@ -3571,6 +3594,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3571
3594
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
3572
3595
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
3573
3596
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
3597
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
3574
3598
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
3575
3599
|
validating: BooleanConstructor;
|
|
3576
3600
|
pending: BooleanConstructor;
|
|
@@ -3589,6 +3613,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3589
3613
|
invalid: BooleanConstructor;
|
|
3590
3614
|
valid: BooleanConstructor;
|
|
3591
3615
|
hiddenInfo: BooleanConstructor;
|
|
3616
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
3592
3617
|
multiple: {
|
|
3593
3618
|
type: BooleanConstructor;
|
|
3594
3619
|
default: boolean;
|
|
@@ -3606,6 +3631,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3606
3631
|
autofocus: BooleanConstructor;
|
|
3607
3632
|
spellcheck: BooleanConstructor;
|
|
3608
3633
|
viewonly: BooleanConstructor;
|
|
3634
|
+
clearable: BooleanConstructor;
|
|
3609
3635
|
validateTiming: {
|
|
3610
3636
|
type: PropType<ValidateTiming>;
|
|
3611
3637
|
default: ValidateTiming;
|
|
@@ -3681,6 +3707,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3681
3707
|
nodeControl?: unknown;
|
|
3682
3708
|
label?: unknown;
|
|
3683
3709
|
hint?: unknown;
|
|
3710
|
+
hinttip?: unknown;
|
|
3684
3711
|
infoAppends?: unknown;
|
|
3685
3712
|
validating?: unknown;
|
|
3686
3713
|
pending?: unknown;
|
|
@@ -3696,6 +3723,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3696
3723
|
invalid?: unknown;
|
|
3697
3724
|
valid?: unknown;
|
|
3698
3725
|
hiddenInfo?: unknown;
|
|
3726
|
+
requiredChip?: unknown;
|
|
3699
3727
|
multiple?: unknown;
|
|
3700
3728
|
items?: unknown;
|
|
3701
3729
|
name?: unknown;
|
|
@@ -3704,6 +3732,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3704
3732
|
autofocus?: unknown;
|
|
3705
3733
|
spellcheck?: unknown;
|
|
3706
3734
|
viewonly?: unknown;
|
|
3735
|
+
clearable?: unknown;
|
|
3707
3736
|
validateTiming?: unknown;
|
|
3708
3737
|
rules?: unknown;
|
|
3709
3738
|
error?: unknown;
|
|
@@ -3715,6 +3744,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3715
3744
|
spellcheck: boolean;
|
|
3716
3745
|
viewonly: boolean;
|
|
3717
3746
|
required: boolean;
|
|
3747
|
+
clearable: boolean;
|
|
3718
3748
|
error: boolean;
|
|
3719
3749
|
tabindex: string | number;
|
|
3720
3750
|
validateTiming: ValidateTiming;
|
|
@@ -3740,7 +3770,9 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3740
3770
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
3741
3771
|
label?: VNodeChildOrSlot<any>;
|
|
3742
3772
|
hint?: VNodeChildOrSlot<any>;
|
|
3773
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
3743
3774
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
3775
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
3744
3776
|
size?: "sm" | "md" | "lg" | undefined;
|
|
3745
3777
|
"v-slots"?: ResolveRawSlots<FormControlSlots> | undefined;
|
|
3746
3778
|
}> & {
|
|
@@ -3756,6 +3788,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3756
3788
|
spellcheck: boolean;
|
|
3757
3789
|
viewonly: boolean;
|
|
3758
3790
|
required: boolean;
|
|
3791
|
+
clearable: boolean;
|
|
3759
3792
|
error: boolean;
|
|
3760
3793
|
tabindex: string | number;
|
|
3761
3794
|
validateTiming: ValidateTiming;
|
|
@@ -4501,6 +4534,7 @@ export declare const VForm: DefineComponent<{
|
|
|
4501
4534
|
spellcheck: BooleanConstructor;
|
|
4502
4535
|
viewonly: BooleanConstructor;
|
|
4503
4536
|
required: BooleanConstructor;
|
|
4537
|
+
clearable: BooleanConstructor;
|
|
4504
4538
|
validateTiming: {
|
|
4505
4539
|
type: PropType<ValidateTiming>;
|
|
4506
4540
|
default: ValidateTiming;
|
|
@@ -4578,6 +4612,7 @@ export declare const VForm: DefineComponent<{
|
|
|
4578
4612
|
spellcheck?: unknown;
|
|
4579
4613
|
viewonly?: unknown;
|
|
4580
4614
|
required?: unknown;
|
|
4615
|
+
clearable?: unknown;
|
|
4581
4616
|
validateTiming?: unknown;
|
|
4582
4617
|
rules?: unknown;
|
|
4583
4618
|
error?: unknown;
|
|
@@ -4589,6 +4624,7 @@ export declare const VForm: DefineComponent<{
|
|
|
4589
4624
|
spellcheck: boolean;
|
|
4590
4625
|
viewonly: boolean;
|
|
4591
4626
|
required: boolean;
|
|
4627
|
+
clearable: boolean;
|
|
4592
4628
|
error: boolean;
|
|
4593
4629
|
tabindex: string | number;
|
|
4594
4630
|
validateTiming: ValidateTiming;
|
|
@@ -4618,6 +4654,7 @@ export declare const VForm: DefineComponent<{
|
|
|
4618
4654
|
spellcheck: boolean;
|
|
4619
4655
|
viewonly: boolean;
|
|
4620
4656
|
required: boolean;
|
|
4657
|
+
clearable: boolean;
|
|
4621
4658
|
error: boolean;
|
|
4622
4659
|
tabindex: string | number;
|
|
4623
4660
|
validateTiming: ValidateTiming;
|
|
@@ -4634,6 +4671,7 @@ export declare const VFormControl: DefineComponent<{
|
|
|
4634
4671
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
4635
4672
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
4636
4673
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
4674
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
4637
4675
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
4638
4676
|
validating: BooleanConstructor;
|
|
4639
4677
|
pending: BooleanConstructor;
|
|
@@ -4652,6 +4690,7 @@ export declare const VFormControl: DefineComponent<{
|
|
|
4652
4690
|
invalid: BooleanConstructor;
|
|
4653
4691
|
valid: BooleanConstructor;
|
|
4654
4692
|
hiddenInfo: BooleanConstructor;
|
|
4693
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
4655
4694
|
}, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4656
4695
|
clickLabel: (ev: MouseEvent, formControl: FormControl) => boolean;
|
|
4657
4696
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
|
|
@@ -4659,6 +4698,7 @@ export declare const VFormControl: DefineComponent<{
|
|
|
4659
4698
|
nodeControl?: unknown;
|
|
4660
4699
|
label?: unknown;
|
|
4661
4700
|
hint?: unknown;
|
|
4701
|
+
hinttip?: unknown;
|
|
4662
4702
|
infoAppends?: unknown;
|
|
4663
4703
|
validating?: unknown;
|
|
4664
4704
|
pending?: unknown;
|
|
@@ -4674,6 +4714,7 @@ export declare const VFormControl: DefineComponent<{
|
|
|
4674
4714
|
invalid?: unknown;
|
|
4675
4715
|
valid?: unknown;
|
|
4676
4716
|
hiddenInfo?: unknown;
|
|
4717
|
+
requiredChip?: unknown;
|
|
4677
4718
|
} & {
|
|
4678
4719
|
validating: boolean;
|
|
4679
4720
|
pending: boolean;
|
|
@@ -4693,7 +4734,9 @@ export declare const VFormControl: DefineComponent<{
|
|
|
4693
4734
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
4694
4735
|
label?: VNodeChildOrSlot<any>;
|
|
4695
4736
|
hint?: VNodeChildOrSlot<any>;
|
|
4737
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
4696
4738
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
4739
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
4697
4740
|
"v-slots"?: ResolveRawSlots<FormControlSlots & {
|
|
4698
4741
|
default: FormControl;
|
|
4699
4742
|
}> | undefined;
|
|
@@ -6649,6 +6692,7 @@ export declare const VOption: DefineComponent<{
|
|
|
6649
6692
|
spellcheck: BooleanConstructor;
|
|
6650
6693
|
viewonly: BooleanConstructor;
|
|
6651
6694
|
required: BooleanConstructor;
|
|
6695
|
+
clearable: BooleanConstructor;
|
|
6652
6696
|
validateTiming: {
|
|
6653
6697
|
type: PropType<ValidateTiming>;
|
|
6654
6698
|
default: ValidateTiming;
|
|
@@ -6716,6 +6760,7 @@ export declare const VOption: DefineComponent<{
|
|
|
6716
6760
|
spellcheck?: unknown;
|
|
6717
6761
|
viewonly?: unknown;
|
|
6718
6762
|
required?: unknown;
|
|
6763
|
+
clearable?: unknown;
|
|
6719
6764
|
validateTiming?: unknown;
|
|
6720
6765
|
rules?: unknown;
|
|
6721
6766
|
error?: unknown;
|
|
@@ -6727,6 +6772,7 @@ export declare const VOption: DefineComponent<{
|
|
|
6727
6772
|
spellcheck: boolean;
|
|
6728
6773
|
viewonly: boolean;
|
|
6729
6774
|
required: boolean;
|
|
6775
|
+
clearable: boolean;
|
|
6730
6776
|
error: boolean;
|
|
6731
6777
|
tabindex: string | number;
|
|
6732
6778
|
validateTiming: ValidateTiming;
|
|
@@ -6751,6 +6797,7 @@ export declare const VOption: DefineComponent<{
|
|
|
6751
6797
|
spellcheck: boolean;
|
|
6752
6798
|
viewonly: boolean;
|
|
6753
6799
|
required: boolean;
|
|
6800
|
+
clearable: boolean;
|
|
6754
6801
|
error: boolean;
|
|
6755
6802
|
tabindex: string | number;
|
|
6756
6803
|
validateTiming: ValidateTiming;
|
|
@@ -7442,6 +7489,7 @@ export declare const VRadio: DefineComponent<{
|
|
|
7442
7489
|
spellcheck: BooleanConstructor;
|
|
7443
7490
|
viewonly: BooleanConstructor;
|
|
7444
7491
|
required: BooleanConstructor;
|
|
7492
|
+
clearable: BooleanConstructor;
|
|
7445
7493
|
validateTiming: {
|
|
7446
7494
|
type: PropType<ValidateTiming>;
|
|
7447
7495
|
default: ValidateTiming;
|
|
@@ -7511,6 +7559,7 @@ export declare const VRadio: DefineComponent<{
|
|
|
7511
7559
|
spellcheck?: unknown;
|
|
7512
7560
|
viewonly?: unknown;
|
|
7513
7561
|
required?: unknown;
|
|
7562
|
+
clearable?: unknown;
|
|
7514
7563
|
validateTiming?: unknown;
|
|
7515
7564
|
rules?: unknown;
|
|
7516
7565
|
error?: unknown;
|
|
@@ -7522,6 +7571,7 @@ export declare const VRadio: DefineComponent<{
|
|
|
7522
7571
|
spellcheck: boolean;
|
|
7523
7572
|
viewonly: boolean;
|
|
7524
7573
|
required: boolean;
|
|
7574
|
+
clearable: boolean;
|
|
7525
7575
|
error: boolean;
|
|
7526
7576
|
tabindex: string | number;
|
|
7527
7577
|
validateTiming: ValidateTiming;
|
|
@@ -7546,6 +7596,7 @@ export declare const VRadio: DefineComponent<{
|
|
|
7546
7596
|
spellcheck: boolean;
|
|
7547
7597
|
viewonly: boolean;
|
|
7548
7598
|
required: boolean;
|
|
7599
|
+
clearable: boolean;
|
|
7549
7600
|
error: boolean;
|
|
7550
7601
|
tabindex: string | number;
|
|
7551
7602
|
validateTiming: ValidateTiming;
|
|
@@ -7565,6 +7616,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7565
7616
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
7566
7617
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
7567
7618
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
7619
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
7568
7620
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
7569
7621
|
validating: BooleanConstructor;
|
|
7570
7622
|
pending: BooleanConstructor;
|
|
@@ -7583,6 +7635,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7583
7635
|
invalid: BooleanConstructor;
|
|
7584
7636
|
valid: BooleanConstructor;
|
|
7585
7637
|
hiddenInfo: BooleanConstructor;
|
|
7638
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
7586
7639
|
multiple: {
|
|
7587
7640
|
type: BooleanConstructor;
|
|
7588
7641
|
default: boolean;
|
|
@@ -7600,6 +7653,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7600
7653
|
autofocus: BooleanConstructor;
|
|
7601
7654
|
spellcheck: BooleanConstructor;
|
|
7602
7655
|
viewonly: BooleanConstructor;
|
|
7656
|
+
clearable: BooleanConstructor;
|
|
7603
7657
|
validateTiming: {
|
|
7604
7658
|
type: PropType<ValidateTiming>;
|
|
7605
7659
|
default: ValidateTiming;
|
|
@@ -7675,6 +7729,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7675
7729
|
nodeControl?: unknown;
|
|
7676
7730
|
label?: unknown;
|
|
7677
7731
|
hint?: unknown;
|
|
7732
|
+
hinttip?: unknown;
|
|
7678
7733
|
infoAppends?: unknown;
|
|
7679
7734
|
validating?: unknown;
|
|
7680
7735
|
pending?: unknown;
|
|
@@ -7690,6 +7745,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7690
7745
|
invalid?: unknown;
|
|
7691
7746
|
valid?: unknown;
|
|
7692
7747
|
hiddenInfo?: unknown;
|
|
7748
|
+
requiredChip?: unknown;
|
|
7693
7749
|
multiple?: unknown;
|
|
7694
7750
|
items?: unknown;
|
|
7695
7751
|
name?: unknown;
|
|
@@ -7698,6 +7754,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7698
7754
|
autofocus?: unknown;
|
|
7699
7755
|
spellcheck?: unknown;
|
|
7700
7756
|
viewonly?: unknown;
|
|
7757
|
+
clearable?: unknown;
|
|
7701
7758
|
validateTiming?: unknown;
|
|
7702
7759
|
rules?: unknown;
|
|
7703
7760
|
error?: unknown;
|
|
@@ -7709,6 +7766,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7709
7766
|
spellcheck: boolean;
|
|
7710
7767
|
viewonly: boolean;
|
|
7711
7768
|
required: boolean;
|
|
7769
|
+
clearable: boolean;
|
|
7712
7770
|
error: boolean;
|
|
7713
7771
|
tabindex: string | number;
|
|
7714
7772
|
validateTiming: ValidateTiming;
|
|
@@ -7734,7 +7792,9 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7734
7792
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
7735
7793
|
label?: VNodeChildOrSlot<any>;
|
|
7736
7794
|
hint?: VNodeChildOrSlot<any>;
|
|
7795
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
7737
7796
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
7797
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
7738
7798
|
size?: "sm" | "md" | "lg" | undefined;
|
|
7739
7799
|
"v-slots"?: ResolveRawSlots<FormControlSlots> | undefined;
|
|
7740
7800
|
}> & {
|
|
@@ -7750,6 +7810,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7750
7810
|
spellcheck: boolean;
|
|
7751
7811
|
viewonly: boolean;
|
|
7752
7812
|
required: boolean;
|
|
7813
|
+
clearable: boolean;
|
|
7753
7814
|
error: boolean;
|
|
7754
7815
|
tabindex: string | number;
|
|
7755
7816
|
validateTiming: ValidateTiming;
|
|
@@ -7790,6 +7851,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7790
7851
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
7791
7852
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
7792
7853
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
7854
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
7793
7855
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
7794
7856
|
validating: BooleanConstructor;
|
|
7795
7857
|
pending: BooleanConstructor;
|
|
@@ -7808,6 +7870,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7808
7870
|
invalid: BooleanConstructor;
|
|
7809
7871
|
valid: BooleanConstructor;
|
|
7810
7872
|
hiddenInfo: BooleanConstructor;
|
|
7873
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
7811
7874
|
multiple: {
|
|
7812
7875
|
type: BooleanConstructor;
|
|
7813
7876
|
default: boolean;
|
|
@@ -7821,6 +7884,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7821
7884
|
autofocus: BooleanConstructor;
|
|
7822
7885
|
spellcheck: BooleanConstructor;
|
|
7823
7886
|
viewonly: BooleanConstructor;
|
|
7887
|
+
clearable: BooleanConstructor;
|
|
7824
7888
|
validateTiming: {
|
|
7825
7889
|
type: PropType<ValidateTiming>;
|
|
7826
7890
|
default: ValidateTiming;
|
|
@@ -7906,6 +7970,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7906
7970
|
nodeControl?: unknown;
|
|
7907
7971
|
label?: unknown;
|
|
7908
7972
|
hint?: unknown;
|
|
7973
|
+
hinttip?: unknown;
|
|
7909
7974
|
infoAppends?: unknown;
|
|
7910
7975
|
validating?: unknown;
|
|
7911
7976
|
pending?: unknown;
|
|
@@ -7921,6 +7986,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7921
7986
|
invalid?: unknown;
|
|
7922
7987
|
valid?: unknown;
|
|
7923
7988
|
hiddenInfo?: unknown;
|
|
7989
|
+
requiredChip?: unknown;
|
|
7924
7990
|
multiple?: unknown;
|
|
7925
7991
|
items?: unknown;
|
|
7926
7992
|
name?: unknown;
|
|
@@ -7928,6 +7994,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7928
7994
|
autofocus?: unknown;
|
|
7929
7995
|
spellcheck?: unknown;
|
|
7930
7996
|
viewonly?: unknown;
|
|
7997
|
+
clearable?: unknown;
|
|
7931
7998
|
validateTiming?: unknown;
|
|
7932
7999
|
rules?: unknown;
|
|
7933
8000
|
error?: unknown;
|
|
@@ -7939,6 +8006,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7939
8006
|
spellcheck: boolean;
|
|
7940
8007
|
viewonly: boolean;
|
|
7941
8008
|
required: boolean;
|
|
8009
|
+
clearable: boolean;
|
|
7942
8010
|
error: boolean;
|
|
7943
8011
|
tabindex: string | number;
|
|
7944
8012
|
validateTiming: ValidateTiming;
|
|
@@ -7963,7 +8031,9 @@ export declare const VSelect: DefineComponent<{
|
|
|
7963
8031
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
7964
8032
|
label?: VNodeChildOrSlot<any>;
|
|
7965
8033
|
hint?: VNodeChildOrSlot<any>;
|
|
8034
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
7966
8035
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
8036
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
7967
8037
|
startAdornment?: VNodeChildOrSlot<any>;
|
|
7968
8038
|
endAdornment?: VNodeChildOrSlot<any>;
|
|
7969
8039
|
variant?: "flat" | "outlined" | "filled" | undefined;
|
|
@@ -7983,6 +8053,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7983
8053
|
spellcheck: boolean;
|
|
7984
8054
|
viewonly: boolean;
|
|
7985
8055
|
required: boolean;
|
|
8056
|
+
clearable: boolean;
|
|
7986
8057
|
error: boolean;
|
|
7987
8058
|
tabindex: string | number;
|
|
7988
8059
|
validateTiming: ValidateTiming;
|
|
@@ -8025,6 +8096,7 @@ export declare const VSwitch: DefineComponent<{
|
|
|
8025
8096
|
spellcheck: BooleanConstructor;
|
|
8026
8097
|
viewonly: BooleanConstructor;
|
|
8027
8098
|
required: BooleanConstructor;
|
|
8099
|
+
clearable: BooleanConstructor;
|
|
8028
8100
|
validateTiming: {
|
|
8029
8101
|
type: PropType<ValidateTiming>;
|
|
8030
8102
|
default: ValidateTiming;
|
|
@@ -8094,6 +8166,7 @@ export declare const VSwitch: DefineComponent<{
|
|
|
8094
8166
|
spellcheck?: unknown;
|
|
8095
8167
|
viewonly?: unknown;
|
|
8096
8168
|
required?: unknown;
|
|
8169
|
+
clearable?: unknown;
|
|
8097
8170
|
validateTiming?: unknown;
|
|
8098
8171
|
rules?: unknown;
|
|
8099
8172
|
error?: unknown;
|
|
@@ -8105,6 +8178,7 @@ export declare const VSwitch: DefineComponent<{
|
|
|
8105
8178
|
spellcheck: boolean;
|
|
8106
8179
|
viewonly: boolean;
|
|
8107
8180
|
required: boolean;
|
|
8181
|
+
clearable: boolean;
|
|
8108
8182
|
error: boolean;
|
|
8109
8183
|
tabindex: string | number;
|
|
8110
8184
|
validateTiming: ValidateTiming;
|
|
@@ -8129,6 +8203,7 @@ export declare const VSwitch: DefineComponent<{
|
|
|
8129
8203
|
spellcheck: boolean;
|
|
8130
8204
|
viewonly: boolean;
|
|
8131
8205
|
required: boolean;
|
|
8206
|
+
clearable: boolean;
|
|
8132
8207
|
error: boolean;
|
|
8133
8208
|
tabindex: string | number;
|
|
8134
8209
|
validateTiming: ValidateTiming;
|
|
@@ -8148,6 +8223,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8148
8223
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
8149
8224
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
8150
8225
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
8226
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
8151
8227
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
8152
8228
|
validating: BooleanConstructor;
|
|
8153
8229
|
pending: BooleanConstructor;
|
|
@@ -8166,6 +8242,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8166
8242
|
invalid: BooleanConstructor;
|
|
8167
8243
|
valid: BooleanConstructor;
|
|
8168
8244
|
hiddenInfo: BooleanConstructor;
|
|
8245
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
8169
8246
|
multiple: {
|
|
8170
8247
|
type: BooleanConstructor;
|
|
8171
8248
|
default: boolean;
|
|
@@ -8183,6 +8260,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8183
8260
|
autofocus: BooleanConstructor;
|
|
8184
8261
|
spellcheck: BooleanConstructor;
|
|
8185
8262
|
viewonly: BooleanConstructor;
|
|
8263
|
+
clearable: BooleanConstructor;
|
|
8186
8264
|
validateTiming: {
|
|
8187
8265
|
type: PropType<ValidateTiming>;
|
|
8188
8266
|
default: ValidateTiming;
|
|
@@ -8258,6 +8336,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8258
8336
|
nodeControl?: unknown;
|
|
8259
8337
|
label?: unknown;
|
|
8260
8338
|
hint?: unknown;
|
|
8339
|
+
hinttip?: unknown;
|
|
8261
8340
|
infoAppends?: unknown;
|
|
8262
8341
|
validating?: unknown;
|
|
8263
8342
|
pending?: unknown;
|
|
@@ -8273,6 +8352,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8273
8352
|
invalid?: unknown;
|
|
8274
8353
|
valid?: unknown;
|
|
8275
8354
|
hiddenInfo?: unknown;
|
|
8355
|
+
requiredChip?: unknown;
|
|
8276
8356
|
multiple?: unknown;
|
|
8277
8357
|
items?: unknown;
|
|
8278
8358
|
name?: unknown;
|
|
@@ -8281,6 +8361,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8281
8361
|
autofocus?: unknown;
|
|
8282
8362
|
spellcheck?: unknown;
|
|
8283
8363
|
viewonly?: unknown;
|
|
8364
|
+
clearable?: unknown;
|
|
8284
8365
|
validateTiming?: unknown;
|
|
8285
8366
|
rules?: unknown;
|
|
8286
8367
|
error?: unknown;
|
|
@@ -8292,6 +8373,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8292
8373
|
spellcheck: boolean;
|
|
8293
8374
|
viewonly: boolean;
|
|
8294
8375
|
required: boolean;
|
|
8376
|
+
clearable: boolean;
|
|
8295
8377
|
error: boolean;
|
|
8296
8378
|
tabindex: string | number;
|
|
8297
8379
|
validateTiming: ValidateTiming;
|
|
@@ -8317,7 +8399,9 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8317
8399
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
8318
8400
|
label?: VNodeChildOrSlot<any>;
|
|
8319
8401
|
hint?: VNodeChildOrSlot<any>;
|
|
8402
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
8320
8403
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
8404
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
8321
8405
|
size?: "sm" | "md" | "lg" | undefined;
|
|
8322
8406
|
"v-slots"?: ResolveRawSlots<FormControlSlots> | undefined;
|
|
8323
8407
|
}> & {
|
|
@@ -8333,6 +8417,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8333
8417
|
spellcheck: boolean;
|
|
8334
8418
|
viewonly: boolean;
|
|
8335
8419
|
required: boolean;
|
|
8420
|
+
clearable: boolean;
|
|
8336
8421
|
error: boolean;
|
|
8337
8422
|
tabindex: string | number;
|
|
8338
8423
|
validateTiming: ValidateTiming;
|
|
@@ -8444,6 +8529,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8444
8529
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
8445
8530
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
8446
8531
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
8532
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
8447
8533
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
8448
8534
|
validating: BooleanConstructor;
|
|
8449
8535
|
pending: BooleanConstructor;
|
|
@@ -8462,6 +8548,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8462
8548
|
invalid: BooleanConstructor;
|
|
8463
8549
|
valid: BooleanConstructor;
|
|
8464
8550
|
hiddenInfo: BooleanConstructor;
|
|
8551
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
8465
8552
|
autosize: PropType<RawTextareaAutosizeSettings>;
|
|
8466
8553
|
rows: {
|
|
8467
8554
|
default: number | undefined;
|
|
@@ -8483,6 +8570,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8483
8570
|
autofocus: BooleanConstructor;
|
|
8484
8571
|
spellcheck: BooleanConstructor;
|
|
8485
8572
|
viewonly: BooleanConstructor;
|
|
8573
|
+
clearable: BooleanConstructor;
|
|
8486
8574
|
validateTiming: {
|
|
8487
8575
|
type: PropType<ValidateTiming>;
|
|
8488
8576
|
default: ValidateTiming;
|
|
@@ -8559,6 +8647,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8559
8647
|
nodeControl?: unknown;
|
|
8560
8648
|
label?: unknown;
|
|
8561
8649
|
hint?: unknown;
|
|
8650
|
+
hinttip?: unknown;
|
|
8562
8651
|
infoAppends?: unknown;
|
|
8563
8652
|
validating?: unknown;
|
|
8564
8653
|
pending?: unknown;
|
|
@@ -8574,6 +8663,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8574
8663
|
invalid?: unknown;
|
|
8575
8664
|
valid?: unknown;
|
|
8576
8665
|
hiddenInfo?: unknown;
|
|
8666
|
+
requiredChip?: unknown;
|
|
8577
8667
|
autosize?: unknown;
|
|
8578
8668
|
rows?: unknown;
|
|
8579
8669
|
mask?: unknown;
|
|
@@ -8592,6 +8682,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8592
8682
|
autofocus?: unknown;
|
|
8593
8683
|
spellcheck?: unknown;
|
|
8594
8684
|
viewonly?: unknown;
|
|
8685
|
+
clearable?: unknown;
|
|
8595
8686
|
validateTiming?: unknown;
|
|
8596
8687
|
rules?: unknown;
|
|
8597
8688
|
error?: unknown;
|
|
@@ -8603,6 +8694,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8603
8694
|
spellcheck: boolean;
|
|
8604
8695
|
viewonly: boolean;
|
|
8605
8696
|
required: boolean;
|
|
8697
|
+
clearable: boolean;
|
|
8606
8698
|
error: boolean;
|
|
8607
8699
|
tabindex: string | number;
|
|
8608
8700
|
validateTiming: ValidateTiming;
|
|
@@ -8637,7 +8729,9 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8637
8729
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
8638
8730
|
label?: VNodeChildOrSlot<any>;
|
|
8639
8731
|
hint?: VNodeChildOrSlot<any>;
|
|
8732
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
8640
8733
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
8734
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
8641
8735
|
startAdornment?: VNodeChildOrSlot<any>;
|
|
8642
8736
|
endAdornment?: VNodeChildOrSlot<any>;
|
|
8643
8737
|
variant?: "flat" | "outlined" | "filled" | undefined;
|
|
@@ -8657,6 +8751,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8657
8751
|
spellcheck: boolean;
|
|
8658
8752
|
viewonly: boolean;
|
|
8659
8753
|
required: boolean;
|
|
8754
|
+
clearable: boolean;
|
|
8660
8755
|
error: boolean;
|
|
8661
8756
|
tabindex: string | number;
|
|
8662
8757
|
validateTiming: ValidateTiming;
|
|
@@ -8695,6 +8790,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8695
8790
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
8696
8791
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
8697
8792
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
8793
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
8698
8794
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
8699
8795
|
validating: BooleanConstructor;
|
|
8700
8796
|
pending: BooleanConstructor;
|
|
@@ -8713,6 +8809,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8713
8809
|
invalid: BooleanConstructor;
|
|
8714
8810
|
valid: BooleanConstructor;
|
|
8715
8811
|
hiddenInfo: BooleanConstructor;
|
|
8812
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
8716
8813
|
type: {
|
|
8717
8814
|
type: PropType<"number" | "search" | "email" | "tel" | "url" | "color" | "date" | "datetime-local" | "month" | "password" | "text" | "time">;
|
|
8718
8815
|
default: string;
|
|
@@ -8736,6 +8833,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8736
8833
|
autofocus: BooleanConstructor;
|
|
8737
8834
|
spellcheck: BooleanConstructor;
|
|
8738
8835
|
viewonly: BooleanConstructor;
|
|
8836
|
+
clearable: BooleanConstructor;
|
|
8739
8837
|
validateTiming: {
|
|
8740
8838
|
type: PropType<ValidateTiming>;
|
|
8741
8839
|
default: ValidateTiming;
|
|
@@ -8814,6 +8912,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8814
8912
|
nodeControl?: unknown;
|
|
8815
8913
|
label?: unknown;
|
|
8816
8914
|
hint?: unknown;
|
|
8915
|
+
hinttip?: unknown;
|
|
8817
8916
|
infoAppends?: unknown;
|
|
8818
8917
|
validating?: unknown;
|
|
8819
8918
|
pending?: unknown;
|
|
@@ -8829,6 +8928,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8829
8928
|
invalid?: unknown;
|
|
8830
8929
|
valid?: unknown;
|
|
8831
8930
|
hiddenInfo?: unknown;
|
|
8931
|
+
requiredChip?: unknown;
|
|
8832
8932
|
type?: unknown;
|
|
8833
8933
|
masked?: unknown;
|
|
8834
8934
|
typed?: unknown;
|
|
@@ -8849,6 +8949,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8849
8949
|
autofocus?: unknown;
|
|
8850
8950
|
spellcheck?: unknown;
|
|
8851
8951
|
viewonly?: unknown;
|
|
8952
|
+
clearable?: unknown;
|
|
8852
8953
|
validateTiming?: unknown;
|
|
8853
8954
|
rules?: unknown;
|
|
8854
8955
|
error?: unknown;
|
|
@@ -8861,6 +8962,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8861
8962
|
spellcheck: boolean;
|
|
8862
8963
|
viewonly: boolean;
|
|
8863
8964
|
required: boolean;
|
|
8965
|
+
clearable: boolean;
|
|
8864
8966
|
error: boolean;
|
|
8865
8967
|
tabindex: string | number;
|
|
8866
8968
|
validateTiming: ValidateTiming;
|
|
@@ -8896,7 +8998,9 @@ export declare const VTextField: DefineComponent<{
|
|
|
8896
8998
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
8897
8999
|
label?: VNodeChildOrSlot<any>;
|
|
8898
9000
|
hint?: VNodeChildOrSlot<any>;
|
|
9001
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
8899
9002
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
9003
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
8900
9004
|
startAdornment?: VNodeChildOrSlot<any>;
|
|
8901
9005
|
endAdornment?: VNodeChildOrSlot<any>;
|
|
8902
9006
|
variant?: "flat" | "outlined" | "filled" | undefined;
|
|
@@ -8922,6 +9026,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8922
9026
|
spellcheck: boolean;
|
|
8923
9027
|
viewonly: boolean;
|
|
8924
9028
|
required: boolean;
|
|
9029
|
+
clearable: boolean;
|
|
8925
9030
|
error: boolean;
|
|
8926
9031
|
tabindex: string | number;
|
|
8927
9032
|
validateTiming: ValidateTiming;
|
|
@@ -9616,6 +9721,8 @@ export declare const VToolbarTitle: DefineComponent<{
|
|
|
9616
9721
|
tag: string;
|
|
9617
9722
|
}>;
|
|
9618
9723
|
|
|
9724
|
+
export { VTooltip }
|
|
9725
|
+
|
|
9619
9726
|
export declare const vueButtonProps: {
|
|
9620
9727
|
size: {
|
|
9621
9728
|
type: PropType<"sm" | "md" | "lg">;
|
|
@@ -9991,6 +10098,8 @@ export declare interface VuiServiceIconSettings {
|
|
|
9991
10098
|
editorLinkOff: IconName;
|
|
9992
10099
|
editorUndo: IconName;
|
|
9993
10100
|
editorRedo: IconName;
|
|
10101
|
+
hinttip: IconName;
|
|
10102
|
+
clear: IconName;
|
|
9994
10103
|
}
|
|
9995
10104
|
|
|
9996
10105
|
export declare interface VuiServiceOptions {
|
|
@@ -10059,6 +10168,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10059
10168
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
10060
10169
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
10061
10170
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
10171
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
10062
10172
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
10063
10173
|
validating: BooleanConstructor;
|
|
10064
10174
|
pending: BooleanConstructor;
|
|
@@ -10077,6 +10187,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10077
10187
|
invalid: BooleanConstructor;
|
|
10078
10188
|
valid: BooleanConstructor;
|
|
10079
10189
|
hiddenInfo: BooleanConstructor;
|
|
10190
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
10080
10191
|
minlength: (StringConstructor | NumberConstructor)[];
|
|
10081
10192
|
maxlength: (StringConstructor | NumberConstructor)[];
|
|
10082
10193
|
pattern: (StringConstructor | RegExpConstructor)[];
|
|
@@ -10092,6 +10203,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10092
10203
|
autofocus: BooleanConstructor;
|
|
10093
10204
|
spellcheck: BooleanConstructor;
|
|
10094
10205
|
viewonly: BooleanConstructor;
|
|
10206
|
+
clearable: BooleanConstructor;
|
|
10095
10207
|
validateTiming: {
|
|
10096
10208
|
type: PropType<ValidateTiming>;
|
|
10097
10209
|
default: ValidateTiming;
|
|
@@ -10169,6 +10281,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10169
10281
|
nodeControl?: unknown;
|
|
10170
10282
|
label?: unknown;
|
|
10171
10283
|
hint?: unknown;
|
|
10284
|
+
hinttip?: unknown;
|
|
10172
10285
|
infoAppends?: unknown;
|
|
10173
10286
|
validating?: unknown;
|
|
10174
10287
|
pending?: unknown;
|
|
@@ -10184,6 +10297,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10184
10297
|
invalid?: unknown;
|
|
10185
10298
|
valid?: unknown;
|
|
10186
10299
|
hiddenInfo?: unknown;
|
|
10300
|
+
requiredChip?: unknown;
|
|
10187
10301
|
minlength?: unknown;
|
|
10188
10302
|
maxlength?: unknown;
|
|
10189
10303
|
pattern?: unknown;
|
|
@@ -10199,6 +10313,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10199
10313
|
autofocus?: unknown;
|
|
10200
10314
|
spellcheck?: unknown;
|
|
10201
10315
|
viewonly?: unknown;
|
|
10316
|
+
clearable?: unknown;
|
|
10202
10317
|
validateTiming?: unknown;
|
|
10203
10318
|
rules?: unknown;
|
|
10204
10319
|
error?: unknown;
|
|
@@ -10210,6 +10325,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10210
10325
|
spellcheck: boolean;
|
|
10211
10326
|
viewonly: boolean;
|
|
10212
10327
|
required: boolean;
|
|
10328
|
+
clearable: boolean;
|
|
10213
10329
|
error: boolean;
|
|
10214
10330
|
tabindex: string | number;
|
|
10215
10331
|
validateTiming: ValidateTiming;
|
|
@@ -10246,7 +10362,9 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10246
10362
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
10247
10363
|
label?: VNodeChildOrSlot<any>;
|
|
10248
10364
|
hint?: VNodeChildOrSlot<any>;
|
|
10365
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
10249
10366
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
10367
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
10250
10368
|
startAdornment?: VNodeChildOrSlot<any>;
|
|
10251
10369
|
endAdornment?: VNodeChildOrSlot<any>;
|
|
10252
10370
|
variant?: "flat" | "outlined" | "filled" | undefined;
|
|
@@ -10265,6 +10383,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10265
10383
|
spellcheck: boolean;
|
|
10266
10384
|
viewonly: boolean;
|
|
10267
10385
|
required: boolean;
|
|
10386
|
+
clearable: boolean;
|
|
10268
10387
|
error: boolean;
|
|
10269
10388
|
tabindex: string | number;
|
|
10270
10389
|
validateTiming: ValidateTiming;
|