@rebilly/revel 6.22.0 → 6.22.2
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 +9 -0
- package/dist/components/r-button/r-button.vue.d.ts +2 -0
- package/dist/revel.mjs +3 -2
- package/dist/revel.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [6.22.2](https://github.com/Rebilly/rebilly/compare/revel-v6.22.1...revel-v6.22.2) (2024-03-28)
|
|
2
|
+
|
|
3
|
+
## [6.22.1](https://github.com/Rebilly/rebilly/compare/revel-v6.22.0...revel-v6.22.1) (2024-03-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **revel:** Button icons optical spacing correction ([#4352](https://github.com/Rebilly/rebilly/issues/4352)) ([f0c2c2a](https://github.com/Rebilly/rebilly/commit/f0c2c2a30038efa4693ae52961ade400f92b4123))
|
|
9
|
+
|
|
1
10
|
## [6.22.0](https://github.com/Rebilly/rebilly/compare/revel-v6.21.0...revel-v6.22.0) (2024-03-27)
|
|
2
11
|
|
|
3
12
|
|
|
@@ -88,11 +88,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
88
88
|
'r-has-icon-left': boolean;
|
|
89
89
|
'r-has-icon-right': boolean;
|
|
90
90
|
'r-has-icon': boolean;
|
|
91
|
+
'r-is-loading': boolean;
|
|
91
92
|
'r-button-type-link': boolean;
|
|
92
93
|
} | {
|
|
93
94
|
'r-has-icon-left': boolean;
|
|
94
95
|
'r-has-icon-right': boolean;
|
|
95
96
|
'r-has-icon': boolean;
|
|
97
|
+
'r-is-loading': boolean;
|
|
96
98
|
'r-button-fluid': boolean;
|
|
97
99
|
'r-is-active': boolean;
|
|
98
100
|
};
|
package/dist/revel.mjs
CHANGED
|
@@ -9004,7 +9004,7 @@ function VR(M, b, z, p, o, O) {
|
|
|
9004
9004
|
M.close ? (q(), r0(e, {
|
|
9005
9005
|
key: 0,
|
|
9006
9006
|
"aria-hidden": "true",
|
|
9007
|
-
class: "r-icon-gray r-badge-icon",
|
|
9007
|
+
class: "r-icon-gray r-badge-icon r-cursor-pointer",
|
|
9008
9008
|
icon: "close-s",
|
|
9009
9009
|
onKeypress: b[0] || (b[0] = E0(w0((c) => M.$emit("close"), ["prevent"]), ["enter"])),
|
|
9010
9010
|
onClickCapture: b[1] || (b[1] = w0((c) => M.$emit("close"), ["stop"]))
|
|
@@ -9115,7 +9115,8 @@ const cz = /* @__PURE__ */ u0(_R, [["render", VR]]), xR = b0({
|
|
|
9115
9115
|
const M = {
|
|
9116
9116
|
"r-has-icon-left": !!this.iconLeft,
|
|
9117
9117
|
"r-has-icon-right": !!this.iconRight,
|
|
9118
|
-
"r-has-icon": !!this.icon
|
|
9118
|
+
"r-has-icon": !!this.icon,
|
|
9119
|
+
"r-is-loading": this.loading
|
|
9119
9120
|
};
|
|
9120
9121
|
return this.link && this.type === "unstyled" ? {
|
|
9121
9122
|
"r-button-type-link": !0,
|