@trackunit/ui-design-tokens 1.6.35 → 1.6.40
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 +4 -4
- package/index.esm.js +4 -4
- package/package.json +1 -1
- package/src/tokens/colors/trackunitPalette.d.ts +12 -12
package/index.cjs.js
CHANGED
|
@@ -380,7 +380,7 @@ const criticalityPalette = {
|
|
|
380
380
|
100: tailwindPalette.amber[100],
|
|
381
381
|
300: tailwindPalette.amber[300],
|
|
382
382
|
500: tailwindPalette.amber[500],
|
|
383
|
-
|
|
383
|
+
700: tailwindPalette.amber[700],
|
|
384
384
|
800: tailwindPalette.amber[800],
|
|
385
385
|
},
|
|
386
386
|
CRITICAL: {
|
|
@@ -393,15 +393,15 @@ const criticalityPalette = {
|
|
|
393
393
|
};
|
|
394
394
|
const activityPalette = {
|
|
395
395
|
WORKING: {
|
|
396
|
-
|
|
396
|
+
50: tailwindPalette.blue[50],
|
|
397
397
|
500: tailwindPalette.blue[500],
|
|
398
|
-
|
|
398
|
+
700: tailwindPalette.blue[700],
|
|
399
399
|
900: tailwindPalette.blue[900],
|
|
400
400
|
},
|
|
401
401
|
IDLE: {
|
|
402
402
|
100: tailwindPalette.amber[100],
|
|
403
403
|
500: tailwindPalette.amber[500],
|
|
404
|
-
|
|
404
|
+
700: tailwindPalette.amber[700],
|
|
405
405
|
900: tailwindPalette.amber[900],
|
|
406
406
|
},
|
|
407
407
|
STOPPED: {
|
package/index.esm.js
CHANGED
|
@@ -378,7 +378,7 @@ const criticalityPalette = {
|
|
|
378
378
|
100: tailwindPalette.amber[100],
|
|
379
379
|
300: tailwindPalette.amber[300],
|
|
380
380
|
500: tailwindPalette.amber[500],
|
|
381
|
-
|
|
381
|
+
700: tailwindPalette.amber[700],
|
|
382
382
|
800: tailwindPalette.amber[800],
|
|
383
383
|
},
|
|
384
384
|
CRITICAL: {
|
|
@@ -391,15 +391,15 @@ const criticalityPalette = {
|
|
|
391
391
|
};
|
|
392
392
|
const activityPalette = {
|
|
393
393
|
WORKING: {
|
|
394
|
-
|
|
394
|
+
50: tailwindPalette.blue[50],
|
|
395
395
|
500: tailwindPalette.blue[500],
|
|
396
|
-
|
|
396
|
+
700: tailwindPalette.blue[700],
|
|
397
397
|
900: tailwindPalette.blue[900],
|
|
398
398
|
},
|
|
399
399
|
IDLE: {
|
|
400
400
|
100: tailwindPalette.amber[100],
|
|
401
401
|
500: tailwindPalette.amber[500],
|
|
402
|
-
|
|
402
|
+
700: tailwindPalette.amber[700],
|
|
403
403
|
900: tailwindPalette.amber[900],
|
|
404
404
|
},
|
|
405
405
|
STOPPED: {
|
package/package.json
CHANGED
|
@@ -108,7 +108,7 @@ export declare const criticalityPalette: {
|
|
|
108
108
|
readonly 100: "254 243 199";
|
|
109
109
|
readonly 300: "252 211 77";
|
|
110
110
|
readonly 500: "245 158 11";
|
|
111
|
-
readonly
|
|
111
|
+
readonly 700: "180 83 9";
|
|
112
112
|
readonly 800: "146 64 14";
|
|
113
113
|
};
|
|
114
114
|
readonly CRITICAL: {
|
|
@@ -123,15 +123,15 @@ export type CriticalityColorKeys = keyof typeof criticalityPalette;
|
|
|
123
123
|
export type CriticalityColors = `${Lowercase<CriticalityColorKeys>}`;
|
|
124
124
|
export declare const activityPalette: {
|
|
125
125
|
readonly WORKING: {
|
|
126
|
-
readonly
|
|
126
|
+
readonly 50: "239 246 255";
|
|
127
127
|
readonly 500: "59 130 246";
|
|
128
|
-
readonly
|
|
128
|
+
readonly 700: "29 78 216";
|
|
129
129
|
readonly 900: "30 58 138";
|
|
130
130
|
};
|
|
131
131
|
readonly IDLE: {
|
|
132
132
|
readonly 100: "254 243 199";
|
|
133
133
|
readonly 500: "245 158 11";
|
|
134
|
-
readonly
|
|
134
|
+
readonly 700: "180 83 9";
|
|
135
135
|
readonly 900: "120 53 15";
|
|
136
136
|
};
|
|
137
137
|
readonly STOPPED: {
|
|
@@ -465,7 +465,7 @@ export declare const groupedPalettes: {
|
|
|
465
465
|
readonly 100: "254 243 199";
|
|
466
466
|
readonly 300: "252 211 77";
|
|
467
467
|
readonly 500: "245 158 11";
|
|
468
|
-
readonly
|
|
468
|
+
readonly 700: "180 83 9";
|
|
469
469
|
readonly 800: "146 64 14";
|
|
470
470
|
};
|
|
471
471
|
readonly CRITICAL: {
|
|
@@ -478,15 +478,15 @@ export declare const groupedPalettes: {
|
|
|
478
478
|
};
|
|
479
479
|
readonly ACTIVITY: {
|
|
480
480
|
readonly WORKING: {
|
|
481
|
-
readonly
|
|
481
|
+
readonly 50: "239 246 255";
|
|
482
482
|
readonly 500: "59 130 246";
|
|
483
|
-
readonly
|
|
483
|
+
readonly 700: "29 78 216";
|
|
484
484
|
readonly 900: "30 58 138";
|
|
485
485
|
};
|
|
486
486
|
readonly IDLE: {
|
|
487
487
|
readonly 100: "254 243 199";
|
|
488
488
|
readonly 500: "245 158 11";
|
|
489
|
-
readonly
|
|
489
|
+
readonly 700: "180 83 9";
|
|
490
490
|
readonly 900: "120 53 15";
|
|
491
491
|
};
|
|
492
492
|
readonly STOPPED: {
|
|
@@ -854,15 +854,15 @@ export declare const trackunitPalette: {
|
|
|
854
854
|
readonly 800: "31 41 55";
|
|
855
855
|
};
|
|
856
856
|
readonly WORKING: {
|
|
857
|
-
readonly
|
|
857
|
+
readonly 50: "239 246 255";
|
|
858
858
|
readonly 500: "59 130 246";
|
|
859
|
-
readonly
|
|
859
|
+
readonly 700: "29 78 216";
|
|
860
860
|
readonly 900: "30 58 138";
|
|
861
861
|
};
|
|
862
862
|
readonly IDLE: {
|
|
863
863
|
readonly 100: "254 243 199";
|
|
864
864
|
readonly 500: "245 158 11";
|
|
865
|
-
readonly
|
|
865
|
+
readonly 700: "180 83 9";
|
|
866
866
|
readonly 900: "120 53 15";
|
|
867
867
|
};
|
|
868
868
|
readonly STOPPED: {
|
|
@@ -906,7 +906,7 @@ export declare const trackunitPalette: {
|
|
|
906
906
|
readonly 100: "254 243 199";
|
|
907
907
|
readonly 300: "252 211 77";
|
|
908
908
|
readonly 500: "245 158 11";
|
|
909
|
-
readonly
|
|
909
|
+
readonly 700: "180 83 9";
|
|
910
910
|
readonly 800: "146 64 14";
|
|
911
911
|
};
|
|
912
912
|
readonly CRITICAL: {
|