Skip to content

Commit 68c31c7

Browse files
Build
1 parent b24d68f commit 68c31c7

File tree

8 files changed

+1918
-1877
lines changed

8 files changed

+1918
-1877
lines changed

Diff for: dist/plugin/components/TableLoader.vue.d.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2626
type: __PropType<string | boolean | undefined>;
2727
required: true;
2828
};
29+
loaderProps: {
30+
type: __PropType<import('../../types').LoaderProps>;
31+
required: true;
32+
};
2933
loadingText: {
3034
type: __PropType<string | undefined>;
3135
required: false;
@@ -36,10 +40,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
3640
required: false;
3741
default: string;
3842
};
39-
skeltonType: {
40-
type: __PropType<string | undefined>;
41-
required: true;
42-
};
4343
textLoader: {
4444
type: __PropType<boolean | undefined>;
4545
required: false;
@@ -72,6 +72,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
7272
type: __PropType<string | boolean | undefined>;
7373
required: true;
7474
};
75+
loaderProps: {
76+
type: __PropType<import('../../types').LoaderProps>;
77+
required: true;
78+
};
7579
loadingText: {
7680
type: __PropType<string | undefined>;
7781
required: false;
@@ -82,19 +86,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
8286
required: false;
8387
default: string;
8488
};
85-
skeltonType: {
86-
type: __PropType<string | undefined>;
87-
required: true;
88-
};
8989
textLoader: {
9090
type: __PropType<boolean | undefined>;
9191
required: false;
9292
default: boolean;
9393
};
9494
}>>, {
9595
height: string | number | undefined;
96-
size: string | number | undefined;
9796
loadingText: string | undefined;
97+
size: string | number | undefined;
9898
loaderType: string | false | string[] | null | undefined;
9999
textLoader: boolean | undefined;
100100
}, {}>;

Diff for: dist/plugin/composables/levelColors.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1+
import { ThemeInstance } from 'vuetify';
12
import { UseGetLevelColors } from '../../types';
3+
/**
4+
* Converts single color
5+
*/
6+
export declare const getSingleColor: (color: string, theme: ThemeInstance) => string;
27
/**
38
* Gets the colors for the current drilldown level
49
*/

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

