@onereach/styles 2.11.1-next.914.0 → 2.11.2-next.916.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.11.1-next.914.0",
3
+ "version": "2.11.2-next.916.0",
4
4
  "description": "Styles for or-ui-next",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./main.css",
@@ -90,7 +90,7 @@ module.exports = {
90
90
  fontSize: {
91
91
  ...parseFontSizeTokens(typographyTokens),
92
92
  'inherit': 'inherit',
93
- 'icon': ['1.15em', { lineHeight: 1 }],
93
+ 'icon': '1.15em',
94
94
  },
95
95
 
96
96
  fontWeight: {
@@ -148,6 +148,10 @@ module.exports = {
148
148
  addVariant('focus-within', '&:focus-within:not(.pointer-events-none)');
149
149
  addVariant('active', '&:active:not(.pointer-events-none)');
150
150
 
151
+ addVariant('checked', '&:checked:not(:indeterminate)');
152
+ addVariant('unchecked', '&:not(:checked):not(:indeterminate)');
153
+ addVariant('indeterminate', '&:indeterminate');
154
+
151
155
  addVariant('valid', ['&:valid', '&:not([invalid])']);
152
156
  addVariant('invalid', ['&:invalid', '&[invalid]']);
153
157