@useloops/design-system 1.4.114 → 1.4.116

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,9 +449,12 @@ 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;
457
+ internalChange?: () => void;
455
458
  value?: number | null;
456
459
  };
457
460
  declare const NumberField: FunctionComponent<NumberFieldProps>;