@onereach/styles 2.17.3 → 2.17.4-beta.1152.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": "2.17.3",
3
+ "version": "2.17.4-beta.1152.0",
4
4
  "description": "Styles for or-ui-next",
5
5
  "main": "./main.css",
6
6
  "unpkg": "./main.css",
@@ -49,6 +49,5 @@
49
49
  "dependencies": {
50
50
  "@tailwindcss/typography": "^0.5.4",
51
51
  "tailwindcss": "^3.1.3"
52
- },
53
- "gitHead": "1ca2d0ced134d658f38310a7e38b23f8adef41b1"
52
+ }
54
53
  }
@@ -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
- addVariant('active', '&:active:not(.pointer-events-none)');
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]']);