@fastkit/vui 1.1.1 → 1.3.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/README.md +1 -1
- package/dist/vui.css +37 -0
- package/dist/vui.d.ts +417 -76
- package/dist/vui.mjs +458 -337
- package/dist/vui.mjs.map +1 -1
- package/package.json +24 -24
- package/src/components/VControlField/VControlField.scss +1 -0
- package/src/components/VControlField/VControlField.tsx +2 -2
- package/src/components/VDataTable/VDataTable.tsx +1 -1
- package/src/components/VFileInput/VFileInput.scss +42 -0
- package/src/components/VFileInput/VFileInput.tsx +178 -0
- package/src/components/VFileInput/index.ts +1 -0
- package/src/components/VFormControl/VFormControl.tsx +2 -1
- package/src/components/VIcon/VIcon.tsx +1 -1
- package/src/components/VNavigation/VNavigationItem.tsx +1 -1
- package/src/components/VPagination/VPagination.tsx +1 -1
- package/src/components/VSelect/VSelect.tsx +3 -3
- package/src/components/VTabs/VTab.tsx +1 -1
- package/src/components/VTextField/VTextField.tsx +1 -1
- package/src/components/index.ts +1 -0
- package/src/injections.ts +1 -0
- package/src/service.tsx +2 -1
package/dist/vui.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export * from '@fastkit/vue-app-layout';
|
|
|
19
19
|
import { VueColorSchemePluginSettings, ScopeName as ScopeName$1 } from '@fastkit/vue-color-scheme';
|
|
20
20
|
export * from '@fastkit/vue-color-scheme';
|
|
21
21
|
import * as _fastkit_vue_form_control from '@fastkit/vue-form-control';
|
|
22
|
-
import { FormSelectorControl, ResolvedFormSelectorItem, FormNodeControl, TextInputNodeEmits, FormNodeWrapperHinttipDelay, VueForm, RequiredChipSource, FormNodeWrapper, FormSelectorItemGroupControl, FormSelectorItemControl, FormGroupControl, VueFormServiceOptions } from '@fastkit/vue-form-control';
|
|
22
|
+
import { FormSelectorControl, ResolvedFormSelectorItem, FormNodeControl, TextInputNodeEmits, FormNodeWrapperHinttipDelay, VueForm, RequiredChipSource, FormNodeWrapper, FormSelectorItemGroupControl, FormSelectorItemControl, FileInputNodeControl, FileInputNodeEmits, FormGroupControl, VueFormServiceOptions } from '@fastkit/vue-form-control';
|
|
23
23
|
export * from '@fastkit/vue-form-control';
|
|
24
24
|
import { UseScroller } from '@fastkit/vue-scroller';
|
|
25
25
|
export * from '@fastkit/vue-scroller';
|
|
@@ -682,7 +682,7 @@ declare const VIcon: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
682
682
|
type: NumberConstructor;
|
|
683
683
|
};
|
|
684
684
|
}>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
685
|
-
click: (ev:
|
|
685
|
+
click: (ev: PointerEvent) => true;
|
|
686
686
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
687
687
|
name: {
|
|
688
688
|
type: PropType<IconName | EmptyIconSymbol>;
|
|
@@ -692,7 +692,7 @@ declare const VIcon: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
692
692
|
type: NumberConstructor;
|
|
693
693
|
};
|
|
694
694
|
}>> & Readonly<{
|
|
695
|
-
onClick?: ((ev:
|
|
695
|
+
onClick?: ((ev: PointerEvent) => any) | undefined;
|
|
696
696
|
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
697
697
|
|
|
698
698
|
declare const VDialog: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
@@ -1996,6 +1996,7 @@ declare const VUI_RADIO_GROUP_SYMBOL = "vui-radio-group";
|
|
|
1996
1996
|
declare const VUI_RADIO_SYMBOL = "vui-radio";
|
|
1997
1997
|
declare const VUI_SWITCH_GROUP_SYMBOL = "vui-switch-group";
|
|
1998
1998
|
declare const VUI_SWITCH_SYMBOL = "vui-switch";
|
|
1999
|
+
declare const VUI_FILE_INPUT_SYMBOL = "vui-file-input";
|
|
1999
2000
|
declare const VUI_FORM_GROUP_SYMBOL = "vui-form-group";
|
|
2000
2001
|
declare const VUI_FORM_SYMBOL = "vui-form";
|
|
2001
2002
|
declare function useVui(): VuiService;
|
|
@@ -2073,6 +2074,7 @@ interface VuiServiceIconSettings {
|
|
|
2073
2074
|
hinttip: IconName;
|
|
2074
2075
|
clear: IconName;
|
|
2075
2076
|
reload: IconName;
|
|
2077
|
+
fileUpload: IconName;
|
|
2076
2078
|
}
|
|
2077
2079
|
type RawVuiServiceIconSettings = Partial<VuiServiceIconSettings>;
|
|
2078
2080
|
declare function mergeVuiServiceIconSettings(base: VuiServiceIconSettings, overrides?: RawVuiServiceIconSettings): VuiServiceIconSettings;
|
|
@@ -2545,18 +2547,18 @@ declare const VBusyImage: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2545
2547
|
onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
2546
2548
|
onChange: PropType<((payload: Event) => void) | undefined>;
|
|
2547
2549
|
onBeforeinput: PropType<((payload: InputEvent) => void) | undefined>;
|
|
2548
|
-
|
|
2550
|
+
onFormdata: PropType<((payload: FormDataEvent) => void) | undefined>;
|
|
2551
|
+
onInput: PropType<((payload: InputEvent) => void) | undefined>;
|
|
2549
2552
|
onReset: PropType<((payload: Event) => void) | undefined>;
|
|
2550
2553
|
onSubmit: PropType<((payload: SubmitEvent) => void) | undefined>;
|
|
2551
2554
|
onInvalid: PropType<((payload: Event) => void) | undefined>;
|
|
2555
|
+
onFullscreenchange: PropType<((payload: Event) => void) | undefined>;
|
|
2556
|
+
onFullscreenerror: PropType<((payload: Event) => void) | undefined>;
|
|
2552
2557
|
onLoad: PropType<((payload: Event) => void) | undefined>;
|
|
2553
2558
|
onError: PropType<((payload: Event) => void) | undefined>;
|
|
2554
2559
|
onKeydown: PropType<((payload: KeyboardEvent) => void) | undefined>;
|
|
2555
2560
|
onKeypress: PropType<((payload: KeyboardEvent) => void) | undefined>;
|
|
2556
2561
|
onKeyup: PropType<((payload: KeyboardEvent) => void) | undefined>;
|
|
2557
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2558
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2559
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2560
2562
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
2561
2563
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
2562
2564
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -2594,6 +2596,11 @@ declare const VBusyImage: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2594
2596
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
2595
2597
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
2596
2598
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
2599
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2600
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2601
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2602
|
+
onGotpointercapture: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2603
|
+
onLostpointercapture: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2597
2604
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2598
2605
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2599
2606
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -2602,11 +2609,17 @@ declare const VBusyImage: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2602
2609
|
onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2603
2610
|
onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2604
2611
|
onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2612
|
+
onBeforetoggle: PropType<((payload: ToggleEvent) => void) | undefined>;
|
|
2613
|
+
onToggle: PropType<((payload: ToggleEvent) => void) | undefined>;
|
|
2605
2614
|
onWheel: PropType<((payload: WheelEvent) => void) | undefined>;
|
|
2615
|
+
onAnimationcancel: PropType<((payload: AnimationEvent) => void) | undefined>;
|
|
2606
2616
|
onAnimationstart: PropType<((payload: AnimationEvent) => void) | undefined>;
|
|
2607
2617
|
onAnimationend: PropType<((payload: AnimationEvent) => void) | undefined>;
|
|
2608
2618
|
onAnimationiteration: PropType<((payload: AnimationEvent) => void) | undefined>;
|
|
2619
|
+
onSecuritypolicyviolation: PropType<((payload: SecurityPolicyViolationEvent) => void) | undefined>;
|
|
2620
|
+
onTransitioncancel: PropType<((payload: TransitionEvent) => void) | undefined>;
|
|
2609
2621
|
onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
|
|
2622
|
+
onTransitionrun: PropType<((payload: TransitionEvent) => void) | undefined>;
|
|
2610
2623
|
onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
|
|
2611
2624
|
'v-body-scroll-lock': PropType<_fastkit_vue_body_scroll_lock.BodyScrollLockDirectiveBindingValue>;
|
|
2612
2625
|
'v-click-outside': PropType<_fastkit_vue_click_outside.ClickOutsideDirectiveBindingValue | undefined>;
|
|
@@ -2740,18 +2753,18 @@ declare const VBusyImage: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2740
2753
|
onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
|
|
2741
2754
|
onChange: PropType<((payload: Event) => void) | undefined>;
|
|
2742
2755
|
onBeforeinput: PropType<((payload: InputEvent) => void) | undefined>;
|
|
2743
|
-
|
|
2756
|
+
onFormdata: PropType<((payload: FormDataEvent) => void) | undefined>;
|
|
2757
|
+
onInput: PropType<((payload: InputEvent) => void) | undefined>;
|
|
2744
2758
|
onReset: PropType<((payload: Event) => void) | undefined>;
|
|
2745
2759
|
onSubmit: PropType<((payload: SubmitEvent) => void) | undefined>;
|
|
2746
2760
|
onInvalid: PropType<((payload: Event) => void) | undefined>;
|
|
2761
|
+
onFullscreenchange: PropType<((payload: Event) => void) | undefined>;
|
|
2762
|
+
onFullscreenerror: PropType<((payload: Event) => void) | undefined>;
|
|
2747
2763
|
onLoad: PropType<((payload: Event) => void) | undefined>;
|
|
2748
2764
|
onError: PropType<((payload: Event) => void) | undefined>;
|
|
2749
2765
|
onKeydown: PropType<((payload: KeyboardEvent) => void) | undefined>;
|
|
2750
2766
|
onKeypress: PropType<((payload: KeyboardEvent) => void) | undefined>;
|
|
2751
2767
|
onKeyup: PropType<((payload: KeyboardEvent) => void) | undefined>;
|
|
2752
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2753
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2754
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2755
2768
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
2756
2769
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
2757
2770
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -2789,6 +2802,11 @@ declare const VBusyImage: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2789
2802
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
2790
2803
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
2791
2804
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
2805
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2806
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2807
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2808
|
+
onGotpointercapture: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2809
|
+
onLostpointercapture: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2792
2810
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2793
2811
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2794
2812
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -2797,11 +2815,17 @@ declare const VBusyImage: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2797
2815
|
onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2798
2816
|
onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2799
2817
|
onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
2818
|
+
onBeforetoggle: PropType<((payload: ToggleEvent) => void) | undefined>;
|
|
2819
|
+
onToggle: PropType<((payload: ToggleEvent) => void) | undefined>;
|
|
2800
2820
|
onWheel: PropType<((payload: WheelEvent) => void) | undefined>;
|
|
2821
|
+
onAnimationcancel: PropType<((payload: AnimationEvent) => void) | undefined>;
|
|
2801
2822
|
onAnimationstart: PropType<((payload: AnimationEvent) => void) | undefined>;
|
|
2802
2823
|
onAnimationend: PropType<((payload: AnimationEvent) => void) | undefined>;
|
|
2803
2824
|
onAnimationiteration: PropType<((payload: AnimationEvent) => void) | undefined>;
|
|
2825
|
+
onSecuritypolicyviolation: PropType<((payload: SecurityPolicyViolationEvent) => void) | undefined>;
|
|
2826
|
+
onTransitioncancel: PropType<((payload: TransitionEvent) => void) | undefined>;
|
|
2804
2827
|
onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
|
|
2828
|
+
onTransitionrun: PropType<((payload: TransitionEvent) => void) | undefined>;
|
|
2805
2829
|
onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
|
|
2806
2830
|
'v-body-scroll-lock': PropType<_fastkit_vue_body_scroll_lock.BodyScrollLockDirectiveBindingValue>;
|
|
2807
2831
|
'v-click-outside': PropType<_fastkit_vue_click_outside.ClickOutsideDirectiveBindingValue | undefined>;
|
|
@@ -3003,9 +3027,6 @@ declare function createAvatarProps(): {
|
|
|
3003
3027
|
exactActiveClass: PropType<string>;
|
|
3004
3028
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3005
3029
|
viewTransition: PropType<boolean>;
|
|
3006
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3007
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3008
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3009
3030
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3010
3031
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3011
3032
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3018,6 +3039,9 @@ declare function createAvatarProps(): {
|
|
|
3018
3039
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3019
3040
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3020
3041
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3042
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3043
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3044
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3021
3045
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3022
3046
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3023
3047
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3074,9 +3098,6 @@ declare const VAvatar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3074
3098
|
exactActiveClass: PropType<string>;
|
|
3075
3099
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3076
3100
|
viewTransition: PropType<boolean>;
|
|
3077
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3078
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3079
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3080
3101
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3081
3102
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3082
3103
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3089,6 +3110,9 @@ declare const VAvatar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3089
3110
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3090
3111
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3091
3112
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3113
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3114
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3115
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3092
3116
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3093
3117
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3094
3118
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3146,9 +3170,6 @@ declare const VAvatar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3146
3170
|
exactActiveClass: PropType<string>;
|
|
3147
3171
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3148
3172
|
viewTransition: PropType<boolean>;
|
|
3149
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3150
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3151
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3152
3173
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3153
3174
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3154
3175
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3161,6 +3182,9 @@ declare const VAvatar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3161
3182
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3162
3183
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3163
3184
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3185
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3186
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3187
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3164
3188
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3165
3189
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3166
3190
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3227,9 +3251,6 @@ declare function createChipProps(): {
|
|
|
3227
3251
|
exactActiveClass: PropType<string>;
|
|
3228
3252
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3229
3253
|
viewTransition: PropType<boolean>;
|
|
3230
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3231
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3232
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3233
3254
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3234
3255
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3235
3256
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3242,6 +3263,9 @@ declare function createChipProps(): {
|
|
|
3242
3263
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3243
3264
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3244
3265
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3266
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3267
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3268
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3245
3269
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3246
3270
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3247
3271
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3298,9 +3322,6 @@ declare const VChip: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3298
3322
|
exactActiveClass: PropType<string>;
|
|
3299
3323
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3300
3324
|
viewTransition: PropType<boolean>;
|
|
3301
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3302
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3303
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3304
3325
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3305
3326
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3306
3327
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3313,6 +3334,9 @@ declare const VChip: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3313
3334
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3314
3335
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3315
3336
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3337
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3338
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3339
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3316
3340
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3317
3341
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3318
3342
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3370,9 +3394,6 @@ declare const VChip: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3370
3394
|
exactActiveClass: PropType<string>;
|
|
3371
3395
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3372
3396
|
viewTransition: PropType<boolean>;
|
|
3373
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3374
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3375
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3376
3397
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3377
3398
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3378
3399
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3385,6 +3406,9 @@ declare const VChip: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3385
3406
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3386
3407
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3387
3408
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3409
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3410
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3411
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3388
3412
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3389
3413
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3390
3414
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3439,9 +3463,6 @@ declare function createCardProps(): {
|
|
|
3439
3463
|
exactActiveClass: vue.PropType<string>;
|
|
3440
3464
|
ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3441
3465
|
viewTransition: vue.PropType<boolean>;
|
|
3442
|
-
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3443
|
-
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3444
|
-
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3445
3466
|
onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3446
3467
|
onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3447
3468
|
onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3454,6 +3475,9 @@ declare function createCardProps(): {
|
|
|
3454
3475
|
onTouchend: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3455
3476
|
onTouchmove: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3456
3477
|
onTouchstart: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3478
|
+
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3479
|
+
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3480
|
+
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3457
3481
|
onPointerdown: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3458
3482
|
onPointermove: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3459
3483
|
onPointerup: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3510,9 +3534,6 @@ declare const VCard: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3510
3534
|
exactActiveClass: vue.PropType<string>;
|
|
3511
3535
|
ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3512
3536
|
viewTransition: vue.PropType<boolean>;
|
|
3513
|
-
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3514
|
-
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3515
|
-
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3516
3537
|
onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3517
3538
|
onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3518
3539
|
onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3525,6 +3546,9 @@ declare const VCard: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3525
3546
|
onTouchend: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3526
3547
|
onTouchmove: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3527
3548
|
onTouchstart: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3549
|
+
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3550
|
+
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3551
|
+
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3528
3552
|
onPointerdown: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3529
3553
|
onPointermove: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3530
3554
|
onPointerup: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3580,9 +3604,6 @@ declare const VCard: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3580
3604
|
exactActiveClass: vue.PropType<string>;
|
|
3581
3605
|
ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3582
3606
|
viewTransition: vue.PropType<boolean>;
|
|
3583
|
-
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3584
|
-
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3585
|
-
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3586
3607
|
onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3587
3608
|
onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3588
3609
|
onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3595,6 +3616,9 @@ declare const VCard: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3595
3616
|
onTouchend: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3596
3617
|
onTouchmove: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3597
3618
|
onTouchstart: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3619
|
+
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3620
|
+
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3621
|
+
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3598
3622
|
onPointerdown: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3599
3623
|
onPointermove: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3600
3624
|
onPointerup: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3679,9 +3703,6 @@ declare const vueButtonProps: {
|
|
|
3679
3703
|
exactActiveClass: PropType<string>;
|
|
3680
3704
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3681
3705
|
viewTransition: PropType<boolean>;
|
|
3682
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3683
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3684
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3685
3706
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3686
3707
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3687
3708
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3694,6 +3715,9 @@ declare const vueButtonProps: {
|
|
|
3694
3715
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3695
3716
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3696
3717
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3718
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3719
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3720
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3697
3721
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3698
3722
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3699
3723
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3759,9 +3783,6 @@ declare const VButton: vue.DefineComponent<ExtractPropTypes<{
|
|
|
3759
3783
|
exactActiveClass: PropType<string>;
|
|
3760
3784
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3761
3785
|
viewTransition: PropType<boolean>;
|
|
3762
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3763
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3764
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3765
3786
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3766
3787
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3767
3788
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3774,6 +3795,9 @@ declare const VButton: vue.DefineComponent<ExtractPropTypes<{
|
|
|
3774
3795
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3775
3796
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3776
3797
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3798
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3799
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3800
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3777
3801
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3778
3802
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3779
3803
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -3836,9 +3860,6 @@ declare const VButton: vue.DefineComponent<ExtractPropTypes<{
|
|
|
3836
3860
|
exactActiveClass: PropType<string>;
|
|
3837
3861
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
3838
3862
|
viewTransition: PropType<boolean>;
|
|
3839
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3840
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3841
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3842
3863
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3843
3864
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
3844
3865
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -3851,6 +3872,9 @@ declare const VButton: vue.DefineComponent<ExtractPropTypes<{
|
|
|
3851
3872
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3852
3873
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3853
3874
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
3875
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3876
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3877
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3854
3878
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3855
3879
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
3856
3880
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -4062,9 +4086,6 @@ declare function createListTileProps(): {
|
|
|
4062
4086
|
exactActiveClass: PropType<string>;
|
|
4063
4087
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
4064
4088
|
viewTransition: PropType<boolean>;
|
|
4065
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4066
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4067
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4068
4089
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4069
4090
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4070
4091
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -4077,6 +4098,9 @@ declare function createListTileProps(): {
|
|
|
4077
4098
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4078
4099
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4079
4100
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4101
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4102
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4103
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4080
4104
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4081
4105
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4082
4106
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -4132,9 +4156,6 @@ declare const VListTile: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4132
4156
|
exactActiveClass: PropType<string>;
|
|
4133
4157
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
4134
4158
|
viewTransition: PropType<boolean>;
|
|
4135
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4136
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4137
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4138
4159
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4139
4160
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4140
4161
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -4147,6 +4168,9 @@ declare const VListTile: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4147
4168
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4148
4169
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4149
4170
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4171
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4172
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4173
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4150
4174
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4151
4175
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4152
4176
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -4200,9 +4224,6 @@ declare const VListTile: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4200
4224
|
exactActiveClass: PropType<string>;
|
|
4201
4225
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
4202
4226
|
viewTransition: PropType<boolean>;
|
|
4203
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4204
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4205
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4206
4227
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4207
4228
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4208
4229
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -4215,6 +4236,9 @@ declare const VListTile: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4215
4236
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4216
4237
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4217
4238
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4239
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4240
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4241
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4218
4242
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4219
4243
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4220
4244
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -4353,9 +4377,6 @@ declare function createNavigationItemProps(): {
|
|
|
4353
4377
|
exactActiveClass: PropType<string>;
|
|
4354
4378
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
4355
4379
|
viewTransition: PropType<boolean>;
|
|
4356
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4357
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4358
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4359
4380
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4360
4381
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4361
4382
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -4368,6 +4389,9 @@ declare function createNavigationItemProps(): {
|
|
|
4368
4389
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4369
4390
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4370
4391
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4392
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4393
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4394
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4371
4395
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4372
4396
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4373
4397
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -4437,9 +4461,6 @@ declare const VNavigationItem: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4437
4461
|
exactActiveClass: PropType<string>;
|
|
4438
4462
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
4439
4463
|
viewTransition: PropType<boolean>;
|
|
4440
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4441
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4442
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4443
4464
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4444
4465
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4445
4466
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -4452,6 +4473,9 @@ declare const VNavigationItem: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4452
4473
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4453
4474
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4454
4475
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4476
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4477
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4478
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4455
4479
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4456
4480
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4457
4481
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -4512,9 +4536,6 @@ declare const VNavigationItem: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4512
4536
|
exactActiveClass: PropType<string>;
|
|
4513
4537
|
ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
4514
4538
|
viewTransition: PropType<boolean>;
|
|
4515
|
-
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4516
|
-
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4517
|
-
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4518
4539
|
onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4519
4540
|
onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
4520
4541
|
onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -4527,6 +4548,9 @@ declare const VNavigationItem: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4527
4548
|
onTouchend: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4528
4549
|
onTouchmove: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4529
4550
|
onTouchstart: PropType<((payload: TouchEvent) => void) | undefined>;
|
|
4551
|
+
onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4552
|
+
onClick: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4553
|
+
onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4530
4554
|
onPointerdown: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4531
4555
|
onPointermove: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
4532
4556
|
onPointerup: PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -4639,7 +4663,7 @@ declare const VControlField: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4639
4663
|
default: number;
|
|
4640
4664
|
};
|
|
4641
4665
|
}>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
4642
|
-
click: (ev:
|
|
4666
|
+
click: (ev: PointerEvent) => true;
|
|
4643
4667
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
4644
4668
|
error: BooleanConstructor;
|
|
4645
4669
|
'v-slots': PropType<{
|
|
@@ -4665,7 +4689,7 @@ declare const VControlField: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4665
4689
|
default: number;
|
|
4666
4690
|
};
|
|
4667
4691
|
}>> & Readonly<{
|
|
4668
|
-
onClick?: ((ev:
|
|
4692
|
+
onClick?: ((ev: PointerEvent) => any) | undefined;
|
|
4669
4693
|
}>, {
|
|
4670
4694
|
loading: boolean;
|
|
4671
4695
|
tabindex: string | number;
|
|
@@ -4730,7 +4754,7 @@ declare const VFormControl: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4730
4754
|
default: boolean;
|
|
4731
4755
|
};
|
|
4732
4756
|
}>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
4733
|
-
clickLabel: (ev:
|
|
4757
|
+
clickLabel: (ev: PointerEvent, wrapper: FormNodeWrapper) => boolean;
|
|
4734
4758
|
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
4735
4759
|
error: BooleanConstructor;
|
|
4736
4760
|
'v-slots': vue.PropType<{
|
|
@@ -4754,7 +4778,7 @@ declare const VFormControl: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4754
4778
|
default: boolean;
|
|
4755
4779
|
};
|
|
4756
4780
|
}>> & Readonly<{
|
|
4757
|
-
onClickLabel?: ((ev:
|
|
4781
|
+
onClickLabel?: ((ev: PointerEvent, wrapper: FormNodeWrapper) => any) | undefined;
|
|
4758
4782
|
}>, {
|
|
4759
4783
|
collectErrorMessages: boolean;
|
|
4760
4784
|
error: boolean;
|
|
@@ -6498,6 +6522,323 @@ declare const VTextarea: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
6498
6522
|
rows: _fastkit_vue_utils.Numberish;
|
|
6499
6523
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
6500
6524
|
|
|
6525
|
+
declare function createFileInputProps(): {
|
|
6526
|
+
buttonText: {
|
|
6527
|
+
type: StringConstructor;
|
|
6528
|
+
default: string;
|
|
6529
|
+
};
|
|
6530
|
+
truncateLength: {
|
|
6531
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
6532
|
+
default: number;
|
|
6533
|
+
};
|
|
6534
|
+
'v-slots': vue.PropType<{
|
|
6535
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
|
|
6536
|
+
label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
|
|
6537
|
+
hint?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
|
|
6538
|
+
infoAppends?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
|
|
6539
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild) | undefined;
|
|
6540
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
6541
|
+
startAdornment?: (() => vue.VNodeChild) | undefined;
|
|
6542
|
+
endAdornment?: (() => vue.VNodeChild) | undefined;
|
|
6543
|
+
selections?: ((control: FileInputNodeControl) => vue.VNodeChild) | undefined;
|
|
6544
|
+
}>;
|
|
6545
|
+
size: {
|
|
6546
|
+
type: vue.PropType<ControlSize>;
|
|
6547
|
+
validator: (value: any) => boolean;
|
|
6548
|
+
};
|
|
6549
|
+
loading: BooleanConstructor;
|
|
6550
|
+
variant: {
|
|
6551
|
+
type: vue.PropType<ControlFieldVariant>;
|
|
6552
|
+
validator: (value: any) => boolean;
|
|
6553
|
+
};
|
|
6554
|
+
startAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6555
|
+
endAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6556
|
+
tabindex: {
|
|
6557
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
6558
|
+
default: number;
|
|
6559
|
+
};
|
|
6560
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
6561
|
+
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6562
|
+
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6563
|
+
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
6564
|
+
hinttipDelay: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttipDelay>;
|
|
6565
|
+
infoAppends: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6566
|
+
hiddenInfo: BooleanConstructor;
|
|
6567
|
+
requiredChip: vue.PropType<_fastkit_vue_form_control.RequiredChipSource>;
|
|
6568
|
+
collectErrorMessages: {
|
|
6569
|
+
type: BooleanConstructor;
|
|
6570
|
+
default: boolean;
|
|
6571
|
+
};
|
|
6572
|
+
theme: vue.PropType<ThemeName>;
|
|
6573
|
+
color: vue.PropType<ScopeName>;
|
|
6574
|
+
textColor: vue.PropType<PaletteName>;
|
|
6575
|
+
borderColor: vue.PropType<PaletteName>;
|
|
6576
|
+
accept: StringConstructor;
|
|
6577
|
+
capture: vue.PropType<vue.InputHTMLAttributes["capture"]>;
|
|
6578
|
+
multiple: {
|
|
6579
|
+
type: BooleanConstructor;
|
|
6580
|
+
default: boolean | undefined;
|
|
6581
|
+
};
|
|
6582
|
+
placeholder: StringConstructor;
|
|
6583
|
+
name: StringConstructor;
|
|
6584
|
+
tag: StringConstructor;
|
|
6585
|
+
modelValue: vue.Prop<File[], File[]>;
|
|
6586
|
+
autofocus: BooleanConstructor;
|
|
6587
|
+
disabled: BooleanConstructor;
|
|
6588
|
+
readonly: BooleanConstructor;
|
|
6589
|
+
viewonly: BooleanConstructor;
|
|
6590
|
+
spellcheck: BooleanConstructor;
|
|
6591
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6592
|
+
clearable: BooleanConstructor;
|
|
6593
|
+
validateTiming: {
|
|
6594
|
+
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
6595
|
+
default: _fastkit_vue_form_control.ValidateTiming;
|
|
6596
|
+
};
|
|
6597
|
+
rules: {
|
|
6598
|
+
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6599
|
+
default: () => never[];
|
|
6600
|
+
};
|
|
6601
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6602
|
+
error: BooleanConstructor;
|
|
6603
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
6604
|
+
showOwnErrors: {
|
|
6605
|
+
type: BooleanConstructor;
|
|
6606
|
+
default: undefined;
|
|
6607
|
+
};
|
|
6608
|
+
detach: BooleanConstructor;
|
|
6609
|
+
};
|
|
6610
|
+
type FileInputPropsOptions = ReturnType<typeof createFileInputProps>;
|
|
6611
|
+
type FileInputEmits = FileInputNodeEmits;
|
|
6612
|
+
type FileInputInput = ExtractPropInput<ReturnType<typeof createFileInputProps>>;
|
|
6613
|
+
declare const VFileInput: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
6614
|
+
buttonText: {
|
|
6615
|
+
type: StringConstructor;
|
|
6616
|
+
default: string;
|
|
6617
|
+
};
|
|
6618
|
+
truncateLength: {
|
|
6619
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
6620
|
+
default: number;
|
|
6621
|
+
};
|
|
6622
|
+
'v-slots': vue.PropType<{
|
|
6623
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
|
|
6624
|
+
label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
|
|
6625
|
+
hint?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
|
|
6626
|
+
infoAppends?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
|
|
6627
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild) | undefined;
|
|
6628
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
6629
|
+
startAdornment?: (() => vue.VNodeChild) | undefined;
|
|
6630
|
+
endAdornment?: (() => vue.VNodeChild) | undefined;
|
|
6631
|
+
selections?: ((control: FileInputNodeControl) => vue.VNodeChild) | undefined;
|
|
6632
|
+
}>;
|
|
6633
|
+
size: {
|
|
6634
|
+
type: vue.PropType<ControlSize>;
|
|
6635
|
+
validator: (value: any) => boolean;
|
|
6636
|
+
};
|
|
6637
|
+
loading: BooleanConstructor;
|
|
6638
|
+
variant: {
|
|
6639
|
+
type: vue.PropType<ControlFieldVariant>;
|
|
6640
|
+
validator: (value: any) => boolean;
|
|
6641
|
+
};
|
|
6642
|
+
startAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6643
|
+
endAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6644
|
+
tabindex: {
|
|
6645
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
6646
|
+
default: number;
|
|
6647
|
+
};
|
|
6648
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
6649
|
+
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6650
|
+
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6651
|
+
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
6652
|
+
hinttipDelay: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttipDelay>;
|
|
6653
|
+
infoAppends: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6654
|
+
hiddenInfo: BooleanConstructor;
|
|
6655
|
+
requiredChip: vue.PropType<_fastkit_vue_form_control.RequiredChipSource>;
|
|
6656
|
+
collectErrorMessages: {
|
|
6657
|
+
type: BooleanConstructor;
|
|
6658
|
+
default: boolean;
|
|
6659
|
+
};
|
|
6660
|
+
theme: vue.PropType<ThemeName>;
|
|
6661
|
+
color: vue.PropType<ScopeName>;
|
|
6662
|
+
textColor: vue.PropType<PaletteName>;
|
|
6663
|
+
borderColor: vue.PropType<PaletteName>;
|
|
6664
|
+
accept: StringConstructor;
|
|
6665
|
+
capture: vue.PropType<vue.InputHTMLAttributes["capture"]>;
|
|
6666
|
+
multiple: {
|
|
6667
|
+
type: BooleanConstructor;
|
|
6668
|
+
default: boolean | undefined;
|
|
6669
|
+
};
|
|
6670
|
+
placeholder: StringConstructor;
|
|
6671
|
+
name: StringConstructor;
|
|
6672
|
+
tag: StringConstructor;
|
|
6673
|
+
modelValue: vue.Prop<File[], File[]>;
|
|
6674
|
+
autofocus: BooleanConstructor;
|
|
6675
|
+
disabled: BooleanConstructor;
|
|
6676
|
+
readonly: BooleanConstructor;
|
|
6677
|
+
viewonly: BooleanConstructor;
|
|
6678
|
+
spellcheck: BooleanConstructor;
|
|
6679
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6680
|
+
clearable: BooleanConstructor;
|
|
6681
|
+
validateTiming: {
|
|
6682
|
+
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
6683
|
+
default: _fastkit_vue_form_control.ValidateTiming;
|
|
6684
|
+
};
|
|
6685
|
+
rules: {
|
|
6686
|
+
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6687
|
+
default: () => never[];
|
|
6688
|
+
};
|
|
6689
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6690
|
+
error: BooleanConstructor;
|
|
6691
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
6692
|
+
showOwnErrors: {
|
|
6693
|
+
type: BooleanConstructor;
|
|
6694
|
+
default: undefined;
|
|
6695
|
+
};
|
|
6696
|
+
detach: BooleanConstructor;
|
|
6697
|
+
}>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
6698
|
+
'update:modelValue': (value: File[]) => boolean;
|
|
6699
|
+
'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
|
|
6700
|
+
change: (value: File[]) => boolean;
|
|
6701
|
+
focus: (ev: FocusEvent) => boolean;
|
|
6702
|
+
blur: (ev: FocusEvent) => boolean;
|
|
6703
|
+
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
6704
|
+
buttonText: {
|
|
6705
|
+
type: StringConstructor;
|
|
6706
|
+
default: string;
|
|
6707
|
+
};
|
|
6708
|
+
truncateLength: {
|
|
6709
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
6710
|
+
default: number;
|
|
6711
|
+
};
|
|
6712
|
+
'v-slots': vue.PropType<{
|
|
6713
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
|
|
6714
|
+
label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
|
|
6715
|
+
hint?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
|
|
6716
|
+
infoAppends?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
|
|
6717
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild) | undefined;
|
|
6718
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
6719
|
+
startAdornment?: (() => vue.VNodeChild) | undefined;
|
|
6720
|
+
endAdornment?: (() => vue.VNodeChild) | undefined;
|
|
6721
|
+
selections?: ((control: FileInputNodeControl) => vue.VNodeChild) | undefined;
|
|
6722
|
+
}>;
|
|
6723
|
+
size: {
|
|
6724
|
+
type: vue.PropType<ControlSize>;
|
|
6725
|
+
validator: (value: any) => boolean;
|
|
6726
|
+
};
|
|
6727
|
+
loading: BooleanConstructor;
|
|
6728
|
+
variant: {
|
|
6729
|
+
type: vue.PropType<ControlFieldVariant>;
|
|
6730
|
+
validator: (value: any) => boolean;
|
|
6731
|
+
};
|
|
6732
|
+
startAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6733
|
+
endAdornment: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6734
|
+
tabindex: {
|
|
6735
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
6736
|
+
default: number;
|
|
6737
|
+
};
|
|
6738
|
+
nodeControl: vue.PropType<_fastkit_vue_form_control.FormNodeControl>;
|
|
6739
|
+
label: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6740
|
+
hint: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6741
|
+
hinttip: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
6742
|
+
hinttipDelay: vue.PropType<_fastkit_vue_form_control.FormNodeWrapperHinttipDelay>;
|
|
6743
|
+
infoAppends: vue.PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
6744
|
+
hiddenInfo: BooleanConstructor;
|
|
6745
|
+
requiredChip: vue.PropType<_fastkit_vue_form_control.RequiredChipSource>;
|
|
6746
|
+
collectErrorMessages: {
|
|
6747
|
+
type: BooleanConstructor;
|
|
6748
|
+
default: boolean;
|
|
6749
|
+
};
|
|
6750
|
+
theme: vue.PropType<ThemeName>;
|
|
6751
|
+
color: vue.PropType<ScopeName>;
|
|
6752
|
+
textColor: vue.PropType<PaletteName>;
|
|
6753
|
+
borderColor: vue.PropType<PaletteName>;
|
|
6754
|
+
accept: StringConstructor;
|
|
6755
|
+
capture: vue.PropType<vue.InputHTMLAttributes["capture"]>;
|
|
6756
|
+
multiple: {
|
|
6757
|
+
type: BooleanConstructor;
|
|
6758
|
+
default: boolean | undefined;
|
|
6759
|
+
};
|
|
6760
|
+
placeholder: StringConstructor;
|
|
6761
|
+
name: StringConstructor;
|
|
6762
|
+
tag: StringConstructor;
|
|
6763
|
+
modelValue: vue.Prop<File[], File[]>;
|
|
6764
|
+
autofocus: BooleanConstructor;
|
|
6765
|
+
disabled: BooleanConstructor;
|
|
6766
|
+
readonly: BooleanConstructor;
|
|
6767
|
+
viewonly: BooleanConstructor;
|
|
6768
|
+
spellcheck: BooleanConstructor;
|
|
6769
|
+
required: vue.PropType<boolean> | BooleanConstructor;
|
|
6770
|
+
clearable: BooleanConstructor;
|
|
6771
|
+
validateTiming: {
|
|
6772
|
+
type: vue.PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
6773
|
+
default: _fastkit_vue_form_control.ValidateTiming;
|
|
6774
|
+
};
|
|
6775
|
+
rules: {
|
|
6776
|
+
type: vue.PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
6777
|
+
default: () => never[];
|
|
6778
|
+
};
|
|
6779
|
+
validationDeps: vue.PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl) => any>;
|
|
6780
|
+
error: BooleanConstructor;
|
|
6781
|
+
errorMessages: vue.PropType<string | string[]>;
|
|
6782
|
+
showOwnErrors: {
|
|
6783
|
+
type: BooleanConstructor;
|
|
6784
|
+
default: undefined;
|
|
6785
|
+
};
|
|
6786
|
+
detach: BooleanConstructor;
|
|
6787
|
+
}>> & Readonly<{
|
|
6788
|
+
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
6789
|
+
onChange?: ((value: File[]) => any) | undefined;
|
|
6790
|
+
"onUpdate:modelValue"?: ((value: File[]) => any) | undefined;
|
|
6791
|
+
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
6792
|
+
onFocus?: ((ev: FocusEvent) => any) | undefined;
|
|
6793
|
+
}>, {
|
|
6794
|
+
loading: boolean;
|
|
6795
|
+
collectErrorMessages: boolean;
|
|
6796
|
+
tabindex: string | number;
|
|
6797
|
+
autofocus: boolean;
|
|
6798
|
+
disabled: boolean;
|
|
6799
|
+
readonly: boolean;
|
|
6800
|
+
viewonly: boolean;
|
|
6801
|
+
spellcheck: boolean;
|
|
6802
|
+
clearable: boolean;
|
|
6803
|
+
validateTiming: _fastkit_vue_form_control.ValidateTiming;
|
|
6804
|
+
rules: _fastkit_vue_form_control.RecursiveVerifiableRuleOrFn;
|
|
6805
|
+
error: boolean;
|
|
6806
|
+
showOwnErrors: boolean;
|
|
6807
|
+
detach: boolean;
|
|
6808
|
+
hiddenInfo: boolean;
|
|
6809
|
+
multiple: boolean;
|
|
6810
|
+
buttonText: string;
|
|
6811
|
+
truncateLength: string | number;
|
|
6812
|
+
}, _fastkit_vue_utils.DefinedSlots<{
|
|
6813
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6814
|
+
[key: string]: any;
|
|
6815
|
+
}>[];
|
|
6816
|
+
label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6817
|
+
[key: string]: any;
|
|
6818
|
+
}>[]) | undefined;
|
|
6819
|
+
hint?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6820
|
+
[key: string]: any;
|
|
6821
|
+
}>[]) | undefined;
|
|
6822
|
+
infoAppends?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6823
|
+
[key: string]: any;
|
|
6824
|
+
}>[]) | undefined;
|
|
6825
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6826
|
+
[key: string]: any;
|
|
6827
|
+
}>[]) | undefined;
|
|
6828
|
+
} & {
|
|
6829
|
+
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6830
|
+
[key: string]: any;
|
|
6831
|
+
}>[]) | undefined;
|
|
6832
|
+
startAdornment?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6833
|
+
[key: string]: any;
|
|
6834
|
+
}>[]) | undefined;
|
|
6835
|
+
endAdornment?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6836
|
+
[key: string]: any;
|
|
6837
|
+
}>[]) | undefined;
|
|
6838
|
+
} & {
|
|
6839
|
+
selections?: (control: FileInputNodeControl) => any;
|
|
6840
|
+
}>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
6841
|
+
|
|
6501
6842
|
type VFormGroupSlots = DefineSlotsType<{
|
|
6502
6843
|
default?: (form: FormGroupControl) => any;
|
|
6503
6844
|
}>;
|
|
@@ -7352,9 +7693,6 @@ declare const VToolbarMenu: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
7352
7693
|
exactActiveClass: vue.PropType<string>;
|
|
7353
7694
|
ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
7354
7695
|
viewTransition: vue.PropType<boolean>;
|
|
7355
|
-
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7356
|
-
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7357
|
-
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7358
7696
|
onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
7359
7697
|
onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
7360
7698
|
onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -7367,6 +7705,9 @@ declare const VToolbarMenu: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
7367
7705
|
onTouchend: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
7368
7706
|
onTouchmove: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
7369
7707
|
onTouchstart: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
7708
|
+
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7709
|
+
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7710
|
+
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7370
7711
|
onPointerdown: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7371
7712
|
onPointermove: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7372
7713
|
onPointerup: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -7429,9 +7770,6 @@ declare const VToolbarMenu: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
7429
7770
|
exactActiveClass: vue.PropType<string>;
|
|
7430
7771
|
ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
|
|
7431
7772
|
viewTransition: vue.PropType<boolean>;
|
|
7432
|
-
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7433
|
-
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7434
|
-
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7435
7773
|
onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
7436
7774
|
onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
7437
7775
|
onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
|
|
@@ -7444,6 +7782,9 @@ declare const VToolbarMenu: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
7444
7782
|
onTouchend: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
7445
7783
|
onTouchmove: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
7446
7784
|
onTouchstart: vue.PropType<((payload: TouchEvent) => void) | undefined>;
|
|
7785
|
+
onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7786
|
+
onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7787
|
+
onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7447
7788
|
onPointerdown: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7448
7789
|
onPointermove: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
7449
7790
|
onPointerup: vue.PropType<((payload: PointerEvent) => void) | undefined>;
|
|
@@ -7525,4 +7866,4 @@ declare class VuiPlugin {
|
|
|
7525
7866
|
}
|
|
7526
7867
|
declare function installVuiPlugin(app: App, opts: VuiPluginOptions): App<any>;
|
|
7527
7868
|
|
|
7528
|
-
export { ARROW_KEY_TYPES, AVATAR_SIZES, type AdornmentPosition, type AvatarSize, BUTTON_ALIGNS, type BreadcrumbsItem, type BusyImageLoadState, type BusyImageRect, type BusyImageRects, type BusyImageSizeValue, CHIP_SIZES, CHOICE_KEY_TYPES, CONTROL_FIELD_VARIANTS, CONTROL_LOADING_SPINNER_SIZES, CONTROL_SIZES, type ChipSize, type ContentSwitcherSeeTopOptions, type ControlFieldProvider, type ControlFieldProviderProps, type ControlFieldVariant, type ControlProps, type ControlProvider, type ControlSize, DISABLED_REASON_PROPS, type DataTableCellSlotPayload, type DataTableDefaults, type DataTableHeader, type DataTableHeaderAlign, type DataTableItem, type DataTableItemSlotPayload, type DataTableRowSettings, type DataTableRowSettingsFn, type DefineFormSelectorComponentOptions, type DisabledReasonInput, type DisabledReasonType, type ElevationProps, type GridContainerAlignContentValue, type GridContainerDirectionValue, type GridContainerJustifyContentValue, type GridContainerSpacingValue, type GridContainerWrapValue, type GridItemAlignValue, type GridItemJustifyValue, type GridItemNumberSizeValue, type GridItemSizeValue, type ImgHTMLAttributesPropOptions, type InputBoxSlots, KEYBOARD_EVENT_TYPES, type NavigationInput, type NavigationItemInput, PAGINATION_ALIGNS, type RawBreadcrumbsItem, type RawDataTableRowSettings, type RawIconProp, type RawVButtonIcon, type RawVButtonSpacer, type RawVChipIcon, type RawVuiPluginOptions, type RawVuiPromptOptions, type RawVuiServiceIconSettings, type RawVuiServiceOptions, type RawVuiServiceUISettings, type TextFieldEmits, type TextFieldInput, type TextFieldPropsOptions, type UseControlFieldProviderOptions, type UseControlProviderOptions, type UseElevationOptions, type UseLinkResult, VApp, VAvatar, VBreadcrumbs, VBusyImage, VButton, type VButtonAlign, VButtonGroup, type VButtonIcon, type VButtonProps, type VButtonResolvedProps, type VButtonSpacer, VCard, VCardActions, VCardContent, VCheckbox, VCheckboxGroup, VChip, type VChipIcon, VContentSwitcher, VControlField, VDataTable, VDialog, VDisabledReason, VDrawerLayout, VForm, VFormControl, VFormGroup, type VFormGroupSlots, type VFormSlots, VGridContainer, VGridItem, VHero, VIcon, VListTile, VMenu, VNavigation, VNavigationItem, VNumberField, VOption, VOptionGroup, VPagination, type VPaginationAlign, type VPaginationGuard, VPaper, VRadio, VRadioGroup, VSelect, VSheetModal, type VSheetModalSlots, VSkeltonLoaderBone, VSnackbar, VSwitch, VSwitchGroup, VTabs, type VTabsGuard, type VTabsItem, type VTabsItemLabelSlot, type VTabsItemLabelSlotCtx, type VTabsRouterHandler, VTextCounter, VTextField, VTextarea, VToolbar, VToolbarEdge, type VToolbarEdgeEdge, VToolbarMenu, type VToolbarMenuEdge, VToolbarTitle, VTooltip, VUI_CHECKBOX_GROUP_SYMBOL, VUI_CHECKBOX_SYMBOL, VUI_FORM_GROUP_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, type VuiColorProvider, VuiColorProviderInjectionKey, VuiControlFieldInjectionKey, VuiControlInjectionKey, type VuiElevationValue, type VuiFormPromptSettings, VuiInjectionKey, VuiPlugin, type VuiPluginOptions, type VuiPluginStackOptions, type VuiPromptOptions, VuiService, type VuiServiceIconSettings, type VuiServiceOptions, type VuiServiceUISettings, type VuiVNodeResolver, configureDataTableDefaults, createAvatarProps, createCardProps, createChipProps, createControlFieldProps, createControlFieldProviderProps, createControlProps, createElevationProps, createListTileProps, createNavigationItemProps, createNavigationProps, createPaperBaseProps, createPaperProps, createRequiredChipRenderer, createVFormGroupProps, createVFormProps, defineFormSelectorComponent, formGroupSlots, formSlots, iconProps, installVuiPlugin, listTileEmits, mergeVuiPluginOptions, mergeVuiServiceIconSettings, mergeVuiServiceOptions, mergeVuiServiceUISettings, paginationProps, paperBaseSlots, rawIconProp, renderNavigationItemInput, resolveNavigationItemInput, resolveRawIconProp, sheetModalProps, splitAttrs, useControl, useControlField, useElevation, useVui, useVuiColorProvider, vueButtonProps };
|
|
7869
|
+
export { ARROW_KEY_TYPES, AVATAR_SIZES, type AdornmentPosition, type AvatarSize, BUTTON_ALIGNS, type BreadcrumbsItem, type BusyImageLoadState, type BusyImageRect, type BusyImageRects, type BusyImageSizeValue, CHIP_SIZES, CHOICE_KEY_TYPES, CONTROL_FIELD_VARIANTS, CONTROL_LOADING_SPINNER_SIZES, CONTROL_SIZES, type ChipSize, type ContentSwitcherSeeTopOptions, type ControlFieldProvider, type ControlFieldProviderProps, type ControlFieldVariant, type ControlProps, type ControlProvider, type ControlSize, DISABLED_REASON_PROPS, type DataTableCellSlotPayload, type DataTableDefaults, type DataTableHeader, type DataTableHeaderAlign, type DataTableItem, type DataTableItemSlotPayload, type DataTableRowSettings, type DataTableRowSettingsFn, type DefineFormSelectorComponentOptions, type DisabledReasonInput, type DisabledReasonType, type ElevationProps, type FileInputEmits, type FileInputInput, type FileInputPropsOptions, type GridContainerAlignContentValue, type GridContainerDirectionValue, type GridContainerJustifyContentValue, type GridContainerSpacingValue, type GridContainerWrapValue, type GridItemAlignValue, type GridItemJustifyValue, type GridItemNumberSizeValue, type GridItemSizeValue, type ImgHTMLAttributesPropOptions, type InputBoxSlots, KEYBOARD_EVENT_TYPES, type NavigationInput, type NavigationItemInput, PAGINATION_ALIGNS, type RawBreadcrumbsItem, type RawDataTableRowSettings, type RawIconProp, type RawVButtonIcon, type RawVButtonSpacer, type RawVChipIcon, type RawVuiPluginOptions, type RawVuiPromptOptions, type RawVuiServiceIconSettings, type RawVuiServiceOptions, type RawVuiServiceUISettings, type TextFieldEmits, type TextFieldInput, type TextFieldPropsOptions, type UseControlFieldProviderOptions, type UseControlProviderOptions, type UseElevationOptions, type UseLinkResult, VApp, VAvatar, VBreadcrumbs, VBusyImage, VButton, type VButtonAlign, VButtonGroup, type VButtonIcon, type VButtonProps, type VButtonResolvedProps, type VButtonSpacer, VCard, VCardActions, VCardContent, VCheckbox, VCheckboxGroup, VChip, type VChipIcon, VContentSwitcher, VControlField, VDataTable, VDialog, VDisabledReason, VDrawerLayout, VFileInput, VForm, VFormControl, VFormGroup, type VFormGroupSlots, type VFormSlots, VGridContainer, VGridItem, VHero, VIcon, VListTile, VMenu, VNavigation, VNavigationItem, VNumberField, VOption, VOptionGroup, VPagination, type VPaginationAlign, type VPaginationGuard, VPaper, VRadio, VRadioGroup, VSelect, VSheetModal, type VSheetModalSlots, VSkeltonLoaderBone, VSnackbar, VSwitch, VSwitchGroup, VTabs, type VTabsGuard, type VTabsItem, type VTabsItemLabelSlot, type VTabsItemLabelSlotCtx, type VTabsRouterHandler, VTextCounter, VTextField, VTextarea, VToolbar, VToolbarEdge, type VToolbarEdgeEdge, VToolbarMenu, type VToolbarMenuEdge, VToolbarTitle, VTooltip, VUI_CHECKBOX_GROUP_SYMBOL, VUI_CHECKBOX_SYMBOL, VUI_FILE_INPUT_SYMBOL, VUI_FORM_GROUP_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, type VuiColorProvider, VuiColorProviderInjectionKey, VuiControlFieldInjectionKey, VuiControlInjectionKey, type VuiElevationValue, type VuiFormPromptSettings, VuiInjectionKey, VuiPlugin, type VuiPluginOptions, type VuiPluginStackOptions, type VuiPromptOptions, VuiService, type VuiServiceIconSettings, type VuiServiceOptions, type VuiServiceUISettings, type VuiVNodeResolver, configureDataTableDefaults, createAvatarProps, createCardProps, createChipProps, createControlFieldProps, createControlFieldProviderProps, createControlProps, createElevationProps, createListTileProps, createNavigationItemProps, createNavigationProps, createPaperBaseProps, createPaperProps, createRequiredChipRenderer, createVFormGroupProps, createVFormProps, defineFormSelectorComponent, formGroupSlots, formSlots, iconProps, installVuiPlugin, listTileEmits, mergeVuiPluginOptions, mergeVuiServiceIconSettings, mergeVuiServiceOptions, mergeVuiServiceUISettings, paginationProps, paperBaseSlots, rawIconProp, renderNavigationItemInput, resolveNavigationItemInput, resolveRawIconProp, sheetModalProps, splitAttrs, useControl, useControlField, useElevation, useVui, useVuiColorProvider, vueButtonProps };
|