@trackunit/react-components 1.7.25 → 1.7.27

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/index.cjs.js CHANGED
@@ -2306,6 +2306,7 @@ const cvaHighlight = cssClassVarianceUtilities.cvaMerge([
2306
2306
  warning: ["bg-warning-100", "text-warning-700"],
2307
2307
  danger: ["bg-danger-100", "text-danger-700"],
2308
2308
  unknown: ["bg-unknown-100", "text-unknown-700"],
2309
+ clear: ["font-normal", "px-0"],
2309
2310
  },
2310
2311
  },
2311
2312
  defaultVariants: {
package/index.esm.js CHANGED
@@ -2304,6 +2304,7 @@ const cvaHighlight = cvaMerge([
2304
2304
  warning: ["bg-warning-100", "text-warning-700"],
2305
2305
  danger: ["bg-danger-100", "text-danger-700"],
2306
2306
  unknown: ["bg-unknown-100", "text-unknown-700"],
2307
+ clear: ["font-normal", "px-0"],
2307
2308
  },
2308
2309
  },
2309
2310
  defaultVariants: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-components",
3
- "version": "1.7.25",
3
+ "version": "1.7.27",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -17,12 +17,12 @@
17
17
  "@floating-ui/react": "^0.26.25",
18
18
  "string-ts": "^2.0.0",
19
19
  "tailwind-merge": "^2.0.0",
20
- "@trackunit/ui-design-tokens": "1.6.20",
21
- "@trackunit/css-class-variance-utilities": "1.6.19",
22
- "@trackunit/shared-utils": "1.8.19",
23
- "@trackunit/ui-icons": "1.6.18",
24
- "@trackunit/react-table-pagination": "1.6.18",
25
- "@trackunit/react-test-setup": "1.3.19",
20
+ "@trackunit/ui-design-tokens": "1.6.21",
21
+ "@trackunit/css-class-variance-utilities": "1.6.20",
22
+ "@trackunit/shared-utils": "1.8.20",
23
+ "@trackunit/ui-icons": "1.6.19",
24
+ "@trackunit/react-table-pagination": "1.6.19",
25
+ "@trackunit/react-test-setup": "1.3.20",
26
26
  "@tanstack/react-router": "1.114.29"
27
27
  },
28
28
  "module": "./index.esm.js",
@@ -9,7 +9,7 @@ export interface HighlightProps extends CommonProps {
9
9
  /**
10
10
  * The color of the highlight. Allowed values: "primary", "success", "warning", "danger", "unknown".
11
11
  */
12
- color?: "info" | "success" | "warning" | "danger" | "unknown";
12
+ color?: "info" | "success" | "warning" | "danger" | "unknown" | "clear";
13
13
  /**
14
14
  * The content of the highlight. Accepts any valid React children (text, numbers, elements).
15
15
  */
@@ -1,5 +1,5 @@
1
1
  export declare const cvaHighlight: (props?: ({
2
2
  size?: "small" | "medium" | null | undefined;
3
- color?: "info" | "success" | "warning" | "danger" | "unknown" | null | undefined;
3
+ color?: "info" | "success" | "warning" | "danger" | "unknown" | "clear" | null | undefined;
4
4
  } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
5
5
  export declare const cvaHighlightText: (props?: import("class-variance-authority/dist/types").ClassProp | undefined) => string;