@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.19",
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.15",
18
- "@trackunit/react-components": "1.15.18",
19
- "@trackunit/ui-icons": "1.11.14",
20
- "@trackunit/shared-utils": "1.13.15",
21
- "@trackunit/ui-design-tokens": "1.11.15",
22
- "@trackunit/i18n-library-translation": "1.11.15",
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,6 +1,5 @@
1
1
  import { CommonProps } from "@trackunit/react-components";
2
- interface CheckIconProps extends CommonProps {
3
- }
2
+ type CheckIconProps = CommonProps;
4
3
  /**
5
4
  * The CheckIcon component is used by the checkbox to display the checked state.
6
5
  *
@@ -1,7 +1,6 @@
1
1
  import { BaseInputProps } from "../../BaseInput/BaseInput";
2
2
  type BaseInputExposedProps = Omit<BaseInputProps, "type">;
3
- export interface NumberBaseInputProps extends BaseInputExposedProps {
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 interface TextBaseInputProps extends BaseInputExposedProps {
4
- }
3
+ export type TextBaseInputProps = BaseInputExposedProps;
5
4
  /**
6
5
  * A thin wrapper around the `BaseInput` component for text input fields.
7
6
  *