@fastkit/vui 0.18.31 → 0.18.32

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.
Files changed (50) hide show
  1. package/dist/vui.d.ts +214 -214
  2. package/dist/vui.mjs +400 -482
  3. package/dist/vui.mjs.map +1 -1
  4. package/package.json +25 -25
  5. package/src/components/VApp/VApp.tsx +5 -7
  6. package/src/components/VAvatar/VAvatar.tsx +1 -0
  7. package/src/components/VBreadcrumbs/VBreadcrumbs.tsx +8 -7
  8. package/src/components/VButton/VButton.tsx +27 -28
  9. package/src/components/VButton/VButtonGroup.tsx +2 -2
  10. package/src/components/VCard/VCard.tsx +2 -13
  11. package/src/components/VCard/VCardActions.tsx +1 -3
  12. package/src/components/VCard/VCardContent.tsx +1 -3
  13. package/src/components/VCheckable/VCheckable.tsx +12 -14
  14. package/src/components/VCheckbox/VCheckbox.tsx +11 -12
  15. package/src/components/VChip/VChip.tsx +1 -0
  16. package/src/components/VContentSwitcher/VContentSwitcher.tsx +5 -7
  17. package/src/components/VControlField/VControlField.tsx +19 -20
  18. package/src/components/VDataTable/VDataTable.tsx +20 -23
  19. package/src/components/VDialog/VDialog.tsx +1 -2
  20. package/src/components/VForm/VForm.tsx +12 -13
  21. package/src/components/VFormControl/VFormControl.tsx +7 -2
  22. package/src/components/VFormGroup/VFormGroup.tsx +1 -0
  23. package/src/components/VGrid/schemes.ts +7 -5
  24. package/src/components/VListTile/VListTile.tsx +3 -1
  25. package/src/components/VMenu/VMenu.tsx +5 -7
  26. package/src/components/VNavigation/VNavigation.tsx +5 -3
  27. package/src/components/VNavigation/VNavigationItem.tsx +13 -66
  28. package/src/components/VNumberField/VNumberField.tsx +13 -14
  29. package/src/components/VOption/VOption.tsx +20 -23
  30. package/src/components/VOptionGroup/VOptionGroup.tsx +9 -11
  31. package/src/components/VPagination/VPagination.tsx +21 -20
  32. package/src/components/VPaper/VPaper.tsx +1 -1
  33. package/src/components/VRadio/VRadio.tsx +11 -12
  34. package/src/components/VSelect/VSelect.tsx +85 -95
  35. package/src/components/VSheetModal/VSheetModal.tsx +20 -36
  36. package/src/components/VSnackbar/VSnackbar.tsx +2 -4
  37. package/src/components/VSwitch/VSwitch.tsx +11 -12
  38. package/src/components/VTabs/VTab.tsx +13 -20
  39. package/src/components/VTabs/VTabs.tsx +12 -15
  40. package/src/components/VTextField/VTextField.tsx +34 -37
  41. package/src/components/VTextarea/VTextarea.tsx +36 -43
  42. package/src/components/VToolbar/VToolbar.tsx +11 -15
  43. package/src/components/VToolbar/VToolbarMenu.tsx +1 -0
  44. package/src/components/VTooltip/VTooltip.tsx +3 -7
  45. package/src/composables/control.ts +9 -16
  46. package/src/composables/form-selector.tsx +61 -67
  47. package/src/composables/vui.ts +2 -1
  48. package/src/injections.ts +5 -5
  49. package/src/plugin.tsx +8 -7
  50. package/src/service.tsx +42 -32
package/dist/vui.d.ts CHANGED
@@ -32,7 +32,7 @@ import { TypedSlot, VNodeChildOrSlot, ExtractPropInput, DefineSlotsType } from '
32
32
  export * from '@fastkit/vue-utils';
33
33
  export * from '@fastkit/vue-loading';
34
34
  import * as vue from 'vue';
35
- import { PropType, ExtractPropTypes, ComputedRef, VNodeChild, InjectionKey, VNodeProps, UnwrapNestedRefs, ImgHTMLAttributes, HTMLAttributes, App } from 'vue';
35
+ import { PropType, ExtractPropTypes, ComputedRef, VNodeChild, VNodeProps, InjectionKey, UnwrapNestedRefs, ImgHTMLAttributes, HTMLAttributes, App } from 'vue';
36
36
  import { ScopeName, ColorVariant , ThemeName, PaletteName } from '@fastkit/color-scheme';
37
37
  import * as _fastkit_vue_transitions__ from '@fastkit/vue-transitions/.';
38
38
  import * as _fastkit_vue_utils__ from '@fastkit/vue-utils/.';
@@ -251,11 +251,11 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
251
251
  };
252
252
  detach: BooleanConstructor;
253
253
  }>> & {
254
- onFocus?: ((ev: FocusEvent) => any) | undefined;
255
- onBlur?: ((ev: FocusEvent) => any) | undefined;
256
- onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
257
254
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
258
255
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
256
+ onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
257
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
258
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
259
259
  }, {
260
260
  loading: boolean;
261
261
  collectErrorMessages: boolean;
@@ -307,63 +307,6 @@ declare function useElevation(props: ElevationProps, opts?: UseElevationOptions)
307
307
  elevationClassName: vue.ComputedRef<string | undefined>;
308
308
  };
309
309
 
