@useloops/design-system 1.4.18 → 1.4.20
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 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -355,7 +355,7 @@ type InputLabelBaseProps = Pick<InputLabelProps$1, 'children' | 'required' | 'er
|
|
|
355
355
|
align?: 'left' | 'center' | 'right';
|
|
356
356
|
};
|
|
357
357
|
|
|
358
|
-
interface InputLabelProps extends Pick<InputLabelBaseProps, 'align' | 'children' | 'disabled' | 'error' | 'required' | 'component'> {
|
|
358
|
+
interface InputLabelProps extends Pick<InputLabelBaseProps, 'align' | 'children' | 'disabled' | 'error' | 'required' | 'component' | 'sx'> {
|
|
359
359
|
}
|
|
360
360
|
declare const InputLabel: FunctionComponent<InputLabelProps>;
|
|
361
361
|
|
|
@@ -605,7 +605,7 @@ interface RadioGroupProps extends Omit<RadioGroupProps$1, 'defaultValue' | 'sx'
|
|
|
605
605
|
declare const RadioGroup: FunctionComponent<RadioGroupProps>;
|
|
606
606
|
|
|
607
607
|
type StyledSelectProps = SelectProps$1 & {
|
|
608
|
-
sizing?: 'lg' | 'md' | '
|
|
608
|
+
sizing?: 'lg' | 'md' | 'xs';
|
|
609
609
|
};
|
|
610
610
|
|
|
611
611
|
type SelectProps = Pick<StyledSelectProps, 'onChange' | 'id' | 'onBlur' | 'autoFocus' | 'disabled' | 'error' | 'fullWidth' | 'name' | 'placeholder' | 'readOnly' | 'required' | 'ref' | 'value' | 'inputRef' | 'MenuProps' | 'sizing'> & {
|