@trackunit/utilization-indicator 1.3.122 → 1.3.125
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 +1 -1
- package/index.esm.js +1 -1
- package/package.json +5 -5
- package/src/ActivityIndicator.d.ts +1 -1
package/index.cjs.js
CHANGED
@@ -8,7 +8,7 @@ var utilizationTokens = require('@trackunit/utilization-tokens');
|
|
8
8
|
var defaultTranslations = {
|
9
9
|
"indicator.activity.idle": "Idle",
|
10
10
|
"indicator.activity.stopped": "Stopped",
|
11
|
-
"indicator.activity.unknown": "Unknown
|
11
|
+
"indicator.activity.unknown": "Unknown",
|
12
12
|
"indicator.activity.working": "Working",
|
13
13
|
"indicator.utilization.heavilyUtilized": "Heavily utilized",
|
14
14
|
"indicator.utilization.unused": "Unused",
|
package/index.esm.js
CHANGED
@@ -6,7 +6,7 @@ import { assetActivityState, UtilizationState } from '@trackunit/utilization-tok
|
|
6
6
|
var defaultTranslations = {
|
7
7
|
"indicator.activity.idle": "Idle",
|
8
8
|
"indicator.activity.stopped": "Stopped",
|
9
|
-
"indicator.activity.unknown": "Unknown
|
9
|
+
"indicator.activity.unknown": "Unknown",
|
10
10
|
"indicator.activity.working": "Working",
|
11
11
|
"indicator.utilization.heavilyUtilized": "Heavily utilized",
|
12
12
|
"indicator.utilization.unused": "Unused",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@trackunit/utilization-indicator",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.125",
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"engines": {
|
@@ -9,10 +9,10 @@
|
|
9
9
|
"dependencies": {
|
10
10
|
"react": "19.0.0",
|
11
11
|
"jest-fetch-mock": "^3.0.3",
|
12
|
-
"@trackunit/react-components": "1.4.
|
13
|
-
"@trackunit/utilization-tokens": "1.3.
|
14
|
-
"@trackunit/i18n-library-translation": "1.3.
|
15
|
-
"@trackunit/ui-design-tokens": "1.3.
|
12
|
+
"@trackunit/react-components": "1.4.118",
|
13
|
+
"@trackunit/utilization-tokens": "1.3.109",
|
14
|
+
"@trackunit/i18n-library-translation": "1.3.109",
|
15
|
+
"@trackunit/ui-design-tokens": "1.3.98"
|
16
16
|
},
|
17
17
|
"module": "./index.esm.js",
|
18
18
|
"main": "./index.cjs.js",
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { CommonProps, IndicatorProps } 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">, CommonProps {
|
4
|
+
export interface ActivityIndicatorProps extends Pick<IndicatorProps, "withBackground" | "withLabel" | "ping" | "size" | "weight">, CommonProps {
|
5
5
|
state: AssetActivityState;
|
6
6
|
}
|
7
7
|
/**
|