@rebilly/revel 12.34.2 → 12.34.3

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
- ## [12.34.2](https://github.com/Rebilly/rebilly/compare/revel-v12.34.1...revel-v12.34.2) (2026-05-26)
1
+ ## [12.34.3](https://github.com/Rebilly/rebilly/compare/revel-v12.34.2...revel-v12.34.3) (2026-05-26)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * **fe,be:** fix frozen-lockfile failure in fe.setup-nx ([#21924](https://github.com/Rebilly/rebilly/issues/21924)) ([a0293bd](https://github.com/Rebilly/rebilly/commit/a0293bd1762b4f33c6422baebadcd28d3ccab816))
6
+ * **revel:** Update tabs styles ([#21887](https://github.com/Rebilly/rebilly/issues/21887)) ([3dc501e](https://github.com/Rebilly/rebilly/commit/3dc501e189b7ce3d192d5915523684c11d060119))
@@ -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
- }>, {}, State, {
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;