310
- declare const VuiInjectionKey: InjectionKey<VuiService>;
311
- declare const VuiControlInjectionKey: InjectionKey<ControlProvider>;
312
- declare const VuiControlFieldInjectionKey: InjectionKey<ControlFieldProvider>;
313
- declare const VuiColorProviderInjectionKey: InjectionKey<VuiColorProvider>;
314
- declare const VUI_TEXT_FIELD_SYMBOL = "vui-text-field";
315
- declare const VUI_TEXTAREA_SYMBOL = "vui-textarea";
316
- declare const VUI_SELECT_SYMBOL = "vui-select";
317
- declare const VUI_OPTION_SYMBOL = "vui-option";
318
- declare const VUI_CHECKBOX_GROUP_SYMBOL = "vui-checkbox-group";
319
- declare const VUI_CHECKBOX_SYMBOL = "vui-checkbox";
320
- declare const VUI_RADIO_GROUP_SYMBOL = "vui-radio-group";
321
- declare const VUI_RADIO_SYMBOL = "vui-radio";
322
- declare const VUI_SWITCH_GROUP_SYMBOL = "vui-switch-group";
323
- declare const VUI_SWITCH_SYMBOL = "vui-switch";
324
- declare const VUI_FORM_GROUP_SYMBOL = "vui-form-group";
325
- declare const VUI_FORM_SYMBOL = "vui-form";
326
- declare function useVui(): VuiService;
327
- declare function useVuiColorProvider(): VuiColorProvider;
328
-
329
- type IconPropInout = ExtractPropInput<typeof iconProps>;
330
- type IconGenerator = (input: IconPropInout) => VNodeChild;
331
- type EmptyIconSymbol = '$empty';
332
- type ToggleableIconHook = (gen: IconGenerator, ctx: boolean) => VNodeChild;
333
- type RawIconProp = IconName | EmptyIconSymbol | ToggleableIconHook;
334
- declare function rawIconProp(): PropType<RawIconProp>;
335
- declare function resolveRawIconProp(payload: boolean, prop?: RawIconProp, extraProps?: Record<string, unknown> & VNodeProps): VNodeChild;
336
- declare const iconProps: {
337
- name: {
338
- type: PropType<IconName | "$empty">;
339
- required: true;
340
- };
341
- rotate: {
342
- type: NumberConstructor;
343
- };
344
- };
345
- declare const VIcon: vue.DefineComponent<{
346
- name: {
347
- type: PropType<IconName | "$empty">;
348
- required: true;
349
- };
350
- rotate: {
351
- type: NumberConstructor;
352
- };
353
- }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
354
- click: (ev: MouseEvent) => true;
355
- }, string, VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
356
- name: {
357
- type: PropType<IconName | "$empty">;
358
- required: true;
359
- };
360
- rotate: {
361
- type: NumberConstructor;
362
- };
363
- }>> & {
364
- onClick?: ((ev: MouseEvent) => any) | undefined;
365
- }, {}, {}>;
366
-
367
310
  declare function createTextFieldProps(): {
368
311
  'v-slots': vue.PropType<{
369
312
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
@@ -406,7 +349,7 @@ declare function createTextFieldProps(): {
406
349
  type: vue.PropType<"number" | "time" | "text" | "search" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password">;
407
350
  default: string;
408
351
  };
409
- inputmode: vue.PropType<"none" | "text" | "search" | "email" | "tel" | "url" | "decimal" | "numeric">;
352
+ inputmode: vue.PropType<"text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric">;
410
353
  maskModel: {
411
354
  type: vue.PropType<_fastkit_vue_form_control.TextInputMaskModel>;
412
355
  default: string;
@@ -494,7 +437,7 @@ declare const VTextField: vue.DefineComponent<{
494
437
  type: vue.PropType<"number" | "time" | "text" | "search" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password">;
495
438
  default: string;
496
439
  };
497
- inputmode: vue.PropType<"none" | "text" | "search" | "email" | "tel" | "url" | "decimal" | "numeric">;
440
+ inputmode: vue.PropType<"text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric">;
498
441
  maskModel: {
499
442
  type: vue.PropType<_fastkit_vue_form_control.TextInputMaskModel>;
500
443
  default: string;
@@ -590,7 +533,7 @@ declare const VTextField: vue.DefineComponent<{
590
533
  type: vue.PropType<"number" | "time" | "text" | "search" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password">;
591
534
  default: string;
592
535
  };
593
- inputmode: vue.PropType<"none" | "text" | "search" | "email" | "tel" | "url" | "decimal" | "numeric">;
536
+ inputmode: vue.PropType<"text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric">;
594
537
  maskModel: {
595
538
  type: vue.PropType<_fastkit_vue_form_control.TextInputMaskModel>;
596
539
  default: string;
@@ -633,11 +576,11 @@ declare const VTextField: vue.DefineComponent<{
633
576
  };
634
577
  detach: BooleanConstructor;
635
578
  }>> & {
636
- onFocus?: ((ev: FocusEvent) => any) | undefined;
637
- onBlur?: ((ev: FocusEvent) => any) | undefined;
638
- onChange?: ((value: string) => any) | undefined;
639
579
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
640
580
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
581
+ onChange?: ((value: string) => any) | undefined;
582
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
583
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
641
584
  onAcceptMask?: ((ev: _fastkit_vue_form_control.IMaskEvent) => any) | undefined;
642
585
  onAcceptDynamicMaskMeta?: ((meta?: any) => any) | undefined;
643
586
  onCompleteMask?: ((ev: _fastkit_vue_form_control.IMaskEvent) => any) | undefined;
@@ -645,7 +588,6 @@ declare const VTextField: vue.DefineComponent<{
645
588
  "onUpdate:typed"?: ((typedValue: _fastkit_vue_form_control.IMaskTypedValue | undefined) => any) | undefined;
646
589
  "onUpdate:unmasked"?: ((unmaskedValue: string) => any) | undefined;
647
590
  }, {
648
- type: "number" | "time" | "text" | "search" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password";
649
591
  loading: boolean;
650
592
  collectErrorMessages: boolean;
651
593
  tabindex: string | number;
@@ -660,6 +602,7 @@ declare const VTextField: vue.DefineComponent<{
660
602
  error: boolean;
661
603
  showOwnErrors: boolean;
662
604
  detach: boolean;
605
+ type: "number" | "time" | "text" | "search" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password";
663
606
  hiddenInfo: boolean;
664
607
  maskModel: _fastkit_vue_form_control.TextInputMaskModel;
665
608
  limit: boolean;
@@ -691,6 +634,44 @@ declare const VTextField: vue.DefineComponent<{
691
634
  }>[]) | undefined;
692
635
  }>>;
693
636
 
637
+ type IconPropInout = ExtractPropInput<typeof iconProps>;
638
+ type IconGenerator = (input: IconPropInout) => VNodeChild;
639
+ type EmptyIconSymbol = '$empty';
640
+ type ToggleableIconHook = (gen: IconGenerator, ctx: boolean) => VNodeChild;
641
+ type RawIconProp = IconName | EmptyIconSymbol | ToggleableIconHook;
642
+ declare function rawIconProp(): PropType<RawIconProp>;
643
+ declare function resolveRawIconProp(payload: boolean, prop?: RawIconProp, extraProps?: Record<string, unknown> & VNodeProps): VNodeChild;
644
+ declare const iconProps: {
645
+ name: {
646
+ type: PropType<IconName | "$empty">;
647
+ required: true;
648
+ };
649
+ rotate: {
650
+ type: NumberConstructor;
651
+ };
652
+ };
653
+ declare const VIcon: vue.DefineComponent<{
654
+ name: {
655
+ type: PropType<IconName | "$empty">;
656
+ required: true;
657
+ };
658
+ rotate: {
659
+ type: NumberConstructor;
660
+ };
661
+ }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
662
+ click: (ev: MouseEvent) => true;
663
+ }, string, VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
664
+ name: {
665
+ type: PropType<IconName | "$empty">;
666
+ required: true;
667
+ };
668
+ rotate: {
669
+ type: NumberConstructor;
670
+ };
671
+ }>> & {
672
+ onClick?: ((ev: MouseEvent) => any) | undefined;
673
+ }, {}, {}>;
674
+
694
675
  declare const VDialog: vue.DefineComponent<{
695
676
  'v-slots': vue.PropType<{
696
677
  default?: ((control: _fastkit_vue_stack.VStackControl) => vue.VNodeChild) | undefined;
@@ -792,8 +773,8 @@ declare const VDialog: vue.DefineComponent<{
792
773
  default: () => never[];
793
774
  };
794
775
  } & {
795
- onChange: vue.PropType<(modelValue: boolean) => any>;
796
776
  "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
777
+ onChange: vue.PropType<(modelValue: boolean) => any>;
797
778
  onPayload: vue.PropType<(value: any) => any>;
798
779
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
799
780
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -918,8 +899,8 @@ declare const VDialog: vue.DefineComponent<{
918
899
  default: () => never[];
919
900
  };
920
901
  } & {
921
- onChange: vue.PropType<(modelValue: boolean) => any>;
922
902
  "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
903
+ onChange: vue.PropType<(modelValue: boolean) => any>;
923
904
  onPayload: vue.PropType<(value: any) => any>;
924
905
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
925
906
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -1061,8 +1042,8 @@ declare const VSnackbar: vue.DefineComponent<{
1061
1042
  default: () => never[];
1062
1043
  };
1063
1044
  } & {
1064
- onChange: vue.PropType<(modelValue: boolean) => any>;
1065
1045
  "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1046
+ onChange: vue.PropType<(modelValue: boolean) => any>;
1066
1047
  onPayload: vue.PropType<(value: any) => any>;
1067
1048
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
1068
1049
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -1190,8 +1171,8 @@ declare const VSnackbar: vue.DefineComponent<{
1190
1171
  default: () => never[];
1191
1172
  };
1192
1173
  } & {
1193
- onChange: vue.PropType<(modelValue: boolean) => any>;
1194
1174
  "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1175
+ onChange: vue.PropType<(modelValue: boolean) => any>;
1195
1176
  onPayload: vue.PropType<(value: any) => any>;
1196
1177
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
1197
1178
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -1368,8 +1349,8 @@ declare const VMenu: vue.DefineComponent<{
1368
1349
  textColor: vue.PropType<PaletteName>;
1369
1350
  borderColor: vue.PropType<PaletteName>;
1370
1351
  } & {
1371
- onChange: vue.PropType<(modelValue: boolean) => any>;
1372
1352
  "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1353
+ onChange: vue.PropType<(modelValue: boolean) => any>;
1373
1354
  onPayload: vue.PropType<(value: any) => any>;
1374
1355
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
1375
1356
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -1529,8 +1510,8 @@ declare const VMenu: vue.DefineComponent<{
1529
1510
  textColor: vue.PropType<PaletteName>;
1530
1511
  borderColor: vue.PropType<PaletteName>;
1531
1512
  } & {
1532
- onChange: vue.PropType<(modelValue: boolean) => any>;
1533
1513
  "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1514
+ onChange: vue.PropType<(modelValue: boolean) => any>;
1534
1515
  onPayload: vue.PropType<(value: any) => any>;
1535
1516
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
1536
1517
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -1856,8 +1837,8 @@ declare const VSheetModal: vue.DefineComponent<{
1856
1837
  resolveHandler: PropType<_fastkit_vue_stack.StackableResolveHandler>;
1857
1838
  cancelHandler: PropType<_fastkit_vue_stack.StackableResolveHandler>;
1858
1839
  }>> & {
1859
- onChange?: ((modelValue: boolean) => any) | undefined;
1860
1840
  "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
1841
+ onChange?: ((modelValue: boolean) => any) | undefined;
1861
1842
  onPayload?: ((value: any) => any) | undefined;
1862
1843
  onShow?: ((control: VStackControl) => any) | undefined;
1863
1844
  onClose?: ((control: VStackControl) => any) | undefined;
@@ -1893,6 +1874,25 @@ declare const VSheetModal: vue.DefineComponent<{
1893
1874
  guardEffect: string | boolean;
1894
1875
  }, {}>;
1895
1876
 
1877
+ declare const VuiInjectionKey: InjectionKey<VuiService>;
1878
+ declare const VuiControlInjectionKey: InjectionKey<ControlProvider>;
1879
+ declare const VuiControlFieldInjectionKey: InjectionKey<ControlFieldProvider>;
1880
+ declare const VuiColorProviderInjectionKey: InjectionKey<VuiColorProvider>;
1881
+ declare const VUI_TEXT_FIELD_SYMBOL = "vui-text-field";
1882
+ declare const VUI_TEXTAREA_SYMBOL = "vui-textarea";
1883
+ declare const VUI_SELECT_SYMBOL = "vui-select";
1884
+ declare const VUI_OPTION_SYMBOL = "vui-option";
1885
+ declare const VUI_CHECKBOX_GROUP_SYMBOL = "vui-checkbox-group";
1886
+ declare const VUI_CHECKBOX_SYMBOL = "vui-checkbox";
1887
+ declare const VUI_RADIO_GROUP_SYMBOL = "vui-radio-group";
1888
+ declare const VUI_RADIO_SYMBOL = "vui-radio";
1889
+ declare const VUI_SWITCH_GROUP_SYMBOL = "vui-switch-group";
1890
+ declare const VUI_SWITCH_SYMBOL = "vui-switch";
1891
+ declare const VUI_FORM_GROUP_SYMBOL = "vui-form-group";
1892
+ declare const VUI_FORM_SYMBOL = "vui-form";
1893
+ declare function useVui(): VuiService;
1894
+ declare function useVuiColorProvider(): VuiColorProvider;
1895
+
1896
1896
  type UseLinkResult = ReturnType<typeof useLink>;
1897
1897
  type VDialogProps = InstanceType<typeof VDialog>['$props'];
1898
1898
  interface VuiFormPromptSettings<T extends {
@@ -2165,8 +2165,8 @@ declare const VTooltip: vue.DefineComponent<{
2165
2165
  textColor: vue.PropType<PaletteName>;
2166
2166
  borderColor: vue.PropType<PaletteName>;
2167
2167
  } & {
2168
- onChange: vue.PropType<(modelValue: boolean) => any>;
2169
2168
  "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
2169
+ onChange: vue.PropType<(modelValue: boolean) => any>;
2170
2170
  onPayload: vue.PropType<(value: any) => any>;
2171
2171
  onShow: vue.PropType<(control: _fastkit_vue_stack__.VStackControl) => any>;
2172
2172
  onClose: vue.PropType<(control: _fastkit_vue_stack__.VStackControl) => any>;
@@ -2326,8 +2326,8 @@ declare const VTooltip: vue.DefineComponent<{
2326
2326
  textColor: vue.PropType<PaletteName>;
2327
2327
  borderColor: vue.PropType<PaletteName>;
2328
2328
  } & {
2329
- onChange: vue.PropType<(modelValue: boolean) => any>;
2330
2329
  "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
2330
+ onChange: vue.PropType<(modelValue: boolean) => any>;
2331
2331
  onPayload: vue.PropType<(value: any) => any>;
2332
2332
  onShow: vue.PropType<(control: _fastkit_vue_stack__.VStackControl) => any>;
2333
2333
  onClose: vue.PropType<(control: _fastkit_vue_stack__.VStackControl) => any>;
@@ -2427,7 +2427,7 @@ declare const VBusyImage: vue.DefineComponent<{
2427
2427
  class: PropType<any>;
2428
2428
  style: PropType<vue.StyleValue | undefined>;
2429
2429
  accesskey: PropType<string | undefined>;
2430
- contenteditable: PropType<"inherit" | (boolean | "true" | "false") | undefined>;
2430
+ contenteditable: PropType<(boolean | "true" | "false") | "inherit" | undefined>;
2431
2431
  contextmenu: PropType<string | undefined>;
2432
2432
  dir: PropType<string | undefined>;
2433
2433
  draggable: PropType<(boolean | "true" | "false") | undefined>;
@@ -2461,7 +2461,7 @@ declare const VBusyImage: vue.DefineComponent<{
2461
2461
  results: PropType<(string | number) | undefined>;
2462
2462
  security: PropType<string | undefined>;
2463
2463
  unselectable: PropType<"off" | "on" | undefined>;
2464
- inputmode: PropType<"none" | "text" | "search" | "email" | "tel" | "url" | "decimal" | "numeric" | undefined>;
2464
+ inputmode: PropType<"text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric" | undefined>;
2465
2465
  is: PropType<string | undefined>;
2466
2466
  'aria-activedescendant': PropType<string | undefined>;
2467
2467
  'aria-atomic': PropType<(boolean | "true" | "false") | undefined>;
@@ -2476,7 +2476,7 @@ declare const VBusyImage: vue.DefineComponent<{
2476
2476
  'aria-describedby': PropType<string | undefined>;
2477
2477
  'aria-details': PropType<string | undefined>;
2478
2478
  'aria-disabled': PropType<(boolean | "true" | "false") | undefined>;
2479
- 'aria-dropeffect': PropType<"none" | "link" | "copy" | "execute" | "move" | "popup" | undefined>;
2479
+ 'aria-dropeffect': PropType<"link" | "none" | "copy" | "execute" | "move" | "popup" | undefined>;
2480
2480
  'aria-errormessage': PropType<string | undefined>;
2481
2481
  'aria-expanded': PropType<(boolean | "true" | "false") | undefined>;
2482
2482
  'aria-flowto': PropType<string | undefined>;
@@ -2619,7 +2619,7 @@ declare const VBusyImage: vue.DefineComponent<{
2619
2619
  class: PropType<any>;
2620
2620
  style: PropType<vue.StyleValue | undefined>;
2621
2621
  accesskey: PropType<string | undefined>;
2622
- contenteditable: PropType<"inherit" | (boolean | "true" | "false") | undefined>;
2622
+ contenteditable: PropType<(boolean | "true" | "false") | "inherit" | undefined>;
2623
2623
  contextmenu: PropType<string | undefined>;
2624
2624
  dir: PropType<string | undefined>;
2625
2625
  draggable: PropType<(boolean | "true" | "false") | undefined>;
@@ -2653,7 +2653,7 @@ declare const VBusyImage: vue.DefineComponent<{
2653
2653
  results: PropType<(string | number) | undefined>;
2654
2654
  security: PropType<string | undefined>;
2655
2655
  unselectable: PropType<"off" | "on" | undefined>;
2656
- inputmode: PropType<"none" | "text" | "search" | "email" | "tel" | "url" | "decimal" | "numeric" | undefined>;
2656
+ inputmode: PropType<"text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric" | undefined>;
2657
2657
  is: PropType<string | undefined>;
2658
2658
  'aria-activedescendant': PropType<string | undefined>;
2659
2659
  'aria-atomic': PropType<(boolean | "true" | "false") | undefined>;
@@ -2668,7 +2668,7 @@ declare const VBusyImage: vue.DefineComponent<{
2668
2668
  'aria-describedby': PropType<string | undefined>;
2669
2669
  'aria-details': PropType<string | undefined>;
2670
2670
  'aria-disabled': PropType<(boolean | "true" | "false") | undefined>;
2671
- 'aria-dropeffect': PropType<"none" | "link" | "copy" | "execute" | "move" | "popup" | undefined>;
2671
+ 'aria-dropeffect': PropType<"link" | "none" | "copy" | "execute" | "move" | "popup" | undefined>;
2672
2672
  'aria-errormessage': PropType<string | undefined>;
2673
2673
  'aria-expanded': PropType<(boolean | "true" | "false") | undefined>;
2674
2674
  'aria-flowto': PropType<string | undefined>;
@@ -2975,7 +2975,7 @@ declare function createAvatarProps(): {
2975
2975
  media: PropType<string>;
2976
2976
  ping: PropType<string>;
2977
2977
  referrerpolicy: PropType<string>;
2978
- type: PropType<"button" | "submit" | "reset">;
2978
+ type: PropType<"submit" | "button" | "reset">;
2979
2979
  title: PropType<string>;
2980
2980
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
2981
2981
  to: PropType<RouteLocationRaw>;
@@ -2984,8 +2984,8 @@ declare function createAvatarProps(): {
2984
2984
  activeClass: PropType<string>;
2985
2985
  exactActiveClass: PropType<string>;
2986
2986
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
2987
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
2988
2987
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
2988
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
2989
2989
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
2990
2990
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
2991
2991
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3008,10 +3008,10 @@ declare function createAvatarProps(): {
3008
3008
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3009
3009
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3010
3010
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3011
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3012
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3013
3011
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3014
3012
  tabindex: PropType<(string | number) | undefined>;
3013
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3014
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3015
3015
  variant: PropType<ColorVariant>;
3016
3016
  theme: PropType<ThemeName>;
3017
3017
  color: PropType<ScopeName>;
@@ -3044,7 +3044,7 @@ declare const VAvatar: vue.DefineComponent<{
3044
3044
  media: PropType<string>;
3045
3045
  ping: PropType<string>;
3046
3046
  referrerpolicy: PropType<string>;
3047
- type: PropType<"button" | "submit" | "reset">;
3047
+ type: PropType<"submit" | "button" | "reset">;
3048
3048
  title: PropType<string>;
3049
3049
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
3050
3050
  to: PropType<RouteLocationRaw>;
@@ -3053,8 +3053,8 @@ declare const VAvatar: vue.DefineComponent<{
3053
3053
  activeClass: PropType<string>;
3054
3054
  exactActiveClass: PropType<string>;
3055
3055
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3056
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3057
3056
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3057
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3058
3058
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3059
3059
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3060
3060
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3077,10 +3077,10 @@ declare const VAvatar: vue.DefineComponent<{
3077
3077
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3078
3078
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3079
3079
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3080
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3081
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3082
3080
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3083
3081
  tabindex: PropType<(string | number) | undefined>;
3082
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3083
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3084
3084
  variant: PropType<ColorVariant>;
3085
3085
  theme: PropType<ThemeName>;
3086
3086
  color: PropType<ScopeName>;
@@ -3114,7 +3114,7 @@ declare const VAvatar: vue.DefineComponent<{
3114
3114
  media: PropType<string>;
3115
3115
  ping: PropType<string>;
3116
3116
  referrerpolicy: PropType<string>;
3117
- type: PropType<"button" | "submit" | "reset">;
3117
+ type: PropType<"submit" | "button" | "reset">;
3118
3118
  title: PropType<string>;
3119
3119
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
3120
3120
  to: PropType<RouteLocationRaw>;
@@ -3123,8 +3123,8 @@ declare const VAvatar: vue.DefineComponent<{
3123
3123
  activeClass: PropType<string>;
3124
3124
  exactActiveClass: PropType<string>;
3125
3125
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3126
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3127
3126
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3127
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3128
3128
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3129
3129
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3130
3130
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3147,10 +3147,10 @@ declare const VAvatar: vue.DefineComponent<{
3147
3147
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3148
3148
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3149
3149
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3150
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3151
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3152
3150
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3153
3151
  tabindex: PropType<(string | number) | undefined>;
3152
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3153
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3154
3154
  variant: PropType<ColorVariant>;
3155
3155
  theme: PropType<ThemeName>;
3156
3156
  color: PropType<ScopeName>;
@@ -3193,7 +3193,7 @@ declare function createChipProps(): {
3193
3193
  media: PropType<string>;
3194
3194
  ping: PropType<string>;
3195
3195
  referrerpolicy: PropType<string>;
3196
- type: PropType<"button" | "submit" | "reset">;
3196
+ type: PropType<"submit" | "button" | "reset">;
3197
3197
  title: PropType<string>;
3198
3198
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
3199
3199
  to: PropType<RouteLocationRaw>;
@@ -3202,8 +3202,8 @@ declare function createChipProps(): {
3202
3202
  activeClass: PropType<string>;
3203
3203
  exactActiveClass: PropType<string>;
3204
3204
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3205
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3206
3205
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3206
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3207
3207
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3208
3208
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3209
3209
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3226,10 +3226,10 @@ declare function createChipProps(): {
3226
3226
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3227
3227
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3228
3228
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3229
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3230
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3231
3229
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3232
3230
  tabindex: PropType<(string | number) | undefined>;
3231
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3232
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3233
3233
  variant: PropType<ColorVariant>;
3234
3234
  theme: PropType<ThemeName>;
3235
3235
  color: PropType<ScopeName>;
@@ -3262,7 +3262,7 @@ declare const VChip: vue.DefineComponent<{
3262
3262
  media: PropType<string>;
3263
3263
  ping: PropType<string>;
3264
3264
  referrerpolicy: PropType<string>;
3265
- type: PropType<"button" | "submit" | "reset">;
3265
+ type: PropType<"submit" | "button" | "reset">;
3266
3266
  title: PropType<string>;
3267
3267
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
3268
3268
  to: PropType<RouteLocationRaw>;
@@ -3271,8 +3271,8 @@ declare const VChip: vue.DefineComponent<{
3271
3271
  activeClass: PropType<string>;
3272
3272
  exactActiveClass: PropType<string>;
3273
3273
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3274
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3275
3274
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3275
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3276
3276
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3277
3277
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3278
3278
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3295,10 +3295,10 @@ declare const VChip: vue.DefineComponent<{
3295
3295
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3296
3296
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3297
3297
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3298
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3299
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3300
3298
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3301
3299
  tabindex: PropType<(string | number) | undefined>;
3300
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3301
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3302
3302
  variant: PropType<ColorVariant>;
3303
3303
  theme: PropType<ThemeName>;
3304
3304
  color: PropType<ScopeName>;
@@ -3332,7 +3332,7 @@ declare const VChip: vue.DefineComponent<{
3332
3332
  media: PropType<string>;
3333
3333
  ping: PropType<string>;
3334
3334
  referrerpolicy: PropType<string>;
3335
- type: PropType<"button" | "submit" | "reset">;
3335
+ type: PropType<"submit" | "button" | "reset">;
3336
3336
  title: PropType<string>;
3337
3337
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
3338
3338
  to: PropType<RouteLocationRaw>;
@@ -3341,8 +3341,8 @@ declare const VChip: vue.DefineComponent<{
3341
3341
  activeClass: PropType<string>;
3342
3342
  exactActiveClass: PropType<string>;
3343
3343
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3344
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3345
3344
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3345
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3346
3346
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3347
3347
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3348
3348
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3365,19 +3365,19 @@ declare const VChip: vue.DefineComponent<{
3365
3365
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3366
3366
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3367
3367
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3368
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3369
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3370
3368
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3371
3369
  tabindex: PropType<(string | number) | undefined>;
3370
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3371
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3372
3372
  variant: PropType<ColorVariant>;
3373
3373
  theme: PropType<ThemeName>;
3374
3374
  color: PropType<ScopeName>;
3375
3375
  textColor: PropType<PaletteName>;
3376
3376
  borderColor: PropType<PaletteName>;
3377
3377
  }>>, {
3378
- label: boolean;
3379
3378
  size: "sm" | "md" | "lg" | "xs" | "xl";
3380
3379
  disabled: boolean;
3380
+ label: boolean;
3381
3381
  }, {}>;
3382
3382
 
3383
3383
  declare function createCardProps(): {
@@ -3399,7 +3399,7 @@ declare function createCardProps(): {
3399
3399
  media: vue.PropType<string>;
3400
3400
  ping: vue.PropType<string>;
3401
3401
  referrerpolicy: vue.PropType<string>;
3402
- type: vue.PropType<"button" | "submit" | "reset">;
3402
+ type: vue.PropType<"submit" | "button" | "reset">;
3403
3403
  title: vue.PropType<string>;
3404
3404
  guard: vue.PropType<_fastkit_vue_action.ActionableGuard>;
3405
3405
  to: vue.PropType<RouteLocationRaw>;
@@ -3408,8 +3408,8 @@ declare function createCardProps(): {
3408
3408
  activeClass: vue.PropType<string>;
3409
3409
  exactActiveClass: vue.PropType<string>;
3410
3410
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3411
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3412
3411
  onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3412
+ onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3413
3413
  onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3414
3414
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3415
3415
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3432,10 +3432,10 @@ declare function createCardProps(): {
3432
3432
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3433
3433
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3434
3434
  onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3435
- onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3436
- onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3437
3435
  onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3438
3436
  tabindex: vue.PropType<(string | number) | undefined>;
3437
+ onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3438
+ onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3439
3439
  square: BooleanConstructor;
3440
3440
  headerProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
3441
3441
  bodyProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
@@ -3468,7 +3468,7 @@ declare const VCard: vue.DefineComponent<{
3468
3468
  media: vue.PropType<string>;
3469
3469
  ping: vue.PropType<string>;
3470
3470
  referrerpolicy: vue.PropType<string>;
3471
- type: vue.PropType<"button" | "submit" | "reset">;
3471
+ type: vue.PropType<"submit" | "button" | "reset">;
3472
3472
  title: vue.PropType<string>;
3473
3473
  guard: vue.PropType<_fastkit_vue_action.ActionableGuard>;
3474
3474
  to: vue.PropType<RouteLocationRaw>;
@@ -3477,8 +3477,8 @@ declare const VCard: vue.DefineComponent<{
3477
3477
  activeClass: vue.PropType<string>;
3478
3478
  exactActiveClass: vue.PropType<string>;
3479
3479
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3480
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3481
3480
  onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3481
+ onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3482
3482
  onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3483
3483
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3484
3484
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3501,10 +3501,10 @@ declare const VCard: vue.DefineComponent<{
3501
3501
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3502
3502
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3503
3503
  onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3504
- onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3505
- onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3506
3504
  onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3507
3505
  tabindex: vue.PropType<(string | number) | undefined>;
3506
+ onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3507
+ onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3508
3508
  square: BooleanConstructor;
3509
3509
  headerProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
3510
3510
  bodyProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
@@ -3536,7 +3536,7 @@ declare const VCard: vue.DefineComponent<{
3536
3536
  media: vue.PropType<string>;
3537
3537
  ping: vue.PropType<string>;
3538
3538
  referrerpolicy: vue.PropType<string>;
3539
- type: vue.PropType<"button" | "submit" | "reset">;
3539
+ type: vue.PropType<"submit" | "button" | "reset">;
3540
3540
  title: vue.PropType<string>;
3541
3541
  guard: vue.PropType<_fastkit_vue_action.ActionableGuard>;
3542
3542
  to: vue.PropType<RouteLocationRaw>;
@@ -3545,8 +3545,8 @@ declare const VCard: vue.DefineComponent<{
3545
3545
  activeClass: vue.PropType<string>;
3546
3546
  exactActiveClass: vue.PropType<string>;
3547
3547
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3548
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3549
3548
  onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3549
+ onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3550
3550
  onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3551
3551
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3552
3552
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3569,10 +3569,10 @@ declare const VCard: vue.DefineComponent<{
3569
3569
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3570
3570
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3571
3571
  onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3572
- onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3573
- onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3574
3572
  onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3575
3573
  tabindex: vue.PropType<(string | number) | undefined>;
3574
+ onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3575
+ onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3576
3576
  square: BooleanConstructor;
3577
3577
  headerProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
3578
3578
  bodyProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
@@ -3632,7 +3632,7 @@ declare const vueButtonProps: {
3632
3632
  media: PropType<string>;
3633
3633
  ping: PropType<string>;
3634
3634
  referrerpolicy: PropType<string>;
3635
- type: PropType<"button" | "submit" | "reset">;
3635
+ type: PropType<"submit" | "button" | "reset">;
3636
3636
  title: PropType<string>;
3637
3637
  disabled: PropType<boolean>;
3638
3638
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
@@ -3642,8 +3642,8 @@ declare const vueButtonProps: {
3642
3642
  activeClass: PropType<string>;
3643
3643
  exactActiveClass: PropType<string>;
3644
3644
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3645
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3646
3645
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3646
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3647
3647
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3648
3648
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3649
3649
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3666,10 +3666,10 @@ declare const vueButtonProps: {
3666
3666
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3667
3667
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3668
3668
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3669
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3670
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3671
3669
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3672
3670
  tabindex: PropType<(string | number) | undefined>;
3671
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3672
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3673
3673
  variant: PropType<ColorVariant>;
3674
3674
  theme: PropType<ThemeName>;
3675
3675
  color: PropType<ScopeName>;
@@ -3710,7 +3710,7 @@ declare const VButton: vue.DefineComponent<{
3710
3710
  media: PropType<string>;
3711
3711
  ping: PropType<string>;
3712
3712
  referrerpolicy: PropType<string>;
3713
- type: PropType<"button" | "submit" | "reset">;
3713
+ type: PropType<"submit" | "button" | "reset">;
3714
3714
  title: PropType<string>;
3715
3715
  disabled: PropType<boolean>;
3716
3716
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
@@ -3720,8 +3720,8 @@ declare const VButton: vue.DefineComponent<{
3720
3720
  activeClass: PropType<string>;
3721
3721
  exactActiveClass: PropType<string>;
3722
3722
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3723
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3724
3723
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3724
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3725
3725
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3726
3726
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3727
3727
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3744,10 +3744,10 @@ declare const VButton: vue.DefineComponent<{
3744
3744
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3745
3745
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3746
3746
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3747
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3748
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3749
3747
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3750
3748
  tabindex: PropType<(string | number) | undefined>;
3749
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3750
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3751
3751
  variant: PropType<ColorVariant>;
3752
3752
  theme: PropType<ThemeName>;
3753
3753
  color: PropType<ScopeName>;
@@ -3785,7 +3785,7 @@ declare const VButton: vue.DefineComponent<{
3785
3785
  media: PropType<string>;
3786
3786
  ping: PropType<string>;
3787
3787
  referrerpolicy: PropType<string>;
3788
- type: PropType<"button" | "submit" | "reset">;
3788
+ type: PropType<"submit" | "button" | "reset">;
3789
3789
  title: PropType<string>;
3790
3790
  disabled: PropType<boolean>;
3791
3791
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
@@ -3795,8 +3795,8 @@ declare const VButton: vue.DefineComponent<{
3795
3795
  activeClass: PropType<string>;
3796
3796
  exactActiveClass: PropType<string>;
3797
3797
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3798
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3799
3798
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3799
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3800
3800
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3801
3801
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3802
3802
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3819,10 +3819,10 @@ declare const VButton: vue.DefineComponent<{
3819
3819
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3820
3820
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3821
3821
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3822
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3823
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3824
3822
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3825
3823
  tabindex: PropType<(string | number) | undefined>;
3824
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3825
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3826
3826
  variant: PropType<ColorVariant>;
3827
3827
  theme: PropType<ThemeName>;
3828
3828
  color: PropType<ScopeName>;
@@ -3973,8 +3973,8 @@ declare const VPagination: vue.DefineComponent<{
3973
3973
  beforeChange: PropType<VPaginationGuard>;
3974
3974
  color: PropType<ScopeName>;
3975
3975
  }>> & {
3976
- onChange?: ((page: number) => any) | undefined;
3977
3976
  "onUpdate:modelValue"?: ((page: number) => any) | undefined;
3977
+ onChange?: ((page: number) => any) | undefined;
3978
3978
  }, {
3979
3979
  length: string | number;
3980
3980
  modelValue: string | number;
@@ -4009,7 +4009,7 @@ declare function createListTileProps(): {
4009
4009
  media: PropType<string>;
4010
4010
  ping: PropType<string>;
4011
4011
  referrerpolicy: PropType<string>;
4012
- type: PropType<"button" | "submit" | "reset">;
4012
+ type: PropType<"submit" | "button" | "reset">;
4013
4013
  title: PropType<string>;
4014
4014
  disabled: PropType<boolean>;
4015
4015
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
@@ -4019,8 +4019,8 @@ declare function createListTileProps(): {
4019
4019
  activeClass: PropType<string>;
4020
4020
  exactActiveClass: PropType<string>;
4021
4021
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4022
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4023
4022
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4023
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4024
4024
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4025
4025
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4026
4026
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4043,10 +4043,10 @@ declare function createListTileProps(): {
4043
4043
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4044
4044
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4045
4045
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4046
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4047
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4048
4046
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4049
4047
  tabindex: PropType<(string | number) | undefined>;
4048
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4049
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4050
4050
  };
4051
4051
  declare const listTileEmits: {
4052
4052
  changeActive: (isActive: boolean) => boolean;
@@ -4077,7 +4077,7 @@ declare const VListTile: vue.DefineComponent<{
4077
4077
  media: PropType<string>;
4078
4078
  ping: PropType<string>;
4079
4079
  referrerpolicy: PropType<string>;
4080
- type: PropType<"button" | "submit" | "reset">;
4080
+ type: PropType<"submit" | "button" | "reset">;
4081
4081
  title: PropType<string>;
4082
4082
  disabled: PropType<boolean>;
4083
4083
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
@@ -4087,8 +4087,8 @@ declare const VListTile: vue.DefineComponent<{
4087
4087
  activeClass: PropType<string>;
4088
4088
  exactActiveClass: PropType<string>;
4089
4089
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4090
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4091
4090
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4091
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4092
4092
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4093
4093
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4094
4094
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4111,10 +4111,10 @@ declare const VListTile: vue.DefineComponent<{
4111
4111
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4112
4112
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4113
4113
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4114
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4115
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4116
4114
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4117
4115
  tabindex: PropType<(string | number) | undefined>;
4116
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4117
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4118
4118
  }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4119
4119
  changeActive: (isActive: boolean) => boolean;
4120
4120
  }, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
@@ -4143,7 +4143,7 @@ declare const VListTile: vue.DefineComponent<{
4143
4143
  media: PropType<string>;
4144
4144
  ping: PropType<string>;
4145
4145
  referrerpolicy: PropType<string>;
4146
- type: PropType<"button" | "submit" | "reset">;
4146
+ type: PropType<"submit" | "button" | "reset">;
4147
4147
  title: PropType<string>;
4148
4148
  disabled: PropType<boolean>;
4149
4149
  guard: PropType<_fastkit_vue_action.ActionableGuard>;
@@ -4153,8 +4153,8 @@ declare const VListTile: vue.DefineComponent<{
4153
4153
  activeClass: PropType<string>;
4154
4154
  exactActiveClass: PropType<string>;
4155
4155
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4156
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4157
4156
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4157
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4158
4158
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4159
4159
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4160
4160
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4177,10 +4177,10 @@ declare const VListTile: vue.DefineComponent<{
4177
4177
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4178
4178
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4179
4179
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4180
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4181
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4182
4180
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4183
4181
  tabindex: PropType<(string | number) | undefined>;
4182
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4183
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4184
4184
  }>> & {
4185
4185
  onChangeActive?: ((isActive: boolean) => any) | undefined;
4186
4186
  }, {
@@ -4294,7 +4294,7 @@ declare function createNavigationItemProps(): {
4294
4294
  media: PropType<string>;
4295
4295
  ping: PropType<string>;
4296
4296
  referrerpolicy: PropType<string>;
4297
- type: PropType<"button" | "submit" | "reset">;
4297
+ type: PropType<"submit" | "button" | "reset">;
4298
4298
  title: PropType<string>;
4299
4299
  disabled: PropType<boolean>;
4300
4300
  guard: PropType<_fastkit_vue_action__.ActionableGuard>;
@@ -4304,8 +4304,8 @@ declare function createNavigationItemProps(): {
4304
4304
  activeClass: PropType<string>;
4305
4305
  exactActiveClass: PropType<string>;
4306
4306
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4307
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4308
4307
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4308
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4309
4309
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4310
4310
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4311
4311
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4328,10 +4328,10 @@ declare function createNavigationItemProps(): {
4328
4328
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4329
4329
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4330
4330
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4331
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4332
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4333
4331
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4334
4332
  tabindex: PropType<(string | number) | undefined>;
4333
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4334
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4335
4335
  };
4336
4336
  interface NavigationItemInput extends ExtractPropInput<ReturnType<typeof createNavigationItemProps>> {
4337
4337
  key: string | number;
@@ -4376,7 +4376,7 @@ declare const VNavigationItem: vue.DefineComponent<{
4376
4376
  media: PropType<string>;
4377
4377
  ping: PropType<string>;
4378
4378
  referrerpolicy: PropType<string>;
4379
- type: PropType<"button" | "submit" | "reset">;
4379
+ type: PropType<"submit" | "button" | "reset">;
4380
4380
  title: PropType<string>;
4381
4381
  disabled: PropType<boolean>;
4382
4382
  guard: PropType<_fastkit_vue_action__.ActionableGuard>;
@@ -4386,8 +4386,8 @@ declare const VNavigationItem: vue.DefineComponent<{
4386
4386
  activeClass: PropType<string>;
4387
4387
  exactActiveClass: PropType<string>;
4388
4388
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4389
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4390
4389
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4390
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4391
4391
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4392
4392
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4393
4393
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4410,10 +4410,10 @@ declare const VNavigationItem: vue.DefineComponent<{
4410
4410
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4411
4411
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4412
4412
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4413
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4414
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4415
4413
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4416
4414
  tabindex: PropType<(string | number) | undefined>;
4415
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4416
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4417
4417
  }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4418
4418
  changeActive: (isActive: boolean) => boolean;
4419
4419
  }, string, VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
@@ -4449,7 +4449,7 @@ declare const VNavigationItem: vue.DefineComponent<{
4449
4449
  media: PropType<string>;
4450
4450
  ping: PropType<string>;
4451
4451
  referrerpolicy: PropType<string>;
4452
- type: PropType<"button" | "submit" | "reset">;
4452
+ type: PropType<"submit" | "button" | "reset">;
4453
4453
  title: PropType<string>;
4454
4454
  disabled: PropType<boolean>;
4455
4455
  guard: PropType<_fastkit_vue_action__.ActionableGuard>;
@@ -4459,8 +4459,8 @@ declare const VNavigationItem: vue.DefineComponent<{
4459
4459
  activeClass: PropType<string>;
4460
4460
  exactActiveClass: PropType<string>;
4461
4461
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4462
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4463
4462
  onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4463
+ onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4464
4464
  onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4465
4465
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4466
4466
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4483,10 +4483,10 @@ declare const VNavigationItem: vue.DefineComponent<{
4483
4483
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4484
4484
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4485
4485
  onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4486
- onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4487
- onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4488
4486
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4489
4487
  tabindex: PropType<(string | number) | undefined>;
4488
+ onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4489
+ onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4490
4490
  }>> & {
4491
4491
  onChangeActive?: ((isActive: boolean) => any) | undefined;
4492
4492
  }, {
@@ -4812,11 +4812,11 @@ declare const VCheckbox: vue.DefineComponent<{
4812
4812
  };
4813
4813
  detach: BooleanConstructor;
4814
4814
  }>> & {
4815
- onFocus?: ((ev: FocusEvent) => any) | undefined;
4816
- onBlur?: ((ev: FocusEvent) => any) | undefined;
4817
- onChange?: ((value: boolean) => any) | undefined;
4818
4815
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
4819
4816
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
4817
+ onChange?: ((value: boolean) => any) | undefined;
4818
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
4819
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
4820
4820
  }, {
4821
4821
  loading: boolean;
4822
4822
  tabindex: string | number;
@@ -4983,11 +4983,11 @@ declare const VCheckboxGroup: vue.DefineComponent<{
4983
4983
  };
4984
4984
  detach: BooleanConstructor;
4985
4985
  }>> & {
4986
- onFocus?: ((ev: FocusEvent) => any) | undefined;
4987
- onBlur?: ((ev: FocusEvent) => any) | undefined;
4988
- onChange?: ((value: _fastkit_vue_form_control__.FormSelectorValue) => any) | undefined;
4989
4986
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control__.FormSelectorValue) => any) | undefined;
4990
4987
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control__.FormNodeError[]) => any) | undefined;
4988
+ onChange?: ((value: _fastkit_vue_form_control__.FormSelectorValue) => any) | undefined;
4989
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
4990
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
4991
4991
  }, {
4992
4992
  loading: boolean;
4993
4993
  collectErrorMessages: boolean;
@@ -5112,11 +5112,11 @@ declare const VRadio: vue.DefineComponent<{
5112
5112
  };
5113
5113
  detach: BooleanConstructor;
5114
5114
  }>> & {
5115
- onFocus?: ((ev: FocusEvent) => any) | undefined;
5116
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5117
- onChange?: ((value: boolean) => any) | undefined;
5118
5115
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
5119
5116
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5117
+ onChange?: ((value: boolean) => any) | undefined;
5118
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
5119
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5120
5120
  }, {
5121
5121
  loading: boolean;
5122
5122
  tabindex: string | number;
@@ -5282,11 +5282,11 @@ declare const VRadioGroup: vue.DefineComponent<{
5282
5282
  };
5283
5283
  detach: BooleanConstructor;
5284
5284
  }>> & {
5285
- onFocus?: ((ev: FocusEvent) => any) | undefined;
5286
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5287
- onChange?: ((value: _fastkit_vue_form_control__.FormSelectorValue) => any) | undefined;
5288
5285
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control__.FormSelectorValue) => any) | undefined;
5289
5286
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control__.FormNodeError[]) => any) | undefined;
5287
+ onChange?: ((value: _fastkit_vue_form_control__.FormSelectorValue) => any) | undefined;
5288
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
5289
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5290
5290
  }, {
5291
5291
  loading: boolean;
5292
5292
  collectErrorMessages: boolean;
@@ -5411,11 +5411,11 @@ declare const VSwitch: vue.DefineComponent<{
5411
5411
  };
5412
5412
  detach: BooleanConstructor;
5413
5413
  }>> & {
5414
- onFocus?: ((ev: FocusEvent) => any) | undefined;
5415
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5416
- onChange?: ((value: boolean) => any) | undefined;
5417
5414
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
5418
5415
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5416
+ onChange?: ((value: boolean) => any) | undefined;
5417
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
5418
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5419
5419
  }, {
5420
5420
  loading: boolean;
5421
5421
  tabindex: string | number;
@@ -5581,11 +5581,11 @@ declare const VSwitchGroup: vue.DefineComponent<{
5581
5581
  };
5582
5582
  detach: BooleanConstructor;
5583
5583
  }>> & {
5584
- onFocus?: ((ev: FocusEvent) => any) | undefined;
5585
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5586
- onChange?: ((value: _fastkit_vue_form_control__.FormSelectorValue) => any) | undefined;
5587
5584
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control__.FormSelectorValue) => any) | undefined;
5588
5585
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control__.FormNodeError[]) => any) | undefined;
5586
+ onChange?: ((value: _fastkit_vue_form_control__.FormSelectorValue) => any) | undefined;
5587
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
5588
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5589
5589
  }, {
5590
5590
  loading: boolean;
5591
5591
  collectErrorMessages: boolean;
@@ -5710,11 +5710,11 @@ declare const VOption: vue.DefineComponent<{
5710
5710
  };
5711
5711
  detach: BooleanConstructor;
5712
5712
  }>> & {
5713
- onFocus?: ((ev: FocusEvent) => any) | undefined;
5714
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5715
- onChange?: ((value: boolean) => any) | undefined;
5716
5713
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
5717
5714
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5715
+ onChange?: ((value: boolean) => any) | undefined;
5716
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
5717
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5718
5718
  }, {
5719
5719
  loading: boolean;
5720
5720
  tabindex: string | number;
@@ -5932,11 +5932,11 @@ declare const VSelect: vue.DefineComponent<{
5932
5932
  };
5933
5933
  detach: BooleanConstructor;
5934
5934
  }>> & {
5935
- onFocus?: ((ev: FocusEvent) => any) | undefined;
5936
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5937
- onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5938
5935
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5939
5936
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5937
+ onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5938
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
5939
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5940
5940
  }, {
5941
5941
  loading: boolean;
5942
5942
  collectErrorMessages: boolean;
@@ -5994,16 +5994,12 @@ declare const VNumberField: vue.DefineComponent<{
5994
5994
  type: PropType<number | null>;
5995
5995
  default: null;
5996
5996
  };
5997
- name: StringConstructor;
5998
- required: BooleanConstructor | PropType<boolean>;
5999
- label: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
6000
- mask: PropType<_fastkit_vue_form_control__.IMaskInput>;
6001
- pattern: (StringConstructor | RegExpConstructor)[];
6002
5997
  loading: BooleanConstructor;
6003
5998
  size: {
6004
5999
  type: PropType<"sm" | "md" | "lg">;
6005
6000
  validator: (value: any) => boolean;
6006
6001
  };
6002
+ name: StringConstructor;
6007
6003
  'v-slots': PropType<{
6008
6004
  [x: `error:${string}`]: (error: _fastkit_vue_form_control__.FormNodeError) => vue.VNodeChild;
6009
6005
  label?: ((wrapper: _fastkit_vue_form_control__.FormNodeWrapper) => vue.VNodeChild) | undefined;
@@ -6028,6 +6024,7 @@ declare const VNumberField: vue.DefineComponent<{
6028
6024
  readonly: BooleanConstructor;
6029
6025
  viewonly: BooleanConstructor;
6030
6026
  spellcheck: BooleanConstructor;
6027
+ required: BooleanConstructor | PropType<boolean>;
6031
6028
  clearable: BooleanConstructor;
6032
6029
  validateTiming: {
6033
6030
  type: PropType<_fastkit_vue_form_control__.ValidateTiming>;
@@ -6045,6 +6042,9 @@ declare const VNumberField: vue.DefineComponent<{
6045
6042
  default: undefined;
6046
6043
  };
6047
6044
  detach: BooleanConstructor;
6045
+ label: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
6046
+ mask: PropType<_fastkit_vue_form_control__.IMaskInput>;
6047
+ pattern: (StringConstructor | RegExpConstructor)[];
6048
6048
  variant: {
6049
6049
  type: PropType<"outlined" | "filled" | "flat">;
6050
6050
  validator: (value: any) => boolean;
@@ -6059,7 +6059,7 @@ declare const VNumberField: vue.DefineComponent<{
6059
6059
  startAdornment: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
6060
6060
  endAdornment: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
6061
6061
  maxlength: (StringConstructor | NumberConstructor)[];
6062
- inputmode: PropType<"none" | "text" | "search" | "email" | "tel" | "url" | "decimal" | "numeric">;
6062
+ inputmode: PropType<"text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric">;
6063
6063
  maskModel: {
6064
6064
  type: PropType<_fastkit_vue_form_control__.TextInputMaskModel>;
6065
6065
  default: string;
@@ -6089,16 +6089,12 @@ declare const VNumberField: vue.DefineComponent<{
6089
6089
  type: PropType<number | null>;
6090
6090
  default: null;
6091
6091
  };
6092
- name: StringConstructor;
6093
- required: BooleanConstructor | PropType<boolean>;
6094
- label: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
6095
- mask: PropType<_fastkit_vue_form_control__.IMaskInput>;
6096
- pattern: (StringConstructor | RegExpConstructor)[];
6097
6092
  loading: BooleanConstructor;
6098
6093
  size: {
6099
6094
  type: PropType<"sm" | "md" | "lg">;
6100
6095
  validator: (value: any) => boolean;
6101
6096
  };
6097
+ name: StringConstructor;
6102
6098
  'v-slots': PropType<{
6103
6099
  [x: `error:${string}`]: (error: _fastkit_vue_form_control__.FormNodeError) => vue.VNodeChild;
6104
6100
  label?: ((wrapper: _fastkit_vue_form_control__.FormNodeWrapper) => vue.VNodeChild) | undefined;
@@ -6123,6 +6119,7 @@ declare const VNumberField: vue.DefineComponent<{
6123
6119
  readonly: BooleanConstructor;
6124
6120
  viewonly: BooleanConstructor;
6125
6121
  spellcheck: BooleanConstructor;
6122
+ required: BooleanConstructor | PropType<boolean>;
6126
6123
  clearable: BooleanConstructor;
6127
6124
  validateTiming: {
6128
6125
  type: PropType<_fastkit_vue_form_control__.ValidateTiming>;
@@ -6140,6 +6137,9 @@ declare const VNumberField: vue.DefineComponent<{
6140
6137
  default: undefined;
6141
6138
  };
6142
6139
  detach: BooleanConstructor;
6140
+ label: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
6141
+ mask: PropType<_fastkit_vue_form_control__.IMaskInput>;
6142
+ pattern: (StringConstructor | RegExpConstructor)[];
6143
6143
  variant: {
6144
6144
  type: PropType<"outlined" | "filled" | "flat">;
6145
6145
  validator: (value: any) => boolean;
@@ -6154,7 +6154,7 @@ declare const VNumberField: vue.DefineComponent<{
6154
6154
  startAdornment: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
6155
6155
  endAdornment: PropType<_fastkit_vue_utils__.VNodeChildOrSlot>;
6156
6156
  maxlength: (StringConstructor | NumberConstructor)[];
6157
- inputmode: PropType<"none" | "text" | "search" | "email" | "tel" | "url" | "decimal" | "numeric">;
6157
+ inputmode: PropType<"text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric">;
6158
6158
  maskModel: {
6159
6159
  type: PropType<_fastkit_vue_form_control__.TextInputMaskModel>;
6160
6160
  default: string;
@@ -6168,11 +6168,11 @@ declare const VNumberField: vue.DefineComponent<{
6168
6168
  limit: BooleanConstructor;
6169
6169
  autocomplete: PropType<boolean | "name" | "email" | "tel" | "url" | "off" | "on" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "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-country-code" | "tel-national" | "tel-area-code" | "tel-local" | "tel-extension" | "impp" | "photo">;
6170
6170
  }>> & {
6171
- onFocus?: ((ev: FocusEvent) => any) | undefined;
6172
- onBlur?: ((ev: FocusEvent) => any) | undefined;
6173
- onChange?: ((value: number | null) => any) | undefined;
6174
6171
  "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
6175
6172
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control__.FormNodeError[]) => any) | undefined;
6173
+ onChange?: ((value: number | null) => any) | undefined;
6174
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
6175
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
6176
6176
  onAcceptMask?: ((ev: _fastkit_vue_form_control__.IMaskEvent) => any) | undefined;
6177
6177
  onAcceptDynamicMaskMeta?: ((meta?: any) => any) | undefined;
6178
6178
  onCompleteMask?: ((ev: _fastkit_vue_form_control__.IMaskEvent) => any) | undefined;
@@ -6367,11 +6367,11 @@ declare const VTextarea: vue.DefineComponent<{
6367
6367
  };
6368
6368
  detach: BooleanConstructor;
6369
6369
  }>> & {
6370
- onFocus?: ((ev: FocusEvent) => any) | undefined;
6371
- onBlur?: ((ev: FocusEvent) => any) | undefined;
6372
- onChange?: ((value: string) => any) | undefined;
6373
6370
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
6374
6371
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
6372
+ onChange?: ((value: string) => any) | undefined;
6373
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
6374
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
6375
6375
  }, {
6376
6376
  loading: boolean;
6377
6377
  collectErrorMessages: boolean;
@@ -6543,11 +6543,11 @@ declare const VFormGroup: vue.DefineComponent<{
6543
6543
  };
6544
6544
  detach: BooleanConstructor;
6545
6545
  }>> & {
6546
- onFocus?: ((ev: FocusEvent) => any) | undefined;
6547
- onBlur?: ((ev: FocusEvent) => any) | undefined;
6548
- onChange?: ((value: unknown) => any) | undefined;
6549
6546
  "onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
6550
6547
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
6548
+ onChange?: ((value: unknown) => any) | undefined;
6549
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
6550
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
6551
6551
  }, {
6552
6552
  loading: boolean;
6553
6553
  collectErrorMessages: boolean;
@@ -6759,15 +6759,15 @@ declare const VForm: vue.DefineComponent<{
6759
6759
  };
6760
6760
  detach: BooleanConstructor;
6761
6761
  }>> & {
6762
- onFocus?: ((ev: FocusEvent) => any) | undefined;
6763
- onBlur?: ((ev: FocusEvent) => any) | undefined;
6764
- onChange?: ((value: unknown) => any) | undefined;
6765
6762
  onSubmit?: ((form: VueForm, ev: Event) => any) | undefined;
6766
6763
  "onUpdate:sending"?: ((sending: boolean, form: VueForm) => any) | undefined;
6767
6764
  onFinishAction?: ((actionContext: _fastkit_vue_form_control.FormActionContext) => any) | undefined;
6768
6765
  onAutoValidationFailed?: ((form: VueForm) => any) | undefined;
6769
6766
  "onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
6770
6767
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
6768
+ onChange?: ((value: unknown) => any) | undefined;
6769
+ onFocus?: ((ev: FocusEvent) => any) | undefined;
6770
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
6771
6771
  }, {
6772
6772
  loading: boolean;
6773
6773
  novalidate: boolean;
@@ -6865,8 +6865,8 @@ declare const VTabs: vue.DefineComponent<{
6865
6865
  color: PropType<ScopeName>;
6866
6866
  onBeforeChange: PropType<VTabsGuard>;
6867
6867
  }>> & {
6868
- onChange?: ((newValue: string) => any) | undefined;
6869
6868
  "onUpdate:modelValue"?: ((newValue: string) => any) | undefined;
6869
+ onChange?: ((newValue: string) => any) | undefined;
6870
6870
  }, {
6871
6871
  autoScrollOffset: number;
6872
6872
  withQuery: boolean;
@@ -7233,7 +7233,7 @@ declare const VToolbarMenu: vue.DefineComponent<{
7233
7233
  media: vue.PropType<string>;
7234
7234
  ping: vue.PropType<string>;
7235
7235
  referrerpolicy: vue.PropType<string>;
7236
- type: vue.PropType<"button" | "submit" | "reset">;
7236
+ type: vue.PropType<"submit" | "button" | "reset">;
7237
7237
  title: vue.PropType<string>;
7238
7238
  disabled: vue.PropType<boolean>;
7239
7239
  guard: vue.PropType<_fastkit_vue_action__.ActionableGuard>;
@@ -7243,8 +7243,8 @@ declare const VToolbarMenu: vue.DefineComponent<{
7243
7243
  activeClass: vue.PropType<string>;
7244
7244
  exactActiveClass: vue.PropType<string>;
7245
7245
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
7246
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7247
7246
  onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7247
+ onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7248
7248
  onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7249
7249
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7250
7250
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -7267,10 +7267,10 @@ declare const VToolbarMenu: vue.DefineComponent<{
7267
7267
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7268
7268
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7269
7269
  onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7270
- onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7271
- onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7272
7270
  onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7273
7271
  tabindex: vue.PropType<(string | number) | undefined>;
7272
+ onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7273
+ onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7274
7274
  variant: vue.PropType<ColorVariant>;
7275
7275
  theme: vue.PropType<ThemeName>;
7276
7276
  color: vue.PropType<ScopeName>;
@@ -7308,7 +7308,7 @@ declare const VToolbarMenu: vue.DefineComponent<{
7308
7308
  media: vue.PropType<string>;
7309
7309
  ping: vue.PropType<string>;
7310
7310
  referrerpolicy: vue.PropType<string>;
7311
- type: vue.PropType<"button" | "submit" | "reset">;
7311
+ type: vue.PropType<"submit" | "button" | "reset">;
7312
7312
  title: vue.PropType<string>;
7313
7313
  disabled: vue.PropType<boolean>;
7314
7314
  guard: vue.PropType<_fastkit_vue_action__.ActionableGuard>;
@@ -7318,8 +7318,8 @@ declare const VToolbarMenu: vue.DefineComponent<{
7318
7318
  activeClass: vue.PropType<string>;
7319
7319
  exactActiveClass: vue.PropType<string>;
7320
7320
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
7321
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7322
7321
  onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7322
+ onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7323
7323
  onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7324
7324
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7325
7325
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -7342,10 +7342,10 @@ declare const VToolbarMenu: vue.DefineComponent<{
7342
7342
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7343
7343
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7344
7344
  onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7345
- onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7346
- onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7347
7345
  onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7348
7346
  tabindex: vue.PropType<(string | number) | undefined>;
7347
+ onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7348
+ onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7349
7349
  variant: vue.PropType<ColorVariant>;
7350
7350
  theme: vue.PropType<ThemeName>;
7351
7351
  color: vue.PropType<ScopeName>;