ados-rcm 1.1.596 → 1.1.598

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.
@@ -10,6 +10,12 @@ export interface IATabOptionRendererProps<T> {
10
10
  export declare const ATabTypes: readonly ["Primary", "Secondary", "Tertiary", "Quaternary"];
11
11
  export type TATabTypes = (typeof ATabTypes)[number];
12
12
  export interface IATabProps<T> {
13
+ /**
14
+ * LeftAddon? : React.ReactNode
15
+ *
16
+ * Description : LeftAddon of ATab
17
+ */
18
+ LeftAddon?: React.ReactNode;
13
19
  /**
14
20
  * OptionRenderer? : (props: IATabOptionRendererProps<T>) => React.ReactNode = DefaultItemRenderer
15
21
  *
@@ -28,6 +34,12 @@ export interface IATabProps<T> {
28
34
  * Description : color of unselected options in ATab
29
35
  */
30
36
  color?: string;
37
+ /**
38
+ * height? : number
39
+ *
40
+ * Description : height of ATab
41
+ */
42
+ height?: number;
31
43
  /**
32
44
  * indicatorProps? : React.HTMLProps<HTMLDivElement>
33
45
  *
@@ -75,3 +75,4 @@ export declare const textMeasurement: {
75
75
  type?: "Primary" | "Secondary";
76
76
  }): number;
77
77
  };
78
+ export declare function useOffset(ref: React.RefObject<HTMLElement>, upperRef: React.RefObject<HTMLElement>): number;