@rebilly/revel 12.34.9 → 12.34.10
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 +2 -2
- package/dist/components/r-select/r-select.vue.d.ts +1 -1
- package/dist/revel.mjs +6 -3
- package/dist/revel.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [12.34.
|
|
1
|
+
## [12.34.10](https://github.com/Rebilly/rebilly/compare/revel-v12.34.9...revel-v12.34.10) (2026-06-03)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **revel:**
|
|
6
|
+
* **revel:** Disabled prop for link buttons ([#22069](https://github.com/Rebilly/rebilly/issues/22069)) ([ac8171b](https://github.com/Rebilly/rebilly/commit/ac8171ba5ff21291b79e12b017f5bbfb8ce052ee))
|
|
@@ -722,6 +722,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
722
722
|
placeholder: string;
|
|
723
723
|
label: string;
|
|
724
724
|
disabled: boolean;
|
|
725
|
+
tabindex: number;
|
|
725
726
|
modelValue: Nullable<OptionItem | Options>;
|
|
726
727
|
validate: ValidationState;
|
|
727
728
|
allowEmpty: boolean;
|
|
@@ -730,7 +731,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
730
731
|
multiple: boolean;
|
|
731
732
|
helpText: string;
|
|
732
733
|
autocomplete: string;
|
|
733
|
-
tabindex: number;
|
|
734
734
|
limit: number;
|
|
735
735
|
asyncFind: AsyncSearchFn;
|
|
736
736
|
options: Options;
|
package/dist/revel.mjs
CHANGED
|
@@ -6690,7 +6690,7 @@ const ze = /* @__PURE__ */ D1(Wu, [["render", fu]]), hu = ["data-testid"], gu =
|
|
|
6690
6690
|
}, null, 8, gu)
|
|
6691
6691
|
], 10, hu));
|
|
6692
6692
|
}
|
|
6693
|
-
}), mu = ["href"], wu = {
|
|
6693
|
+
}), mu = ["href", "aria-disabled", "tabindex", "disabled"], wu = {
|
|
6694
6694
|
key: 0,
|
|
6695
6695
|
class: "r-button-inner r-tt-sentencecase"
|
|
6696
6696
|
}, Lu = ["disabled", "title"], Ru = {
|
|
@@ -6737,8 +6737,11 @@ const ze = /* @__PURE__ */ D1(Wu, [["render", fu]]), hu = ["data-testid"], gu =
|
|
|
6737
6737
|
return (t, c) => M.link ? (l(), v("a", {
|
|
6738
6738
|
key: 0,
|
|
6739
6739
|
class: U(["r-button", p.value]),
|
|
6740
|
-
href: M.href,
|
|
6741
|
-
|
|
6740
|
+
href: o.value ? void 0 : M.href,
|
|
6741
|
+
"aria-disabled": o.value ? "true" : "false",
|
|
6742
|
+
tabindex: o.value ? -1 : void 0,
|
|
6743
|
+
role: "link",
|
|
6744
|
+
disabled: o.value
|
|
6742
6745
|
}, [
|
|
6743
6746
|
M.iconLeft ? (l(), o0(f0, {
|
|
6744
6747
|
key: 0,
|