@onereach/styles 2.17.5-beta.1190.0 → 2.17.5-beta.1206.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.5-beta.1190.0",
3
+ "version": "2.17.5-beta.1206.0",
4
4
  "description": "Styles for or-ui-next",
5
5
  "main": "./main.css",
6
6
  "unpkg": "./main.css",
@@ -199,14 +199,14 @@ module.exports = {
199
199
  '&[active]:not(.pointer-events-none)',
200
200
  ]);
201
201
 
202
- addVariant('enabled', ['&:enabled', '&:not([disabled])']);
203
- addVariant('disabled', ['&:disabled', '&[disabled]']);
202
+ addVariant('enabled', '&:not([disabled])');
203
+ addVariant('disabled', '&[disabled]');
204
204
 
205
- addVariant('valid', ['&:valid', '&:not([invalid])']);
206
- addVariant('invalid', ['&:invalid', '&[invalid]']);
205
+ addVariant('valid', '&:not([invalid])');
206
+ addVariant('invalid', '&[invalid]');
207
207
 
208
- addVariant('readwrite', ['&:read-write', '&:not([readonly])']);
209
- addVariant('readonly', ['&:read-only', '&[readonly]']);
208
+ addVariant('readwrite', '&:not([readonly])');
209
+ addVariant('readonly', '&[readonly]');
210
210
 
211
211
  addVariant('checked', [
212
212
  '&[type="checkbox"]:checked:not(:indeterminate)',