@onereach/styles 6.8.1 → 6.8.2-beta.4102.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/styles",
3
- "version": "6.8.1",
3
+ "version": "6.8.2-beta.4102.0",
4
4
  "description": "Styles for or-ui-next",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./main.css",
@@ -24,7 +24,8 @@
24
24
  "tailwind.config.preset.js",
25
25
  "temporary-dark-v2.css",
26
26
  "tokens.css",
27
- "tw-color-variables.css"
27
+ "tw-color-variables.css",
28
+ "screens.json"
28
29
  ],
29
30
  "scripts": {
30
31
  "dev": "pnpm build:scss -- --watch",
@@ -57,6 +58,5 @@
57
58
  },
58
59
  "publishConfig": {
59
60
  "access": "public"
60
- },
61
- "gitHead": "58e950c37838f334f3afe90a90bf1eb48ff24f5c"
61
+ }
62
62
  }
package/screens.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "sm": "600px",
3
+ "md": "900px",
4
+ "lg": "1200px",
5
+ "xl": "1536px"
6
+ }
@@ -1,11 +1,5 @@
1
1
  const plugin = require('tailwindcss/plugin');
2
-
3
- const screens = {
4
- 'sm': '600px',
5
- 'md': '900px',
6
- 'lg': '1200px',
7
- 'xl': '1536px',
8
- };
2
+ const screens = require('../../screens.json');
9
3
 
10
4
  const variants = {
11
5
  'mobile': '@media (hover: none)',
@@ -1,5 +1,5 @@
1
1
  const plugin = require('tailwindcss/plugin');
2
- const { screens } = require('./core');
2
+ const screens = require('../../screens.json');
3
3
 
4
4
  const values = {
5
5
  'display-large': 'display-large',