@stylexjs/stylex 0.7.3 → 0.7.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.
@@ -534,11 +534,11 @@ type outlineColor = color | 'invert';
534
534
  type outlineOffset = number | string;
535
535
  type outlineStyle = 'auto' | brStyle;
536
536
  type outlineWidth = borderWidth;
537
- type overflow = 'visible' | 'hidden' | 'scroll' | 'auto';
537
+ type overflow = 'visible' | 'hidden' | 'clip' | 'scroll' | 'auto';
538
538
  type overflowAnchor = 'auto' | 'none';
539
539
  type overflowWrap = 'normal' | 'break-word';
540
- type overflowX = 'visible' | 'hidden' | 'scroll' | 'auto';
541
- type overflowY = 'visible' | 'hidden' | 'scroll' | 'auto';
540
+ type overflowX = overflow;
541
+ type overflowY = overflow;
542
542
  type overscrollBehavior = 'none' | 'contain' | 'auto';
543
543
  type overscrollBehaviorX = 'none' | 'contain' | 'auto';
544
544
  type overscrollBehaviorY = 'none' | 'contain' | 'auto';
@@ -540,11 +540,11 @@ type outlineColor = color | 'invert';
540
540
  type outlineOffset = number | string;
541
541
  type outlineStyle = 'auto' | brStyle;
542
542
  type outlineWidth = borderWidth;
543
- type overflow = 'visible' | 'hidden' | 'scroll' | 'auto';
543
+ type overflow = 'visible' | 'hidden' | 'clip' | 'scroll' | 'auto';
544
544
  type overflowAnchor = 'auto' | 'none';
545
545
  type overflowWrap = 'normal' | 'break-word';
546
- type overflowX = 'visible' | 'hidden' | 'scroll' | 'auto';
547
- type overflowY = 'visible' | 'hidden' | 'scroll' | 'auto';
546
+ type overflowX = overflow;
547
+ type overflowY = overflow;
548
548
  type overscrollBehavior = 'none' | 'contain' | 'auto';
549
549
  type overscrollBehaviorX = 'none' | 'contain' | 'auto';
550
550
  type overscrollBehaviorY = 'none' | 'contain' | 'auto';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stylexjs/stylex",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "description": "A library for defining styles for optimized user interfaces.",
5
5
  "main": "./lib/stylex.js",
6
6
  "module": "./lib/es/stylex.mjs",
@@ -45,7 +45,7 @@
45
45
  "styleq": "0.1.3"
46
46
  },
47
47
  "devDependencies": {
48
- "@stylexjs/scripts": "0.7.3",
48
+ "@stylexjs/scripts": "0.7.4",
49
49
  "cross-env": "^7.0.3"
50
50
  },
51
51
  "jest": {},