@trackunit/css-tailwind 0.0.85 → 0.0.87
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 +2 -2
- package/tailwind-base.generated.js +39 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/css-tailwind",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.87",
|
|
4
4
|
"main": "./index.cjs.js",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"type": "commonjs",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@trackunit/css-component-tokens": "0.0.
|
|
12
|
+
"@trackunit/css-component-tokens": "0.0.40",
|
|
13
13
|
"@trackunit/css-core": "0.0.95",
|
|
14
14
|
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.31",
|
|
15
15
|
"@trackunit/ui-design-tokens": "0.0.77"
|
|
@@ -204,9 +204,9 @@ var CardTokenDefinition = AsComponentTokenDefinition({
|
|
|
204
204
|
border: { borderColor: "rgba(0, 0, 0, 0)", borderRadius: "2rem" },
|
|
205
205
|
"popover-border": { borderRadius: "1rem" },
|
|
206
206
|
shadow: { boxShadow: "0px 20px 48px rgba(73, 55, 54, 0.1)" },
|
|
207
|
-
spacing: { gap: "var(--spacing-
|
|
208
|
-
"spacing-sm": { gap: "var(--spacing-
|
|
209
|
-
"spacing-md": { gap: "var(--spacing-
|
|
207
|
+
spacing: { gap: "var(--spacing-3)", padding: "var(--spacing-3)" },
|
|
208
|
+
"spacing-sm": { gap: "var(--spacing-4)", padding: "var(--spacing-4)" },
|
|
209
|
+
"spacing-md": { gap: "var(--spacing-4)", padding: "var(--spacing-6)" }
|
|
210
210
|
}
|
|
211
211
|
});
|
|
212
212
|
|
|
@@ -1044,6 +1044,42 @@ var LayoutsPlugin = (0, import_plugin4.default)(({ addUtilities, addComponents,
|
|
|
1044
1044
|
".layout-area-content": {
|
|
1045
1045
|
"grid-area": "content"
|
|
1046
1046
|
},
|
|
1047
|
+
".layout-page": {
|
|
1048
|
+
display: "grid",
|
|
1049
|
+
height: "100%",
|
|
1050
|
+
"align-content": "flex-start"
|
|
1051
|
+
},
|
|
1052
|
+
".layout-page-header-content": {
|
|
1053
|
+
"grid-template-rows": "min-content minmax(0, 1fr)"
|
|
1054
|
+
},
|
|
1055
|
+
".layout-page-content": {
|
|
1056
|
+
"grid-template-rows": "repeat(1, minmax(0, 1fr))"
|
|
1057
|
+
},
|
|
1058
|
+
".page-content": {
|
|
1059
|
+
overflow: "auto",
|
|
1060
|
+
padding: "var(--spacing-4)",
|
|
1061
|
+
"@media (min-width: 768px)": {
|
|
1062
|
+
padding: "var(--spacing-6)"
|
|
1063
|
+
},
|
|
1064
|
+
"@media (min-width: 1024px)": {
|
|
1065
|
+
padding: "var(--spacing-8)"
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1068
|
+
".page-content-with-gap": {
|
|
1069
|
+
display: "flex",
|
|
1070
|
+
"flex-direction": "column",
|
|
1071
|
+
gap: "var(--spacing-4)",
|
|
1072
|
+
"@media (min-width: 768px)": {
|
|
1073
|
+
gap: "var(--spacing-6)"
|
|
1074
|
+
},
|
|
1075
|
+
"@media (min-width: 1024px)": {
|
|
1076
|
+
gap: "var(--spacing-8)"
|
|
1077
|
+
}
|
|
1078
|
+
},
|
|
1079
|
+
".layout-page-sidebar-content": {
|
|
1080
|
+
"grid-template-rows": "repeat(1, minmax(0, 1fr))",
|
|
1081
|
+
"grid-template-columns": "360px minmax(0,1fr)"
|
|
1082
|
+
},
|
|
1047
1083
|
".layout-left-sidebar-grid": {
|
|
1048
1084
|
display: "grid",
|
|
1049
1085
|
"grid-template-rows": "min-content min-content auto",
|