@useloops/design-system 1.4.257 → 1.4.258
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 +5 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1316,6 +1316,9 @@ interface TooltipProps extends PropsWithChildren {
|
|
|
1316
1316
|
message: TooltipProps$1['title'];
|
|
1317
1317
|
variation?: 'primary';
|
|
1318
1318
|
placement?: TooltipProps$1['placement'];
|
|
1319
|
+
sx?: TooltipProps$1['sx'];
|
|
1320
|
+
slots?: TooltipProps$1['slots'];
|
|
1321
|
+
slotProps?: TooltipProps$1['slotProps'];
|
|
1319
1322
|
}
|
|
1320
1323
|
declare const Tooltip: FunctionComponent<TooltipProps>;
|
|
1321
1324
|
|
|
@@ -1329,7 +1332,7 @@ interface IconButtonProps extends IconButtonBaseProps {
|
|
|
1329
1332
|
}
|
|
1330
1333
|
declare const IconButton: react.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
1331
1334
|
|
|
1332
|
-
interface IconButtonGroupProps
|
|
1335
|
+
interface IconButtonGroupProps {
|
|
1333
1336
|
ButtonGroupProps?: ButtonGroupProps;
|
|
1334
1337
|
variation?: 'default' | 'toggle';
|
|
1335
1338
|
orientation: ButtonGroupProps['orientation'];
|
|
@@ -1340,6 +1343,7 @@ interface IconButtonGroupProps extends PropsWithChildren {
|
|
|
1340
1343
|
onClick?: (e: any) => void;
|
|
1341
1344
|
onMouseDown?: (e: any) => void;
|
|
1342
1345
|
sx?: SxProps<Theme>;
|
|
1346
|
+
children: ButtonGroupProps['children'] | any;
|
|
1343
1347
|
}
|
|
1344
1348
|
declare const IconButtonGroup: FunctionComponent<IconButtonGroupProps>;
|
|
1345
1349
|
|