@trackunit/ui-design-tokens 0.0.105 → 0.0.106
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 +5 -0
- package/index.esm.js +5 -0
- package/package.json +1 -1
- package/src/tokens/colors/trackunitPalette.d.ts +9 -0
package/index.cjs.js
CHANGED
|
@@ -447,6 +447,7 @@ const themedPalette = {
|
|
|
447
447
|
hover: generalPalette.WHITE.DEFAULT,
|
|
448
448
|
active: generalPalette.WHITE.DEFAULT,
|
|
449
449
|
},
|
|
450
|
+
NOTIFICATION_COUNTER_BACKGROUND: { DEFAULT: tailwindPalette.red["600"] },
|
|
450
451
|
};
|
|
451
452
|
/**
|
|
452
453
|
* The Utilization color palette
|
|
@@ -614,6 +615,10 @@ const themeColors = {
|
|
|
614
615
|
name: "main_menu_nav_item_foreground",
|
|
615
616
|
variants: trackunitPalette.MAIN_MENU_NAV_ITEM_FOREGROUND,
|
|
616
617
|
},
|
|
618
|
+
NOTIFICATION_COUNTER_BACKGROUND: {
|
|
619
|
+
name: "notification_counter_background",
|
|
620
|
+
variants: trackunitPalette.NOTIFICATION_COUNTER_BACKGROUND,
|
|
621
|
+
},
|
|
617
622
|
};
|
|
618
623
|
|
|
619
624
|
const outputOptions = ["HEX", "CSS"];
|
package/index.esm.js
CHANGED
|
@@ -443,6 +443,7 @@ const themedPalette = {
|
|
|
443
443
|
hover: generalPalette.WHITE.DEFAULT,
|
|
444
444
|
active: generalPalette.WHITE.DEFAULT,
|
|
445
445
|
},
|
|
446
|
+
NOTIFICATION_COUNTER_BACKGROUND: { DEFAULT: tailwindPalette.red["600"] },
|
|
446
447
|
};
|
|
447
448
|
/**
|
|
448
449
|
* The Utilization color palette
|
|
@@ -610,6 +611,10 @@ const themeColors = {
|
|
|
610
611
|
name: "main_menu_nav_item_foreground",
|
|
611
612
|
variants: trackunitPalette.MAIN_MENU_NAV_ITEM_FOREGROUND,
|
|
612
613
|
},
|
|
614
|
+
NOTIFICATION_COUNTER_BACKGROUND: {
|
|
615
|
+
name: "notification_counter_background",
|
|
616
|
+
variants: trackunitPalette.NOTIFICATION_COUNTER_BACKGROUND,
|
|
617
|
+
},
|
|
613
618
|
};
|
|
614
619
|
|
|
615
620
|
const outputOptions = ["HEX", "CSS"];
|
package/package.json
CHANGED
|
@@ -256,6 +256,9 @@ export declare const themedPalette: {
|
|
|
256
256
|
readonly hover: "255 255 255";
|
|
257
257
|
readonly active: "255 255 255";
|
|
258
258
|
};
|
|
259
|
+
readonly NOTIFICATION_COUNTER_BACKGROUND: {
|
|
260
|
+
readonly DEFAULT: "220 38 38";
|
|
261
|
+
};
|
|
259
262
|
};
|
|
260
263
|
/**
|
|
261
264
|
* The Themed color palette
|
|
@@ -894,6 +897,9 @@ export declare const groupedPalettes: {
|
|
|
894
897
|
readonly hover: "255 255 255";
|
|
895
898
|
readonly active: "255 255 255";
|
|
896
899
|
};
|
|
900
|
+
readonly NOTIFICATION_COUNTER_BACKGROUND: {
|
|
901
|
+
readonly DEFAULT: "220 38 38";
|
|
902
|
+
};
|
|
897
903
|
};
|
|
898
904
|
};
|
|
899
905
|
/**
|
|
@@ -913,6 +919,9 @@ export declare const trackunitPalette: {
|
|
|
913
919
|
readonly hover: "255 255 255";
|
|
914
920
|
readonly active: "255 255 255";
|
|
915
921
|
};
|
|
922
|
+
readonly NOTIFICATION_COUNTER_BACKGROUND: {
|
|
923
|
+
readonly DEFAULT: "220 38 38";
|
|
924
|
+
};
|
|
916
925
|
readonly SITE: {
|
|
917
926
|
readonly AREA: "37 99 235";
|
|
918
927
|
readonly CLASSIC_POI: "115 115 115";
|