@theroutingcompany/components 0.0.100-alpha.1 → 0.0.100

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.100-alpha.1",
3
+ "version": "0.0.100",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -93,5 +93,6 @@ export declare const NumberFormControl: import("react").ForwardRefExoticComponen
93
93
  required?: boolean | undefined;
94
94
  isInvalid?: boolean | undefined;
95
95
  boldLabel?: boolean | undefined;
96
+ tooltipContent?: string | undefined;
96
97
  } & import("react").RefAttributes<HTMLInputElement>>;
97
98
  export {};
@@ -14,6 +14,7 @@ export type NumberInputProps = ReactAriaNumberInputProps & InputBaseProps & Stan
14
14
  required?: boolean;
15
15
  isInvalid?: boolean;
16
16
  boldLabel?: boolean;
17
+ tooltipContent?: string;
17
18
  };
18
19
  /**
19
20
  * Use cases
@@ -45,6 +46,7 @@ export declare const NumberInput: import("react").ForwardRefExoticComponent<Omit
45
46
  required?: boolean | undefined;
46
47
  isInvalid?: boolean | undefined;
47
48
  boldLabel?: boolean | undefined;
49
+ tooltipContent?: string | undefined;
48
50
  } & import("react").RefAttributes<HTMLInputElement>>;
49
51
  export declare const handleFormWithNumbers: (form: HTMLFormElement) => {
50
52
  [k: string]: FormDataEntryValue;