@vuetify/nightly 3.2.0-dev-20230405.0 → 3.2.0-dev-20230407.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/CHANGELOG.md +3 -2
- package/dist/json/importMap-labs.json +0 -4
- package/dist/json/importMap.json +52 -48
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +10 -10
- package/dist/vuetify-labs.d.ts +164 -164
- package/dist/vuetify-labs.esm.js +180 -180
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +179 -179
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +10 -1
- package/dist/vuetify.d.ts +166 -14
- package/dist/vuetify.esm.js +176 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +175 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +222 -206
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VVirtualScroll/VVirtualScroll.mjs.map +1 -0
- package/lib/components/VVirtualScroll/VVirtualScrollItem.mjs.map +1 -0
- package/lib/components/VVirtualScroll/index.mjs.map +1 -0
- package/lib/components/index.d.ts +150 -1
- package/lib/components/index.mjs +2 -1
- package/lib/components/index.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +15 -14
- package/lib/labs/VDataTable/index.d.ts +15 -15
- package/lib/labs/components.d.ts +16 -165
- package/lib/labs/components.mjs +0 -1
- package/lib/labs/components.mjs.map +1 -1
- package/package.json +1 -1
- package/lib/labs/VVirtualScroll/VVirtualScroll.mjs.map +0 -1
- package/lib/labs/VVirtualScroll/VVirtualScrollItem.mjs.map +0 -1
- package/lib/labs/VVirtualScroll/index.mjs.map +0 -1
- /package/lib/{labs → components}/VVirtualScroll/VVirtualScroll.css +0 -0
- /package/lib/{labs → components}/VVirtualScroll/VVirtualScroll.mjs +0 -0
- /package/lib/{labs → components}/VVirtualScroll/VVirtualScroll.sass +0 -0
- /package/lib/{labs → components}/VVirtualScroll/VVirtualScrollItem.mjs +0 -0
- /package/lib/{labs → components}/VVirtualScroll/index.d.ts +0 -0
- /package/lib/{labs → components}/VVirtualScroll/index.mjs +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VVirtualScroll.mjs","names":["VVirtualScrollItem","makeDimensionProps","useDimension","useDisplay","useResizeObserver","computed","onMounted","ref","watch","watchEffect","clamp","convertToUnit","createRange","genericComponent","useRender","UP","DOWN","VVirtualScroll","name","props","items","type","Array","default","itemHeight","Number","String","visibleItems","setup","_ref","slots","first","baseItemHeight","get","parseInt","value","set","val","rootEl","resizeRef","contentRect","display","sizeMap","Map","sizes","length","map","Math","max","ceil","height","handleItemResize","index","calculateOffset","slice","reduce","curr","calculateMidPointIndex","scrollTop","start","end","middle","floor","middleOffset","lastScrollTop","handleScroll","direction","midPointIndex","buffer","round","scrollToIndex","offset","last","min","computedItems","paddingTop","paddingBottom","dimensionStyles","forEach","item","indexOf","delete","_createVNode"],"sources":["../../../src/components/VVirtualScroll/VVirtualScroll.tsx"],"sourcesContent":["// Styles\nimport './VVirtualScroll.sass'\n\n// Components\nimport { VVirtualScrollItem } from './VVirtualScrollItem'\n\n// Composables\nimport { makeDimensionProps, useDimension } from '@/composables/dimensions'\nimport { useDisplay } from '@/composables/display'\nimport { useResizeObserver } from '@/composables/resizeObserver'\n\n// Utilities\nimport { computed, onMounted, ref, watch, watchEffect } from 'vue'\nimport {\n clamp,\n convertToUnit,\n createRange,\n genericComponent,\n useRender,\n} from '@/util'\n\n// Types\nimport type { SlotsToProps } from '@/util'\n\nconst UP = -1\nconst DOWN = 1\n\nexport interface VVirtualScrollSlot<T> {\n item: T\n index: number\n}\n\nexport const VVirtualScroll = genericComponent<new <T>() => {\n $props: {\n items: readonly T[]\n } & SlotsToProps<{\n default: [VVirtualScrollSlot<T>]\n }>\n}>()({\n name: 'VVirtualScroll',\n\n props: {\n items: {\n type: Array,\n default: () => ([]),\n },\n itemHeight: [Number, String],\n visibleItems: [Number, String],\n\n ...makeDimensionProps(),\n },\n\n setup (props, { slots }) {\n const first = ref(0)\n const baseItemHeight = ref(props.itemHeight)\n const itemHeight = computed({\n get: () => parseInt(baseItemHeight.value ?? 0, 10),\n set (val) {\n baseItemHeight.value = val\n },\n })\n const rootEl = ref<HTMLDivElement>()\n const { resizeRef, contentRect } = useResizeObserver()\n watchEffect(() => {\n resizeRef.value = rootEl.value\n })\n const display = useDisplay()\n\n const sizeMap = new Map<any, number>()\n let sizes = createRange(props.items.length).map(() => itemHeight.value)\n const visibleItems = computed(() => {\n return props.visibleItems\n ? parseInt(props.visibleItems, 10)\n : Math.max(12,\n Math.ceil(((contentRect.value?.height ?? display.height.value) / itemHeight.value) * 1.7 + 1)\n )\n })\n\n function handleItemResize (index: number, height: number) {\n itemHeight.value = Math.max(itemHeight.value, height)\n sizes[index] = height\n sizeMap.set(props.items[index], height)\n }\n\n function calculateOffset (index: number) {\n return sizes.slice(0, index).reduce((curr, value) => curr + (value || itemHeight.value), 0)\n }\n\n function calculateMidPointIndex (scrollTop: number) {\n let start = 0\n let end = props.items.length\n\n while (start <= end) {\n const middle = start + Math.floor((end - start) / 2)\n const middleOffset = calculateOffset(middle)\n\n if (middleOffset === scrollTop) {\n return middle\n } else if (middleOffset < scrollTop) {\n start = middle + 1\n } else if (middleOffset > scrollTop) {\n end = middle - 1\n }\n }\n\n return start\n }\n\n let lastScrollTop = 0\n function handleScroll () {\n if (!rootEl.value || !contentRect.value) return\n\n const height = contentRect.value.height\n const scrollTop = rootEl.value.scrollTop\n const direction = scrollTop < lastScrollTop ? UP : DOWN\n\n const midPointIndex = calculateMidPointIndex(scrollTop + height / 2)\n const buffer = Math.round(visibleItems.value / 3)\n if (direction === UP && midPointIndex <= first.value + (buffer * 2) - 1) {\n first.value = clamp(midPointIndex - buffer, 0, props.items.length)\n } else if (direction === DOWN && midPointIndex >= first.value + (buffer * 2) - 1) {\n first.value = clamp(midPointIndex - buffer, 0, props.items.length - visibleItems.value)\n }\n\n lastScrollTop = rootEl.value.scrollTop\n }\n\n function scrollToIndex (index: number) {\n if (!rootEl.value) return\n\n const offset = calculateOffset(index)\n rootEl.value.scrollTop = offset\n }\n\n const last = computed(() => Math.min(props.items.length, first.value + visibleItems.value))\n const computedItems = computed(() => props.items.slice(first.value, last.value))\n const paddingTop = computed(() => calculateOffset(first.value))\n const paddingBottom = computed(() => calculateOffset(props.items.length) - calculateOffset(last.value))\n\n const { dimensionStyles } = useDimension(props)\n\n onMounted(() => {\n if (!itemHeight.value) {\n // If itemHeight prop is not set, then calculate an estimated height from the average of inital items\n itemHeight.value = sizes.slice(first.value, last.value).reduce((curr, height) => curr + height, 0) / (visibleItems.value)\n }\n })\n\n watch(() => props.items.length, () => {\n sizes = createRange(props.items.length).map(() => itemHeight.value)\n sizeMap.forEach((height, item) => {\n const index = props.items.indexOf(item)\n if (index === -1) {\n sizeMap.delete(item)\n } else {\n sizes[index] = height\n }\n })\n })\n\n useRender(() => (\n <div\n ref={ rootEl }\n class=\"v-virtual-scroll\"\n onScroll={ handleScroll }\n style={ dimensionStyles.value }\n >\n <div\n class=\"v-virtual-scroll__container\"\n style={{\n paddingTop: convertToUnit(paddingTop.value),\n paddingBottom: convertToUnit(paddingBottom.value),\n }}\n >\n { computedItems.value.map((item, index) => (\n <VVirtualScrollItem\n key={ index }\n dynamicHeight={ !props.itemHeight }\n onUpdate:height={ height => handleItemResize(index + first.value, height) }\n >\n { slots.default?.({ item, index: index + first.value }) }\n </VVirtualScrollItem>\n ))}\n </div>\n </div>\n ))\n\n return {\n scrollToIndex,\n }\n },\n})\n\nexport type VVirtualScroll = InstanceType<typeof VVirtualScroll>\n"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VVirtualScrollItem.mjs","names":["useResizeObserver","useToggleScope","genericComponent","useRender","onUpdated","watch","VVirtualScrollItem","name","props","dynamicHeight","Boolean","emits","height","setup","_ref","emit","slots","resizeRef","contentRect","value","updateHeight","_createVNode","undefined","default"],"sources":["../../../src/components/VVirtualScroll/VVirtualScrollItem.tsx"],"sourcesContent":["// Composables\nimport { useResizeObserver } from '@/composables/resizeObserver'\nimport { useToggleScope } from '@/composables/toggleScope'\n\n// Utilities\nimport { genericComponent, useRender } from '@/util'\nimport { onUpdated, watch } from 'vue'\n\nexport const VVirtualScrollItem = genericComponent()({\n name: 'VVirtualScrollItem',\n\n props: {\n dynamicHeight: Boolean,\n },\n\n emits: {\n 'update:height': (height: number) => true,\n },\n\n setup (props, { emit, slots }) {\n const { resizeRef, contentRect } = useResizeObserver()\n\n useToggleScope(() => props.dynamicHeight, () => {\n watch(() => contentRect.value?.height, height => {\n if (height != null) emit('update:height', height)\n })\n })\n\n function updateHeight () {\n if (props.dynamicHeight && contentRect.value) {\n emit('update:height', contentRect.value.height)\n }\n }\n\n onUpdated(updateHeight)\n\n useRender(() => (\n <div\n ref={ props.dynamicHeight ? resizeRef : undefined }\n class=\"v-virtual-scroll__item\"\n >\n { slots.default?.() }\n </div>\n ))\n },\n})\n"],"mappings":";AAAA;AAAA,SACSA,iBAAiB;AAAA,SACjBC,cAAc,6CAEvB;AAAA,SACSC,gBAAgB,EAAEC,SAAS;AACpC,SAASC,SAAS,EAAEC,KAAK,QAAQ,KAAK;AAEtC,OAAO,MAAMC,kBAAkB,GAAGJ,gBAAgB,EAAE,CAAC;EACnDK,IAAI,EAAE,oBAAoB;EAE1BC,KAAK,EAAE;IACLC,aAAa,EAAEC;EACjB,CAAC;EAEDC,KAAK,EAAE;IACL,eAAe,EAAGC,MAAc,IAAK;EACvC,CAAC;EAEDC,KAAKA,CAAEL,KAAK,EAAAM,IAAA,EAAmB;IAAA,IAAjB;MAAEC,IAAI;MAAEC;IAAM,CAAC,GAAAF,IAAA;IAC3B,MAAM;MAAEG,SAAS;MAAEC;IAAY,CAAC,GAAGlB,iBAAiB,EAAE;IAEtDC,cAAc,CAAC,MAAMO,KAAK,CAACC,aAAa,EAAE,MAAM;MAC9CJ,KAAK,CAAC,MAAMa,WAAW,CAACC,KAAK,EAAEP,MAAM,EAAEA,MAAM,IAAI;QAC/C,IAAIA,MAAM,IAAI,IAAI,EAAEG,IAAI,CAAC,eAAe,EAAEH,MAAM,CAAC;MACnD,CAAC,CAAC;IACJ,CAAC,CAAC;IAEF,SAASQ,YAAYA,CAAA,EAAI;MACvB,IAAIZ,KAAK,CAACC,aAAa,IAAIS,WAAW,CAACC,KAAK,EAAE;QAC5CJ,IAAI,CAAC,eAAe,EAAEG,WAAW,CAACC,KAAK,CAACP,MAAM,CAAC;MACjD;IACF;IAEAR,SAAS,CAACgB,YAAY,CAAC;IAEvBjB,SAAS,CAAC,MAAAkB,YAAA;MAAA,OAEAb,KAAK,CAACC,aAAa,GAAGQ,SAAS,GAAGK,SAAS;MAAA,SAC3C;IAAwB,IAE5BN,KAAK,CAACO,OAAO,IAAI,EAEtB,CAAC;EACJ;AACF,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","names":["VVirtualScroll"],"sources":["../../../src/components/VVirtualScroll/index.ts"],"sourcesContent":["export { VVirtualScroll } from './VVirtualScroll'\n"],"mappings":"SAASA,cAAc"}
|
|
@@ -56219,6 +56219,155 @@ declare const VValidation: {
|
|
|
56219
56219
|
}>>;
|
|
56220
56220
|
type VValidation = InstanceType<typeof VValidation>;
|
|
56221
56221
|
|
|
56222
|
+
interface VVirtualScrollSlot<T> {
|
|
56223
|
+
item: T;
|
|
56224
|
+
index: number;
|
|
56225
|
+
}
|
|
56226
|
+
declare const VVirtualScroll: {
|
|
56227
|
+
new (...args: any[]): {
|
|
56228
|
+
$: vue.ComponentInternalInstance;
|
|
56229
|
+
$data: {};
|
|
56230
|
+
$props: Partial<{}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
56231
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
56232
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
56233
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
56234
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
56235
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
56236
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
56237
|
+
items: {
|
|
56238
|
+
type: ArrayConstructor;
|
|
56239
|
+
default: () => never[];
|
|
56240
|
+
};
|
|
56241
|
+
itemHeight: (StringConstructor | NumberConstructor)[];
|
|
56242
|
+
visibleItems: (StringConstructor | NumberConstructor)[];
|
|
56243
|
+
}, "$children" | "v-slot:default" | "$slots" | "v-slots" | "items">>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>;
|
|
56244
|
+
$attrs: {
|
|
56245
|
+
[x: string]: unknown;
|
|
56246
|
+
};
|
|
56247
|
+
$refs: {
|
|
56248
|
+
[x: string]: unknown;
|
|
56249
|
+
};
|
|
56250
|
+
$slots: Readonly<{
|
|
56251
|
+
[name: string]: vue.Slot | undefined;
|
|
56252
|
+
}>;
|
|
56253
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
56254
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
56255
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
56256
|
+
$el: any;
|
|
56257
|
+
$options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
56258
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
56259
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
56260
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
56261
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
56262
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
56263
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
56264
|
+
items: {
|
|
56265
|
+
type: ArrayConstructor;
|
|
56266
|
+
default: () => never[];
|
|
56267
|
+
};
|
|
56268
|
+
itemHeight: (StringConstructor | NumberConstructor)[];
|
|
56269
|
+
visibleItems: (StringConstructor | NumberConstructor)[];
|
|
56270
|
+
}, "$children" | "v-slot:default" | "$slots" | "v-slots" | "items">>>, {
|
|
56271
|
+
scrollToIndex: (index: number) => void;
|
|
56272
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "$slots" | "v-slots" | "items">, string, {}, {}, string> & {
|
|
56273
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
56274
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
56275
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
56276
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
56277
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
56278
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
56279
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
56280
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
56281
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
56282
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
56283
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
56284
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
56285
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
56286
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
56287
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
56288
|
+
};
|
|
56289
|
+
$forceUpdate: () => void;
|
|
56290
|
+
$nextTick: typeof vue.nextTick;
|
|
56291
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
56292
|
+
} & Readonly<vue.ExtractPropTypes<Omit<{
|
|
56293
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
56294
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
56295
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
56296
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
56297
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
56298
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
56299
|
+
items: {
|
|
56300
|
+
type: ArrayConstructor;
|
|
56301
|
+
default: () => never[];
|
|
56302
|
+
};
|
|
56303
|
+
itemHeight: (StringConstructor | NumberConstructor)[];
|
|
56304
|
+
visibleItems: (StringConstructor | NumberConstructor)[];
|
|
56305
|
+
}, "$children" | "v-slot:default" | "$slots" | "v-slots" | "items">>> & vue.ShallowUnwrapRef<{
|
|
56306
|
+
scrollToIndex: (index: number) => void;
|
|
56307
|
+
}> & {} & vue.ComponentCustomProperties & {};
|
|
56308
|
+
__isFragment?: undefined;
|
|
56309
|
+
__isTeleport?: undefined;
|
|
56310
|
+
__isSuspense?: undefined;
|
|
56311
|
+
} & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
56312
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
56313
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
56314
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
56315
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
56316
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
56317
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
56318
|
+
items: {
|
|
56319
|
+
type: ArrayConstructor;
|
|
56320
|
+
default: () => never[];
|
|
56321
|
+
};
|
|
56322
|
+
itemHeight: (StringConstructor | NumberConstructor)[];
|
|
56323
|
+
visibleItems: (StringConstructor | NumberConstructor)[];
|
|
56324
|
+
}, "$children" | "v-slot:default" | "$slots" | "v-slots" | "items">>>, {
|
|
56325
|
+
scrollToIndex: (index: number) => void;
|
|
56326
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "$slots" | "v-slots" | "items">, string, {}, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T_1>() => {
|
|
56327
|
+
$props: {
|
|
56328
|
+
items: readonly T_1[];
|
|
56329
|
+
} & {
|
|
56330
|
+
$children?: vue.VNodeChild | ((args_0: VVirtualScrollSlot<T_1>) => vue.VNodeChild) | {
|
|
56331
|
+
default?: ((args_0: VVirtualScrollSlot<T_1>) => vue.VNodeChild) | undefined;
|
|
56332
|
+
};
|
|
56333
|
+
$slots?: {
|
|
56334
|
+
default?: ((args_0: VVirtualScrollSlot<T_1>) => vue.VNodeChild) | undefined;
|
|
56335
|
+
} | undefined;
|
|
56336
|
+
'v-slots'?: {
|
|
56337
|
+
default?: false | ((args_0: VVirtualScrollSlot<T_1>) => vue.VNodeChild) | undefined;
|
|
56338
|
+
} | undefined;
|
|
56339
|
+
} & {
|
|
56340
|
+
"v-slot:default"?: false | ((args_0: VVirtualScrollSlot<T_1>) => vue.VNodeChild) | undefined;
|
|
56341
|
+
};
|
|
56342
|
+
}) & FilterPropsOptions<{
|
|
56343
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
56344
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
56345
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
56346
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
56347
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
56348
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
56349
|
+
items: {
|
|
56350
|
+
type: ArrayConstructor;
|
|
56351
|
+
default: () => never[];
|
|
56352
|
+
};
|
|
56353
|
+
itemHeight: (StringConstructor | NumberConstructor)[];
|
|
56354
|
+
visibleItems: (StringConstructor | NumberConstructor)[];
|
|
56355
|
+
}, vue.ExtractPropTypes<{
|
|
56356
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
56357
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
56358
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
56359
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
56360
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
56361
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
56362
|
+
items: {
|
|
56363
|
+
type: ArrayConstructor;
|
|
56364
|
+
default: () => never[];
|
|
56365
|
+
};
|
|
56366
|
+
itemHeight: (StringConstructor | NumberConstructor)[];
|
|
56367
|
+
visibleItems: (StringConstructor | NumberConstructor)[];
|
|
56368
|
+
}>>;
|
|
56369
|
+
type VVirtualScroll = InstanceType<typeof VVirtualScroll>;
|
|
56370
|
+
|
|
56222
56371
|
type ControlProps = {
|
|
56223
56372
|
icon: IconValue;
|
|
56224
56373
|
class: string;
|
|
@@ -59488,4 +59637,4 @@ declare const VExpandXTransition: {
|
|
|
59488
59637
|
}>>;
|
|
59489
59638
|
type VExpandXTransition = InstanceType<typeof VExpandXTransition>;
|
|
59490
59639
|
|
|
59491
|
-
export { VAlert, VAlertTitle, VApp, VAppBar, VAppBarNavIcon, VAppBarTitle, VAutocomplete, VAvatar, VBadge, VBanner, VBannerActions, VBannerText, VBottomNavigation, VBreadcrumbs, VBreadcrumbsDivider, VBreadcrumbsItem, VBtn, VBtnGroup, VBtnToggle, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VCarousel, VCarouselItem, VCheckbox, VCheckboxBtn, VChip, VChipGroup, VClassIcon, VCode, VCol, VColorPicker, VCombobox, VComponentIcon, VContainer, VCounter, VDefaultsProvider, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VDivider, VExpandTransition, VExpandXTransition, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VExpansionPanels, VFabTransition, VFadeTransition, VField, VFieldLabel, VFileInput, VFooter, VForm, VHover, VIcon, VImg, VInput, VItem, VItemGroup, VKbd, VLabel, VLayout, VLayoutItem, VLazy, VLigatureIcon, VList, VListGroup, VListImg, VListItem, VListItemAction, VListItemMedia, VListItemSubtitle, VListItemTitle, VListSubheader, VLocaleProvider, VMain, VMenu, VMessages, VNavigationDrawer, VNoSsr, VOverlay, VPagination, VParallax, VProgressCircular, VProgressLinear, VRadio, VRadioGroup, VRangeSlider, VRating, VResponsive, VRow, VScaleTransition, VScrollXReverseTransition, VScrollXTransition, VScrollYReverseTransition, VScrollYTransition, VSelect, VSelectionControl, VSelectionControlGroup, VSheet, VSlideGroup, VSlideGroupItem, VSlideXReverseTransition, VSlideXTransition, VSlideYReverseTransition, VSlideYTransition, VSlider, VSnackbar, VSpacer, VSvgIcon, VSwitch, VSystemBar, VTab, VTable, VTabs, VTextField, VTextarea, VThemeProvider, VTimeline, VTimelineItem, VToolbar, VToolbarItems, VToolbarTitle, VTooltip, VValidation, VWindow, VWindowItem };
|
|
59640
|
+
export { VAlert, VAlertTitle, VApp, VAppBar, VAppBarNavIcon, VAppBarTitle, VAutocomplete, VAvatar, VBadge, VBanner, VBannerActions, VBannerText, VBottomNavigation, VBreadcrumbs, VBreadcrumbsDivider, VBreadcrumbsItem, VBtn, VBtnGroup, VBtnToggle, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VCarousel, VCarouselItem, VCheckbox, VCheckboxBtn, VChip, VChipGroup, VClassIcon, VCode, VCol, VColorPicker, VCombobox, VComponentIcon, VContainer, VCounter, VDefaultsProvider, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VDivider, VExpandTransition, VExpandXTransition, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VExpansionPanels, VFabTransition, VFadeTransition, VField, VFieldLabel, VFileInput, VFooter, VForm, VHover, VIcon, VImg, VInput, VItem, VItemGroup, VKbd, VLabel, VLayout, VLayoutItem, VLazy, VLigatureIcon, VList, VListGroup, VListImg, VListItem, VListItemAction, VListItemMedia, VListItemSubtitle, VListItemTitle, VListSubheader, VLocaleProvider, VMain, VMenu, VMessages, VNavigationDrawer, VNoSsr, VOverlay, VPagination, VParallax, VProgressCircular, VProgressLinear, VRadio, VRadioGroup, VRangeSlider, VRating, VResponsive, VRow, VScaleTransition, VScrollXReverseTransition, VScrollXTransition, VScrollYReverseTransition, VScrollYTransition, VSelect, VSelectionControl, VSelectionControlGroup, VSheet, VSlideGroup, VSlideGroupItem, VSlideXReverseTransition, VSlideXTransition, VSlideYReverseTransition, VSlideYTransition, VSlider, VSnackbar, VSpacer, VSvgIcon, VSwitch, VSystemBar, VTab, VTable, VTabs, VTextField, VTextarea, VThemeProvider, VTimeline, VTimelineItem, VToolbar, VToolbarItems, VToolbarTitle, VTooltip, VValidation, VVirtualScroll, VWindow, VWindowItem };
|
package/lib/components/index.mjs
CHANGED
|
@@ -77,7 +77,8 @@ export * from "./VThemeProvider/index.mjs";
|
|
|
77
77
|
export * from "./VTimeline/index.mjs"; // export * from './VTimePicker'
|
|
78
78
|
export * from "./VToolbar/index.mjs";
|
|
79
79
|
export * from "./VTooltip/index.mjs"; // export * from './VTreeview'
|
|
80
|
-
export * from "./VValidation/index.mjs";
|
|
80
|
+
export * from "./VValidation/index.mjs";
|
|
81
|
+
export * from "./VVirtualScroll/index.mjs";
|
|
81
82
|
export * from "./VWindow/index.mjs";
|
|
82
83
|
export * from "./transitions/index.mjs";
|
|
83
84
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":[],"sources":["../../src/components/index.ts"],"sourcesContent":["export * from './VApp'\nexport * from './VAppBar'\nexport * from './VAlert'\nexport * from './VAutocomplete'\nexport * from './VAvatar'\nexport * from './VBadge'\nexport * from './VBanner'\nexport * from './VBottomNavigation'\n// export * from './VBottomSheet'\nexport * from './VBreadcrumbs'\nexport * from './VBtn'\nexport * from './VBtnGroup'\nexport * from './VBtnToggle'\n// export * from './VCalendar'\nexport * from './VCard'\nexport * from './VCarousel'\nexport * from './VCheckbox'\nexport * from './VChip'\nexport * from './VChipGroup'\nexport * from './VCode'\nexport * from './VColorPicker'\n// export * from './VContent'\nexport * from './VCombobox'\nexport * from './VCounter'\n// export * from './VData'\n// export * from './VDataIterator'\n// export * from './VDataTable'\n// export * from './VDatePicker'\nexport * from './VDefaultsProvider'\nexport * from './VDialog'\nexport * from './VDivider'\nexport * from './VExpansionPanel'\nexport * from './VField'\nexport * from './VFileInput'\nexport * from './VFooter'\nexport * from './VForm'\nexport * from './VGrid'\nexport * from './VHover'\nexport * from './VIcon'\nexport * from './VImg'\nexport * from './VInput'\nexport * from './VItemGroup'\nexport * from './VKbd'\nexport * from './VLabel'\nexport * from './VLayout'\nexport * from './VLazy'\nexport * from './VList'\nexport * from './VLocaleProvider'\nexport * from './VMain'\nexport * from './VMenu'\nexport * from './VMessages'\nexport * from './VNavigationDrawer'\nexport * from './VNoSsr'\n// export * from './VOtpInput'\n// export * from './VOverflowBtn'\nexport * from './VOverlay'\nexport * from './VPagination'\nexport * from './VParallax'\n// export * from './VPicker'\nexport * from './VProgressCircular'\nexport * from './VProgressLinear'\nexport * from './VRadio'\nexport * from './VRadioGroup'\nexport * from './VRangeSlider'\nexport * from './VRating'\nexport * from './VResponsive'\nexport * from './VSelect'\nexport * from './VSelectionControl'\nexport * from './VSelectionControlGroup'\nexport * from './VSheet'\n// export * from './VSkeletonLoader'\nexport * from './VSlideGroup'\nexport * from './VSlider'\nexport * from './VSnackbar'\n// export * from './VSparkline'\n// export * from './VSpeedDial'\n// export * from './VStepper'\nexport * from './VSwitch'\nexport * from './VSystemBar'\nexport * from './VTabs'\nexport * from './VTable'\nexport * from './VTextarea'\nexport * from './VTextField'\nexport * from './VThemeProvider'\nexport * from './VTimeline'\n// export * from './VTimePicker'\nexport * from './VToolbar'\nexport * from './VTooltip'\n// export * from './VTreeview'\nexport * from './VValidation'\
|
|
1
|
+
{"version":3,"file":"index.mjs","names":[],"sources":["../../src/components/index.ts"],"sourcesContent":["export * from './VApp'\nexport * from './VAppBar'\nexport * from './VAlert'\nexport * from './VAutocomplete'\nexport * from './VAvatar'\nexport * from './VBadge'\nexport * from './VBanner'\nexport * from './VBottomNavigation'\n// export * from './VBottomSheet'\nexport * from './VBreadcrumbs'\nexport * from './VBtn'\nexport * from './VBtnGroup'\nexport * from './VBtnToggle'\n// export * from './VCalendar'\nexport * from './VCard'\nexport * from './VCarousel'\nexport * from './VCheckbox'\nexport * from './VChip'\nexport * from './VChipGroup'\nexport * from './VCode'\nexport * from './VColorPicker'\n// export * from './VContent'\nexport * from './VCombobox'\nexport * from './VCounter'\n// export * from './VData'\n// export * from './VDataIterator'\n// export * from './VDataTable'\n// export * from './VDatePicker'\nexport * from './VDefaultsProvider'\nexport * from './VDialog'\nexport * from './VDivider'\nexport * from './VExpansionPanel'\nexport * from './VField'\nexport * from './VFileInput'\nexport * from './VFooter'\nexport * from './VForm'\nexport * from './VGrid'\nexport * from './VHover'\nexport * from './VIcon'\nexport * from './VImg'\nexport * from './VInput'\nexport * from './VItemGroup'\nexport * from './VKbd'\nexport * from './VLabel'\nexport * from './VLayout'\nexport * from './VLazy'\nexport * from './VList'\nexport * from './VLocaleProvider'\nexport * from './VMain'\nexport * from './VMenu'\nexport * from './VMessages'\nexport * from './VNavigationDrawer'\nexport * from './VNoSsr'\n// export * from './VOtpInput'\n// export * from './VOverflowBtn'\nexport * from './VOverlay'\nexport * from './VPagination'\nexport * from './VParallax'\n// export * from './VPicker'\nexport * from './VProgressCircular'\nexport * from './VProgressLinear'\nexport * from './VRadio'\nexport * from './VRadioGroup'\nexport * from './VRangeSlider'\nexport * from './VRating'\nexport * from './VResponsive'\nexport * from './VSelect'\nexport * from './VSelectionControl'\nexport * from './VSelectionControlGroup'\nexport * from './VSheet'\n// export * from './VSkeletonLoader'\nexport * from './VSlideGroup'\nexport * from './VSlider'\nexport * from './VSnackbar'\n// export * from './VSparkline'\n// export * from './VSpeedDial'\n// export * from './VStepper'\nexport * from './VSwitch'\nexport * from './VSystemBar'\nexport * from './VTabs'\nexport * from './VTable'\nexport * from './VTextarea'\nexport * from './VTextField'\nexport * from './VThemeProvider'\nexport * from './VTimeline'\n// export * from './VTimePicker'\nexport * from './VToolbar'\nexport * from './VTooltip'\n// export * from './VTreeview'\nexport * from './VValidation'\nexport * from './VVirtualScroll'\nexport * from './VWindow'\nexport * from './transitions'\n"],"mappings":";;;;;;;+CAQA;AAAA;AAAA;AAAA;AAAA,wCAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,0CAQA;AAAA;AAAA,sCAGA;AACA;AACA;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oCA0BA;AACA;AAAA;AAAA;AAAA,uCAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oCAYA;AAAA;AAAA;AAAA,uCAIA;AACA;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uCASA;AAAA;AAAA,sCAGA;AAAA;AAAA;AAAA;AAAA"}
|
package/lib/entry-bundler.mjs
CHANGED
|
@@ -10,7 +10,7 @@ export const createVuetify = function () {
|
|
|
10
10
|
...options
|
|
11
11
|
});
|
|
12
12
|
};
|
|
13
|
-
export const version = "3.2.0-dev-
|
|
13
|
+
export const version = "3.2.0-dev-20230407.0";
|
|
14
14
|
createVuetify.version = version;
|
|
15
15
|
export { components, directives };
|
|
16
16
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -317,8 +317,9 @@ declare module '@vue/runtime-core' {
|
|
|
317
317
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
318
318
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
319
319
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
320
|
-
|
|
320
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
321
321
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
322
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
322
323
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
323
324
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
324
325
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
@@ -326,7 +327,6 @@ declare module '@vue/runtime-core' {
|
|
|
326
327
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
327
328
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
328
329
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
329
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
330
330
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
331
331
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
332
332
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
@@ -341,13 +341,12 @@ declare module '@vue/runtime-core' {
|
|
|
341
341
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
342
342
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
343
343
|
VChip: typeof import('vuetify/components')['VChip']
|
|
344
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
345
344
|
VCode: typeof import('vuetify/components')['VCode']
|
|
346
345
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
347
346
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
348
347
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
349
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
350
348
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
349
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
351
350
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
352
351
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
353
352
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
@@ -355,19 +354,18 @@ declare module '@vue/runtime-core' {
|
|
|
355
354
|
VField: typeof import('vuetify/components')['VField']
|
|
356
355
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
357
356
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
357
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
358
358
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
359
359
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
360
360
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
361
361
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
362
362
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
363
363
|
VImg: typeof import('vuetify/components')['VImg']
|
|
364
|
-
|
|
364
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
365
365
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
366
366
|
VItem: typeof import('vuetify/components')['VItem']
|
|
367
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
368
367
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
369
368
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
370
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
371
369
|
VList: typeof import('vuetify/components')['VList']
|
|
372
370
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
373
371
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -377,18 +375,20 @@ declare module '@vue/runtime-core' {
|
|
|
377
375
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
378
376
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
379
377
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
378
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
380
379
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
381
380
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
382
381
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
383
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
384
382
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
383
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
385
384
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
386
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
387
385
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
386
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
388
387
|
VRating: typeof import('vuetify/components')['VRating']
|
|
389
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
390
388
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
389
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
391
390
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
391
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
392
392
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
393
393
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
394
394
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
@@ -397,9 +397,9 @@ declare module '@vue/runtime-core' {
|
|
|
397
397
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
398
398
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
399
399
|
VTab: typeof import('vuetify/components')['VTab']
|
|
400
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
400
401
|
VTable: typeof import('vuetify/components')['VTable']
|
|
401
402
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
402
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
403
403
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
404
404
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
405
405
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
@@ -408,13 +408,12 @@ declare module '@vue/runtime-core' {
|
|
|
408
408
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
409
409
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
410
410
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
411
|
-
|
|
411
|
+
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
412
412
|
VForm: typeof import('vuetify/components')['VForm']
|
|
413
413
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
414
414
|
VCol: typeof import('vuetify/components')['VCol']
|
|
415
415
|
VRow: typeof import('vuetify/components')['VRow']
|
|
416
416
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
417
|
-
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
418
417
|
VHover: typeof import('vuetify/components')['VHover']
|
|
419
418
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
420
419
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
@@ -425,7 +424,9 @@ declare module '@vue/runtime-core' {
|
|
|
425
424
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
426
425
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
427
426
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
427
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
428
428
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
429
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
429
430
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
430
431
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
431
432
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -442,6 +443,6 @@ declare module '@vue/runtime-core' {
|
|
|
442
443
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
443
444
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
444
445
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
445
|
-
|
|
446
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
446
447
|
}
|
|
447
448
|
}
|
|
@@ -2104,14 +2104,14 @@ declare const VDataTableVirtual: {
|
|
|
2104
2104
|
hover: boolean;
|
|
2105
2105
|
fixedHeader: boolean;
|
|
2106
2106
|
fixedFooter: boolean;
|
|
2107
|
+
itemHeight: string | number;
|
|
2108
|
+
visibleItems: string | number;
|
|
2107
2109
|
multiSort: boolean;
|
|
2108
2110
|
mustSort: boolean;
|
|
2109
2111
|
groupBy: SortItem[];
|
|
2110
2112
|
showSelect: boolean;
|
|
2111
2113
|
expandOnClick: boolean;
|
|
2112
2114
|
showExpand: boolean;
|
|
2113
|
-
visibleItems: string | number;
|
|
2114
|
-
itemHeight: string | number;
|
|
2115
2115
|
}> & Omit<{
|
|
2116
2116
|
expanded: string[];
|
|
2117
2117
|
headers: DataTableHeader[] | DataTableHeader[][];
|
|
@@ -2130,14 +2130,14 @@ declare const VDataTableVirtual: {
|
|
|
2130
2130
|
hover: boolean;
|
|
2131
2131
|
fixedHeader: boolean;
|
|
2132
2132
|
fixedFooter: boolean;
|
|
2133
|
+
itemHeight: string | number;
|
|
2134
|
+
visibleItems: string | number;
|
|
2133
2135
|
multiSort: boolean;
|
|
2134
2136
|
mustSort: boolean;
|
|
2135
2137
|
groupBy: SortItem[];
|
|
2136
2138
|
showSelect: boolean;
|
|
2137
2139
|
expandOnClick: boolean;
|
|
2138
2140
|
showExpand: boolean;
|
|
2139
|
-
visibleItems: string | number;
|
|
2140
|
-
itemHeight: string | number;
|
|
2141
2141
|
} & {
|
|
2142
2142
|
search?: string | undefined;
|
|
2143
2143
|
height?: string | number | undefined;
|
|
@@ -2410,7 +2410,7 @@ declare const VDataTableVirtual: {
|
|
|
2410
2410
|
item: DataTableItem;
|
|
2411
2411
|
}) => any) | undefined;
|
|
2412
2412
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
2413
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "expanded" | "headers" | "noDataText" | "sortBy" | "items" | "modelValue" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "hideNoData" | "filterMode" | "noFilter" | "hover" | "fixedHeader" | "fixedFooter" | "
|
|
2413
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "expanded" | "headers" | "noDataText" | "sortBy" | "items" | "modelValue" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "hideNoData" | "filterMode" | "noFilter" | "hover" | "fixedHeader" | "fixedFooter" | "itemHeight" | "visibleItems" | "multiSort" | "mustSort" | "groupBy" | "showSelect" | "expandOnClick" | "showExpand">;
|
|
2414
2414
|
$attrs: {
|
|
2415
2415
|
[x: string]: unknown;
|
|
2416
2416
|
};
|
|
@@ -2444,14 +2444,14 @@ declare const VDataTableVirtual: {
|
|
|
2444
2444
|
hover: boolean;
|
|
2445
2445
|
fixedHeader: boolean;
|
|
2446
2446
|
fixedFooter: boolean;
|
|
2447
|
+
itemHeight: string | number;
|
|
2448
|
+
visibleItems: string | number;
|
|
2447
2449
|
multiSort: boolean;
|
|
2448
2450
|
mustSort: boolean;
|
|
2449
2451
|
groupBy: SortItem[];
|
|
2450
2452
|
showSelect: boolean;
|
|
2451
2453
|
expandOnClick: boolean;
|
|
2452
2454
|
showExpand: boolean;
|
|
2453
|
-
visibleItems: string | number;
|
|
2454
|
-
itemHeight: string | number;
|
|
2455
2455
|
} & {
|
|
2456
2456
|
search?: string | undefined;
|
|
2457
2457
|
height?: string | number | undefined;
|
|
@@ -2751,14 +2751,14 @@ declare const VDataTableVirtual: {
|
|
|
2751
2751
|
hover: boolean;
|
|
2752
2752
|
fixedHeader: boolean;
|
|
2753
2753
|
fixedFooter: boolean;
|
|
2754
|
+
itemHeight: string | number;
|
|
2755
|
+
visibleItems: string | number;
|
|
2754
2756
|
multiSort: boolean;
|
|
2755
2757
|
mustSort: boolean;
|
|
2756
2758
|
groupBy: SortItem[];
|
|
2757
2759
|
showSelect: boolean;
|
|
2758
2760
|
expandOnClick: boolean;
|
|
2759
2761
|
showExpand: boolean;
|
|
2760
|
-
visibleItems: string | number;
|
|
2761
|
-
itemHeight: string | number;
|
|
2762
2762
|
}, {}, string> & {
|
|
2763
2763
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
2764
2764
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2797,14 +2797,14 @@ declare const VDataTableVirtual: {
|
|
|
2797
2797
|
hover: boolean;
|
|
2798
2798
|
fixedHeader: boolean;
|
|
2799
2799
|
fixedFooter: boolean;
|
|
2800
|
+
itemHeight: string | number;
|
|
2801
|
+
visibleItems: string | number;
|
|
2800
2802
|
multiSort: boolean;
|
|
2801
2803
|
mustSort: boolean;
|
|
2802
2804
|
groupBy: SortItem[];
|
|
2803
2805
|
showSelect: boolean;
|
|
2804
2806
|
expandOnClick: boolean;
|
|
2805
2807
|
showExpand: boolean;
|
|
2806
|
-
visibleItems: string | number;
|
|
2807
|
-
itemHeight: string | number;
|
|
2808
2808
|
} & {
|
|
2809
2809
|
search?: string | undefined;
|
|
2810
2810
|
height?: string | number | undefined;
|
|
@@ -3099,14 +3099,14 @@ declare const VDataTableVirtual: {
|
|
|
3099
3099
|
hover: boolean;
|
|
3100
3100
|
fixedHeader: boolean;
|
|
3101
3101
|
fixedFooter: boolean;
|
|
3102
|
+
itemHeight: string | number;
|
|
3103
|
+
visibleItems: string | number;
|
|
3102
3104
|
multiSort: boolean;
|
|
3103
3105
|
mustSort: boolean;
|
|
3104
3106
|
groupBy: SortItem[];
|
|
3105
3107
|
showSelect: boolean;
|
|
3106
3108
|
expandOnClick: boolean;
|
|
3107
3109
|
showExpand: boolean;
|
|
3108
|
-
visibleItems: string | number;
|
|
3109
|
-
itemHeight: string | number;
|
|
3110
3110
|
} & {
|
|
3111
3111
|
search?: string | undefined;
|
|
3112
3112
|
height?: string | number | undefined;
|
|
@@ -3406,14 +3406,14 @@ declare const VDataTableVirtual: {
|
|
|
3406
3406
|
hover: boolean;
|
|
3407
3407
|
fixedHeader: boolean;
|
|
3408
3408
|
fixedFooter: boolean;
|
|
3409
|
+
itemHeight: string | number;
|
|
3410
|
+
visibleItems: string | number;
|
|
3409
3411
|
multiSort: boolean;
|
|
3410
3412
|
mustSort: boolean;
|
|
3411
3413
|
groupBy: SortItem[];
|
|
3412
3414
|
showSelect: boolean;
|
|
3413
3415
|
expandOnClick: boolean;
|
|
3414
3416
|
showExpand: boolean;
|
|
3415
|
-
visibleItems: string | number;
|
|
3416
|
-
itemHeight: string | number;
|
|
3417
3417
|
}, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
3418
3418
|
customFilter: vue.PropType<FilterFunction>;
|
|
3419
3419
|
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|