@rebilly/revel 6.12.0 → 6.12.1
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-repeater/r-repeater.vue.d.ts +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/revel.mjs +16 -3
- package/dist/revel.umd.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.12.1](https://github.com/Rebilly/rebilly/compare/revel-v6.12.0...revel-v6.12.1) (2024-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **revel:** Update Revel to expose directives ([#2939](https://github.com/Rebilly/rebilly/issues/2939)) ([3d4d33d](https://github.com/Rebilly/rebilly/commit/3d4d33db79d601ca6dfc60a4f0f1db972820755b))
|
|
7
|
+
|
|
1
8
|
## [6.12.0](https://github.com/Rebilly/rebilly/compare/revel-v6.11.0...revel-v6.12.0) (2024-01-16)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -18,6 +18,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
type: BooleanConstructor;
|
|
19
19
|
default: boolean;
|
|
20
20
|
};
|
|
21
|
+
/**
|
|
22
|
+
* Defines if the loading is displayed as a spinner
|
|
23
|
+
*/
|
|
24
|
+
isLoaderSpinner: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
21
28
|
/**
|
|
22
29
|
* Defines the property, which changes will trigger the fetching of data
|
|
23
30
|
*/
|
|
@@ -44,6 +51,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
51
|
type: BooleanConstructor;
|
|
45
52
|
default: boolean;
|
|
46
53
|
};
|
|
54
|
+
/**
|
|
55
|
+
* Defines if the loading is displayed as a spinner
|
|
56
|
+
*/
|
|
57
|
+
isLoaderSpinner: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
47
61
|
/**
|
|
48
62
|
* Defines the property, which changes will trigger the fetching of data
|
|
49
63
|
*/
|
|
@@ -54,5 +68,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
54
68
|
}>>, {
|
|
55
69
|
watcher: Record<string, any>;
|
|
56
70
|
isLoaderFullscreen: boolean;
|
|
71
|
+
isLoaderSpinner: boolean;
|
|
57
72
|
}>;
|
|
58
73
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { createRToastManager } from './components/r-toast/r-toast-manager';
|
|
|
3
3
|
import * as tokens from './styles/tokens';
|
|
4
4
|
import * as icons from './components/r-icon/r-icon-sprites';
|
|
5
5
|
export * from './components';
|
|
6
|
+
export * from './directives';
|
|
6
7
|
export { createRToastManager };
|
|
7
8
|
export { tokens, icons };
|
|
8
9
|
/**
|
package/dist/revel.mjs
CHANGED
|
@@ -10792,6 +10792,13 @@ const xb = /* @__PURE__ */ Z(k7, [["render", V7]]), H7 = U({
|
|
|
10792
10792
|
type: Boolean,
|
|
10793
10793
|
default: !0
|
|
10794
10794
|
},
|
|
10795
|
+
/**
|
|
10796
|
+
* Defines if the loading is displayed as a spinner
|
|
10797
|
+
*/
|
|
10798
|
+
isLoaderSpinner: {
|
|
10799
|
+
type: Boolean,
|
|
10800
|
+
default: !1
|
|
10801
|
+
},
|
|
10795
10802
|
/**
|
|
10796
10803
|
* Defines the property, which changes will trigger the fetching of data
|
|
10797
10804
|
*/
|
|
@@ -10841,8 +10848,9 @@ function Y7(M, b, z, p, o, O) {
|
|
|
10841
10848
|
return r(), d("div", F7, [
|
|
10842
10849
|
M.isLoading ? (r(), n0(e, {
|
|
10843
10850
|
key: 0,
|
|
10844
|
-
fullscreen: M.isLoaderFullscreen
|
|
10845
|
-
|
|
10851
|
+
fullscreen: M.isLoaderFullscreen,
|
|
10852
|
+
spinner: M.isLoaderSpinner
|
|
10853
|
+
}, null, 8, ["fullscreen", "spinner"])) : (r(), d(R0, { key: 1 }, [
|
|
10846
10854
|
M.hasRows ? (r(), d("table", j7, [
|
|
10847
10855
|
X(M.$slots, "colgroup"),
|
|
10848
10856
|
X(M.$slots, "thead", {}, () => [
|
|
@@ -15899,9 +15907,14 @@ export {
|
|
|
15899
15907
|
Bg as RTile,
|
|
15900
15908
|
k3 as RToast,
|
|
15901
15909
|
_g as RToggle,
|
|
15910
|
+
Kp as clickOutside,
|
|
15911
|
+
Nc as content,
|
|
15902
15912
|
xg as createRToastManager,
|
|
15903
15913
|
aN as default,
|
|
15914
|
+
Up as fsExclude,
|
|
15904
15915
|
nN as icons,
|
|
15905
15916
|
eN as install,
|
|
15906
|
-
|
|
15917
|
+
io as lazy,
|
|
15918
|
+
AN as tokens,
|
|
15919
|
+
so as tooltip
|
|
15907
15920
|
};
|