@stylexjs/stylex 0.14.0 → 0.14.1

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.
@@ -193,7 +193,9 @@ export type CompiledStyles =
193
193
 
194
194
  declare const StyleXInlineStylesTag: unique symbol;
195
195
 
196
- export type InlineStyles = typeof StyleXInlineStylesTag;
196
+ export type InlineStyles = {
197
+ _opaque: typeof StyleXInlineStylesTag;
198
+ };
197
199
 
198
200
  type _GenStylePropType<CSS extends UserAuthoredStyles> = Readonly<{
199
201
  [Key in keyof CSS]: StyleXClassNameFor<Key, Readonly<CSS[Key]>>;
@@ -193,7 +193,9 @@ export type CompiledStyles =
193
193
 
194
194
  declare const StyleXInlineStylesTag: unique symbol;
195
195
 
196
- export type InlineStyles = typeof StyleXInlineStylesTag;
196
+ export type InlineStyles = {
197
+ _opaque: typeof StyleXInlineStylesTag;
198
+ };
197
199
 
198
200
  type _GenStylePropType<CSS extends UserAuthoredStyles> = Readonly<{
199
201
  [Key in keyof CSS]: StyleXClassNameFor<Key, Readonly<CSS[Key]>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stylexjs/stylex",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "description": "A library for defining styles for optimized user interfaces.",
5
5
  "main": "./lib/cjs/stylex.js",
6
6
  "module": "./lib/es/stylex.mjs",
@@ -56,7 +56,7 @@
56
56
  "cross-env": "^7.0.3",
57
57
  "rimraf": "^5.0.10",
58
58
  "rollup": "^4.24.0",
59
- "scripts": "0.14.0"
59
+ "scripts": "0.14.1"
60
60
  },
61
61
  "files": [
62
62
  "lib/*"