@rebilly/revel 6.30.33 → 6.30.34
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
## [6.30.
|
|
1
|
+
## [6.30.34](https://github.com/Rebilly/rebilly/compare/revel-v6.30.33...revel-v6.30.34) (2024-07-25)
|
|
@@ -220,8 +220,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
220
220
|
default: boolean;
|
|
221
221
|
};
|
|
222
222
|
}>>, {
|
|
223
|
-
watcher: string | number | boolean | Record<string, any>;
|
|
224
223
|
isLoaderFullscreen: boolean;
|
|
224
|
+
watcher: string | number | boolean | Record<string, any>;
|
|
225
225
|
hasFrozenColumn: boolean;
|
|
226
226
|
}>;
|
|
227
227
|
export default _default;
|
|
@@ -264,8 +264,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
264
264
|
autoHide: boolean;
|
|
265
265
|
position: "bottomEnd" | "bottomStart" | "topStart" | "topEnd";
|
|
266
266
|
offset: number;
|
|
267
|
-
duration: number;
|
|
268
267
|
state: boolean;
|
|
268
|
+
duration: number;
|
|
269
269
|
escToHide: boolean;
|
|
270
270
|
globalAutoHide: boolean;
|
|
271
271
|
closeFunction: Function;
|
|
@@ -1,73 +1,66 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
isLoading: boolean;
|
|
4
|
-
rows: object[];
|
|
1
|
+
interface RepeaterItem {
|
|
2
|
+
[key: string]: any;
|
|
5
3
|
}
|
|
6
|
-
|
|
4
|
+
interface Props {
|
|
7
5
|
/**
|
|
8
6
|
* Returns some data to be rendered by the default scoped slot
|
|
9
7
|
*/
|
|
10
|
-
provider:
|
|
11
|
-
type: PropType<() => object[] | object[] | Promise<object[]>>;
|
|
12
|
-
required: true;
|
|
13
|
-
};
|
|
14
|
-
/**
|
|
15
|
-
* Defines if the loading state is fullscreen
|
|
16
|
-
*/
|
|
17
|
-
isLoaderFullscreen: {
|
|
18
|
-
type: BooleanConstructor;
|
|
19
|
-
default: boolean;
|
|
20
|
-
};
|
|
21
|
-
/**
|
|
22
|
-
* Defines if the loading is displayed as a spinner
|
|
23
|
-
*/
|
|
24
|
-
isLoaderSpinner: {
|
|
25
|
-
type: BooleanConstructor;
|
|
26
|
-
default: boolean;
|
|
27
|
-
};
|
|
28
|
-
/**
|
|
29
|
-
* Defines the property, which changes will trigger the fetching of data
|
|
30
|
-
*/
|
|
31
|
-
watcher: {
|
|
32
|
-
type: ObjectConstructor;
|
|
33
|
-
default: () => {};
|
|
34
|
-
};
|
|
35
|
-
}, unknown, State, {
|
|
36
|
-
hasRows(): boolean;
|
|
37
|
-
}, {
|
|
38
|
-
fetchData(): Promise<void>;
|
|
39
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
-
/**
|
|
41
|
-
* Returns some data to be rendered by the default scoped slot
|
|
42
|
-
*/
|
|
43
|
-
provider: {
|
|
44
|
-
type: PropType<() => object[] | object[] | Promise<object[]>>;
|
|
45
|
-
required: true;
|
|
46
|
-
};
|
|
8
|
+
provider: object[] | (() => object[]) | Promise<object[]>;
|
|
47
9
|
/**
|
|
48
10
|
* Defines if the loading state is fullscreen
|
|
49
11
|
*/
|
|
50
|
-
isLoaderFullscreen
|
|
51
|
-
type: BooleanConstructor;
|
|
52
|
-
default: boolean;
|
|
53
|
-
};
|
|
12
|
+
isLoaderFullscreen?: boolean;
|
|
54
13
|
/**
|
|
55
14
|
* Defines if the loading is displayed as a spinner
|
|
56
15
|
*/
|
|
57
|
-
isLoaderSpinner
|
|
58
|
-
type: BooleanConstructor;
|
|
59
|
-
default: boolean;
|
|
60
|
-
};
|
|
16
|
+
isLoaderSpinner?: boolean;
|
|
61
17
|
/**
|
|
62
18
|
* Defines the property, which changes will trigger the fetching of data
|
|
63
19
|
*/
|
|
64
|
-
watcher
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
};
|
|
68
|
-
}>>, {
|
|
69
|
-
watcher: Record<string, any>;
|
|
20
|
+
watcher?: object;
|
|
21
|
+
}
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
70
23
|
isLoaderFullscreen: boolean;
|
|
71
24
|
isLoaderSpinner: boolean;
|
|
25
|
+
watcher: () => {};
|
|
26
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
27
|
+
isLoaderFullscreen: boolean;
|
|
28
|
+
isLoaderSpinner: boolean;
|
|
29
|
+
watcher: () => {};
|
|
30
|
+
}>>>, {
|
|
31
|
+
isLoaderFullscreen: boolean;
|
|
32
|
+
isLoaderSpinner: boolean;
|
|
33
|
+
watcher: object;
|
|
34
|
+
}>, {
|
|
35
|
+
colgroup?(_: {}): any;
|
|
36
|
+
thead?(_: {}): any;
|
|
37
|
+
headers?(_: {}): any;
|
|
38
|
+
default?(_: {
|
|
39
|
+
item: RepeaterItem;
|
|
40
|
+
index: number;
|
|
41
|
+
}): any;
|
|
42
|
+
empty?(_: {}): any;
|
|
72
43
|
}>;
|
|
73
44
|
export default _default;
|
|
45
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
+
} : {
|
|
50
|
+
type: import('vue').PropType<T[K]>;
|
|
51
|
+
required: true;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
type __VLS_WithDefaults<P, D> = {
|
|
55
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
|
+
default: D[K];
|
|
57
|
+
}> : P[K];
|
|
58
|
+
};
|
|
59
|
+
type __VLS_Prettify<T> = {
|
|
60
|
+
[K in keyof T]: T[K];
|
|
61
|
+
} & {};
|
|
62
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
63
|
+
new (): {
|
|
64
|
+
$slots: S;
|
|
65
|
+
};
|
|
66
|
+
};
|