@trackunit/utilization-indicator 1.24.1 → 1.24.3

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,15 +1,15 @@
1
1
  {
2
2
  "name": "@trackunit/utilization-indicator",
3
- "version": "1.24.1",
3
+ "version": "1.24.3",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
7
7
  "node": ">=24.x"
8
8
  },
9
9
  "dependencies": {
10
- "@trackunit/react-components": "1.24.1",
11
- "@trackunit/utilization-tokens": "1.21.1",
12
- "@trackunit/i18n-library-translation": "1.21.1",
10
+ "@trackunit/react-components": "1.24.2",
11
+ "@trackunit/utilization-tokens": "1.21.2",
12
+ "@trackunit/i18n-library-translation": "1.21.2",
13
13
  "@trackunit/ui-design-tokens": "1.13.1"
14
14
  },
15
15
  "peerDependencies": {
@@ -1,7 +1,7 @@
1
- import { CommonProps, IndicatorProps } from "@trackunit/react-components";
1
+ import { CommonProps, IndicatorProps, type Styleable } from "@trackunit/react-components";
2
2
  import { AssetActivityState } from "@trackunit/utilization-tokens";
3
3
  import { ReactElement } from "react";
4
- export interface ActivityIndicatorProps extends Pick<IndicatorProps, "withBackground" | "withLabel" | "ping" | "size" | "weight">, CommonProps {
4
+ export interface ActivityIndicatorProps extends Pick<IndicatorProps, "withBackground" | "withLabel" | "ping" | "size" | "weight">, CommonProps, Styleable {
5
5
  state: AssetActivityState;
6
6
  }
7
7
  /**
@@ -1,7 +1,7 @@
1
- import { CommonProps, IndicatorProps } from "@trackunit/react-components";
1
+ import { CommonProps, IndicatorProps, type Styleable } from "@trackunit/react-components";
2
2
  import { UtilizationState } from "@trackunit/utilization-tokens";
3
3
  import { ReactElement } from "react";
4
- export interface UtilizationIndicatorProps extends Pick<IndicatorProps, "withBackground" | "withLabel" | "ping">, CommonProps {
4
+ export interface UtilizationIndicatorProps extends Pick<IndicatorProps, "withBackground" | "withLabel" | "ping">, CommonProps, Styleable {
5
5
  state: UtilizationState;
6
6
  }
7
7
  /**