@trackunit/react-table-base-components 0.0.150 → 0.0.153

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-table-base-components",
3
- "version": "0.0.150",
3
+ "version": "0.0.153",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -11,7 +11,6 @@
11
11
  "@trackunit/react-form-components": "*",
12
12
  "@trackunit/css-class-variance-utilities": "*",
13
13
  "@trackunit/date-and-time-utils": "*",
14
- "@trackunit/iris-app-api": "*",
15
14
  "react": "^18.2.0"
16
15
  },
17
16
  "module": "./index.esm.js",
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- import { UnitSiType, UnitUsType } from "@trackunit/iris-app-api";
3
2
  import { CommonProps } from "@trackunit/react-components";
4
3
  export interface NumberCellProps extends CommonProps {
5
4
  /**
@@ -10,7 +9,7 @@ export interface NumberCellProps extends CommonProps {
10
9
  /**
11
10
  * An optional unit to display alongside the numeric value.
12
11
  */
13
- unit?: UnitSiType | UnitUsType | null;
12
+ unit?: string | null;
14
13
  /**
15
14
  * An optional CSS class name to apply to the NumberCell component.
16
15
  */