@fastkit/vui 0.9.0 → 0.10.1

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.
@@ -1,25 +1,16 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var viteKit = require('@fastkit/vite-kit');
6
- var path = require('path');
7
- var fs = require('fs-extra');
8
- var nodeUtil = require('@fastkit/node-util');
9
- var eta = require('eta');
10
- var tinyLogger = require('@fastkit/tiny-logger');
11
-
12
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e["default"] : e; }
13
-
14
- var path__default = /*#__PURE__*/_interopDefaultLegacy(path);
15
- var fs__default = /*#__PURE__*/_interopDefaultLegacy(fs);
1
+ import { dynamicSrcVitePlugin } from '@fastkit/vite-kit';
2
+ import path from 'path';
3
+ import fs from 'fs-extra';
4
+ import { getDirname, findPackageDirSync } from '@fastkit/node-util';
5
+ import { render } from 'eta';
6
+ import { TinyLogger, createTinyError } from '@fastkit/tiny-logger';
16
7
 
17
8
  const name = 'vui';
18
- new tinyLogger.TinyLogger(name);
19
- const VuiError = tinyLogger.createTinyError(name);
9
+ new TinyLogger(name);
10
+ const VuiError = createTinyError(name);
20
11
 
21
- const VUI_PACKAGE_DIR = path__default.resolve(__dirname, '../..');
22
- const STYLE_AFTER_EFFECTS_PATH = path__default.join(VUI_PACKAGE_DIR, 'src/styles/after-effects.scss');
12
+ const VUI_PACKAGE_DIR = path.resolve(getDirname(import.meta.url), '../..');
13
+ const STYLE_AFTER_EFFECTS_PATH = path.join(VUI_PACKAGE_DIR, 'src/styles/after-effects.scss');
23
14
  const COLOR_DUMP_STYLE = `@include dump-color-scheme(true);`;
24
15
  const TEMPLATE = `
25
16
  /* eslint-disable */
@@ -55,7 +46,7 @@ export function installVui(settings: { app: App, router: Router }, options?: Raw
55
46
  export default installVui;
56
47
  `.trim();
