@trackunit/css-tailwind 0.0.73 → 0.0.74
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.74",
|
|
4
4
|
"main": "./index.cjs",
|
|
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
|
"types": "./src/index.d.ts",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@trackunit/css-component-tokens": "0.0.
|
|
13
|
+
"@trackunit/css-component-tokens": "0.0.33",
|
|
14
14
|
"@trackunit/css-core": "0.0.89",
|
|
15
|
-
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.
|
|
15
|
+
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.25",
|
|
16
16
|
"@trackunit/ui-design-tokens": "0.0.73"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {}
|
|
@@ -1017,7 +1017,7 @@ var grids = {
|
|
|
1017
1017
|
|
|
1018
1018
|
// libs/css/tailwind/src/lib/plugin/layouts.ts
|
|
1019
1019
|
var import_plugin4 = __toESM(require_plugin());
|
|
1020
|
-
var LayoutsPlugin = (0, import_plugin4.default)(({ addUtilities, addComponents }) => {
|
|
1020
|
+
var LayoutsPlugin = (0, import_plugin4.default)(({ addUtilities, addComponents, addVariant }) => {
|
|
1021
1021
|
addUtilities({
|
|
1022
1022
|
".layout-row-height-auto": { "--row-height": "auto" },
|
|
1023
1023
|
".layout-row-height-1fr": { "--row-height": "1fr" },
|
|
@@ -1028,7 +1028,9 @@ var LayoutsPlugin = (0, import_plugin4.default)(({ addUtilities, addComponents }
|
|
|
1028
1028
|
".layout-min-col-sm": { "--min-column-width": "260px" },
|
|
1029
1029
|
".layout-min-col-md": { "--min-column-width": "340px" },
|
|
1030
1030
|
".layout-min-col-lg": { "--min-column-width": "420px" },
|
|
1031
|
-
".layout-min-col-xl": { "--min-column-width": "540px" }
|
|
1031
|
+
".layout-min-col-xl": { "--min-column-width": "540px" },
|
|
1032
|
+
":root": { "--table-spacing": "0.75rem" },
|
|
1033
|
+
".table-compact": { "--table-spacing": "0.25rem" }
|
|
1032
1034
|
});
|
|
1033
1035
|
addComponents({
|
|
1034
1036
|
".layout-area-topbar": {
|
|
@@ -1175,7 +1177,8 @@ var tailwindBaseConfig = {
|
|
|
1175
1177
|
}, tailwindDefaults), customColors);
|
|
1176
1178
|
},
|
|
1177
1179
|
spacing: __spreadProps(__spreadValues({}, designTokensToTailwindConfig("spacing", themeSpacing)), {
|
|
1178
|
-
"responsive-space": withCustomPropertyValueAsComment("--spacing-responsive-space")
|
|
1180
|
+
"responsive-space": withCustomPropertyValueAsComment("--spacing-responsive-space"),
|
|
1181
|
+
"table-spacing": withCustomPropertyValueAsComment("--table-spacing")
|
|
1179
1182
|
}),
|
|
1180
1183
|
borderRadius: designTokensToTailwindConfig("border-radius", themeBorderRadius),
|
|
1181
1184
|
boxShadow: designTokensToTailwindConfig("box-shadow", themeBoxShadow),
|