@useloops/design-system 1.4.210 → 1.4.212
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/esm/index.js +4 -4
- package/dist/index.d.ts +4 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1428,6 +1428,10 @@ declare const RadioGroup: FunctionComponent<RadioGroupProps>;
|
|
|
1428
1428
|
type SelectOption = {
|
|
1429
1429
|
label: string;
|
|
1430
1430
|
value: string;
|
|
1431
|
+
isGroupHeader?: never;
|
|
1432
|
+
} | {
|
|
1433
|
+
label: string;
|
|
1434
|
+
isGroupHeader: true;
|
|
1431
1435
|
};
|
|
1432
1436
|
|
|
1433
1437
|
type SelectOnChange = (event: SelectChangeEvent<any>, child: React.ReactNode) => void;
|