@trackunit/react-table-base-components 0.0.49-alpha-6926a8ed6c.0 → 0.0.51

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,18 +1,18 @@
1
1
  {
2
2
  "name": "@trackunit/react-table-base-components",
3
- "version": "0.0.49-alpha-6926a8ed6c.0",
3
+ "version": "0.0.51",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
7
7
  "node": ">=18.x"
8
8
  },
9
9
  "dependencies": {
10
- "@trackunit/css-class-variance-utilities": "0.0.15-alpha-6926a8ed6c.0",
11
- "@trackunit/date-and-time-utils": "0.0.5-alpha-6926a8ed6c.0",
12
- "@trackunit/iris-app-api": "0.0.126-alpha-6926a8ed6c.0",
13
- "@trackunit/react-components": "0.1.177-alpha-6926a8ed6c.0",
14
- "@trackunit/react-form-components": "0.0.173-alpha-6926a8ed6c.0",
15
- "@trackunit/ui-design-tokens": "0.0.79-alpha-6926a8ed6c.0",
10
+ "@trackunit/css-class-variance-utilities": "0.0.14",
11
+ "@trackunit/date-and-time-utils": "0.0.4",
12
+ "@trackunit/iris-app-api": "0.0.125",
13
+ "@trackunit/react-components": "0.1.178",
14
+ "@trackunit/react-form-components": "0.0.175",
15
+ "@trackunit/ui-design-tokens": "0.0.78",
16
16
  "react": "18.2.0"
17
17
  },
18
18
  "module": "./index.esm.js",
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { CommonProps } from "@trackunit/react-components";
2
3
  export interface CheckboxCellProps extends CommonProps {
3
4
  checked: boolean;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TemporalFormat } from "@trackunit/date-and-time-utils";
2
3
  import { CommonProps } from "@trackunit/react-components";
3
4
  export interface DateTimeCellProps extends CommonProps {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { CommonProps } from "@trackunit/react-components";
2
3
  export interface ImageCellProps extends CommonProps {
3
4
  /**
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { UnitSi, UnitUs } from "@trackunit/iris-app-api";
2
3
  import { CommonProps } from "@trackunit/react-components";
3
4
  export interface NumberCellProps extends CommonProps {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { CommonProps } from "@trackunit/react-components";
2
3
  export interface TextCellProps extends CommonProps {
3
4
  content?: string;