@useloops/design-system 1.4.209 → 1.4.211

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/index.d.ts CHANGED
@@ -1228,6 +1228,10 @@ interface IconButtonGroupProps extends PropsWithChildren {
1228
1228
  sizing?: IconButtonProps['sizing'];
1229
1229
  iconColor?: string;
1230
1230
  groupRaised?: boolean;
1231
+ className?: string;
1232
+ onClick?: (e: any) => void;
1233
+ onMouseDown?: (e: any) => void;
1234
+ sx?: SxProps<Theme>;
1231
1235
  }
1232
1236
  declare const IconButtonGroup: FunctionComponent<IconButtonGroupProps>;
1233
1237
 
@@ -1424,6 +1428,10 @@ declare const RadioGroup: FunctionComponent<RadioGroupProps>;
1424
1428
  type SelectOption = {
1425
1429
  label: string;
1426
1430
  value: string;
1431
+ isGroupHeader?: never;
1432
+ } | {
1433
+ label: string;
1434
+ isGroupHeader: true;
1427
1435
  };
1428
1436
 
1429
1437
  type SelectOnChange = (event: SelectChangeEvent<any>, child: React.ReactNode) => void;