@theroutingcompany/components 0.0.44 → 0.0.45-alpha.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theroutingcompany/components",
3
- "version": "0.0.44",
3
+ "version": "0.0.45-alpha.0",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -79,5 +79,6 @@ export declare const NumberFormControl: import("react").ForwardRefExoticComponen
79
79
  showStepper?: boolean | undefined;
80
80
  } & {
81
81
  locale?: string | undefined;
82
+ decimalPlaces?: number | undefined;
82
83
  } & import("react").RefAttributes<HTMLInputElement>>;
83
84
  export {};
@@ -10,6 +10,7 @@ type ShowStepper = {
10
10
  type StandardInputProps = Pick<ComponentPropsWithoutStyles<'input'>, 'name'>;
11
11
  export type NumberInputProps = ReactAriaNumberInputProps & InputBaseProps & StandardInputProps & ShowStepper & {
12
12
  locale?: NumberFieldStateOptions['locale'];
13
+ decimalPlaces?: number;
13
14
  };
14
15
  /**
15
16
  * Use cases
@@ -37,5 +38,6 @@ export declare const NumberInput: import("react").ForwardRefExoticComponent<Omit
37
38
  max?: number | undefined;
38
39
  } & InputBaseProps & StandardInputProps & ShowStepper & {
39
40
  locale?: string | undefined;
41
+ decimalPlaces?: number | undefined;
40
42
  } & import("react").RefAttributes<HTMLInputElement>>;
41
43
  export {};