@useloops/design-system 1.4.303 → 1.4.304
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 +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1393,7 +1393,7 @@ interface SurfaceProps extends PaperProps {
|
|
|
1393
1393
|
variation?: SurfaceVariation;
|
|
1394
1394
|
borderradius?: BorderRadius;
|
|
1395
1395
|
}
|
|
1396
|
-
declare const Surface:
|
|
1396
|
+
declare const Surface: react.ForwardRefExoticComponent<Omit<SurfaceProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
1397
1397
|
|
|
1398
1398
|
type BindOn = 'trigger' | 'contextMenu' | 'toggle' | 'hover' | 'focus' | 'doubleClick';
|
|
1399
1399
|
interface PopperProps {
|
|
@@ -1602,6 +1602,7 @@ type SelectProps = {
|
|
|
1602
1602
|
selectOptionProps?: MenuItemProps$1;
|
|
1603
1603
|
sizing?: 'xs' | 'md' | 'lg';
|
|
1604
1604
|
sx?: SelectProps$1['sx'];
|
|
1605
|
+
OnOpen?: SelectProps$1['onOpen'];
|
|
1605
1606
|
value?: SelectProps$1['value'];
|
|
1606
1607
|
renderListItem?: (value: string, label: string) => ReactElement;
|
|
1607
1608
|
};
|