@stylexjs/stylex 0.9.2 → 0.10.0-beta.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.
package/lib/StyleXCSSTypes.d.ts
CHANGED
|
@@ -397,6 +397,7 @@ type imeMode = 'auto' | 'normal' | 'active' | 'inactive' | 'disabled';
|
|
|
397
397
|
type initialLetter = 'normal' | string;
|
|
398
398
|
type initialLetterAlign = string;
|
|
399
399
|
type inlineSize = width;
|
|
400
|
+
type interpolateSize = 'allow-keywords' | 'numeric-only';
|
|
400
401
|
type isolation = 'auto' | 'isolate';
|
|
401
402
|
type justifyContent =
|
|
402
403
|
| 'center'
|
|
@@ -1187,6 +1188,7 @@ export type CSSProperties = Readonly<{
|
|
|
1187
1188
|
initialLetter?: all | initialLetter;
|
|
1188
1189
|
initialLetterAlign?: all | initialLetterAlign;
|
|
1189
1190
|
inlineSize?: all | inlineSize;
|
|
1191
|
+
interpolateSize?: all | interpolateSize;
|
|
1190
1192
|
inset?: all | number | string;
|
|
1191
1193
|
insetBlock?: all | number | string;
|
|
1192
1194
|
insetBlockEnd?: all | number | string;
|
|
@@ -399,6 +399,7 @@ type imeMode = 'auto' | 'normal' | 'active' | 'inactive' | 'disabled';
|
|
|
399
399
|
type initialLetter = 'normal' | string;
|
|
400
400
|
type initialLetterAlign = string;
|
|
401
401
|
type inlineSize = width;
|
|
402
|
+
type interpolateSize = 'allow-keywords' | 'numeric-only';
|
|
402
403
|
type isolation = 'auto' | 'isolate';
|
|
403
404
|
type justifyContent =
|
|
404
405
|
| 'center'
|
|
@@ -1241,6 +1242,8 @@ export type CSSProperties = $ReadOnly<{
|
|
|
1241
1242
|
initialLetterAlign?: all | initialLetterAlign,
|
|
1242
1243
|
inlineSize?: all | inlineSize,
|
|
1243
1244
|
|
|
1245
|
+
interpolateSize?: all | interpolateSize,
|
|
1246
|
+
|
|
1244
1247
|
inset?: all | number | string,
|
|
1245
1248
|
insetBlock?: all | number | string,
|
|
1246
1249
|
insetBlockEnd?: all | number | string,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stylexjs/stylex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0-beta.1",
|
|
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.
|
|
48
|
+
"@stylexjs/scripts": "0.10.0-beta.1",
|
|
49
49
|
"cross-env": "^7.0.3"
|
|
50
50
|
},
|
|
51
51
|
"jest": {},
|