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.
- package/dist/AModule/AComponents/ATab/ATab.d.ts +12 -0
- package/dist/AModule/AUtils/bound.d.ts +1 -0
- package/dist/index.cjs.js +133 -133
- package/dist/index.es.js +8787 -8755
- package/package.json +1 -1
@@ -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
|
*
|