diff options
Diffstat (limited to 'src/api/schema.js')
-rw-r--r-- | src/api/schema.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/api/schema.js b/src/api/schema.js index 1db65f2ca..ac28f56ab 100644 --- a/src/api/schema.js +++ b/src/api/schema.js @@ -581,14 +581,18 @@ const CSSInJSBehaviorKeys = { const JSXRuntime = { 1: 1, 2: 2, + 3: 3, automatic: 1, classic: 2, + solid: 3, }; const JSXRuntimeKeys = { 1: "automatic", 2: "classic", + 3: "solid", automatic: "automatic", classic: "classic", + solid: "solid", }; function decodeJSX(bb) { |