@trackunit/css-tailwind 0.0.80 → 0.0.82
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/css-tailwind",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.82",
|
|
4
4
|
"main": "./index.cjs.js",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"type": "commonjs",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@trackunit/css-component-tokens": "0.0.36",
|
|
13
|
-
"@trackunit/css-core": "0.0.
|
|
13
|
+
"@trackunit/css-core": "0.0.92",
|
|
14
14
|
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.28",
|
|
15
|
-
"@trackunit/ui-design-tokens": "0.0.
|
|
15
|
+
"@trackunit/ui-design-tokens": "0.0.75"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {}
|
|
18
18
|
}
|
|
@@ -690,7 +690,8 @@ var activityPalette = {
|
|
|
690
690
|
var utilizationPalette = {
|
|
691
691
|
UNUSED: { 300: tailwindPalette.red["300"], 400: tailwindPalette.red["400"] },
|
|
692
692
|
UTILIZED: { 400: tailwindPalette.blue["400"], 600: tailwindPalette.blue["600"] },
|
|
693
|
-
HEAVILY_UTILIZED: { 300: tailwindPalette.amber["300"], 500: tailwindPalette.amber["500"] }
|
|
693
|
+
HEAVILY_UTILIZED: { 300: tailwindPalette.amber["300"], 500: tailwindPalette.amber["500"] },
|
|
694
|
+
UNKNOWN_UTILIZATION: { 300: tailwindPalette.neutral["300"], 600: tailwindPalette.neutral["600"] }
|
|
694
695
|
};
|
|
695
696
|
var rentalStatusPalette = {
|
|
696
697
|
ON_RENT: { 100: "223 244 254", 600: "90 200 250" },
|
|
@@ -739,6 +740,7 @@ var themeColors = {
|
|
|
739
740
|
UNUSED: { name: "unused", variants: trackunitPalette.UNUSED },
|
|
740
741
|
UTILIZED: { name: "utilized", variants: trackunitPalette.UTILIZED },
|
|
741
742
|
HEAVILY_UTILIZED: { name: "heavily_utilized", variants: trackunitPalette.HEAVILY_UTILIZED },
|
|
743
|
+
UNKNOWN_UTILIZATION: { name: "unknown_utilization", variants: trackunitPalette.UNKNOWN_UTILIZATION },
|
|
742
744
|
IN_REPAIR: { name: "in_repair", variants: trackunitPalette.IN_REPAIR },
|
|
743
745
|
ON_RENT: { name: "on_rent", variants: trackunitPalette.ON_RENT },
|
|
744
746
|
OTHER_RENTAL_STATUS: { name: "other_rental_status", variants: trackunitPalette.OTHER_RENTAL_STATUS },
|
|
@@ -1086,7 +1088,7 @@ var LayoutsPlugin = (0, import_plugin4.default)(({ addUtilities, addComponents,
|
|
|
1086
1088
|
},
|
|
1087
1089
|
".layout-responsive-grid": {
|
|
1088
1090
|
"--occupation": "auto-fit",
|
|
1089
|
-
"--min-column-width": "
|
|
1091
|
+
"--min-column-width": "340px",
|
|
1090
1092
|
"--row-height": "1fr",
|
|
1091
1093
|
display: "grid",
|
|
1092
1094
|
"grid-template-columns": "repeat(var(--occupation), minmax(min(var(--min-column-width), 100%), 1fr))",
|