Skip to content

Commit 592854e

Browse files
Build
1 parent ea8b15a commit 592854e

6 files changed

+2730
-2527
lines changed

Diff for: dist/plugin/VDrilldownTable.vue.d.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -190,15 +190,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
190190
sortBy: () => never[];
191191
tableType: () => {};
192192
}>>> & {
193-
"onClick:row"?: ((...args: any[]) => any) | undefined;
193+
"onUpdate:sortBy"?: ((...args: any[]) => any) | undefined;
194194
"onUpdate:expanded"?: ((...args: any[]) => any) | undefined;
195+
"onUpdate:page"?: ((...args: any[]) => any) | undefined;
196+
"onUpdate:itemsPerPage"?: ((...args: any[]) => any) | undefined;
197+
"onUpdate:options"?: ((...args: any[]) => any) | undefined;
198+
"onClick:row"?: ((...args: any[]) => any) | undefined;
195199
"onClick:row:checkbox"?: ((...args: any[]) => any) | undefined;
196-
"onUpdate:sortBy"?: ((...args: any[]) => any) | undefined;
197200
"onUpdate:search"?: ((...args: any[]) => any) | undefined;
198201
"onUpdate:drilldown"?: ((...args: any[]) => any) | undefined;
199-
"onUpdate:options"?: ((...args: any[]) => any) | undefined;
200-
"onUpdate:itemsPerPage"?: ((...args: any[]) => any) | undefined;
201-
"onUpdate:page"?: ((...args: any[]) => any) | undefined;
202202
}, {
203203
filterKeys: string | string[];
204204
noFilter: boolean;
@@ -214,8 +214,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
214214
showSelect: boolean;
215215
selectStrategy: "page" | "all" | "single";
216216
items: any[];
217-
itemValue: string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
218-
itemSelectable: string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
217+
itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
218+
itemSelectable: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
219219
returnObject: boolean;
220220
expandOnClick: boolean;
221221
showExpand: boolean;

Diff for: dist/plugin/slots/ItemSlot.vue.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
44
"click:row": (...args: any[]) => void;
55
"click:row:checkbox": (...args: any[]) => void;
66
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ItemSlotProps>, {}>>> & {
7-
"onClick:row"?: ((...args: any[]) => any) | undefined;
87
"onUpdate:expanded"?: ((...args: any[]) => any) | undefined;
8+
"onClick:row"?: ((...args: any[]) => any) | undefined;
99
"onClick:row:checkbox"?: ((...args: any[]) => any) | undefined;
1010
}, {}, {}>, Readonly<Record<string, any>>>;
1111
export default _default;

Diff for: dist/plugin/slots/TheadSlot.vue.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
77
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<THeadSlotProps>, {
88
showSelect: boolean;
99
}>>> & {
10-
"onClick:selectAll"?: ((...args: any[]) => any) | undefined;
1110
"onUpdate:sortBy"?: ((...args: any[]) => any) | undefined;
11+
"onClick:selectAll"?: ((...args: any[]) => any) | undefined;
1212
}, {
1313
showSelect: boolean;
1414
}, {}>;

Diff for: dist/types/index.d.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import { CSSProperties, JSXComponent, StyleValue, MaybeRef } from 'vue';
22
import { IconOptions, ThemeInstance } from 'vuetify';
33
import type { EventBusKey } from '@vueuse/core';
4-
import type { VProgressCircular, VProgressLinear } from 'vuetify/components';
5-
import type { VDataTable, VDataTableServer, VDataTableRow, VSkeletonLoader } from 'vuetify/labs/components';
4+
import type { VDataTable, VDataTableRow, VDataTableServer, VProgressCircular, VProgressLinear, VSkeletonLoader } from 'vuetify/components';
65
export type Density = 'default' | 'comfortable' | 'compact';
76
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
87
type SelectItemKey = boolean | string | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any);

Diff for: dist/vuetify-drilldown-table.cjs.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)