57
48
  async function renderTemplate({ colorScheme, mediaMatch, uiSettings, icons, __dev, }) {
58
- const result = await eta.render(TEMPLATE, {
49
+ const result = await render(TEMPLATE, {
59
50
  colorScheme,
60
51
  mediaMatch,
61
52
  uiSettings: JSON.stringify(uiSettings),
@@ -68,19 +59,19 @@ async function renderTemplate({ colorScheme, mediaMatch, uiSettings, icons, __de
68
59
  return result;
69
60
  }
70
61
  function defaultDynamicDest() {
71
- return path__default.resolve('.vui');
62
+ return path.resolve('.vui');
72
63
  }
73
64
  function getBuiltinsDir() {
74
- const pkgDir = nodeUtil.findPackageDirSync(undefined, true);
65
+ const pkgDir = findPackageDirSync(undefined, true);
75
66
  if (!pkgDir) {
76
67
  throw new Error(`missing package directory`);
77
68
  }
78
- return path__default.join(pkgDir, 'node_modules/@fastkit/vui/dist/assets/builtins');
69
+ return path.join(pkgDir, 'node_modules/@fastkit/vui/dist/assets/builtins');
79
70
  }
80
71
  function viteVuiPlugin(options = {}) {
81
72
  const plugins = [];
82
73
  const builtinsDir = getBuiltinsDir();
83
- const { colorScheme = path__default.join(builtinsDir, 'color-scheme'), mediaMatch = path__default.join(builtinsDir, 'media-match'), iconFont, iconFontDefaults, onBooted, onBootError, uiSettings = {
74
+ const { colorScheme = path.join(builtinsDir, 'color-scheme'), mediaMatch = path.join(builtinsDir, 'media-match'), iconFont, iconFontDefaults, onBooted, onBootError, uiSettings = {
84
75
  primaryScope: 'primary',
85
76
  plainVariant: 'plain',
86
77
  containedVariant: 'contained',
@@ -131,18 +122,18 @@ function viteVuiPlugin(options = {}) {
131
122
  else {
132
123
  dynamicDest = _dynamicDest;
133
124
  }
134
- const colorSchemeSrc = path__default.resolve(colorScheme);
135
- const colorSchemeDest = path__default.join(dynamicDest, 'color-scheme');
136
- const mediaMatchDest = path__default.join(dynamicDest, 'media-match');
125
+ const colorSchemeSrc = path.resolve(colorScheme);
126
+ const colorSchemeDest = path.join(dynamicDest, 'color-scheme');
127
+ const mediaMatchDest = path.join(dynamicDest, 'media-match');
137
128
  const dts = `
138
129
  /// <reference path="./color-scheme/color-scheme.info.ts" />
139
130
  /// <reference path="./icon-font/index.ts" />
140
131
  /// <reference path="./media-match/media-match.ts" />
141
132
  export {};
142
133
  `.trim();
143
- fs__default.ensureDirSync(dynamicDest);
144
- fs__default.writeFileSync(path__default.join(dynamicDest, 'setup.scss'), COLOR_DUMP_STYLE);
145
- fs__default.writeFileSync(path__default.join(dynamicDest, 'vui.d.ts'), dts);
134
+ fs.ensureDirSync(dynamicDest);
135
+ fs.writeFileSync(path.join(dynamicDest, 'setup.scss'), COLOR_DUMP_STYLE);
136
+ fs.writeFileSync(path.join(dynamicDest, 'vui.d.ts'), dts);
146
137
  let iconFontEntries = iconFont || [
147
138
  {
148
139
  src: '@mdi',
@@ -156,18 +147,18 @@ export {};
156
147
  };
157
148
  });
158
149
  }
159
- plugins.push(viteKit.dynamicSrcVitePlugin({
150
+ plugins.push(dynamicSrcVitePlugin({
160
151
  colorScheme: {
161
152
  src: colorSchemeSrc,
162
153
  dest: colorSchemeDest,
163
154
  },
164
155
  mediaMatch: {
165
- src: path__default.resolve(mediaMatch),
156
+ src: path.resolve(mediaMatch),
166
157
  dest: mediaMatchDest,
167
158
  },
168
159
  iconFont: {
169
160
  entries: iconFontEntries,
170
- dest: path__default.join(dynamicDest, 'icon-font'),
161
+ dest: path.join(dynamicDest, 'icon-font'),
171
162
  },
172
163
  onBooted,
173
164
  onBootError,
@@ -176,7 +167,7 @@ export {};
176
167
  name: 'vite:vui',
177
168
  enforce: 'pre',
178
169
  async config(config) {
179
- await fs__default.writeFile(path__default.join(dynamicDest, 'installer.ts'), await renderTemplate(settings));
170
+ await fs.writeFile(path.join(dynamicDest, 'installer.ts'), await renderTemplate(settings));
180
171
  const ssr = config.ssr || {};
181
172
  ssr.noExternal = ssr.noExternal || [];
182
173
  ssr.noExternal.push(/\/vui\/dist\/assets\//);
@@ -186,8 +177,8 @@ export {};
186
177
  };
187
178
  plugins.push(plugin);
188
179
  const settings = {
189
- colorScheme: path__default.join(colorSchemeDest, 'color-scheme.info'),
190
- mediaMatch: path__default.join(mediaMatchDest, 'media-match'),
180
+ colorScheme: path.join(colorSchemeDest, 'color-scheme.info'),
181
+ mediaMatch: path.join(mediaMatchDest, 'media-match'),
191
182
  uiSettings,
192
183
  icons,
193
184
  __dev,
@@ -199,4 +190,4 @@ export {};
199
190
  };
200
191
  }
201
192
 
202
- exports.viteVuiPlugin = viteVuiPlugin;
193
+ export { viteVuiPlugin };
package/dist/vui.d.ts CHANGED
@@ -13,7 +13,6 @@ import { DefineComponent } from 'vue';
13
13
  import { Editor } from '@tiptap/vue-3';
14
14
  import { EditorOptions } from '@tiptap/vue-3';
15
15
  import { EditorView } from 'prosemirror-view';
16
- import { EmitsOptions } from 'vue';
17
16
  import { EV } from '@fastkit/ev';
18
17
  import { Extension } from '@tiptap/vue-3';
19
18
  import { Extension as Extension_2 } from '@tiptap/core';
@@ -1568,7 +1567,7 @@ export declare function resolveRawWysiwygEditorTools(rawTools: RawWysiwygEditorT
1568
1567
 
1569
1568
  export declare function resolveRawWysiwygExtensions(raws: RawWysiwygExtension[], ctx: WysiwygEditorInitializeContext): AnyExtension[];
1570
1569
 
1571
- declare interface Rule<C extends any = any> {
1570
+ declare interface Rule<C = any> {
1572
1571
  <EC extends C = C>(constraints: Partial<EC>, overRides?: string | Partial<RuleSettings<EC>>): Rule<EC>;
1573
1572
  $name: string;
1574
1573
  validate: (value: any, options?: RuleValidateOptions) => RuleResult;
@@ -1589,7 +1588,7 @@ declare interface Rule<C extends any = any> {
1589
1588
 
1590
1589
  declare type RuleResult = Promise<void | typeof ValidateCancelSymbol | ValidationError>;
1591
1590
 
1592
- declare type RuleSettings<C extends any = any> = {
1591
+ declare type RuleSettings<C = any> = {
1593
1592
  name: string;
1594
1593
  validate: (value: any, constraints: C) => RuleSettingsValidatePayload;
1595
1594
  message?: RuleSettingsMessage<C>;
@@ -1601,7 +1600,7 @@ declare type RuleSettings<C extends any = any> = {
1601
1600
  constraints?: any;
1602
1601
  };
1603
1602
 
1604
- declare type RuleSettingsMessage<C extends any = any> = string | ((value: any, ctx: RuleValidateContext<C>) => string);
1603
+ declare type RuleSettingsMessage<C = any> = string | ((value: any, ctx: RuleValidateContext<C>) => string);
1605
1604
 
1606
1605
  declare type RuleSettingsValidatePayload = RuleSettingsValidateSource | Promise<RuleSettingsValidateSource>;
1607
1606
 
@@ -1615,7 +1614,7 @@ true
1615
1614
  /** When there is a nested validation result object */
1616
1615
  | ValidationError[];
1617
1616
 
1618
- declare interface RuleValidateContext<C extends any = any> {
1617
+ declare interface RuleValidateContext<C = any> {
1619
1618
  name: string;
1620
1619
  value: any;
1621
1620
  constraints: C;
@@ -2415,7 +2414,7 @@ declare interface ValidationError {
2415
2414
 
2416
2415
  declare const ValidationErrorSymbol = "ValidationError";
2417
2416
 
2418
- export declare const VApp: DefineComponent<{}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, EmitsOptions, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
2417
+ export declare const VApp: DefineComponent<{}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
2419
2418
 
2420
2419
  export declare const VAvatar: DefineComponent<{
2421
2420
  size: {
@@ -2456,7 +2455,7 @@ export declare const VAvatar: DefineComponent<{
2456
2455
  color: PropType<ScopeName>;
2457
2456
  textColor: PropType<PaletteName>;
2458
2457
  borderColor: PropType<PaletteName>;
2459
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2458
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2460
2459
  size: {
2461
2460
  type: PropType<number | "sm" | "md" | "lg">;
2462
2461
  default: string;
@@ -2509,7 +2508,7 @@ export declare const VBreadcrumbs: DefineComponent<{
2509
2508
  default: () => never[];
2510
2509
  };
2511
2510
  divider: PropType<VNodeChild | ((vui: VuiService) => VNodeChild)>;
2512
- }, () => JSX.Element | undefined, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2511
+ }, () => JSX.Element | undefined, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2513
2512
  items: {
2514
2513
  type: PropType<BreadcrumbsItem[]>;
2515
2514
  default: () => never[];
@@ -3115,7 +3114,7 @@ export declare const VButton: DefineComponent<{
3115
3114
  onAnimationiteration: PropType<((payload: AnimationEvent) => void) | undefined>;
3116
3115
  onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
3117
3116
  onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
3118
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
3117
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
3119
3118
  size: {
3120
3119
  type: PropType<"sm" | "md" | "lg">;
3121
3120
  validator: (value: any) => boolean;
@@ -3348,7 +3347,7 @@ export declare const VButtonGroup: DefineComponent<{
3348
3347
  color: PropType<ScopeName>;
3349
3348
  textColor: PropType<PaletteName>;
3350
3349
  borderColor: PropType<PaletteName>;
3351
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
3350
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
3352
3351
  disabled: BooleanConstructor;
3353
3352
  size: {
3354
3353
  type: PropType<"sm" | "md" | "lg">;
@@ -3578,7 +3577,7 @@ export declare const VCard: DefineComponent<{
3578
3577
  onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
3579
3578
  onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
3580
3579
  elevation: PropType<VuiElevationValue>;
3581
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
3580
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
3582
3581
  disabled: BooleanConstructor;
3583
3582
  tag: PropType<string>;
3584
3583
  class: PropType<any>;
@@ -3789,9 +3788,9 @@ export declare const VCard: DefineComponent<{
3789
3788
  square: boolean;
3790
3789
  }>;
3791
3790
 
3792
- export declare const VCardActions: DefineComponent<{}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, EmitsOptions, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
3791
+ export declare const VCardActions: DefineComponent<{}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
3793
3792
 
3794
- export declare const VCardContent: DefineComponent<{}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, EmitsOptions, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
3793
+ export declare const VCardContent: DefineComponent<{}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
3795
3794
 
3796
3795
  export declare const VCheckbox: DefineComponent<{
3797
3796
  indeterminate: BooleanConstructor;
@@ -4196,7 +4195,7 @@ export declare const VChip: DefineComponent<{
4196
4195
  color: PropType<ScopeName>;
4197
4196
  textColor: PropType<PaletteName>;
4198
4197
  borderColor: PropType<PaletteName>;
4199
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
4198
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
4200
4199
  size: {
4201
4200
  type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
4202
4201
  default: string;
@@ -4644,7 +4643,7 @@ export declare const VDrawerLayout: DefineComponent<{
4644
4643
  onAnimationiteration: PropType<((payload: AnimationEvent) => void) | undefined>;
4645
4644
  onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
4646
4645
  onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
4647
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
4646
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
4648
4647
  'v-slots': PropType<ResolveRawSlots<{
4649
4648
  header: void;
4650
4649
  default: void;
@@ -5252,7 +5251,7 @@ export declare const VGridContainer: DefineComponent<{
5252
5251
  onAnimationiteration: PropType<((payload: AnimationEvent) => void) | undefined>;
5253
5252
  onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
5254
5253
  onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
5255
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
5254
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
5256
5255
  wrapperTag: {
5257
5256
  type: StringConstructor;
5258
5257
  default: string;
@@ -5622,7 +5621,7 @@ export declare const VGridItem: DefineComponent<{
5622
5621
  onAnimationiteration: PropType<((payload: AnimationEvent) => void) | undefined>;
5623
5622
  onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
5624
5623
  onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
5625
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
5624
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
5626
5625
  tag: {
5627
5626
  type: StringConstructor;
5628
5627
  default: string;
@@ -5991,7 +5990,7 @@ export declare const VHero: DefineComponent<{
5991
5990
  onAnimationiteration: PropType<((payload: AnimationEvent) => void) | undefined>;
5992
5991
  onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
5993
5992
  onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
5994
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
5993
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
5995
5994
  'v-slots': PropType<ResolveRawSlots_2<{
5996
5995
  default: void;
5997
5996
  adornment: void;
@@ -6299,7 +6298,7 @@ export declare const VNavigation: DefineComponent<{
6299
6298
  default: boolean;
6300
6299
  };
6301
6300
  caption: PropType<VNodeChild | (() => VNodeChild)>;
6302
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
6301
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
6303
6302
  items: {
6304
6303
  type: PropType<NavigationItemInput[]>;
6305
6304
  required: true;
@@ -6762,7 +6761,7 @@ export declare const VOptionGroup: DefineComponent<{
6762
6761
  isNotSelected: ComputedRef<boolean>;
6763
6762
  isAllSelected: ComputedRef<boolean>;
6764
6763
  isIndeterminate: ComputedRef<boolean>;
6765
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
6764
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
6766
6765
  'v-slots': PropType<ResolveRawSlots<{
6767
6766
  label: FormSelectorItemGroupControl;
6768
6767
  }>>;
@@ -7048,7 +7047,7 @@ export declare const VPaper: DefineComponent<{
7048
7047
  onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
7049
7048
  onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
7050
7049
  elevation: PropType<VuiElevationValue>;
7051
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
7050
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
7052
7051
  square: BooleanConstructor;
7053
7052
  headerProps: PropType<ARGS>;
7054
7053
  bodyProps: PropType<ARGS>;
@@ -7857,7 +7856,7 @@ export declare const VSkeltonLoaderBone: DefineComponent<{
7857
7856
  type: StringConstructor;
7858
7857
  default: string;
7859
7858
  };
7860
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
7859
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
7861
7860
  tag: {
7862
7861
  type: StringConstructor;
7863
7862
  default: string;
@@ -8806,7 +8805,7 @@ export declare const VToolbar: DefineComponent<{
8806
8805
  textColor: PropType<PaletteName>;
8807
8806
  borderColor: PropType<PaletteName>;
8808
8807
  elevation: PropType<VuiElevationValue>;
8809
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
8808
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
8810
8809
  dense: BooleanConstructor;
8811
8810
  variant: PropType<ColorVariant>;
8812
8811
  theme: PropType<ThemeName>;
@@ -8823,7 +8822,7 @@ export declare const VToolbarEdge: DefineComponent<{
8823
8822
  type: PropType<VToolbarEdgeEdge>;
8824
8823
  required: true;
8825
8824
  };
8826
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
8825
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
8827
8826
  edge: {
8828
8827
  type: PropType<VToolbarEdgeEdge>;
8829
8828
  required: true;
@@ -9044,7 +9043,7 @@ export declare const VToolbarMenu: DefineComponent<{
9044
9043
  onAnimationiteration: PropType<((payload: AnimationEvent) => void) | undefined>;
9045
9044
  onTransitionend: PropType<((payload: TransitionEvent) => void) | undefined>;
9046
9045
  onTransitionstart: PropType<((payload: TransitionEvent) => void) | undefined>;
9047
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
9046
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
9048
9047
  size: {
9049
9048
  type: PropType<"sm" | "md" | "lg">;
9050
9049
  validator: (value: any) => boolean;
@@ -9270,7 +9269,7 @@ export declare const VToolbarTitle: DefineComponent<{
9270
9269
  type: StringConstructor;
9271
9270
  default: string;
9272
9271
  };
9273
- }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
9272
+ }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
9274
9273
  tag: {
9275
9274
  type: StringConstructor;
9276
9275
  default: string;