@trackunit/css-tailwind 0.0.78 → 0.0.80-alpha-c88220cebc.0
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 +5 -5
- package/tailwind-base.generated.js +22 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/css-tailwind",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.80-alpha-c88220cebc.0",
|
|
4
4
|
"main": "./index.cjs",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"type": "commonjs",
|
|
11
11
|
"types": "./src/index.d.ts",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@trackunit/css-component-tokens": "0.0.
|
|
14
|
-
"@trackunit/css-core": "0.0.
|
|
15
|
-
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.
|
|
16
|
-
"@trackunit/ui-design-tokens": "0.0.
|
|
13
|
+
"@trackunit/css-component-tokens": "0.0.37-alpha-c88220cebc.0",
|
|
14
|
+
"@trackunit/css-core": "0.0.91-alpha-c88220cebc.0",
|
|
15
|
+
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.29-alpha-c88220cebc.0",
|
|
16
|
+
"@trackunit/ui-design-tokens": "0.0.75-alpha-c88220cebc.0"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {}
|
|
19
19
|
}
|
|
@@ -1091,6 +1091,28 @@ var LayoutsPlugin = (0, import_plugin4.default)(({ addUtilities, addComponents,
|
|
|
1091
1091
|
display: "grid",
|
|
1092
1092
|
"grid-template-columns": "repeat(var(--occupation), minmax(min(var(--min-column-width), 100%), 1fr))",
|
|
1093
1093
|
gap: "var(--spacing-responsive-space)"
|
|
1094
|
+
},
|
|
1095
|
+
// MapControlsGrid
|
|
1096
|
+
".layout-area-map-controls-content": {
|
|
1097
|
+
"grid-area": "map-controls-content"
|
|
1098
|
+
},
|
|
1099
|
+
".layout-area-map-controls-map": {
|
|
1100
|
+
"grid-area": "map-controls-map"
|
|
1101
|
+
},
|
|
1102
|
+
".layout-area-map-controls-overview": {
|
|
1103
|
+
"grid-area": "map-controls-overview"
|
|
1104
|
+
},
|
|
1105
|
+
".layout-area-map-controls-action": {
|
|
1106
|
+
"grid-area": "map-controls-action"
|
|
1107
|
+
},
|
|
1108
|
+
".layout-map-controls-grid": {
|
|
1109
|
+
display: "grid",
|
|
1110
|
+
"grid-template-rows": "min-content minmax(0, 1fr)",
|
|
1111
|
+
"grid-template-columns": "minmax(0, 1fr) minmax(0, 1fr)",
|
|
1112
|
+
"grid-template-areas": `
|
|
1113
|
+
"map-controls-content map-controls-action"
|
|
1114
|
+
"map-controls-overview map-controls-map"
|
|
1115
|
+
`
|
|
1094
1116
|
}
|
|
1095
1117
|
});
|
|
1096
1118
|
});
|