@useloops/design-system 1.4.16 → 1.4.17
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 +2 -2
- package/dist/index.d.ts +5 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -604,7 +604,11 @@ interface RadioGroupProps extends Omit<RadioGroupProps$1, 'defaultValue' | 'sx'
|
|
|
604
604
|
}
|
|
605
605
|
declare const RadioGroup: FunctionComponent<RadioGroupProps>;
|
|
606
606
|
|
|
607
|
-
type
|
|
607
|
+
type StyledSelectProps = SelectProps$1 & {
|
|
608
|
+
sizing?: 'lg' | 'md' | 'sm';
|
|
609
|
+
};
|
|
610
|
+
|
|
611
|
+
type SelectProps = Pick<StyledSelectProps, 'onChange' | 'id' | 'onBlur' | 'autoFocus' | 'disabled' | 'error' | 'fullWidth' | 'name' | 'placeholder' | 'readOnly' | 'required' | 'ref' | 'value' | 'inputRef' | 'MenuProps' | 'sizing'> & {
|
|
608
612
|
selections: {
|
|
609
613
|
value: string;
|
|
610
614
|
label: string;
|