@rebilly/revel 6.30.19 → 6.30.20
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 +1 -1
- package/dist/components/r-loader/r-loader.vue.d.ts +34 -52
- package/dist/revel.mjs +492 -523
- package/dist/revel.umd.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
## [6.30.
|
|
1
|
+
## [6.30.20](https://github.com/Rebilly/rebilly/compare/revel-v6.30.19...revel-v6.30.20) (2024-07-16)
|
|
@@ -1,70 +1,52 @@
|
|
|
1
|
-
|
|
1
|
+
interface Props {
|
|
2
2
|
/**
|
|
3
3
|
* Boolean value to show or hide component
|
|
4
4
|
*/
|
|
5
|
-
show
|
|
6
|
-
type: BooleanConstructor;
|
|
7
|
-
default: boolean;
|
|
8
|
-
};
|
|
5
|
+
show?: boolean;
|
|
9
6
|
/**
|
|
10
7
|
* Flag to start / stop animation
|
|
11
8
|
*/
|
|
12
|
-
loading
|
|
13
|
-
type: BooleanConstructor;
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
9
|
+
loading?: boolean;
|
|
16
10
|
/**
|
|
17
11
|
* Fill parent component or entire application
|
|
18
12
|
*/
|
|
19
|
-
fullscreen
|
|
20
|
-
type: BooleanConstructor;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
13
|
+
fullscreen?: boolean;
|
|
23
14
|
/**
|
|
24
15
|
* Changes the loader icon to a spinner
|
|
25
16
|
*/
|
|
26
|
-
spinner
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
show: {
|
|
40
|
-
type: BooleanConstructor;
|
|
41
|
-
default: boolean;
|
|
42
|
-
};
|
|
43
|
-
/**
|
|
44
|
-
* Flag to start / stop animation
|
|
45
|
-
*/
|
|
46
|
-
loading: {
|
|
47
|
-
type: BooleanConstructor;
|
|
48
|
-
default: boolean;
|
|
49
|
-
};
|
|
50
|
-
/**
|
|
51
|
-
* Fill parent component or entire application
|
|
52
|
-
*/
|
|
53
|
-
fullscreen: {
|
|
54
|
-
type: BooleanConstructor;
|
|
55
|
-
default: boolean;
|
|
56
|
-
};
|
|
57
|
-
/**
|
|
58
|
-
* Changes the loader icon to a spinner
|
|
59
|
-
*/
|
|
60
|
-
spinner: {
|
|
61
|
-
type: BooleanConstructor;
|
|
62
|
-
default: boolean;
|
|
63
|
-
};
|
|
64
|
-
}>>, {
|
|
17
|
+
spinner?: boolean;
|
|
18
|
+
}
|
|
19
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
20
|
+
show: boolean;
|
|
21
|
+
loading: boolean;
|
|
22
|
+
fullscreen: boolean;
|
|
23
|
+
spinner: boolean;
|
|
24
|
+
}>, {}, 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>, {
|
|
25
|
+
show: boolean;
|
|
26
|
+
loading: boolean;
|
|
27
|
+
fullscreen: boolean;
|
|
28
|
+
spinner: boolean;
|
|
29
|
+
}>>>, {
|
|
65
30
|
loading: boolean;
|
|
66
31
|
show: boolean;
|
|
67
32
|
fullscreen: boolean;
|
|
68
33
|
spinner: boolean;
|
|
69
34
|
}>;
|
|
70
35
|
export default _default;
|
|
36
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
37
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
38
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
39
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
40
|
+
} : {
|
|
41
|
+
type: import('vue').PropType<T[K]>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
type __VLS_WithDefaults<P, D> = {
|
|
46
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
47
|
+
default: D[K];
|
|
48
|
+
}> : P[K];
|
|
49
|
+
};
|
|
50
|
+
type __VLS_Prettify<T> = {
|
|
51
|
+
[K in keyof T]: T[K];
|
|
52
|
+
} & {};
|