@onereach/styles 2.17.4-beta.1156.0 → 2.17.4
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": "2.17.4
|
|
3
|
+
"version": "2.17.4",
|
|
4
4
|
"description": "Styles for or-ui-next",
|
|
5
5
|
"main": "./main.css",
|
|
6
6
|
"unpkg": "./main.css",
|
|
@@ -49,5 +49,6 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@tailwindcss/typography": "^0.5.4",
|
|
51
51
|
"tailwindcss": "^3.1.3"
|
|
52
|
-
}
|
|
52
|
+
},
|
|
53
|
+
"gitHead": "7927a508687b62416fc4ef0eb86d83b1b5a041ac"
|
|
53
54
|
}
|
|
@@ -589,16 +589,6 @@
|
|
|
589
589
|
"name": "dark-warning-opacity-0-16",
|
|
590
590
|
"value": "rgba(251,188,12,0.16)",
|
|
591
591
|
"groupName": "dark/warning/opacity-0.16"
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
"name": "light-overlay",
|
|
595
|
-
"value": "rgba(27,27,29,0.8)",
|
|
596
|
-
"groupName": "light/overlay"
|
|
597
|
-
},
|
|
598
|
-
{
|
|
599
|
-
"name": "dark-overlay",
|
|
600
|
-
"value": "rgba(27,27,29,0.8)",
|
|
601
|
-
"groupName": "dark/overlay"
|
|
602
592
|
}
|
|
603
593
|
],
|
|
604
594
|
"Gradients": [],
|
|
@@ -193,7 +193,11 @@ module.exports = {
|
|
|
193
193
|
addVariant('hover', '&:hover:not(.pointer-events-none)');
|
|
194
194
|
addVariant('focus-visible', '&:focus-visible:not(.pointer-events-none)');
|
|
195
195
|
addVariant('focus-within', '&:focus-within:not(.pointer-events-none)');
|
|
196
|
-
|
|
196
|
+
|
|
197
|
+
addVariant('active', [
|
|
198
|
+
'&:active:not(.pointer-events-none)',
|
|
199
|
+
'&[active]:not(.pointer-events-none)',
|
|
200
|
+
]);
|
|
197
201
|
|
|
198
202
|
addVariant('enabled', ['&:enabled', '&:not([disabled])']);
|
|
199
203
|
addVariant('disabled', ['&:disabled', '&[disabled]']);
|
package/tokens.css
CHANGED
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
--or-c-warning-opacity-0-08: rgba(153,112,0,0.08);
|
|
62
62
|
--or-c-warning-opacity-0-12: rgba(153,112,0,0.12);
|
|
63
63
|
--or-c-warning-opacity-0-16: rgba(153,112,0,0.16);
|
|
64
|
-
--or-c-overlay: rgba(27,27,29,0.8);
|
|
65
64
|
}
|
|
66
65
|
[data-theme="dark-mode"], [data-theme="dark"] {
|
|
67
66
|
--or-c-primary: rgba(164,200,255,1);
|
|
@@ -122,5 +121,4 @@
|
|
|
122
121
|
--or-c-warning-opacity-0-08: rgba(251,188,12,0.08);
|
|
123
122
|
--or-c-warning-opacity-0-12: rgba(251,188,12,0.12);
|
|
124
123
|
--or-c-warning-opacity-0-16: rgba(251,188,12,0.16);
|
|
125
|
-
--or-c-overlay: rgba(27,27,29,0.8);
|
|
126
124
|
}
|