@rebilly/revel 11.1.2 → 11.1.4
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,6 @@
|
|
|
1
|
-
## [11.1.
|
|
1
|
+
## [11.1.4](https://github.com/Rebilly/rebilly/compare/revel-v11.1.3...revel-v11.1.4) (2025-09-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **revel:** Fix "Cannot read properties of undefined" error in <r-date-input> ([#14644](https://github.com/Rebilly/rebilly/issues/14644)) ([3c18884](https://github.com/Rebilly/rebilly/commit/3c18884de1c1f22c181635eaff98229ea05ba789))
|
|
@@ -15,9 +15,9 @@ export interface Props {
|
|
|
15
15
|
stopPropagation?: boolean;
|
|
16
16
|
}
|
|
17
17
|
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
18
|
-
click: () => any;
|
|
18
|
+
click: (event: MouseEvent) => any;
|
|
19
19
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
20
|
-
onClick?: (() => any) | undefined;
|
|
20
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
21
21
|
}>, {
|
|
22
22
|
color: IconColor;
|
|
23
23
|
stopPropagation: boolean;
|
|
@@ -763,9 +763,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
763
763
|
trackAsyncUpdatesByObject: boolean;
|
|
764
764
|
}, {}, {
|
|
765
765
|
RIcon: import("vue").DefineComponent<import("../r-icon/r-icon.vue").Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
766
|
-
click: () => any;
|
|
766
|
+
click: (event: MouseEvent) => any;
|
|
767
767
|
}, string, import("vue").PublicProps, Readonly<import("../r-icon/r-icon.vue").Props> & Readonly<{
|
|
768
|
-
onClick?: (() => any) | undefined;
|
|
768
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
769
769
|
}>, {
|
|
770
770
|
color: import("../r-icon/r-icon-sprites.ts").IconColor;
|
|
771
771
|
stopPropagation: boolean;
|
package/dist/revel.mjs
CHANGED
|
@@ -6675,7 +6675,7 @@ const Y3 = /* @__PURE__ */ S1(oW, [["render", OW]]), eW = ["data-testid"], cW =
|
|
|
6675
6675
|
[`r-icon-${z.color}`]: !!z.color
|
|
6676
6676
|
}));
|
|
6677
6677
|
function O(c) {
|
|
6678
|
-
z.stopPropagation && c.stopPropagation(), p("click");
|
|
6678
|
+
z.stopPropagation && c.stopPropagation(), p("click", c);
|
|
6679
6679
|
}
|
|
6680
6680
|
return (c, A) => (q(), u("svg", {
|
|
6681
6681
|
class: H(["r-icon r-icon-20", e.value]),
|
|
@@ -8725,7 +8725,7 @@ const oo = /* @__PURE__ */ NM(Fu, [["render", ju]]), Uu = ["for"], Ku = ["id", "
|
|
|
8725
8725
|
"r-cursor-pointer": R.rightIconClickPointer,
|
|
8726
8726
|
"r-is-spinning": R.rightIconSpinning
|
|
8727
8727
|
}),
|
|
8728
|
-
onClick: I[3] || (I[3] = (b0) => o("right-icon-click"))
|
|
8728
|
+
onClick: I[3] || (I[3] = (b0) => o("right-icon-click", b0))
|
|
8729
8729
|
}, null, 8, ["icon", "class"])) : $("", !0)
|
|
8730
8730
|
], 2),
|
|
8731
8731
|
Y(R.$slots, "right-button"),
|