@rebilly/revel 12.34.8 → 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 +6 -1
- package/dist/components/r-select/r-select.vue.d.ts +1 -1
- package/dist/components/r-tabs/r-tabs.vue.d.ts +2 -0
- package/dist/revel.mjs +277 -264
- package/dist/revel.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +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
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
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;
|
|
@@ -51,6 +51,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
51
51
|
}>, {
|
|
52
52
|
tabItemLinkRefs: import("vue").Ref<HTMLElement[], HTMLElement[]>;
|
|
53
53
|
tablistRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
54
|
+
layoutVersion: import("vue").Ref<number, number>;
|
|
55
|
+
recomputeIndicator: () => void;
|
|
54
56
|
}, State, {
|
|
55
57
|
visibleTabs(): {
|
|
56
58
|
tabId: string;
|