+8-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1414
type: __PropType<any[] | undefined>;
1515
required: true;
1616
};
17+
loaderProps: {
18+
type: __PropType<import('../../types').LoaderProps>;
19+
required: true;
20+
};
1721
loaderSettings: {
1822
type: __PropType<{
1923
colspan: number;
@@ -22,7 +26,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
2226
loading: string | boolean | undefined;
2327
loadingText?: string | undefined;
2428
size?: string | number | undefined;
25-
skeltonType: string | undefined;
2629
textLoader?: boolean | undefined;
2730
}>;
2831
required: true;
@@ -98,6 +101,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
98101
type: __PropType<any[] | undefined>;
99102
required: true;
100103
};
104+
loaderProps: {
105+
type: __PropType<import('../../types').LoaderProps>;
106+
required: true;
107+
};
101108
loaderSettings: {
102109
type: __PropType<{
103110
colspan: number;
@@ -106,7 +113,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
106113
loading: string | boolean | undefined;
107114
loadingText?: string | undefined;
108115
size?: string | number | undefined;
109-
skeltonType: string | undefined;
110116
textLoader?: boolean | undefined;
111117
}>;
112118
required: true;

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

+19-30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type { PropType as __PropType } from 'vue';
2-
import { SearchProps } from '../../types';
32
declare const _sfc_main: import("vue").DefineComponent<{
43
items: {
54
type: __PropType<any[] | undefined>;
@@ -13,21 +12,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
1312
type: __PropType<string | boolean | undefined>;
1413
required: true;
1514
};
15+
searchContainerCols: {
16+
type: __PropType<import('../../types').SearchContainerCols>;
17+
required: true;
18+
};
19+
searchEvents: {
20+
type: __PropType<import('../../types').KeyStringAny<any> | undefined>;
21+
required: false;
22+
};
1623
searchProps: {
17-
type: __PropType<SearchProps | undefined>;
24+
type: __PropType<import('../../types').KeyStringAny<any> | undefined>;
1825
required: false;
19-
default: () => {
20-
cols: {
21-
lg: number;
22-
md: number;
23-
sm: number;
24-
xl: number;
25-
xs: number;
26-
xxl: number;
27-
};
28-
density: string;
29-
variant: string;
30-
};
3126
};
3227
showSearch: {
3328
type: __PropType<boolean>;
@@ -71,21 +66,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
7166
type: __PropType<string | boolean | undefined>;
7267
required: true;
7368
};
69+
searchContainerCols: {
70+
type: __PropType<import('../../types').SearchContainerCols>;
71+
required: true;
72+
};
73+
searchEvents: {
74+
type: __PropType<import('../../types').KeyStringAny<any> | undefined>;
75+
required: false;
76+
};
7477
searchProps: {
75-
type: __PropType<SearchProps | undefined>;
78+
type: __PropType<import('../../types').KeyStringAny<any> | undefined>;
7679
required: false;
77-
default: () => {
78-
cols: {
79-
lg: number;
80-
md: number;
81-
sm: number;
82-
xl: number;
83-
xs: number;
84-
xxl: number;
85-
};
86-
density: string;
87-
variant: string;
88-
};
8980
};
9081
showSearch: {
9182
type: __PropType<boolean>;
@@ -119,7 +110,5 @@ declare const _sfc_main: import("vue").DefineComponent<{
119110
}>> & {
120111
"onUpdate:search"?: ((...args: any[]) => any) | undefined;
121112
"onClick:selectAll"?: ((...args: any[]) => any) | undefined;
122-
}, {
123-
searchProps: SearchProps | undefined;
124-
}, {}>;
113+
}, {}, {}>;
125114
export default _sfc_main;

Diff for: dist/plugin/utils/props.d.ts

+28-21
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@ export declare const AllProps: {
2020
readonly bg: "primary";
2121
readonly text: "on-primary";
2222
};
23-
readonly loader: {
24-
readonly circular: "primary";
25-
readonly color: "primary";
26-
readonly linear: "surface-variant";
27-
readonly text: "surface-variant";
28-
};
2923
readonly percentageChange: 25;
3024
readonly percentageDirection: "desc";
3125
};
@@ -48,8 +42,24 @@ export declare const AllProps: {
4842
itemsPerPage: number;
4943
level: number;
5044
levels: number;
51-
loaderHeight: string;
52-
loaderSize: string;
45+
loaderProps: () => {
46+
readonly circular: {
47+
readonly bgColor: "theme-surface";
48+
readonly color: "primary";
49+
readonly indeterminate: true;
50+
};
51+
readonly linear: {
52+
readonly color: "surface-variant";
53+
readonly height: "2px";
54+
readonly indeterminate: true;
55+
};
56+
readonly skelton: {
57+
readonly type: "heading@1";
58+
};
59+
readonly text: {
60+
readonly color: "surface-variant";
61+
};
62+
};
5363
loaderType: string;
5464
loading: boolean;
5565
loadingText: string;
@@ -60,20 +70,18 @@ export declare const AllProps: {
6070
page: number;
6171
returnObject: boolean;
6272
search: string;
73+
searchContainerCols: () => {
74+
lg: number;
75+
md: number;
76+
sm: number;
77+
xl: number;
78+
xs: number;
79+
xxl: number;
80+
};
6381
searchDebounce: number;
82+
searchEvents: () => {};
6483
searchMaxWait: number;
65-
searchProps: () => {
66-
readonly cols: {
67-
readonly lg: 3;
68-
readonly md: 6;
69-
readonly sm: 12;
70-
readonly xl: 3;
71-
readonly xs: 12;
72-
readonly xxl: 2;
73-
};
74-
readonly density: "comfortable";
75-
readonly variant: "underlined";
76-
};
84+
searchProps: () => {};
7785
selectStrategy: "page";
7886
separator: "default";
7987
server: boolean;
@@ -82,7 +90,6 @@ export declare const AllProps: {
8290
showFooterRow: boolean;
8391
showSearch: boolean;
8492
showSelect: boolean;
85-
skeltonType: string;
8693
sortAscIcon: string;
8794
sortBy: () => never[];
8895
tableType: () => {};

0 commit comments

Comments
 (0)