@fastkit/vui 0.7.12 → 0.7.19
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 +1 -0
- package/dist/tool/vite-plugin.d.ts.map +1 -1
- package/dist/vui.cjs.js +124 -69
- package/dist/vui.cjs.prod.js +124 -69
- package/dist/vui.css +45 -17
- package/dist/vui.d.ts +155 -0
- package/dist/vui.min.css +1 -1
- package/dist/vui.min.css.map +1 -1
- package/dist/vui.mjs +125 -73
- 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 +2 -0
- 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/index.ts +1 -0
- package/src/components/kits.ts +1 -1
- package/src/composables/form-selector.tsx +2 -0
- package/src/service.tsx +1 -0
- package/src/tool/vite-plugin.ts +1 -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
|
@@ -18,6 +18,7 @@ import { ExtractPropTypes } from 'vue';
|
|
|
18
18
|
import { FocusPosition } from '@tiptap/vue-3';
|
|
19
19
|
import { FormAction } from '@fastkit/vue-kit';
|
|
20
20
|
import { FormAutoCapitalize } from '@fastkit/vue-kit';
|
|
21
|
+
import { FormControl } from '@fastkit/vue-kit';
|
|
21
22
|
import { FormControlSlots } from '@fastkit/vue-kit';
|
|
22
23
|
import { FormNodeControl } from '@fastkit/vue-kit';
|
|
23
24
|
import { FormNodeError } from '@fastkit/vue-kit';
|
|
@@ -47,6 +48,7 @@ import { RawTextareaAutosizeSettings } from '@fastkit/vue-kit';
|
|
|
47
48
|
import { Ref } from 'vue';
|
|
48
49
|
import { RendererElement } from 'vue';
|
|
49
50
|
import { RendererNode } from 'vue';
|
|
51
|
+
import { RequiredChipSource } from '@fastkit/vue-kit';
|
|
50
52
|
import { ResolvedFormSelectorItemData } from '@fastkit/vue-kit';
|
|
51
53
|
import { ResolveRawSlots } from '@fastkit/vue-kit';
|
|
52
54
|
import { ResolveRawSlots as ResolveRawSlots_2 } from '@fastkit/vue-utils';
|
|
@@ -76,6 +78,7 @@ import { VNodeChild } from 'vue';
|
|
|
76
78
|
import { VNodeChildOrSlot } from '@fastkit/vue-kit';
|
|
77
79
|
import { VNodeProps } from 'vue';
|
|
78
80
|
import { VSnackbar } from '@fastkit/vue-kit';
|
|
81
|
+
import { VTooltip } from '@fastkit/vue-kit';
|
|
79
82
|
import { VueColorSchemePluginSettings } from '@fastkit/vue-kit';
|
|
80
83
|
import { VueForm } from '@fastkit/vue-kit';
|
|
81
84
|
import { VueStackService } from '@fastkit/vue-kit';
|
|
@@ -803,6 +806,10 @@ export declare function createPaperProps(): {
|
|
|
803
806
|
elevation: PropType<VuiElevationValue>;
|
|
804
807
|
};
|
|
805
808
|
|
|
809
|
+
export declare function createRequiredChipRenderer(required: () => boolean, props: {
|
|
810
|
+
requiredChip?: RequiredChipSource;
|
|
811
|
+
}, vui?: VuiService): () => VNodeChild;
|
|
812
|
+
|
|
806
813
|
declare function createTextFieldProps(): {
|
|
807
814
|
'v-slots': PropType<ResolveRawSlots<FormControlSlots & InputBoxSlots>>;
|
|
808
815
|
size: {
|
|
@@ -822,6 +829,7 @@ declare function createTextFieldProps(): {
|
|
|
822
829
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
823
830
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
824
831
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
832
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
825
833
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
826
834
|
validating: BooleanConstructor;
|
|
827
835
|
pending: BooleanConstructor;
|
|
@@ -840,6 +848,7 @@ declare function createTextFieldProps(): {
|
|
|
840
848
|
invalid: BooleanConstructor;
|
|
841
849
|
valid: BooleanConstructor;
|
|
842
850
|
hiddenInfo: BooleanConstructor;
|
|
851
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
843
852
|
type: {
|
|
844
853
|
type: PropType<"number" | "search" | "email" | "tel" | "url" | "color" | "date" | "datetime-local" | "month" | "password" | "text" | "time">;
|
|
845
854
|
default: string;
|
|
@@ -937,6 +946,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
937
946
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
938
947
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
939
948
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
949
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
940
950
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
941
951
|
validating: BooleanConstructor;
|
|
942
952
|
pending: BooleanConstructor;
|
|
@@ -955,6 +965,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
955
965
|
invalid: BooleanConstructor;
|
|
956
966
|
valid: BooleanConstructor;
|
|
957
967
|
hiddenInfo: BooleanConstructor;
|
|
968
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
958
969
|
multiple: {
|
|
959
970
|
type: BooleanConstructor;
|
|
960
971
|
default: boolean;
|
|
@@ -1047,6 +1058,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
1047
1058
|
nodeControl?: unknown;
|
|
1048
1059
|
label?: unknown;
|
|
1049
1060
|
hint?: unknown;
|
|
1061
|
+
hinttip?: unknown;
|
|
1050
1062
|
infoAppends?: unknown;
|
|
1051
1063
|
validating?: unknown;
|
|
1052
1064
|
pending?: unknown;
|
|
@@ -1062,6 +1074,7 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
1062
1074
|
invalid?: unknown;
|
|
1063
1075
|
valid?: unknown;
|
|
1064
1076
|
hiddenInfo?: unknown;
|
|
1077
|
+
requiredChip?: unknown;
|
|
1065
1078
|
multiple?: unknown;
|
|
1066
1079
|
items?: unknown;
|
|
1067
1080
|
name?: unknown;
|
|
@@ -1106,7 +1119,9 @@ export declare function defineFormSelectorComponent(opts: DefineFormSelectorComp
|
|
|
1106
1119
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
1107
1120
|
label?: VNodeChildOrSlot<any>;
|
|
1108
1121
|
hint?: VNodeChildOrSlot<any>;
|
|
1122
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
1109
1123
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
1124
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
1110
1125
|
size?: "sm" | "md" | "lg" | undefined;
|
|
1111
1126
|
"v-slots"?: ResolveRawSlots<FormControlSlots> | undefined;
|
|
1112
1127
|
}> & {
|
|
@@ -3570,6 +3585,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3570
3585
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
3571
3586
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
3572
3587
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
3588
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
3573
3589
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
3574
3590
|
validating: BooleanConstructor;
|
|
3575
3591
|
pending: BooleanConstructor;
|
|
@@ -3588,6 +3604,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3588
3604
|
invalid: BooleanConstructor;
|
|
3589
3605
|
valid: BooleanConstructor;
|
|
3590
3606
|
hiddenInfo: BooleanConstructor;
|
|
3607
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
3591
3608
|
multiple: {
|
|
3592
3609
|
type: BooleanConstructor;
|
|
3593
3610
|
default: boolean;
|
|
@@ -3680,6 +3697,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3680
3697
|
nodeControl?: unknown;
|
|
3681
3698
|
label?: unknown;
|
|
3682
3699
|
hint?: unknown;
|
|
3700
|
+
hinttip?: unknown;
|
|
3683
3701
|
infoAppends?: unknown;
|
|
3684
3702
|
validating?: unknown;
|
|
3685
3703
|
pending?: unknown;
|
|
@@ -3695,6 +3713,7 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3695
3713
|
invalid?: unknown;
|
|
3696
3714
|
valid?: unknown;
|
|
3697
3715
|
hiddenInfo?: unknown;
|
|
3716
|
+
requiredChip?: unknown;
|
|
3698
3717
|
multiple?: unknown;
|
|
3699
3718
|
items?: unknown;
|
|
3700
3719
|
name?: unknown;
|
|
@@ -3739,7 +3758,9 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
3739
3758
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
3740
3759
|
label?: VNodeChildOrSlot<any>;
|
|
3741
3760
|
hint?: VNodeChildOrSlot<any>;
|
|
3761
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
3742
3762
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
3763
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
3743
3764
|
size?: "sm" | "md" | "lg" | undefined;
|
|
3744
3765
|
"v-slots"?: ResolveRawSlots<FormControlSlots> | undefined;
|
|
3745
3766
|
}> & {
|
|
@@ -4626,6 +4647,101 @@ export declare const VForm: DefineComponent<{
|
|
|
4626
4647
|
disableAutoScroll: boolean;
|
|
4627
4648
|
}>;
|
|
4628
4649
|
|
|
4650
|
+
export declare const VFormControl: DefineComponent<{
|
|
4651
|
+
'v-slots': PropType<ResolveRawSlots<FormControlSlots & {
|
|
4652
|
+
default: FormControl;
|
|
4653
|
+
}>>;
|
|
4654
|
+
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
4655
|
+
label: PropType<VNodeChildOrSlot<any>>;
|
|
4656
|
+
hint: PropType<VNodeChildOrSlot<any>>;
|
|
4657
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
4658
|
+
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
4659
|
+
validating: BooleanConstructor;
|
|
4660
|
+
pending: BooleanConstructor;
|
|
4661
|
+
focused: BooleanConstructor;
|
|
4662
|
+
dirty: BooleanConstructor;
|
|
4663
|
+
pristine: BooleanConstructor;
|
|
4664
|
+
errors: {
|
|
4665
|
+
type: PropType<FormNodeError[]>;
|
|
4666
|
+
default: () => FormNodeError[];
|
|
4667
|
+
};
|
|
4668
|
+
disabled: BooleanConstructor;
|
|
4669
|
+
readonly: BooleanConstructor;
|
|
4670
|
+
touched: BooleanConstructor;
|
|
4671
|
+
untouched: BooleanConstructor;
|
|
4672
|
+
required: BooleanConstructor;
|
|
4673
|
+
invalid: BooleanConstructor;
|
|
4674
|
+
valid: BooleanConstructor;
|
|
4675
|
+
hiddenInfo: BooleanConstructor;
|
|
4676
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
4677
|
+
}, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4678
|
+
clickLabel: (ev: MouseEvent, formControl: FormControl) => boolean;
|
|
4679
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
|
|
4680
|
+
'v-slots'?: unknown;
|
|
4681
|
+
nodeControl?: unknown;
|
|
4682
|
+
label?: unknown;
|
|
4683
|
+
hint?: unknown;
|
|
4684
|
+
hinttip?: unknown;
|
|
4685
|
+
infoAppends?: unknown;
|
|
4686
|
+
validating?: unknown;
|
|
4687
|
+
pending?: unknown;
|
|
4688
|
+
focused?: unknown;
|
|
4689
|
+
dirty?: unknown;
|
|
4690
|
+
pristine?: unknown;
|
|
4691
|
+
errors?: unknown;
|
|
4692
|
+
disabled?: unknown;
|
|
4693
|
+
readonly?: unknown;
|
|
4694
|
+
touched?: unknown;
|
|
4695
|
+
untouched?: unknown;
|
|
4696
|
+
required?: unknown;
|
|
4697
|
+
invalid?: unknown;
|
|
4698
|
+
valid?: unknown;
|
|
4699
|
+
hiddenInfo?: unknown;
|
|
4700
|
+
requiredChip?: unknown;
|
|
4701
|
+
} & {
|
|
4702
|
+
validating: boolean;
|
|
4703
|
+
pending: boolean;
|
|
4704
|
+
focused: boolean;
|
|
4705
|
+
dirty: boolean;
|
|
4706
|
+
pristine: boolean;
|
|
4707
|
+
disabled: boolean;
|
|
4708
|
+
readonly: boolean;
|
|
4709
|
+
touched: boolean;
|
|
4710
|
+
untouched: boolean;
|
|
4711
|
+
required: boolean;
|
|
4712
|
+
invalid: boolean;
|
|
4713
|
+
valid: boolean;
|
|
4714
|
+
hiddenInfo: boolean;
|
|
4715
|
+
errors: FormNodeError[];
|
|
4716
|
+
} & {
|
|
4717
|
+
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
4718
|
+
label?: VNodeChildOrSlot<any>;
|
|
4719
|
+
hint?: VNodeChildOrSlot<any>;
|
|
4720
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
4721
|
+
infoAppends?: VNodeChildOrSlot<any>;
|
|
4722
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
4723
|
+
"v-slots"?: ResolveRawSlots<FormControlSlots & {
|
|
4724
|
+
default: FormControl;
|
|
4725
|
+
}> | undefined;
|
|
4726
|
+
}> & {
|
|
4727
|
+
onClickLabel?: ((ev: MouseEvent, formControl: FormControl) => any) | undefined;
|
|
4728
|
+
}, {
|
|
4729
|
+
validating: boolean;
|
|
4730
|
+
pending: boolean;
|
|
4731
|
+
focused: boolean;
|
|
4732
|
+
dirty: boolean;
|
|
4733
|
+
pristine: boolean;
|
|
4734
|
+
disabled: boolean;
|
|
4735
|
+
readonly: boolean;
|
|
4736
|
+
touched: boolean;
|
|
4737
|
+
untouched: boolean;
|
|
4738
|
+
required: boolean;
|
|
4739
|
+
invalid: boolean;
|
|
4740
|
+
valid: boolean;
|
|
4741
|
+
hiddenInfo: boolean;
|
|
4742
|
+
errors: FormNodeError[];
|
|
4743
|
+
}>;
|
|
4744
|
+
|
|
4629
4745
|
export declare interface VFormSlots {
|
|
4630
4746
|
default: VueForm;
|
|
4631
4747
|
}
|
|
@@ -7475,6 +7591,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7475
7591
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
7476
7592
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
7477
7593
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
7594
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
7478
7595
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
7479
7596
|
validating: BooleanConstructor;
|
|
7480
7597
|
pending: BooleanConstructor;
|
|
@@ -7493,6 +7610,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7493
7610
|
invalid: BooleanConstructor;
|
|
7494
7611
|
valid: BooleanConstructor;
|
|
7495
7612
|
hiddenInfo: BooleanConstructor;
|
|
7613
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
7496
7614
|
multiple: {
|
|
7497
7615
|
type: BooleanConstructor;
|
|
7498
7616
|
default: boolean;
|
|
@@ -7585,6 +7703,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7585
7703
|
nodeControl?: unknown;
|
|
7586
7704
|
label?: unknown;
|
|
7587
7705
|
hint?: unknown;
|
|
7706
|
+
hinttip?: unknown;
|
|
7588
7707
|
infoAppends?: unknown;
|
|
7589
7708
|
validating?: unknown;
|
|
7590
7709
|
pending?: unknown;
|
|
@@ -7600,6 +7719,7 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7600
7719
|
invalid?: unknown;
|
|
7601
7720
|
valid?: unknown;
|
|
7602
7721
|
hiddenInfo?: unknown;
|
|
7722
|
+
requiredChip?: unknown;
|
|
7603
7723
|
multiple?: unknown;
|
|
7604
7724
|
items?: unknown;
|
|
7605
7725
|
name?: unknown;
|
|
@@ -7644,7 +7764,9 @@ export declare const VRadioGroup: DefineComponent<{
|
|
|
7644
7764
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
7645
7765
|
label?: VNodeChildOrSlot<any>;
|
|
7646
7766
|
hint?: VNodeChildOrSlot<any>;
|
|
7767
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
7647
7768
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
7769
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
7648
7770
|
size?: "sm" | "md" | "lg" | undefined;
|
|
7649
7771
|
"v-slots"?: ResolveRawSlots<FormControlSlots> | undefined;
|
|
7650
7772
|
}> & {
|
|
@@ -7700,6 +7822,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7700
7822
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
7701
7823
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
7702
7824
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
7825
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
7703
7826
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
7704
7827
|
validating: BooleanConstructor;
|
|
7705
7828
|
pending: BooleanConstructor;
|
|
@@ -7718,6 +7841,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7718
7841
|
invalid: BooleanConstructor;
|
|
7719
7842
|
valid: BooleanConstructor;
|
|
7720
7843
|
hiddenInfo: BooleanConstructor;
|
|
7844
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
7721
7845
|
multiple: {
|
|
7722
7846
|
type: BooleanConstructor;
|
|
7723
7847
|
default: boolean;
|
|
@@ -7816,6 +7940,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7816
7940
|
nodeControl?: unknown;
|
|
7817
7941
|
label?: unknown;
|
|
7818
7942
|
hint?: unknown;
|
|
7943
|
+
hinttip?: unknown;
|
|
7819
7944
|
infoAppends?: unknown;
|
|
7820
7945
|
validating?: unknown;
|
|
7821
7946
|
pending?: unknown;
|
|
@@ -7831,6 +7956,7 @@ export declare const VSelect: DefineComponent<{
|
|
|
7831
7956
|
invalid?: unknown;
|
|
7832
7957
|
valid?: unknown;
|
|
7833
7958
|
hiddenInfo?: unknown;
|
|
7959
|
+
requiredChip?: unknown;
|
|
7834
7960
|
multiple?: unknown;
|
|
7835
7961
|
items?: unknown;
|
|
7836
7962
|
name?: unknown;
|
|
@@ -7873,7 +7999,9 @@ export declare const VSelect: DefineComponent<{
|
|
|
7873
7999
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
7874
8000
|
label?: VNodeChildOrSlot<any>;
|
|
7875
8001
|
hint?: VNodeChildOrSlot<any>;
|
|
8002
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
7876
8003
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
8004
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
7877
8005
|
startAdornment?: VNodeChildOrSlot<any>;
|
|
7878
8006
|
endAdornment?: VNodeChildOrSlot<any>;
|
|
7879
8007
|
variant?: "flat" | "outlined" | "filled" | undefined;
|
|
@@ -8058,6 +8186,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8058
8186
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
8059
8187
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
8060
8188
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
8189
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
8061
8190
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
8062
8191
|
validating: BooleanConstructor;
|
|
8063
8192
|
pending: BooleanConstructor;
|
|
@@ -8076,6 +8205,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8076
8205
|
invalid: BooleanConstructor;
|
|
8077
8206
|
valid: BooleanConstructor;
|
|
8078
8207
|
hiddenInfo: BooleanConstructor;
|
|
8208
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
8079
8209
|
multiple: {
|
|
8080
8210
|
type: BooleanConstructor;
|
|
8081
8211
|
default: boolean;
|
|
@@ -8168,6 +8298,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8168
8298
|
nodeControl?: unknown;
|
|
8169
8299
|
label?: unknown;
|
|
8170
8300
|
hint?: unknown;
|
|
8301
|
+
hinttip?: unknown;
|
|
8171
8302
|
infoAppends?: unknown;
|
|
8172
8303
|
validating?: unknown;
|
|
8173
8304
|
pending?: unknown;
|
|
@@ -8183,6 +8314,7 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8183
8314
|
invalid?: unknown;
|
|
8184
8315
|
valid?: unknown;
|
|
8185
8316
|
hiddenInfo?: unknown;
|
|
8317
|
+
requiredChip?: unknown;
|
|
8186
8318
|
multiple?: unknown;
|
|
8187
8319
|
items?: unknown;
|
|
8188
8320
|
name?: unknown;
|
|
@@ -8227,7 +8359,9 @@ export declare const VSwitchGroup: DefineComponent<{
|
|
|
8227
8359
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
8228
8360
|
label?: VNodeChildOrSlot<any>;
|
|
8229
8361
|
hint?: VNodeChildOrSlot<any>;
|
|
8362
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
8230
8363
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
8364
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
8231
8365
|
size?: "sm" | "md" | "lg" | undefined;
|
|
8232
8366
|
"v-slots"?: ResolveRawSlots<FormControlSlots> | undefined;
|
|
8233
8367
|
}> & {
|
|
@@ -8354,6 +8488,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8354
8488
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
8355
8489
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
8356
8490
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
8491
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
8357
8492
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
8358
8493
|
validating: BooleanConstructor;
|
|
8359
8494
|
pending: BooleanConstructor;
|
|
@@ -8372,6 +8507,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8372
8507
|
invalid: BooleanConstructor;
|
|
8373
8508
|
valid: BooleanConstructor;
|
|
8374
8509
|
hiddenInfo: BooleanConstructor;
|
|
8510
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
8375
8511
|
autosize: PropType<RawTextareaAutosizeSettings>;
|
|
8376
8512
|
rows: {
|
|
8377
8513
|
default: number | undefined;
|
|
@@ -8469,6 +8605,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8469
8605
|
nodeControl?: unknown;
|
|
8470
8606
|
label?: unknown;
|
|
8471
8607
|
hint?: unknown;
|
|
8608
|
+
hinttip?: unknown;
|
|
8472
8609
|
infoAppends?: unknown;
|
|
8473
8610
|
validating?: unknown;
|
|
8474
8611
|
pending?: unknown;
|
|
@@ -8484,6 +8621,7 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8484
8621
|
invalid?: unknown;
|
|
8485
8622
|
valid?: unknown;
|
|
8486
8623
|
hiddenInfo?: unknown;
|
|
8624
|
+
requiredChip?: unknown;
|
|
8487
8625
|
autosize?: unknown;
|
|
8488
8626
|
rows?: unknown;
|
|
8489
8627
|
mask?: unknown;
|
|
@@ -8547,7 +8685,9 @@ export declare const VTextarea: DefineComponent<{
|
|
|
8547
8685
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
8548
8686
|
label?: VNodeChildOrSlot<any>;
|
|
8549
8687
|
hint?: VNodeChildOrSlot<any>;
|
|
8688
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
8550
8689
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
8690
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
8551
8691
|
startAdornment?: VNodeChildOrSlot<any>;
|
|
8552
8692
|
endAdornment?: VNodeChildOrSlot<any>;
|
|
8553
8693
|
variant?: "flat" | "outlined" | "filled" | undefined;
|
|
@@ -8605,6 +8745,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8605
8745
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
8606
8746
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
8607
8747
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
8748
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
8608
8749
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
8609
8750
|
validating: BooleanConstructor;
|
|
8610
8751
|
pending: BooleanConstructor;
|
|
@@ -8623,6 +8764,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8623
8764
|
invalid: BooleanConstructor;
|
|
8624
8765
|
valid: BooleanConstructor;
|
|
8625
8766
|
hiddenInfo: BooleanConstructor;
|
|
8767
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
8626
8768
|
type: {
|
|
8627
8769
|
type: PropType<"number" | "search" | "email" | "tel" | "url" | "color" | "date" | "datetime-local" | "month" | "password" | "text" | "time">;
|
|
8628
8770
|
default: string;
|
|
@@ -8724,6 +8866,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8724
8866
|
nodeControl?: unknown;
|
|
8725
8867
|
label?: unknown;
|
|
8726
8868
|
hint?: unknown;
|
|
8869
|
+
hinttip?: unknown;
|
|
8727
8870
|
infoAppends?: unknown;
|
|
8728
8871
|
validating?: unknown;
|
|
8729
8872
|
pending?: unknown;
|
|
@@ -8739,6 +8882,7 @@ export declare const VTextField: DefineComponent<{
|
|
|
8739
8882
|
invalid?: unknown;
|
|
8740
8883
|
valid?: unknown;
|
|
8741
8884
|
hiddenInfo?: unknown;
|
|
8885
|
+
requiredChip?: unknown;
|
|
8742
8886
|
type?: unknown;
|
|
8743
8887
|
masked?: unknown;
|
|
8744
8888
|
typed?: unknown;
|
|
@@ -8806,7 +8950,9 @@ export declare const VTextField: DefineComponent<{
|
|
|
8806
8950
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
8807
8951
|
label?: VNodeChildOrSlot<any>;
|
|
8808
8952
|
hint?: VNodeChildOrSlot<any>;
|
|
8953
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
8809
8954
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
8955
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
8810
8956
|
startAdornment?: VNodeChildOrSlot<any>;
|
|
8811
8957
|
endAdornment?: VNodeChildOrSlot<any>;
|
|
8812
8958
|
variant?: "flat" | "outlined" | "filled" | undefined;
|
|
@@ -9526,6 +9672,8 @@ export declare const VToolbarTitle: DefineComponent<{
|
|
|
9526
9672
|
tag: string;
|
|
9527
9673
|
}>;
|
|
9528
9674
|
|
|
9675
|
+
export { VTooltip }
|
|
9676
|
+
|
|
9529
9677
|
export declare const vueButtonProps: {
|
|
9530
9678
|
size: {
|
|
9531
9679
|
type: PropType<"sm" | "md" | "lg">;
|
|
@@ -9901,6 +10049,7 @@ export declare interface VuiServiceIconSettings {
|
|
|
9901
10049
|
editorLinkOff: IconName;
|
|
9902
10050
|
editorUndo: IconName;
|
|
9903
10051
|
editorRedo: IconName;
|
|
10052
|
+
hinttip: IconName;
|
|
9904
10053
|
}
|
|
9905
10054
|
|
|
9906
10055
|
export declare interface VuiServiceOptions {
|
|
@@ -9969,6 +10118,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
9969
10118
|
nodeControl: PropType<FormNodeControl<any, any>>;
|
|
9970
10119
|
label: PropType<VNodeChildOrSlot<any>>;
|
|
9971
10120
|
hint: PropType<VNodeChildOrSlot<any>>;
|
|
10121
|
+
hinttip: PropType<string | boolean | (() => VNodeChild)>;
|
|
9972
10122
|
infoAppends: PropType<VNodeChildOrSlot<any>>;
|
|
9973
10123
|
validating: BooleanConstructor;
|
|
9974
10124
|
pending: BooleanConstructor;
|
|
@@ -9987,6 +10137,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
9987
10137
|
invalid: BooleanConstructor;
|
|
9988
10138
|
valid: BooleanConstructor;
|
|
9989
10139
|
hiddenInfo: BooleanConstructor;
|
|
10140
|
+
requiredChip: PropType<RequiredChipSource>;
|
|
9990
10141
|
minlength: (StringConstructor | NumberConstructor)[];
|
|
9991
10142
|
maxlength: (StringConstructor | NumberConstructor)[];
|
|
9992
10143
|
pattern: (StringConstructor | RegExpConstructor)[];
|
|
@@ -10079,6 +10230,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10079
10230
|
nodeControl?: unknown;
|
|
10080
10231
|
label?: unknown;
|
|
10081
10232
|
hint?: unknown;
|
|
10233
|
+
hinttip?: unknown;
|
|
10082
10234
|
infoAppends?: unknown;
|
|
10083
10235
|
validating?: unknown;
|
|
10084
10236
|
pending?: unknown;
|
|
@@ -10094,6 +10246,7 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10094
10246
|
invalid?: unknown;
|
|
10095
10247
|
valid?: unknown;
|
|
10096
10248
|
hiddenInfo?: unknown;
|
|
10249
|
+
requiredChip?: unknown;
|
|
10097
10250
|
minlength?: unknown;
|
|
10098
10251
|
maxlength?: unknown;
|
|
10099
10252
|
pattern?: unknown;
|
|
@@ -10156,7 +10309,9 @@ export declare const VWysiwygEditor: DefineComponent<{
|
|
|
10156
10309
|
nodeControl?: FormNodeControl<any, any> | undefined;
|
|
10157
10310
|
label?: VNodeChildOrSlot<any>;
|
|
10158
10311
|
hint?: VNodeChildOrSlot<any>;
|
|
10312
|
+
hinttip?: string | boolean | (() => VNodeChild) | undefined;
|
|
10159
10313
|
infoAppends?: VNodeChildOrSlot<any>;
|
|
10314
|
+
requiredChip?: RequiredChipSource | undefined;
|
|
10160
10315
|
startAdornment?: VNodeChildOrSlot<any>;
|
|
10161
10316
|
endAdornment?: VNodeChildOrSlot<any>;
|
|
10162
10317
|
variant?: "flat" | "outlined" | "filled" | undefined;
|