@fastkit/vui 1.0.0-next.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/vui.d.ts CHANGED
@@ -35,14 +35,15 @@ import { TypedSlot, VNodeChildOrSlot, ExtractPropInput, DefineSlotsType } from '
35
35
  export * from '@fastkit/vue-utils';
36
36
  export * from '@fastkit/vue-loading';
37
37
  import * as vue from 'vue';
38
- import { PropType, ExtractPropTypes, ComputedRef, VNodeChild, VNodeProps, InjectionKey, App, UnwrapNestedRefs, ImgHTMLAttributes, HTMLAttributes } from 'vue';
38
+ import { PropType, ExtractPropTypes, ComputedRef, VNodeChild, VNodeProps, InjectionKey, App, UnwrapNestedRefs, ExtractPublicPropTypes, ImgHTMLAttributes, HTMLAttributes } from 'vue';
39
39
  import * as vue_jsx_runtime from 'vue/jsx-runtime';
40
+ import * as _fastkit_vue_disabled_reason from '@fastkit/vue-disabled-reason';
41
+ import { DISABLED_REASON_BASE_PROPS } from '@fastkit/vue-disabled-reason';
42
+ import * as _fastkit_vue_resize from '@fastkit/vue-resize';
40
43
  import * as _fastkit_color_scheme from '@fastkit/color-scheme';
41
44
  import { ScopeName, ColorVariant , ThemeName, PaletteName } from '@fastkit/color-scheme';
42
45
  import * as vue_router from 'vue-router';
43
46
  import { Router, UseLinkOptions, useLink, RouteLocationRaw } from 'vue-router';
44
- import * as _fastkit_vue_resize from '@fastkit/vue-resize';
45
- import * as _fastkit_vue_disabled_reason from '@fastkit/vue-disabled-reason';
46
47
 
47
48
  declare const CONTROL_SIZES: readonly ["sm", "md", "lg"];
48
49
  type ControlSize = (typeof CONTROL_SIZES)[number];
@@ -102,7 +103,7 @@ interface DefineFormSelectorComponentOptions {
102
103
  };
103
104
  }) => VNodeChild;
104
105
  }
105
- declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOptions): vue.DefineComponent<{
106
+ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOptions): vue.DefineComponent<vue.ExtractPropTypes<{
106
107
  'v-slots': PropType<{
107
108
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => VNodeChild;
108
109
  label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => VNodeChild) | undefined;
@@ -177,7 +178,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
177
178
  default: undefined;
178
179
  };
179
180
  detach: BooleanConstructor;
180
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
181
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
181
182
  'update:modelValue': (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
182
183
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
183
184
  change: (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
@@ -258,13 +259,13 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
258
259
  default: undefined;
259
260
  };
260
261
  detach: BooleanConstructor;
261
- }>> & {
262
+ }>> & Readonly<{
263
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
264
+ onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
262
265
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
263
266
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
264
- onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
265
267
  onFocus?: ((ev: FocusEvent) => any) | undefined;
266
- onBlur?: ((ev: FocusEvent) => any) | undefined;
267
- }, {
268
+ }>, {
268
269
  loading: boolean;
269
270
  collectErrorMessages: boolean;
270
271
  tabindex: string | number;
@@ -302,7 +303,7 @@ declare function defineFormSelectorComponent(opts: DefineFormSelectorComponentOp
302
303
  }>[]) | undefined;
303
304
  } & {
304
305
  default?: () => any;
305
- }>>;
306
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
306
307
 
