@rebilly/revel 6.30.24 → 6.30.25
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,6 +1,6 @@
|
|
|
1
|
-
## [6.30.
|
|
1
|
+
## [6.30.25](https://github.com/Rebilly/rebilly/compare/revel-v6.30.24...revel-v6.30.25) (2024-07-19)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **revel:**
|
|
6
|
+
* **revel:** Fix duplicated `nanoid` ID generation in case name is not specified ([#6625](https://github.com/Rebilly/rebilly/issues/6625)) ([d59afa9](https://github.com/Rebilly/rebilly/commit/d59afa995ef1d965a72158d2538e751a9220104c))
|
|
@@ -18,14 +18,14 @@ interface Props {
|
|
|
18
18
|
}
|
|
19
19
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
20
20
|
label: null;
|
|
21
|
-
name: string;
|
|
21
|
+
name: () => string;
|
|
22
22
|
modelValue: boolean;
|
|
23
23
|
disabled: boolean;
|
|
24
24
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
"update:modelValue": (value: boolean) => void;
|
|
26
26
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
27
27
|
label: null;
|
|
28
|
-
name: string;
|
|
28
|
+
name: () => string;
|
|
29
29
|
modelValue: boolean;
|
|
30
30
|
disabled: boolean;
|
|
31
31
|
}>>> & {
|
package/dist/revel.mjs
CHANGED
|
@@ -13886,7 +13886,7 @@ const oe = /* @__PURE__ */ y0(gw, [["render", ww]]), $w = ["aria-checked"], Tw =
|
|
|
13886
13886
|
__name: "r-toggle",
|
|
13887
13887
|
props: {
|
|
13888
13888
|
label: { default: null },
|
|
13889
|
-
name: { default: m1() },
|
|
13889
|
+
name: { default: () => m1() },
|
|
13890
13890
|
modelValue: { type: Boolean, default: !1 },
|
|
13891
13891
|
disabled: { type: Boolean, default: !1 }
|
|
13892
13892
|
},
|