@apexcura/ui-components 0.0.16-Beta508 → 0.0.16-Beta509
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/Types/types.d.ts +10 -16
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/report.html +2 -2
- package/package.json +1 -1
package/dist/Types/types.d.ts
CHANGED
|
@@ -25,6 +25,15 @@ type radioValueProps = {
|
|
|
25
25
|
value?: string | undefined;
|
|
26
26
|
} | undefined;
|
|
27
27
|
};
|
|
28
|
+
interface ChildRecordType {
|
|
29
|
+
id?: string;
|
|
30
|
+
name?: string;
|
|
31
|
+
label?: string;
|
|
32
|
+
element?: string;
|
|
33
|
+
type?: string;
|
|
34
|
+
value?: boolean;
|
|
35
|
+
children?: ChildRecordType[];
|
|
36
|
+
}
|
|
28
37
|
export type ElementType = {
|
|
29
38
|
active?: number;
|
|
30
39
|
visitedClassName?: string;
|
|
@@ -96,22 +105,7 @@ export type ElementType = {
|
|
|
96
105
|
value: string;
|
|
97
106
|
}[];
|
|
98
107
|
}[];
|
|
99
|
-
tbody?:
|
|
100
|
-
id?: string;
|
|
101
|
-
name?: string;
|
|
102
|
-
label?: string;
|
|
103
|
-
element?: string;
|
|
104
|
-
type?: string;
|
|
105
|
-
value?: boolean;
|
|
106
|
-
children?: {
|
|
107
|
-
id?: string;
|
|
108
|
-
name?: string;
|
|
109
|
-
label?: string;
|
|
110
|
-
element?: string;
|
|
111
|
-
type?: string;
|
|
112
|
-
value?: boolean;
|
|
113
|
-
}[];
|
|
114
|
-
}[];
|
|
108
|
+
tbody?: ChildRecordType[];
|
|
115
109
|
optionType?: string;
|
|
116
110
|
selectedClassName?: string;
|
|
117
111
|
action?: React.MouseEventHandler<HTMLElement> | string;
|