@rebilly/revel 12.34.2 → 12.34.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 +2 -2
- package/dist/components/r-tabs/r-tabs.vue.d.ts +9 -1
- package/dist/revel.mjs +536 -497
- package/dist/revel.umd.js +2 -2
- 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.4](https://github.com/Rebilly/rebilly/compare/revel-v12.34.3...revel-v12.34.4) (2026-05-27)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **revel:** Datepicker hours/minutes options invisible in the dark mode ([#21752](https://github.com/Rebilly/rebilly/issues/21752)) ([8d6f105](https://github.com/Rebilly/rebilly/commit/8d6f10504a6833874c631867c3e4a07622043785))
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { Tab } from './types';
|
|
2
2
|
interface State {
|
|
3
3
|
tabs: Tab[];
|
|
4
|
+
isIndicatorReady: boolean;
|
|
4
5
|
}
|
|
5
6
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
7
|
/**
|
|
@@ -47,7 +48,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
47
48
|
type: BooleanConstructor;
|
|
48
49
|
default: boolean;
|
|
49
50
|
};
|
|
50
|
-
}>, {
|
|
51
|
+
}>, {
|
|
52
|
+
tabItemLinkRefs: import("vue").Ref<HTMLElement[], HTMLElement[]>;
|
|
53
|
+
tablistRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
54
|
+
}, State, {
|
|
51
55
|
visibleTabs(): {
|
|
52
56
|
tabId: string;
|
|
53
57
|
tabPanelId: string;
|
|
@@ -60,6 +64,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
60
64
|
validateErrorMessages: Array<string>;
|
|
61
65
|
isInvalid: boolean;
|
|
62
66
|
}[];
|
|
67
|
+
visibleTabIndicatorIndex(): number;
|
|
68
|
+
visibleTabIndicatorWidth(): number;
|
|
69
|
+
visibleTabIndicatorPosition(): number;
|
|
70
|
+
isInvalidTab(): boolean;
|
|
63
71
|
}, {
|
|
64
72
|
getTabName(tab: Tab, index: number): string;
|
|
65
73
|
selectTab({ name, value, to, tabId }: Tab, index?: Nullable<number>): void;
|