307
308
  declare function createElevationProps(): {
308
309
  elevation: PropType<VuiElevationValue>;
@@ -408,7 +409,7 @@ declare function createTextFieldProps(): {
408
409
  type TextFieldPropsOptions = ReturnType<typeof createTextFieldProps>;
409
410
  type TextFieldEmits = TextInputNodeEmits;
410
411
  type TextFieldInput = ExtractPropInput<ReturnType<typeof createTextFieldProps>>;
411
- declare const VTextField: vue.DefineComponent<{
412
+ declare const VTextField: vue.DefineComponent<vue.ExtractPropTypes<{
412
413
  'v-slots': vue.PropType<{
413
414
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
414
415
  label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
@@ -496,7 +497,7 @@ declare const VTextField: vue.DefineComponent<{
496
497
  default: undefined;
497
498
  };
498
499
  detach: BooleanConstructor;
499
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
500
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
500
501
  acceptMask: (ev: _fastkit_vue_form_control.IMaskEvent) => boolean;
501
502
  acceptDynamicMaskMeta: (meta?: any) => boolean;
502
503
  completeMask: (ev: _fastkit_vue_form_control.IMaskEvent) => boolean;
@@ -596,19 +597,19 @@ declare const VTextField: vue.DefineComponent<{
596
597
  default: undefined;
597
598
  };
598
599
  detach: BooleanConstructor;
599
- }>> & {
600
+ }>> & Readonly<{
601
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
602
+ onChange?: ((value: string) => any) | undefined;
600
603
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
601
604
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
602
- onChange?: ((value: string) => any) | undefined;
603
605
  onFocus?: ((ev: FocusEvent) => any) | undefined;
604
- onBlur?: ((ev: FocusEvent) => any) | undefined;
605
606
  onAcceptMask?: ((ev: _fastkit_vue_form_control.IMaskEvent) => any) | undefined;
606
607
  onAcceptDynamicMaskMeta?: ((meta?: any) => any) | undefined;
607
608
  onCompleteMask?: ((ev: _fastkit_vue_form_control.IMaskEvent) => any) | undefined;
608
609
  "onUpdate:masked"?: ((maskedValue: string) => any) | undefined;
609
610
  "onUpdate:typed"?: ((typedValue: _fastkit_vue_form_control.IMaskTypedValue | undefined) => any) | undefined;
610
611
  "onUpdate:unmasked"?: ((unmaskedValue: string) => any) | undefined;
611
- }, {
612
+ }>, {
612
613
  loading: boolean;
613
614
  collectErrorMessages: boolean;
614
615
  tabindex: string | number;
@@ -623,7 +624,7 @@ declare const VTextField: vue.DefineComponent<{
623
624
  error: boolean;
624
625
  showOwnErrors: boolean;
625
626
  detach: boolean;
626
- type: "number" | "search" | "time" | "text" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password";
627
+ type: "number" | "time" | "text" | "search" | "color" | "email" | "tel" | "url" | "date" | "datetime-local" | "month" | "password";
627
628
  hiddenInfo: boolean;
628
629
  maskModel: _fastkit_vue_form_control.TextInputMaskModel;
629
630
  limit: boolean;
@@ -654,7 +655,7 @@ declare const VTextField: vue.DefineComponent<{
654
655
  endAdornment?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
655
656
  [key: string]: any;
656
657
  }>[]) | undefined;
657
- }>>;
658
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
658
659
 
659
660
  type IconPropInout = ExtractPropInput<typeof iconProps>;
660
661
  type IconGenerator = (input: IconPropInout) => VNodeChild;
@@ -672,7 +673,7 @@ declare const iconProps: {
672
673
  type: NumberConstructor;
673
674
  };
674
675
  };
675
- declare const VIcon: vue.DefineComponent<{
676
+ declare const VIcon: vue.DefineComponent<vue.ExtractPropTypes<{
676
677
  name: {
677
678
  type: PropType<IconName | EmptyIconSymbol>;
678
679
  required: true;
@@ -680,7 +681,7 @@ declare const VIcon: vue.DefineComponent<{
680
681
  rotate: {
681
682
  type: NumberConstructor;
682
683
  };
683
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
684
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
684
685
  click: (ev: MouseEvent) => true;
685
686
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
686
687
  name: {
@@ -690,11 +691,11 @@ declare const VIcon: vue.DefineComponent<{
690
691
  rotate: {
691
692
  type: NumberConstructor;
692
693
  };
693
- }>> & {
694
+ }>> & Readonly<{
694
695
  onClick?: ((ev: MouseEvent) => any) | undefined;
695
- }, {}, {}>;
696
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
696
697
 
697
- declare const VDialog: vue.DefineComponent<{
698
+ declare const VDialog: vue.DefineComponent<vue.ExtractPropTypes<{
698
699
  'v-slots': vue.PropType<{
699
700
  default?: ((control: _fastkit_vue_stack.VStackControl) => vue.VNodeChild) | undefined;
700
701
  activator?: ((payload: _fastkit_vue_stack.VStackActivatorPayload) => vue.VNodeChild) | undefined;
@@ -797,8 +798,8 @@ declare const VDialog: vue.DefineComponent<{
797
798
  default: () => never[];
798
799
  };
799
800
  } & {
800
- "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
801
801
  onChange: vue.PropType<(modelValue: boolean) => any>;
802
+ "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
802
803
  onPayload: vue.PropType<(value: any) => any>;
803
804
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
804
805
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -808,9 +809,9 @@ declare const VDialog: vue.DefineComponent<{
808
809
  onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
809
810
  onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
810
811
  onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
811
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
812
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
812
813
  [key: string]: any;
813
- }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
814
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
814
815
  'update:modelValue': (modelValue: boolean) => boolean;
815
816
  change: (modelValue: boolean) => boolean;
816
817
  payload: (value: any) => boolean;
@@ -925,8 +926,8 @@ declare const VDialog: vue.DefineComponent<{
925
926
  default: () => never[];
926
927
  };
927
928
  } & {
928
- "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
929
929
  onChange: vue.PropType<(modelValue: boolean) => any>;
930
+ "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
930
931
  onPayload: vue.PropType<(value: any) => any>;
931
932
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
932
933
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -936,9 +937,9 @@ declare const VDialog: vue.DefineComponent<{
936
937
  onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
937
938
  onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
938
939
  onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
939
- }>> & {
940
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
940
+ }>> & Readonly<{
941
941
  onChange?: ((modelValue: boolean) => any) | undefined;
942
+ "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
942
943
  onPayload?: ((value: any) => any) | undefined;
943
944
  onShow?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
944
945
  onClose?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
@@ -948,7 +949,7 @@ declare const VDialog: vue.DefineComponent<{
948
949
  onBeforeLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
949
950
  onAfterLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
950
951
  onLeaveCancelled?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
951
- }, {
952
+ }>, {
952
953
  modelValue: boolean;
953
954
  disabled: boolean;
954
955
  lazyBoot: boolean;
@@ -975,9 +976,9 @@ declare const VDialog: vue.DefineComponent<{
975
976
  guardEffect: string | boolean;
976
977
  dense: boolean;
977
978
  actions: _fastkit_vue_stack.VStackAction[];
978
- }, _fastkit_vue_stack.MergeStackBaseSlots<vue.SlotsType<{}>>>;
979
+ }, _fastkit_vue_stack.MergeStackBaseSlots<vue.SlotsType<{}>>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
979
980
 
980
- declare const VSnackbar: vue.DefineComponent<{
981
+ declare const VSnackbar: vue.DefineComponent<vue.ExtractPropTypes<{
981
982
  top: BooleanConstructor;
982
983
  bottom: BooleanConstructor;
983
984
  left: BooleanConstructor;
@@ -1083,8 +1084,8 @@ declare const VSnackbar: vue.DefineComponent<{
1083
1084
  default: () => never[];
1084
1085
  };
1085
1086
  } & {
1086
- "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1087
1087
  onChange: vue.PropType<(modelValue: boolean) => any>;
1088
+ "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1088
1089
  onPayload: vue.PropType<(value: any) => any>;
1089
1090
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
1090
1091
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -1094,9 +1095,9 @@ declare const VSnackbar: vue.DefineComponent<{
1094
1095
  onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1095
1096
  onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1096
1097
  onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1097
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
1098
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
1098
1099
  [key: string]: any;
1099
- }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1100
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1100
1101
  'update:modelValue': (modelValue: boolean) => boolean;
1101
1102
  change: (modelValue: boolean) => boolean;
1102
1103
  payload: (value: any) => boolean;
@@ -1214,8 +1215,8 @@ declare const VSnackbar: vue.DefineComponent<{
1214
1215
  default: () => never[];
1215
1216
  };
1216
1217
  } & {
1217
- "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1218
1218
  onChange: vue.PropType<(modelValue: boolean) => any>;
1219
+ "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1219
1220
  onPayload: vue.PropType<(value: any) => any>;
1220
1221
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
1221
1222
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -1225,9 +1226,9 @@ declare const VSnackbar: vue.DefineComponent<{
1225
1226
  onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1226
1227
  onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1227
1228
  onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1228
- }>> & {
1229
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
1229
+ }>> & Readonly<{
1230
1230
  onChange?: ((modelValue: boolean) => any) | undefined;
1231
+ "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
1231
1232
  onPayload?: ((value: any) => any) | undefined;
1232
1233
  onShow?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
1233
1234
  onClose?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
@@ -1237,7 +1238,7 @@ declare const VSnackbar: vue.DefineComponent<{
1237
1238
  onBeforeLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
1238
1239
  onAfterLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
1239
1240
  onLeaveCancelled?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
1240
- }, {
1241
+ }>, {
1241
1242
  modelValue: boolean;
1242
1243
  disabled: boolean;
1243
1244
  lazyBoot: boolean;
@@ -1267,9 +1268,9 @@ declare const VSnackbar: vue.DefineComponent<{
1267
1268
  top: boolean;
1268
1269
  bottom: boolean;
1269
1270
  actions: _fastkit_vue_stack.VStackAction[];
1270
- }, _fastkit_vue_stack.MergeStackBaseSlots<vue.SlotsType<{}>>>;
1271
+ }, _fastkit_vue_stack.MergeStackBaseSlots<vue.SlotsType<{}>>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
1271
1272
 
1272
- declare const VMenu: vue.DefineComponent<{
1273
+ declare const VMenu: vue.DefineComponent<vue.ExtractPropTypes<{
1273
1274
  x: vue.PropType<_fastkit_vue_stack.VMenuXPosition>;
1274
1275
  y: vue.PropType<_fastkit_vue_stack.VMenuYPosition>;
1275
1276
  allowOverflow: {
@@ -1419,8 +1420,8 @@ declare const VMenu: vue.DefineComponent<{
1419
1420
  textColor: vue.PropType<PaletteName>;
1420
1421
  borderColor: vue.PropType<PaletteName>;
1421
1422
  } & {
1422
- "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1423
1423
  onChange: vue.PropType<(modelValue: boolean) => any>;
1424
+ "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1424
1425
  onPayload: vue.PropType<(value: any) => any>;
1425
1426
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
1426
1427
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -1430,9 +1431,9 @@ declare const VMenu: vue.DefineComponent<{
1430
1431
  onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1431
1432
  onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1432
1433
  onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1433
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
1434
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
1434
1435
  [key: string]: any;
1435
- }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1436
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1436
1437
  'update:modelValue': (modelValue: boolean) => boolean;
1437
1438
  change: (modelValue: boolean) => boolean;
1438
1439
  payload: (value: any) => boolean;
@@ -1594,8 +1595,8 @@ declare const VMenu: vue.DefineComponent<{
1594
1595
  textColor: vue.PropType<PaletteName>;
1595
1596
  borderColor: vue.PropType<PaletteName>;
1596
1597
  } & {
1597
- "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1598
1598
  onChange: vue.PropType<(modelValue: boolean) => any>;
1599
+ "onUpdate:modelValue": vue.PropType<(modelValue: boolean) => any>;
1599
1600
  onPayload: vue.PropType<(value: any) => any>;
1600
1601
  onShow: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
1601
1602
  onClose: vue.PropType<(control: _fastkit_vue_stack.VStackControl) => any>;
@@ -1605,9 +1606,9 @@ declare const VMenu: vue.DefineComponent<{
1605
1606
  onBeforeLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1606
1607
  onAfterLeave: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1607
1608
  onLeaveCancelled: vue.PropType<(el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any>;
1608
- }>> & {
1609
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
1609
+ }>> & Readonly<{
1610
1610
  onChange?: ((modelValue: boolean) => any) | undefined;
1611
+ "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
1611
1612
  onPayload?: ((value: any) => any) | undefined;
1612
1613
  onShow?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
1613
1614
  onClose?: ((control: _fastkit_vue_stack.VStackControl) => any) | undefined;
@@ -1617,7 +1618,7 @@ declare const VMenu: vue.DefineComponent<{
1617
1618
  onBeforeLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
1618
1619
  onAfterLeave?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
1619
1620
  onLeaveCancelled?: ((el: HTMLElement, control: _fastkit_vue_stack.VStackControl) => any) | undefined;
1620
- }, {
1621
+ }>, {
1621
1622
  modelValue: boolean;
1622
1623
  disabled: boolean;
1623
1624
  lazyBoot: boolean;
@@ -1654,7 +1655,7 @@ declare const VMenu: vue.DefineComponent<{
1654
1655
  resizeWatchDebounce: number;
1655
1656
  hideOnScroll: string | number | boolean;
1656
1657
  hideOnInvisible: boolean;
1657
- }, _fastkit_vue_stack.MergeStackBaseSlots<vue.SlotsType<{}>>>;
1658
+ }, _fastkit_vue_stack.MergeStackBaseSlots<vue.SlotsType<{}>>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
1658
1659
 
1659
1660
  interface VSheetModalSlots extends VStackSlots {
1660
1661
  header?: (control: VStackControl) => VNodeChild;
@@ -1749,7 +1750,7 @@ declare const sheetModalProps: {
1749
1750
  cancelHandler: PropType<_fastkit_vue_stack.StackableResolveHandler>;
1750
1751
  activatorAttrs: PropType<_fastkit_vue_stack.VStackActivatorAttrsSpec>;
1751
1752
  };
1752
- declare const VSheetModal: vue.DefineComponent<{
1753
+ declare const VSheetModal: vue.DefineComponent<vue.ExtractPropTypes<{
1753
1754
  header: PropType<(control: VStackControl) => VNodeChild>;
1754
1755
  'v-slots': PropType<VSheetModalSlots>;
1755
1756
  modelValue: BooleanConstructor;
@@ -1838,10 +1839,10 @@ declare const VSheetModal: vue.DefineComponent<{
1838
1839
  resolveHandler: PropType<_fastkit_vue_stack.StackableResolveHandler>;
1839
1840
  cancelHandler: PropType<_fastkit_vue_stack.StackableResolveHandler>;
1840
1841
  activatorAttrs: PropType<_fastkit_vue_stack.VStackActivatorAttrsSpec>;
1841
- }, {
1842
+ }>, {
1842
1843
  stackControl: VStackControl;
1843
1844
  hasActiveChild: vue.ComputedRef<boolean>;
1844
- }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1845
+ }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1845
1846
  'update:modelValue': (modelValue: boolean) => boolean;
1846
1847
  change: (modelValue: boolean) => boolean;
1847
1848
  payload: (value: any) => boolean;
@@ -1942,9 +1943,9 @@ declare const VSheetModal: vue.DefineComponent<{
1942
1943
  resolveHandler: PropType<_fastkit_vue_stack.StackableResolveHandler>;
1943
1944
  cancelHandler: PropType<_fastkit_vue_stack.StackableResolveHandler>;
1944
1945
  activatorAttrs: PropType<_fastkit_vue_stack.VStackActivatorAttrsSpec>;
1945
- }>> & {
1946
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
1946
+ }>> & Readonly<{
1947
1947
  onChange?: ((modelValue: boolean) => any) | undefined;
1948
+ "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
1948
1949
  onPayload?: ((value: any) => any) | undefined;
1949
1950
  onShow?: ((control: VStackControl) => any) | undefined;
1950
1951
  onClose?: ((control: VStackControl) => any) | undefined;
@@ -1954,7 +1955,7 @@ declare const VSheetModal: vue.DefineComponent<{
1954
1955
  onBeforeLeave?: ((el: HTMLElement, control: VStackControl) => any) | undefined;
1955
1956
  onAfterLeave?: ((el: HTMLElement, control: VStackControl) => any) | undefined;
1956
1957
  onLeaveCancelled?: ((el: HTMLElement, control: VStackControl) => any) | undefined;
1957
- }, {
1958
+ }>, {
1958
1959
  modelValue: boolean;
1959
1960
  disabled: boolean;
1960
1961
  lazyBoot: boolean;
@@ -1979,7 +1980,7 @@ declare const VSheetModal: vue.DefineComponent<{
1979
1980
  timeout: string | number;
1980
1981
  navigationGuard: boolean | _fastkit_vue_stack.VStackNavigationGuard;
1981
1982
  guardEffect: string | boolean;
1982
- }, {}>;
1983
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
1983
1984
 
1984
1985
  declare const VuiInjectionKey: InjectionKey<VuiService>;
1985
1986
  declare const VuiControlInjectionKey: InjectionKey<ControlProvider>;
@@ -2138,19 +2139,19 @@ interface VuiColorProvider {
2138
2139
 
2139
2140
  declare const VTooltip: typeof VMenu;
2140
2141
 
2141
- declare const VSkeltonLoaderBone: vue.DefineComponent<{
2142
+ declare const VSkeltonLoaderBone: vue.DefineComponent<vue.ExtractPropTypes<{
2142
2143
  tag: {
2143
2144
  type: StringConstructor;
2144
2145
  default: string;
2145
2146
  };
2146
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2147
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2147
2148
  tag: {
2148
2149
  type: StringConstructor;
2149
2150
  default: string;
2150
2151
  };
2151
- }>>, {
2152
+ }>> & Readonly<{}>, {
2152
2153
  tag: string;
2153
- }, {}>;
2154
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
2154
2155
 
2155
2156
  /**
2156
2157
  * Display type
@@ -2158,7 +2159,74 @@ declare const VSkeltonLoaderBone: vue.DefineComponent<{
2158
2159
  * Currently, only tooltip is supported
2159
2160
  */
2160
2161
  type DisabledReasonType = 'tooltip';
2161
- declare const VDisabledReason: vue.DefineComponent<{
2162
+ declare const DISABLED_REASON_PROPS: {
2163
+ /**
2164
+ * Display type
2165
+ *
2166
+ * Currently, only tooltip is supported
2167
+ *
2168
+ * @see {@link DisabledReasonType}
2169
+ */
2170
+ type: {
2171
+ type: PropType<DisabledReasonType>;
2172
+ default: string;
2173
+ };
2174
+ x: PropType<_fastkit_vue_stack.VMenuXPosition>;
2175
+ y: PropType<_fastkit_vue_stack.VMenuYPosition>;
2176
+ allowOverflow: {
2177
+ type: BooleanConstructor;
2178
+ default: boolean;
2179
+ };
2180
+ width: {
2181
+ type: PropType<number | "fit" | "free">;
2182
+ default: undefined;
2183
+ };
2184
+ height: {
2185
+ type: PropType<number | "fit" | "free">;
2186
+ default: undefined;
2187
+ };
2188
+ minWidth: {
2189
+ type: PropType<number | "fit" | "free">;
2190
+ default: undefined;
2191
+ };
2192
+ minHeight: {
2193
+ type: PropType<number | "fit" | "free">;
2194
+ default: undefined;
2195
+ };
2196
+ maxWidth: PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize.UseWindowRef) => number | undefined)>;
2197
+ maxHeight: PropType<(number | "fit" | "free") | ((window: _fastkit_vue_resize.UseWindowRef) => number | undefined)>;
2198
+ distance: {
2199
+ type: NumberConstructor;
2200
+ default: number;
2201
+ };
2202
+ edgeMargin: {
2203
+ type: NumberConstructor;
2204
+ default: number;
2205
+ };
2206
+ forceEdgeMargin: {
2207
+ type: BooleanConstructor;
2208
+ default: boolean;
2209
+ };
2210
+ overlap: {
2211
+ type: PropType<_fastkit_vue_stack.MenuOverlapSettings | boolean>;
2212
+ default: boolean | _fastkit_vue_stack.MenuOverlapSettings;
2213
+ };
2214
+ resizeWatchDebounce: {
2215
+ type: NumberConstructor;
2216
+ default: number;
2217
+ };
2218
+ hideOnScroll: {
2219
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
2220
+ default: string | number | boolean;
2221
+ };
2222
+ hideOnInvisible: {
2223
+ type: BooleanConstructor;
2224
+ default: boolean;
2225
+ };
2226
+ };
2227
+ interface DisabledReasonInput extends ExtractPublicPropTypes<typeof DISABLED_REASON_PROPS & typeof DISABLED_REASON_BASE_PROPS> {
2228
+ }
2229
+ declare const VDisabledReason: vue.DefineComponent<vue.ExtractPropTypes<{
2162
2230
  /**
2163
2231
  * Display type
2164
2232
  *
@@ -2224,13 +2292,13 @@ declare const VDisabledReason: vue.DefineComponent<{
2224
2292
  };
2225
2293
  } & {
2226
2294
  'v-slots': PropType<{
2227
- default?: ((api: _fastkit_vue_disabled_reason.DisabledReasonAPI<{}>) => vue.VNodeChild) | undefined;
2228
- reason?: ((api: _fastkit_vue_disabled_reason.DisabledReasonAPI<{}>) => vue.VNodeChild) | undefined;
2295
+ default?: ((api: _fastkit_vue_disabled_reason.DisabledReasonAPI<{}>) => VNodeChild) | undefined;
2296
+ reason?: ((api: _fastkit_vue_disabled_reason.DisabledReasonAPI<{}>) => VNodeChild) | undefined;
2229
2297
  }>;
2230
2298
  reason: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
2231
- }, () => (string | number | boolean | void | vue.VNodeArrayChildren | vue.VNode<vue.RendererNode, vue.RendererElement, {
2299
+ }>, () => (string | number | boolean | void | vue.VNodeArrayChildren | vue.VNode<vue.RendererNode, vue.RendererElement, {
2232
2300
  [key: string]: any;
2233
- }> | null)[], unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2301
+ }> | null)[], {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2234
2302
  /**
2235
2303
  * Display type
2236
2304
  *
@@ -2296,11 +2364,11 @@ declare const VDisabledReason: vue.DefineComponent<{
2296
2364
  };
2297
2365
  } & {
2298
2366
  'v-slots': PropType<{
2299
- default?: ((api: _fastkit_vue_disabled_reason.DisabledReasonAPI<{}>) => vue.VNodeChild) | undefined;
2300
- reason?: ((api: _fastkit_vue_disabled_reason.DisabledReasonAPI<{}>) => vue.VNodeChild) | undefined;
2367
+ default?: ((api: _fastkit_vue_disabled_reason.DisabledReasonAPI<{}>) => VNodeChild) | undefined;
2368
+ reason?: ((api: _fastkit_vue_disabled_reason.DisabledReasonAPI<{}>) => VNodeChild) | undefined;
2301
2369
  }>;
2302
2370
  reason: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
2303
- }>>, {
2371
+ }>> & Readonly<{}>, {
2304
2372
  type: "tooltip";
2305
2373
  allowOverflow: boolean;
2306
2374
  width: number | "fit" | "free";
@@ -2317,7 +2385,18 @@ declare const VDisabledReason: vue.DefineComponent<{
2317
2385
  }, _fastkit_vue_utils.DefinedSlots<{
2318
2386
  default?: (api: _fastkit_vue_disabled_reason.DisabledReasonAPI) => any;
2319
2387
  reason?: (api: _fastkit_vue_disabled_reason.DisabledReasonAPI) => any;
2320
- }>>;
2388
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
2389
+ declare module '@fastkit/vue-action' {
2390
+ interface ActionableCustomProps {
2391
+ /**
2392
+ * Reason why this element is disabled.
2393
+ *
2394
+ * If set, hovering over the disabled element will display the reason
2395
+ * using `VDisabledReason`.
2396
+ */
2397
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
2398
+ }
2399
+ }
2321
2400
 
2322
2401
  declare type ImgHTMLAttributesPropOptions = {
2323
2402
  [K in keyof ImgHTMLAttributes]-?: PropType<ImgHTMLAttributes[K]>;
@@ -2340,7 +2419,7 @@ interface BusyImageRects {
2340
2419
  * 画像表示用コンポーネント
2341
2420
  * <img /> タグのように振る舞うが、ローディング表示や、表示サイズの調整など、ちょっといい感じにやるためのコンポーネント
2342
2421
  */
2343
- declare const VBusyImage: vue.DefineComponent<{
2422
+ declare const VBusyImage: vue.DefineComponent<vue.ExtractPropTypes<{
2344
2423
  'v-slots': PropType<{
2345
2424
  default?: (() => vue.VNodeChild) | undefined;
2346
2425
  }>;
@@ -2396,7 +2475,7 @@ declare const VBusyImage: vue.DefineComponent<{
2396
2475
  results: PropType<(string | number) | undefined>;
2397
2476
  security: PropType<string | undefined>;
2398
2477
  unselectable: PropType<"off" | "on" | undefined>;
2399
- inputmode: PropType<"search" | "text" | "none" | "decimal" | "email" | "numeric" | "tel" | "url" | undefined>;
2478
+ inputmode: PropType<"text" | "search" | "none" | "decimal" | "email" | "numeric" | "tel" | "url" | undefined>;
2400
2479
  is: PropType<string | undefined>;
2401
2480
  'aria-activedescendant': PropType<string | undefined>;
2402
2481
  'aria-atomic': PropType<(boolean | "true" | "false") | undefined>;
@@ -2465,19 +2544,19 @@ declare const VBusyImage: vue.DefineComponent<{
2465
2544
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
2466
2545
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
2467
2546
  onChange: PropType<((payload: Event) => void) | undefined>;
2468
- onBeforeinput: PropType<((payload: Event) => void) | undefined>;
2547
+ onBeforeinput: PropType<((payload: InputEvent) => void) | undefined>;
2469
2548
  onInput: PropType<((payload: Event) => void) | undefined>;
2470
2549
  onReset: PropType<((payload: Event) => void) | undefined>;
2471
- onSubmit: PropType<((payload: Event) => void) | undefined>;
2550
+ onSubmit: PropType<((payload: SubmitEvent) => void) | undefined>;
2472
2551
  onInvalid: PropType<((payload: Event) => void) | undefined>;
2473
2552
  onLoad: PropType<((payload: Event) => void) | undefined>;
2474
2553
  onError: PropType<((payload: Event) => void) | undefined>;
2475
2554
  onKeydown: PropType<((payload: KeyboardEvent) => void) | undefined>;
2476
2555
  onKeypress: PropType<((payload: KeyboardEvent) => void) | undefined>;
2477
2556
  onKeyup: PropType<((payload: KeyboardEvent) => void) | undefined>;
2478
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
2479
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
2480
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
2557
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
2558
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
2559
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
2481
2560
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
2482
2561
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
2483
2562
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -2486,12 +2565,12 @@ declare const VBusyImage: vue.DefineComponent<{
2486
2565
  onMouseout: PropType<((payload: MouseEvent) => void) | undefined>;
2487
2566
  onMouseover: PropType<((payload: MouseEvent) => void) | undefined>;
2488
2567
  onMouseup: PropType<((payload: MouseEvent) => void) | undefined>;
2489
- onAbort: PropType<((payload: Event) => void) | undefined>;
2568
+ onAbort: PropType<((payload: UIEvent) => void) | undefined>;
2490
2569
  onCanplay: PropType<((payload: Event) => void) | undefined>;
2491
2570
  onCanplaythrough: PropType<((payload: Event) => void) | undefined>;
2492
2571
  onDurationchange: PropType<((payload: Event) => void) | undefined>;
2493
2572
  onEmptied: PropType<((payload: Event) => void) | undefined>;
2494
- onEncrypted: PropType<((payload: Event) => void) | undefined>;
2573
+ onEncrypted: PropType<((payload: MediaEncryptedEvent) => void) | undefined>;
2495
2574
  onEnded: PropType<((payload: Event) => void) | undefined>;
2496
2575
  onLoadeddata: PropType<((payload: Event) => void) | undefined>;
2497
2576
  onLoadedmetadata: PropType<((payload: Event) => void) | undefined>;
@@ -2499,7 +2578,7 @@ declare const VBusyImage: vue.DefineComponent<{
2499
2578
  onPause: PropType<((payload: Event) => void) | undefined>;
2500
2579
  onPlay: PropType<((payload: Event) => void) | undefined>;
2501
2580
  onPlaying: PropType<((payload: Event) => void) | undefined>;
2502
- onProgress: PropType<((payload: Event) => void) | undefined>;
2581
+ onProgress: PropType<((payload: ProgressEvent<EventTarget>) => void) | undefined>;
2503
2582
  onRatechange: PropType<((payload: Event) => void) | undefined>;
2504
2583
  onSeeked: PropType<((payload: Event) => void) | undefined>;
2505
2584
  onSeeking: PropType<((payload: Event) => void) | undefined>;
@@ -2532,7 +2611,7 @@ declare const VBusyImage: vue.DefineComponent<{
2532
2611
  'v-body-scroll-lock': PropType<_fastkit_vue_body_scroll_lock.BodyScrollLockDirectiveBindingValue>;
2533
2612
  'v-click-outside': PropType<_fastkit_vue_click_outside.ClickOutsideDirectiveBindingValue | undefined>;
2534
2613
  'v-resize': PropType<_fastkit_vue_resize.RawResizeDirectiveBindingValue | undefined>;
2535
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2614
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2536
2615
  load: (ev: Event) => true;
2537
2616
  error: (ev: Event) => true;
2538
2617
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
@@ -2591,7 +2670,7 @@ declare const VBusyImage: vue.DefineComponent<{
2591
2670
  results: PropType<(string | number) | undefined>;
2592
2671
  security: PropType<string | undefined>;
2593
2672
  unselectable: PropType<"off" | "on" | undefined>;
2594
- inputmode: PropType<"search" | "text" | "none" | "decimal" | "email" | "numeric" | "tel" | "url" | undefined>;
2673
+ inputmode: PropType<"text" | "search" | "none" | "decimal" | "email" | "numeric" | "tel" | "url" | undefined>;
2595
2674
  is: PropType<string | undefined>;
2596
2675
  'aria-activedescendant': PropType<string | undefined>;
2597
2676
  'aria-atomic': PropType<(boolean | "true" | "false") | undefined>;
@@ -2660,19 +2739,19 @@ declare const VBusyImage: vue.DefineComponent<{
2660
2739
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
2661
2740
  onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
2662
2741
  onChange: PropType<((payload: Event) => void) | undefined>;
2663
- onBeforeinput: PropType<((payload: Event) => void) | undefined>;
2742
+ onBeforeinput: PropType<((payload: InputEvent) => void) | undefined>;
2664
2743
  onInput: PropType<((payload: Event) => void) | undefined>;
2665
2744
  onReset: PropType<((payload: Event) => void) | undefined>;
2666
- onSubmit: PropType<((payload: Event) => void) | undefined>;
2745
+ onSubmit: PropType<((payload: SubmitEvent) => void) | undefined>;
2667
2746
  onInvalid: PropType<((payload: Event) => void) | undefined>;
2668
2747
  onLoad: PropType<((payload: Event) => void) | undefined>;
2669
2748
  onError: PropType<((payload: Event) => void) | undefined>;
2670
2749
  onKeydown: PropType<((payload: KeyboardEvent) => void) | undefined>;
2671
2750
  onKeypress: PropType<((payload: KeyboardEvent) => void) | undefined>;
2672
2751
  onKeyup: PropType<((payload: KeyboardEvent) => void) | undefined>;
2673
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
2674
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
2675
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
2752
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
2753
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
2754
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
2676
2755
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
2677
2756
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
2678
2757
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -2681,12 +2760,12 @@ declare const VBusyImage: vue.DefineComponent<{
2681
2760
  onMouseout: PropType<((payload: MouseEvent) => void) | undefined>;
2682
2761
  onMouseover: PropType<((payload: MouseEvent) => void) | undefined>;
2683
2762
  onMouseup: PropType<((payload: MouseEvent) => void) | undefined>;
2684
- onAbort: PropType<((payload: Event) => void) | undefined>;
2763
+ onAbort: PropType<((payload: UIEvent) => void) | undefined>;
2685
2764
  onCanplay: PropType<((payload: Event) => void) | undefined>;
2686
2765
  onCanplaythrough: PropType<((payload: Event) => void) | undefined>;
2687
2766
  onDurationchange: PropType<((payload: Event) => void) | undefined>;
2688
2767
  onEmptied: PropType<((payload: Event) => void) | undefined>;
2689
- onEncrypted: PropType<((payload: Event) => void) | undefined>;
2768
+ onEncrypted: PropType<((payload: MediaEncryptedEvent) => void) | undefined>;
2690
2769
  onEnded: PropType<((payload: Event) => void) | undefined>;
2691
2770
  onLoadeddata: PropType<((payload: Event) => void) | undefined>;
2692
2771
  onLoadedmetadata: PropType<((payload: Event) => void) | undefined>;
@@ -2694,7 +2773,7 @@ declare const VBusyImage: vue.DefineComponent<{
2694
2773
  onPause: PropType<((payload: Event) => void) | undefined>;
2695
2774
  onPlay: PropType<((payload: Event) => void) | undefined>;
2696
2775
  onPlaying: PropType<((payload: Event) => void) | undefined>;
2697
- onProgress: PropType<((payload: Event) => void) | undefined>;
2776
+ onProgress: PropType<((payload: ProgressEvent<EventTarget>) => void) | undefined>;
2698
2777
  onRatechange: PropType<((payload: Event) => void) | undefined>;
2699
2778
  onSeeked: PropType<((payload: Event) => void) | undefined>;
2700
2779
  onSeeking: PropType<((payload: Event) => void) | undefined>;
@@ -2727,14 +2806,14 @@ declare const VBusyImage: vue.DefineComponent<{
2727
2806
  'v-body-scroll-lock': PropType<_fastkit_vue_body_scroll_lock.BodyScrollLockDirectiveBindingValue>;
2728
2807
  'v-click-outside': PropType<_fastkit_vue_click_outside.ClickOutsideDirectiveBindingValue | undefined>;
2729
2808
  'v-resize': PropType<_fastkit_vue_resize.RawResizeDirectiveBindingValue | undefined>;
2730
- }>> & {
2731
- onLoad?: ((ev: Event) => any) | undefined;
2809
+ }>> & Readonly<{
2732
2810
  onError?: ((ev: Event) => any) | undefined;
2733
- }, {
2811
+ onLoad?: ((ev: Event) => any) | undefined;
2812
+ }>, {
2734
2813
  cover: boolean;
2735
2814
  }, _fastkit_vue_utils.DefinedSlots<{
2736
2815
  default?: () => any;
2737
- }>>;
2816
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
2738
2817
 
2739
2818
  type RawGridValue<T extends number | string = number | string> = T | Partial<Record<MediaMatchKey, T>> | undefined;
2740
2819
  type RawGridValueProp<T extends number | string = number | string> = PropType<RawGridValue<T>>;
@@ -2743,7 +2822,7 @@ type GridItemNumberSizeValue = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
2743
2822
  type GridItemSizeValue = GridItemNumberSizeValue | 'auto';
2744
2823
  type GridItemAlignValue = 'flex-start' | 'flex-end' | 'start' | 'end' | 'stretch' | 'baseline' | 'center' | 'self-start' | 'self-end';
2745
2824
  type GridItemJustifyValue = 'start' | 'end' | 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch';
2746
- declare const VGridItem: vue.DefineComponent<{
2825
+ declare const VGridItem: vue.DefineComponent<vue.ExtractPropTypes<{
2747
2826
  tag: {
2748
2827
  type: StringConstructor;
2749
2828
  default: string;
@@ -2752,7 +2831,7 @@ declare const VGridItem: vue.DefineComponent<{
2752
2831
  align: RawGridValueProp<GridItemAlignValue>;
2753
2832
  justify: RawGridValueProp<GridItemJustifyValue>;
2754
2833
  order: RawGridValueProp<number | string>;
2755
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2834
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2756
2835
  tag: {
2757
2836
  type: StringConstructor;
2758
2837
  default: string;
@@ -2761,16 +2840,16 @@ declare const VGridItem: vue.DefineComponent<{
2761
2840
  align: RawGridValueProp<GridItemAlignValue>;
2762
2841
  justify: RawGridValueProp<GridItemJustifyValue>;
2763
2842
  order: RawGridValueProp<number | string>;
2764
- }>>, {
2843
+ }>> & Readonly<{}>, {
2765
2844
  tag: string;
2766
- }, {}>;
2845
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
2767
2846
 
2768
2847
  type GridContainerSpacingValue = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 4.5 | 5 | 5.5 | 6 | 6.5 | 7 | 7.5 | 8 | 8.5 | 9 | 9.5 | 10;
2769
2848
  type GridContainerDirectionValue = 'row' | 'row-reverse' | 'column' | 'column-reverse';
2770
2849
  type GridContainerWrapValue = 'wrap' | 'nowrap' | 'wrap-reverse';
2771
2850
  type GridContainerAlignContentValue = 'flex-start' | 'flex-end' | 'start' | 'end' | 'stretch' | 'baseline' | 'center' | 'self-start' | 'self-end';
2772
2851
  type GridContainerJustifyContentValue = 'start' | 'end' | 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'space-between' | 'space-around' | 'space-evenly' | 'stretch';
2773
- declare const VGridContainer: vue.DefineComponent<{
2852
+ declare const VGridContainer: vue.DefineComponent<vue.ExtractPropTypes<{
2774
2853
  wrapperTag: {
2775
2854
  type: StringConstructor;
2776
2855
  default: string;
@@ -2786,7 +2865,7 @@ declare const VGridContainer: vue.DefineComponent<{
2786
2865
  wrap: RawGridValueProp<GridContainerWrapValue>;
2787
2866
  alignContent: RawGridValueProp<GridContainerAlignContentValue>;
2788
2867
  justifyContent: RawGridValueProp<GridContainerJustifyContentValue>;
2789
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2868
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2790
2869
  wrapperTag: {
2791
2870
  type: StringConstructor;
2792
2871
  default: string;
@@ -2802,10 +2881,10 @@ declare const VGridContainer: vue.DefineComponent<{
2802
2881
  wrap: RawGridValueProp<GridContainerWrapValue>;
2803
2882
  alignContent: RawGridValueProp<GridContainerAlignContentValue>;
2804
2883
  justifyContent: RawGridValueProp<GridContainerJustifyContentValue>;
2805
- }>>, {
2884
+ }>> & Readonly<{}>, {
2806
2885
  tag: string;
2807
2886
  wrapperTag: string;
2808
- }, {}>;
2887
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
2809
2888
 
2810
2889
  declare const paperBaseSlots: _fastkit_vue_utils.DefinedSlots<{
2811
2890
  header?: () => void;
@@ -2843,7 +2922,7 @@ declare function createPaperProps(): {
2843
2922
  };
2844
2923
  elevation: PropType<VuiElevationValue>;
2845
2924
  };
2846
- declare const VPaper: vue.DefineComponent<{
2925
+ declare const VPaper: vue.DefineComponent<vue.ExtractPropTypes<{
2847
2926
  square: BooleanConstructor;
2848
2927
  headerProps: PropType<ARGS>;
2849
2928
  bodyProps: PropType<ARGS>;
@@ -2860,7 +2939,7 @@ declare const VPaper: vue.DefineComponent<{
2860
2939
  default: string;
2861
2940
  };
2862
2941
  elevation: PropType<VuiElevationValue>;
2863
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2942
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
2864
2943
  square: BooleanConstructor;
2865
2944
  headerProps: PropType<ARGS>;
2866
2945
  bodyProps: PropType<ARGS>;
@@ -2877,14 +2956,14 @@ declare const VPaper: vue.DefineComponent<{
2877
2956
  default: string;
2878
2957
  };
2879
2958
  elevation: PropType<VuiElevationValue>;
2880
- }>>, {
2959
+ }>> & Readonly<{}>, {
2881
2960
  tag: any;
2882
2961
  square: boolean;
2883
2962
  }, _fastkit_vue_utils.DefinedSlots<{
2884
2963
  header?: () => void;
2885
2964
  default?: () => void;
2886
2965
  footer?: () => void;
2887
- }>>;
2966
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
2888
2967
 
2889
2968
  declare const AVATAR_SIZES: readonly ["sm", "md", "lg"];
2890
2969
  type AvatarSize = (typeof AVATAR_SIZES)[number];
@@ -2923,9 +3002,10 @@ declare function createAvatarProps(): {
2923
3002
  activeClass: PropType<string>;
2924
3003
  exactActiveClass: PropType<string>;
2925
3004
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
2926
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
2927
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
2928
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3005
+ viewTransition: PropType<boolean>;
3006
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
3007
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
3008
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
2929
3009
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
2930
3010
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
2931
3011
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -2946,18 +3026,19 @@ declare function createAvatarProps(): {
2946
3026
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
2947
3027
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
2948
3028
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
2949
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
2950
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
2951
3029
  tabindex: PropType<(string | number) | undefined>;
3030
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3031
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
2952
3032
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
2953
3033
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3034
+ disabledReason: PropType<string | (() => vue.VNodeChild) | DisabledReasonInput>;
2954
3035
  variant: PropType<_fastkit_color_scheme.ColorVariant>;
2955
3036
  theme: PropType<ThemeName>;
2956
3037
  color: PropType<ScopeName>;
2957
3038
  textColor: PropType<PaletteName>;
2958
3039
  borderColor: PropType<PaletteName>;
2959
3040
  };
2960
- declare const VAvatar: vue.DefineComponent<{
3041
+ declare const VAvatar: vue.DefineComponent<vue.ExtractPropTypes<{
2961
3042
  size: {
2962
3043
  type: PropType<AvatarSize | number>;
2963
3044
  default: string;
@@ -2992,9 +3073,10 @@ declare const VAvatar: vue.DefineComponent<{
2992
3073
  activeClass: PropType<string>;
2993
3074
  exactActiveClass: PropType<string>;
2994
3075
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
2995
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
2996
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
2997
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3076
+ viewTransition: PropType<boolean>;
3077
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
3078
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
3079
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
2998
3080
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
2999
3081
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
3000
3082
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3015,19 +3097,20 @@ declare const VAvatar: vue.DefineComponent<{
3015
3097
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
3016
3098
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3017
3099
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3018
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3019
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3020
3100
  tabindex: PropType<(string | number) | undefined>;
3101
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3102
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3021
3103
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3022
3104
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3105
+ disabledReason: PropType<string | (() => vue.VNodeChild) | DisabledReasonInput>;
3023
3106
  variant: PropType<_fastkit_color_scheme.ColorVariant>;
3024
3107
  theme: PropType<ThemeName>;
3025
3108
  color: PropType<ScopeName>;
3026
3109
  textColor: PropType<PaletteName>;
3027
3110
  borderColor: PropType<PaletteName>;
3028
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
3111
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
3029
3112
  [key: string]: any;
3030
- }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
3113
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
3031
3114
  size: {
3032
3115
  type: PropType<AvatarSize | number>;
3033
3116
  default: string;
@@ -3062,9 +3145,10 @@ declare const VAvatar: vue.DefineComponent<{
3062
3145
  activeClass: PropType<string>;
3063
3146
  exactActiveClass: PropType<string>;
3064
3147
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3065
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3066
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3067
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3148
+ viewTransition: PropType<boolean>;
3149
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
3150
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
3151
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
3068
3152
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3069
3153
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
3070
3154
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3085,22 +3169,23 @@ declare const VAvatar: vue.DefineComponent<{
3085
3169
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
3086
3170
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3087
3171
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3088
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3089
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3090
3172
  tabindex: PropType<(string | number) | undefined>;
3173
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3174
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3091
3175
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3092
3176
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3177
+ disabledReason: PropType<string | (() => vue.VNodeChild) | DisabledReasonInput>;
3093
3178
  variant: PropType<_fastkit_color_scheme.ColorVariant>;
3094
3179
  theme: PropType<ThemeName>;
3095
3180
  color: PropType<ScopeName>;
3096
3181
  textColor: PropType<PaletteName>;
3097
3182
  borderColor: PropType<PaletteName>;
3098
- }>>, {
3183
+ }>> & Readonly<{}>, {
3099
3184
  size: number | "sm" | "md" | "lg";
3100
3185
  disabled: boolean;
3101
3186
  rounded: boolean;
3102
3187
  tile: boolean;
3103
- }, {}>;
3188
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
3104
3189
 
3105
3190
  declare const CHIP_SIZES: readonly ["xs", "sm", "md", "lg", "xl"];
3106
3191
  type ChipSize = (typeof CHIP_SIZES)[number];
@@ -3141,9 +3226,10 @@ declare function createChipProps(): {
3141
3226
  activeClass: PropType<string>;
3142
3227
  exactActiveClass: PropType<string>;
3143
3228
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3144
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3145
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3146
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3229
+ viewTransition: PropType<boolean>;
3230
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
3231
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
3232
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
3147
3233
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3148
3234
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
3149
3235
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3164,18 +3250,19 @@ declare function createChipProps(): {
3164
3250
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
3165
3251
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3166
3252
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3167
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3168
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3169
3253
  tabindex: PropType<(string | number) | undefined>;
3254
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3255
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3170
3256
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3171
3257
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3258
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
3172
3259
  variant: PropType<_fastkit_color_scheme.ColorVariant>;
3173
3260
  theme: PropType<ThemeName>;
3174
3261
  color: PropType<ScopeName>;
3175
3262
  textColor: PropType<PaletteName>;
3176
3263
  borderColor: PropType<PaletteName>;
3177
3264
  };
3178
- declare const VChip: vue.DefineComponent<{
3265
+ declare const VChip: vue.DefineComponent<vue.ExtractPropTypes<{
3179
3266
  size: {
3180
3267
  type: PropType<ChipSize>;
3181
3268
  default: string;
@@ -3210,9 +3297,10 @@ declare const VChip: vue.DefineComponent<{
3210
3297
  activeClass: PropType<string>;
3211
3298
  exactActiveClass: PropType<string>;
3212
3299
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3213
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3214
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3215
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3300
+ viewTransition: PropType<boolean>;
3301
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
3302
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
3303
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
3216
3304
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3217
3305
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
3218
3306
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3233,19 +3321,20 @@ declare const VChip: vue.DefineComponent<{
3233
3321
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
3234
3322
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3235
3323
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3236
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3237
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3238
3324
  tabindex: PropType<(string | number) | undefined>;
3325
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3326
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3239
3327
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3240
3328
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3329
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
3241
3330
  variant: PropType<_fastkit_color_scheme.ColorVariant>;
3242
3331
  theme: PropType<ThemeName>;
3243
3332
  color: PropType<ScopeName>;
3244
3333
  textColor: PropType<PaletteName>;
3245
3334
  borderColor: PropType<PaletteName>;
3246
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
3335
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
3247
3336
  [key: string]: any;
3248
- }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
3337
+ }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
3249
3338
  size: {
3250
3339
  type: PropType<ChipSize>;
3251
3340
  default: string;
@@ -3280,9 +3369,10 @@ declare const VChip: vue.DefineComponent<{
3280
3369
  activeClass: PropType<string>;
3281
3370
  exactActiveClass: PropType<string>;
3282
3371
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3283
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3284
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3285
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3372
+ viewTransition: PropType<boolean>;
3373
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
3374
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
3375
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
3286
3376
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3287
3377
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
3288
3378
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3303,21 +3393,22 @@ declare const VChip: vue.DefineComponent<{
3303
3393
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
3304
3394
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3305
3395
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3306
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3307
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3308
3396
  tabindex: PropType<(string | number) | undefined>;
3397
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3398
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3309
3399
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3310
3400
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3401
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
3311
3402
  variant: PropType<_fastkit_color_scheme.ColorVariant>;
3312
3403
  theme: PropType<ThemeName>;
3313
3404
  color: PropType<ScopeName>;
3314
3405
  textColor: PropType<PaletteName>;
3315
3406
  borderColor: PropType<PaletteName>;
3316
- }>>, {
3407
+ }>> & Readonly<{}>, {
3317
3408
  size: "sm" | "md" | "lg" | "xs" | "xl";
3318
3409
  disabled: boolean;
3319
3410
  label: boolean;
3320
- }, {}>;
3411
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
3321
3412
 
3322
3413
  declare function createCardProps(): {
3323
3414
  disabled: BooleanConstructor;
@@ -3347,9 +3438,10 @@ declare function createCardProps(): {
3347
3438
  activeClass: vue.PropType<string>;
3348
3439
  exactActiveClass: vue.PropType<string>;
3349
3440
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3350
- onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3351
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3352
- onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3441
+ 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>;
3353
3445
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3354
3446
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3355
3447
  onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3370,11 +3462,12 @@ declare function createCardProps(): {
3370
3462
  onPointerleave: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3371
3463
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3372
3464
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3373
- onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3374
- onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3375
3465
  tabindex: vue.PropType<(string | number) | undefined>;
3466
+ onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3467
+ onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3376
3468
  onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3377
3469
  onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3470
+ disabledReason: vue.PropType<string | (() => vue.VNodeChild) | DisabledReasonInput>;
3378
3471
  square: BooleanConstructor;
3379
3472
  headerProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
3380
3473
  bodyProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
@@ -3388,7 +3481,7 @@ declare function createCardProps(): {
3388
3481
  color: vue.PropType<_fastkit_color_scheme.ScopeName>;
3389
3482
  elevation: vue.PropType<VuiElevationValue>;
3390
3483
  };
3391
- declare const VCard: vue.DefineComponent<{
3484
+ declare const VCard: vue.DefineComponent<vue.ExtractPropTypes<{
3392
3485
  disabled: BooleanConstructor;
3393
3486
  tag: vue.PropType<string>;
3394
3487
  class: vue.PropType<any>;
@@ -3416,9 +3509,10 @@ declare const VCard: vue.DefineComponent<{
3416
3509
  activeClass: vue.PropType<string>;
3417
3510
  exactActiveClass: vue.PropType<string>;
3418
3511
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3419
- onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3420
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3421
- onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3512
+ 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>;
3422
3516
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3423
3517
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3424
3518
  onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3439,11 +3533,12 @@ declare const VCard: vue.DefineComponent<{
3439
3533
  onPointerleave: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3440
3534
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3441
3535
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3442
- onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3443
- onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3444
3536
  tabindex: vue.PropType<(string | number) | undefined>;
3537
+ onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3538
+ onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3445
3539
  onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3446
3540
  onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3541
+ disabledReason: vue.PropType<string | (() => vue.VNodeChild) | DisabledReasonInput>;
3447
3542
  square: BooleanConstructor;
3448
3543
  headerProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
3449
3544
  bodyProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
@@ -3456,7 +3551,7 @@ declare const VCard: vue.DefineComponent<{
3456
3551
  }>;
3457
3552
  color: vue.PropType<_fastkit_color_scheme.ScopeName>;
3458
3553
  elevation: vue.PropType<VuiElevationValue>;
3459
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
3554
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
3460
3555
  disabled: BooleanConstructor;
3461
3556
  tag: vue.PropType<string>;
3462
3557
  class: vue.PropType<any>;
@@ -3484,9 +3579,10 @@ declare const VCard: vue.DefineComponent<{
3484
3579
  activeClass: vue.PropType<string>;
3485
3580
  exactActiveClass: vue.PropType<string>;
3486
3581
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3487
- onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3488
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3489
- onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3582
+ 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>;
3490
3586
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3491
3587
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
3492
3588
  onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3507,11 +3603,12 @@ declare const VCard: vue.DefineComponent<{
3507
3603
  onPointerleave: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3508
3604
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3509
3605
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
3510
- onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3511
- onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3512
3606
  tabindex: vue.PropType<(string | number) | undefined>;
3607
+ onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3608
+ onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3513
3609
  onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3514
3610
  onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
3611
+ disabledReason: vue.PropType<string | (() => vue.VNodeChild) | DisabledReasonInput>;
3515
3612
  square: BooleanConstructor;
3516
3613
  headerProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
3517
3614
  bodyProps: vue.PropType<Record<string, unknown> & vue.VNodeProps>;
@@ -3524,14 +3621,14 @@ declare const VCard: vue.DefineComponent<{
3524
3621
  }>;
3525
3622
  color: vue.PropType<_fastkit_color_scheme.ScopeName>;
3526
3623
  elevation: vue.PropType<VuiElevationValue>;
3527
- }>>, {
3624
+ }>> & Readonly<{}>, {
3528
3625
  disabled: boolean;
3529
3626
  square: boolean;
3530
- }, {}>;
3627
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
3531
3628
 
3532
- declare const VCardContent: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{}>>, {}, {}>;
3629
+ declare const VCardContent: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
3533
3630
 
3534
- declare const VCardActions: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{}>>, {}, {}>;
3631
+ declare const VCardActions: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
3535
3632
 
3536
3633
  type VButtonSpacer = 'left' | 'right';
3537
3634
  type RawVButtonSpacer = boolean | VButtonSpacer;
@@ -3581,9 +3678,10 @@ declare const vueButtonProps: {
3581
3678
  activeClass: PropType<string>;
3582
3679
  exactActiveClass: PropType<string>;
3583
3680
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3584
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3585
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3586
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3681
+ viewTransition: PropType<boolean>;
3682
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
3683
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
3684
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
3587
3685
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3588
3686
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
3589
3687
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3604,11 +3702,12 @@ declare const vueButtonProps: {
3604
3702
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
3605
3703
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3606
3704
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3607
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3608
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3609
3705
  tabindex: PropType<(string | number) | undefined>;
3706
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3707
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3610
3708
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3611
3709
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3710
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
3612
3711
  variant: PropType<_fastkit_color_scheme.ColorVariant>;
3613
3712
  theme: PropType<ThemeName>;
3614
3713
  color: PropType<ScopeName>;
@@ -3617,7 +3716,7 @@ declare const vueButtonProps: {
3617
3716
  };
3618
3717
  type VButtonProps = ExtractPropInput<typeof vueButtonProps>;
3619
3718
  type VButtonResolvedProps = ExtractPropTypes<typeof vueButtonProps>;
3620
- declare const VButton: vue.DefineComponent<{
3719
+ declare const VButton: vue.DefineComponent<ExtractPropTypes<{
3621
3720
  size: {
3622
3721
  type: PropType<ControlSize>;
3623
3722
  validator: (value: any) => boolean;
@@ -3659,9 +3758,10 @@ declare const VButton: vue.DefineComponent<{
3659
3758
  activeClass: PropType<string>;
3660
3759
  exactActiveClass: PropType<string>;
3661
3760
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3662
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3663
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3664
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3761
+ viewTransition: PropType<boolean>;
3762
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
3763
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
3764
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
3665
3765
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3666
3766
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
3667
3767
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3682,17 +3782,18 @@ declare const VButton: vue.DefineComponent<{
3682
3782
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
3683
3783
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3684
3784
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3685
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3686
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3687
3785
  tabindex: PropType<(string | number) | undefined>;
3786
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3787
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3688
3788
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3689
3789
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3790
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
3690
3791
  variant: PropType<_fastkit_color_scheme.ColorVariant>;
3691
3792
  theme: PropType<ThemeName>;
3692
3793
  color: PropType<ScopeName>;
3693
3794
  textColor: PropType<PaletteName>;
3694
3795
  borderColor: PropType<PaletteName>;
3695
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ExtractPropTypes<{
3796
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ExtractPropTypes<{
3696
3797
  size: {
3697
3798
  type: PropType<ControlSize>;
3698
3799
  validator: (value: any) => boolean;
@@ -3734,9 +3835,10 @@ declare const VButton: vue.DefineComponent<{
3734
3835
  activeClass: PropType<string>;
3735
3836
  exactActiveClass: PropType<string>;
3736
3837
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3737
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3738
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3739
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
3838
+ viewTransition: PropType<boolean>;
3839
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
3840
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
3841
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
3740
3842
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3741
3843
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
3742
3844
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3757,23 +3859,24 @@ declare const VButton: vue.DefineComponent<{
3757
3859
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
3758
3860
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3759
3861
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3760
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3761
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3762
3862
  tabindex: PropType<(string | number) | undefined>;
3863
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3864
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3763
3865
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3764
3866
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
3867
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
3765
3868
  variant: PropType<_fastkit_color_scheme.ColorVariant>;
3766
3869
  theme: PropType<ThemeName>;
3767
3870
  color: PropType<ScopeName>;
3768
3871
  textColor: PropType<PaletteName>;
3769
3872
  borderColor: PropType<PaletteName>;
3770
- }>>, {
3873
+ }>> & Readonly<{}>, {
3771
3874
  loading: boolean;
3772
3875
  rounded: boolean;
3773
3876
  align: "left" | "center" | "right";
3774
- }, {}>;
3877
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
3775
3878
 
3776
- declare const VButtonGroup: vue.DefineComponent<{
3879
+ declare const VButtonGroup: vue.DefineComponent<vue.ExtractPropTypes<{
3777
3880
  disabled: BooleanConstructor;
3778
3881
  size: {
3779
3882
  type: vue.PropType<ControlSize>;
@@ -3785,7 +3888,7 @@ declare const VButtonGroup: vue.DefineComponent<{
3785
3888
  color: vue.PropType<ScopeName>;
3786
3889
  textColor: vue.PropType<PaletteName>;
3787
3890
  borderColor: vue.PropType<PaletteName>;
3788
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
3891
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
3789
3892
  disabled: BooleanConstructor;
3790
3893
  size: {
3791
3894
  type: vue.PropType<ControlSize>;
@@ -3797,10 +3900,10 @@ declare const VButtonGroup: vue.DefineComponent<{
3797
3900
  color: vue.PropType<ScopeName>;
3798
3901
  textColor: vue.PropType<PaletteName>;
3799
3902
  borderColor: vue.PropType<PaletteName>;
3800
- }>>, {
3903
+ }>> & Readonly<{}>, {
3801
3904
  loading: boolean;
3802
3905
  disabled: boolean;
3803
- }, {}>;
3906
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
3804
3907
 
3805
3908
  type VPaginationGuard = (page: number) => boolean | void | Promise<boolean | void>;
3806
3909
  declare const PAGINATION_ALIGNS: readonly ["left", "center", "right"];
@@ -3840,7 +3943,7 @@ declare function paginationProps(): {
3840
3943
  beforeChange: PropType<VPaginationGuard>;
3841
3944
  color: PropType<ScopeName$1>;
3842
3945
  };
3843
- declare const VPagination: vue.DefineComponent<{
3946
+ declare const VPagination: vue.DefineComponent<vue.ExtractPropTypes<{
3844
3947
  /**
3845
3948
  * Active Pages
3846
3949
  */
@@ -3874,7 +3977,7 @@ declare const VPagination: vue.DefineComponent<{
3874
3977
  routeQuery: StringConstructor;
3875
3978
  beforeChange: PropType<VPaginationGuard>;
3876
3979
  color: PropType<ScopeName$1>;
3877
- }, () => vue_jsx_runtime.JSX.Element | undefined, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3980
+ }>, () => vue_jsx_runtime.JSX.Element | undefined, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3878
3981
  change: (page: number) => true;
3879
3982
  'update:modelValue': (page: number) => true;
3880
3983
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
@@ -3911,16 +4014,16 @@ declare const VPagination: vue.DefineComponent<{
3911
4014
  routeQuery: StringConstructor;
3912
4015
  beforeChange: PropType<VPaginationGuard>;
3913
4016
  color: PropType<ScopeName$1>;
3914
- }>> & {
3915
- "onUpdate:modelValue"?: ((page: number) => any) | undefined;
4017
+ }>> & Readonly<{
3916
4018
  onChange?: ((page: number) => any) | undefined;
3917
- }, {
4019
+ "onUpdate:modelValue"?: ((page: number) => any) | undefined;
4020
+ }>, {
3918
4021
  length: string | number;
3919
4022
  modelValue: string | number;
3920
4023
  disabled: boolean;
3921
4024
  align: "left" | "center" | "right";
3922
4025
  dense: boolean;
3923
- }, {}>;
4026
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
3924
4027
 
3925
4028
  declare function createListTileProps(): {
3926
4029
  startIcon: PropType<RawIconProp>;
@@ -3958,9 +4061,10 @@ declare function createListTileProps(): {
3958
4061
  activeClass: PropType<string>;
3959
4062
  exactActiveClass: PropType<string>;
3960
4063
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
3961
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
3962
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
3963
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4064
+ viewTransition: PropType<boolean>;
4065
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
4066
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
4067
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
3964
4068
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3965
4069
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
3966
4070
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3981,16 +4085,17 @@ declare function createListTileProps(): {
3981
4085
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
3982
4086
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
3983
4087
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
3984
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3985
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
3986
4088
  tabindex: PropType<(string | number) | undefined>;
4089
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4090
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
3987
4091
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
3988
4092
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4093
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
3989
4094
  };
3990
4095
  declare const listTileEmits: {
3991
4096
  changeActive: (isActive: boolean) => boolean;
3992
4097
  };
3993
- declare const VListTile: vue.DefineComponent<{
4098
+ declare const VListTile: vue.DefineComponent<vue.ExtractPropTypes<{
3994
4099
  startIcon: PropType<RawIconProp>;
3995
4100
  endIcon: PropType<RawIconProp>;
3996
4101
  linkFallbackTag: {
@@ -4026,9 +4131,10 @@ declare const VListTile: vue.DefineComponent<{
4026
4131
  activeClass: PropType<string>;
4027
4132
  exactActiveClass: PropType<string>;
4028
4133
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4029
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4030
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4031
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4134
+ viewTransition: PropType<boolean>;
4135
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
4136
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
4137
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
4032
4138
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4033
4139
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
4034
4140
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4049,12 +4155,13 @@ declare const VListTile: vue.DefineComponent<{
4049
4155
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
4050
4156
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4051
4157
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4052
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4053
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4054
4158
  tabindex: PropType<(string | number) | undefined>;
4159
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4160
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4055
4161
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4056
4162
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4057
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4163
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
4164
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4058
4165
  changeActive: (isActive: boolean) => boolean;
4059
4166
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4060
4167
  startIcon: PropType<RawIconProp>;
@@ -4092,9 +4199,10 @@ declare const VListTile: vue.DefineComponent<{
4092
4199
  activeClass: PropType<string>;
4093
4200
  exactActiveClass: PropType<string>;
4094
4201
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4095
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4096
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4097
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4202
+ viewTransition: PropType<boolean>;
4203
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
4204
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
4205
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
4098
4206
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4099
4207
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
4100
4208
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4115,20 +4223,21 @@ declare const VListTile: vue.DefineComponent<{
4115
4223
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
4116
4224
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4117
4225
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4118
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4119
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4120
4226
  tabindex: PropType<(string | number) | undefined>;
4227
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4228
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4121
4229
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4122
4230
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4123
- }>> & {
4231
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
4232
+ }>> & Readonly<{
4124
4233
  onChangeActive?: ((isActive: boolean) => any) | undefined;
4125
- }, {
4234
+ }>, {
4126
4235
  linkFallbackTag: string;
4127
4236
  startIconEmptySpace: boolean;
4128
4237
  exactMatch: boolean;
4129
- }, {}>;
4238
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4130
4239
 
4131
- declare const VDrawerLayout: vue.DefineComponent<{
4240
+ declare const VDrawerLayout: vue.DefineComponent<vue.ExtractPropTypes<{
4132
4241
  'v-slots': vue.PropType<{
4133
4242
  header?: (() => vue.VNodeChild) | undefined;
4134
4243
  default?: (() => vue.VNodeChild) | undefined;
@@ -4139,7 +4248,7 @@ declare const VDrawerLayout: vue.DefineComponent<{
4139
4248
  type: vue.PropType<any>;
4140
4249
  default: string;
4141
4250
  };
4142
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4251
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4143
4252
  'v-slots': vue.PropType<{
4144
4253
  header?: (() => vue.VNodeChild) | undefined;
4145
4254
  default?: (() => vue.VNodeChild) | undefined;
@@ -4150,15 +4259,15 @@ declare const VDrawerLayout: vue.DefineComponent<{
4150
4259
  type: vue.PropType<any>;
4151
4260
  default: string;
4152
4261
  };
4153
- }>>, {
4262
+ }>> & Readonly<{}>, {
4154
4263
  tag: any;
4155
4264
  }, _fastkit_vue_utils.DefinedSlots<{
4156
4265
  header?: () => void;
4157
4266
  default?: () => void;
4158
4267
  footer?: () => void;
4159
- }>>;
4268
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4160
4269
 
4161
- declare const VHero: vue.DefineComponent<{
4270
+ declare const VHero: vue.DefineComponent<vue.ExtractPropTypes<{
4162
4271
  'v-slots': PropType<{
4163
4272
  default?: (() => vue.VNodeChild) | undefined;
4164
4273
  adornment?: (() => vue.VNodeChild) | undefined;
@@ -4175,7 +4284,7 @@ declare const VHero: vue.DefineComponent<{
4175
4284
  type: StringConstructor;
4176
4285
  default: string;
4177
4286
  };
4178
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4287
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4179
4288
  'v-slots': PropType<{
4180
4289
  default?: (() => vue.VNodeChild) | undefined;
4181
4290
  adornment?: (() => vue.VNodeChild) | undefined;
@@ -4192,14 +4301,14 @@ declare const VHero: vue.DefineComponent<{
4192
4301
  type: StringConstructor;
4193
4302
  default: string;
4194
4303
  };
4195
- }>>, {
4304
+ }>> & Readonly<{}>, {
4196
4305
  tag: string;
4197
4306
  color: ScopeName;
4198
4307
  hTag: string;
4199
4308
  }, _fastkit_vue_utils.DefinedSlots<{
4200
4309
  default?: () => void;
4201
4310
  adornment?: () => void;
4202
- }>>;
4311
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4203
4312
 
4204
4313
  declare function createNavigationItemProps(): {
4205
4314
  match: PropType<string | string[]>;
@@ -4243,9 +4352,10 @@ declare function createNavigationItemProps(): {
4243
4352
  activeClass: PropType<string>;
4244
4353
  exactActiveClass: PropType<string>;
4245
4354
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4246
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4247
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4248
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4355
+ viewTransition: PropType<boolean>;
4356
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
4357
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
4358
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
4249
4359
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4250
4360
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
4251
4361
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4266,11 +4376,12 @@ declare function createNavigationItemProps(): {
4266
4376
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
4267
4377
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4268
4378
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4269
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4270
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4271
4379
  tabindex: PropType<(string | number) | undefined>;
4380
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4381
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4272
4382
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4273
4383
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4384
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
4274
4385
  };
4275
4386
  interface NavigationItemInput extends ExtractPropInput<ReturnType<typeof createNavigationItemProps>> {
4276
4387
  key: string | number;
@@ -4282,7 +4393,7 @@ declare function resolveNavigationItemInput(input: NavigationItemInput): {
4282
4393
  props: NavigationItemInput;
4283
4394
  };
4284
4395
  declare function renderNavigationItemInput(input: NavigationItemInput, extraProps?: Record<string, unknown> & VNodeProps): vue_jsx_runtime.JSX.Element;
4285
- declare const VNavigationItem: vue.DefineComponent<{
4396
+ declare const VNavigationItem: vue.DefineComponent<vue.ExtractPropTypes<{
4286
4397
  children: PropType<NavigationItemInput[]>;
4287
4398
  match: PropType<string | string[]>;
4288
4399
  depth: {
@@ -4325,9 +4436,10 @@ declare const VNavigationItem: vue.DefineComponent<{
4325
4436
  activeClass: PropType<string>;
4326
4437
  exactActiveClass: PropType<string>;
4327
4438
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4328
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4329
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4330
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4439
+ viewTransition: PropType<boolean>;
4440
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
4441
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
4442
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
4331
4443
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4332
4444
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
4333
4445
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4348,12 +4460,13 @@ declare const VNavigationItem: vue.DefineComponent<{
4348
4460
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
4349
4461
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4350
4462
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4351
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4352
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4353
4463
  tabindex: PropType<(string | number) | undefined>;
4464
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4465
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4354
4466
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4355
4467
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4356
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4468
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
4469
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4357
4470
  changeActive: (isActive: boolean) => boolean;
4358
4471
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4359
4472
  children: PropType<NavigationItemInput[]>;
@@ -4398,9 +4511,10 @@ declare const VNavigationItem: vue.DefineComponent<{
4398
4511
  activeClass: PropType<string>;
4399
4512
  exactActiveClass: PropType<string>;
4400
4513
  ariaCurrentValue: PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
4401
- onAuxclick: PropType<((payload: MouseEvent) => void) | undefined>;
4402
- onClick: PropType<((payload: MouseEvent) => void) | undefined>;
4403
- onContextmenu: PropType<((payload: MouseEvent) => void) | undefined>;
4514
+ viewTransition: PropType<boolean>;
4515
+ onAuxclick: PropType<((payload: PointerEvent) => void) | undefined>;
4516
+ onClick: PropType<((payload: PointerEvent) => void) | undefined>;
4517
+ onContextmenu: PropType<((payload: PointerEvent) => void) | undefined>;
4404
4518
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4405
4519
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
4406
4520
  onMouseenter: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4421,20 +4535,21 @@ declare const VNavigationItem: vue.DefineComponent<{
4421
4535
  onPointerleave: PropType<((payload: PointerEvent) => void) | undefined>;
4422
4536
  onPointerover: PropType<((payload: PointerEvent) => void) | undefined>;
4423
4537
  onPointerout: PropType<((payload: PointerEvent) => void) | undefined>;
4424
- onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4425
- onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4426
4538
  tabindex: PropType<(string | number) | undefined>;
4539
+ onBlur: PropType<((payload: FocusEvent) => void) | undefined>;
4540
+ onFocus: PropType<((payload: FocusEvent) => void) | undefined>;
4427
4541
  onFocusin: PropType<((payload: FocusEvent) => void) | undefined>;
4428
4542
  onFocusout: PropType<((payload: FocusEvent) => void) | undefined>;
4429
- }>> & {
4543
+ disabledReason: PropType<string | (() => VNodeChild) | DisabledReasonInput>;
4544
+ }>> & Readonly<{
4430
4545
  onChangeActive?: ((isActive: boolean) => any) | undefined;
4431
- }, {
4546
+ }>, {
4432
4547
  linkFallbackTag: string;
4433
4548
  startIconEmptySpace: boolean;
4434
4549
  exactMatch: boolean;
4435
4550
  depth: number;
4436
4551
  nested: boolean;
4437
- }, {}>;
4552
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4438
4553
 
4439
4554
  declare function createNavigationProps(): {
4440
4555
  items: {
@@ -4449,7 +4564,7 @@ declare function createNavigationProps(): {
4449
4564
  caption: PropType<VNodeChild | (() => VNodeChild)>;
4450
4565
  };
4451
4566
  type NavigationInput = ExtractPropInput<ReturnType<typeof createNavigationProps>>;
4452
- declare const VNavigation: vue.DefineComponent<{
4567
+ declare const VNavigation: vue.DefineComponent<vue.ExtractPropTypes<{
4453
4568
  items: {
4454
4569
  type: PropType<NavigationItemInput[]>;
4455
4570
  required: true;
@@ -4460,7 +4575,7 @@ declare const VNavigation: vue.DefineComponent<{
4460
4575
  default: boolean;
4461
4576
  };
4462
4577
  caption: PropType<VNodeChild | (() => VNodeChild)>;
4463
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4578
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4464
4579
  items: {
4465
4580
  type: PropType<NavigationItemInput[]>;
4466
4581
  required: true;
@@ -4471,9 +4586,9 @@ declare const VNavigation: vue.DefineComponent<{
4471
4586
  default: boolean;
4472
4587
  };
4473
4588
  caption: PropType<VNodeChild | (() => VNodeChild)>;
4474
- }>>, {
4589
+ }>> & Readonly<{}>, {
4475
4590
  startIconEmptySpace: boolean;
4476
- }, {}>;
4591
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4477
4592
 
4478
4593
  declare const ADORNMENT_POSITIONS: readonly ["start", "end"];
4479
4594
  type AdornmentPosition = (typeof ADORNMENT_POSITIONS)[number];
@@ -4499,7 +4614,7 @@ type InputBoxSlots = DefineSlotsType<{
4499
4614
  startAdornment?: () => any;
4500
4615
  endAdornment?: () => any;
4501
4616
  }>;
4502
- declare const VControlField: vue.DefineComponent<{
4617
+ declare const VControlField: vue.DefineComponent<vue.ExtractPropTypes<{
4503
4618
  error: BooleanConstructor;
4504
4619
  'v-slots': PropType<{
4505
4620
  default?: (() => VNodeChild) | undefined;
@@ -4523,7 +4638,7 @@ declare const VControlField: vue.DefineComponent<{
4523
4638
  type: (StringConstructor | NumberConstructor)[];
4524
4639
  default: number;
4525
4640
  };
4526
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4641
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4527
4642
  click: (ev: MouseEvent) => true;
4528
4643
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4529
4644
  error: BooleanConstructor;
@@ -4549,9 +4664,9 @@ declare const VControlField: vue.DefineComponent<{
4549
4664
  type: (StringConstructor | NumberConstructor)[];
4550
4665
  default: number;
4551
4666
  };
4552
- }>> & {
4667
+ }>> & Readonly<{
4553
4668
  onClick?: ((ev: MouseEvent) => any) | undefined;
4554
- }, {
4669
+ }>, {
4555
4670
  loading: boolean;
4556
4671
  tabindex: string | number;
4557
4672
  error: boolean;
@@ -4567,9 +4682,9 @@ declare const VControlField: vue.DefineComponent<{
4567
4682
  endAdornment?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
4568
4683
  [key: string]: any;
4569
4684
  }>[]) | undefined;
4570
- }>>;
4685
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4571
4686
 
4572
- declare const VTextCounter: vue.DefineComponent<{
4687
+ declare const VTextCounter: vue.DefineComponent<vue.ExtractPropTypes<{
4573
4688
  length: {
4574
4689
  type: NumberConstructor;
4575
4690
  required: true;
@@ -4578,7 +4693,7 @@ declare const VTextCounter: vue.DefineComponent<{
4578
4693
  type: NumberConstructor;
4579
4694
  required: true;
4580
4695
  };
4581
- }, unknown, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4696
+ }>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4582
4697
  length: {
4583
4698
  type: NumberConstructor;
4584
4699
  required: true;
@@ -4587,12 +4702,12 @@ declare const VTextCounter: vue.DefineComponent<{
4587
4702
  type: NumberConstructor;
4588
4703
  required: true;
4589
4704
  };
4590
- }>>, {}, {}>;
4705
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4591
4706
 
4592
4707
  declare function createRequiredChipRenderer(required: () => boolean, props: {
4593
4708
  requiredChip?: RequiredChipSource;
4594
4709
  }, vui?: VuiService): () => VNodeChild;
4595
- declare const VFormControl: vue.DefineComponent<{
4710
+ declare const VFormControl: vue.DefineComponent<vue.ExtractPropTypes<{
4596
4711
  error: BooleanConstructor;
4597
4712
  'v-slots': vue.PropType<{
4598
4713
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => VNodeChild;
@@ -4614,7 +4729,7 @@ declare const VFormControl: vue.DefineComponent<{
4614
4729
  type: BooleanConstructor;
4615
4730
  default: boolean;
4616
4731
  };
4617
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4732
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4618
4733
  clickLabel: (ev: MouseEvent, wrapper: FormNodeWrapper) => boolean;
4619
4734
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
4620
4735
  error: BooleanConstructor;
@@ -4638,9 +4753,9 @@ declare const VFormControl: vue.DefineComponent<{
4638
4753
  type: BooleanConstructor;
4639
4754
  default: boolean;
4640
4755
  };
4641
- }>> & {
4756
+ }>> & Readonly<{
4642
4757
  onClickLabel?: ((ev: MouseEvent, wrapper: FormNodeWrapper) => any) | undefined;
4643
- }, {
4758
+ }>, {
4644
4759
  collectErrorMessages: boolean;
4645
4760
  error: boolean;
4646
4761
  hiddenInfo: boolean;
@@ -4662,9 +4777,9 @@ declare const VFormControl: vue.DefineComponent<{
4662
4777
  }>[]) | undefined;
4663
4778
  } & {
4664
4779
  default?: (formNodeWrapper: FormNodeWrapper) => any;
4665
- }>>;
4780
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4666
4781
 
4667
- declare const VCheckbox: vue.DefineComponent<{
4782
+ declare const VCheckbox: vue.DefineComponent<vue.ExtractPropTypes<{
4668
4783
  indeterminate: BooleanConstructor;
4669
4784
  size: {
4670
4785
  type: vue.PropType<ControlSize>;
@@ -4704,7 +4819,7 @@ declare const VCheckbox: vue.DefineComponent<{
4704
4819
  default: undefined;
4705
4820
  };
4706
4821
  detach: BooleanConstructor;
4707
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4822
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4708
4823
  'update:modelValue': (value: boolean) => boolean;
4709
4824
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
4710
4825
  change: (value: boolean) => boolean;
@@ -4750,13 +4865,13 @@ declare const VCheckbox: vue.DefineComponent<{
4750
4865
  default: undefined;
4751
4866
  };
4752
4867
  detach: BooleanConstructor;
4753
- }>> & {
4868
+ }>> & Readonly<{
4869
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
4870
+ onChange?: ((value: boolean) => any) | undefined;
4754
4871
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
4755
4872
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
4756
- onChange?: ((value: boolean) => any) | undefined;
4757
4873
  onFocus?: ((ev: FocusEvent) => any) | undefined;
4758
- onBlur?: ((ev: FocusEvent) => any) | undefined;
4759
- }, {
4874
+ }>, {
4760
4875
  loading: boolean;
4761
4876
  tabindex: string | number;
4762
4877
  autofocus: boolean;
@@ -4771,9 +4886,9 @@ declare const VCheckbox: vue.DefineComponent<{
4771
4886
  showOwnErrors: boolean;
4772
4887
  detach: boolean;
4773
4888
  indeterminate: boolean;
4774
- }, {}>;
4889
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4775
4890
 
4776
- declare const VCheckboxGroup: vue.DefineComponent<{
4891
+ declare const VCheckboxGroup: vue.DefineComponent<vue.ExtractPropTypes<{
4777
4892
  'v-slots': vue.PropType<{
4778
4893
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
4779
4894
  label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
@@ -4848,7 +4963,7 @@ declare const VCheckboxGroup: vue.DefineComponent<{
4848
4963
  default: undefined;
4849
4964
  };
4850
4965
  detach: BooleanConstructor;
4851
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4966
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4852
4967
  'update:modelValue': (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
4853
4968
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
4854
4969
  change: (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
@@ -4929,13 +5044,13 @@ declare const VCheckboxGroup: vue.DefineComponent<{
4929
5044
  default: undefined;
4930
5045
  };
4931
5046
  detach: BooleanConstructor;
4932
- }>> & {
5047
+ }>> & Readonly<{
5048
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5049
+ onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
4933
5050
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
4934
5051
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
4935
- onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
4936
5052
  onFocus?: ((ev: FocusEvent) => any) | undefined;
4937
- onBlur?: ((ev: FocusEvent) => any) | undefined;
4938
- }, {
5053
+ }>, {
4939
5054
  loading: boolean;
4940
5055
  collectErrorMessages: boolean;
4941
5056
  tabindex: string | number;
@@ -4973,9 +5088,9 @@ declare const VCheckboxGroup: vue.DefineComponent<{
4973
5088
  }>[]) | undefined;
4974
5089
  } & {
4975
5090
  default?: () => any;
4976
- }>>;
5091
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
4977
5092
 
4978
- declare const VRadio: vue.DefineComponent<{
5093
+ declare const VRadio: vue.DefineComponent<vue.ExtractPropTypes<{
4979
5094
  size: {
4980
5095
  type: vue.PropType<ControlSize>;
4981
5096
  validator: (value: any) => boolean;
@@ -5014,7 +5129,7 @@ declare const VRadio: vue.DefineComponent<{
5014
5129
  default: undefined;
5015
5130
  };
5016
5131
  detach: BooleanConstructor;
5017
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5132
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5018
5133
  'update:modelValue': (value: boolean) => boolean;
5019
5134
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
5020
5135
  change: (value: boolean) => boolean;
@@ -5059,13 +5174,13 @@ declare const VRadio: vue.DefineComponent<{
5059
5174
  default: undefined;
5060
5175
  };
5061
5176
  detach: BooleanConstructor;
5062
- }>> & {
5177
+ }>> & Readonly<{
5178
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5179
+ onChange?: ((value: boolean) => any) | undefined;
5063
5180
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
5064
5181
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5065
- onChange?: ((value: boolean) => any) | undefined;
5066
5182
  onFocus?: ((ev: FocusEvent) => any) | undefined;
5067
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5068
- }, {
5183
+ }>, {
5069
5184
  loading: boolean;
5070
5185
  tabindex: string | number;
5071
5186
  autofocus: boolean;
@@ -5079,9 +5194,9 @@ declare const VRadio: vue.DefineComponent<{
5079
5194
  error: boolean;
5080
5195
  showOwnErrors: boolean;
5081
5196
  detach: boolean;
5082
- }, {}>;
5197
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
5083
5198
 
5084
- declare const VRadioGroup: vue.DefineComponent<{
5199
+ declare const VRadioGroup: vue.DefineComponent<vue.ExtractPropTypes<{
5085
5200
  'v-slots': vue.PropType<{
5086
5201
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
5087
5202
  label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
@@ -5156,7 +5271,7 @@ declare const VRadioGroup: vue.DefineComponent<{
5156
5271
  default: undefined;
5157
5272
  };
5158
5273
  detach: BooleanConstructor;
5159
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5274
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5160
5275
  'update:modelValue': (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
5161
5276
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
5162
5277
  change: (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
@@ -5237,13 +5352,13 @@ declare const VRadioGroup: vue.DefineComponent<{
5237
5352
  default: undefined;
5238
5353
  };
5239
5354
  detach: BooleanConstructor;
5240
- }>> & {
5355
+ }>> & Readonly<{
5356
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5357
+ onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5241
5358
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5242
5359
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5243
- onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5244
5360
  onFocus?: ((ev: FocusEvent) => any) | undefined;
5245
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5246
- }, {
5361
+ }>, {
5247
5362
  loading: boolean;
5248
5363
  collectErrorMessages: boolean;
5249
5364
  tabindex: string | number;
@@ -5281,9 +5396,9 @@ declare const VRadioGroup: vue.DefineComponent<{
5281
5396
  }>[]) | undefined;
5282
5397
  } & {
5283
5398
  default?: () => any;
5284
- }>>;
5399
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
5285
5400
 
5286
- declare const VSwitch: vue.DefineComponent<{
5401
+ declare const VSwitch: vue.DefineComponent<vue.ExtractPropTypes<{
5287
5402
  size: {
5288
5403
  type: vue.PropType<ControlSize>;
5289
5404
  validator: (value: any) => boolean;
@@ -5322,7 +5437,7 @@ declare const VSwitch: vue.DefineComponent<{
5322
5437
  default: undefined;
5323
5438
  };
5324
5439
  detach: BooleanConstructor;
5325
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5440
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5326
5441
  'update:modelValue': (value: boolean) => boolean;
5327
5442
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
5328
5443
  change: (value: boolean) => boolean;
@@ -5367,13 +5482,13 @@ declare const VSwitch: vue.DefineComponent<{
5367
5482
  default: undefined;
5368
5483
  };
5369
5484
  detach: BooleanConstructor;
5370
- }>> & {
5485
+ }>> & Readonly<{
5486
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5487
+ onChange?: ((value: boolean) => any) | undefined;
5371
5488
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
5372
5489
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5373
- onChange?: ((value: boolean) => any) | undefined;
5374
5490
  onFocus?: ((ev: FocusEvent) => any) | undefined;
5375
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5376
- }, {
5491
+ }>, {
5377
5492
  loading: boolean;
5378
5493
  tabindex: string | number;
5379
5494
  autofocus: boolean;
@@ -5387,9 +5502,9 @@ declare const VSwitch: vue.DefineComponent<{
5387
5502
  error: boolean;
5388
5503
  showOwnErrors: boolean;
5389
5504
  detach: boolean;
5390
- }, {}>;
5505
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
5391
5506
 
5392
- declare const VSwitchGroup: vue.DefineComponent<{
5507
+ declare const VSwitchGroup: vue.DefineComponent<vue.ExtractPropTypes<{
5393
5508
  'v-slots': vue.PropType<{
5394
5509
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
5395
5510
  label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
@@ -5464,7 +5579,7 @@ declare const VSwitchGroup: vue.DefineComponent<{
5464
5579
  default: undefined;
5465
5580
  };
5466
5581
  detach: BooleanConstructor;
5467
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5582
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5468
5583
  'update:modelValue': (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
5469
5584
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
5470
5585
  change: (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
@@ -5545,13 +5660,13 @@ declare const VSwitchGroup: vue.DefineComponent<{
5545
5660
  default: undefined;
5546
5661
  };
5547
5662
  detach: BooleanConstructor;
5548
- }>> & {
5663
+ }>> & Readonly<{
5664
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5665
+ onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5549
5666
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5550
5667
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5551
- onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5552
5668
  onFocus?: ((ev: FocusEvent) => any) | undefined;
5553
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5554
- }, {
5669
+ }>, {
5555
5670
  loading: boolean;
5556
5671
  collectErrorMessages: boolean;
5557
5672
  tabindex: string | number;
@@ -5589,9 +5704,9 @@ declare const VSwitchGroup: vue.DefineComponent<{
5589
5704
  }>[]) | undefined;
5590
5705
  } & {
5591
5706
  default?: () => any;
5592
- }>>;
5707
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
5593
5708
 
5594
- declare const VOption: vue.DefineComponent<{
5709
+ declare const VOption: vue.DefineComponent<vue.ExtractPropTypes<{
5595
5710
  size: {
5596
5711
  type: vue.PropType<ControlSize>;
5597
5712
  validator: (value: any) => boolean;
@@ -5630,7 +5745,7 @@ declare const VOption: vue.DefineComponent<{
5630
5745
  default: undefined;
5631
5746
  };
5632
5747
  detach: BooleanConstructor;
5633
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5748
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5634
5749
  'update:modelValue': (value: boolean) => boolean;
5635
5750
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
5636
5751
  change: (value: boolean) => boolean;
@@ -5675,13 +5790,13 @@ declare const VOption: vue.DefineComponent<{
5675
5790
  default: undefined;
5676
5791
  };
5677
5792
  detach: BooleanConstructor;
5678
- }>> & {
5793
+ }>> & Readonly<{
5794
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
5795
+ onChange?: ((value: boolean) => any) | undefined;
5679
5796
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
5680
5797
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5681
- onChange?: ((value: boolean) => any) | undefined;
5682
5798
  onFocus?: ((ev: FocusEvent) => any) | undefined;
5683
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5684
- }, {
5799
+ }>, {
5685
5800
  loading: boolean;
5686
5801
  tabindex: string | number;
5687
5802
  autofocus: boolean;
@@ -5695,9 +5810,9 @@ declare const VOption: vue.DefineComponent<{
5695
5810
  error: boolean;
5696
5811
  showOwnErrors: boolean;
5697
5812
  detach: boolean;
5698
- }, {}>;
5813
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
5699
5814
 
5700
- declare const VOptionGroup: vue.DefineComponent<{
5815
+ declare const VOptionGroup: vue.DefineComponent<vue.ExtractPropTypes<{
5701
5816
  'v-slots': PropType<{
5702
5817
  label?: ((control: FormSelectorItemGroupControl) => vue.VNodeChild) | undefined;
5703
5818
  default?: (() => vue.VNodeChild) | undefined;
@@ -5708,7 +5823,7 @@ declare const VOptionGroup: vue.DefineComponent<{
5708
5823
  type: (NumberConstructor | StringConstructor)[];
5709
5824
  required: true;
5710
5825
  };
5711
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
5826
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
5712
5827
  'v-slots': PropType<{
5713
5828
  label?: ((control: FormSelectorItemGroupControl) => vue.VNodeChild) | undefined;
5714
5829
  default?: (() => vue.VNodeChild) | undefined;
@@ -5719,17 +5834,17 @@ declare const VOptionGroup: vue.DefineComponent<{
5719
5834
  type: (NumberConstructor | StringConstructor)[];
5720
5835
  required: true;
5721
5836
  };
5722
- }>>, {
5837
+ }>> & Readonly<{}>, {
5723
5838
  disabled: boolean;
5724
5839
  }, _fastkit_vue_utils.DefinedSlots<{
5725
5840
  label?: (control: FormSelectorItemGroupControl) => any;
5726
5841
  default?: () => any;
5727
- }>>;
5842
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
5728
5843
 
5729
5844
  declare const ARROW_KEY_TYPES: ("ArrowDown" | "ArrowUp")[];
5730
5845
  declare const CHOICE_KEY_TYPES: ("Enter" | " ")[];
5731
5846
  declare const KEYBOARD_EVENT_TYPES: ("Enter" | " " | "ArrowDown" | "ArrowUp")[];
5732
- declare const VSelect: vue.DefineComponent<{
5847
+ declare const VSelect: vue.DefineComponent<vue.ExtractPropTypes<{
5733
5848
  closeOnNavigation: BooleanConstructor;
5734
5849
  placeholder: StringConstructor;
5735
5850
  loadingMessage: PropType<VNodeChildOrSlot>;
@@ -5814,7 +5929,7 @@ declare const VSelect: vue.DefineComponent<{
5814
5929
  default: undefined;
5815
5930
  };
5816
5931
  detach: BooleanConstructor;
5817
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5932
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5818
5933
  'update:modelValue': (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
5819
5934
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
5820
5935
  change: (value: _fastkit_vue_form_control.FormSelectorValue) => boolean;
@@ -5905,13 +6020,13 @@ declare const VSelect: vue.DefineComponent<{
5905
6020
  default: undefined;
5906
6021
  };
5907
6022
  detach: BooleanConstructor;
5908
- }>> & {
6023
+ }>> & Readonly<{
6024
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
6025
+ onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5909
6026
  "onUpdate:modelValue"?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5910
6027
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
5911
- onChange?: ((value: _fastkit_vue_form_control.FormSelectorValue) => any) | undefined;
5912
6028
  onFocus?: ((ev: FocusEvent) => any) | undefined;
5913
- onBlur?: ((ev: FocusEvent) => any) | undefined;
5914
- }, {
6029
+ }>, {
5915
6030
  loading: boolean;
5916
6031
  collectErrorMessages: boolean;
5917
6032
  tabindex: string | number;
@@ -5962,9 +6077,9 @@ declare const VSelect: vue.DefineComponent<{
5962
6077
  item: FormSelectorItemControl;
5963
6078
  index: number;
5964
6079
  }) => any;
5965
- }>>;
6080
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
5966
6081
 
5967
- declare const VNumberField: vue.DefineComponent<{
6082
+ declare const VNumberField: vue.DefineComponent<vue.ExtractPropTypes<{
5968
6083
  modelValue: {
5969
6084
  type: PropType<number | null>;
5970
6085
  default: null;
@@ -6051,12 +6166,12 @@ declare const VNumberField: vue.DefineComponent<{
6051
6166
  type: PropType<_fastkit_vue_form_control.FormAutoComplete | boolean>;
6052
6167
  default: () => boolean | "off" | "on" | "name" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "email" | "username" | "new-password" | "current-password" | "one-time-code" | "organization-title" | "organization" | "street-address" | "address-line1" | "address-line2" | "address-line3" | "address-level4" | "address-level3" | "address-level2" | "address-level1" | "country" | "country-name" | "postal-code" | "cc-name" | "cc-given-name" | "cc-additional-name" | "cc-family-name" | "cc-number" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-csc" | "cc-type" | "transaction-currency" | "transaction-amount" | "language" | "bday" | "bday-day" | "bday-month" | "bday-year" | "sex" | "tel" | "tel-country-code" | "tel-national" | "tel-area-code" | "tel-local" | "tel-extension" | "impp" | "url" | "photo" | undefined;
6053
6168
  };
6054
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6169
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6055
6170
  'update:modelValue': (value: number | null) => true;
6056
6171
  change: (value: number | null) => true;
6172
+ blur: (ev: FocusEvent) => boolean;
6057
6173
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
6058
6174
  focus: (ev: FocusEvent) => boolean;
6059
- blur: (ev: FocusEvent) => boolean;
6060
6175
  acceptMask: (ev: _fastkit_vue_form_control.IMaskEvent) => boolean;
6061
6176
  acceptDynamicMaskMeta: (meta?: any) => boolean;
6062
6177
  completeMask: (ev: _fastkit_vue_form_control.IMaskEvent) => boolean;
@@ -6150,19 +6265,19 @@ declare const VNumberField: vue.DefineComponent<{
6150
6265
  type: PropType<_fastkit_vue_form_control.FormAutoComplete | boolean>;
6151
6266
  default: () => boolean | "off" | "on" | "name" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "email" | "username" | "new-password" | "current-password" | "one-time-code" | "organization-title" | "organization" | "street-address" | "address-line1" | "address-line2" | "address-line3" | "address-level4" | "address-level3" | "address-level2" | "address-level1" | "country" | "country-name" | "postal-code" | "cc-name" | "cc-given-name" | "cc-additional-name" | "cc-family-name" | "cc-number" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-csc" | "cc-type" | "transaction-currency" | "transaction-amount" | "language" | "bday" | "bday-day" | "bday-month" | "bday-year" | "sex" | "tel" | "tel-country-code" | "tel-national" | "tel-area-code" | "tel-local" | "tel-extension" | "impp" | "url" | "photo" | undefined;
6152
6267
  };
6153
- }>> & {
6268
+ }>> & Readonly<{
6269
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
6270
+ onChange?: ((value: number | null) => any) | undefined;
6154
6271
  "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
6155
6272
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
6156
- onChange?: ((value: number | null) => any) | undefined;
6157
6273
  onFocus?: ((ev: FocusEvent) => any) | undefined;
6158
- onBlur?: ((ev: FocusEvent) => any) | undefined;
6159
6274
  onAcceptMask?: ((ev: _fastkit_vue_form_control.IMaskEvent) => any) | undefined;
6160
6275
  onAcceptDynamicMaskMeta?: ((meta?: any) => any) | undefined;
6161
6276
  onCompleteMask?: ((ev: _fastkit_vue_form_control.IMaskEvent) => any) | undefined;
6162
6277
  "onUpdate:masked"?: ((maskedValue: string) => any) | undefined;
6163
6278
  "onUpdate:typed"?: ((typedValue: _fastkit_vue_form_control.IMaskTypedValue | undefined) => any) | undefined;
6164
6279
  "onUpdate:unmasked"?: ((unmaskedValue: string) => any) | undefined;
6165
- }, {
6280
+ }>, {
6166
6281
  loading: boolean;
6167
6282
  collectErrorMessages: boolean;
6168
6283
  modelValue: number | null;
@@ -6182,9 +6297,9 @@ declare const VNumberField: vue.DefineComponent<{
6182
6297
  maskModel: _fastkit_vue_form_control.TextInputMaskModel;
6183
6298
  limit: boolean;
6184
6299
  autocomplete: 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";
6185
- }, {}>;
6300
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
6186
6301
 
6187
- declare const VTextarea: vue.DefineComponent<{
6302
+ declare const VTextarea: vue.DefineComponent<vue.ExtractPropTypes<{
6188
6303
  'v-slots': vue.PropType<{
6189
6304
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
6190
6305
  label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNodeChild) | undefined;
@@ -6267,7 +6382,7 @@ declare const VTextarea: vue.DefineComponent<{
6267
6382
  default: undefined;
6268
6383
  };
6269
6384
  detach: BooleanConstructor;
6270
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6385
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6271
6386
  'update:modelValue': (value: string) => boolean;
6272
6387
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
6273
6388
  change: (value: string) => boolean;
@@ -6356,13 +6471,13 @@ declare const VTextarea: vue.DefineComponent<{
6356
6471
  default: undefined;
6357
6472
  };
6358
6473
  detach: BooleanConstructor;
6359
- }>> & {
6474
+ }>> & Readonly<{
6475
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
6476
+ onChange?: ((value: string) => any) | undefined;
6360
6477
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
6361
6478
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
6362
- onChange?: ((value: string) => any) | undefined;
6363
6479
  onFocus?: ((ev: FocusEvent) => any) | undefined;
6364
- onBlur?: ((ev: FocusEvent) => any) | undefined;
6365
- }, {
6480
+ }>, {
6366
6481
  loading: boolean;
6367
6482
  collectErrorMessages: boolean;
6368
6483
  tabindex: string | number;
@@ -6381,7 +6496,7 @@ declare const VTextarea: vue.DefineComponent<{
6381
6496
  limit: boolean;
6382
6497
  autocomplete: 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";
6383
6498
  rows: _fastkit_vue_utils.Numberish;
6384
- }, {}>;
6499
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
6385
6500
 
6386
6501
  type VFormGroupSlots = DefineSlotsType<{
6387
6502
  default?: (form: FormGroupControl) => any;
@@ -6439,7 +6554,7 @@ declare function createVFormGroupProps(): {
6439
6554
  };
6440
6555
  detach: BooleanConstructor;
6441
6556
  };
6442
- declare const VFormGroup: vue.DefineComponent<{
6557
+ declare const VFormGroup: vue.DefineComponent<vue.ExtractPropTypes<{
6443
6558
  'v-slots': vue.PropType<{
6444
6559
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
6445
6560
  default?: ((form: FormGroupControl) => vue.VNodeChild) | undefined;
@@ -6482,9 +6597,9 @@ declare const VFormGroup: vue.DefineComponent<{
6482
6597
  default: undefined;
6483
6598
  };
6484
6599
  detach: BooleanConstructor;
6485
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
6600
+ }>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
6486
6601
  [key: string]: any;
6487
- }>[] | undefined, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6602
+ }>[] | undefined, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6488
6603
  'update:modelValue': (value: unknown) => boolean;
6489
6604
  'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
6490
6605
  change: (value: unknown) => boolean;
@@ -6533,13 +6648,13 @@ declare const VFormGroup: vue.DefineComponent<{
6533
6648
  default: undefined;
6534
6649
  };
6535
6650
  detach: BooleanConstructor;
6536
- }>> & {
6651
+ }>> & Readonly<{
6652
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
6653
+ onChange?: ((value: unknown) => any) | undefined;
6537
6654
  "onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
6538
6655
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
6539
- onChange?: ((value: unknown) => any) | undefined;
6540
6656
  onFocus?: ((ev: FocusEvent) => any) | undefined;
6541
- onBlur?: ((ev: FocusEvent) => any) | undefined;
6542
- }, {
6657
+ }>, {
6543
6658
  loading: boolean;
6544
6659
  collectErrorMessages: boolean;
6545
6660
  disableAutoScroll: boolean;
@@ -6563,7 +6678,7 @@ declare const VFormGroup: vue.DefineComponent<{
6563
6678
  error?: (error: _fastkit_vue_form_control.FormNodeError) => any;
6564
6679
  } & {
6565
6680
  [x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => any;
6566
- }>>;
6681
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
6567
6682
 
6568
6683
  type VFormSlots = DefineSlotsType<{
6569
6684
  default?: (form: VueForm) => any;
@@ -6629,7 +6744,7 @@ declare function createVFormProps(): {
6629
6744
  };
6630
6745
  detach: BooleanConstructor;
6631
6746
  };
6632
- declare const VForm: vue.DefineComponent<{
6747
+ declare const VForm: vue.DefineComponent<vue.ExtractPropTypes<{
6633
6748
  'v-slots': vue.PropType<{
6634
6749
  default?: ((form: VueForm) => vue.VNodeChild) | undefined;
6635
6750
  }>;
@@ -6684,7 +6799,7 @@ declare const VForm: vue.DefineComponent<{
6684
6799
  default: undefined;
6685
6800
  };
6686
6801
  detach: BooleanConstructor;
6687
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6802
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6688
6803
  submit: (form: VueForm, ev: Event) => boolean;
6689
6804
  'update:sending': (sending: boolean, form: VueForm) => boolean;
6690
6805
  finishAction: (actionContext: _fastkit_vue_form_control.FormActionContext) => boolean;
@@ -6749,17 +6864,17 @@ declare const VForm: vue.DefineComponent<{
6749
6864
  default: undefined;
6750
6865
  };
6751
6866
  detach: BooleanConstructor;
6752
- }>> & {
6867
+ }>> & Readonly<{
6868
+ onBlur?: ((ev: FocusEvent) => any) | undefined;
6869
+ onChange?: ((value: unknown) => any) | undefined;
6753
6870
  onSubmit?: ((form: VueForm, ev: Event) => any) | undefined;
6754
6871
  "onUpdate:sending"?: ((sending: boolean, form: VueForm) => any) | undefined;
6755
6872
  onFinishAction?: ((actionContext: _fastkit_vue_form_control.FormActionContext) => any) | undefined;
6756
6873
  onAutoValidationFailed?: ((form: VueForm) => any) | undefined;
6757
6874
  "onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
6758
6875
  "onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
6759
- onChange?: ((value: unknown) => any) | undefined;
6760
6876
  onFocus?: ((ev: FocusEvent) => any) | undefined;
6761
- onBlur?: ((ev: FocusEvent) => any) | undefined;
6762
- }, {
6877
+ }>, {
6763
6878
  loading: boolean;
6764
6879
  novalidate: boolean;
6765
6880
  autoValidate: boolean;
@@ -6783,7 +6898,7 @@ declare const VForm: vue.DefineComponent<{
6783
6898
  default?: ((form: VueForm) => vue.VNode<vue.RendererNode, vue.RendererElement, {
6784
6899
  [key: string]: any;
6785
6900
  }>[]) | undefined;
6786
- }>>;
6901
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
6787
6902
 
6788
6903
  interface VTabsItemLabelSlotCtx {
6789
6904
  value: string;
@@ -6798,7 +6913,7 @@ interface VTabsItem {
6798
6913
  icon?: RawIconProp;
6799
6914
  label?: VNodeChild | VTabsItemLabelSlot;
6800
6915
  }
6801
- declare const VTabs: vue.DefineComponent<{
6916
+ declare const VTabs: vue.DefineComponent<vue.ExtractPropTypes<{
6802
6917
  'v-slots': PropType<{
6803
6918
  item?: ((ctx: VTabsItemLabelSlotCtx) => VNodeChild) | undefined;
6804
6919
  }>;
@@ -6825,7 +6940,7 @@ declare const VTabs: vue.DefineComponent<{
6825
6940
  withQuery: BooleanConstructor;
6826
6941
  color: PropType<ScopeName$1>;
6827
6942
  onBeforeChange: PropType<VTabsGuard>;
6828
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6943
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6829
6944
  'update:modelValue': (newValue: string) => true;
6830
6945
  change: (newValue: string) => true;
6831
6946
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
@@ -6855,15 +6970,15 @@ declare const VTabs: vue.DefineComponent<{
6855
6970
  withQuery: BooleanConstructor;
6856
6971
  color: PropType<ScopeName$1>;
6857
6972
  onBeforeChange: PropType<VTabsGuard>;
6858
- }>> & {
6859
- "onUpdate:modelValue"?: ((newValue: string) => any) | undefined;
6973
+ }>> & Readonly<{
6860
6974
  onChange?: ((newValue: string) => any) | undefined;
6861
- }, {
6862
- autoScrollOffset: number;
6975
+ "onUpdate:modelValue"?: ((newValue: string) => any) | undefined;
6976
+ }>, {
6863
6977
  withQuery: boolean;
6978
+ autoScrollOffset: number;
6864
6979
  }, _fastkit_vue_utils.DefinedSlots<{
6865
6980
  item?: (ctx: VTabsItemLabelSlotCtx) => any;
6866
- }>>;
6981
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
6867
6982
 
6868
6983
  interface BreadcrumbsItem extends Pick<ActionableInheritProps, 'to' | 'disabled'> {
6869
6984
  /**
@@ -6873,21 +6988,21 @@ interface BreadcrumbsItem extends Pick<ActionableInheritProps, 'to' | 'disabled'
6873
6988
  text: VNodeChild | ((vui: VuiService) => VNodeChild);
6874
6989
  }
6875
6990
  type RawBreadcrumbsItem = string | BreadcrumbsItem;
6876
- declare const VBreadcrumbs: vue.DefineComponent<{
6991
+ declare const VBreadcrumbs: vue.DefineComponent<vue.ExtractPropTypes<{
6877
6992
  items: {
6878
6993
  type: PropType<BreadcrumbsItem[]>;
6879
6994
  default: () => never[];
6880
6995
  };
6881
6996
  divider: PropType<VNodeChild | ((vui: VuiService) => VNodeChild)>;
6882
- }, () => vue_jsx_runtime.JSX.Element | undefined, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
6997
+ }>, () => vue_jsx_runtime.JSX.Element | undefined, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
6883
6998
  items: {
6884
6999
  type: PropType<BreadcrumbsItem[]>;
6885
7000
  default: () => never[];
6886
7001
  };
6887
7002
  divider: PropType<VNodeChild | ((vui: VuiService) => VNodeChild)>;
6888
- }>>, {
7003
+ }>> & Readonly<{}>, {
6889
7004
  items: BreadcrumbsItem[];
6890
- }, {}>;
7005
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
6891
7006
 
6892
7007
  interface ContentSwitcherSeeTopOptions {
6893
7008
  /**
@@ -6899,14 +7014,14 @@ interface ContentSwitcherSeeTopOptions {
6899
7014
  */
6900
7015
  duration?: number;
6901
7016
  }
6902
- declare const VContentSwitcher: vue.DefineComponent<{
7017
+ declare const VContentSwitcher: vue.DefineComponent<vue.ExtractPropTypes<{
6903
7018
  modelValue: StringConstructor;
6904
7019
  order: {
6905
7020
  type: PropType<(string | VTabsItem)[]>;
6906
7021
  default: () => never[];
6907
7022
  };
6908
7023
  autotop: PropType<boolean | ContentSwitcherSeeTopOptions>;
6909
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
7024
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
6910
7025
  'update:modelValue': (modelValue: string) => true;
6911
7026
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
6912
7027
  modelValue: StringConstructor;
@@ -6915,11 +7030,11 @@ declare const VContentSwitcher: vue.DefineComponent<{
6915
7030
  default: () => never[];
6916
7031
  };
6917
7032
  autotop: PropType<boolean | ContentSwitcherSeeTopOptions>;
6918
- }>> & {
7033
+ }>> & Readonly<{
6919
7034
  "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
6920
- }, {
7035
+ }>, {
6921
7036
  order: (string | VTabsItem)[];
6922
- }, {}>;
7037
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
6923
7038
 
6924
7039
  type DataTableHeaderAlign = 'left' | 'center' | 'right';
6925
7040
  declare const DATA_TABLE_DEFAULTS: {
@@ -6971,7 +7086,7 @@ interface DataTableRowSettings<T extends DataTableItem = DataTableItem> {
6971
7086
  }
6972
7087
  type DataTableRowSettingsFn<T extends DataTableItem = DataTableItem> = (payload: DataTableItemSlotPayload<T>) => DataTableRowSettings<T>;
6973
7088
  type RawDataTableRowSettings<T extends DataTableItem = DataTableItem> = DataTableRowSettingsFn<T> | DataTableRowSettings<T>;
6974
- declare const VDataTable: vue.DefineComponent<{
7089
+ declare const VDataTable: vue.DefineComponent<vue.ExtractPropTypes<{
6975
7090
  /** 選択中のkeyの配列 */
6976
7091
  modelValue: {
6977
7092
  type: PropType<string[]>;
@@ -7058,7 +7173,7 @@ declare const VDataTable: vue.DefineComponent<{
7058
7173
  noDataMessage: PropType<VNodeChildOrSlot>;
7059
7174
  noResultsMessage: PropType<VNodeChildOrSlot>;
7060
7175
  rowSettings: PropType<RawDataTableRowSettings>;
7061
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
7176
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
7062
7177
  input: (selectedValues: string[]) => true;
7063
7178
  }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
7064
7179
  /** 選択中のkeyの配列 */
@@ -7147,9 +7262,9 @@ declare const VDataTable: vue.DefineComponent<{
7147
7262
  noDataMessage: PropType<VNodeChildOrSlot>;
7148
7263
  noResultsMessage: PropType<VNodeChildOrSlot>;
7149
7264
  rowSettings: PropType<RawDataTableRowSettings>;
7150
- }>> & {
7265
+ }>> & Readonly<{
7151
7266
  onInput?: ((selectedValues: string[]) => any) | undefined;
7152
- }, {
7267
+ }>, {
7153
7268
  modelValue: string[];
7154
7269
  items: DataTableItem[];
7155
7270
  itemKey: string;
@@ -7164,14 +7279,14 @@ declare const VDataTable: vue.DefineComponent<{
7164
7279
  limitDefault: number;
7165
7280
  controlThreshold: number;
7166
7281
  searchQuery: string | string[];
7167
- total: number;
7168
7282
  selectable: boolean;
7169
7283
  fixedHeader: boolean;
7170
- }, {}>;
7284
+ total: number;
7285
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
7171
7286
 
7172
- declare const VApp: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{}>>, {}, {}>;
7287
+ declare const VApp: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
7173
7288
 
7174
- declare const VToolbar: vue.DefineComponent<{
7289
+ declare const VToolbar: vue.DefineComponent<vue.ExtractPropTypes<{
7175
7290
  dense: BooleanConstructor;
7176
7291
  variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
7177
7292
  theme: vue.PropType<ThemeName>;
@@ -7179,7 +7294,7 @@ declare const VToolbar: vue.DefineComponent<{
7179
7294
  textColor: vue.PropType<PaletteName>;
7180
7295
  borderColor: vue.PropType<PaletteName>;
7181
7296
  elevation: vue.PropType<VuiElevationValue>;
7182
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
7297
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
7183
7298
  dense: BooleanConstructor;
7184
7299
  variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
7185
7300
  theme: vue.PropType<ThemeName>;
@@ -7187,12 +7302,12 @@ declare const VToolbar: vue.DefineComponent<{
7187
7302
  textColor: vue.PropType<PaletteName>;
7188
7303
  borderColor: vue.PropType<PaletteName>;
7189
7304
  elevation: vue.PropType<VuiElevationValue>;
7190
- }>>, {
7305
+ }>> & Readonly<{}>, {
7191
7306
  dense: boolean;
7192
- }, {}>;
7307
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
7193
7308
 
7194
7309
  type VToolbarMenuEdge = 'start' | 'end';
7195
- declare const VToolbarMenu: vue.DefineComponent<{
7310
+ declare const VToolbarMenu: vue.DefineComponent<vue.ExtractPropTypes<{
7196
7311
  size: {
7197
7312
  type: vue.PropType<ControlSize>;
7198
7313
  validator: (value: any) => boolean;
@@ -7234,9 +7349,10 @@ declare const VToolbarMenu: vue.DefineComponent<{
7234
7349
  activeClass: vue.PropType<string>;
7235
7350
  exactActiveClass: vue.PropType<string>;
7236
7351
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
7237
- onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7238
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7239
- onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7352
+ viewTransition: vue.PropType<boolean>;
7353
+ onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7354
+ onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7355
+ onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7240
7356
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7241
7357
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7242
7358
  onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -7257,17 +7373,18 @@ declare const VToolbarMenu: vue.DefineComponent<{
7257
7373
  onPointerleave: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7258
7374
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7259
7375
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7260
- onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7261
- onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7262
7376
  tabindex: vue.PropType<(string | number) | undefined>;
7377
+ onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7378
+ onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7263
7379
  onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7264
7380
  onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7381
+ disabledReason: vue.PropType<string | (() => vue.VNodeChild) | DisabledReasonInput>;
7265
7382
  variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
7266
7383
  theme: vue.PropType<ThemeName>;
7267
7384
  color: vue.PropType<ScopeName>;
7268
7385
  textColor: vue.PropType<PaletteName>;
7269
7386
  borderColor: vue.PropType<PaletteName>;
7270
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
7387
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
7271
7388
  size: {
7272
7389
  type: vue.PropType<ControlSize>;
7273
7390
  validator: (value: any) => boolean;
@@ -7309,9 +7426,10 @@ declare const VToolbarMenu: vue.DefineComponent<{
7309
7426
  activeClass: vue.PropType<string>;
7310
7427
  exactActiveClass: vue.PropType<string>;
7311
7428
  ariaCurrentValue: vue.PropType<"time" | "true" | "false" | "date" | "page" | "step" | "location">;
7312
- onAuxclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7313
- onClick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7314
- onContextmenu: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7429
+ viewTransition: vue.PropType<boolean>;
7430
+ onAuxclick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7431
+ onClick: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7432
+ onContextmenu: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7315
7433
  onDblclick: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7316
7434
  onMousedown: vue.PropType<((payload: MouseEvent) => void) | undefined>;
7317
7435
  onMouseenter: vue.PropType<((payload: MouseEvent) => void) | undefined>;
@@ -7332,36 +7450,37 @@ declare const VToolbarMenu: vue.DefineComponent<{
7332
7450
  onPointerleave: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7333
7451
  onPointerover: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7334
7452
  onPointerout: vue.PropType<((payload: PointerEvent) => void) | undefined>;
7335
- onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7336
- onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7337
7453
  tabindex: vue.PropType<(string | number) | undefined>;
7454
+ onBlur: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7455
+ onFocus: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7338
7456
  onFocusin: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7339
7457
  onFocusout: vue.PropType<((payload: FocusEvent) => void) | undefined>;
7458
+ disabledReason: vue.PropType<string | (() => vue.VNodeChild) | DisabledReasonInput>;
7340
7459
  variant: vue.PropType<_fastkit_color_scheme.ColorVariant>;
7341
7460
  theme: vue.PropType<ThemeName>;
7342
7461
  color: vue.PropType<ScopeName>;
7343
7462
  textColor: vue.PropType<PaletteName>;
7344
7463
  borderColor: vue.PropType<PaletteName>;
7345
- }>>, {
7464
+ }>> & Readonly<{}>, {
7346
7465
  loading: boolean;
7347
7466
  rounded: boolean;
7348
7467
  align: "left" | "center" | "right";
7349
- }, {}>;
7468
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
7350
7469
 
7351
7470
  type VToolbarEdgeEdge = 'start' | 'end';
7352
- declare const VToolbarEdge: vue.DefineComponent<{
7471
+ declare const VToolbarEdge: vue.DefineComponent<vue.ExtractPropTypes<{
7353
7472
  edge: {
7354
7473
  type: PropType<VToolbarEdgeEdge>;
7355
7474
  required: true;
7356
7475
  };
7357
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
7476
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
7358
7477
  edge: {
7359
7478
  type: PropType<VToolbarEdgeEdge>;
7360
7479
  required: true;
7361
7480
  };
7362
- }>>, {}, {}>;
7481
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
7363
7482
 
7364
- declare const VToolbarTitle: vue.DefineComponent<{
7483
+ declare const VToolbarTitle: vue.DefineComponent<vue.ExtractPropTypes<{
7365
7484
  'v-slots': vue.PropType<{
7366
7485
  default?: (() => vue.VNodeChild) | undefined;
7367
7486
  }>;
@@ -7369,7 +7488,7 @@ declare const VToolbarTitle: vue.DefineComponent<{
7369
7488
  type: StringConstructor;
7370
7489
  default: string;
7371
7490
  };
7372
- }, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
7491
+ }>, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
7373
7492
  'v-slots': vue.PropType<{
7374
7493
  default?: (() => vue.VNodeChild) | undefined;
7375
7494
  }>;
@@ -7377,11 +7496,11 @@ declare const VToolbarTitle: vue.DefineComponent<{
7377
7496
  type: StringConstructor;
7378
7497
  default: string;
7379
7498
  };
7380
- }>>, {
7499
+ }>> & Readonly<{}>, {
7381
7500
  tag: string;
7382
7501
  }, _fastkit_vue_utils.DefinedSlots<{
7383
7502
  default?: () => any;
7384
- }>>;
7503
+ }>, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
7385
7504
 
7386
7505
  interface VuiPluginStackOptions extends VueStackServiceOptions {
7387
7506
  }
@@ -7404,4 +7523,4 @@ declare class VuiPlugin {
7404
7523
  }
7405
7524
  declare function installVuiPlugin(app: App, opts: VuiPluginOptions): App<any>;
7406
7525
 
7407
- 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, type DataTableCellSlotPayload, type DataTableDefaults, type DataTableHeader, type DataTableHeaderAlign, type DataTableItem, type DataTableItemSlotPayload, type DataTableRowSettings, type DataTableRowSettingsFn, type DefineFormSelectorComponentOptions, 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 };
7526
+ 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 };