@trackunit/react-components 1.15.7 → 1.15.9

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-components",
3
- "version": "1.15.7",
3
+ "version": "1.15.9",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -14,10 +14,10 @@
14
14
  "@floating-ui/react": "^0.26.25",
15
15
  "string-ts": "^2.0.0",
16
16
  "tailwind-merge": "^2.0.0",
17
- "@trackunit/ui-design-tokens": "1.11.7",
18
- "@trackunit/css-class-variance-utilities": "1.11.6",
19
- "@trackunit/shared-utils": "1.13.6",
20
- "@trackunit/ui-icons": "1.11.6",
17
+ "@trackunit/ui-design-tokens": "1.11.9",
18
+ "@trackunit/css-class-variance-utilities": "1.11.8",
19
+ "@trackunit/shared-utils": "1.13.8",
20
+ "@trackunit/ui-icons": "1.11.8",
21
21
  "@tanstack/react-router": "1.114.29",
22
22
  "es-toolkit": "^1.39.10",
23
23
  "@tanstack/react-virtual": "3.13.12",
@@ -8,5 +8,5 @@
8
8
  }>
9
9
  */
10
10
  export type AllOrNone<TProps> = (TProps & Required<TProps>) | {
11
- [Key in keyof TProps]?: never;
11
+ [KeyProperty in keyof TProps]?: never;
12
12
  };
@@ -9,7 +9,7 @@ import { CSSProperties } from "react";
9
9
  *
10
10
  * @see https://tailwindcss.com/docs/responsive-design#container-queries
11
11
  */
12
- export declare const CONTAINER_BREAKPOINTS: { [K in keyof typeof themeContainerSize as `@${K}`]: (typeof themeContainerSize)[K]; };
12
+ export declare const CONTAINER_BREAKPOINTS: { [KeyContainerSize in keyof typeof themeContainerSize as `@${KeyContainerSize}`]: (typeof themeContainerSize)[KeyContainerSize]; };
13
13
  export type ContainerBreakpoint = keyof typeof CONTAINER_BREAKPOINTS;
14
14
  /**
15
15
  * Empty cell marker for grid-template-areas.
@@ -5,7 +5,7 @@ export type BreakpointSize = keyof typeof themeScreenSizeAsNumber;
5
5
  * Each property is true if the width is greater than or equal to the corresponding breakpoint.
6
6
  */
7
7
  export type BreakpointState = {
8
- [K in BreakpointSize as `is${Capitalize<K>}`]: boolean;
8
+ [KeyBreakpoint in BreakpointSize as `is${Capitalize<KeyBreakpoint>}`]: boolean;
9
9
  };
10
10
  /**
11
11
  * Maps size keys to their corresponding state property names.