@trackunit/react-table-base-components 1.3.192 → 1.3.194

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": "1.3.192",
3
+ "version": "1.3.194",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -9,13 +9,13 @@
9
9
  "dependencies": {
10
10
  "react": "19.0.0",
11
11
  "@js-temporal/polyfill": "^0.4.4",
12
- "@trackunit/react-components": "1.4.170",
13
- "@trackunit/ui-icons": "1.3.139",
14
- "@trackunit/react-form-components": "1.3.194",
15
- "@trackunit/css-class-variance-utilities": "1.3.139",
16
- "@trackunit/date-and-time-utils": "1.3.139",
17
- "@trackunit/shared-utils": "1.5.139",
18
- "@trackunit/react-test-setup": "1.0.29"
12
+ "@trackunit/react-components": "1.4.172",
13
+ "@trackunit/ui-icons": "1.3.141",
14
+ "@trackunit/react-form-components": "1.3.196",
15
+ "@trackunit/css-class-variance-utilities": "1.3.141",
16
+ "@trackunit/date-and-time-utils": "1.3.141",
17
+ "@trackunit/shared-utils": "1.5.141",
18
+ "@trackunit/react-test-setup": "1.0.31"
19
19
  },
20
20
  "module": "./index.esm.js",
21
21
  "main": "./index.cjs.js",
@@ -5,7 +5,7 @@ export interface IdentityCellProps extends CommonProps {
5
5
  dataTestId?: string;
6
6
  density?: "compact" | "default";
7
7
  title?: string;
8
- details?: string[];
8
+ details?: Array<string>;
9
9
  thumbnail?: ReactNode;
10
10
  }
11
11
  /**
@@ -11,7 +11,7 @@ export type Action = {
11
11
  isVisible?: boolean | null;
12
12
  };
13
13
  interface RowActionsProps {
14
- actions: Action[];
14
+ actions: Array<Action>;
15
15
  }
16
16
  /**
17
17
  * RowActions component displays actions as individual buttons or a dropdown menu
@@ -12,7 +12,7 @@ export interface TagsCellProps extends CommonProps, HTMLAttributes<HTMLTableSect
12
12
  /**
13
13
  * Array of tags that the component should show.
14
14
  */
15
- tags: string[] | TagProps[];
15
+ tags: Array<string> | Array<TagProps>;
16
16
  }
17
17
  /**
18
18
  * The TagsCell is used for render a list of tags in a table cell