@fastkit/vui 0.14.1 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vui.css +132 -2
- package/dist/vui.d.ts +1362 -162
- package/dist/vui.mjs +586 -363
- package/dist/vui.mjs.map +1 -1
- package/package.json +6 -6
- package/src/components/VAvatar/VAvatar.scss +0 -1
- package/src/components/VDialog/VDialog.scss +41 -0
- package/src/components/VDialog/VDialog.tsx +51 -0
- package/src/components/VDialog/index.ts +1 -0
- package/src/components/VForm/VForm.tsx +1 -1
- package/src/components/VFormControl/VFormControl.tsx +1 -1
- package/src/components/VMenu/VMenu.scss +4 -0
- package/src/components/VMenu/VMenu.tsx +31 -0
- package/src/components/VMenu/index.ts +1 -0
- package/src/components/VSelect/VSelect.tsx +7 -7
- package/src/components/VSheetModal/VSheetModal.scss +48 -0
- package/src/components/VSheetModal/VSheetModal.tsx +88 -0
- package/src/components/VSheetModal/index.ts +1 -0
- package/src/components/VSnackbar/VSnackbar.scss +33 -0
- package/src/components/VSnackbar/VSnackbar.tsx +48 -0
- package/src/components/VSnackbar/index.ts +1 -0
- package/src/components/VSwitch/VSwitch.tsx +0 -1
- package/src/components/VTooltip/VTooltip.scss +14 -0
- package/src/components/VTooltip/VTooltip.tsx +42 -0
- package/src/components/VTooltip/index.ts +1 -0
- package/src/components/index.ts +5 -1
- package/src/plugin.tsx +2 -23
- package/src/service.tsx +112 -52
- package/src/styles/variables.scss +29 -0
- package/src/components/kits.ts +0 -1
package/dist/vui.d.ts
CHANGED
|
@@ -20,9 +20,9 @@ import { FormSelectorControl, ResolvedFormSelectorItem, FormNodeControl, TextInp
|
|
|
20
20
|
export * from '@fastkit/vue-form-control';
|
|
21
21
|
import { UseScroller } from '@fastkit/vue-scroller';
|
|
22
22
|
export * from '@fastkit/vue-scroller';
|
|
23
|
-
import
|
|
23
|
+
import * as _fastkit_vue_stack from '@fastkit/vue-stack';
|
|
24
|
+
import { VStackSlots, VStackControl, VueStackService, VStackBuiltinActions, StackableLauncher, VStackBuiltinActionType, VStackAction, MenuAPI, VueStackServiceOptions } from '@fastkit/vue-stack';
|
|
24
25
|
export * from '@fastkit/vue-stack';
|
|
25
|
-
export { VDialog, VMenu, VSnackbar, VTooltip } from '@fastkit/vue-stack';
|
|
26
26
|
import { ActionableInheritProps } from '@fastkit/vue-action';
|
|
27
27
|
export * from '@fastkit/vue-action';
|
|
28
28
|
export { VAction as VLink } from '@fastkit/vue-action';
|
|
@@ -33,11 +33,13 @@ export * from '@fastkit/vue-loading';
|
|
|
33
33
|
import * as vue from 'vue';
|
|
34
34
|
import { PropType, ExtractPropTypes, ComputedRef, VNodeChild, InjectionKey, VNodeProps, UnwrapNestedRefs, ImgHTMLAttributes, HTMLAttributes, Ref, App } from 'vue';
|
|
35
35
|
import { ScopeName, ColorVariant , ThemeName, PaletteName } from '@fastkit/color-scheme';
|
|
36
|
+
import * as _fastkit_vue_transitions__ from '@fastkit/vue-transitions/.';
|
|
37
|
+
import * as _fastkit_vue_utils__ from '@fastkit/vue-utils/.';
|
|
38
|
+
import * as _fastkit_vue_stack__ from '@fastkit/vue-stack/.';
|
|
36
39
|
import * as _fastkit_vue_resize__ from '@fastkit/vue-resize/.';
|
|
37
40
|
import * as _fastkit_vue_click_outside__ from '@fastkit/vue-click-outside/.';
|
|
38
41
|
import * as _fastkit_vue_body_scroll_lock__ from '@fastkit/vue-body-scroll-lock/.';
|
|
39
42
|
import { useLink, Router, UseLinkOptions, RouteLocationRaw } from 'vue-router';
|
|
40
|
-
import * as _fastkit_vue_utils__ from '@fastkit/vue-utils/.';
|
|
41
43
|
import * as _fastkit_vue_form_control__ from '@fastkit/vue-form-control/.';
|
|
42
44
|
|
|
43
45
|
declare const CONTROL_SIZES: readonly ["sm", "md", "lg"];
|
|
@@ -218,7 +220,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
|
|
|
218
220
|
valid: vue.ComputedRef<boolean>;
|
|
219
221
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
220
222
|
spellcheck: vue.ComputedRef<boolean>;
|
|
221
|
-
|
|
223
|
+
sending: vue.ComputedRef<boolean>;
|
|
222
224
|
focus: (opts?: FocusOptions | undefined) => void;
|
|
223
225
|
blur: () => void;
|
|
224
226
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control.ValidationResult>;
|
|
@@ -629,7 +631,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
629
631
|
valid: vue.ComputedRef<boolean>;
|
|
630
632
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
631
633
|
spellcheck: vue.ComputedRef<boolean>;
|
|
632
|
-
|
|
634
|
+
sending: vue.ComputedRef<boolean>;
|
|
633
635
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control.ValidationResult>;
|
|
634
636
|
validate: () => Promise<boolean>;
|
|
635
637
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
@@ -656,136 +658,1082 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
656
658
|
type: vue.PropType<"sm" | "md" | "lg">;
|
|
657
659
|
validator: (value: any) => boolean;
|
|
658
660
|
};
|
|
659
|
-
loading: BooleanConstructor;
|
|
660
|
-
variant: {
|
|
661
|
-
type: vue.PropType<"outlined" | "filled" | "flat">;
|
|
662
|
-
validator: (value: any) => boolean;
|
|
661
|
+
loading: BooleanConstructor;
|
|
662
|
+
variant: {
|
|
663
|
+
type: vue.PropType<"outlined" | "filled" | "flat">;
|
|
664
|
+
validator: (value: any) => boolean;
|
|
665
|
+
};
|
|
666
|
+
startAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
667
|
+
endAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
668
|
+
tabindex: {
|
|
669
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
670
|
+
default: number;
|
|
671
|
+
};
|
|
672
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl<any, any>>;
|
|
673
|
+
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
674
|
+
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
675
|
+
hinttip: vue.PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
676
|
+
hinttipDelay: vue.PropType<_fastkit_vue_form_control.FormControlHinttipDelay>;
|
|
677
|
+
infoAppends: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
678
|
+
validating: BooleanConstructor;
|
|
679
|
+
pending: BooleanConstructor;
|
|
680
|
+
focused: BooleanConstructor;
|
|
681
|
+
dirty: BooleanConstructor;
|
|
682
|
+
pristine: BooleanConstructor;
|
|
683
|
+
errors: {
|
|
684
|
+
type: vue.PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
685
|
+
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
686
|
+
};
|
|
687
|
+
disabled: BooleanConstructor;
|
|
688
|
+
readonly: BooleanConstructor;
|
|
689
|
+
touched: BooleanConstructor;
|
|
690
|
+
untouched: BooleanConstructor;
|
|
691
|
+
required: BooleanConstructor;
|
|
692
|
+
invalid: BooleanConstructor;
|
|
693
|
+
valid: BooleanConstructor;
|
|
694
|
+
hiddenInfo: BooleanConstructor;
|
|
695
|
+
requiredChip: vue.PropType<_fastkit_vue_form_control.RequiredChipSource>;
|
|
696
|
+
type: {
|
|
697
|
+
type: vue.PropType<"number" | "time" | "text" | "search" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password">;
|
|
698
|
+
default: string;
|
|
699
|
+
};
|
|
700
|
+
masked: StringConstructor;
|
|
701
|
+
typed: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
702
|
+
unmasked: StringConstructor;
|
|
703
|
+
mask: vue.PropType<any>;
|
|
704
|
+
minlength: (StringConstructor | NumberConstructor)[];
|
|
705
|
+
maxlength: (StringConstructor | NumberConstructor)[];
|
|
706
|
+
pattern: (StringConstructor | RegExpConstructor)[];
|
|
707
|
+
placeholder: StringConstructor;
|
|
708
|
+
autocapitalize: vue.PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
709
|
+
finishings: vue.PropType<_fastkit_vue_form_control.RawTextableFinishingProp>;
|
|
710
|
+
counter: vue.PropType<string | number | boolean>;
|
|
711
|
+
counterValue: vue.PropType<(value: string) => number>;
|
|
712
|
+
limit: BooleanConstructor;
|
|
713
|
+
autocomplete: vue.PropType<boolean | "name" | "off" | "on" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "email" | "username" | "new-password" | "current-password" | "one-time-code" | "organization-title" | "organization" | "street-address" | "address-line1" | "address-line2" | "address-line3" | "address-level4" | "address-level3" | "address-level2" | "address-level1" | "country" | "country-name" | "postal-code" | "cc-name" | "cc-given-name" | "cc-additional-name" | "cc-family-name" | "cc-number" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-csc" | "cc-type" | "transaction-currency" | "transaction-amount" | "language" | "bday" | "bday-day" | "bday-month" | "bday-year" | "sex" | "tel" | "tel-country-code" | "tel-national" | "tel-area-code" | "tel-local" | "tel-extension" | "impp" | "url" | "photo">;
|
|
714
|
+
name: StringConstructor;
|
|
715
|
+
modelValue: vue.Prop<string, string>;
|
|
716
|
+
autofocus: BooleanConstructor;
|
|
717
|
+
spellcheck: BooleanConstructor;
|
|
718
|
+
viewonly: BooleanConstructor;
|
|
719
|
+
clearable: BooleanConstructor;
|
|
720
|
+
validateTiming: {
|
|
721
|
+
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
722
|
+
default: _fastkit_vue_form_control.ValidateTiming;
|
|
723
|
+
};
|
|
724
|
+
rules: {
|
|
725
|
+
type: vue.PropType<_fastkit_vue_form_control.RecursiveValidatableRule>;
|
|
726
|
+
default: () => never[];
|
|
727
|
+
};
|
|
728
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
729
|
+
error: BooleanConstructor;
|
|
730
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
731
|
+
}>> & {
|
|
732
|
+
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
|
733
|
+
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
734
|
+
onChange?: ((value: string) => any) | undefined;
|
|
735
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
736
|
+
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
737
|
+
onAccept?: ((ev: _fastkit_vue_form_control.IMaskEvent) => any) | undefined;
|
|
738
|
+
onComplete?: ((ev: _fastkit_vue_form_control.IMaskEvent) => any) | undefined;
|
|
739
|
+
"onUpdate:masked"?: ((maskedValue: string) => any) | undefined;
|
|
740
|
+
"onUpdate:typed"?: ((typedValue: _fastkit_vue_form_control.IMaskTypedValue | undefined) => any) | undefined;
|
|
741
|
+
"onUpdate:unmasked"?: ((unmaskedValue: string) => any) | undefined;
|
|
742
|
+
}, {
|
|
743
|
+
required: boolean;
|
|
744
|
+
type: "number" | "time" | "text" | "search" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password";
|
|
745
|
+
loading: boolean;
|
|
746
|
+
tabindex: string | number;
|
|
747
|
+
autofocus: boolean;
|
|
748
|
+
disabled: boolean;
|
|
749
|
+
readonly: boolean;
|
|
750
|
+
spellcheck: boolean;
|
|
751
|
+
viewonly: boolean;
|
|
752
|
+
clearable: boolean;
|
|
753
|
+
validateTiming: _fastkit_vue_form_control.ValidateTiming;
|
|
754
|
+
rules: _fastkit_vue_form_control.RecursiveValidatableRule;
|
|
755
|
+
error: boolean;
|
|
756
|
+
validating: boolean;
|
|
757
|
+
pending: boolean;
|
|
758
|
+
focused: boolean;
|
|
759
|
+
dirty: boolean;
|
|
760
|
+
pristine: boolean;
|
|
761
|
+
errors: _fastkit_vue_form_control.FormNodeError[];
|
|
762
|
+
touched: boolean;
|
|
763
|
+
untouched: boolean;
|
|
764
|
+
invalid: boolean;
|
|
765
|
+
valid: boolean;
|
|
766
|
+
hiddenInfo: boolean;
|
|
767
|
+
limit: boolean;
|
|
768
|
+
}, _fastkit_vue_utils.DefinedSlots<{
|
|
769
|
+
label?: ((form: _fastkit_vue_form_control.FormControl) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
770
|
+
[key: string]: any;
|
|
771
|
+
}>[]) | undefined;
|
|
772
|
+
hint?: ((form: _fastkit_vue_form_control.FormControl) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
773
|
+
[key: string]: any;
|
|
774
|
+
}>[]) | undefined;
|
|
775
|
+
infoAppends?: ((form: _fastkit_vue_form_control.FormControl) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
776
|
+
[key: string]: any;
|
|
777
|
+
}>[]) | undefined;
|
|
778
|
+
} & {
|
|
779
|
+
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
780
|
+
[key: string]: any;
|
|
781
|
+
}>[]) | undefined;
|
|
782
|
+
startAdornment?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
783
|
+
[key: string]: any;
|
|
784
|
+
}>[]) | undefined;
|
|
785
|
+
endAdornment?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
786
|
+
[key: string]: any;
|
|
787
|
+
}>[]) | undefined;
|
|
788
|
+
}>>;
|
|
789
|
+
|
|
790
|
+
declare const VDialog: vue.DefineComponent<{
|
|
791
|
+
modelValue: BooleanConstructor;
|
|
792
|
+
lazyBoot: BooleanConstructor;
|
|
793
|
+
value: null;
|
|
794
|
+
class: null;
|
|
795
|
+
style: vue.PropType<_fastkit_vue_utils__.StyleValue>;
|
|
796
|
+
transition: {
|
|
797
|
+
type: vue.PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
798
|
+
default: string;
|
|
799
|
+
};
|
|
800
|
+
alwaysRender: BooleanConstructor;
|
|
801
|
+
backdrop: {
|
|
802
|
+
type: vue.PropType<string | boolean>;
|
|
803
|
+
default: boolean;
|
|
804
|
+
};
|
|
805
|
+
focusTrap: {
|
|
806
|
+
type: BooleanConstructor;
|
|
807
|
+
default: boolean;
|
|
808
|
+
};
|
|
809
|
+
focusRestorable: {
|
|
810
|
+
type: BooleanConstructor;
|
|
811
|
+
default: boolean;
|
|
812
|
+
};
|
|
813
|
+
scrollLock: {
|
|
814
|
+
type: BooleanConstructor;
|
|
815
|
+
default: boolean;
|
|
816
|
+
};
|
|
817
|
+
openOnHover: BooleanConstructor;
|
|
818
|
+
openOnContextmenu: BooleanConstructor;
|
|
819
|
+
openDelay: {
|
|
820
|
+
type: vue.PropType<string | number>;
|
|
821
|
+
default: string | number;
|
|
822
|
+
};
|
|
823
|
+
closeDelay: {
|
|
824
|
+
type: vue.PropType<string | number>;
|
|
825
|
+
default: string | number;
|
|
826
|
+
};
|
|
827
|
+
closeOnOutsideClick: {
|
|
828
|
+
type: BooleanConstructor;
|
|
829
|
+
default: boolean;
|
|
830
|
+
};
|
|
831
|
+
closeOnEsc: {
|
|
832
|
+
type: BooleanConstructor;
|
|
833
|
+
default: boolean;
|
|
834
|
+
};
|
|
835
|
+
closeOnNavigation: {
|
|
836
|
+
type: BooleanConstructor;
|
|
837
|
+
default: boolean;
|
|
838
|
+
};
|
|
839
|
+
persistent: BooleanConstructor;
|
|
840
|
+
zIndex: {
|
|
841
|
+
type: vue.PropType<string | number>;
|
|
842
|
+
default: string | number;
|
|
843
|
+
};
|
|
844
|
+
timeout: {
|
|
845
|
+
type: vue.PropType<string | number>;
|
|
846
|
+
default: string | number;
|
|
847
|
+
};
|
|
848
|
+
navigationGuard: {
|
|
849
|
+
type: vue.PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
850
|
+
default: boolean;
|
|
851
|
+
};
|
|
852
|
+
guardEffect: {
|
|
853
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
854
|
+
default: boolean;
|
|
855
|
+
};
|
|
856
|
+
activator: {
|
|
857
|
+
type: vue.PropType<boolean | Event | Element | null>;
|
|
858
|
+
default: null;
|
|
859
|
+
};
|
|
860
|
+
'v-slots': vue.PropType<_fastkit_vue_stack.VStackSlots>;
|
|
861
|
+
} & {
|
|
862
|
+
dense: BooleanConstructor;
|
|
863
|
+
variant: vue.PropType<ColorVariant>;
|
|
864
|
+
theme: vue.PropType<ThemeName>;
|
|
865
|
+
color: vue.PropType<ScopeName>;
|
|
866
|
+
textColor: vue.PropType<PaletteName>;
|
|
867
|
+
borderColor: vue.PropType<PaletteName>;
|
|
868
|
+
actions: {
|
|
869
|
+
type: vue.PropType<_fastkit_vue_stack.VStackAction[]>;
|
|
870
|
+
default: () => never[];
|
|
871
|
+
};
|
|
872
|
+
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
873
|
+
[key: string]: any;
|
|
874
|
+
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
875
|
+
'update:modelValue': (modelValue: boolean) => boolean;
|
|
876
|
+
change: (modelValue: boolean) => boolean;
|
|
877
|
+
payload: (value: any) => boolean;
|
|
878
|
+
show: (control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
879
|
+
close: (control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
880
|
+
beforeEnter: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
881
|
+
afterEnter: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
882
|
+
enterCancelled: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
883
|
+
beforeLeave: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
884
|
+
afterLeave: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
885
|
+
leaveCancelled: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
886
|
+
} & vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
887
|
+
modelValue: BooleanConstructor;
|
|
888
|
+
lazyBoot: BooleanConstructor;
|
|
889
|
+
value: null;
|
|
890
|
+
class: null;
|
|
891
|
+
style: vue.PropType<_fastkit_vue_utils__.StyleValue>;
|
|
892
|
+
transition: {
|
|
893
|
+
type: vue.PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
894
|
+
default: string;
|
|
895
|
+
};
|
|
896
|
+
alwaysRender: BooleanConstructor;
|
|
897
|
+
backdrop: {
|
|
898
|
+
type: vue.PropType<string | boolean>;
|
|
899
|
+
default: boolean;
|
|
900
|
+
};
|
|
901
|
+
focusTrap: {
|
|
902
|
+
type: BooleanConstructor;
|
|
903
|
+
default: boolean;
|
|
904
|
+
};
|
|
905
|
+
focusRestorable: {
|
|
906
|
+
type: BooleanConstructor;
|
|
907
|
+
default: boolean;
|
|
908
|
+
};
|
|
909
|
+
scrollLock: {
|
|
910
|
+
type: BooleanConstructor;
|
|
911
|
+
default: boolean;
|
|
912
|
+
};
|
|
913
|
+
openOnHover: BooleanConstructor;
|
|
914
|
+
openOnContextmenu: BooleanConstructor;
|
|
915
|
+
openDelay: {
|
|
916
|
+
type: vue.PropType<string | number>;
|
|
917
|
+
default: string | number;
|
|
918
|
+
};
|
|
919
|
+
closeDelay: {
|
|
920
|
+
type: vue.PropType<string | number>;
|
|
921
|
+
default: string | number;
|
|
922
|
+
};
|
|
923
|
+
closeOnOutsideClick: {
|
|
924
|
+
type: BooleanConstructor;
|
|
925
|
+
default: boolean;
|
|
926
|
+
};
|
|
927
|
+
closeOnEsc: {
|
|
928
|
+
type: BooleanConstructor;
|
|
929
|
+
default: boolean;
|
|
930
|
+
};
|
|
931
|
+
closeOnNavigation: {
|
|
932
|
+
type: BooleanConstructor;
|
|
933
|
+
default: boolean;
|
|
934
|
+
};
|
|
935
|
+
persistent: BooleanConstructor;
|
|
936
|
+
zIndex: {
|
|
937
|
+
type: vue.PropType<string | number>;
|
|
938
|
+
default: string | number;
|
|
939
|
+
};
|
|
940
|
+
timeout: {
|
|
941
|
+
type: vue.PropType<string | number>;
|
|
942
|
+
default: string | number;
|
|
943
|
+
};
|
|
944
|
+
navigationGuard: {
|
|
945
|
+
type: vue.PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
946
|
+
default: boolean;
|
|
947
|
+
};
|
|
948
|
+
guardEffect: {
|
|
949
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
950
|
+
default: boolean;
|
|
951
|
+
};
|
|
952
|
+
activator: {
|
|
953
|
+
type: vue.PropType<boolean | Event | Element | null>;
|
|
954
|
+
default: null;
|
|
955
|
+
};
|
|
956
|
+
'v-slots': vue.PropType<_fastkit_vue_stack.VStackSlots>;
|
|
957
|
+
} & {
|
|
958
|
+
dense: BooleanConstructor;
|
|
959
|
+
variant: vue.PropType<ColorVariant>;
|
|
960
|
+
theme: vue.PropType<ThemeName>;
|
|
961
|
+
color: vue.PropType<ScopeName>;
|
|
962
|
+
textColor: vue.PropType<PaletteName>;
|
|
963
|
+
borderColor: vue.PropType<PaletteName>;
|
|
964
|
+
actions: {
|
|
965
|
+
type: vue.PropType<_fastkit_vue_stack.VStackAction[]>;
|
|
966
|
+
default: () => never[];
|
|
967
|
+
};
|
|
968
|
+
}>> & ({
|
|
969
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
970
|
+
} | {
|
|
971
|
+
[x: `on${Capitalize<string>}`]: ((...args: never) => any) | undefined;
|
|
972
|
+
}), {
|
|
973
|
+
modelValue: boolean;
|
|
974
|
+
lazyBoot: boolean;
|
|
975
|
+
transition: _fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>;
|
|
976
|
+
alwaysRender: boolean;
|
|
977
|
+
backdrop: string | boolean;
|
|
978
|
+
focusTrap: boolean;
|
|
979
|
+
focusRestorable: boolean;
|
|
980
|
+
scrollLock: boolean;
|
|
981
|
+
openOnHover: boolean;
|
|
982
|
+
openOnContextmenu: boolean;
|
|
983
|
+
openDelay: string | number;
|
|
984
|
+
closeDelay: string | number;
|
|
985
|
+
closeOnOutsideClick: boolean;
|
|
986
|
+
closeOnEsc: boolean;
|
|
987
|
+
closeOnNavigation: boolean;
|
|
988
|
+
persistent: boolean;
|
|
989
|
+
zIndex: string | number;
|
|
990
|
+
timeout: string | number;
|
|
991
|
+
navigationGuard: boolean | _fastkit_vue_stack.VStackNavigationGuard;
|
|
992
|
+
guardEffect: string | boolean;
|
|
993
|
+
activator: boolean | Event | Element | null;
|
|
994
|
+
dense: boolean;
|
|
995
|
+
actions: _fastkit_vue_stack.VStackAction[];
|
|
996
|
+
}, vue.SlotsType>;
|
|
997
|
+
|
|
998
|
+
declare const VSnackbar: vue.DefineComponent<{
|
|
999
|
+
top: BooleanConstructor;
|
|
1000
|
+
bottom: BooleanConstructor;
|
|
1001
|
+
left: BooleanConstructor;
|
|
1002
|
+
right: BooleanConstructor;
|
|
1003
|
+
modelValue: BooleanConstructor;
|
|
1004
|
+
lazyBoot: BooleanConstructor;
|
|
1005
|
+
value: null;
|
|
1006
|
+
class: null;
|
|
1007
|
+
style: vue.PropType<_fastkit_vue_utils__.StyleValue>;
|
|
1008
|
+
transition: {
|
|
1009
|
+
type: vue.PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
1010
|
+
default: string;
|
|
1011
|
+
};
|
|
1012
|
+
alwaysRender: BooleanConstructor;
|
|
1013
|
+
backdrop: {
|
|
1014
|
+
type: vue.PropType<string | boolean>;
|
|
1015
|
+
default: boolean;
|
|
1016
|
+
};
|
|
1017
|
+
focusTrap: {
|
|
1018
|
+
type: BooleanConstructor;
|
|
1019
|
+
default: boolean;
|
|
1020
|
+
};
|
|
1021
|
+
focusRestorable: {
|
|
1022
|
+
type: BooleanConstructor;
|
|
1023
|
+
default: boolean;
|
|
1024
|
+
};
|
|
1025
|
+
scrollLock: {
|
|
1026
|
+
type: BooleanConstructor;
|
|
1027
|
+
default: boolean;
|
|
1028
|
+
};
|
|
1029
|
+
openOnHover: BooleanConstructor;
|
|
1030
|
+
openOnContextmenu: BooleanConstructor;
|
|
1031
|
+
openDelay: {
|
|
1032
|
+
type: vue.PropType<string | number>;
|
|
1033
|
+
default: string | number;
|
|
1034
|
+
};
|
|
1035
|
+
closeDelay: {
|
|
1036
|
+
type: vue.PropType<string | number>;
|
|
1037
|
+
default: string | number;
|
|
1038
|
+
};
|
|
1039
|
+
closeOnOutsideClick: {
|
|
1040
|
+
type: BooleanConstructor;
|
|
1041
|
+
default: boolean;
|
|
1042
|
+
};
|
|
1043
|
+
closeOnEsc: {
|
|
1044
|
+
type: BooleanConstructor;
|
|
1045
|
+
default: boolean;
|
|
1046
|
+
};
|
|
1047
|
+
closeOnNavigation: {
|
|
1048
|
+
type: BooleanConstructor;
|
|
1049
|
+
default: boolean;
|
|
1050
|
+
};
|
|
1051
|
+
persistent: BooleanConstructor;
|
|
1052
|
+
zIndex: {
|
|
1053
|
+
type: vue.PropType<string | number>;
|
|
1054
|
+
default: string | number;
|
|
1055
|
+
};
|
|
1056
|
+
timeout: {
|
|
1057
|
+
type: vue.PropType<string | number>;
|
|
1058
|
+
default: string | number;
|
|
1059
|
+
};
|
|
1060
|
+
navigationGuard: {
|
|
1061
|
+
type: vue.PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
1062
|
+
default: boolean;
|
|
1063
|
+
};
|
|
1064
|
+
guardEffect: {
|
|
1065
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1066
|
+
default: boolean;
|
|
1067
|
+
};
|
|
1068
|
+
activator: {
|
|
1069
|
+
type: vue.PropType<boolean | Event | Element | null>;
|
|
1070
|
+
default: null;
|
|
1071
|
+
};
|
|
1072
|
+
'v-slots': vue.PropType<_fastkit_vue_stack.VStackSlots>;
|
|
1073
|
+
} & {
|
|
1074
|
+
variant: vue.PropType<ColorVariant>;
|
|
1075
|
+
theme: vue.PropType<ThemeName>;
|
|
1076
|
+
color: vue.PropType<ScopeName>;
|
|
1077
|
+
textColor: vue.PropType<PaletteName>;
|
|
1078
|
+
borderColor: vue.PropType<PaletteName>;
|
|
1079
|
+
actions: {
|
|
1080
|
+
type: vue.PropType<_fastkit_vue_stack.VStackAction[]>;
|
|
1081
|
+
default: () => never[];
|
|
1082
|
+
};
|
|
1083
|
+
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
1084
|
+
[key: string]: any;
|
|
1085
|
+
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1086
|
+
'update:modelValue': (modelValue: boolean) => boolean;
|
|
1087
|
+
change: (modelValue: boolean) => boolean;
|
|
1088
|
+
payload: (value: any) => boolean;
|
|
1089
|
+
show: (control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1090
|
+
close: (control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1091
|
+
beforeEnter: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1092
|
+
afterEnter: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1093
|
+
enterCancelled: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1094
|
+
beforeLeave: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1095
|
+
afterLeave: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1096
|
+
leaveCancelled: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1097
|
+
} & vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1098
|
+
top: BooleanConstructor;
|
|
1099
|
+
bottom: BooleanConstructor;
|
|
1100
|
+
left: BooleanConstructor;
|
|
1101
|
+
right: BooleanConstructor;
|
|
1102
|
+
modelValue: BooleanConstructor;
|
|
1103
|
+
lazyBoot: BooleanConstructor;
|
|
1104
|
+
value: null;
|
|
1105
|
+
class: null;
|
|
1106
|
+
style: vue.PropType<_fastkit_vue_utils__.StyleValue>;
|
|
1107
|
+
transition: {
|
|
1108
|
+
type: vue.PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
1109
|
+
default: string;
|
|
1110
|
+
};
|
|
1111
|
+
alwaysRender: BooleanConstructor;
|
|
1112
|
+
backdrop: {
|
|
1113
|
+
type: vue.PropType<string | boolean>;
|
|
1114
|
+
default: boolean;
|
|
1115
|
+
};
|
|
1116
|
+
focusTrap: {
|
|
1117
|
+
type: BooleanConstructor;
|
|
1118
|
+
default: boolean;
|
|
1119
|
+
};
|
|
1120
|
+
focusRestorable: {
|
|
1121
|
+
type: BooleanConstructor;
|
|
1122
|
+
default: boolean;
|
|
1123
|
+
};
|
|
1124
|
+
scrollLock: {
|
|
1125
|
+
type: BooleanConstructor;
|
|
1126
|
+
default: boolean;
|
|
1127
|
+
};
|
|
1128
|
+
openOnHover: BooleanConstructor;
|
|
1129
|
+
openOnContextmenu: BooleanConstructor;
|
|
1130
|
+
openDelay: {
|
|
1131
|
+
type: vue.PropType<string | number>;
|
|
1132
|
+
default: string | number;
|
|
1133
|
+
};
|
|
1134
|
+
closeDelay: {
|
|
1135
|
+
type: vue.PropType<string | number>;
|
|
1136
|
+
default: string | number;
|
|
1137
|
+
};
|
|
1138
|
+
closeOnOutsideClick: {
|
|
1139
|
+
type: BooleanConstructor;
|
|
1140
|
+
default: boolean;
|
|
1141
|
+
};
|
|
1142
|
+
closeOnEsc: {
|
|
1143
|
+
type: BooleanConstructor;
|
|
1144
|
+
default: boolean;
|
|
1145
|
+
};
|
|
1146
|
+
closeOnNavigation: {
|
|
1147
|
+
type: BooleanConstructor;
|
|
1148
|
+
default: boolean;
|
|
1149
|
+
};
|
|
1150
|
+
persistent: BooleanConstructor;
|
|
1151
|
+
zIndex: {
|
|
1152
|
+
type: vue.PropType<string | number>;
|
|
1153
|
+
default: string | number;
|
|
1154
|
+
};
|
|
1155
|
+
timeout: {
|
|
1156
|
+
type: vue.PropType<string | number>;
|
|
1157
|
+
default: string | number;
|
|
1158
|
+
};
|
|
1159
|
+
navigationGuard: {
|
|
1160
|
+
type: vue.PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
1161
|
+
default: boolean;
|
|
1162
|
+
};
|
|
1163
|
+
guardEffect: {
|
|
1164
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1165
|
+
default: boolean;
|
|
1166
|
+
};
|
|
1167
|
+
activator: {
|
|
1168
|
+
type: vue.PropType<boolean | Event | Element | null>;
|
|
1169
|
+
default: null;
|
|
1170
|
+
};
|
|
1171
|
+
'v-slots': vue.PropType<_fastkit_vue_stack.VStackSlots>;
|
|
1172
|
+
} & {
|
|
1173
|
+
variant: vue.PropType<ColorVariant>;
|
|
1174
|
+
theme: vue.PropType<ThemeName>;
|
|
1175
|
+
color: vue.PropType<ScopeName>;
|
|
1176
|
+
textColor: vue.PropType<PaletteName>;
|
|
1177
|
+
borderColor: vue.PropType<PaletteName>;
|
|
1178
|
+
actions: {
|
|
1179
|
+
type: vue.PropType<_fastkit_vue_stack.VStackAction[]>;
|
|
1180
|
+
default: () => never[];
|
|
1181
|
+
};
|
|
1182
|
+
}>> & ({
|
|
1183
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
1184
|
+
} | {
|
|
1185
|
+
[x: `on${Capitalize<string>}`]: ((...args: never) => any) | undefined;
|
|
1186
|
+
}), {
|
|
1187
|
+
modelValue: boolean;
|
|
1188
|
+
lazyBoot: boolean;
|
|
1189
|
+
transition: _fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>;
|
|
1190
|
+
alwaysRender: boolean;
|
|
1191
|
+
backdrop: string | boolean;
|
|
1192
|
+
focusTrap: boolean;
|
|
1193
|
+
focusRestorable: boolean;
|
|
1194
|
+
scrollLock: boolean;
|
|
1195
|
+
openOnHover: boolean;
|
|
1196
|
+
openOnContextmenu: boolean;
|
|
1197
|
+
openDelay: string | number;
|
|
1198
|
+
closeDelay: string | number;
|
|
1199
|
+
closeOnOutsideClick: boolean;
|
|
1200
|
+
closeOnEsc: boolean;
|
|
1201
|
+
closeOnNavigation: boolean;
|
|
1202
|
+
persistent: boolean;
|
|
1203
|
+
zIndex: string | number;
|
|
1204
|
+
timeout: string | number;
|
|
1205
|
+
navigationGuard: boolean | _fastkit_vue_stack.VStackNavigationGuard;
|
|
1206
|
+
guardEffect: string | boolean;
|
|
1207
|
+
activator: boolean | Event | Element | null;
|
|
1208
|
+
left: boolean;
|
|
1209
|
+
right: boolean;
|
|
1210
|
+
top: boolean;
|
|
1211
|
+
bottom: boolean;
|
|
1212
|
+
actions: _fastkit_vue_stack.VStackAction[];
|
|
1213
|
+
}, vue.SlotsType>;
|
|
1214
|
+
|
|
1215
|
+
declare const VMenu: vue.DefineComponent<{
|
|
1216
|
+
x: vue.PropType<_fastkit_vue_stack.VMenuXPosition>;
|
|
1217
|
+
y: vue.PropType<_fastkit_vue_stack.VMenuYPosition>;
|
|
1218
|
+
allowOverflow: BooleanConstructor;
|
|
1219
|
+
width: vue.PropType<number | "fit">;
|
|
1220
|
+
height: vue.PropType<number | "fit">;
|
|
1221
|
+
maxWidth: vue.PropType<number | "fit" | "free">;
|
|
1222
|
+
maxHeight: vue.PropType<number | "fit" | "free">;
|
|
1223
|
+
distance: {
|
|
1224
|
+
type: NumberConstructor;
|
|
1225
|
+
default: number;
|
|
1226
|
+
};
|
|
1227
|
+
edgeMargin: {
|
|
1228
|
+
type: NumberConstructor;
|
|
1229
|
+
default: number;
|
|
1230
|
+
};
|
|
1231
|
+
resizeWatchDebounce: {
|
|
1232
|
+
type: NumberConstructor;
|
|
1233
|
+
default: number;
|
|
1234
|
+
};
|
|
1235
|
+
overlap: BooleanConstructor;
|
|
1236
|
+
modelValue: BooleanConstructor;
|
|
1237
|
+
lazyBoot: BooleanConstructor;
|
|
1238
|
+
value: null;
|
|
1239
|
+
class: null;
|
|
1240
|
+
style: vue.PropType<_fastkit_vue_utils__.StyleValue>;
|
|
1241
|
+
transition: {
|
|
1242
|
+
type: vue.PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
1243
|
+
default: string;
|
|
1244
|
+
};
|
|
1245
|
+
alwaysRender: BooleanConstructor;
|
|
1246
|
+
backdrop: {
|
|
1247
|
+
type: vue.PropType<string | boolean>;
|
|
1248
|
+
default: boolean;
|
|
1249
|
+
};
|
|
1250
|
+
focusTrap: {
|
|
1251
|
+
type: BooleanConstructor;
|
|
1252
|
+
default: boolean;
|
|
1253
|
+
};
|
|
1254
|
+
focusRestorable: {
|
|
1255
|
+
type: BooleanConstructor;
|
|
1256
|
+
default: boolean;
|
|
1257
|
+
};
|
|
1258
|
+
scrollLock: {
|
|
1259
|
+
type: BooleanConstructor;
|
|
1260
|
+
default: boolean;
|
|
1261
|
+
};
|
|
1262
|
+
openOnHover: BooleanConstructor;
|
|
1263
|
+
openOnContextmenu: BooleanConstructor;
|
|
1264
|
+
openDelay: {
|
|
1265
|
+
type: vue.PropType<string | number>;
|
|
1266
|
+
default: string | number;
|
|
1267
|
+
};
|
|
1268
|
+
closeDelay: {
|
|
1269
|
+
type: vue.PropType<string | number>;
|
|
1270
|
+
default: string | number;
|
|
1271
|
+
};
|
|
1272
|
+
closeOnOutsideClick: {
|
|
1273
|
+
type: BooleanConstructor;
|
|
1274
|
+
default: boolean;
|
|
1275
|
+
};
|
|
1276
|
+
closeOnEsc: {
|
|
1277
|
+
type: BooleanConstructor;
|
|
1278
|
+
default: boolean;
|
|
1279
|
+
};
|
|
1280
|
+
closeOnNavigation: {
|
|
1281
|
+
type: BooleanConstructor;
|
|
1282
|
+
default: boolean;
|
|
1283
|
+
};
|
|
1284
|
+
persistent: BooleanConstructor;
|
|
1285
|
+
zIndex: {
|
|
1286
|
+
type: vue.PropType<string | number>;
|
|
1287
|
+
default: string | number;
|
|
1288
|
+
};
|
|
1289
|
+
timeout: {
|
|
1290
|
+
type: vue.PropType<string | number>;
|
|
1291
|
+
default: string | number;
|
|
1292
|
+
};
|
|
1293
|
+
navigationGuard: {
|
|
1294
|
+
type: vue.PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
1295
|
+
default: boolean;
|
|
1296
|
+
};
|
|
1297
|
+
guardEffect: {
|
|
1298
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1299
|
+
default: boolean;
|
|
1300
|
+
};
|
|
1301
|
+
activator: {
|
|
1302
|
+
type: vue.PropType<boolean | Event | Element | null>;
|
|
1303
|
+
default: null;
|
|
1304
|
+
};
|
|
1305
|
+
'v-slots': vue.PropType<_fastkit_vue_stack.VStackSlots>;
|
|
1306
|
+
} & {
|
|
1307
|
+
variant: vue.PropType<ColorVariant>;
|
|
1308
|
+
theme: vue.PropType<ThemeName>;
|
|
1309
|
+
color: vue.PropType<ScopeName>;
|
|
1310
|
+
textColor: vue.PropType<PaletteName>;
|
|
1311
|
+
borderColor: vue.PropType<PaletteName>;
|
|
1312
|
+
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
1313
|
+
[key: string]: any;
|
|
1314
|
+
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1315
|
+
'update:modelValue': (modelValue: boolean) => boolean;
|
|
1316
|
+
change: (modelValue: boolean) => boolean;
|
|
1317
|
+
payload: (value: any) => boolean;
|
|
1318
|
+
show: (control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1319
|
+
close: (control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1320
|
+
beforeEnter: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1321
|
+
afterEnter: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1322
|
+
enterCancelled: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1323
|
+
beforeLeave: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1324
|
+
afterLeave: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1325
|
+
leaveCancelled: (el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => boolean;
|
|
1326
|
+
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1327
|
+
x: vue.PropType<_fastkit_vue_stack.VMenuXPosition>;
|
|
1328
|
+
y: vue.PropType<_fastkit_vue_stack.VMenuYPosition>;
|
|
1329
|
+
allowOverflow: BooleanConstructor;
|
|
1330
|
+
width: vue.PropType<number | "fit">;
|
|
1331
|
+
height: vue.PropType<number | "fit">;
|
|
1332
|
+
maxWidth: vue.PropType<number | "fit" | "free">;
|
|
1333
|
+
maxHeight: vue.PropType<number | "fit" | "free">;
|
|
1334
|
+
distance: {
|
|
1335
|
+
type: NumberConstructor;
|
|
1336
|
+
default: number;
|
|
1337
|
+
};
|
|
1338
|
+
edgeMargin: {
|
|
1339
|
+
type: NumberConstructor;
|
|
1340
|
+
default: number;
|
|
1341
|
+
};
|
|
1342
|
+
resizeWatchDebounce: {
|
|
1343
|
+
type: NumberConstructor;
|
|
1344
|
+
default: number;
|
|
1345
|
+
};
|
|
1346
|
+
overlap: BooleanConstructor;
|
|
1347
|
+
modelValue: BooleanConstructor;
|
|
1348
|
+
lazyBoot: BooleanConstructor;
|
|
1349
|
+
value: null;
|
|
1350
|
+
class: null;
|
|
1351
|
+
style: vue.PropType<_fastkit_vue_utils__.StyleValue>;
|
|
1352
|
+
transition: {
|
|
1353
|
+
type: vue.PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
1354
|
+
default: string;
|
|
1355
|
+
};
|
|
1356
|
+
alwaysRender: BooleanConstructor;
|
|
1357
|
+
backdrop: {
|
|
1358
|
+
type: vue.PropType<string | boolean>;
|
|
1359
|
+
default: boolean;
|
|
1360
|
+
};
|
|
1361
|
+
focusTrap: {
|
|
1362
|
+
type: BooleanConstructor;
|
|
1363
|
+
default: boolean;
|
|
1364
|
+
};
|
|
1365
|
+
focusRestorable: {
|
|
1366
|
+
type: BooleanConstructor;
|
|
1367
|
+
default: boolean;
|
|
1368
|
+
};
|
|
1369
|
+
scrollLock: {
|
|
1370
|
+
type: BooleanConstructor;
|
|
1371
|
+
default: boolean;
|
|
1372
|
+
};
|
|
1373
|
+
openOnHover: BooleanConstructor;
|
|
1374
|
+
openOnContextmenu: BooleanConstructor;
|
|
1375
|
+
openDelay: {
|
|
1376
|
+
type: vue.PropType<string | number>;
|
|
1377
|
+
default: string | number;
|
|
1378
|
+
};
|
|
1379
|
+
closeDelay: {
|
|
1380
|
+
type: vue.PropType<string | number>;
|
|
1381
|
+
default: string | number;
|
|
1382
|
+
};
|
|
1383
|
+
closeOnOutsideClick: {
|
|
1384
|
+
type: BooleanConstructor;
|
|
1385
|
+
default: boolean;
|
|
1386
|
+
};
|
|
1387
|
+
closeOnEsc: {
|
|
1388
|
+
type: BooleanConstructor;
|
|
1389
|
+
default: boolean;
|
|
1390
|
+
};
|
|
1391
|
+
closeOnNavigation: {
|
|
1392
|
+
type: BooleanConstructor;
|
|
1393
|
+
default: boolean;
|
|
1394
|
+
};
|
|
1395
|
+
persistent: BooleanConstructor;
|
|
1396
|
+
zIndex: {
|
|
1397
|
+
type: vue.PropType<string | number>;
|
|
1398
|
+
default: string | number;
|
|
1399
|
+
};
|
|
1400
|
+
timeout: {
|
|
1401
|
+
type: vue.PropType<string | number>;
|
|
1402
|
+
default: string | number;
|
|
1403
|
+
};
|
|
1404
|
+
navigationGuard: {
|
|
1405
|
+
type: vue.PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
1406
|
+
default: boolean;
|
|
1407
|
+
};
|
|
1408
|
+
guardEffect: {
|
|
1409
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1410
|
+
default: boolean;
|
|
1411
|
+
};
|
|
1412
|
+
activator: {
|
|
1413
|
+
type: vue.PropType<boolean | Event | Element | null>;
|
|
1414
|
+
default: null;
|
|
1415
|
+
};
|
|
1416
|
+
'v-slots': vue.PropType<_fastkit_vue_stack.VStackSlots>;
|
|
1417
|
+
} & {
|
|
1418
|
+
variant: vue.PropType<ColorVariant>;
|
|
1419
|
+
theme: vue.PropType<ThemeName>;
|
|
1420
|
+
color: vue.PropType<ScopeName>;
|
|
1421
|
+
textColor: vue.PropType<PaletteName>;
|
|
1422
|
+
borderColor: vue.PropType<PaletteName>;
|
|
1423
|
+
}>> & {
|
|
1424
|
+
onChange?: ((modelValue: boolean) => any) | undefined;
|
|
1425
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
1426
|
+
onPayload?: ((value: any) => any) | undefined;
|
|
1427
|
+
onShow?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
1428
|
+
onClose?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
1429
|
+
onBeforeEnter?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
1430
|
+
onAfterEnter?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
1431
|
+
onEnterCancelled?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
1432
|
+
onBeforeLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
1433
|
+
onAfterLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
1434
|
+
onLeaveCancelled?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
|
|
1435
|
+
}, {
|
|
1436
|
+
modelValue: boolean;
|
|
1437
|
+
lazyBoot: boolean;
|
|
1438
|
+
transition: _fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>;
|
|
1439
|
+
alwaysRender: boolean;
|
|
1440
|
+
backdrop: string | boolean;
|
|
1441
|
+
focusTrap: boolean;
|
|
1442
|
+
focusRestorable: boolean;
|
|
1443
|
+
scrollLock: boolean;
|
|
1444
|
+
openOnHover: boolean;
|
|
1445
|
+
openOnContextmenu: boolean;
|
|
1446
|
+
openDelay: string | number;
|
|
1447
|
+
closeDelay: string | number;
|
|
1448
|
+
closeOnOutsideClick: boolean;
|
|
1449
|
+
closeOnEsc: boolean;
|
|
1450
|
+
closeOnNavigation: boolean;
|
|
1451
|
+
persistent: boolean;
|
|
1452
|
+
zIndex: string | number;
|
|
1453
|
+
timeout: string | number;
|
|
1454
|
+
navigationGuard: boolean | _fastkit_vue_stack.VStackNavigationGuard;
|
|
1455
|
+
guardEffect: string | boolean;
|
|
1456
|
+
activator: boolean | Event | Element | null;
|
|
1457
|
+
allowOverflow: boolean;
|
|
1458
|
+
distance: number;
|
|
1459
|
+
edgeMargin: number;
|
|
1460
|
+
resizeWatchDebounce: number;
|
|
1461
|
+
overlap: boolean;
|
|
1462
|
+
}, {}>;
|
|
1463
|
+
|
|
1464
|
+
interface VSheetModalSlots extends VStackSlots {
|
|
1465
|
+
header?: (control: VStackControl) => VNodeChild;
|
|
1466
|
+
}
|
|
1467
|
+
declare const sheetModalProps: {
|
|
1468
|
+
header: PropType<(control: VStackControl) => VNodeChild>;
|
|
1469
|
+
'v-slots': PropType<VSheetModalSlots>;
|
|
1470
|
+
modelValue: BooleanConstructor;
|
|
1471
|
+
lazyBoot: BooleanConstructor;
|
|
1472
|
+
value: null;
|
|
1473
|
+
class: null;
|
|
1474
|
+
style: PropType<_fastkit_vue_utils__.StyleValue>;
|
|
1475
|
+
transition: {
|
|
1476
|
+
type: PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
1477
|
+
default: string;
|
|
1478
|
+
};
|
|
1479
|
+
alwaysRender: BooleanConstructor;
|
|
1480
|
+
backdrop: {
|
|
1481
|
+
type: PropType<string | boolean>;
|
|
1482
|
+
default: boolean;
|
|
1483
|
+
};
|
|
1484
|
+
focusTrap: {
|
|
1485
|
+
type: BooleanConstructor;
|
|
1486
|
+
default: boolean;
|
|
1487
|
+
};
|
|
1488
|
+
focusRestorable: {
|
|
1489
|
+
type: BooleanConstructor;
|
|
1490
|
+
default: boolean;
|
|
1491
|
+
};
|
|
1492
|
+
scrollLock: {
|
|
1493
|
+
type: BooleanConstructor;
|
|
1494
|
+
default: boolean;
|
|
1495
|
+
};
|
|
1496
|
+
openOnHover: BooleanConstructor;
|
|
1497
|
+
openOnContextmenu: BooleanConstructor;
|
|
1498
|
+
openDelay: {
|
|
1499
|
+
type: PropType<string | number>;
|
|
1500
|
+
default: string | number;
|
|
1501
|
+
};
|
|
1502
|
+
closeDelay: {
|
|
1503
|
+
type: PropType<string | number>;
|
|
1504
|
+
default: string | number;
|
|
1505
|
+
};
|
|
1506
|
+
closeOnOutsideClick: {
|
|
1507
|
+
type: BooleanConstructor;
|
|
1508
|
+
default: boolean;
|
|
1509
|
+
};
|
|
1510
|
+
closeOnEsc: {
|
|
1511
|
+
type: BooleanConstructor;
|
|
1512
|
+
default: boolean;
|
|
1513
|
+
};
|
|
1514
|
+
closeOnNavigation: {
|
|
1515
|
+
type: BooleanConstructor;
|
|
1516
|
+
default: boolean;
|
|
1517
|
+
};
|
|
1518
|
+
persistent: BooleanConstructor;
|
|
1519
|
+
zIndex: {
|
|
1520
|
+
type: PropType<string | number>;
|
|
1521
|
+
default: string | number;
|
|
1522
|
+
};
|
|
1523
|
+
timeout: {
|
|
1524
|
+
type: PropType<string | number>;
|
|
1525
|
+
default: string | number;
|
|
1526
|
+
};
|
|
1527
|
+
navigationGuard: {
|
|
1528
|
+
type: PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
1529
|
+
default: boolean;
|
|
1530
|
+
};
|
|
1531
|
+
guardEffect: {
|
|
1532
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1533
|
+
default: boolean;
|
|
1534
|
+
};
|
|
1535
|
+
activator: {
|
|
1536
|
+
type: PropType<boolean | Event | Element | null>;
|
|
1537
|
+
default: null;
|
|
1538
|
+
};
|
|
1539
|
+
};
|
|
1540
|
+
declare const VSheetModal: vue.DefineComponent<{
|
|
1541
|
+
header: PropType<(control: VStackControl) => VNodeChild>;
|
|
1542
|
+
'v-slots': PropType<VSheetModalSlots>;
|
|
1543
|
+
modelValue: BooleanConstructor;
|
|
1544
|
+
lazyBoot: BooleanConstructor;
|
|
1545
|
+
value: null;
|
|
1546
|
+
class: null;
|
|
1547
|
+
style: PropType<_fastkit_vue_utils__.StyleValue>;
|
|
1548
|
+
transition: {
|
|
1549
|
+
type: PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
1550
|
+
default: string;
|
|
1551
|
+
};
|
|
1552
|
+
alwaysRender: BooleanConstructor;
|
|
1553
|
+
backdrop: {
|
|
1554
|
+
type: PropType<string | boolean>;
|
|
1555
|
+
default: boolean;
|
|
1556
|
+
};
|
|
1557
|
+
focusTrap: {
|
|
1558
|
+
type: BooleanConstructor;
|
|
1559
|
+
default: boolean;
|
|
1560
|
+
};
|
|
1561
|
+
focusRestorable: {
|
|
1562
|
+
type: BooleanConstructor;
|
|
1563
|
+
default: boolean;
|
|
1564
|
+
};
|
|
1565
|
+
scrollLock: {
|
|
1566
|
+
type: BooleanConstructor;
|
|
1567
|
+
default: boolean;
|
|
1568
|
+
};
|
|
1569
|
+
openOnHover: BooleanConstructor;
|
|
1570
|
+
openOnContextmenu: BooleanConstructor;
|
|
1571
|
+
openDelay: {
|
|
1572
|
+
type: PropType<string | number>;
|
|
1573
|
+
default: string | number;
|
|
1574
|
+
};
|
|
1575
|
+
closeDelay: {
|
|
1576
|
+
type: PropType<string | number>;
|
|
1577
|
+
default: string | number;
|
|
1578
|
+
};
|
|
1579
|
+
closeOnOutsideClick: {
|
|
1580
|
+
type: BooleanConstructor;
|
|
1581
|
+
default: boolean;
|
|
1582
|
+
};
|
|
1583
|
+
closeOnEsc: {
|
|
1584
|
+
type: BooleanConstructor;
|
|
1585
|
+
default: boolean;
|
|
1586
|
+
};
|
|
1587
|
+
closeOnNavigation: {
|
|
1588
|
+
type: BooleanConstructor;
|
|
1589
|
+
default: boolean;
|
|
1590
|
+
};
|
|
1591
|
+
persistent: BooleanConstructor;
|
|
1592
|
+
zIndex: {
|
|
1593
|
+
type: PropType<string | number>;
|
|
1594
|
+
default: string | number;
|
|
1595
|
+
};
|
|
1596
|
+
timeout: {
|
|
1597
|
+
type: PropType<string | number>;
|
|
1598
|
+
default: string | number;
|
|
1599
|
+
};
|
|
1600
|
+
navigationGuard: {
|
|
1601
|
+
type: PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
1602
|
+
default: boolean;
|
|
1603
|
+
};
|
|
1604
|
+
guardEffect: {
|
|
1605
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1606
|
+
default: boolean;
|
|
1607
|
+
};
|
|
1608
|
+
activator: {
|
|
1609
|
+
type: PropType<boolean | Event | Element | null>;
|
|
1610
|
+
default: null;
|
|
1611
|
+
};
|
|
1612
|
+
}, {
|
|
1613
|
+
stackControl: VStackControl;
|
|
1614
|
+
hasActiveChild: vue.ComputedRef<boolean>;
|
|
1615
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1616
|
+
'update:modelValue': (modelValue: boolean) => boolean;
|
|
1617
|
+
change: (modelValue: boolean) => boolean;
|
|
1618
|
+
payload: (value: any) => boolean;
|
|
1619
|
+
show: (control: VStackControl) => boolean;
|
|
1620
|
+
close: (control: VStackControl) => boolean;
|
|
1621
|
+
beforeEnter: (el: HTMLElement, control: VStackControl) => boolean;
|
|
1622
|
+
afterEnter: (el: HTMLElement, control: VStackControl) => boolean;
|
|
1623
|
+
enterCancelled: (el: HTMLElement, control: VStackControl) => boolean;
|
|
1624
|
+
beforeLeave: (el: HTMLElement, control: VStackControl) => boolean;
|
|
1625
|
+
afterLeave: (el: HTMLElement, control: VStackControl) => boolean;
|
|
1626
|
+
leaveCancelled: (el: HTMLElement, control: VStackControl) => boolean;
|
|
1627
|
+
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1628
|
+
header: PropType<(control: VStackControl) => VNodeChild>;
|
|
1629
|
+
'v-slots': PropType<VSheetModalSlots>;
|
|
1630
|
+
modelValue: BooleanConstructor;
|
|
1631
|
+
lazyBoot: BooleanConstructor;
|
|
1632
|
+
value: null;
|
|
1633
|
+
class: null;
|
|
1634
|
+
style: PropType<_fastkit_vue_utils__.StyleValue>;
|
|
1635
|
+
transition: {
|
|
1636
|
+
type: PropType<_fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
1637
|
+
default: string;
|
|
1638
|
+
};
|
|
1639
|
+
alwaysRender: BooleanConstructor;
|
|
1640
|
+
backdrop: {
|
|
1641
|
+
type: PropType<string | boolean>;
|
|
1642
|
+
default: boolean;
|
|
1643
|
+
};
|
|
1644
|
+
focusTrap: {
|
|
1645
|
+
type: BooleanConstructor;
|
|
1646
|
+
default: boolean;
|
|
1647
|
+
};
|
|
1648
|
+
focusRestorable: {
|
|
1649
|
+
type: BooleanConstructor;
|
|
1650
|
+
default: boolean;
|
|
1651
|
+
};
|
|
1652
|
+
scrollLock: {
|
|
1653
|
+
type: BooleanConstructor;
|
|
1654
|
+
default: boolean;
|
|
1655
|
+
};
|
|
1656
|
+
openOnHover: BooleanConstructor;
|
|
1657
|
+
openOnContextmenu: BooleanConstructor;
|
|
1658
|
+
openDelay: {
|
|
1659
|
+
type: PropType<string | number>;
|
|
1660
|
+
default: string | number;
|
|
1661
|
+
};
|
|
1662
|
+
closeDelay: {
|
|
1663
|
+
type: PropType<string | number>;
|
|
1664
|
+
default: string | number;
|
|
1665
|
+
};
|
|
1666
|
+
closeOnOutsideClick: {
|
|
1667
|
+
type: BooleanConstructor;
|
|
1668
|
+
default: boolean;
|
|
1669
|
+
};
|
|
1670
|
+
closeOnEsc: {
|
|
1671
|
+
type: BooleanConstructor;
|
|
1672
|
+
default: boolean;
|
|
1673
|
+
};
|
|
1674
|
+
closeOnNavigation: {
|
|
1675
|
+
type: BooleanConstructor;
|
|
1676
|
+
default: boolean;
|
|
663
1677
|
};
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
default: number;
|
|
1678
|
+
persistent: BooleanConstructor;
|
|
1679
|
+
zIndex: {
|
|
1680
|
+
type: PropType<string | number>;
|
|
1681
|
+
default: string | number;
|
|
669
1682
|
};
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
hinttip: vue.PropType<_fastkit_vue_form_control.FormControlHinttip>;
|
|
674
|
-
hinttipDelay: vue.PropType<_fastkit_vue_form_control.FormControlHinttipDelay>;
|
|
675
|
-
infoAppends: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
676
|
-
validating: BooleanConstructor;
|
|
677
|
-
pending: BooleanConstructor;
|
|
678
|
-
focused: BooleanConstructor;
|
|
679
|
-
dirty: BooleanConstructor;
|
|
680
|
-
pristine: BooleanConstructor;
|
|
681
|
-
errors: {
|
|
682
|
-
type: vue.PropType<_fastkit_vue_form_control.FormNodeError[]>;
|
|
683
|
-
default: () => _fastkit_vue_form_control.FormNodeError[];
|
|
1683
|
+
timeout: {
|
|
1684
|
+
type: PropType<string | number>;
|
|
1685
|
+
default: string | number;
|
|
684
1686
|
};
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
untouched: BooleanConstructor;
|
|
689
|
-
required: BooleanConstructor;
|
|
690
|
-
invalid: BooleanConstructor;
|
|
691
|
-
valid: BooleanConstructor;
|
|
692
|
-
hiddenInfo: BooleanConstructor;
|
|
693
|
-
requiredChip: vue.PropType<_fastkit_vue_form_control.RequiredChipSource>;
|
|
694
|
-
type: {
|
|
695
|
-
type: vue.PropType<"number" | "time" | "text" | "search" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password">;
|
|
696
|
-
default: string;
|
|
1687
|
+
navigationGuard: {
|
|
1688
|
+
type: PropType<boolean | _fastkit_vue_stack.VStackNavigationGuard>;
|
|
1689
|
+
default: boolean;
|
|
697
1690
|
};
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
mask: vue.PropType<any>;
|
|
702
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
703
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
704
|
-
pattern: (StringConstructor | RegExpConstructor)[];
|
|
705
|
-
placeholder: StringConstructor;
|
|
706
|
-
autocapitalize: vue.PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
707
|
-
finishings: vue.PropType<_fastkit_vue_form_control.RawTextableFinishingProp>;
|
|
708
|
-
counter: vue.PropType<string | number | boolean>;
|
|
709
|
-
counterValue: vue.PropType<(value: string) => number>;
|
|
710
|
-
limit: BooleanConstructor;
|
|
711
|
-
autocomplete: vue.PropType<boolean | "name" | "off" | "on" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "email" | "username" | "new-password" | "current-password" | "one-time-code" | "organization-title" | "organization" | "street-address" | "address-line1" | "address-line2" | "address-line3" | "address-level4" | "address-level3" | "address-level2" | "address-level1" | "country" | "country-name" | "postal-code" | "cc-name" | "cc-given-name" | "cc-additional-name" | "cc-family-name" | "cc-number" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-csc" | "cc-type" | "transaction-currency" | "transaction-amount" | "language" | "bday" | "bday-day" | "bday-month" | "bday-year" | "sex" | "tel" | "tel-country-code" | "tel-national" | "tel-area-code" | "tel-local" | "tel-extension" | "impp" | "url" | "photo">;
|
|
712
|
-
name: StringConstructor;
|
|
713
|
-
modelValue: vue.Prop<string, string>;
|
|
714
|
-
autofocus: BooleanConstructor;
|
|
715
|
-
spellcheck: BooleanConstructor;
|
|
716
|
-
viewonly: BooleanConstructor;
|
|
717
|
-
clearable: BooleanConstructor;
|
|
718
|
-
validateTiming: {
|
|
719
|
-
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
720
|
-
default: _fastkit_vue_form_control.ValidateTiming;
|
|
1691
|
+
guardEffect: {
|
|
1692
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1693
|
+
default: boolean;
|
|
721
1694
|
};
|
|
722
|
-
|
|
723
|
-
type:
|
|
724
|
-
default:
|
|
1695
|
+
activator: {
|
|
1696
|
+
type: PropType<boolean | Event | Element | null>;
|
|
1697
|
+
default: null;
|
|
725
1698
|
};
|
|
726
|
-
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any>) => any>;
|
|
727
|
-
error: BooleanConstructor;
|
|
728
|
-
errorMessages: vue.PropType<string | string[]>;
|
|
729
1699
|
}>> & {
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
1700
|
+
onChange?: ((modelValue: boolean) => any) | undefined;
|
|
1701
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
1702
|
+
onPayload?: ((value: any) => any) | undefined;
|
|
1703
|
+
onShow?: ((control: VStackControl) => any) | undefined;
|
|
1704
|
+
onClose?: ((control: VStackControl) => any) | undefined;
|
|
1705
|
+
onBeforeEnter?: ((el: HTMLElement, control: VStackControl) => any) | undefined;
|
|
1706
|
+
onAfterEnter?: ((el: HTMLElement, control: VStackControl) => any) | undefined;
|
|
1707
|
+
onEnterCancelled?: ((el: HTMLElement, control: VStackControl) => any) | undefined;
|
|
1708
|
+
onBeforeLeave?: ((el: HTMLElement, control: VStackControl) => any) | undefined;
|
|
1709
|
+
onAfterLeave?: ((el: HTMLElement, control: VStackControl) => any) | undefined;
|
|
1710
|
+
onLeaveCancelled?: ((el: HTMLElement, control: VStackControl) => any) | undefined;
|
|
740
1711
|
}, {
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
valid: boolean;
|
|
764
|
-
hiddenInfo: boolean;
|
|
765
|
-
limit: boolean;
|
|
766
|
-
}, _fastkit_vue_utils.DefinedSlots<{
|
|
767
|
-
label?: ((form: _fastkit_vue_form_control.FormControl) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
768
|
-
[key: string]: any;
|
|
769
|
-
}>[]) | undefined;
|
|
770
|
-
hint?: ((form: _fastkit_vue_form_control.FormControl) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
771
|
-
[key: string]: any;
|
|
772
|
-
}>[]) | undefined;
|
|
773
|
-
infoAppends?: ((form: _fastkit_vue_form_control.FormControl) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
774
|
-
[key: string]: any;
|
|
775
|
-
}>[]) | undefined;
|
|
776
|
-
} & {
|
|
777
|
-
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
778
|
-
[key: string]: any;
|
|
779
|
-
}>[]) | undefined;
|
|
780
|
-
startAdornment?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
781
|
-
[key: string]: any;
|
|
782
|
-
}>[]) | undefined;
|
|
783
|
-
endAdornment?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
784
|
-
[key: string]: any;
|
|
785
|
-
}>[]) | undefined;
|
|
786
|
-
}>>;
|
|
1712
|
+
modelValue: boolean;
|
|
1713
|
+
lazyBoot: boolean;
|
|
1714
|
+
transition: _fastkit_vue_stack.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>;
|
|
1715
|
+
alwaysRender: boolean;
|
|
1716
|
+
backdrop: string | boolean;
|
|
1717
|
+
focusTrap: boolean;
|
|
1718
|
+
focusRestorable: boolean;
|
|
1719
|
+
scrollLock: boolean;
|
|
1720
|
+
openOnHover: boolean;
|
|
1721
|
+
openOnContextmenu: boolean;
|
|
1722
|
+
openDelay: string | number;
|
|
1723
|
+
closeDelay: string | number;
|
|
1724
|
+
closeOnOutsideClick: boolean;
|
|
1725
|
+
closeOnEsc: boolean;
|
|
1726
|
+
closeOnNavigation: boolean;
|
|
1727
|
+
persistent: boolean;
|
|
1728
|
+
zIndex: string | number;
|
|
1729
|
+
timeout: string | number;
|
|
1730
|
+
navigationGuard: boolean | _fastkit_vue_stack.VStackNavigationGuard;
|
|
1731
|
+
guardEffect: string | boolean;
|
|
1732
|
+
activator: boolean | Event | Element | null;
|
|
1733
|
+
}, {}>;
|
|
787
1734
|
|
|
788
1735
|
type UseLinkResult = ReturnType<typeof useLink>;
|
|
1736
|
+
type VDialogProps = InstanceType<typeof VDialog>['$props'];
|
|
789
1737
|
interface VuiFormPromptSettings<T extends {
|
|
790
1738
|
[key: string]: any;
|
|
791
1739
|
} = {
|
|
@@ -887,6 +1835,13 @@ declare class VuiService {
|
|
|
887
1835
|
readonly location: LocationService;
|
|
888
1836
|
readonly stack: VueStackService;
|
|
889
1837
|
readonly useLink: typeof useLink;
|
|
1838
|
+
readonly stackActions: VStackBuiltinActions;
|
|
1839
|
+
readonly dialog: StackableLauncher<typeof VDialog>;
|
|
1840
|
+
readonly alert: StackableLauncher<typeof VDialog>;
|
|
1841
|
+
readonly confirm: StackableLauncher<typeof VDialog, boolean>;
|
|
1842
|
+
readonly snackbar: StackableLauncher<typeof VSnackbar>;
|
|
1843
|
+
readonly menu: StackableLauncher<typeof VMenu>;
|
|
1844
|
+
readonly sheet: StackableLauncher<typeof VSheetModal>;
|
|
890
1845
|
get scroller(): UseScroller;
|
|
891
1846
|
constructor(options: VuiServiceOptions, stackService: VueStackService);
|
|
892
1847
|
configure(options?: Partial<VuiServiceOptions>): void;
|
|
@@ -895,11 +1850,6 @@ declare class VuiService {
|
|
|
895
1850
|
icon<K extends keyof VuiServiceIconSettings>(iconType: K): VuiServiceIconSettings[K];
|
|
896
1851
|
getAutoScrollToElementOffsetTop(): number;
|
|
897
1852
|
getRequiredChip(): VNodeChild;
|
|
898
|
-
dialog(...args: Parameters<VueStackService['dialog']>): Promise<any>;
|
|
899
|
-
alert(...args: Parameters<VueStackService['alert']>): Promise<any>;
|
|
900
|
-
confirm(...args: Parameters<VueStackService['confirm']>): Promise<any>;
|
|
901
|
-
snackbar(...args: Parameters<VueStackService['snackbar']>): Promise<any>;
|
|
902
|
-
menu(...args: Parameters<VueStackService['menu']>): Promise<any>;
|
|
903
1853
|
formPrompt<T extends {
|
|
904
1854
|
[key: string]: any;
|
|
905
1855
|
} = {
|
|
@@ -909,6 +1859,7 @@ declare class VuiService {
|
|
|
909
1859
|
stack: VStackControl;
|
|
910
1860
|
}) => VNodeChild): Promise<T | false | undefined>;
|
|
911
1861
|
prompt(rawOptions?: RawVuiPromptOptions): Promise<string | false | undefined>;
|
|
1862
|
+
stackAction(key: VStackBuiltinActionType, override?: Partial<VStackAction>, attrs?: Record<string, unknown>): VStackAction;
|
|
912
1863
|
}
|
|
913
1864
|
|
|
914
1865
|
interface VuiColorProvider {
|
|
@@ -917,6 +1868,255 @@ interface VuiColorProvider {
|
|
|
917
1868
|
className: (type: 'primary' | 'error') => string;
|
|
918
1869
|
}
|
|
919
1870
|
|
|
1871
|
+
declare const VTooltip: vue.DefineComponent<{
|
|
1872
|
+
x: vue.PropType<_fastkit_vue_stack__.VMenuXPosition>;
|
|
1873
|
+
y: vue.PropType<_fastkit_vue_stack__.VMenuYPosition>;
|
|
1874
|
+
allowOverflow: BooleanConstructor;
|
|
1875
|
+
width: vue.PropType<number | "fit">;
|
|
1876
|
+
height: vue.PropType<number | "fit">;
|
|
1877
|
+
maxWidth: vue.PropType<number | "fit" | "free">;
|
|
1878
|
+
maxHeight: vue.PropType<number | "fit" | "free">;
|
|
1879
|
+
distance: {
|
|
1880
|
+
type: NumberConstructor;
|
|
1881
|
+
default: number;
|
|
1882
|
+
};
|
|
1883
|
+
edgeMargin: {
|
|
1884
|
+
type: NumberConstructor;
|
|
1885
|
+
default: number;
|
|
1886
|
+
};
|
|
1887
|
+
resizeWatchDebounce: {
|
|
1888
|
+
type: NumberConstructor;
|
|
1889
|
+
default: number;
|
|
1890
|
+
};
|
|
1891
|
+
overlap: BooleanConstructor;
|
|
1892
|
+
modelValue: BooleanConstructor;
|
|
1893
|
+
lazyBoot: BooleanConstructor;
|
|
1894
|
+
value: null;
|
|
1895
|
+
class: null;
|
|
1896
|
+
style: vue.PropType<_fastkit_vue_utils__.StyleValue>;
|
|
1897
|
+
transition: {
|
|
1898
|
+
type: vue.PropType<_fastkit_vue_stack__.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
1899
|
+
default: string;
|
|
1900
|
+
};
|
|
1901
|
+
alwaysRender: BooleanConstructor;
|
|
1902
|
+
backdrop: {
|
|
1903
|
+
type: vue.PropType<string | boolean>;
|
|
1904
|
+
default: boolean;
|
|
1905
|
+
};
|
|
1906
|
+
focusTrap: {
|
|
1907
|
+
type: BooleanConstructor;
|
|
1908
|
+
default: boolean;
|
|
1909
|
+
};
|
|
1910
|
+
focusRestorable: {
|
|
1911
|
+
type: BooleanConstructor;
|
|
1912
|
+
default: boolean;
|
|
1913
|
+
};
|
|
1914
|
+
scrollLock: {
|
|
1915
|
+
type: BooleanConstructor;
|
|
1916
|
+
default: boolean;
|
|
1917
|
+
};
|
|
1918
|
+
openOnHover: BooleanConstructor;
|
|
1919
|
+
openOnContextmenu: BooleanConstructor;
|
|
1920
|
+
openDelay: {
|
|
1921
|
+
type: vue.PropType<string | number>;
|
|
1922
|
+
default: string | number;
|
|
1923
|
+
};
|
|
1924
|
+
closeDelay: {
|
|
1925
|
+
type: vue.PropType<string | number>;
|
|
1926
|
+
default: string | number;
|
|
1927
|
+
};
|
|
1928
|
+
closeOnOutsideClick: {
|
|
1929
|
+
type: BooleanConstructor;
|
|
1930
|
+
default: boolean;
|
|
1931
|
+
};
|
|
1932
|
+
closeOnEsc: {
|
|
1933
|
+
type: BooleanConstructor;
|
|
1934
|
+
default: boolean;
|
|
1935
|
+
};
|
|
1936
|
+
closeOnNavigation: {
|
|
1937
|
+
type: BooleanConstructor;
|
|
1938
|
+
default: boolean;
|
|
1939
|
+
};
|
|
1940
|
+
persistent: BooleanConstructor;
|
|
1941
|
+
zIndex: {
|
|
1942
|
+
type: vue.PropType<string | number>;
|
|
1943
|
+
default: string | number;
|
|
1944
|
+
};
|
|
1945
|
+
timeout: {
|
|
1946
|
+
type: vue.PropType<string | number>;
|
|
1947
|
+
default: string | number;
|
|
1948
|
+
};
|
|
1949
|
+
navigationGuard: {
|
|
1950
|
+
type: vue.PropType<boolean | _fastkit_vue_stack__.VStackNavigationGuard>;
|
|
1951
|
+
default: boolean;
|
|
1952
|
+
};
|
|
1953
|
+
guardEffect: {
|
|
1954
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1955
|
+
default: boolean;
|
|
1956
|
+
};
|
|
1957
|
+
activator: {
|
|
1958
|
+
type: vue.PropType<boolean | Event | Element | null>;
|
|
1959
|
+
default: null;
|
|
1960
|
+
};
|
|
1961
|
+
'v-slots': vue.PropType<_fastkit_vue_stack__.VStackSlots>;
|
|
1962
|
+
} & {
|
|
1963
|
+
variant: vue.PropType<ColorVariant>;
|
|
1964
|
+
theme: vue.PropType<ThemeName>;
|
|
1965
|
+
color: vue.PropType<ScopeName>;
|
|
1966
|
+
textColor: vue.PropType<PaletteName>;
|
|
1967
|
+
borderColor: vue.PropType<PaletteName>;
|
|
1968
|
+
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
1969
|
+
[key: string]: any;
|
|
1970
|
+
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1971
|
+
'update:modelValue': (modelValue: boolean) => boolean;
|
|
1972
|
+
change: (modelValue: boolean) => boolean;
|
|
1973
|
+
payload: (value: any) => boolean;
|
|
1974
|
+
show: (control: _fastkit_vue_stack__.VStackControl) => boolean;
|
|
1975
|
+
close: (control: _fastkit_vue_stack__.VStackControl) => boolean;
|
|
1976
|
+
beforeEnter: (el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => boolean;
|
|
1977
|
+
afterEnter: (el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => boolean;
|
|
1978
|
+
enterCancelled: (el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => boolean;
|
|
1979
|
+
beforeLeave: (el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => boolean;
|
|
1980
|
+
afterLeave: (el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => boolean;
|
|
1981
|
+
leaveCancelled: (el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => boolean;
|
|
1982
|
+
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1983
|
+
x: vue.PropType<_fastkit_vue_stack__.VMenuXPosition>;
|
|
1984
|
+
y: vue.PropType<_fastkit_vue_stack__.VMenuYPosition>;
|
|
1985
|
+
allowOverflow: BooleanConstructor;
|
|
1986
|
+
width: vue.PropType<number | "fit">;
|
|
1987
|
+
height: vue.PropType<number | "fit">;
|
|
1988
|
+
maxWidth: vue.PropType<number | "fit" | "free">;
|
|
1989
|
+
maxHeight: vue.PropType<number | "fit" | "free">;
|
|
1990
|
+
distance: {
|
|
1991
|
+
type: NumberConstructor;
|
|
1992
|
+
default: number;
|
|
1993
|
+
};
|
|
1994
|
+
edgeMargin: {
|
|
1995
|
+
type: NumberConstructor;
|
|
1996
|
+
default: number;
|
|
1997
|
+
};
|
|
1998
|
+
resizeWatchDebounce: {
|
|
1999
|
+
type: NumberConstructor;
|
|
2000
|
+
default: number;
|
|
2001
|
+
};
|
|
2002
|
+
overlap: BooleanConstructor;
|
|
2003
|
+
modelValue: BooleanConstructor;
|
|
2004
|
+
lazyBoot: BooleanConstructor;
|
|
2005
|
+
value: null;
|
|
2006
|
+
class: null;
|
|
2007
|
+
style: vue.PropType<_fastkit_vue_utils__.StyleValue>;
|
|
2008
|
+
transition: {
|
|
2009
|
+
type: vue.PropType<_fastkit_vue_stack__.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>>;
|
|
2010
|
+
default: string;
|
|
2011
|
+
};
|
|
2012
|
+
alwaysRender: BooleanConstructor;
|
|
2013
|
+
backdrop: {
|
|
2014
|
+
type: vue.PropType<string | boolean>;
|
|
2015
|
+
default: boolean;
|
|
2016
|
+
};
|
|
2017
|
+
focusTrap: {
|
|
2018
|
+
type: BooleanConstructor;
|
|
2019
|
+
default: boolean;
|
|
2020
|
+
};
|
|
2021
|
+
focusRestorable: {
|
|
2022
|
+
type: BooleanConstructor;
|
|
2023
|
+
default: boolean;
|
|
2024
|
+
};
|
|
2025
|
+
scrollLock: {
|
|
2026
|
+
type: BooleanConstructor;
|
|
2027
|
+
default: boolean;
|
|
2028
|
+
};
|
|
2029
|
+
openOnHover: BooleanConstructor;
|
|
2030
|
+
openOnContextmenu: BooleanConstructor;
|
|
2031
|
+
openDelay: {
|
|
2032
|
+
type: vue.PropType<string | number>;
|
|
2033
|
+
default: string | number;
|
|
2034
|
+
};
|
|
2035
|
+
closeDelay: {
|
|
2036
|
+
type: vue.PropType<string | number>;
|
|
2037
|
+
default: string | number;
|
|
2038
|
+
};
|
|
2039
|
+
closeOnOutsideClick: {
|
|
2040
|
+
type: BooleanConstructor;
|
|
2041
|
+
default: boolean;
|
|
2042
|
+
};
|
|
2043
|
+
closeOnEsc: {
|
|
2044
|
+
type: BooleanConstructor;
|
|
2045
|
+
default: boolean;
|
|
2046
|
+
};
|
|
2047
|
+
closeOnNavigation: {
|
|
2048
|
+
type: BooleanConstructor;
|
|
2049
|
+
default: boolean;
|
|
2050
|
+
};
|
|
2051
|
+
persistent: BooleanConstructor;
|
|
2052
|
+
zIndex: {
|
|
2053
|
+
type: vue.PropType<string | number>;
|
|
2054
|
+
default: string | number;
|
|
2055
|
+
};
|
|
2056
|
+
timeout: {
|
|
2057
|
+
type: vue.PropType<string | number>;
|
|
2058
|
+
default: string | number;
|
|
2059
|
+
};
|
|
2060
|
+
navigationGuard: {
|
|
2061
|
+
type: vue.PropType<boolean | _fastkit_vue_stack__.VStackNavigationGuard>;
|
|
2062
|
+
default: boolean;
|
|
2063
|
+
};
|
|
2064
|
+
guardEffect: {
|
|
2065
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
2066
|
+
default: boolean;
|
|
2067
|
+
};
|
|
2068
|
+
activator: {
|
|
2069
|
+
type: vue.PropType<boolean | Event | Element | null>;
|
|
2070
|
+
default: null;
|
|
2071
|
+
};
|
|
2072
|
+
'v-slots': vue.PropType<_fastkit_vue_stack__.VStackSlots>;
|
|
2073
|
+
} & {
|
|
2074
|
+
variant: vue.PropType<ColorVariant>;
|
|
2075
|
+
theme: vue.PropType<ThemeName>;
|
|
2076
|
+
color: vue.PropType<ScopeName>;
|
|
2077
|
+
textColor: vue.PropType<PaletteName>;
|
|
2078
|
+
borderColor: vue.PropType<PaletteName>;
|
|
2079
|
+
}>> & {
|
|
2080
|
+
onChange?: ((modelValue: boolean) => any) | undefined;
|
|
2081
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
2082
|
+
onPayload?: ((value: any) => any) | undefined;
|
|
2083
|
+
onShow?: ((control: _fastkit_vue_stack__.VStackControl) => any) | undefined;
|
|
2084
|
+
onClose?: ((control: _fastkit_vue_stack__.VStackControl) => any) | undefined;
|
|
2085
|
+
onBeforeEnter?: ((el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any) | undefined;
|
|
2086
|
+
onAfterEnter?: ((el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any) | undefined;
|
|
2087
|
+
onEnterCancelled?: ((el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any) | undefined;
|
|
2088
|
+
onBeforeLeave?: ((el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any) | undefined;
|
|
2089
|
+
onAfterLeave?: ((el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any) | undefined;
|
|
2090
|
+
onLeaveCancelled?: ((el: HTMLElement, control: _fastkit_vue_stack__.VStackControl) => any) | undefined;
|
|
2091
|
+
}, {
|
|
2092
|
+
modelValue: boolean;
|
|
2093
|
+
lazyBoot: boolean;
|
|
2094
|
+
transition: _fastkit_vue_stack__.RawVStackObjectTransitionProp<string | _fastkit_vue_transitions__.JavaScriptTransition>;
|
|
2095
|
+
alwaysRender: boolean;
|
|
2096
|
+
backdrop: string | boolean;
|
|
2097
|
+
focusTrap: boolean;
|
|
2098
|
+
focusRestorable: boolean;
|
|
2099
|
+
scrollLock: boolean;
|
|
2100
|
+
openOnHover: boolean;
|
|
2101
|
+
openOnContextmenu: boolean;
|
|
2102
|
+
openDelay: string | number;
|
|
2103
|
+
closeDelay: string | number;
|
|
2104
|
+
closeOnOutsideClick: boolean;
|
|
2105
|
+
closeOnEsc: boolean;
|
|
2106
|
+
closeOnNavigation: boolean;
|
|
2107
|
+
persistent: boolean;
|
|
2108
|
+
zIndex: string | number;
|
|
2109
|
+
timeout: string | number;
|
|
2110
|
+
navigationGuard: boolean | _fastkit_vue_stack__.VStackNavigationGuard;
|
|
2111
|
+
guardEffect: string | boolean;
|
|
2112
|
+
activator: boolean | Event | Element | null;
|
|
2113
|
+
allowOverflow: boolean;
|
|
2114
|
+
distance: number;
|
|
2115
|
+
edgeMargin: number;
|
|
2116
|
+
resizeWatchDebounce: number;
|
|
2117
|
+
overlap: boolean;
|
|
2118
|
+
}, {}>;
|
|
2119
|
+
|
|
920
2120
|
declare const VSkeltonLoaderBone: vue.DefineComponent<{
|
|
921
2121
|
tag: {
|
|
922
2122
|
type: StringConstructor;
|
|
@@ -1687,8 +2887,8 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
1687
2887
|
}>>, {
|
|
1688
2888
|
size: number | "sm" | "md" | "lg";
|
|
1689
2889
|
disabled: boolean;
|
|
1690
|
-
tile: boolean;
|
|
1691
2890
|
rounded: boolean;
|
|
2891
|
+
tile: boolean;
|
|
1692
2892
|
}, {}>;
|
|
1693
2893
|
|
|
1694
2894
|
declare const CHIP_SIZES: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
@@ -2311,8 +3511,8 @@ declare const VButton: vue.DefineComponent<{
|
|
|
2311
3511
|
borderColor: PropType<PaletteName>;
|
|
2312
3512
|
}>>, {
|
|
2313
3513
|
loading: boolean;
|
|
2314
|
-
align: "left" | "center" | "right";
|
|
2315
3514
|
rounded: boolean;
|
|
3515
|
+
align: "left" | "center" | "right";
|
|
2316
3516
|
}, {}>;
|
|
2317
3517
|
|
|
2318
3518
|
declare const VButtonGroup: vue.DefineComponent<{
|
|
@@ -2460,8 +3660,8 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
2460
3660
|
length: string | number;
|
|
2461
3661
|
modelValue: string | number;
|
|
2462
3662
|
disabled: boolean;
|
|
2463
|
-
dense: boolean;
|
|
2464
3663
|
align: "left" | "center" | "right";
|
|
3664
|
+
dense: boolean;
|
|
2465
3665
|
}, {}>;
|
|
2466
3666
|
|
|
2467
3667
|
declare function createListTileProps(): {
|
|
@@ -3277,7 +4477,7 @@ declare const VCheckbox: vue.DefineComponent<{
|
|
|
3277
4477
|
valid: vue.ComputedRef<boolean>;
|
|
3278
4478
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
3279
4479
|
spellcheck: vue.ComputedRef<boolean>;
|
|
3280
|
-
|
|
4480
|
+
sending: vue.ComputedRef<boolean>;
|
|
3281
4481
|
focus: (opts?: FocusOptions | undefined) => void;
|
|
3282
4482
|
blur: () => void;
|
|
3283
4483
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control.ValidationResult>;
|
|
@@ -3464,7 +4664,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
|
|
|
3464
4664
|
valid: vue.ComputedRef<boolean>;
|
|
3465
4665
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
3466
4666
|
spellcheck: vue.ComputedRef<boolean>;
|
|
3467
|
-
|
|
4667
|
+
sending: vue.ComputedRef<boolean>;
|
|
3468
4668
|
focus: (opts?: FocusOptions | undefined) => void;
|
|
3469
4669
|
blur: () => void;
|
|
3470
4670
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control__.ValidationResult>;
|
|
@@ -3661,7 +4861,7 @@ declare const VRadio: vue.DefineComponent<{
|
|
|
3661
4861
|
valid: vue.ComputedRef<boolean>;
|
|
3662
4862
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
3663
4863
|
spellcheck: vue.ComputedRef<boolean>;
|
|
3664
|
-
|
|
4864
|
+
sending: vue.ComputedRef<boolean>;
|
|
3665
4865
|
focus: (opts?: FocusOptions | undefined) => void;
|
|
3666
4866
|
blur: () => void;
|
|
3667
4867
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control.ValidationResult>;
|
|
@@ -3846,7 +5046,7 @@ declare const VRadioGroup: vue.DefineComponent<{
|
|
|
3846
5046
|
valid: vue.ComputedRef<boolean>;
|
|
3847
5047
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
3848
5048
|
spellcheck: vue.ComputedRef<boolean>;
|
|
3849
|
-
|
|
5049
|
+
sending: vue.ComputedRef<boolean>;
|
|
3850
5050
|
focus: (opts?: FocusOptions | undefined) => void;
|
|
3851
5051
|
blur: () => void;
|
|
3852
5052
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control__.ValidationResult>;
|
|
@@ -4043,7 +5243,7 @@ declare const VSwitch: vue.DefineComponent<{
|
|
|
4043
5243
|
valid: vue.ComputedRef<boolean>;
|
|
4044
5244
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
4045
5245
|
spellcheck: vue.ComputedRef<boolean>;
|
|
4046
|
-
|
|
5246
|
+
sending: vue.ComputedRef<boolean>;
|
|
4047
5247
|
focus: (opts?: FocusOptions | undefined) => void;
|
|
4048
5248
|
blur: () => void;
|
|
4049
5249
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control.ValidationResult>;
|
|
@@ -4228,7 +5428,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
|
|
|
4228
5428
|
valid: vue.ComputedRef<boolean>;
|
|
4229
5429
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
4230
5430
|
spellcheck: vue.ComputedRef<boolean>;
|
|
4231
|
-
|
|
5431
|
+
sending: vue.ComputedRef<boolean>;
|
|
4232
5432
|
focus: (opts?: FocusOptions | undefined) => void;
|
|
4233
5433
|
blur: () => void;
|
|
4234
5434
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control__.ValidationResult>;
|
|
@@ -4423,7 +5623,7 @@ declare const VOption: vue.DefineComponent<{
|
|
|
4423
5623
|
valid: vue.ComputedRef<boolean>;
|
|
4424
5624
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
4425
5625
|
spellcheck: vue.ComputedRef<boolean>;
|
|
4426
|
-
|
|
5626
|
+
sending: vue.ComputedRef<boolean>;
|
|
4427
5627
|
focus: (opts?: FocusOptions | undefined) => void;
|
|
4428
5628
|
blur: () => void;
|
|
4429
5629
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control.ValidationResult>;
|
|
@@ -4620,7 +5820,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
4620
5820
|
closeMenu: () => void;
|
|
4621
5821
|
renderSelections: (selectedItems: FormSelectorItemControl[]) => VNodeChild[];
|
|
4622
5822
|
menuRef: () => Ref<{
|
|
4623
|
-
|
|
5823
|
+
menu: MenuAPI;
|
|
4624
5824
|
} | null>;
|
|
4625
5825
|
clearKeyFocused: () => void;
|
|
4626
5826
|
parentControl: ControlProvider | null;
|
|
@@ -4669,7 +5869,7 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
4669
5869
|
valid: vue.ComputedRef<boolean>;
|
|
4670
5870
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
4671
5871
|
spellcheck: vue.ComputedRef<boolean>;
|
|
4672
|
-
|
|
5872
|
+
sending: vue.ComputedRef<boolean>;
|
|
4673
5873
|
blur: () => void;
|
|
4674
5874
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control.ValidationResult>;
|
|
4675
5875
|
validate: () => Promise<boolean>;
|
|
@@ -4789,8 +5989,8 @@ declare const VSelect: vue.DefineComponent<{
|
|
|
4789
5989
|
untouched: boolean;
|
|
4790
5990
|
invalid: boolean;
|
|
4791
5991
|
valid: boolean;
|
|
4792
|
-
hiddenInfo: boolean;
|
|
4793
5992
|
closeOnNavigation: boolean;
|
|
5993
|
+
hiddenInfo: boolean;
|
|
4794
5994
|
multiple: boolean;
|
|
4795
5995
|
items: _fastkit_vue_form_control.RawFormSelectorItems;
|
|
4796
5996
|
}, _fastkit_vue_utils.DefinedSlots<{
|
|
@@ -4878,16 +6078,16 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
4878
6078
|
untouched: BooleanConstructor;
|
|
4879
6079
|
invalid: BooleanConstructor;
|
|
4880
6080
|
valid: BooleanConstructor;
|
|
6081
|
+
variant: {
|
|
6082
|
+
type: PropType<"outlined" | "filled" | "flat">;
|
|
6083
|
+
validator: (value: any) => boolean;
|
|
6084
|
+
};
|
|
4881
6085
|
hint: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4882
6086
|
infoAppends: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4883
6087
|
hinttip: PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
4884
6088
|
hinttipDelay: PropType<_fastkit_vue_form_control__.FormControlHinttipDelay>;
|
|
4885
6089
|
hiddenInfo: BooleanConstructor;
|
|
4886
6090
|
requiredChip: PropType<_fastkit_vue_form_control__.RequiredChipSource>;
|
|
4887
|
-
variant: {
|
|
4888
|
-
type: PropType<"outlined" | "filled" | "flat">;
|
|
4889
|
-
validator: (value: any) => boolean;
|
|
4890
|
-
};
|
|
4891
6091
|
startAdornment: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4892
6092
|
endAdornment: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4893
6093
|
maxlength: (StringConstructor | NumberConstructor)[];
|
|
@@ -4971,16 +6171,16 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
4971
6171
|
untouched: BooleanConstructor;
|
|
4972
6172
|
invalid: BooleanConstructor;
|
|
4973
6173
|
valid: BooleanConstructor;
|
|
6174
|
+
variant: {
|
|
6175
|
+
type: PropType<"outlined" | "filled" | "flat">;
|
|
6176
|
+
validator: (value: any) => boolean;
|
|
6177
|
+
};
|
|
4974
6178
|
hint: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4975
6179
|
infoAppends: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4976
6180
|
hinttip: PropType<_fastkit_vue_form_control__.FormControlHinttip>;
|
|
4977
6181
|
hinttipDelay: PropType<_fastkit_vue_form_control__.FormControlHinttipDelay>;
|
|
4978
6182
|
hiddenInfo: BooleanConstructor;
|
|
4979
6183
|
requiredChip: PropType<_fastkit_vue_form_control__.RequiredChipSource>;
|
|
4980
|
-
variant: {
|
|
4981
|
-
type: PropType<"outlined" | "filled" | "flat">;
|
|
4982
|
-
validator: (value: any) => boolean;
|
|
4983
|
-
};
|
|
4984
6184
|
startAdornment: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4985
6185
|
endAdornment: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
|
|
4986
6186
|
maxlength: (StringConstructor | NumberConstructor)[];
|
|
@@ -5162,7 +6362,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
5162
6362
|
valid: vue.ComputedRef<boolean>;
|
|
5163
6363
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
5164
6364
|
spellcheck: vue.ComputedRef<boolean>;
|
|
5165
|
-
|
|
6365
|
+
sending: vue.ComputedRef<boolean>;
|
|
5166
6366
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control.ValidationResult>;
|
|
5167
6367
|
validate: () => Promise<boolean>;
|
|
5168
6368
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
@@ -5308,7 +6508,7 @@ declare function createVFormProps(): {
|
|
|
5308
6508
|
type: BooleanConstructor;
|
|
5309
6509
|
default: boolean;
|
|
5310
6510
|
};
|
|
5311
|
-
|
|
6511
|
+
sending: BooleanConstructor;
|
|
5312
6512
|
disableAutoScroll: BooleanConstructor;
|
|
5313
6513
|
name: StringConstructor;
|
|
5314
6514
|
modelValue: vue.Prop<unknown, unknown>;
|
|
@@ -5349,7 +6549,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
5349
6549
|
type: BooleanConstructor;
|
|
5350
6550
|
default: boolean;
|
|
5351
6551
|
};
|
|
5352
|
-
|
|
6552
|
+
sending: BooleanConstructor;
|
|
5353
6553
|
disableAutoScroll: BooleanConstructor;
|
|
5354
6554
|
name: StringConstructor;
|
|
5355
6555
|
modelValue: vue.Prop<unknown, unknown>;
|
|
@@ -5382,7 +6582,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
5382
6582
|
'v-form--disabled': boolean;
|
|
5383
6583
|
'v-form--validating': boolean;
|
|
5384
6584
|
'v-form--pending': boolean;
|
|
5385
|
-
'v-form--
|
|
6585
|
+
'v-form--sending': boolean;
|
|
5386
6586
|
})[]>;
|
|
5387
6587
|
form: VueForm;
|
|
5388
6588
|
formRef: () => vue.Ref<HTMLFormElement | null>;
|
|
@@ -5414,14 +6614,14 @@ declare const VForm: vue.DefineComponent<{
|
|
|
5414
6614
|
valid: vue.ComputedRef<boolean>;
|
|
5415
6615
|
shouldValidate: vue.ComputedRef<boolean>;
|
|
5416
6616
|
spellcheck: vue.ComputedRef<boolean>;
|
|
5417
|
-
|
|
6617
|
+
sending: vue.ComputedRef<boolean>;
|
|
5418
6618
|
focus: (opts?: FocusOptions | undefined) => void;
|
|
5419
6619
|
blur: () => void;
|
|
5420
6620
|
validateSelf: (force?: boolean | undefined) => Promise<_fastkit_vue_form_control.ValidationResult>;
|
|
5421
6621
|
validate: () => Promise<boolean>;
|
|
5422
6622
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
5423
6623
|
submit: (form: VueForm, ev: Event) => boolean;
|
|
5424
|
-
'update:
|
|
6624
|
+
'update:sending': (sending: boolean, form: VueForm) => boolean;
|
|
5425
6625
|
'update:modelValue': (value: unknown) => boolean;
|
|
5426
6626
|
'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
|
|
5427
6627
|
change: (value: unknown) => boolean;
|
|
@@ -5441,7 +6641,7 @@ declare const VForm: vue.DefineComponent<{
|
|
|
5441
6641
|
type: BooleanConstructor;
|
|
5442
6642
|
default: boolean;
|
|
5443
6643
|
};
|
|
5444
|
-
|
|
6644
|
+
sending: BooleanConstructor;
|
|
5445
6645
|
disableAutoScroll: BooleanConstructor;
|
|
5446
6646
|
name: StringConstructor;
|
|
5447
6647
|
modelValue: vue.Prop<unknown, unknown>;
|
|
@@ -5472,14 +6672,14 @@ declare const VForm: vue.DefineComponent<{
|
|
|
5472
6672
|
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
5473
6673
|
onChange?: ((value: unknown) => any) | undefined;
|
|
5474
6674
|
onSubmit?: ((form: VueForm, ev: Event) => any) | undefined;
|
|
5475
|
-
"onUpdate:
|
|
6675
|
+
"onUpdate:sending"?: ((sending: boolean, form: VueForm) => any) | undefined;
|
|
5476
6676
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
5477
6677
|
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
5478
6678
|
}, {
|
|
5479
6679
|
required: boolean;
|
|
5480
6680
|
loading: boolean;
|
|
5481
6681
|
autoValidate: boolean;
|
|
5482
|
-
|
|
6682
|
+
sending: boolean;
|
|
5483
6683
|
disableAutoScroll: boolean;
|
|
5484
6684
|
tabindex: string | number;
|
|
5485
6685
|
autofocus: boolean;
|
|
@@ -6046,8 +7246,8 @@ declare const VToolbarMenu: vue.DefineComponent<{
|
|
|
6046
7246
|
borderColor: vue.PropType<PaletteName>;
|
|
6047
7247
|
}>>, {
|
|
6048
7248
|
loading: boolean;
|
|
6049
|
-
align: "left" | "center" | "right";
|
|
6050
7249
|
rounded: boolean;
|
|
7250
|
+
align: "left" | "center" | "right";
|
|
6051
7251
|
}, {}>;
|
|
6052
7252
|
|
|
6053
7253
|
type VToolbarEdgeEdge = 'start' | 'end';
|
|
@@ -6104,4 +7304,4 @@ declare class VuiPlugin {
|
|
|
6104
7304
|
}
|
|
6105
7305
|
declare function installVuiPlugin(app: App, opts: VuiPluginOptions): App<any>;
|
|
6106
7306
|
|
|
6107
|
-
export { ARROW_KEY_TYPES, AVATAR_SIZES, AdornmentPosition, AvatarSize, BUTTON_ALIGNS, BreadcrumbsItem, BusyImageLoadState, BusyImageRect, BusyImageRects, BusyImageSizeValue, CHIP_SIZES, CHOICE_KEY_TYPES, CONTROL_FIELD_VARIANTS, CONTROL_LOADING_SPINNER_SIZES, CONTROL_SIZES, ChipSize, ContentSwitcherSeeTopOptions, ControlFieldProvider, ControlFieldProviderProps, ControlFieldVariant, ControlProps, ControlProvider, ControlSize, DataTableCellSlotPayload, DataTableDefaults, DataTableHeader, DataTableHeaderAlign, DataTableItem, DataTableItemSlotPayload, DataTableRowSettings, DataTableRowSettingsFn, DefineFormSelectorComponentOptions, ElevationProps, GridContainerAlignContentValue, GridContainerDirectionValue, GridContainerJustifyContentValue, GridContainerSpacingValue, GridContainerWrapValue, GridItemAlignValue, GridItemJustifyValue, GridItemNumberSizeValue, GridItemSizeValue, ImgHTMLAttributesPropOptions, InputBoxSlots, KEYBORD_EVENT_TYPES, NavigationInput, NavigationItemInput, PAGINATION_ALIGNS, RawBreadcrumbsItem, RawDataTableRowSettings, RawIconProp, RawVButtonIcon, RawVButtonSpacer, RawVChipIcon, RawVuiPluginOptions, RawVuiPromptOptions, RawVuiServiceIconSettings, RawVuiServiceOptions, RawVuiServiceUISettings, TextFieldEmits, TextFieldInput, TextFieldPropsOptions, UseControlFieldProviderOptions, UseControlProviderOptions, UseElevationOptions, UseLinkResult, VApp, VAvatar, VBreadcrumbs, VBusyImage, VButton, VButtonAlign, VButtonGroup, VButtonIcon, VButtonProps, VButtonResolvedProps, VButtonSpacer, VCard, VCardActions, VCardContent, VCheckbox, VCheckboxGroup, VChip, VChipIcon, VContentSwitcher, VControlField, VDataTable, VDrawerLayout, VForm, VFormControl, VFormSlots, VGridContainer, VGridItem, VHero, VIcon, VListTile, VNavigation, VNavigationItem, VNumberField, VOption, VOptionGroup, VPagination, VPaginationAlign, VPaginationGuard, VPaper, VRadio, VRadioGroup, VSelect, VSkeltonLoaderBone, VSwitch, VSwitchGroup, VTabs, VTabsGuard, VTabsItem, VTabsItemLabelSlot, VTabsItemLabelSlotCtx, VTabsRouterHandler, VTextCounter, VTextField, VTextarea, VToolbar, VToolbarEdge, VToolbarEdgeEdge, VToolbarMenu, VToolbarMenuEdge, VToolbarTitle, VUI_CHECKBOX_GROUP_SYMBOL, VUI_CHECKBOX_SYMBOL, VUI_FORM_SYMBOL, VUI_OPTION_SYMBOL, VUI_RADIO_GROUP_SYMBOL, VUI_RADIO_SYMBOL, VUI_SELECT_SYMBOL, VUI_SWITCH_GROUP_SYMBOL, VUI_SWITCH_SYMBOL, VUI_TEXTAREA_SYMBOL, VUI_TEXT_FIELD_SYMBOL, VuiColorProvider, VuiColorProviderInjectionKey, VuiControlFieldInjectionKey, VuiControlInjectionKey, VuiElevationValue, VuiFormPromptSettings, VuiInjectionKey, VuiPlugin, VuiPluginOptions, VuiPluginStackOptions, VuiPromptOptions, VuiService, VuiServiceIconSettings, VuiServiceOptions, VuiServiceUISettings, VuiVNodeResolver, configureDataTableDefaults, createAvatarProps, createCardProps, createChipProps, createControlFieldProps, createControlFieldProviderProps, createControlProps, createElevationProps, createListTileProps, createNavigationItemProps, createNavigationProps, createPaperBaseProps, createPaperProps, createRequiredChipRenderer, createVFormProps, defineFormSelectorComponent, formSlots, iconProps, installVuiPlugin, listTileEmits, mergeVuiPluginOptions, mergeVuiServiceIconSettings, mergeVuiServiceOptions, mergeVuiServiceUISettings, paginationProps, paperBaseSlots, rawIconProp, renderNavigationItemInput, resolveNavigationItemInput, resolveRawIconProp, splitAttrs, useControl, useControlField, useElevation, useVui, useVuiColorProvider, vueButtonProps };
|
|
7307
|
+
export { ARROW_KEY_TYPES, AVATAR_SIZES, AdornmentPosition, AvatarSize, BUTTON_ALIGNS, BreadcrumbsItem, BusyImageLoadState, BusyImageRect, BusyImageRects, BusyImageSizeValue, CHIP_SIZES, CHOICE_KEY_TYPES, CONTROL_FIELD_VARIANTS, CONTROL_LOADING_SPINNER_SIZES, CONTROL_SIZES, ChipSize, ContentSwitcherSeeTopOptions, ControlFieldProvider, ControlFieldProviderProps, ControlFieldVariant, ControlProps, ControlProvider, ControlSize, DataTableCellSlotPayload, DataTableDefaults, DataTableHeader, DataTableHeaderAlign, DataTableItem, DataTableItemSlotPayload, DataTableRowSettings, DataTableRowSettingsFn, DefineFormSelectorComponentOptions, ElevationProps, GridContainerAlignContentValue, GridContainerDirectionValue, GridContainerJustifyContentValue, GridContainerSpacingValue, GridContainerWrapValue, GridItemAlignValue, GridItemJustifyValue, GridItemNumberSizeValue, GridItemSizeValue, ImgHTMLAttributesPropOptions, InputBoxSlots, KEYBORD_EVENT_TYPES, NavigationInput, NavigationItemInput, PAGINATION_ALIGNS, RawBreadcrumbsItem, RawDataTableRowSettings, RawIconProp, RawVButtonIcon, RawVButtonSpacer, RawVChipIcon, RawVuiPluginOptions, RawVuiPromptOptions, RawVuiServiceIconSettings, RawVuiServiceOptions, RawVuiServiceUISettings, TextFieldEmits, TextFieldInput, TextFieldPropsOptions, UseControlFieldProviderOptions, UseControlProviderOptions, UseElevationOptions, UseLinkResult, VApp, VAvatar, VBreadcrumbs, VBusyImage, VButton, VButtonAlign, VButtonGroup, VButtonIcon, VButtonProps, VButtonResolvedProps, VButtonSpacer, VCard, VCardActions, VCardContent, VCheckbox, VCheckboxGroup, VChip, VChipIcon, VContentSwitcher, VControlField, VDataTable, VDialog, VDrawerLayout, VForm, VFormControl, VFormSlots, VGridContainer, VGridItem, VHero, VIcon, VListTile, VMenu, VNavigation, VNavigationItem, VNumberField, VOption, VOptionGroup, VPagination, VPaginationAlign, VPaginationGuard, VPaper, VRadio, VRadioGroup, VSelect, VSheetModal, VSheetModalSlots, VSkeltonLoaderBone, VSnackbar, VSwitch, VSwitchGroup, VTabs, VTabsGuard, VTabsItem, VTabsItemLabelSlot, VTabsItemLabelSlotCtx, VTabsRouterHandler, VTextCounter, VTextField, VTextarea, VToolbar, VToolbarEdge, VToolbarEdgeEdge, VToolbarMenu, VToolbarMenuEdge, VToolbarTitle, VTooltip, VUI_CHECKBOX_GROUP_SYMBOL, VUI_CHECKBOX_SYMBOL, VUI_FORM_SYMBOL, VUI_OPTION_SYMBOL, VUI_RADIO_GROUP_SYMBOL, VUI_RADIO_SYMBOL, VUI_SELECT_SYMBOL, VUI_SWITCH_GROUP_SYMBOL, VUI_SWITCH_SYMBOL, VUI_TEXTAREA_SYMBOL, VUI_TEXT_FIELD_SYMBOL, VuiColorProvider, VuiColorProviderInjectionKey, VuiControlFieldInjectionKey, VuiControlInjectionKey, VuiElevationValue, VuiFormPromptSettings, VuiInjectionKey, VuiPlugin, VuiPluginOptions, VuiPluginStackOptions, VuiPromptOptions, VuiService, VuiServiceIconSettings, VuiServiceOptions, VuiServiceUISettings, VuiVNodeResolver, configureDataTableDefaults, createAvatarProps, createCardProps, createChipProps, createControlFieldProps, createControlFieldProviderProps, createControlProps, createElevationProps, createListTileProps, createNavigationItemProps, createNavigationProps, createPaperBaseProps, createPaperProps, createRequiredChipRenderer, createVFormProps, defineFormSelectorComponent, formSlots, iconProps, installVuiPlugin, listTileEmits, mergeVuiPluginOptions, mergeVuiServiceIconSettings, mergeVuiServiceOptions, mergeVuiServiceUISettings, paginationProps, paperBaseSlots, rawIconProp, renderNavigationItemInput, resolveNavigationItemInput, resolveRawIconProp, sheetModalProps, splitAttrs, useControl, useControlField, useElevation, useVui, useVuiColorProvider, vueButtonProps };
|