@rebilly/revel 6.7.0 → 6.8.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 +7 -0
- package/dist/components/r-loader/r-loader.vue.d.ts +15 -0
- package/dist/revel.mjs +619 -602
- package/dist/revel.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.8.0](https://github.com/Rebilly/rebilly/compare/revel-v6.7.0...revel-v6.8.0) (2024-01-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **revel:** Add spinner to RLoader ([#2847](https://github.com/Rebilly/rebilly/issues/2847)) ([1a38752](https://github.com/Rebilly/rebilly/commit/1a38752d211c0619261c778aae7b04bcbeab1403))
|
|
7
|
+
|
|
1
8
|
## [6.7.0](https://github.com/Rebilly/rebilly/compare/revel-v6.6.2...revel-v6.7.0) (2024-01-05)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -20,6 +20,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
type: BooleanConstructor;
|
|
21
21
|
default: boolean;
|
|
22
22
|
};
|
|
23
|
+
/**
|
|
24
|
+
* Changes the loader icon to a spinner
|
|
25
|
+
*/
|
|
26
|
+
spinner: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
23
30
|
}, unknown, unknown, {
|
|
24
31
|
classes(): {
|
|
25
32
|
'r-is-loading': boolean;
|
|
@@ -47,9 +54,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
54
|
type: BooleanConstructor;
|
|
48
55
|
default: boolean;
|
|
49
56
|
};
|
|
57
|
+
/**
|
|
58
|
+
* Changes the loader icon to a spinner
|
|
59
|
+
*/
|
|
60
|
+
spinner: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
50
64
|
}>>, {
|
|
51
65
|
loading: boolean;
|
|
52
66
|
show: boolean;
|
|
53
67
|
fullscreen: boolean;
|
|
68
|
+
spinner: boolean;
|
|
54
69
|
}>;
|
|
55
70
|
export default _default;
|