@trackunit/css-tailwind 0.0.49 → 0.0.51

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.49",
3
+ "version": "0.0.51",
4
4
  "main": "./index.cjs",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -8,9 +8,9 @@
8
8
  "types": "./src/index.d.ts",
9
9
  "dependencies": {
10
10
  "@trackunit/css-component-tokens": "0.0.24",
11
- "@trackunit/css-core": "0.0.79",
11
+ "@trackunit/css-core": "0.0.81",
12
12
  "@trackunit/css-tailwind-custom-properties-plugin": "0.0.16",
13
- "@trackunit/ui-design-tokens": "0.0.65"
13
+ "@trackunit/ui-design-tokens": "0.0.66"
14
14
  },
15
15
  "peerDependencies": {}
16
16
  }
@@ -98,6 +98,17 @@
98
98
  --z-overlay: 10;
99
99
  --z-popover: 21;
100
100
  --z-toast: 100;
101
+ --spacing-responsive-space: var(--spacing-4);
102
+ }
103
+ @media (min-width: 768px) {
104
+ :root {
105
+ --spacing-responsive-space: var(--spacing-6);
106
+ }
107
+ }
108
+ @media (min-width: 1024px) {
109
+ :root {
110
+ --spacing-responsive-space: var(--spacing-8);
111
+ }
101
112
  }
102
113
 
103
114
  /* libs/css/core/src/lib/vendor-css/react-day-picker.css */
@@ -929,7 +929,8 @@ var tailwindBaseConfig = {
929
929
  64: withCustomPropertyValueAsComment("--spacing-64"),
930
930
  72: withCustomPropertyValueAsComment("--spacing-72"),
931
931
  80: withCustomPropertyValueAsComment("--spacing-80"),
932
- 96: withCustomPropertyValueAsComment("--spacing-96")
932
+ 96: withCustomPropertyValueAsComment("--spacing-96"),
933
+ "responsive-space": withCustomPropertyValueAsComment("--spacing-responsive-space")
933
934
  },
934
935
  borderRadius: {
935
936
  none: withCustomPropertyValueAsComment("--border-radius-none"),