@useloops/design-system 1.4.115 → 1.4.117

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
@@ -449,6 +449,8 @@ type NumberFieldProps = InputFieldBaseProps$1 & {
449
449
  hideActionButtons?: boolean;
450
450
  max?: number;
451
451
  min?: number;
452
+ startAdornment?: ReactElement | string;
453
+ endAdornment?: ReactElement | string;
452
454
  numericFormatProps?: NumericFormatProps;
453
455
  onChange?: (value: number | null) => void;
454
456
  step?: number;
@@ -545,7 +547,7 @@ type SelectProps = {
545
547
  sizing?: 'xs' | 'md' | 'lg';
546
548
  sx?: SelectProps$1['sx'];
547
549
  value?: SelectProps$1['value'];
548
- renderListItem?: (label: string) => ReactElement;
550
+ renderListItem?: (value: string, label: string) => ReactElement;
549
551
  };
550
552
  declare const Select: FunctionComponent<SelectProps>;
551
553