@trackunit/react-form-components 1.12.19 → 1.12.22
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": "@trackunit/react-form-components",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.22",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"zod": "^3.23.8",
|
|
15
15
|
"react-hook-form": "7.62.0",
|
|
16
16
|
"tailwind-merge": "^2.0.0",
|
|
17
|
-
"@trackunit/css-class-variance-utilities": "1.11.
|
|
18
|
-
"@trackunit/react-components": "1.15.
|
|
19
|
-
"@trackunit/ui-icons": "1.11.
|
|
20
|
-
"@trackunit/shared-utils": "1.13.
|
|
21
|
-
"@trackunit/ui-design-tokens": "1.11.
|
|
22
|
-
"@trackunit/i18n-library-translation": "1.11.
|
|
17
|
+
"@trackunit/css-class-variance-utilities": "1.11.17",
|
|
18
|
+
"@trackunit/react-components": "1.15.21",
|
|
19
|
+
"@trackunit/ui-icons": "1.11.16",
|
|
20
|
+
"@trackunit/shared-utils": "1.13.17",
|
|
21
|
+
"@trackunit/ui-design-tokens": "1.11.17",
|
|
22
|
+
"@trackunit/i18n-library-translation": "1.11.17",
|
|
23
23
|
"string-ts": "^2.0.0",
|
|
24
24
|
"@js-temporal/polyfill": "^0.5.1",
|
|
25
25
|
"es-toolkit": "^1.39.10",
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { BaseInputProps } from "../../BaseInput/BaseInput";
|
|
2
2
|
type BaseInputExposedProps = Omit<BaseInputProps, "type">;
|
|
3
|
-
export
|
|
4
|
-
}
|
|
3
|
+
export type NumberBaseInputProps = BaseInputExposedProps;
|
|
5
4
|
/**
|
|
6
5
|
* A thin wrapper around the `BaseInput` component for number input fields.
|
|
7
6
|
*
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { BaseInputProps } from "../../BaseInput/BaseInput";
|
|
2
2
|
type BaseInputExposedProps = Omit<BaseInputProps, "type">;
|
|
3
|
-
export
|
|
4
|
-
}
|
|
3
|
+
export type TextBaseInputProps = BaseInputExposedProps;
|
|
5
4
|
/**
|
|
6
5
|
* A thin wrapper around the `BaseInput` component for text input fields.
|
|
7
6
|
*
|