@tamagui/static 3.0.0-beta.651.1 → 3.0.0-beta.655.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.
|
@@ -1006,14 +1006,14 @@ function createTamaguiCompilerHost(options) {
|
|
|
1006
1006
|
const animatedByNeedsRuntime = animationNames.has("animatedBy") && !animationNames.has("transition") && (dynamicStyleEntries.length > 0 || Object.keys(animationProps).some((name) => name !== "animatedBy" && (isStyleProp(name, component) && typeof animationProps[name] === "string" && animationProps[name].includes(":") || name === "animationConfig" || name === "forceStyle" || name === "onTransition")));
|
|
1007
1007
|
const runtimeAnimationRequired = animationNames.has("transition") && resolvedCssTransition === null || [...animationNames].some((name) => name !== "transition" && name !== "animatedBy" && name !== "animateOnly") || animatedByNeedsRuntime;
|
|
1008
1008
|
let dynamicHostStyleProperties = null;
|
|
1009
|
-
if (
|
|
1009
|
+
if (platform === "web" && !options.disablePartialExtraction && (input.element.form === "jsx" || input.element.propsSpan !== null) && dynamicStyleEntries.length > 0 && !input.element.entries.some((entry) => entry.kind === "spread")) {
|
|
1010
1010
|
const seen = /* @__PURE__ */ new Set();
|
|
1011
1011
|
const properties = [];
|
|
1012
1012
|
const dynamicOwners = /* @__PURE__ */ new Set();
|
|
1013
1013
|
for (const entry of dynamicStyleEntries) {
|
|
1014
1014
|
if (entry.kind !== "prop" || entry.value.kind !== "bailout" && entry.value.kind !== "conditional") continue;
|
|
1015
1015
|
const name = directStyleName(entry.name, component);
|
|
1016
|
-
if (name
|
|
1016
|
+
if (!name || seen.has(name)) {
|
|
1017
1017
|
properties.length = 0;
|
|
1018
1018
|
break;
|
|
1019
1019
|
}
|
|
@@ -1022,10 +1022,32 @@ function createTamaguiCompilerHost(options) {
|
|
|
1022
1022
|
properties.length = 0;
|
|
1023
1023
|
break;
|
|
1024
1024
|
}
|
|
1025
|
+
let property = null;
|
|
1026
|
+
const expression = input.source.slice(entry.value.span.start, entry.value.span.end);
|
|
1027
|
+
if (resolvedCssTransition !== null && (name === "opacity" || name === "scale")) property = name === "opacity" ? `opacity: (${expression})` : `transform: "scale(" + (${expression}) + ")"`;
|
|
1028
|
+
else if (entry.value.kind === "bailout" && owners.size === 1 && owners.has(name)) {
|
|
1029
|
+
const dynamic = entry.value.dynamic;
|
|
1030
|
+
if (dynamic?.type === "number") property = `${JSON.stringify(name)}: (${expression})`;
|
|
1031
|
+
else if (dynamic?.type === "string" && dynamic.values?.length) {
|
|
1032
|
+
let valuesStayLiteral = true;
|
|
1033
|
+
for (const value of dynamic.values) {
|
|
1034
|
+
const split2 = resolveSplitStyles({ [entry.name]: value }, partialStaticConfig(component.staticConfig));
|
|
1035
|
+
const atomics = Object.values(split2?.rulesToInsert ?? {});
|
|
1036
|
+
if (atomics.length !== 1 || atomics[0]?.[import_helpers.StyleObjectProperty] !== name || atomics[0]?.[import_helpers.StyleObjectValue] !== value) {
|
|
1037
|
+
valuesStayLiteral = false;
|
|
1038
|
+
break;
|
|
1039
|
+
}
|
|
1040
|
+
}
|
|
1041
|
+
if (valuesStayLiteral) property = `${JSON.stringify(name)}: (${expression})`;
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
if (!property) {
|
|
1045
|
+
properties.length = 0;
|
|
1046
|
+
break;
|
|
1047
|
+
}
|
|
1025
1048
|
seen.add(name);
|
|
1026
1049
|
for (const owner of owners) dynamicOwners.add(owner);
|
|
1027
|
-
|
|
1028
|
-
properties.push(name === "opacity" ? `opacity: (${expression})` : `transform: "scale(" + (${expression}) + ")"`);
|
|
1050
|
+
properties.push(property);
|
|
1029
1051
|
}
|
|
1030
1052
|
if (properties.length === dynamicStyleEntries.length && !input.element.entries.some((entry) => {
|
|
1031
1053
|
if (entry.kind !== "prop" || entry.value.kind !== "static") return false;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { zeroRuleMessage, zeroThemeBoundaryMessage } from "@tamagui/compiler-core";
|
|
2
|
-
import { StyleObjectIdentifier, StyleObjectProperty, StyleObjectRules, stylePropsAll, stylePropsText, validStyles } from "@tamagui/helpers";
|
|
2
|
+
import { StyleObjectIdentifier, StyleObjectProperty, StyleObjectRules, StyleObjectValue, stylePropsAll, stylePropsText, validStyles } from "@tamagui/helpers";
|
|
3
3
|
import { ATTRIBUTES, DISPLAY_WEB_RESET, EVENTS, NATIVE_BACKING, NATIVE_BLOCK_DEFAULTS, NATIVE_ELEMENT_DEFAULTS, NATIVE_FLEX_DEFAULTS, NATIVE_INPUT_TYPES, NATIVE_PRIMITIVE_MODULE, TAGS, TAG_WEB_DEFAULTS } from "@tamagui/dom";
|
|
4
4
|
import { createModifierRegistry, parseTransition, parseValue } from "@tamagui/style-grammar";
|
|
5
5
|
import { isValidStyleKey } from "@tamagui/web";
|
|
@@ -983,14 +983,14 @@ function createTamaguiCompilerHost(options) {
|
|
|
983
983
|
const animatedByNeedsRuntime = animationNames.has("animatedBy") && !animationNames.has("transition") && (dynamicStyleEntries.length > 0 || Object.keys(animationProps).some((name) => name !== "animatedBy" && (isStyleProp(name, component) && typeof animationProps[name] === "string" && animationProps[name].includes(":") || name === "animationConfig" || name === "forceStyle" || name === "onTransition")));
|
|
984
984
|
const runtimeAnimationRequired = animationNames.has("transition") && resolvedCssTransition === null || [...animationNames].some((name) => name !== "transition" && name !== "animatedBy" && name !== "animateOnly") || animatedByNeedsRuntime;
|
|
985
985
|
let dynamicHostStyleProperties = null;
|
|
986
|
-
if (
|
|
986
|
+
if (platform === "web" && !options.disablePartialExtraction && (input.element.form === "jsx" || input.element.propsSpan !== null) && dynamicStyleEntries.length > 0 && !input.element.entries.some((entry) => entry.kind === "spread")) {
|
|
987
987
|
const seen = /* @__PURE__ */ new Set();
|
|
988
988
|
const properties = [];
|
|
989
989
|
const dynamicOwners = /* @__PURE__ */ new Set();
|
|
990
990
|
for (const entry of dynamicStyleEntries) {
|
|
991
991
|
if (entry.kind !== "prop" || entry.value.kind !== "bailout" && entry.value.kind !== "conditional") continue;
|
|
992
992
|
const name = directStyleName(entry.name, component);
|
|
993
|
-
if (name
|
|
993
|
+
if (!name || seen.has(name)) {
|
|
994
994
|
properties.length = 0;
|
|
995
995
|
break;
|
|
996
996
|
}
|
|
@@ -999,10 +999,32 @@ function createTamaguiCompilerHost(options) {
|
|
|
999
999
|
properties.length = 0;
|
|
1000
1000
|
break;
|
|
1001
1001
|
}
|
|
1002
|
+
let property = null;
|
|
1003
|
+
const expression = input.source.slice(entry.value.span.start, entry.value.span.end);
|
|
1004
|
+
if (resolvedCssTransition !== null && (name === "opacity" || name === "scale")) property = name === "opacity" ? `opacity: (${expression})` : `transform: "scale(" + (${expression}) + ")"`;
|
|
1005
|
+
else if (entry.value.kind === "bailout" && owners.size === 1 && owners.has(name)) {
|
|
1006
|
+
const dynamic = entry.value.dynamic;
|
|
1007
|
+
if (dynamic?.type === "number") property = `${JSON.stringify(name)}: (${expression})`;
|
|
1008
|
+
else if (dynamic?.type === "string" && dynamic.values?.length) {
|
|
1009
|
+
let valuesStayLiteral = true;
|
|
1010
|
+
for (const value of dynamic.values) {
|
|
1011
|
+
const split2 = resolveSplitStyles({ [entry.name]: value }, partialStaticConfig(component.staticConfig));
|
|
1012
|
+
const atomics = Object.values(split2?.rulesToInsert ?? {});
|
|
1013
|
+
if (atomics.length !== 1 || atomics[0]?.[StyleObjectProperty] !== name || atomics[0]?.[StyleObjectValue] !== value) {
|
|
1014
|
+
valuesStayLiteral = false;
|
|
1015
|
+
break;
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
if (valuesStayLiteral) property = `${JSON.stringify(name)}: (${expression})`;
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
if (!property) {
|
|
1022
|
+
properties.length = 0;
|
|
1023
|
+
break;
|
|
1024
|
+
}
|
|
1002
1025
|
seen.add(name);
|
|
1003
1026
|
for (const owner of owners) dynamicOwners.add(owner);
|
|
1004
|
-
|
|
1005
|
-
properties.push(name === "opacity" ? `opacity: (${expression})` : `transform: "scale(" + (${expression}) + ")"`);
|
|
1027
|
+
properties.push(property);
|
|
1006
1028
|
}
|
|
1007
1029
|
if (properties.length === dynamicStyleEntries.length && !input.element.entries.some((entry) => {
|
|
1008
1030
|
if (entry.kind !== "prop" || entry.value.kind !== "static") return false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compilerHost.js","names":[],"sources":["esm/compilerHost.js"],"sourcesContent":["import { zeroRuleMessage, zeroThemeBoundaryMessage } from \"@tamagui/compiler-core\";\nimport { StyleObjectIdentifier, StyleObjectProperty, StyleObjectRules, stylePropsAll, stylePropsText, validStyles } from \"@tamagui/helpers\";\nimport { ATTRIBUTES, DISPLAY_WEB_RESET, EVENTS, NATIVE_BACKING, NATIVE_BLOCK_DEFAULTS, NATIVE_ELEMENT_DEFAULTS, NATIVE_FLEX_DEFAULTS, NATIVE_INPUT_TYPES, NATIVE_PRIMITIVE_MODULE, TAGS, TAG_WEB_DEFAULTS } from \"@tamagui/dom\";\nimport { createModifierRegistry, parseTransition, parseValue } from \"@tamagui/style-grammar\";\nimport { isValidStyleKey } from \"@tamagui/web\";\nimport { concatClassName } from \"./extractor/concatClassName\";\nimport { requireTamaguiCore } from \"./helpers/requireTamaguiCore\";\n\nconst DOM_FRONTENDS = /* @__PURE__ */ new Set([\n\t\"tamagui\",\n\t\"tamagui/dom\",\n\t\"@tamagui/core\",\n\t\"@tamagui/core/dom\",\n\t\"@tamagui/tailwind\"\n]);\nconst componentState = {\n\tfocus: false,\n\tfocusVisible: false,\n\tfocusWithin: false,\n\thover: false,\n\tunmounted: true,\n\tpress: false,\n\tpressIn: false,\n\tdisabled: false\n};\nfunction staticObject(value) {\n\treturn !!value && typeof value === \"object\" && !Array.isArray(value);\n}\nconst flatClausePattern = /(?:^|\\s)@?[A-Za-z][A-Za-z0-9-]*(?:\\/[A-Za-z0-9_-]+)?:/;\nconst nativeInheritedKeywordPattern = /(?:^|:)(?:inherit|unset)(?=\\s|$)/;\nconst nativeInitialKeywordPattern = /(?:^|:)initial(?=\\s|$)/;\nconst nativeRuntimeOnlyStyleProperties = /* @__PURE__ */ new Set([\"textIndent\"]);\nfunction componentKey(resolvedId, exportName) {\n\treturn `${resolvedId}#${exportName}`;\n}\nfunction cssFromRules(rules) {\n\treturn Object.values(rules).flatMap((styleObject) => {\n\t\tconst identifier = styleObject?.[StyleObjectIdentifier];\n\t\tconst styleRules = styleObject?.[StyleObjectRules];\n\t\treturn identifier && Array.isArray(styleRules) ? styleRules : [];\n\t});\n}\nfunction jsxClassName(value) {\n\treturn `className=${JSON.stringify(value)}`;\n}\nfunction objectClassName(value) {\n\treturn `className: ${JSON.stringify(value)}`;\n}\nfunction serializedStyle(style, dynamicProperties) {\n\tif (dynamicProperties.length === 0) return style ? JSON.stringify(style) : \"\";\n\treturn `{ ${[...style ? Object.entries(style).map(([name, value]) => `${JSON.stringify(name)}: ${JSON.stringify(value)}`) : [], ...dynamicProperties].join(\", \")} }`;\n}\nfunction jsxStyleAttributes(className, style, dynamicProperties = []) {\n\tconst serialized = serializedStyle(style, dynamicProperties);\n\treturn [className ? jsxClassName(className) : \"\", serialized ? `style={${serialized}}` : \"\"].filter(Boolean).join(\" \");\n}\nfunction objectStyleProperties(className, style, dynamicProperties = []) {\n\tconst serialized = serializedStyle(style, dynamicProperties);\n\treturn [className ? objectClassName(className) : \"\", serialized ? `style: ${serialized}` : \"\"].filter(Boolean).join(\", \");\n}\nfunction extractedStyleArtifacts(split, props, config, includeRuntimeBase = true, hasStyleFrontend = false) {\n\tconst callerClassName = !hasStyleFrontend && typeof props.className === \"string\" ? props.className : \"\";\n\tconst viewClassName = typeof split.viewProps?.className === \"string\" ? split.viewProps.className : \"\";\n\tconst classNameWithoutCaller = callerClassName && viewClassName.endsWith(callerClassName) ? viewClassName.slice(0, -callerClassName.length).trimEnd() : viewClassName;\n\tconst rules = split.rulesToInsert ?? {};\n\tconst mediaNames = new Set(Object.keys(config.media ?? {}));\n\tconst pseudoNames = [\n\t\t\"hover\",\n\t\t\"press\",\n\t\t\"focus\",\n\t\t\"focusVisible\",\n\t\t\"focusWithin\",\n\t\t\"disabled\"\n\t];\n\tconst buckets = {\n\t\tgroup: [],\n\t\tnormal: [],\n\t\tpseudo: [],\n\t\ttheme: [],\n\t\tmedia: []\n\t};\n\tconst classKeys = /* @__PURE__ */ new Map();\n\tfor (const [key, identifier] of Object.entries(split.classNames ?? {})) if (typeof identifier === \"string\") classKeys.set(identifier, key);\n\tconst identifiers = /* @__PURE__ */ new Set([...classKeys.keys(), ...Object.values(rules).flatMap((styleObject) => {\n\t\tconst identifier = styleObject?.[StyleObjectIdentifier];\n\t\treturn typeof identifier === \"string\" ? [identifier] : [];\n\t})]);\n\tfor (const identifier of identifiers) {\n\t\tconst key = classKeys.get(identifier) ?? \"\";\n\t\tconst css2 = cssFromRules(Object.fromEntries(Object.entries(rules).filter(([, styleObject]) => styleObject?.[StyleObjectIdentifier] === identifier))).join(\"\");\n\t\tif (identifier.startsWith(\"t_group_\")) buckets.group.push(identifier);\n\t\telse if (pseudoNames.some((name) => key.endsWith(`-${name}`))) buckets.pseudo.push(identifier);\n\t\telse if (css2.includes(\".t_\")) buckets.theme.push(identifier);\n\t\telse if ([...mediaNames].some((name) => key.endsWith(`-${name}`))) buckets.media.push(identifier);\n\t\telse buckets.normal.push(identifier);\n\t}\n\tconst orderedIdentifiers = [\n\t\t...buckets.group,\n\t\t...buckets.normal,\n\t\t...buckets.pseudo,\n\t\t...buckets.theme,\n\t\t...buckets.media\n\t];\n\tconst orderedSet = new Set(orderedIdentifiers);\n\tconst baseViewClassName = includeRuntimeBase ? classNameWithoutCaller.split(/\\s+/).filter((token) => token && !orderedSet.has(token)).join(\" \") : \"\";\n\tconst css = orderedIdentifiers.flatMap((identifier) => {\n\t\tconst identifierRules = cssFromRules(Object.fromEntries(Object.entries(rules).filter(([, styleObject]) => styleObject?.[StyleObjectIdentifier] === identifier)));\n\t\treturn buckets.theme.includes(identifier) ? identifierRules.map((rule) => rule.replace(\":root:root:root.t_\", \":root:root:root:root.t_\")) : identifierRules;\n\t});\n\treturn {\n\t\tclassName: concatClassName(baseViewClassName, orderedIdentifiers, callerClassName),\n\t\tcss\n\t};\n}\nfunction compiledPropsEdits(input, styleEntries, replacement) {\n\tconst propsSpan = input.element.propsSpan;\n\tif (!propsSpan) return null;\n\tconst original = input.source.slice(propsSpan.start, propsSpan.end);\n\tconst trimmed = original.trim();\n\tif (!trimmed.startsWith(\"{\") || !trimmed.endsWith(\"}\")) return [{\n\t\tstart: propsSpan.start,\n\t\tend: propsSpan.end,\n\t\tcontent: `{ ${replacement} }`,\n\t\torigin: propsSpan\n\t}];\n\tif (styleEntries.length === 0) {\n\t\tconst close = original.lastIndexOf(\"}\");\n\t\tconst separator = original.slice(1, close).trim() ? \", \" : \" \";\n\t\tconst position = propsSpan.start + close;\n\t\treturn [{\n\t\t\tstart: position,\n\t\t\tend: position,\n\t\t\tcontent: `${separator}${replacement} `,\n\t\t\torigin: propsSpan\n\t\t}];\n\t}\n\tconst edits = [];\n\tfor (const [index, entry] of styleEntries.entries()) {\n\t\tlet start = entry.span.start;\n\t\tlet end = entry.span.end;\n\t\tif (index === 0) {\n\t\t\tedits.push({\n\t\t\t\tstart,\n\t\t\t\tend,\n\t\t\t\tcontent: replacement,\n\t\t\t\torigin: entry.span\n\t\t\t});\n\t\t\tcontinue;\n\t\t}\n\t\tlet cursor = end - propsSpan.start;\n\t\twhile (cursor < original.length - 1 && /\\s/.test(original[cursor])) cursor++;\n\t\tif (original[cursor] === \",\") end = propsSpan.start + cursor + 1;\n\t\telse {\n\t\t\tcursor = start - propsSpan.start - 1;\n\t\t\twhile (cursor > 0 && /\\s/.test(original[cursor])) cursor--;\n\t\t\tif (original[cursor] === \",\") start = propsSpan.start + cursor;\n\t\t}\n\t\tedits.push({\n\t\t\tstart,\n\t\t\tend,\n\t\t\tcontent: \"\",\n\t\t\torigin: entry.span\n\t\t});\n\t}\n\tconst merged = [];\n\tfor (const edit of edits.sort((left, right) => left.start - right.start)) {\n\t\tconst previous = merged.at(-1);\n\t\tif (previous && edit.start <= previous.end && !previous.content && !edit.content) previous.end = Math.max(previous.end, edit.end);\n\t\telse merged.push(edit);\n\t}\n\treturn merged;\n}\nconst compilerStyleProps = /* @__PURE__ */ new Set([\n\t\"className\",\n\t\"style\",\n\t\"group\",\n\t\"transition\",\n\t\"animation\",\n\t\"animateOnly\",\n\t\"animatePresence\",\n\t\"animatedBy\",\n\t\"fontFamily\",\n\t\"render\"\n]);\nconst runtimeAnimationProps = /* @__PURE__ */ new Set([\n\t\"transition\",\n\t\"animation\",\n\t\"animateOnly\",\n\t\"animatePresence\",\n\t\"animatedBy\"\n]);\nconst cssShorthandConflicts = {\n\tbackground: [\n\t\t\"backgroundAttachment\",\n\t\t\"backgroundBlendMode\",\n\t\t\"backgroundClip\",\n\t\t\"backgroundColor\",\n\t\t\"backgroundImage\",\n\t\t\"backgroundOrigin\",\n\t\t\"backgroundPosition\",\n\t\t\"backgroundRepeat\",\n\t\t\"backgroundSize\"\n\t],\n\tborder: [\n\t\t\"borderTop\",\n\t\t\"borderTopColor\",\n\t\t\"borderTopStyle\",\n\t\t\"borderTopWidth\",\n\t\t\"borderRight\",\n\t\t\"borderRightColor\",\n\t\t\"borderRightStyle\",\n\t\t\"borderRightWidth\",\n\t\t\"borderBottom\",\n\t\t\"borderBottomColor\",\n\t\t\"borderBottomStyle\",\n\t\t\"borderBottomWidth\",\n\t\t\"borderLeft\",\n\t\t\"borderLeftColor\",\n\t\t\"borderLeftStyle\",\n\t\t\"borderLeftWidth\",\n\t\t\"borderColor\",\n\t\t\"borderStyle\",\n\t\t\"borderWidth\",\n\t\t\"borderImage\",\n\t\t\"borderImageOutset\",\n\t\t\"borderImageRepeat\",\n\t\t\"borderImageSlice\",\n\t\t\"borderImageSource\",\n\t\t\"borderImageWidth\",\n\t\t\"borderInlineColor\",\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderInlineStyle\",\n\t\t\"borderInlineWidth\"\n\t],\n\tborderTop: [\n\t\t\"borderTopColor\",\n\t\t\"borderTopStyle\",\n\t\t\"borderTopWidth\"\n\t],\n\tborderRight: [\n\t\t\"borderRightColor\",\n\t\t\"borderRightStyle\",\n\t\t\"borderRightWidth\",\n\t\t\"borderInlineColor\",\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderInlineStyle\",\n\t\t\"borderInlineWidth\"\n\t],\n\tborderBottom: [\n\t\t\"borderBottomColor\",\n\t\t\"borderBottomStyle\",\n\t\t\"borderBottomWidth\"\n\t],\n\tborderLeft: [\n\t\t\"borderLeftColor\",\n\t\t\"borderLeftStyle\",\n\t\t\"borderLeftWidth\",\n\t\t\"borderInlineColor\",\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderInlineStyle\",\n\t\t\"borderInlineWidth\"\n\t],\n\tborderImage: [\n\t\t\"borderImageOutset\",\n\t\t\"borderImageRepeat\",\n\t\t\"borderImageSlice\",\n\t\t\"borderImageSource\",\n\t\t\"borderImageWidth\"\n\t],\n\toutline: [\n\t\t\"outlineColor\",\n\t\t\"outlineStyle\",\n\t\t\"outlineWidth\"\n\t],\n\tgap: [\"columnGap\", \"rowGap\"],\n\tgridColumn: [\"gridColumnEnd\", \"gridColumnStart\"],\n\tgridRow: [\"gridRowEnd\", \"gridRowStart\"],\n\tmarginInline: [\n\t\t\"marginInlineEnd\",\n\t\t\"marginInlineStart\",\n\t\t\"marginEnd\",\n\t\t\"marginStart\",\n\t\t\"marginLeft\",\n\t\t\"marginRight\"\n\t],\n\tpaddingInline: [\n\t\t\"paddingInlineEnd\",\n\t\t\"paddingInlineStart\",\n\t\t\"paddingEnd\",\n\t\t\"paddingStart\",\n\t\t\"paddingLeft\",\n\t\t\"paddingRight\"\n\t],\n\tinsetInline: [\n\t\t\"insetInlineEnd\",\n\t\t\"insetInlineStart\",\n\t\t\"end\",\n\t\t\"start\",\n\t\t\"left\",\n\t\t\"right\"\n\t],\n\tborderInlineColor: [\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderEndColor\",\n\t\t\"borderStartColor\",\n\t\t\"borderLeftColor\",\n\t\t\"borderRightColor\"\n\t],\n\tborderInlineStyle: [\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderEndStyle\",\n\t\t\"borderStartStyle\",\n\t\t\"borderLeftStyle\",\n\t\t\"borderRightStyle\"\n\t],\n\tborderInlineWidth: [\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderEndWidth\",\n\t\t\"borderStartWidth\",\n\t\t\"borderLeftWidth\",\n\t\t\"borderRightWidth\"\n\t],\n\tmask: [\n\t\t\"maskBorder\",\n\t\t\"maskBorderMode\",\n\t\t\"maskBorderOutset\",\n\t\t\"maskBorderRepeat\",\n\t\t\"maskBorderSlice\",\n\t\t\"maskBorderSource\",\n\t\t\"maskBorderWidth\",\n\t\t\"maskClip\",\n\t\t\"maskComposite\",\n\t\t\"maskImage\",\n\t\t\"maskMode\",\n\t\t\"maskOrigin\",\n\t\t\"maskPosition\",\n\t\t\"maskRepeat\",\n\t\t\"maskSize\"\n\t],\n\tmaskBorder: [\n\t\t\"maskBorderMode\",\n\t\t\"maskBorderOutset\",\n\t\t\"maskBorderRepeat\",\n\t\t\"maskBorderSlice\",\n\t\t\"maskBorderSource\",\n\t\t\"maskBorderWidth\"\n\t]\n};\nconst cssConflictFamilies = [\n\t/* @__PURE__ */ new Set([\n\t\t\"marginInline\",\n\t\t\"marginInlineEnd\",\n\t\t\"marginInlineStart\",\n\t\t\"marginEnd\",\n\t\t\"marginStart\",\n\t\t\"marginLeft\",\n\t\t\"marginRight\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"paddingInline\",\n\t\t\"paddingInlineEnd\",\n\t\t\"paddingInlineStart\",\n\t\t\"paddingEnd\",\n\t\t\"paddingStart\",\n\t\t\"paddingLeft\",\n\t\t\"paddingRight\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"insetInline\",\n\t\t\"insetInlineEnd\",\n\t\t\"insetInlineStart\",\n\t\t\"end\",\n\t\t\"start\",\n\t\t\"left\",\n\t\t\"right\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"borderInlineColor\",\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderEndColor\",\n\t\t\"borderStartColor\",\n\t\t\"borderLeftColor\",\n\t\t\"borderRightColor\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"borderInlineStyle\",\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderEndStyle\",\n\t\t\"borderStartStyle\",\n\t\t\"borderLeftStyle\",\n\t\t\"borderRightStyle\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"borderInlineWidth\",\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderEndWidth\",\n\t\t\"borderStartWidth\",\n\t\t\"borderLeftWidth\",\n\t\t\"borderRightWidth\"\n\t])\n];\nfunction cssOwnersConflict(left, right) {\n\tfor (const leftOwner of left) for (const rightOwner of right) if (leftOwner === rightOwner || cssShorthandConflicts[leftOwner]?.includes(rightOwner) || cssShorthandConflicts[rightOwner]?.includes(leftOwner) || cssConflictFamilies.some((family) => family.has(leftOwner) && family.has(rightOwner))) return true;\n\treturn false;\n}\nconst runtimeEventProps = /* @__PURE__ */ new Set([\n\t\"onHoverIn\",\n\t\"onHoverOut\",\n\t\"onLongPress\",\n\t\"onPress\",\n\t\"onPressIn\",\n\t\"onPressOut\"\n]);\nconst DOM_STYLE_ATTRIBUTES = new Map(Object.entries(ATTRIBUTES).filter(([name, row]) => row.native !== \"none\" && row.nativeProp && row.nativeProp !== name && row.nativeProp in stylePropsText).map(([name, row]) => [name, row.nativeProp]));\nconst nativePointerEventProps = /* @__PURE__ */ new Set([\n\t\"onPointerCancel\",\n\t\"onPointerDown\",\n\t\"onPointerEnter\",\n\t\"onPointerLeave\",\n\t\"onPointerMove\",\n\t\"onPointerUp\"\n]);\nfunction isSerializableNativeStyle(value) {\n\tif (value == null || typeof value === \"number\" || typeof value === \"boolean\") return true;\n\tif (typeof value === \"string\") return true;\n\tif (Array.isArray(value)) return value.every(isSerializableNativeStyle);\n\tif (!staticObject(value)) return false;\n\tconst prototype = Object.getPrototypeOf(value);\n\tif (prototype !== Object.prototype && prototype !== null) return false;\n\treturn Object.values(value).every(isSerializableNativeStyle);\n}\nfunction unusedIdentifier(source, base) {\n\tlet candidate = base;\n\tlet suffix = 0;\n\twhile (new RegExp(`\\\\b${candidate}\\\\b`).test(source)) candidate = `${base}${++suffix}`;\n\treturn candidate;\n}\nconst VIEW_WRAPPER_PROPS = /^(aria-|accessibilityState$|accessibilityValue$|id$|tabIndex$|nativeID$)/;\nfunction isBareHostView(element) {\n\treturn !element.entries.some((entry) => entry.kind === \"child\" || entry.kind === \"spread\" || entry.kind === \"prop\" && VIEW_WRAPPER_PROPS.test(entry.name));\n}\nfunction entrySource(input, entry) {\n\treturn entry.value.kind === \"static\" ? JSON.stringify(entry.value.value) : input.source.slice(entry.value.span.start, entry.value.span.end);\n}\nfunction renamedPropEdit(input, entry, name) {\n\tif (entry.name === name) return null;\n\tconst content = input.source.slice(entry.span.start, entry.span.end);\n\tconst offset = content.indexOf(entry.name);\n\tif (offset === -1) return null;\n\tconst quoted = content[offset - 1] === \"\\\"\" || content[offset - 1] === \"'\";\n\treturn {\n\t\tstart: entry.span.start + offset,\n\t\tend: entry.span.start + offset + entry.name.length,\n\t\tcontent: input.element.form === \"jsx\" || quoted ? name : JSON.stringify(name),\n\t\torigin: entry.span\n\t};\n}\nfunction serializedProps(form, props) {\n\treturn props.map(([name, value]) => form === \"jsx\" ? `${name}={${value}}` : `${JSON.stringify(name)}: ${value}`).join(form === \"jsx\" ? \" \" : \", \");\n}\nfunction nativeDOMProps(input, tag) {\n\tconst consumed = [];\n\tconst edits = [];\n\tconst additions = [];\n\tconst nested = /* @__PURE__ */ new Map();\n\tconst entries = input.element.entries.filter((entry) => entry.kind === \"prop\");\n\tconst names = new Set(entries.map((entry) => entry.name));\n\tif (names.has(\"ref\") || tag === \"br\") additions.push([\"__tag\", JSON.stringify(tag)]);\n\tif (TAGS[tag].backing === \"text\" || TAGS[tag].backing === \"textinput\") additions.push([\"__inherit\", \"true\"]);\n\tconst add = (name, value) => additions.push([name, value]);\n\tconst consume = (entry) => consumed.push(entry);\n\tfor (const entry of entries) {\n\t\tconst value = entrySource(input, entry);\n\t\tconst attribute = (Object.hasOwn(ATTRIBUTES, entry.name) ? ATTRIBUTES[entry.name] : void 0) ?? (entry.name.startsWith(\"data-\") ? ATTRIBUTES[\"data-*\"] : void 0);\n\t\tconst event = Object.hasOwn(EVENTS, entry.name) ? EVENTS[entry.name] : void 0;\n\t\tif (event) {\n\t\t\tif (event.native === \"none\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `${entry.name} has no native DOM event equivalent`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tif (entry.name === \"onKeyDown\" && tag !== \"input\" && tag !== \"textarea\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `onKeyDown requires a native text-entry control`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tif ([\n\t\t\t\t\"onClick\",\n\t\t\t\t\"onLoad\",\n\t\t\t\t\"onError\",\n\t\t\t\t\"onChange\",\n\t\t\t\t\"onInput\",\n\t\t\t\t\"onKeyDown\"\n\t\t\t].includes(entry.name)) continue;\n\t\t\tif (event.nativeProp) {\n\t\t\t\tconst edit2 = renamedPropEdit(input, entry, event.nativeProp);\n\t\t\t\tif (edit2) edits.push(edit2);\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\t\tif (!attribute || attribute.native === \"none\" || entry.name === \"style\") continue;\n\t\tif (DOM_STYLE_ATTRIBUTES.has(entry.name)) {\n\t\t\tif (entry.value.kind !== \"static\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `html.${tag} ${entry.name} must be statically known for native lowering`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tconsume(entry);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"hidden\") {\n\t\t\tif (entry.value.kind !== \"static\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `html.${tag} hidden must be statically known for native lowering`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tconsume(entry);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"tabIndex\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"focusable\", `(${value}) === 0`);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"readOnly\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"editable\", `!(${value})`);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"disabled\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"disabled\", value);\n\t\t\tadd(\"focusable\", `!(${value})`);\n\t\t\tif (tag === \"input\" || tag === \"textarea\") add(\"editable\", `!(${value})`);\n\t\t\tconst state = nested.get(\"accessibilityState\") ?? [];\n\t\t\tstate.push([\"disabled\", value]);\n\t\t\tnested.set(\"accessibilityState\", state);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"type\") {\n\t\t\tconsume(entry);\n\t\t\tif (tag === \"input\" && entry.value.kind !== \"static\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `html.input type must be statically known for native lowering`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tif (tag === \"input\" && entry.value.kind === \"static\") {\n\t\t\t\tconst type = entry.value.value;\n\t\t\t\tif (type === \"password\") add(\"secureTextEntry\", \"true\");\n\t\t\t\telse if (typeof type === \"string\" && type !== \"text\" && NATIVE_INPUT_TYPES.includes(type)) {\n\t\t\t\t\tif (!names.has(\"inputMode\")) add(\"inputMode\", JSON.stringify(type === \"number\" ? \"numeric\" : type));\n\t\t\t\t}\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"aria-hidden\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"accessibilityElementsHidden\", value);\n\t\t\tadd(\"importantForAccessibility\", `(${value}) ? \"no-hide-descendants\" : \"auto\"`);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"aria-live\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"accessibilityLiveRegion\", entry.value.kind === \"static\" && entry.value.value === \"off\" ? \"\\\"none\\\"\" : value);\n\t\t\tcontinue;\n\t\t}\n\t\tconst nativeProp = attribute.nativeProp;\n\t\tif (!nativeProp) continue;\n\t\tif (nativeProp.includes(\".\")) {\n\t\t\tconsume(entry);\n\t\t\tconst [parent, child] = nativeProp.split(\".\");\n\t\t\tconst values = nested.get(parent) ?? [];\n\t\t\tvalues.push([child, value]);\n\t\t\tnested.set(parent, values);\n\t\t\tcontinue;\n\t\t}\n\t\tconst edit = renamedPropEdit(input, entry, nativeProp);\n\t\tif (edit) edits.push(edit);\n\t}\n\tfor (const [name, values] of nested) add(name, `{ ${values.map(([key, value]) => `${key}: ${value}`).join(\", \")} }`);\n\tif (!names.has(\"role\") && TAGS[tag].role) add(\"role\", JSON.stringify(TAGS[tag].role));\n\tif (tag === \"textarea\") add(\"multiline\", \"true\");\n\treturn {\n\t\tconsumed,\n\t\tedits,\n\t\tadditions\n\t};\n}\nfunction webDOMProps(input, tag) {\n\tconst edits = [];\n\tconst additions = [];\n\tconst entries = input.element.entries.filter((entry) => entry.kind === \"prop\");\n\tconst names = new Set(entries.map((entry) => entry.name));\n\tfor (const entry of entries) {\n\t\tif (entry.name === \"for\") {\n\t\t\tconst edit = renamedPropEdit(input, entry, \"htmlFor\");\n\t\t\tif (edit) edits.push(edit);\n\t\t}\n\t\tif (entry.name === \"role\" && entry.value.kind === \"static\" && entry.value.value === \"none\") edits.push({\n\t\t\tstart: entry.value.span.start,\n\t\t\tend: entry.value.span.end,\n\t\t\tcontent: JSON.stringify(\"presentation\"),\n\t\t\torigin: entry.value.span\n\t\t});\n\t}\n\tif (tag === \"button\" && !names.has(\"type\")) additions.push([\"type\", \"\\\"button\\\"\"]);\n\tif ((tag === \"input\" || tag === \"textarea\") && !names.has(\"dir\")) additions.push([\"dir\", \"\\\"auto\\\"\"]);\n\treturn {\n\t\tedits,\n\t\tadditions\n\t};\n}\nfunction createTamaguiCompilerHost(options) {\n\tconst platform = options.target === \"native\" ? \"native\" : \"web\";\n\tconst core = requireTamaguiCore(platform);\n\tconst firstThemeName = Object.keys(options.tamaguiConfig.themes ?? {})[0] ?? \"\";\n\tconst theme = options.tamaguiConfig.themes?.[firstThemeName] ?? {};\n\tconst modifierRegistry = createModifierRegistry({\n\t\tmediaNames: options.tamaguiConfig.media ?? {},\n\t\tthemeNames: options.tamaguiConfig.themes ?? {}\n\t}).registry;\n\tconst configuredAnimationDriver = options.tamaguiConfig.animations;\n\tconst configuredCssAnimationDriver = platform === \"web\" && configuredAnimationDriver?.outputStyle === \"css\" && !options.tamaguiConfig.animationDrivers ? configuredAnimationDriver : null;\n\tconst resolveStaticCssTransition = (value, transitionPresets) => {\n\t\tif (platform !== \"web\" || typeof value !== \"string\") return null;\n\t\tconst transitionPresetNames = new Set(Object.keys(transitionPresets));\n\t\tconst program = parseValue(value, modifierRegistry);\n\t\tif (!program.ok) return null;\n\t\tconst resolvedPayloads = [];\n\t\tconst payloads = [program.value.base, ...program.value.clauses.map((clause) => clause.payload)].filter((payload) => payload !== null);\n\t\tif (payloads.length === 0) return null;\n\t\tfor (const payload of payloads) {\n\t\t\tconst transition = parseTransition(payload, transitionPresetNames);\n\t\t\tif (!transition.ok) return null;\n\t\t\tif (transition.value.kind === \"global\" || transition.value.entries.every((entry) => entry.timing.type === \"css\")) {\n\t\t\t\tresolvedPayloads.push(payload);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif (transition.value.entries.length !== 1 || transition.value.entries[0].timing.type !== \"preset\") return null;\n\t\t\tconst preset = transitionPresets[transition.value.entries[0].timing.name];\n\t\t\tif (typeof preset !== \"string\") return null;\n\t\t\tconst parsedPreset = parseTransition(preset);\n\t\t\tif (!parsedPreset.ok || parsedPreset.value.kind !== \"transition\" || parsedPreset.value.entries.length !== 1 || parsedPreset.value.entries[0].property !== \"all\" || parsedPreset.value.entries[0].timing.type !== \"css\") return null;\n\t\t\tresolvedPayloads.push(`all ${preset}`);\n\t\t}\n\t\tlet payloadIndex = 0;\n\t\tconst resolved = [];\n\t\tif (program.value.base !== null) resolved.push(resolvedPayloads[payloadIndex++]);\n\t\tfor (const clause of program.value.clauses) resolved.push(`${clause.modifiers.join(\":\")}:${resolvedPayloads[payloadIndex++]}`);\n\t\treturn resolved.join(\" \");\n\t};\n\tconst modulesById = new Map(options.componentModules.map((module) => [module.resolvedId, module.moduleName]));\n\tconst componentsByModule = new Map(options.components.map((component) => [component.moduleName, component]));\n\tconst normalizeStaticConfig = (staticConfig) => staticConfig.styleFrontend?.normalizeStaticConfig?.(staticConfig, options.tamaguiConfig) ?? staticConfig;\n\tconst directStaticConfig = (element) => {\n\t\tconst identity = element.component.provenance;\n\t\tif (!identity) return null;\n\t\tconst moduleName = modulesById.get(identity.resolvedId);\n\t\tconst info = (moduleName ? componentsByModule.get(moduleName) : void 0)?.nameToInfo[identity.importedName];\n\t\treturn info ? {\n\t\t\tkey: componentKey(identity.resolvedId, identity.importedName),\n\t\t\tstaticConfig: normalizeStaticConfig(info.staticConfig),\n\t\t\tdisplayName: info.displayName\n\t\t} : null;\n\t};\n\tconst domStaticConfig = (element) => {\n\t\tconst identity = element.component.provenance;\n\t\tconst tag = element.component.name;\n\t\tif (identity?.importedName !== \"html\" || !DOM_FRONTENDS.has(identity.specifier) || !Object.hasOwn(TAGS, tag)) return null;\n\t\tconst row = TAGS[tag];\n\t\tconst base = (row.backing === \"text\" || row.backing === \"textinput\" ? core.Text : core.View)?.staticConfig;\n\t\tif (!base) return null;\n\t\tconst platformDefaults = platform === \"web\" ? {\n\t\t\t...DISPLAY_WEB_RESET[row.display],\n\t\t\t...row.defaults,\n\t\t\t...TAG_WEB_DEFAULTS[tag]\n\t\t} : {\n\t\t\t...NATIVE_ELEMENT_DEFAULTS,\n\t\t\t...row.display === \"block\" ? NATIVE_BLOCK_DEFAULTS : null,\n\t\t\t...row.defaults,\n\t\t\t...row.nativeDefaults\n\t\t};\n\t\treturn {\n\t\t\tkey: componentKey(identity.resolvedId, `html.${tag}`),\n\t\t\ttag,\n\t\t\tdisplayName: tag,\n\t\t\tstaticConfig: normalizeStaticConfig({\n\t\t\t\t...base,\n\t\t\t\tisInput: row.backing === \"textinput\",\n\t\t\t\tvalidStyles: {\n\t\t\t\t\t...validStyles,\n\t\t\t\t\t...stylePropsText\n\t\t\t\t},\n\t\t\t\tdefaultProps: {\n\t\t\t\t\t...base.defaultProps,\n\t\t\t\t\t...platformDefaults\n\t\t\t\t}\n\t\t\t})\n\t\t};\n\t};\n\tconst styledStaticConfig = (definition) => {\n\t\tif (!definition || definition.options.kind !== \"static\") return null;\n\t\tconst base = directStaticConfig({\n\t\t\tkind: \"element\",\n\t\t\tform: \"jsx\",\n\t\t\tid: definition.id,\n\t\t\tspan: definition.span,\n\t\t\tpropsSpan: null,\n\t\t\tcomponent: definition.base,\n\t\t\tcomplete: true,\n\t\t\tentries: [],\n\t\t\tbailouts: []\n\t\t});\n\t\tif (!base || !staticObject(definition.options.value)) return null;\n\t\tconst { variants, defaultVariants, compoundVariants, displayName, context, contextProps, ...defaultProps } = definition.options.value;\n\t\tconst baseClassName = definition.baseClassName?.kind === \"static\" && typeof definition.baseClassName.value === \"string\" ? definition.baseClassName.value : void 0;\n\t\treturn {\n\t\t\tkey: componentKey(definition.id, definition.name),\n\t\t\tdisplayName: displayName || base.displayName,\n\t\t\tstaticConfig: normalizeStaticConfig({\n\t\t\t\t...base.staticConfig,\n\t\t\t\tvariants: {\n\t\t\t\t\t...base.staticConfig.variants,\n\t\t\t\t\t...variants\n\t\t\t\t},\n\t\t\t\tcompoundVariants: [...base.staticConfig.compoundVariants ?? [], ...compoundVariants ?? []],\n\t\t\t\tdefaultProps: {\n\t\t\t\t\t...base.staticConfig.defaultProps,\n\t\t\t\t\t...defaultProps,\n\t\t\t\t\t...defaultVariants\n\t\t\t\t},\n\t\t\t\tdefaultVariants,\n\t\t\t\tbaseClassName: [base.staticConfig.baseClassName, baseClassName].filter(Boolean).join(\" \"),\n\t\t\t\tcontext: context ?? base.staticConfig.context,\n\t\t\t\tcontextProps: context ? contextProps : contextProps ?? base.staticConfig.contextProps\n\t\t\t})\n\t\t};\n\t};\n\tconst resolve = (element, styledDefinition) => {\n\t\tconst dom = domStaticConfig(element);\n\t\tconst resolved = dom ?? styledStaticConfig(styledDefinition) ?? directStaticConfig(element);\n\t\tif (!resolved) return null;\n\t\tconst defaultProps = core.getDefaultProps(resolved.staticConfig) ?? {};\n\t\treturn {\n\t\t\tkey: resolved.key,\n\t\t\tcanFlatten: resolved.staticConfig.acceptsClassName !== false && !resolved.staticConfig.neverFlatten && !resolved.staticConfig.context,\n\t\t\tstaticConfig: resolved.staticConfig,\n\t\t\tdisplayName: resolved.displayName,\n\t\t\t...dom && { domTag: dom.tag },\n\t\t\tpartialRuntimeSafe: !dom && !styledDefinition && Object.keys(defaultProps).length === 0 && !resolved.staticConfig.defaultVariants && !resolved.staticConfig.baseClassName && !resolved.staticConfig.baseStyle && (resolved.staticConfig.compoundVariants?.length ?? 0) === 0\n\t\t};\n\t};\n\tconst isStyleProp = (name, component) => {\n\t\tconst staticConfig = component.staticConfig;\n\t\treturn compilerStyleProps.has(name) || name in (options.tamaguiConfig.shorthands ?? {}) || !!staticConfig.validStyles?.[name] || !!staticConfig.variants?.[name];\n\t};\n\tconst runtimeOnlyStyleProps = /* @__PURE__ */ new Set([\n\t\t\"className\",\n\t\t\"style\",\n\t\t\"group\",\n\t\t\"transition\",\n\t\t\"animation\",\n\t\t\"animateOnly\",\n\t\t\"animatePresence\",\n\t\t\"animatedBy\",\n\t\t\"render\"\n\t]);\n\tconst canLowerConditionalStyleProp = (name, component) => isStyleProp(name, component) && !runtimeOnlyStyleProps.has(name);\n\tconst isInvalidHostStyleProp = (name, component) => {\n\t\tconst staticConfig = component.staticConfig;\n\t\tconst validStyles$1 = staticConfig.validStyles || (staticConfig.isText || staticConfig.isInput ? stylePropsText : validStyles);\n\t\treturn name in stylePropsAll && !isValidStyleKey(name, validStyles$1, staticConfig.accept);\n\t};\n\tconst directStyleName = (name, component) => {\n\t\tif (compilerStyleProps.has(name) || name === \"style\") return null;\n\t\tconst staticConfig = component.staticConfig;\n\t\tif (staticConfig.variants?.[name]) return null;\n\t\tconst expanded = options.tamaguiConfig.shorthands?.[name] ?? name;\n\t\treturn staticConfig.validStyles?.[expanded] ? expanded : null;\n\t};\n\tconst resolveSplitStyles = (props, staticConfig, animationDriver, displayName) => {\n\t\tconst previousStatic = process.env.IS_STATIC;\n\t\tconst previousTarget = \"web\";\n\t\tif (platform === \"native\") process.env.IS_STATIC = \"is_static\";\n\t\telse delete process.env.IS_STATIC;\n\t\tprocess.env.TAMAGUI_TARGET = platform;\n\t\ttry {\n\t\t\treturn core.getSplitStyles(props, staticConfig, theme, firstThemeName, componentState, {\n\t\t\t\tresolveValues: platform === \"native\" ? \"except-theme\" : \"variable\",\n\t\t\t\tnoClass: platform === \"native\",\n\t\t\t\tisAnimated: false,\n\t\t\t\tdisplayName\n\t\t\t}, void 0, void 0, void 0, void 0, void 0, void 0, animationDriver);\n\t\t} finally {\n\t\t\tif (previousStatic === void 0) delete process.env.IS_STATIC;\n\t\t\telse process.env.IS_STATIC = previousStatic;\n\t\t\tif (previousTarget === void 0) delete \"web\";\n\t\t\telse process.env.TAMAGUI_TARGET = previousTarget;\n\t\t}\n\t};\n\tconst partialStaticConfig = (staticConfig) => ({\n\t\t...staticConfig,\n\t\tbaseStyle: void 0,\n\t\tdefaultProps: {},\n\t\tdefaultVariants: void 0,\n\t\tcompoundVariants: [],\n\t\tvariants: {}\n\t});\n\tconst styleOwners = (name, value, staticConfig) => {\n\t\tconst split = resolveSplitStyles({ [name]: value }, partialStaticConfig(staticConfig));\n\t\tif (!split) return null;\n\t\tconst inlineStyle = split.viewProps?.style;\n\t\tif (staticObject(inlineStyle) && !inlineStyle[\"$$css\"] && Object.keys(inlineStyle).length > 0) return null;\n\t\tconst owners = new Set(Object.keys(split.classNames ?? {}));\n\t\tfor (const styleObject of Object.values(split.rulesToInsert ?? {})) {\n\t\t\tconst property = styleObject?.[StyleObjectProperty];\n\t\t\tif (typeof property === \"string\") owners.add(property);\n\t\t}\n\t\treturn owners.size > 0 ? owners : null;\n\t};\n\tconst dynamicStyleOwners = (name, staticConfig) => {\n\t\tconst owners = styleOwners(name, name === \"transform\" ? [{ scale: 1 }] : name === \"transformMatrix\" ? [\n\t\t\t1,\n\t\t\t0,\n\t\t\t0,\n\t\t\t1,\n\t\t\t0,\n\t\t\t0\n\t\t] : name === \"shadowOffset\" ? {\n\t\t\twidth: 0,\n\t\t\theight: 0\n\t\t} : name === \"shadowColor\" ? \"black\" : name === \"border\" || name === \"outline\" ? \"0 solid transparent\" : name === \"position\" ? \"relative\" : name === \"objectFit\" ? \"contain\" : 0, staticConfig);\n\t\tif (!owners || name !== \"flex\") return owners;\n\t\tconst shorthandOwners = styleOwners(name, \"0 1 auto\", staticConfig);\n\t\tif (!shorthandOwners) return null;\n\t\tfor (const owner of shorthandOwners) owners.add(owner);\n\t\treturn owners;\n\t};\n\tconst developmentDebugInstrumentation = (input, result) => {\n\t\tif (process.env.NODE_ENV !== \"development\") return;\n\t\tconst debugEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"debug\" && entry.value.kind === \"static\" && entry.value.value === \"verbose\");\n\t\tif (!debugEntry) return;\n\t\tconst component = input.component;\n\t\tconst styleEntries = input.element.entries.filter((entry) => entry.kind === \"prop\" && entry.name !== \"debug\" && (entry.name === \"style\" || isStyleProp(entry.name, component)));\n\t\tconst flattened = result.ok && !!result.flattened;\n\t\tconst tiers = result.ok ? [\n\t\t\t\"lowered\",\n\t\t\t...flattened ? [\"flattened\"] : [],\n\t\t\t...input.styledDefinition ? [\"styled\"] : []\n\t\t] : [\"bailed\"];\n\t\tconst why = result.ok ? flattened ? \"Static styles were lowered and the component was flattened to a host element.\" : \"Static styles were lowered while the Tamagui component remained at runtime.\" : result.bailout.message;\n\t\tconst styles = styleEntries.map((entry) => {\n\t\t\tif (!result.ok) return {\n\t\t\t\tprop: entry.name,\n\t\t\t\ttier: \"bailed\",\n\t\t\t\truntime: true,\n\t\t\t\twhy: `${result.bailout.message}. The Tamagui runtime resolved this prop.`\n\t\t\t};\n\t\t\tconst edited = result.edits.some((edit) => edit.start < entry.span.end && edit.end > entry.span.start);\n\t\t\tif (!flattened && !edited) return {\n\t\t\t\tprop: entry.name,\n\t\t\t\ttier: \"bailed\",\n\t\t\t\truntime: true,\n\t\t\t\twhy: \"This prop remained for Tamagui runtime resolution.\"\n\t\t\t};\n\t\t\tif (entry.value.kind === \"static\") {\n\t\t\t\tconst split = resolveSplitStyles({ [entry.name]: entry.value.value }, partialStaticConfig(component.staticConfig));\n\t\t\t\tif (!Boolean(split && (Object.keys(split.classNames ?? {}).length > 0 || Object.keys(split.rulesToInsert ?? {}).length > 0 || staticObject(split.style) && Object.keys(split.style).length > 0 || staticObject(split.viewProps?.style) && Object.keys(split.viewProps.style).length > 0))) return {\n\t\t\t\t\tprop: entry.name,\n\t\t\t\t\ttier: flattened ? \"flattened\" : \"lowered\",\n\t\t\t\t\tdropped: true,\n\t\t\t\t\twhy: `No ${platform} style output was produced for this prop.`\n\t\t\t\t};\n\t\t\t}\n\t\t\treturn {\n\t\t\t\tprop: entry.name,\n\t\t\t\ttier: flattened ? \"flattened\" : \"lowered\",\n\t\t\t\twhy: flattened ? \"The compiler emitted this prop on the flattened host element.\" : \"The compiler lowered this prop while retaining the Tamagui component.\"\n\t\t\t};\n\t\t});\n\t\tconst receipt = JSON.stringify({\n\t\t\tcomponent: input.element.component.name,\n\t\t\ttiers,\n\t\t\twhy,\n\t\t\tstyles\n\t\t});\n\t\tconst content = flattened ? input.element.form === \"jsx\" ? `{...(console.info('\\u{1F539} Tamagui style receipt', ${receipt}), {})}` : `...(console.info('\\u{1F539} Tamagui style receipt', ${receipt}), {})` : input.element.form === \"jsx\" ? `debug=\"verbose\" __tamaguiStyleDebugReceipt={${receipt}}` : `debug: \"verbose\", __tamaguiStyleDebugReceipt: ${receipt}`;\n\t\treturn [{\n\t\t\tstart: debugEntry.span.start,\n\t\t\tend: debugEntry.span.end,\n\t\t\tcontent,\n\t\t\torigin: debugEntry.span\n\t\t}];\n\t};\n\treturn {\n\t\tresolveComponent: resolve,\n\t\tisStyleProp,\n\t\tcanLowerDynamicStyleProp(name, component, valueKind) {\n\t\t\tif (!options.disablePartialExtraction && valueKind === \"conditional\" && canLowerConditionalStyleProp(name, component)) return true;\n\t\t\treturn !options.disablePartialExtraction && (platform === \"web\" && !!directStyleName(name, component) || platform === \"native\" && directStyleName(name, component) === \"opacity\");\n\t\t},\n\t\tdevelopmentDebugInstrumentation,\n\t\tlowerCandidate(input) {\n\t\t\tconst component = input.component;\n\t\t\tif (!component.canFlatten) return bailout(input, \"local/unsupported-target\", component.staticConfig.acceptsClassName === false ? `${component.key} does not accept className` : component.staticConfig.neverFlatten ? `${component.key} is never flattened (behavior HOC)` : `${component.key} provides a styled context`, input.element.span, { rule: 6 });\n\t\t\tif (options.zeroRuntime) {\n\t\t\t\tconst spread = input.element.entries.find((entry) => entry.kind === \"spread\");\n\t\t\t\tif (spread) return bailout(input, \"local/unsafe-style-spread\", \"Zero-runtime rejects prop spreads\", spread.span, {\n\t\t\t\t\trule: 1,\n\t\t\t\t\tmessage: zeroRuleMessage(1, { component: input.element.component.name })\n\t\t\t\t});\n\t\t\t}\n\t\t\tconst props = {};\n\t\t\tfor (const entry of input.element.entries) {\n\t\t\t\tif (entry.kind === \"child\" || entry.value.kind !== \"static\") continue;\n\t\t\t\tif (entry.kind === \"spread\") {\n\t\t\t\t\tif (!staticObject(entry.value.value)) return bailout(input, \"local/unsafe-style-spread\", \"Static spread did not materialize to an object\", entry.span);\n\t\t\t\t\tObject.assign(props, entry.value.value);\n\t\t\t\t} else props[entry.name] = entry.value.value;\n\t\t\t}\n\t\t\tconst disableOptimizationEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"disableOptimization\");\n\t\t\tif (disableOptimizationEntry || Object.hasOwn(props, \"disableOptimization\")) return bailout(input, \"local/unsupported-target\", \"disableOptimization keeps the component on the runtime path\", disableOptimizationEntry?.span);\n\t\t\tif (component.domTag && props.hidden) props.display = \"none\";\n\t\t\tif (component.domTag && platform === \"native\") {\n\t\t\t\tfor (const [name, styleKey] of DOM_STYLE_ATTRIBUTES) if (name in props) {\n\t\t\t\t\tprops[styleKey] = props[name];\n\t\t\t\t\tdelete props[name];\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (platform === \"native\" && component.domTag === \"input\" && typeof props.type === \"string\" && !NATIVE_INPUT_TYPES.includes(props.type)) return bailout(input, \"local/unsupported-target\", `input type ${props.type} has no native text-entry control`);\n\t\t\tconst dynamicStyleEntries = input.element.entries.filter((entry) => entry.kind === \"prop\" && (entry.value.kind === \"bailout\" || entry.value.kind === \"conditional\") && isStyleProp(entry.name, component));\n\t\t\t{\n\t\t\t\tconst needsRuntimeMapping = (name) => runtimeEventProps.has(name) || platform === \"native\" && !component.domTag && nativePointerEventProps.has(name);\n\t\t\t\tconst directRuntimeEvent = input.element.entries.find((entry) => entry.kind === \"prop\" && needsRuntimeMapping(entry.name));\n\t\t\t\tconst runtimeEvent = directRuntimeEvent?.kind === \"prop\" ? directRuntimeEvent.name : Object.keys(props).find(needsRuntimeMapping);\n\t\t\t\tif (runtimeEvent) return bailout(input, \"local/unsupported-target\", `${runtimeEvent} requires Tamagui runtime event mapping`);\n\t\t\t}\n\t\t\tconst animationDefaultProps = core.getDefaultProps(component.staticConfig) ?? {};\n\t\t\tconst animationProps = core.mergeProps(animationDefaultProps, props);\n\t\t\tconst animationNames = /* @__PURE__ */ new Set([...input.element.entries.flatMap((entry) => entry.kind === \"prop\" && runtimeAnimationProps.has(entry.name) ? [entry.name] : []), ...Object.keys(animationProps).filter((name) => runtimeAnimationProps.has(name) && animationProps[name] !== void 0)]);\n\t\t\tconst animateOnlyEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"animateOnly\");\n\t\t\tif (animationNames.has(\"animateOnly\")) return bailout(input, \"local/unsupported-target\", \"Animated candidates remain on the runtime path\", animateOnlyEntry?.span, {\n\t\t\t\trule: 5,\n\t\t\t\tmessage: zeroRuleMessage(5, { detail: animateOnlyEntry ? `animateOnly on ${input.element.component.name}` : `animateOnly in the styled() definition of ${input.element.component.name}` })\n\t\t\t});\n\t\t\tconst transitionEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"transition\");\n\t\t\tconst animatedBy = typeof animationProps.animatedBy === \"string\" ? animationProps.animatedBy.trim() : null;\n\t\t\tconst namedAnimationDriver = animatedBy === null ? null : options.tamaguiConfig.animationDrivers?.[animatedBy];\n\t\t\tconst cssAnimationDriver = (platform === \"web\" && namedAnimationDriver?.outputStyle === \"css\" ? namedAnimationDriver : null) ?? (animatedBy === null || animatedBy === \"default\" ? configuredCssAnimationDriver : null);\n\t\t\tconst resolvedCssTransition = animationNames.has(\"transition\") && cssAnimationDriver ? resolveStaticCssTransition(animationProps.transition, cssAnimationDriver.animations ?? {}) : null;\n\t\t\tif (resolvedCssTransition !== null) props.transition = resolvedCssTransition;\n\t\t\tconst animatedByNeedsRuntime = animationNames.has(\"animatedBy\") && !animationNames.has(\"transition\") && (dynamicStyleEntries.length > 0 || Object.keys(animationProps).some((name) => name !== \"animatedBy\" && (isStyleProp(name, component) && typeof animationProps[name] === \"string\" && animationProps[name].includes(\":\") || name === \"animationConfig\" || name === \"forceStyle\" || name === \"onTransition\")));\n\t\t\tconst runtimeAnimationRequired = animationNames.has(\"transition\") && resolvedCssTransition === null || [...animationNames].some((name) => name !== \"transition\" && name !== \"animatedBy\" && name !== \"animateOnly\") || animatedByNeedsRuntime;\n\t\t\tlet dynamicHostStyleProperties = null;\n\t\t\tif (resolvedCssTransition !== null && dynamicStyleEntries.length > 0 && !input.element.entries.some((entry) => entry.kind === \"spread\")) {\n\t\t\t\tconst seen = /* @__PURE__ */ new Set();\n\t\t\t\tconst properties = [];\n\t\t\t\tconst dynamicOwners = /* @__PURE__ */ new Set();\n\t\t\t\tfor (const entry of dynamicStyleEntries) {\n\t\t\t\t\tif (entry.kind !== \"prop\" || entry.value.kind !== \"bailout\" && entry.value.kind !== \"conditional\") continue;\n\t\t\t\t\tconst name = directStyleName(entry.name, component);\n\t\t\t\t\tif (name !== \"opacity\" && name !== \"scale\" || seen.has(name)) {\n\t\t\t\t\t\tproperties.length = 0;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tconst owners = dynamicStyleOwners(name, component.staticConfig);\n\t\t\t\t\tif (!owners) {\n\t\t\t\t\t\tproperties.length = 0;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tseen.add(name);\n\t\t\t\t\tfor (const owner of owners) dynamicOwners.add(owner);\n\t\t\t\t\tconst expression = input.source.slice(entry.value.span.start, entry.value.span.end);\n\t\t\t\t\tproperties.push(name === \"opacity\" ? `opacity: (${expression})` : `transform: \"scale(\" + (${expression}) + \")\"`);\n\t\t\t\t}\n\t\t\t\tif (properties.length === dynamicStyleEntries.length && !input.element.entries.some((entry) => {\n\t\t\t\t\tif (entry.kind !== \"prop\" || entry.value.kind !== \"static\") return false;\n\t\t\t\t\tconst name = directStyleName(entry.name, component);\n\t\t\t\t\tif (!name) return false;\n\t\t\t\t\tconst owners = styleOwners(name, entry.value.value, component.staticConfig);\n\t\t\t\t\treturn !!owners && cssOwnersConflict(owners, dynamicOwners);\n\t\t\t\t})) dynamicHostStyleProperties = properties;\n\t\t\t}\n\t\t\tconst supportsWebConditionalClasses = platform === \"web\" && !options.disablePartialExtraction && (input.element.form === \"jsx\" || input.element.propsSpan !== null) && dynamicHostStyleProperties === null && dynamicStyleEntries.length === 1 && dynamicStyleEntries.every((entry) => entry.kind === \"prop\" && entry.value.kind === \"conditional\" && canLowerConditionalStyleProp(entry.name, component));\n\t\t\tif (\"theme\" in props || \"themeInverse\" in props) {\n\t\t\t\tconst themeProp = \"theme\" in props ? \"theme\" : \"themeInverse\";\n\t\t\t\treturn bailout(input, \"local/unsupported-target\", \"Theme boundary candidates remain on the runtime path\", input.element.span, {\n\t\t\t\t\trule: 4,\n\t\t\t\t\tmessage: zeroThemeBoundaryMessage(input.element.component.name, themeProp)\n\t\t\t\t});\n\t\t\t}\n\t\t\tconst asChildEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"asChild\");\n\t\t\tif (asChildEntry || Object.hasOwn(props, \"asChild\")) return bailout(input, \"local/unsupported-target\", \"asChild renders a Slot, not a host view\", asChildEntry?.span);\n\t\t\tif (platform === \"native\" && (\"group\" in props || \"container\" in props || \"containerName\" in props || \"containerType\" in props)) return bailout(input, \"local/unsupported-target\", \"Native group containers remain on the runtime path\");\n\t\t\tif (runtimeAnimationRequired && !cssAnimationDriver) return bailout(input, \"local/unsupported-target\", \"Animated candidates remain on the runtime path\", transitionEntry?.span, {\n\t\t\t\trule: 5,\n\t\t\t\tmessage: zeroRuleMessage(5, { detail: `the animation configured on ${input.element.component.name}` })\n\t\t\t});\n\t\t\tif (platform === \"web\" && (dynamicStyleEntries.length > 0 || runtimeAnimationRequired) && dynamicHostStyleProperties === null && !supportsWebConditionalClasses && component.partialRuntimeSafe) {\n\t\t\t\tconst hasSpread = input.element.entries.some((entry) => entry.kind === \"spread\");\n\t\t\t\tconst unsupportedRuntimeStyle = input.element.entries.find((entry) => entry.kind === \"prop\" && isStyleProp(entry.name, component) && !runtimeAnimationProps.has(entry.name) && !directStyleName(entry.name, component));\n\t\t\t\tif (!hasSpread && !unsupportedRuntimeStyle) {\n\t\t\t\t\tconst dynamicOwners = /* @__PURE__ */ new Set();\n\t\t\t\t\tlet canProveDynamicOwnership = true;\n\t\t\t\t\tfor (const entry of dynamicStyleEntries) {\n\t\t\t\t\t\tif (entry.kind !== \"prop\") continue;\n\t\t\t\t\t\tconst name = directStyleName(entry.name, component);\n\t\t\t\t\t\tif (!name) {\n\t\t\t\t\t\t\tcanProveDynamicOwnership = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tconst owners = dynamicStyleOwners(name, component.staticConfig);\n\t\t\t\t\t\tif (!owners) {\n\t\t\t\t\t\t\tcanProveDynamicOwnership = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfor (const owner of owners) dynamicOwners.add(owner);\n\t\t\t\t\t}\n\t\t\t\t\tconst staticStyleEntries = canProveDynamicOwnership ? input.element.entries.filter((entry) => {\n\t\t\t\t\t\tif (entry.kind !== \"prop\" || entry.value.kind !== \"static\") return false;\n\t\t\t\t\t\tif (runtimeAnimationProps.has(entry.name)) return false;\n\t\t\t\t\t\tconst name = directStyleName(entry.name, component);\n\t\t\t\t\t\tif (!name) return false;\n\t\t\t\t\t\tconst owners = styleOwners(name, entry.value.value, component.staticConfig);\n\t\t\t\t\t\treturn !!owners && !cssOwnersConflict(owners, dynamicOwners);\n\t\t\t\t\t}) : [];\n\t\t\t\t\tif (staticStyleEntries.length > 0) {\n\t\t\t\t\t\tconst partialProps = {};\n\t\t\t\t\t\tfor (const entry of staticStyleEntries) if (entry.kind === \"prop\" && entry.value.kind === \"static\") partialProps[entry.name] = entry.value.value;\n\t\t\t\t\t\tconst partialSplit = resolveSplitStyles(partialProps, partialStaticConfig(component.staticConfig));\n\t\t\t\t\t\tconst partialInlineStyle = partialSplit?.viewProps?.style;\n\t\t\t\t\t\tconst hasPartialInlineStyle = staticObject(partialInlineStyle) && !partialInlineStyle[\"$$css\"] && Object.keys(partialInlineStyle).length > 0;\n\t\t\t\t\t\tif (partialSplit && !hasPartialInlineStyle) {\n\t\t\t\t\t\t\tconst artifacts2 = extractedStyleArtifacts(partialSplit, partialProps, options.tamaguiConfig, false);\n\t\t\t\t\t\t\tif (artifacts2.className) if (input.element.form !== \"jsx\") {\n\t\t\t\t\t\t\t\tconst propsEdits = compiledPropsEdits(input, staticStyleEntries, objectClassName(artifacts2.className));\n\t\t\t\t\t\t\t\tif (propsEdits) return {\n\t\t\t\t\t\t\t\t\tok: true,\n\t\t\t\t\t\t\t\t\tedits: propsEdits,\n\t\t\t\t\t\t\t\t\tcss: artifacts2.css,\n\t\t\t\t\t\t\t\t\timports: [],\n\t\t\t\t\t\t\t\t\tflattened: false\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tconst [first2, ...rest2] = staticStyleEntries;\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tok: true,\n\t\t\t\t\t\t\t\t\tedits: [{\n\t\t\t\t\t\t\t\t\t\tstart: first2.span.start,\n\t\t\t\t\t\t\t\t\t\tend: first2.span.end,\n\t\t\t\t\t\t\t\t\t\tcontent: jsxClassName(artifacts2.className),\n\t\t\t\t\t\t\t\t\t\torigin: first2.span\n\t\t\t\t\t\t\t\t\t}, ...rest2.map((entry) => ({\n\t\t\t\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t\t\t\t}))],\n\t\t\t\t\t\t\t\t\tcss: artifacts2.css,\n\t\t\t\t\t\t\t\t\timports: [],\n\t\t\t\t\t\t\t\t\tflattened: false\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (runtimeAnimationRequired) return bailout(input, \"local/unsupported-target\", \"Animated candidates remain on the runtime path\", transitionEntry?.span, {\n\t\t\t\trule: 5,\n\t\t\t\tmessage: zeroRuleMessage(5, { detail: `the animation configured on ${input.element.component.name}` })\n\t\t\t});\n\t\t\tconst supportsNativeDynamicStyles = platform === \"native\" && !options.disablePartialExtraction && (input.element.form === \"jsx\" || input.element.propsSpan !== null) && dynamicStyleEntries.every((entry) => entry.kind === \"prop\" && (directStyleName(entry.name, component) === \"opacity\" || entry.value.kind === \"conditional\" && canLowerConditionalStyleProp(entry.name, component)));\n\t\t\tif (dynamicStyleEntries.length > 0 && dynamicHostStyleProperties === null && !supportsNativeDynamicStyles && !supportsWebConditionalClasses) {\n\t\t\t\tconst entry = dynamicStyleEntries[0];\n\t\t\t\treturn bailout(input, \"local/dynamic-style-value\", `Style prop ${entry.kind === \"prop\" ? entry.name : \"unknown\"} could not be safely extracted`, entry.span);\n\t\t\t}\n\t\t\tconst staticDefaultProps = core.getDefaultProps(component.staticConfig) ?? {};\n\t\t\tconst defaultProps = platform === \"web\" && !component.staticConfig.isText && options.tamaguiConfig.settings.defaultPosition === \"relative\" && staticDefaultProps.position === void 0 ? core.mergeProps({ position: \"relative\" }, staticDefaultProps) : staticDefaultProps;\n\t\t\tlet completeProps = core.mergeProps(defaultProps, props);\n\t\t\tif (platform === \"native\" && component.domTag && props.display === \"flex\") completeProps = core.mergeProps(core.mergeProps(defaultProps, NATIVE_FLEX_DEFAULTS), props);\n\t\t\tif (platform === \"native\") {\n\t\t\t\tconst isClauseValue = (name, value) => isStyleProp(name, component) && typeof value === \"string\" && flatClausePattern.test(value);\n\t\t\t\tconst defaultVariants = component.staticConfig.defaultVariants ?? {};\n\t\t\t\tif (Object.entries(completeProps).some(([name, value]) => isClauseValue(name, value)) || Object.entries(component.staticConfig.variants ?? {}).some(([variantName, definitions]) => (completeProps[variantName] !== void 0 || defaultVariants[variantName] !== void 0) && staticObject(definitions) && Object.values(definitions).some((definition) => staticObject(definition) && Object.entries(definition).some(([name, value]) => isClauseValue(name, value))))) return bailout(input, \"local/unsupported-target\", \"Native conditional value programs remain on the runtime path\");\n\t\t\t}\n\t\t\tconst split = resolveSplitStyles(completeProps, component.staticConfig, cssAnimationDriver, component.displayName);\n\t\t\tif (!split) return bailout(input, \"local/style-resolution-failed\", \"getSplitStyles returned no static result\");\n\t\t\tif (split.programLifecycleStyleKeys?.enter?.size || split.programLifecycleStyleKeys?.exit?.size) return bailout(input, \"local/unsupported-target\", \"Lifecycle value programs remain on the runtime path\", input.element.span, {\n\t\t\t\trule: 5,\n\t\t\t\tmessage: zeroRuleMessage(5, { detail: `an enter or exit style program on ${input.element.component.name}` })\n\t\t\t});\n\t\t\tconst domStyleProgram = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"style\" && entry.value.kind === \"dom-style\");\n\t\t\tconst flatTag = component.domTag ?? (typeof props.render === \"string\" ? props.render : typeof defaultProps.render === \"string\" ? defaultProps.render : component.staticConfig.isText ? \"span\" : \"div\");\n\t\t\tconst tagEdits = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\tstart: span.start,\n\t\t\t\tend: span.end,\n\t\t\t\tcontent: input.element.form === \"jsx\" ? flatTag : JSON.stringify(flatTag),\n\t\t\t\torigin: span\n\t\t\t}));\n\t\t\tlet styleEntries = input.element.entries.filter((entry) => entry.kind === \"prop\" && (isStyleProp(entry.name, component) || isInvalidHostStyleProp(entry.name, component)) || entry.kind === \"spread\" && entry.value.kind === \"static\" && staticObject(entry.value.value) && Object.keys(entry.value.value).every((name) => isStyleProp(name, component) || isInvalidHostStyleProp(name, component)));\n\t\t\tlet invalidHostStyle;\n\t\t\tfor (const entry of input.element.entries) {\n\t\t\t\tif (entry.kind === \"prop\") {\n\t\t\t\t\tif (isInvalidHostStyleProp(entry.name, component)) {\n\t\t\t\t\t\tinvalidHostStyle = {\n\t\t\t\t\t\t\tentry,\n\t\t\t\t\t\t\tname: entry.name\n\t\t\t\t\t\t};\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif (entry.kind === \"spread\" && entry.value.kind === \"static\" && staticObject(entry.value.value)) {\n\t\t\t\t\tconst name = Object.keys(entry.value.value).find((name2) => isInvalidHostStyleProp(name2, component));\n\t\t\t\t\tif (name) {\n\t\t\t\t\t\tinvalidHostStyle = {\n\t\t\t\t\t\t\tentry,\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t};\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (invalidHostStyle) return bailout(input, \"local/unsupported-target\", `\"${invalidHostStyle.name}\" is a text style prop and this component is not text. Use a Text-based component, or html.* for raw web elements.`, invalidHostStyle.entry.span);\n\t\t\tconst webPropEdits = platform === \"web\" ? input.element.entries.flatMap((entry) => {\n\t\t\t\tif (entry.kind !== \"prop\" || entry.name !== \"testID\") return [];\n\t\t\t\tconst content = input.source.slice(entry.span.start, entry.span.end);\n\t\t\t\tconst nameOffset = content.indexOf(\"testID\");\n\t\t\t\tif (nameOffset === -1) return [];\n\t\t\t\tconst alreadyQuoted = content[nameOffset - 1] === \"\\\"\" || content[nameOffset - 1] === \"'\";\n\t\t\t\treturn [{\n\t\t\t\t\tstart: entry.span.start + nameOffset,\n\t\t\t\t\tend: entry.span.start + nameOffset + 6,\n\t\t\t\t\tcontent: input.element.form === \"jsx\" || alreadyQuoted ? \"data-testid\" : `'data-testid'`,\n\t\t\t\t\torigin: entry.span\n\t\t\t\t}];\n\t\t\t}) : [];\n\t\t\tconst webDOMResult = platform === \"web\" && component.domTag ? webDOMProps(input, component.domTag) : {\n\t\t\t\tedits: [],\n\t\t\t\tadditions: []\n\t\t\t};\n\t\t\twebPropEdits.push(...webDOMResult.edits);\n\t\t\tconst unsafeSpread = input.element.entries.find((entry) => entry.kind === \"spread\" && !styleEntries.includes(entry) && entry.value.kind === \"static\" && staticObject(entry.value.value) && Object.keys(entry.value.value).some((name) => isStyleProp(name, component)));\n\t\t\tif (unsafeSpread) return bailout(input, \"local/unsafe-style-spread\", \"A mixed style/non-style spread cannot be removed transactionally\", unsafeSpread.span);\n\t\t\tif (platform === \"native\") {\n\t\t\t\tconst nativeStyleResolved = split.viewProps?.style;\n\t\t\t\tlet themedStyleKeys = null;\n\t\t\t\tlet nativeStyle = nativeStyleResolved;\n\t\t\t\tif (staticObject(nativeStyleResolved)) {\n\t\t\t\t\tfor (const [styleKey, styleValue] of Object.entries(nativeStyleResolved)) {\n\t\t\t\t\t\tif (!core.containsThemeRef(styleValue)) continue;\n\t\t\t\t\t\tconst themeKey = core.themeRefKey(styleValue);\n\t\t\t\t\t\tif (!themeKey) return bailout(input, \"local/dynamic-style-value\", `Style ${styleKey} uses a theme value in a compound or modified position that compiled output cannot represent`);\n\t\t\t\t\t\t(themedStyleKeys ||= {})[styleKey] = themeKey;\n\t\t\t\t\t}\n\t\t\t\t\tif (themedStyleKeys) {\n\t\t\t\t\t\tconst plain = {};\n\t\t\t\t\t\tfor (const [styleKey, styleValue] of Object.entries(nativeStyleResolved)) if (!(styleKey in themedStyleKeys)) plain[styleKey] = styleValue;\n\t\t\t\t\t\tnativeStyle = plain;\n\t\t\t\t\t}\n\t\t\t\t} else if (core.containsThemeRef(nativeStyleResolved)) return bailout(input, \"local/dynamic-style-value\", \"Theme values inside non-object native style output stay on the runtime path\");\n\t\t\t\tif (!isSerializableNativeStyle(nativeStyle)) return bailout(input, \"local/unsupported-target\", \"Native style output is not a static serializable value\");\n\t\t\t\tconst nativeStyleLocal = unusedIdentifier(input.source, `__TamaguiNativeStyle${input.element.span.start}`);\n\t\t\t\tconst nativeStyleImports = [{\n\t\t\t\t\tcontent: `\nfunction ${nativeStyleLocal}() { return ${nativeStyleLocal}._ ?? (${nativeStyleLocal}._ = ${JSON.stringify(nativeStyle ?? {})}); } ${nativeStyleLocal}();`,\n\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t}];\n\t\t\t\tconst nativeStyleSource = `${nativeStyleLocal}._ ?? ${nativeStyleLocal}()`;\n\t\t\t\tlet nativeFastPath;\n\t\t\t\tif (themedStyleKeys && options.experimentalNativeFastPath && dynamicStyleEntries.length === 0 && !input.element.entries.some((entry) => entry.kind === \"spread\")) {\n\t\t\t\t\tconst mappingLocal = unusedIdentifier(input.source, `__TamaguiNativeMapping${input.element.span.start}`);\n\t\t\t\t\tnativeFastPath = {\n\t\t\t\t\t\tmappingLocal,\n\t\t\t\t\t\timports: [{\n\t\t\t\t\t\t\tcontent: `\nconst ${mappingLocal} = ${JSON.stringify(themedStyleKeys)};`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t}]\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tif (component.domTag) {\n\t\t\t\t\tif (themedStyleKeys) return bailout(input, \"local/unsupported-target\", \"Theme values on DOM-tag native output stay on the runtime path\");\n\t\t\t\t\tconst row = TAGS[component.domTag];\n\t\t\t\t\tconst basePrimitive = NATIVE_BACKING[row.backing].primitive;\n\t\t\t\t\tlet primitive = basePrimitive;\n\t\t\t\t\tconst propsResult = nativeDOMProps(input, component.domTag);\n\t\t\t\t\tif (propsResult.diagnostic) return bailout(input, \"local/unsupported-target\", propsResult.diagnostic, propsResult.diagnosticSpan);\n\t\t\t\t\tstyleEntries = [.../* @__PURE__ */ new Set([...styleEntries, ...propsResult.consumed])];\n\t\t\t\t\tlet nativeDOMStyleSource = nativeStyleSource;\n\t\t\t\t\tlet runtimeStyleSource = null;\n\t\t\t\t\tif (domStyleProgram?.kind === \"prop\" && domStyleProgram.value.kind === \"dom-style\") {\n\t\t\t\t\t\tconst needsRuntime = domStyleProgram.value.items.some((item) => item.value.kind === \"static\" && staticObject(item.value.value) && (Object.keys(item.value.value).some((property) => nativeRuntimeOnlyStyleProperties.has(property)) || Object.values(item.value.value).some((value) => typeof value === \"string\" && (flatClausePattern.test(value) || nativeInheritedKeywordPattern.test(value)))));\n\t\t\t\t\t\tconst itemSources = [];\n\t\t\t\t\t\tfor (const item of domStyleProgram.value.items) {\n\t\t\t\t\t\t\tif (item.value.kind !== \"static\" || !staticObject(item.value.value)) return bailout(input, \"local/dynamic-style-value\", \"Every style() handle in a style array must be statically evaluable\", item.value.span);\n\t\t\t\t\t\t\tif (Object.values(item.value.value).some((value2) => typeof value2 === \"string\" && nativeInitialKeywordPattern.test(value2))) return bailout(input, \"local/unsupported-target\", \"Native DOM style() does not support the CSS initial keyword, matching the pinned upstream limitation\", item.value.span);\n\t\t\t\t\t\t\tlet value;\n\t\t\t\t\t\t\tif (needsRuntime) value = JSON.stringify(item.value.value);\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tconst itemStyle = resolveSplitStyles(item.value.value, partialStaticConfig(component.staticConfig))?.viewProps?.style;\n\t\t\t\t\t\t\t\tif (!isSerializableNativeStyle(itemStyle) || core.containsThemeRef(itemStyle)) return bailout(input, \"local/unsupported-target\", \"Native style() output is not serializable\", item.value.span);\n\t\t\t\t\t\t\t\tvalue = JSON.stringify(itemStyle ?? {});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tconst condition = item.condition ? input.source.slice(item.condition.start, item.condition.end) : null;\n\t\t\t\t\t\t\titemSources.push(condition ? `(${condition}) && ${value}` : value);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (needsRuntime) {\n\t\t\t\t\t\t\tprimitive = `DOMRuntime${basePrimitive.slice(3)}`;\n\t\t\t\t\t\t\truntimeStyleSource = `[${itemSources.join(\", \")}]`;\n\t\t\t\t\t\t} else nativeDOMStyleSource = `[${[nativeDOMStyleSource, ...itemSources].join(\", \")}]`;\n\t\t\t\t\t}\n\t\t\t\t\tconst nativeLocal2 = unusedIdentifier(input.source, `__Tamagui${primitive}`);\n\t\t\t\t\tconst propertyContent = [\n\t\t\t\t\t\tinput.element.form === \"jsx\" ? `style={${nativeDOMStyleSource}}` : `style: ${nativeDOMStyleSource}`,\n\t\t\t\t\t\truntimeStyleSource ? input.element.form === \"jsx\" ? `__styles={${runtimeStyleSource}}` : `__styles: ${runtimeStyleSource}` : \"\",\n\t\t\t\t\t\tserializedProps(input.element.form, propsResult.additions)\n\t\t\t\t\t].filter(Boolean).join(input.element.form === \"jsx\" ? \" \" : \", \");\n\t\t\t\t\tconst primitiveTagEdits = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\t\t\tstart: span.start,\n\t\t\t\t\t\tend: span.end,\n\t\t\t\t\t\tcontent: input.element.form === \"jsx\" ? nativeLocal2 : JSON.stringify(nativeLocal2).slice(1, -1),\n\t\t\t\t\t\torigin: span\n\t\t\t\t\t}));\n\t\t\t\t\tconst literalEdits = [];\n\t\t\t\t\tconst imports = [...nativeStyleImports, {\n\t\t\t\t\t\tcontent: `\nimport { ${primitive} as ${nativeLocal2} } from ${JSON.stringify(NATIVE_PRIMITIVE_MODULE)}\n`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}];\n\t\t\t\t\tif (NATIVE_BACKING[row.backing].wrapsLiteralText) {\n\t\t\t\t\t\tconst textLocal = unusedIdentifier(input.source, \"__TamaguiDOMText\");\n\t\t\t\t\t\tconst createElementLocal = unusedIdentifier(input.source, \"__TamaguiCreateElement\");\n\t\t\t\t\t\tlet needsText = false;\n\t\t\t\t\t\tlet needsCreateElement = false;\n\t\t\t\t\t\tfor (const entry of input.element.entries) {\n\t\t\t\t\t\t\tif (entry.kind !== \"child\") continue;\n\t\t\t\t\t\t\tif (entry.value.kind === \"empty\" || entry.value.kind === \"element\" || entry.value.kind === \"static\" && (entry.value.value === null || typeof entry.value.value === \"boolean\")) continue;\n\t\t\t\t\t\t\tif (entry.value.kind !== \"static\" || entry.value.literalOrigin !== true || typeof entry.value.value !== \"string\" && typeof entry.value.value !== \"number\") return bailout(input, \"local/unsupported-child\", `html.${component.domTag} has a direct child that may render unwrapped native text; write a literal as JSX text or wrap the child in html.span`, entry.span);\n\t\t\t\t\t\t\tneedsText = true;\n\t\t\t\t\t\t\tconst child = input.source.slice(entry.span.start, entry.span.end);\n\t\t\t\t\t\t\tif (input.element.form === \"jsx\") literalEdits.push({\n\t\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\t\tcontent: `<${textLocal} __inherit>${child}</${textLocal}>`,\n\t\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tneedsCreateElement = true;\n\t\t\t\t\t\t\t\tliteralEdits.push({\n\t\t\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\t\t\tcontent: `${createElementLocal}(${textLocal}, { __inherit: true }, ${child})`,\n\t\t\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (needsText) imports.push({\n\t\t\t\t\t\t\tcontent: `\nimport { DOMText as ${textLocal} } from ${JSON.stringify(NATIVE_PRIMITIVE_MODULE)}\n`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t});\n\t\t\t\t\t\tif (needsCreateElement) imports.push({\n\t\t\t\t\t\t\tcontent: `\nimport { createElement as ${createElementLocal} } from \"react\"\n`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t\tconst propsEdits = input.element.form === \"jsx\" ? styleEntries.length === 0 ? [{\n\t\t\t\t\t\tstart: input.element.component.span.end,\n\t\t\t\t\t\tend: input.element.component.span.end,\n\t\t\t\t\t\tcontent: ` ${propertyContent}`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}] : [{\n\t\t\t\t\t\tstart: styleEntries[0].span.start,\n\t\t\t\t\t\tend: styleEntries[0].span.end,\n\t\t\t\t\t\tcontent: propertyContent,\n\t\t\t\t\t\torigin: styleEntries[0].span\n\t\t\t\t\t}, ...styleEntries.slice(1).map((entry) => ({\n\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t}))] : compiledPropsEdits(input, styleEntries, propertyContent);\n\t\t\t\t\tif (!propsEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\t\treturn {\n\t\t\t\t\t\tok: true,\n\t\t\t\t\t\tedits: [\n\t\t\t\t\t\t\t...primitiveTagEdits,\n\t\t\t\t\t\t\t...propsResult.edits,\n\t\t\t\t\t\t\t...propsEdits,\n\t\t\t\t\t\t\t...literalEdits\n\t\t\t\t\t\t],\n\t\t\t\t\t\tcss: [],\n\t\t\t\t\t\timports,\n\t\t\t\t\t\tflattened: true\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tconst nativeName = component.staticConfig.isText ? \"Text\" : \"View\";\n\t\t\t\tconst useHostView = options.experimentalNativeFastPath && nativeName === \"View\" && isBareHostView(input.element);\n\t\t\t\tconst nativeExport = useHostView ? \"unstable_NativeView\" : nativeName;\n\t\t\t\tconst nativeLocal = unusedIdentifier(input.source, `__TamaguiNative${useHostView ? \"HostView\" : nativeName}`);\n\t\t\t\tif (themedStyleKeys && options.disablePartialExtraction) return bailout(input, \"local/dynamic-style-value\", \"Theme values require partial extraction, which is disabled\");\n\t\t\t\tif (dynamicStyleEntries.length > 0 || themedStyleKeys) {\n\t\t\t\t\tif (nativeFastPath) {\n\t\t\t\t\t\tconst fastLocal = `__TamaguiNativeFast${nativeName}${input.element.span.start}`;\n\t\t\t\t\t\tconst tagEdits4 = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\t\t\t\tstart: span.start,\n\t\t\t\t\t\t\tend: span.end,\n\t\t\t\t\t\t\tcontent: fastLocal,\n\t\t\t\t\t\t\torigin: span\n\t\t\t\t\t\t}));\n\t\t\t\t\t\tconst [first4, ...rest4] = styleEntries;\n\t\t\t\t\t\tconst styleEdits = styleEntries.length === 0 ? [] : input.element.form === \"jsx\" ? [{\n\t\t\t\t\t\t\tstart: first4.span.start,\n\t\t\t\t\t\t\tend: first4.span.end,\n\t\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\t\torigin: first4.span\n\t\t\t\t\t\t}, ...rest4.map((entry) => ({\n\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t}))] : compiledPropsEdits(input, styleEntries, `_expressions: []`);\n\t\t\t\t\t\tif (!styleEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tok: true,\n\t\t\t\t\t\t\tedits: [...tagEdits4, ...styleEdits],\n\t\t\t\t\t\t\tcss: [],\n\t\t\t\t\t\t\timports: [\n\t\t\t\t\t\t\t\t...nativeStyleImports,\n\t\t\t\t\t\t\t\t...nativeFastPath.imports,\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcontent: `\nconst ${fastLocal} = require('@tamagui/core')._withNativeStyle(${nativeLocal}, ${nativeStyleSource}, ${nativeFastPath.mappingLocal});`,\n\t\t\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tflattened: true\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\t\t\t\t\tconst stableLocal = `__TamaguiStable${nativeName}${input.element.span.start}`;\n\t\t\t\t\tconst expressions = [];\n\t\t\t\t\tconst plainDynamicParts = [];\n\t\t\t\t\tconst conditionalParts = [];\n\t\t\t\t\tconst conditionalKeys = /* @__PURE__ */ new Set();\n\t\t\t\t\tconst baseStyleForDiff = staticObject(nativeStyleResolved) ? nativeStyleResolved : {};\n\t\t\t\t\tfor (const entry of dynamicStyleEntries) if (entry.value.kind === \"conditional\" && directStyleName(entry.name, component) !== \"opacity\") {\n\t\t\t\t\t\tconst branchDiffs = [];\n\t\t\t\t\t\tfor (const branchValue of [entry.value.whenTrue, entry.value.whenFalse]) {\n\t\t\t\t\t\t\tconst branchSplit = resolveSplitStyles({\n\t\t\t\t\t\t\t\t...completeProps,\n\t\t\t\t\t\t\t\t[entry.name]: branchValue\n\t\t\t\t\t\t\t}, component.staticConfig, cssAnimationDriver, component.displayName);\n\t\t\t\t\t\t\tconst branchStyle = branchSplit?.viewProps?.style;\n\t\t\t\t\t\t\tif (!staticObject(branchStyle)) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch did not resolve to a static native style`, entry.value.span);\n\t\t\t\t\t\t\tfor (const viewPropsKey of /* @__PURE__ */ new Set([...Object.keys(branchSplit?.viewProps ?? {}), ...Object.keys(split.viewProps ?? {})])) {\n\t\t\t\t\t\t\t\tif (viewPropsKey === \"style\") continue;\n\t\t\t\t\t\t\t\tif (JSON.stringify(branchSplit?.viewProps?.[viewPropsKey]) !== JSON.stringify(split.viewProps?.[viewPropsKey])) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch changes ${viewPropsKey}, which the compiled style array cannot express`, entry.value.span);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tfor (const key of Object.keys(baseStyleForDiff)) if (!(key in branchStyle)) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch removes ${key}, which an additive style array cannot express`, entry.value.span);\n\t\t\t\t\t\t\tconst diff = {};\n\t\t\t\t\t\t\tfor (const [key, value] of Object.entries(branchStyle)) if (JSON.stringify(baseStyleForDiff[key]) !== JSON.stringify(value)) diff[key] = value;\n\t\t\t\t\t\t\tif (!isSerializableNativeStyle(diff) || core.containsThemeRef(diff)) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch style is not statically representable`, entry.value.span);\n\t\t\t\t\t\t\tfor (const key of Object.keys(diff)) if (conditionalKeys.has(key)) return bailout(input, \"local/dynamic-style-value\", `Multiple conditionals contribute ${key}; their interaction cannot be resolved per-branch`, entry.value.span);\n\t\t\t\t\t\t\tbranchDiffs.push(diff);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfor (const diff of branchDiffs) for (const key of Object.keys(diff)) conditionalKeys.add(key);\n\t\t\t\t\t\tconst index = expressions.length;\n\t\t\t\t\t\texpressions.push(input.source.slice(entry.value.test.start, entry.value.test.end));\n\t\t\t\t\t\tconditionalParts.push(`expressions[${index}] ? ${JSON.stringify(branchDiffs[0])} : ${JSON.stringify(branchDiffs[1])}`);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tconst index = expressions.length;\n\t\t\t\t\t\texpressions.push(input.source.slice(entry.value.span.start, entry.value.span.end));\n\t\t\t\t\t\tplainDynamicParts.push(`${JSON.stringify(directStyleName(entry.name, component))}: expressions[${index}]`);\n\t\t\t\t\t}\n\t\t\t\t\tconst dynamicStyle = plainDynamicParts.join(\", \");\n\t\t\t\t\tconst themedStyle = themedStyleKeys ? Object.entries(themedStyleKeys).map(([styleKey, themeKey]) => `${JSON.stringify(styleKey)}: _theme[${JSON.stringify(themeKey)}]?.get()`).join(\", \") : null;\n\t\t\t\t\tconst styleParts = [\n\t\t\t\t\t\tnativeStyleSource,\n\t\t\t\t\t\t...themedStyle ? [`{ ${themedStyle} }`] : [],\n\t\t\t\t\t\t...conditionalParts,\n\t\t\t\t\t\t...dynamicStyle ? [`{ ${dynamicStyle} }`] : []\n\t\t\t\t\t];\n\t\t\t\t\tconst tagEdits3 = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\t\t\tstart: span.start,\n\t\t\t\t\t\tend: span.end,\n\t\t\t\t\t\tcontent: stableLocal,\n\t\t\t\t\t\torigin: span\n\t\t\t\t\t}));\n\t\t\t\t\tconst [first3, ...rest3] = styleEntries;\n\t\t\t\t\tconst expressionEdits = styleEntries.length === 0 ? [] : input.element.form === \"jsx\" ? [{\n\t\t\t\t\t\tstart: first3.span.start,\n\t\t\t\t\t\tend: first3.span.end,\n\t\t\t\t\t\tcontent: expressions.length > 0 ? `_expressions={[${expressions.join(\", \")}]}` : \"\",\n\t\t\t\t\t\torigin: first3.span\n\t\t\t\t\t}, ...rest3.map((entry) => ({\n\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t}))] : compiledPropsEdits(input, styleEntries, `_expressions: [${expressions.join(\", \")}]`);\n\t\t\t\t\tif (!expressionEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\t\treturn {\n\t\t\t\t\t\tok: true,\n\t\t\t\t\t\tedits: [...tagEdits3, ...expressionEdits],\n\t\t\t\t\t\tcss: [],\n\t\t\t\t\t\timports: [\n\t\t\t\t\t\t\t...nativeStyleImports,\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tcontent: `\nconst ${stableLocal} = require('@tamagui/core')._withStableStyle(${nativeLocal}, (_theme, expressions) => [${styleParts.join(\", \")}], ${themedStyleKeys ? \"true\" : \"false\"}, false);`,\n\t\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t],\n\t\t\t\t\t\tflattened: true\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tconst styleContent = `style: ${nativeStyleSource}`;\n\t\t\t\tconst tagEdits2 = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\t\tstart: span.start,\n\t\t\t\t\tend: span.end,\n\t\t\t\t\tcontent: nativeLocal,\n\t\t\t\t\torigin: span\n\t\t\t\t}));\n\t\t\t\tif (input.element.form !== \"jsx\") {\n\t\t\t\t\tconst propsEdits = compiledPropsEdits(input, styleEntries, styleContent);\n\t\t\t\t\tif (!propsEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\t\treturn {\n\t\t\t\t\t\tok: true,\n\t\t\t\t\t\tedits: [...tagEdits2, ...propsEdits],\n\t\t\t\t\t\tcss: [],\n\t\t\t\t\t\timports: [...nativeStyleImports, {\n\t\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t}],\n\t\t\t\t\t\tflattened: true\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tif (styleEntries.length === 0) return {\n\t\t\t\t\tok: true,\n\t\t\t\t\tedits: [...tagEdits2, {\n\t\t\t\t\t\tstart: input.element.component.span.end,\n\t\t\t\t\t\tend: input.element.component.span.end,\n\t\t\t\t\t\tcontent: ` style={${nativeStyleSource}}`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}],\n\t\t\t\t\tcss: [],\n\t\t\t\t\timports: [...nativeStyleImports, {\n\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}],\n\t\t\t\t\tflattened: true\n\t\t\t\t};\n\t\t\t\tconst [first2, ...rest2] = styleEntries;\n\t\t\t\treturn {\n\t\t\t\t\tok: true,\n\t\t\t\t\tedits: [\n\t\t\t\t\t\t...tagEdits2,\n\t\t\t\t\t\t...webPropEdits,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tstart: first2.span.start,\n\t\t\t\t\t\t\tend: first2.span.end,\n\t\t\t\t\t\t\tcontent: `style={${nativeStyleSource}}`,\n\t\t\t\t\t\t\torigin: first2.span\n\t\t\t\t\t\t},\n\t\t\t\t\t\t...rest2.map((entry) => ({\n\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t}))\n\t\t\t\t\t],\n\t\t\t\t\tcss: [],\n\t\t\t\t\timports: [...nativeStyleImports, {\n\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}],\n\t\t\t\t\tflattened: true\n\t\t\t\t};\n\t\t\t}\n\t\t\tconst artifacts = extractedStyleArtifacts(split, props, options.tamaguiConfig, !component.domTag, Boolean(component.staticConfig.styleFrontend));\n\t\t\tconst className = artifacts.className;\n\t\t\tconst rawInlineStyle = split.viewProps?.style;\n\t\t\tconst inlineStyle = staticObject(rawInlineStyle) && !rawInlineStyle[\"$$css\"] && Object.keys(rawInlineStyle).length > 0 ? rawInlineStyle : null;\n\t\t\tif (rawInlineStyle && !inlineStyle && !isSerializableNativeStyle(rawInlineStyle)) return bailout(input, \"local/unsupported-target\", \"Web inline style output is not a static serializable value\");\n\t\t\tconst programCSS = [];\n\t\t\tconst programClassSources = [];\n\t\t\tif (domStyleProgram?.kind === \"prop\" && domStyleProgram.value.kind === \"dom-style\") for (const item of domStyleProgram.value.items) {\n\t\t\t\tif (item.value.kind !== \"static\" || !staticObject(item.value.value)) return bailout(input, \"local/dynamic-style-value\", \"Every style() handle in a style array must be statically evaluable\", item.value.span);\n\t\t\t\tconst itemSplit = resolveSplitStyles(item.value.value, partialStaticConfig(component.staticConfig));\n\t\t\t\tif (!itemSplit) return bailout(input, \"local/style-resolution-failed\", \"A style() handle could not be resolved\", item.value.span);\n\t\t\t\tconst itemInline = itemSplit.viewProps?.style;\n\t\t\t\tif (staticObject(itemInline) && !itemInline[\"$$css\"] && Object.keys(itemInline).length > 0) return bailout(input, \"local/unsupported-target\", \"Conditional web style() handles must lower to CSS classes\", item.value.span);\n\t\t\t\tconst itemArtifacts = extractedStyleArtifacts(itemSplit, item.value.value, options.tamaguiConfig, false);\n\t\t\t\tprogramCSS.push(...itemArtifacts.css);\n\t\t\t\tif (itemArtifacts.className) {\n\t\t\t\t\tconst condition = item.condition ? input.source.slice(item.condition.start, item.condition.end) : null;\n\t\t\t\t\tprogramClassSources.push(condition ? `(${condition}) && ${JSON.stringify(itemArtifacts.className)}` : JSON.stringify(itemArtifacts.className));\n\t\t\t\t}\n\t\t\t}\n\t\t\tlet webClassName = className;\n\t\t\tconst webConditionalCSS = [];\n\t\t\tconst webConditionalEntries = supportsWebConditionalClasses ? dynamicStyleEntries.filter((entry) => entry.value.kind === \"conditional\") : [];\n\t\t\tfor (const entry of webConditionalEntries) {\n\t\t\t\tif (entry.value.kind !== \"conditional\") continue;\n\t\t\t\tconst branches = [];\n\t\t\t\tfor (const branchValue of [entry.value.whenTrue, entry.value.whenFalse]) {\n\t\t\t\t\tconst branchSplit = resolveSplitStyles({\n\t\t\t\t\t\t...completeProps,\n\t\t\t\t\t\t[entry.name]: branchValue\n\t\t\t\t\t}, component.staticConfig, cssAnimationDriver, component.displayName);\n\t\t\t\t\tif (!branchSplit) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch could not be resolved`, entry.value.span);\n\t\t\t\t\tfor (const viewPropsKey of /* @__PURE__ */ new Set([...Object.keys(branchSplit.viewProps ?? {}), ...Object.keys(split.viewProps ?? {})])) {\n\t\t\t\t\t\tif (viewPropsKey === \"className\") continue;\n\t\t\t\t\t\tif (JSON.stringify(branchSplit.viewProps?.[viewPropsKey]) !== JSON.stringify(split.viewProps?.[viewPropsKey])) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch changes ${viewPropsKey}, which conditional classes cannot express`, entry.value.span);\n\t\t\t\t\t}\n\t\t\t\t\tconst branchArtifacts = extractedStyleArtifacts(branchSplit, {\n\t\t\t\t\t\t...props,\n\t\t\t\t\t\t[entry.name]: branchValue\n\t\t\t\t\t}, options.tamaguiConfig, !component.domTag, Boolean(component.staticConfig.styleFrontend));\n\t\t\t\t\tbranches.push({\n\t\t\t\t\t\tclasses: branchArtifacts.className.split(\" \").filter(Boolean),\n\t\t\t\t\t\tcss: branchArtifacts.css\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tconst [whenTrue, whenFalse] = branches;\n\t\t\t\tconst shared = new Set(whenTrue.classes.filter((item) => whenFalse.classes.includes(item)));\n\t\t\t\tconst trueOnly = whenTrue.classes.filter((item) => !shared.has(item));\n\t\t\t\tconst falseOnly = whenFalse.classes.filter((item) => !shared.has(item));\n\t\t\t\twebClassName = [...shared].join(\" \");\n\t\t\t\twebConditionalCSS.push(...whenTrue.css, ...whenFalse.css);\n\t\t\t\tif (trueOnly.length > 0 || falseOnly.length > 0) {\n\t\t\t\t\tconst test = input.source.slice(entry.value.test.start, entry.value.test.end);\n\t\t\t\t\tprogramClassSources.push(`(${test}) ? ${JSON.stringify(trueOnly.join(\" \"))} : ${JSON.stringify(falseOnly.join(\" \"))}`);\n\t\t\t\t}\n\t\t\t}\n\t\t\tconst classNameExpression = programClassSources.length > 0 ? `[${[JSON.stringify(webClassName), ...programClassSources].join(\", \")}].filter(Boolean).join(\" \")` : null;\n\t\t\tconst serializedInlineStyle = serializedStyle(inlineStyle, dynamicHostStyleProperties ?? []);\n\t\t\tconst jsxWebStyle = classNameExpression ? [`className={${classNameExpression}}`, serializedInlineStyle ? `style={${serializedInlineStyle}}` : \"\"].filter(Boolean).join(\" \") : jsxStyleAttributes(webClassName, inlineStyle, dynamicHostStyleProperties ?? []);\n\t\t\tconst objectWebStyle = classNameExpression ? [`className: ${classNameExpression}`, serializedInlineStyle ? `style: ${serializedInlineStyle}` : \"\"].filter(Boolean).join(\", \") : objectStyleProperties(webClassName, inlineStyle, dynamicHostStyleProperties ?? []);\n\t\t\tconst webCSS = [.../* @__PURE__ */ new Set([\n\t\t\t\t...artifacts.css,\n\t\t\t\t...programCSS,\n\t\t\t\t...webConditionalCSS\n\t\t\t])];\n\t\t\tconst webExtraProps = serializedProps(input.element.form, webDOMResult.additions);\n\t\t\tif (input.element.form !== \"jsx\") {\n\t\t\t\tconst replacement = [objectWebStyle, webExtraProps].filter(Boolean).join(\", \");\n\t\t\t\tconst propsEdits = compiledPropsEdits(input, styleEntries, replacement);\n\t\t\t\tif (!propsEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\treturn {\n\t\t\t\t\tok: true,\n\t\t\t\t\tedits: [\n\t\t\t\t\t\t...tagEdits,\n\t\t\t\t\t\t...webPropEdits,\n\t\t\t\t\t\t...propsEdits\n\t\t\t\t\t],\n\t\t\t\t\tcss: webCSS,\n\t\t\t\t\timports: [],\n\t\t\t\t\tflattened: true\n\t\t\t\t};\n\t\t\t}\n\t\t\tif (styleEntries.length === 0) {\n\t\t\t\tconst attributes2 = [jsxWebStyle, webExtraProps].filter(Boolean).join(\" \");\n\t\t\t\treturn {\n\t\t\t\t\tok: true,\n\t\t\t\t\tedits: attributes2 ? [\n\t\t\t\t\t\t...tagEdits,\n\t\t\t\t\t\t...webPropEdits,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tstart: input.element.component.span.end,\n\t\t\t\t\t\t\tend: input.element.component.span.end,\n\t\t\t\t\t\t\tcontent: ` ${attributes2}`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t}\n\t\t\t\t\t] : [...tagEdits, ...webPropEdits],\n\t\t\t\t\tcss: webCSS,\n\t\t\t\t\timports: [],\n\t\t\t\t\tflattened: true\n\t\t\t\t};\n\t\t\t}\n\t\t\tconst [first, ...rest] = styleEntries;\n\t\t\tconst attributes = [jsxWebStyle, webExtraProps].filter(Boolean).join(\" \");\n\t\t\treturn {\n\t\t\t\tok: true,\n\t\t\t\tedits: [\n\t\t\t\t\t...tagEdits,\n\t\t\t\t\t...webPropEdits,\n\t\t\t\t\t{\n\t\t\t\t\t\tstart: first.span.start,\n\t\t\t\t\t\tend: first.span.end,\n\t\t\t\t\t\tcontent: attributes,\n\t\t\t\t\t\torigin: first.span\n\t\t\t\t\t},\n\t\t\t\t\t...rest.map((entry) => ({\n\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t}))\n\t\t\t\t],\n\t\t\t\tcss: webCSS,\n\t\t\t\timports: [],\n\t\t\t\tflattened: true\n\t\t\t};\n\t\t}\n\t};\n}\nfunction bailout(input, code, message, span = input.element.span, zero) {\n\treturn {\n\t\tok: false,\n\t\tbailout: {\n\t\t\tcode,\n\t\t\tkind: \"local\",\n\t\t\tmessage,\n\t\t\tspan,\n\t\t\tcomponent: input.element.component.name,\n\t\t\t...zero && {\n\t\t\t\tzeroRule: zero.rule,\n\t\t\t\tzeroMessage: zero.message\n\t\t\t}\n\t\t}\n\t};\n}\n\nexport { createTamaguiCompilerHost };"],"mappings":"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EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACD;CACA,WAAW;EACV;EACA;EACA;CACD;CACA,aAAa;EACZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACD;CACA,cAAc;EACb;EACA;EACA;CACD;CACA,YAAY;EACX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACD;CACA,aAAa;EACZ;EACA;EACA;EACA;EACA;CACD;CACA,SAAS;EACR;EACA;EACA;CACD;CACA,KAAK,CAAC,aAAa,QAAQ;CAC3B,YAAY,CAAC,iBAAiB,iBAAiB;CAC/C,SAAS,CAAC,cAAc,cAAc;CACtC,cAAc;EACb;EACA;EACA;EACA;EACA;EACA;CACD;CACA,eAAe;EACd;EACA;EACA;EACA;EACA;EACA;CACD;CACA,aAAa;EACZ;EACA;EACA;EACA;EACA;EACA;CACD;CACA,mBAAmB;EAClB;EACA;EACA;EACA;EACA;EACA;CACD;CACA,mBAAmB;EAClB;EACA;EACA;EACA;EACA;EACA;CACD;CACA,mBAAmB;EAClB;EACA;EACA;EACA;EACA;EACA;CACD;CACA,MAAM;EACL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACD;CACA,YAAY;EACX;EACA;EACA;EACA;EACA;EACA;CACD;AACD;AACA,MAAM,sBAAsB;iBACX,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;E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"}
|
|
1
|
+
{"version":3,"file":"compilerHost.js","names":[],"sources":["esm/compilerHost.js"],"sourcesContent":["import { zeroRuleMessage, zeroThemeBoundaryMessage } from \"@tamagui/compiler-core\";\nimport { StyleObjectIdentifier, StyleObjectProperty, StyleObjectRules, StyleObjectValue, stylePropsAll, stylePropsText, validStyles } from \"@tamagui/helpers\";\nimport { ATTRIBUTES, DISPLAY_WEB_RESET, EVENTS, NATIVE_BACKING, NATIVE_BLOCK_DEFAULTS, NATIVE_ELEMENT_DEFAULTS, NATIVE_FLEX_DEFAULTS, NATIVE_INPUT_TYPES, NATIVE_PRIMITIVE_MODULE, TAGS, TAG_WEB_DEFAULTS } from \"@tamagui/dom\";\nimport { createModifierRegistry, parseTransition, parseValue } from \"@tamagui/style-grammar\";\nimport { isValidStyleKey } from \"@tamagui/web\";\nimport { concatClassName } from \"./extractor/concatClassName\";\nimport { requireTamaguiCore } from \"./helpers/requireTamaguiCore\";\n\nconst DOM_FRONTENDS = /* @__PURE__ */ new Set([\n\t\"tamagui\",\n\t\"tamagui/dom\",\n\t\"@tamagui/core\",\n\t\"@tamagui/core/dom\",\n\t\"@tamagui/tailwind\"\n]);\nconst componentState = {\n\tfocus: false,\n\tfocusVisible: false,\n\tfocusWithin: false,\n\thover: false,\n\tunmounted: true,\n\tpress: false,\n\tpressIn: false,\n\tdisabled: false\n};\nfunction staticObject(value) {\n\treturn !!value && typeof value === \"object\" && !Array.isArray(value);\n}\nconst flatClausePattern = /(?:^|\\s)@?[A-Za-z][A-Za-z0-9-]*(?:\\/[A-Za-z0-9_-]+)?:/;\nconst nativeInheritedKeywordPattern = /(?:^|:)(?:inherit|unset)(?=\\s|$)/;\nconst nativeInitialKeywordPattern = /(?:^|:)initial(?=\\s|$)/;\nconst nativeRuntimeOnlyStyleProperties = /* @__PURE__ */ new Set([\"textIndent\"]);\nfunction componentKey(resolvedId, exportName) {\n\treturn `${resolvedId}#${exportName}`;\n}\nfunction cssFromRules(rules) {\n\treturn Object.values(rules).flatMap((styleObject) => {\n\t\tconst identifier = styleObject?.[StyleObjectIdentifier];\n\t\tconst styleRules = styleObject?.[StyleObjectRules];\n\t\treturn identifier && Array.isArray(styleRules) ? styleRules : [];\n\t});\n}\nfunction jsxClassName(value) {\n\treturn `className=${JSON.stringify(value)}`;\n}\nfunction objectClassName(value) {\n\treturn `className: ${JSON.stringify(value)}`;\n}\nfunction serializedStyle(style, dynamicProperties) {\n\tif (dynamicProperties.length === 0) return style ? JSON.stringify(style) : \"\";\n\treturn `{ ${[...style ? Object.entries(style).map(([name, value]) => `${JSON.stringify(name)}: ${JSON.stringify(value)}`) : [], ...dynamicProperties].join(\", \")} }`;\n}\nfunction jsxStyleAttributes(className, style, dynamicProperties = []) {\n\tconst serialized = serializedStyle(style, dynamicProperties);\n\treturn [className ? jsxClassName(className) : \"\", serialized ? `style={${serialized}}` : \"\"].filter(Boolean).join(\" \");\n}\nfunction objectStyleProperties(className, style, dynamicProperties = []) {\n\tconst serialized = serializedStyle(style, dynamicProperties);\n\treturn [className ? objectClassName(className) : \"\", serialized ? `style: ${serialized}` : \"\"].filter(Boolean).join(\", \");\n}\nfunction extractedStyleArtifacts(split, props, config, includeRuntimeBase = true, hasStyleFrontend = false) {\n\tconst callerClassName = !hasStyleFrontend && typeof props.className === \"string\" ? props.className : \"\";\n\tconst viewClassName = typeof split.viewProps?.className === \"string\" ? split.viewProps.className : \"\";\n\tconst classNameWithoutCaller = callerClassName && viewClassName.endsWith(callerClassName) ? viewClassName.slice(0, -callerClassName.length).trimEnd() : viewClassName;\n\tconst rules = split.rulesToInsert ?? {};\n\tconst mediaNames = new Set(Object.keys(config.media ?? {}));\n\tconst pseudoNames = [\n\t\t\"hover\",\n\t\t\"press\",\n\t\t\"focus\",\n\t\t\"focusVisible\",\n\t\t\"focusWithin\",\n\t\t\"disabled\"\n\t];\n\tconst buckets = {\n\t\tgroup: [],\n\t\tnormal: [],\n\t\tpseudo: [],\n\t\ttheme: [],\n\t\tmedia: []\n\t};\n\tconst classKeys = /* @__PURE__ */ new Map();\n\tfor (const [key, identifier] of Object.entries(split.classNames ?? {})) if (typeof identifier === \"string\") classKeys.set(identifier, key);\n\tconst identifiers = /* @__PURE__ */ new Set([...classKeys.keys(), ...Object.values(rules).flatMap((styleObject) => {\n\t\tconst identifier = styleObject?.[StyleObjectIdentifier];\n\t\treturn typeof identifier === \"string\" ? [identifier] : [];\n\t})]);\n\tfor (const identifier of identifiers) {\n\t\tconst key = classKeys.get(identifier) ?? \"\";\n\t\tconst css2 = cssFromRules(Object.fromEntries(Object.entries(rules).filter(([, styleObject]) => styleObject?.[StyleObjectIdentifier] === identifier))).join(\"\");\n\t\tif (identifier.startsWith(\"t_group_\")) buckets.group.push(identifier);\n\t\telse if (pseudoNames.some((name) => key.endsWith(`-${name}`))) buckets.pseudo.push(identifier);\n\t\telse if (css2.includes(\".t_\")) buckets.theme.push(identifier);\n\t\telse if ([...mediaNames].some((name) => key.endsWith(`-${name}`))) buckets.media.push(identifier);\n\t\telse buckets.normal.push(identifier);\n\t}\n\tconst orderedIdentifiers = [\n\t\t...buckets.group,\n\t\t...buckets.normal,\n\t\t...buckets.pseudo,\n\t\t...buckets.theme,\n\t\t...buckets.media\n\t];\n\tconst orderedSet = new Set(orderedIdentifiers);\n\tconst baseViewClassName = includeRuntimeBase ? classNameWithoutCaller.split(/\\s+/).filter((token) => token && !orderedSet.has(token)).join(\" \") : \"\";\n\tconst css = orderedIdentifiers.flatMap((identifier) => {\n\t\tconst identifierRules = cssFromRules(Object.fromEntries(Object.entries(rules).filter(([, styleObject]) => styleObject?.[StyleObjectIdentifier] === identifier)));\n\t\treturn buckets.theme.includes(identifier) ? identifierRules.map((rule) => rule.replace(\":root:root:root.t_\", \":root:root:root:root.t_\")) : identifierRules;\n\t});\n\treturn {\n\t\tclassName: concatClassName(baseViewClassName, orderedIdentifiers, callerClassName),\n\t\tcss\n\t};\n}\nfunction compiledPropsEdits(input, styleEntries, replacement) {\n\tconst propsSpan = input.element.propsSpan;\n\tif (!propsSpan) return null;\n\tconst original = input.source.slice(propsSpan.start, propsSpan.end);\n\tconst trimmed = original.trim();\n\tif (!trimmed.startsWith(\"{\") || !trimmed.endsWith(\"}\")) return [{\n\t\tstart: propsSpan.start,\n\t\tend: propsSpan.end,\n\t\tcontent: `{ ${replacement} }`,\n\t\torigin: propsSpan\n\t}];\n\tif (styleEntries.length === 0) {\n\t\tconst close = original.lastIndexOf(\"}\");\n\t\tconst separator = original.slice(1, close).trim() ? \", \" : \" \";\n\t\tconst position = propsSpan.start + close;\n\t\treturn [{\n\t\t\tstart: position,\n\t\t\tend: position,\n\t\t\tcontent: `${separator}${replacement} `,\n\t\t\torigin: propsSpan\n\t\t}];\n\t}\n\tconst edits = [];\n\tfor (const [index, entry] of styleEntries.entries()) {\n\t\tlet start = entry.span.start;\n\t\tlet end = entry.span.end;\n\t\tif (index === 0) {\n\t\t\tedits.push({\n\t\t\t\tstart,\n\t\t\t\tend,\n\t\t\t\tcontent: replacement,\n\t\t\t\torigin: entry.span\n\t\t\t});\n\t\t\tcontinue;\n\t\t}\n\t\tlet cursor = end - propsSpan.start;\n\t\twhile (cursor < original.length - 1 && /\\s/.test(original[cursor])) cursor++;\n\t\tif (original[cursor] === \",\") end = propsSpan.start + cursor + 1;\n\t\telse {\n\t\t\tcursor = start - propsSpan.start - 1;\n\t\t\twhile (cursor > 0 && /\\s/.test(original[cursor])) cursor--;\n\t\t\tif (original[cursor] === \",\") start = propsSpan.start + cursor;\n\t\t}\n\t\tedits.push({\n\t\t\tstart,\n\t\t\tend,\n\t\t\tcontent: \"\",\n\t\t\torigin: entry.span\n\t\t});\n\t}\n\tconst merged = [];\n\tfor (const edit of edits.sort((left, right) => left.start - right.start)) {\n\t\tconst previous = merged.at(-1);\n\t\tif (previous && edit.start <= previous.end && !previous.content && !edit.content) previous.end = Math.max(previous.end, edit.end);\n\t\telse merged.push(edit);\n\t}\n\treturn merged;\n}\nconst compilerStyleProps = /* @__PURE__ */ new Set([\n\t\"className\",\n\t\"style\",\n\t\"group\",\n\t\"transition\",\n\t\"animation\",\n\t\"animateOnly\",\n\t\"animatePresence\",\n\t\"animatedBy\",\n\t\"fontFamily\",\n\t\"render\"\n]);\nconst runtimeAnimationProps = /* @__PURE__ */ new Set([\n\t\"transition\",\n\t\"animation\",\n\t\"animateOnly\",\n\t\"animatePresence\",\n\t\"animatedBy\"\n]);\nconst cssShorthandConflicts = {\n\tbackground: [\n\t\t\"backgroundAttachment\",\n\t\t\"backgroundBlendMode\",\n\t\t\"backgroundClip\",\n\t\t\"backgroundColor\",\n\t\t\"backgroundImage\",\n\t\t\"backgroundOrigin\",\n\t\t\"backgroundPosition\",\n\t\t\"backgroundRepeat\",\n\t\t\"backgroundSize\"\n\t],\n\tborder: [\n\t\t\"borderTop\",\n\t\t\"borderTopColor\",\n\t\t\"borderTopStyle\",\n\t\t\"borderTopWidth\",\n\t\t\"borderRight\",\n\t\t\"borderRightColor\",\n\t\t\"borderRightStyle\",\n\t\t\"borderRightWidth\",\n\t\t\"borderBottom\",\n\t\t\"borderBottomColor\",\n\t\t\"borderBottomStyle\",\n\t\t\"borderBottomWidth\",\n\t\t\"borderLeft\",\n\t\t\"borderLeftColor\",\n\t\t\"borderLeftStyle\",\n\t\t\"borderLeftWidth\",\n\t\t\"borderColor\",\n\t\t\"borderStyle\",\n\t\t\"borderWidth\",\n\t\t\"borderImage\",\n\t\t\"borderImageOutset\",\n\t\t\"borderImageRepeat\",\n\t\t\"borderImageSlice\",\n\t\t\"borderImageSource\",\n\t\t\"borderImageWidth\",\n\t\t\"borderInlineColor\",\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderInlineStyle\",\n\t\t\"borderInlineWidth\"\n\t],\n\tborderTop: [\n\t\t\"borderTopColor\",\n\t\t\"borderTopStyle\",\n\t\t\"borderTopWidth\"\n\t],\n\tborderRight: [\n\t\t\"borderRightColor\",\n\t\t\"borderRightStyle\",\n\t\t\"borderRightWidth\",\n\t\t\"borderInlineColor\",\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderInlineStyle\",\n\t\t\"borderInlineWidth\"\n\t],\n\tborderBottom: [\n\t\t\"borderBottomColor\",\n\t\t\"borderBottomStyle\",\n\t\t\"borderBottomWidth\"\n\t],\n\tborderLeft: [\n\t\t\"borderLeftColor\",\n\t\t\"borderLeftStyle\",\n\t\t\"borderLeftWidth\",\n\t\t\"borderInlineColor\",\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderInlineStyle\",\n\t\t\"borderInlineWidth\"\n\t],\n\tborderImage: [\n\t\t\"borderImageOutset\",\n\t\t\"borderImageRepeat\",\n\t\t\"borderImageSlice\",\n\t\t\"borderImageSource\",\n\t\t\"borderImageWidth\"\n\t],\n\toutline: [\n\t\t\"outlineColor\",\n\t\t\"outlineStyle\",\n\t\t\"outlineWidth\"\n\t],\n\tgap: [\"columnGap\", \"rowGap\"],\n\tgridColumn: [\"gridColumnEnd\", \"gridColumnStart\"],\n\tgridRow: [\"gridRowEnd\", \"gridRowStart\"],\n\tmarginInline: [\n\t\t\"marginInlineEnd\",\n\t\t\"marginInlineStart\",\n\t\t\"marginEnd\",\n\t\t\"marginStart\",\n\t\t\"marginLeft\",\n\t\t\"marginRight\"\n\t],\n\tpaddingInline: [\n\t\t\"paddingInlineEnd\",\n\t\t\"paddingInlineStart\",\n\t\t\"paddingEnd\",\n\t\t\"paddingStart\",\n\t\t\"paddingLeft\",\n\t\t\"paddingRight\"\n\t],\n\tinsetInline: [\n\t\t\"insetInlineEnd\",\n\t\t\"insetInlineStart\",\n\t\t\"end\",\n\t\t\"start\",\n\t\t\"left\",\n\t\t\"right\"\n\t],\n\tborderInlineColor: [\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderEndColor\",\n\t\t\"borderStartColor\",\n\t\t\"borderLeftColor\",\n\t\t\"borderRightColor\"\n\t],\n\tborderInlineStyle: [\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderEndStyle\",\n\t\t\"borderStartStyle\",\n\t\t\"borderLeftStyle\",\n\t\t\"borderRightStyle\"\n\t],\n\tborderInlineWidth: [\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderEndWidth\",\n\t\t\"borderStartWidth\",\n\t\t\"borderLeftWidth\",\n\t\t\"borderRightWidth\"\n\t],\n\tmask: [\n\t\t\"maskBorder\",\n\t\t\"maskBorderMode\",\n\t\t\"maskBorderOutset\",\n\t\t\"maskBorderRepeat\",\n\t\t\"maskBorderSlice\",\n\t\t\"maskBorderSource\",\n\t\t\"maskBorderWidth\",\n\t\t\"maskClip\",\n\t\t\"maskComposite\",\n\t\t\"maskImage\",\n\t\t\"maskMode\",\n\t\t\"maskOrigin\",\n\t\t\"maskPosition\",\n\t\t\"maskRepeat\",\n\t\t\"maskSize\"\n\t],\n\tmaskBorder: [\n\t\t\"maskBorderMode\",\n\t\t\"maskBorderOutset\",\n\t\t\"maskBorderRepeat\",\n\t\t\"maskBorderSlice\",\n\t\t\"maskBorderSource\",\n\t\t\"maskBorderWidth\"\n\t]\n};\nconst cssConflictFamilies = [\n\t/* @__PURE__ */ new Set([\n\t\t\"marginInline\",\n\t\t\"marginInlineEnd\",\n\t\t\"marginInlineStart\",\n\t\t\"marginEnd\",\n\t\t\"marginStart\",\n\t\t\"marginLeft\",\n\t\t\"marginRight\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"paddingInline\",\n\t\t\"paddingInlineEnd\",\n\t\t\"paddingInlineStart\",\n\t\t\"paddingEnd\",\n\t\t\"paddingStart\",\n\t\t\"paddingLeft\",\n\t\t\"paddingRight\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"insetInline\",\n\t\t\"insetInlineEnd\",\n\t\t\"insetInlineStart\",\n\t\t\"end\",\n\t\t\"start\",\n\t\t\"left\",\n\t\t\"right\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"borderInlineColor\",\n\t\t\"borderInlineEndColor\",\n\t\t\"borderInlineStartColor\",\n\t\t\"borderEndColor\",\n\t\t\"borderStartColor\",\n\t\t\"borderLeftColor\",\n\t\t\"borderRightColor\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"borderInlineStyle\",\n\t\t\"borderInlineEndStyle\",\n\t\t\"borderInlineStartStyle\",\n\t\t\"borderEndStyle\",\n\t\t\"borderStartStyle\",\n\t\t\"borderLeftStyle\",\n\t\t\"borderRightStyle\"\n\t]),\n\t/* @__PURE__ */ new Set([\n\t\t\"borderInlineWidth\",\n\t\t\"borderInlineEndWidth\",\n\t\t\"borderInlineStartWidth\",\n\t\t\"borderEndWidth\",\n\t\t\"borderStartWidth\",\n\t\t\"borderLeftWidth\",\n\t\t\"borderRightWidth\"\n\t])\n];\nfunction cssOwnersConflict(left, right) {\n\tfor (const leftOwner of left) for (const rightOwner of right) if (leftOwner === rightOwner || cssShorthandConflicts[leftOwner]?.includes(rightOwner) || cssShorthandConflicts[rightOwner]?.includes(leftOwner) || cssConflictFamilies.some((family) => family.has(leftOwner) && family.has(rightOwner))) return true;\n\treturn false;\n}\nconst runtimeEventProps = /* @__PURE__ */ new Set([\n\t\"onHoverIn\",\n\t\"onHoverOut\",\n\t\"onLongPress\",\n\t\"onPress\",\n\t\"onPressIn\",\n\t\"onPressOut\"\n]);\nconst DOM_STYLE_ATTRIBUTES = new Map(Object.entries(ATTRIBUTES).filter(([name, row]) => row.native !== \"none\" && row.nativeProp && row.nativeProp !== name && row.nativeProp in stylePropsText).map(([name, row]) => [name, row.nativeProp]));\nconst nativePointerEventProps = /* @__PURE__ */ new Set([\n\t\"onPointerCancel\",\n\t\"onPointerDown\",\n\t\"onPointerEnter\",\n\t\"onPointerLeave\",\n\t\"onPointerMove\",\n\t\"onPointerUp\"\n]);\nfunction isSerializableNativeStyle(value) {\n\tif (value == null || typeof value === \"number\" || typeof value === \"boolean\") return true;\n\tif (typeof value === \"string\") return true;\n\tif (Array.isArray(value)) return value.every(isSerializableNativeStyle);\n\tif (!staticObject(value)) return false;\n\tconst prototype = Object.getPrototypeOf(value);\n\tif (prototype !== Object.prototype && prototype !== null) return false;\n\treturn Object.values(value).every(isSerializableNativeStyle);\n}\nfunction unusedIdentifier(source, base) {\n\tlet candidate = base;\n\tlet suffix = 0;\n\twhile (new RegExp(`\\\\b${candidate}\\\\b`).test(source)) candidate = `${base}${++suffix}`;\n\treturn candidate;\n}\nconst VIEW_WRAPPER_PROPS = /^(aria-|accessibilityState$|accessibilityValue$|id$|tabIndex$|nativeID$)/;\nfunction isBareHostView(element) {\n\treturn !element.entries.some((entry) => entry.kind === \"child\" || entry.kind === \"spread\" || entry.kind === \"prop\" && VIEW_WRAPPER_PROPS.test(entry.name));\n}\nfunction entrySource(input, entry) {\n\treturn entry.value.kind === \"static\" ? JSON.stringify(entry.value.value) : input.source.slice(entry.value.span.start, entry.value.span.end);\n}\nfunction renamedPropEdit(input, entry, name) {\n\tif (entry.name === name) return null;\n\tconst content = input.source.slice(entry.span.start, entry.span.end);\n\tconst offset = content.indexOf(entry.name);\n\tif (offset === -1) return null;\n\tconst quoted = content[offset - 1] === \"\\\"\" || content[offset - 1] === \"'\";\n\treturn {\n\t\tstart: entry.span.start + offset,\n\t\tend: entry.span.start + offset + entry.name.length,\n\t\tcontent: input.element.form === \"jsx\" || quoted ? name : JSON.stringify(name),\n\t\torigin: entry.span\n\t};\n}\nfunction serializedProps(form, props) {\n\treturn props.map(([name, value]) => form === \"jsx\" ? `${name}={${value}}` : `${JSON.stringify(name)}: ${value}`).join(form === \"jsx\" ? \" \" : \", \");\n}\nfunction nativeDOMProps(input, tag) {\n\tconst consumed = [];\n\tconst edits = [];\n\tconst additions = [];\n\tconst nested = /* @__PURE__ */ new Map();\n\tconst entries = input.element.entries.filter((entry) => entry.kind === \"prop\");\n\tconst names = new Set(entries.map((entry) => entry.name));\n\tif (names.has(\"ref\") || tag === \"br\") additions.push([\"__tag\", JSON.stringify(tag)]);\n\tif (TAGS[tag].backing === \"text\" || TAGS[tag].backing === \"textinput\") additions.push([\"__inherit\", \"true\"]);\n\tconst add = (name, value) => additions.push([name, value]);\n\tconst consume = (entry) => consumed.push(entry);\n\tfor (const entry of entries) {\n\t\tconst value = entrySource(input, entry);\n\t\tconst attribute = (Object.hasOwn(ATTRIBUTES, entry.name) ? ATTRIBUTES[entry.name] : void 0) ?? (entry.name.startsWith(\"data-\") ? ATTRIBUTES[\"data-*\"] : void 0);\n\t\tconst event = Object.hasOwn(EVENTS, entry.name) ? EVENTS[entry.name] : void 0;\n\t\tif (event) {\n\t\t\tif (event.native === \"none\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `${entry.name} has no native DOM event equivalent`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tif (entry.name === \"onKeyDown\" && tag !== \"input\" && tag !== \"textarea\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `onKeyDown requires a native text-entry control`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tif ([\n\t\t\t\t\"onClick\",\n\t\t\t\t\"onLoad\",\n\t\t\t\t\"onError\",\n\t\t\t\t\"onChange\",\n\t\t\t\t\"onInput\",\n\t\t\t\t\"onKeyDown\"\n\t\t\t].includes(entry.name)) continue;\n\t\t\tif (event.nativeProp) {\n\t\t\t\tconst edit2 = renamedPropEdit(input, entry, event.nativeProp);\n\t\t\t\tif (edit2) edits.push(edit2);\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\t\tif (!attribute || attribute.native === \"none\" || entry.name === \"style\") continue;\n\t\tif (DOM_STYLE_ATTRIBUTES.has(entry.name)) {\n\t\t\tif (entry.value.kind !== \"static\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `html.${tag} ${entry.name} must be statically known for native lowering`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tconsume(entry);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"hidden\") {\n\t\t\tif (entry.value.kind !== \"static\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `html.${tag} hidden must be statically known for native lowering`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tconsume(entry);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"tabIndex\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"focusable\", `(${value}) === 0`);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"readOnly\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"editable\", `!(${value})`);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"disabled\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"disabled\", value);\n\t\t\tadd(\"focusable\", `!(${value})`);\n\t\t\tif (tag === \"input\" || tag === \"textarea\") add(\"editable\", `!(${value})`);\n\t\t\tconst state = nested.get(\"accessibilityState\") ?? [];\n\t\t\tstate.push([\"disabled\", value]);\n\t\t\tnested.set(\"accessibilityState\", state);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"type\") {\n\t\t\tconsume(entry);\n\t\t\tif (tag === \"input\" && entry.value.kind !== \"static\") return {\n\t\t\t\tconsumed,\n\t\t\t\tedits,\n\t\t\t\tadditions,\n\t\t\t\tdiagnostic: `html.input type must be statically known for native lowering`,\n\t\t\t\tdiagnosticSpan: entry.span\n\t\t\t};\n\t\t\tif (tag === \"input\" && entry.value.kind === \"static\") {\n\t\t\t\tconst type = entry.value.value;\n\t\t\t\tif (type === \"password\") add(\"secureTextEntry\", \"true\");\n\t\t\t\telse if (typeof type === \"string\" && type !== \"text\" && NATIVE_INPUT_TYPES.includes(type)) {\n\t\t\t\t\tif (!names.has(\"inputMode\")) add(\"inputMode\", JSON.stringify(type === \"number\" ? \"numeric\" : type));\n\t\t\t\t}\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"aria-hidden\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"accessibilityElementsHidden\", value);\n\t\t\tadd(\"importantForAccessibility\", `(${value}) ? \"no-hide-descendants\" : \"auto\"`);\n\t\t\tcontinue;\n\t\t}\n\t\tif (entry.name === \"aria-live\") {\n\t\t\tconsume(entry);\n\t\t\tadd(\"accessibilityLiveRegion\", entry.value.kind === \"static\" && entry.value.value === \"off\" ? \"\\\"none\\\"\" : value);\n\t\t\tcontinue;\n\t\t}\n\t\tconst nativeProp = attribute.nativeProp;\n\t\tif (!nativeProp) continue;\n\t\tif (nativeProp.includes(\".\")) {\n\t\t\tconsume(entry);\n\t\t\tconst [parent, child] = nativeProp.split(\".\");\n\t\t\tconst values = nested.get(parent) ?? [];\n\t\t\tvalues.push([child, value]);\n\t\t\tnested.set(parent, values);\n\t\t\tcontinue;\n\t\t}\n\t\tconst edit = renamedPropEdit(input, entry, nativeProp);\n\t\tif (edit) edits.push(edit);\n\t}\n\tfor (const [name, values] of nested) add(name, `{ ${values.map(([key, value]) => `${key}: ${value}`).join(\", \")} }`);\n\tif (!names.has(\"role\") && TAGS[tag].role) add(\"role\", JSON.stringify(TAGS[tag].role));\n\tif (tag === \"textarea\") add(\"multiline\", \"true\");\n\treturn {\n\t\tconsumed,\n\t\tedits,\n\t\tadditions\n\t};\n}\nfunction webDOMProps(input, tag) {\n\tconst edits = [];\n\tconst additions = [];\n\tconst entries = input.element.entries.filter((entry) => entry.kind === \"prop\");\n\tconst names = new Set(entries.map((entry) => entry.name));\n\tfor (const entry of entries) {\n\t\tif (entry.name === \"for\") {\n\t\t\tconst edit = renamedPropEdit(input, entry, \"htmlFor\");\n\t\t\tif (edit) edits.push(edit);\n\t\t}\n\t\tif (entry.name === \"role\" && entry.value.kind === \"static\" && entry.value.value === \"none\") edits.push({\n\t\t\tstart: entry.value.span.start,\n\t\t\tend: entry.value.span.end,\n\t\t\tcontent: JSON.stringify(\"presentation\"),\n\t\t\torigin: entry.value.span\n\t\t});\n\t}\n\tif (tag === \"button\" && !names.has(\"type\")) additions.push([\"type\", \"\\\"button\\\"\"]);\n\tif ((tag === \"input\" || tag === \"textarea\") && !names.has(\"dir\")) additions.push([\"dir\", \"\\\"auto\\\"\"]);\n\treturn {\n\t\tedits,\n\t\tadditions\n\t};\n}\nfunction createTamaguiCompilerHost(options) {\n\tconst platform = options.target === \"native\" ? \"native\" : \"web\";\n\tconst core = requireTamaguiCore(platform);\n\tconst firstThemeName = Object.keys(options.tamaguiConfig.themes ?? {})[0] ?? \"\";\n\tconst theme = options.tamaguiConfig.themes?.[firstThemeName] ?? {};\n\tconst modifierRegistry = createModifierRegistry({\n\t\tmediaNames: options.tamaguiConfig.media ?? {},\n\t\tthemeNames: options.tamaguiConfig.themes ?? {}\n\t}).registry;\n\tconst configuredAnimationDriver = options.tamaguiConfig.animations;\n\tconst configuredCssAnimationDriver = platform === \"web\" && configuredAnimationDriver?.outputStyle === \"css\" && !options.tamaguiConfig.animationDrivers ? configuredAnimationDriver : null;\n\tconst resolveStaticCssTransition = (value, transitionPresets) => {\n\t\tif (platform !== \"web\" || typeof value !== \"string\") return null;\n\t\tconst transitionPresetNames = new Set(Object.keys(transitionPresets));\n\t\tconst program = parseValue(value, modifierRegistry);\n\t\tif (!program.ok) return null;\n\t\tconst resolvedPayloads = [];\n\t\tconst payloads = [program.value.base, ...program.value.clauses.map((clause) => clause.payload)].filter((payload) => payload !== null);\n\t\tif (payloads.length === 0) return null;\n\t\tfor (const payload of payloads) {\n\t\t\tconst transition = parseTransition(payload, transitionPresetNames);\n\t\t\tif (!transition.ok) return null;\n\t\t\tif (transition.value.kind === \"global\" || transition.value.entries.every((entry) => entry.timing.type === \"css\")) {\n\t\t\t\tresolvedPayloads.push(payload);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif (transition.value.entries.length !== 1 || transition.value.entries[0].timing.type !== \"preset\") return null;\n\t\t\tconst preset = transitionPresets[transition.value.entries[0].timing.name];\n\t\t\tif (typeof preset !== \"string\") return null;\n\t\t\tconst parsedPreset = parseTransition(preset);\n\t\t\tif (!parsedPreset.ok || parsedPreset.value.kind !== \"transition\" || parsedPreset.value.entries.length !== 1 || parsedPreset.value.entries[0].property !== \"all\" || parsedPreset.value.entries[0].timing.type !== \"css\") return null;\n\t\t\tresolvedPayloads.push(`all ${preset}`);\n\t\t}\n\t\tlet payloadIndex = 0;\n\t\tconst resolved = [];\n\t\tif (program.value.base !== null) resolved.push(resolvedPayloads[payloadIndex++]);\n\t\tfor (const clause of program.value.clauses) resolved.push(`${clause.modifiers.join(\":\")}:${resolvedPayloads[payloadIndex++]}`);\n\t\treturn resolved.join(\" \");\n\t};\n\tconst modulesById = new Map(options.componentModules.map((module) => [module.resolvedId, module.moduleName]));\n\tconst componentsByModule = new Map(options.components.map((component) => [component.moduleName, component]));\n\tconst normalizeStaticConfig = (staticConfig) => staticConfig.styleFrontend?.normalizeStaticConfig?.(staticConfig, options.tamaguiConfig) ?? staticConfig;\n\tconst directStaticConfig = (element) => {\n\t\tconst identity = element.component.provenance;\n\t\tif (!identity) return null;\n\t\tconst moduleName = modulesById.get(identity.resolvedId);\n\t\tconst info = (moduleName ? componentsByModule.get(moduleName) : void 0)?.nameToInfo[identity.importedName];\n\t\treturn info ? {\n\t\t\tkey: componentKey(identity.resolvedId, identity.importedName),\n\t\t\tstaticConfig: normalizeStaticConfig(info.staticConfig),\n\t\t\tdisplayName: info.displayName\n\t\t} : null;\n\t};\n\tconst domStaticConfig = (element) => {\n\t\tconst identity = element.component.provenance;\n\t\tconst tag = element.component.name;\n\t\tif (identity?.importedName !== \"html\" || !DOM_FRONTENDS.has(identity.specifier) || !Object.hasOwn(TAGS, tag)) return null;\n\t\tconst row = TAGS[tag];\n\t\tconst base = (row.backing === \"text\" || row.backing === \"textinput\" ? core.Text : core.View)?.staticConfig;\n\t\tif (!base) return null;\n\t\tconst platformDefaults = platform === \"web\" ? {\n\t\t\t...DISPLAY_WEB_RESET[row.display],\n\t\t\t...row.defaults,\n\t\t\t...TAG_WEB_DEFAULTS[tag]\n\t\t} : {\n\t\t\t...NATIVE_ELEMENT_DEFAULTS,\n\t\t\t...row.display === \"block\" ? NATIVE_BLOCK_DEFAULTS : null,\n\t\t\t...row.defaults,\n\t\t\t...row.nativeDefaults\n\t\t};\n\t\treturn {\n\t\t\tkey: componentKey(identity.resolvedId, `html.${tag}`),\n\t\t\ttag,\n\t\t\tdisplayName: tag,\n\t\t\tstaticConfig: normalizeStaticConfig({\n\t\t\t\t...base,\n\t\t\t\tisInput: row.backing === \"textinput\",\n\t\t\t\tvalidStyles: {\n\t\t\t\t\t...validStyles,\n\t\t\t\t\t...stylePropsText\n\t\t\t\t},\n\t\t\t\tdefaultProps: {\n\t\t\t\t\t...base.defaultProps,\n\t\t\t\t\t...platformDefaults\n\t\t\t\t}\n\t\t\t})\n\t\t};\n\t};\n\tconst styledStaticConfig = (definition) => {\n\t\tif (!definition || definition.options.kind !== \"static\") return null;\n\t\tconst base = directStaticConfig({\n\t\t\tkind: \"element\",\n\t\t\tform: \"jsx\",\n\t\t\tid: definition.id,\n\t\t\tspan: definition.span,\n\t\t\tpropsSpan: null,\n\t\t\tcomponent: definition.base,\n\t\t\tcomplete: true,\n\t\t\tentries: [],\n\t\t\tbailouts: []\n\t\t});\n\t\tif (!base || !staticObject(definition.options.value)) return null;\n\t\tconst { variants, defaultVariants, compoundVariants, displayName, context, contextProps, ...defaultProps } = definition.options.value;\n\t\tconst baseClassName = definition.baseClassName?.kind === \"static\" && typeof definition.baseClassName.value === \"string\" ? definition.baseClassName.value : void 0;\n\t\treturn {\n\t\t\tkey: componentKey(definition.id, definition.name),\n\t\t\tdisplayName: displayName || base.displayName,\n\t\t\tstaticConfig: normalizeStaticConfig({\n\t\t\t\t...base.staticConfig,\n\t\t\t\tvariants: {\n\t\t\t\t\t...base.staticConfig.variants,\n\t\t\t\t\t...variants\n\t\t\t\t},\n\t\t\t\tcompoundVariants: [...base.staticConfig.compoundVariants ?? [], ...compoundVariants ?? []],\n\t\t\t\tdefaultProps: {\n\t\t\t\t\t...base.staticConfig.defaultProps,\n\t\t\t\t\t...defaultProps,\n\t\t\t\t\t...defaultVariants\n\t\t\t\t},\n\t\t\t\tdefaultVariants,\n\t\t\t\tbaseClassName: [base.staticConfig.baseClassName, baseClassName].filter(Boolean).join(\" \"),\n\t\t\t\tcontext: context ?? base.staticConfig.context,\n\t\t\t\tcontextProps: context ? contextProps : contextProps ?? base.staticConfig.contextProps\n\t\t\t})\n\t\t};\n\t};\n\tconst resolve = (element, styledDefinition) => {\n\t\tconst dom = domStaticConfig(element);\n\t\tconst resolved = dom ?? styledStaticConfig(styledDefinition) ?? directStaticConfig(element);\n\t\tif (!resolved) return null;\n\t\tconst defaultProps = core.getDefaultProps(resolved.staticConfig) ?? {};\n\t\treturn {\n\t\t\tkey: resolved.key,\n\t\t\tcanFlatten: resolved.staticConfig.acceptsClassName !== false && !resolved.staticConfig.neverFlatten && !resolved.staticConfig.context,\n\t\t\tstaticConfig: resolved.staticConfig,\n\t\t\tdisplayName: resolved.displayName,\n\t\t\t...dom && { domTag: dom.tag },\n\t\t\tpartialRuntimeSafe: !dom && !styledDefinition && Object.keys(defaultProps).length === 0 && !resolved.staticConfig.defaultVariants && !resolved.staticConfig.baseClassName && !resolved.staticConfig.baseStyle && (resolved.staticConfig.compoundVariants?.length ?? 0) === 0\n\t\t};\n\t};\n\tconst isStyleProp = (name, component) => {\n\t\tconst staticConfig = component.staticConfig;\n\t\treturn compilerStyleProps.has(name) || name in (options.tamaguiConfig.shorthands ?? {}) || !!staticConfig.validStyles?.[name] || !!staticConfig.variants?.[name];\n\t};\n\tconst runtimeOnlyStyleProps = /* @__PURE__ */ new Set([\n\t\t\"className\",\n\t\t\"style\",\n\t\t\"group\",\n\t\t\"transition\",\n\t\t\"animation\",\n\t\t\"animateOnly\",\n\t\t\"animatePresence\",\n\t\t\"animatedBy\",\n\t\t\"render\"\n\t]);\n\tconst canLowerConditionalStyleProp = (name, component) => isStyleProp(name, component) && !runtimeOnlyStyleProps.has(name);\n\tconst isInvalidHostStyleProp = (name, component) => {\n\t\tconst staticConfig = component.staticConfig;\n\t\tconst validStyles$1 = staticConfig.validStyles || (staticConfig.isText || staticConfig.isInput ? stylePropsText : validStyles);\n\t\treturn name in stylePropsAll && !isValidStyleKey(name, validStyles$1, staticConfig.accept);\n\t};\n\tconst directStyleName = (name, component) => {\n\t\tif (compilerStyleProps.has(name) || name === \"style\") return null;\n\t\tconst staticConfig = component.staticConfig;\n\t\tif (staticConfig.variants?.[name]) return null;\n\t\tconst expanded = options.tamaguiConfig.shorthands?.[name] ?? name;\n\t\treturn staticConfig.validStyles?.[expanded] ? expanded : null;\n\t};\n\tconst resolveSplitStyles = (props, staticConfig, animationDriver, displayName) => {\n\t\tconst previousStatic = process.env.IS_STATIC;\n\t\tconst previousTarget = \"web\";\n\t\tif (platform === \"native\") process.env.IS_STATIC = \"is_static\";\n\t\telse delete process.env.IS_STATIC;\n\t\tprocess.env.TAMAGUI_TARGET = platform;\n\t\ttry {\n\t\t\treturn core.getSplitStyles(props, staticConfig, theme, firstThemeName, componentState, {\n\t\t\t\tresolveValues: platform === \"native\" ? \"except-theme\" : \"variable\",\n\t\t\t\tnoClass: platform === \"native\",\n\t\t\t\tisAnimated: false,\n\t\t\t\tdisplayName\n\t\t\t}, void 0, void 0, void 0, void 0, void 0, void 0, animationDriver);\n\t\t} finally {\n\t\t\tif (previousStatic === void 0) delete process.env.IS_STATIC;\n\t\t\telse process.env.IS_STATIC = previousStatic;\n\t\t\tif (previousTarget === void 0) delete \"web\";\n\t\t\telse process.env.TAMAGUI_TARGET = previousTarget;\n\t\t}\n\t};\n\tconst partialStaticConfig = (staticConfig) => ({\n\t\t...staticConfig,\n\t\tbaseStyle: void 0,\n\t\tdefaultProps: {},\n\t\tdefaultVariants: void 0,\n\t\tcompoundVariants: [],\n\t\tvariants: {}\n\t});\n\tconst styleOwners = (name, value, staticConfig) => {\n\t\tconst split = resolveSplitStyles({ [name]: value }, partialStaticConfig(staticConfig));\n\t\tif (!split) return null;\n\t\tconst inlineStyle = split.viewProps?.style;\n\t\tif (staticObject(inlineStyle) && !inlineStyle[\"$$css\"] && Object.keys(inlineStyle).length > 0) return null;\n\t\tconst owners = new Set(Object.keys(split.classNames ?? {}));\n\t\tfor (const styleObject of Object.values(split.rulesToInsert ?? {})) {\n\t\t\tconst property = styleObject?.[StyleObjectProperty];\n\t\t\tif (typeof property === \"string\") owners.add(property);\n\t\t}\n\t\treturn owners.size > 0 ? owners : null;\n\t};\n\tconst dynamicStyleOwners = (name, staticConfig) => {\n\t\tconst owners = styleOwners(name, name === \"transform\" ? [{ scale: 1 }] : name === \"transformMatrix\" ? [\n\t\t\t1,\n\t\t\t0,\n\t\t\t0,\n\t\t\t1,\n\t\t\t0,\n\t\t\t0\n\t\t] : name === \"shadowOffset\" ? {\n\t\t\twidth: 0,\n\t\t\theight: 0\n\t\t} : name === \"shadowColor\" ? \"black\" : name === \"border\" || name === \"outline\" ? \"0 solid transparent\" : name === \"position\" ? \"relative\" : name === \"objectFit\" ? \"contain\" : 0, staticConfig);\n\t\tif (!owners || name !== \"flex\") return owners;\n\t\tconst shorthandOwners = styleOwners(name, \"0 1 auto\", staticConfig);\n\t\tif (!shorthandOwners) return null;\n\t\tfor (const owner of shorthandOwners) owners.add(owner);\n\t\treturn owners;\n\t};\n\tconst developmentDebugInstrumentation = (input, result) => {\n\t\tif (process.env.NODE_ENV !== \"development\") return;\n\t\tconst debugEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"debug\" && entry.value.kind === \"static\" && entry.value.value === \"verbose\");\n\t\tif (!debugEntry) return;\n\t\tconst component = input.component;\n\t\tconst styleEntries = input.element.entries.filter((entry) => entry.kind === \"prop\" && entry.name !== \"debug\" && (entry.name === \"style\" || isStyleProp(entry.name, component)));\n\t\tconst flattened = result.ok && !!result.flattened;\n\t\tconst tiers = result.ok ? [\n\t\t\t\"lowered\",\n\t\t\t...flattened ? [\"flattened\"] : [],\n\t\t\t...input.styledDefinition ? [\"styled\"] : []\n\t\t] : [\"bailed\"];\n\t\tconst why = result.ok ? flattened ? \"Static styles were lowered and the component was flattened to a host element.\" : \"Static styles were lowered while the Tamagui component remained at runtime.\" : result.bailout.message;\n\t\tconst styles = styleEntries.map((entry) => {\n\t\t\tif (!result.ok) return {\n\t\t\t\tprop: entry.name,\n\t\t\t\ttier: \"bailed\",\n\t\t\t\truntime: true,\n\t\t\t\twhy: `${result.bailout.message}. The Tamagui runtime resolved this prop.`\n\t\t\t};\n\t\t\tconst edited = result.edits.some((edit) => edit.start < entry.span.end && edit.end > entry.span.start);\n\t\t\tif (!flattened && !edited) return {\n\t\t\t\tprop: entry.name,\n\t\t\t\ttier: \"bailed\",\n\t\t\t\truntime: true,\n\t\t\t\twhy: \"This prop remained for Tamagui runtime resolution.\"\n\t\t\t};\n\t\t\tif (entry.value.kind === \"static\") {\n\t\t\t\tconst split = resolveSplitStyles({ [entry.name]: entry.value.value }, partialStaticConfig(component.staticConfig));\n\t\t\t\tif (!Boolean(split && (Object.keys(split.classNames ?? {}).length > 0 || Object.keys(split.rulesToInsert ?? {}).length > 0 || staticObject(split.style) && Object.keys(split.style).length > 0 || staticObject(split.viewProps?.style) && Object.keys(split.viewProps.style).length > 0))) return {\n\t\t\t\t\tprop: entry.name,\n\t\t\t\t\ttier: flattened ? \"flattened\" : \"lowered\",\n\t\t\t\t\tdropped: true,\n\t\t\t\t\twhy: `No ${platform} style output was produced for this prop.`\n\t\t\t\t};\n\t\t\t}\n\t\t\treturn {\n\t\t\t\tprop: entry.name,\n\t\t\t\ttier: flattened ? \"flattened\" : \"lowered\",\n\t\t\t\twhy: flattened ? \"The compiler emitted this prop on the flattened host element.\" : \"The compiler lowered this prop while retaining the Tamagui component.\"\n\t\t\t};\n\t\t});\n\t\tconst receipt = JSON.stringify({\n\t\t\tcomponent: input.element.component.name,\n\t\t\ttiers,\n\t\t\twhy,\n\t\t\tstyles\n\t\t});\n\t\tconst content = flattened ? input.element.form === \"jsx\" ? `{...(console.info('\\u{1F539} Tamagui style receipt', ${receipt}), {})}` : `...(console.info('\\u{1F539} Tamagui style receipt', ${receipt}), {})` : input.element.form === \"jsx\" ? `debug=\"verbose\" __tamaguiStyleDebugReceipt={${receipt}}` : `debug: \"verbose\", __tamaguiStyleDebugReceipt: ${receipt}`;\n\t\treturn [{\n\t\t\tstart: debugEntry.span.start,\n\t\t\tend: debugEntry.span.end,\n\t\t\tcontent,\n\t\t\torigin: debugEntry.span\n\t\t}];\n\t};\n\treturn {\n\t\tresolveComponent: resolve,\n\t\tisStyleProp,\n\t\tcanLowerDynamicStyleProp(name, component, valueKind) {\n\t\t\tif (!options.disablePartialExtraction && valueKind === \"conditional\" && canLowerConditionalStyleProp(name, component)) return true;\n\t\t\treturn !options.disablePartialExtraction && (platform === \"web\" && !!directStyleName(name, component) || platform === \"native\" && directStyleName(name, component) === \"opacity\");\n\t\t},\n\t\tdevelopmentDebugInstrumentation,\n\t\tlowerCandidate(input) {\n\t\t\tconst component = input.component;\n\t\t\tif (!component.canFlatten) return bailout(input, \"local/unsupported-target\", component.staticConfig.acceptsClassName === false ? `${component.key} does not accept className` : component.staticConfig.neverFlatten ? `${component.key} is never flattened (behavior HOC)` : `${component.key} provides a styled context`, input.element.span, { rule: 6 });\n\t\t\tif (options.zeroRuntime) {\n\t\t\t\tconst spread = input.element.entries.find((entry) => entry.kind === \"spread\");\n\t\t\t\tif (spread) return bailout(input, \"local/unsafe-style-spread\", \"Zero-runtime rejects prop spreads\", spread.span, {\n\t\t\t\t\trule: 1,\n\t\t\t\t\tmessage: zeroRuleMessage(1, { component: input.element.component.name })\n\t\t\t\t});\n\t\t\t}\n\t\t\tconst props = {};\n\t\t\tfor (const entry of input.element.entries) {\n\t\t\t\tif (entry.kind === \"child\" || entry.value.kind !== \"static\") continue;\n\t\t\t\tif (entry.kind === \"spread\") {\n\t\t\t\t\tif (!staticObject(entry.value.value)) return bailout(input, \"local/unsafe-style-spread\", \"Static spread did not materialize to an object\", entry.span);\n\t\t\t\t\tObject.assign(props, entry.value.value);\n\t\t\t\t} else props[entry.name] = entry.value.value;\n\t\t\t}\n\t\t\tconst disableOptimizationEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"disableOptimization\");\n\t\t\tif (disableOptimizationEntry || Object.hasOwn(props, \"disableOptimization\")) return bailout(input, \"local/unsupported-target\", \"disableOptimization keeps the component on the runtime path\", disableOptimizationEntry?.span);\n\t\t\tif (component.domTag && props.hidden) props.display = \"none\";\n\t\t\tif (component.domTag && platform === \"native\") {\n\t\t\t\tfor (const [name, styleKey] of DOM_STYLE_ATTRIBUTES) if (name in props) {\n\t\t\t\t\tprops[styleKey] = props[name];\n\t\t\t\t\tdelete props[name];\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (platform === \"native\" && component.domTag === \"input\" && typeof props.type === \"string\" && !NATIVE_INPUT_TYPES.includes(props.type)) return bailout(input, \"local/unsupported-target\", `input type ${props.type} has no native text-entry control`);\n\t\t\tconst dynamicStyleEntries = input.element.entries.filter((entry) => entry.kind === \"prop\" && (entry.value.kind === \"bailout\" || entry.value.kind === \"conditional\") && isStyleProp(entry.name, component));\n\t\t\t{\n\t\t\t\tconst needsRuntimeMapping = (name) => runtimeEventProps.has(name) || platform === \"native\" && !component.domTag && nativePointerEventProps.has(name);\n\t\t\t\tconst directRuntimeEvent = input.element.entries.find((entry) => entry.kind === \"prop\" && needsRuntimeMapping(entry.name));\n\t\t\t\tconst runtimeEvent = directRuntimeEvent?.kind === \"prop\" ? directRuntimeEvent.name : Object.keys(props).find(needsRuntimeMapping);\n\t\t\t\tif (runtimeEvent) return bailout(input, \"local/unsupported-target\", `${runtimeEvent} requires Tamagui runtime event mapping`);\n\t\t\t}\n\t\t\tconst animationDefaultProps = core.getDefaultProps(component.staticConfig) ?? {};\n\t\t\tconst animationProps = core.mergeProps(animationDefaultProps, props);\n\t\t\tconst animationNames = /* @__PURE__ */ new Set([...input.element.entries.flatMap((entry) => entry.kind === \"prop\" && runtimeAnimationProps.has(entry.name) ? [entry.name] : []), ...Object.keys(animationProps).filter((name) => runtimeAnimationProps.has(name) && animationProps[name] !== void 0)]);\n\t\t\tconst animateOnlyEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"animateOnly\");\n\t\t\tif (animationNames.has(\"animateOnly\")) return bailout(input, \"local/unsupported-target\", \"Animated candidates remain on the runtime path\", animateOnlyEntry?.span, {\n\t\t\t\trule: 5,\n\t\t\t\tmessage: zeroRuleMessage(5, { detail: animateOnlyEntry ? `animateOnly on ${input.element.component.name}` : `animateOnly in the styled() definition of ${input.element.component.name}` })\n\t\t\t});\n\t\t\tconst transitionEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"transition\");\n\t\t\tconst animatedBy = typeof animationProps.animatedBy === \"string\" ? animationProps.animatedBy.trim() : null;\n\t\t\tconst namedAnimationDriver = animatedBy === null ? null : options.tamaguiConfig.animationDrivers?.[animatedBy];\n\t\t\tconst cssAnimationDriver = (platform === \"web\" && namedAnimationDriver?.outputStyle === \"css\" ? namedAnimationDriver : null) ?? (animatedBy === null || animatedBy === \"default\" ? configuredCssAnimationDriver : null);\n\t\t\tconst resolvedCssTransition = animationNames.has(\"transition\") && cssAnimationDriver ? resolveStaticCssTransition(animationProps.transition, cssAnimationDriver.animations ?? {}) : null;\n\t\t\tif (resolvedCssTransition !== null) props.transition = resolvedCssTransition;\n\t\t\tconst animatedByNeedsRuntime = animationNames.has(\"animatedBy\") && !animationNames.has(\"transition\") && (dynamicStyleEntries.length > 0 || Object.keys(animationProps).some((name) => name !== \"animatedBy\" && (isStyleProp(name, component) && typeof animationProps[name] === \"string\" && animationProps[name].includes(\":\") || name === \"animationConfig\" || name === \"forceStyle\" || name === \"onTransition\")));\n\t\t\tconst runtimeAnimationRequired = animationNames.has(\"transition\") && resolvedCssTransition === null || [...animationNames].some((name) => name !== \"transition\" && name !== \"animatedBy\" && name !== \"animateOnly\") || animatedByNeedsRuntime;\n\t\t\tlet dynamicHostStyleProperties = null;\n\t\t\tif (platform === \"web\" && !options.disablePartialExtraction && (input.element.form === \"jsx\" || input.element.propsSpan !== null) && dynamicStyleEntries.length > 0 && !input.element.entries.some((entry) => entry.kind === \"spread\")) {\n\t\t\t\tconst seen = /* @__PURE__ */ new Set();\n\t\t\t\tconst properties = [];\n\t\t\t\tconst dynamicOwners = /* @__PURE__ */ new Set();\n\t\t\t\tfor (const entry of dynamicStyleEntries) {\n\t\t\t\t\tif (entry.kind !== \"prop\" || entry.value.kind !== \"bailout\" && entry.value.kind !== \"conditional\") continue;\n\t\t\t\t\tconst name = directStyleName(entry.name, component);\n\t\t\t\t\tif (!name || seen.has(name)) {\n\t\t\t\t\t\tproperties.length = 0;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tconst owners = dynamicStyleOwners(name, component.staticConfig);\n\t\t\t\t\tif (!owners) {\n\t\t\t\t\t\tproperties.length = 0;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tlet property = null;\n\t\t\t\t\tconst expression = input.source.slice(entry.value.span.start, entry.value.span.end);\n\t\t\t\t\tif (resolvedCssTransition !== null && (name === \"opacity\" || name === \"scale\")) property = name === \"opacity\" ? `opacity: (${expression})` : `transform: \"scale(\" + (${expression}) + \")\"`;\n\t\t\t\t\telse if (entry.value.kind === \"bailout\" && owners.size === 1 && owners.has(name)) {\n\t\t\t\t\t\tconst dynamic = entry.value.dynamic;\n\t\t\t\t\t\tif (dynamic?.type === \"number\") property = `${JSON.stringify(name)}: (${expression})`;\n\t\t\t\t\t\telse if (dynamic?.type === \"string\" && dynamic.values?.length) {\n\t\t\t\t\t\t\tlet valuesStayLiteral = true;\n\t\t\t\t\t\t\tfor (const value of dynamic.values) {\n\t\t\t\t\t\t\t\tconst split2 = resolveSplitStyles({ [entry.name]: value }, partialStaticConfig(component.staticConfig));\n\t\t\t\t\t\t\t\tconst atomics = Object.values(split2?.rulesToInsert ?? {});\n\t\t\t\t\t\t\t\tif (atomics.length !== 1 || atomics[0]?.[StyleObjectProperty] !== name || atomics[0]?.[StyleObjectValue] !== value) {\n\t\t\t\t\t\t\t\t\tvaluesStayLiteral = false;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (valuesStayLiteral) property = `${JSON.stringify(name)}: (${expression})`;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif (!property) {\n\t\t\t\t\t\tproperties.length = 0;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tseen.add(name);\n\t\t\t\t\tfor (const owner of owners) dynamicOwners.add(owner);\n\t\t\t\t\tproperties.push(property);\n\t\t\t\t}\n\t\t\t\tif (properties.length === dynamicStyleEntries.length && !input.element.entries.some((entry) => {\n\t\t\t\t\tif (entry.kind !== \"prop\" || entry.value.kind !== \"static\") return false;\n\t\t\t\t\tconst name = directStyleName(entry.name, component);\n\t\t\t\t\tif (!name) return false;\n\t\t\t\t\tconst owners = styleOwners(name, entry.value.value, component.staticConfig);\n\t\t\t\t\treturn !!owners && cssOwnersConflict(owners, dynamicOwners);\n\t\t\t\t})) dynamicHostStyleProperties = properties;\n\t\t\t}\n\t\t\tconst supportsWebConditionalClasses = platform === \"web\" && !options.disablePartialExtraction && (input.element.form === \"jsx\" || input.element.propsSpan !== null) && dynamicHostStyleProperties === null && dynamicStyleEntries.length === 1 && dynamicStyleEntries.every((entry) => entry.kind === \"prop\" && entry.value.kind === \"conditional\" && canLowerConditionalStyleProp(entry.name, component));\n\t\t\tif (\"theme\" in props || \"themeInverse\" in props) {\n\t\t\t\tconst themeProp = \"theme\" in props ? \"theme\" : \"themeInverse\";\n\t\t\t\treturn bailout(input, \"local/unsupported-target\", \"Theme boundary candidates remain on the runtime path\", input.element.span, {\n\t\t\t\t\trule: 4,\n\t\t\t\t\tmessage: zeroThemeBoundaryMessage(input.element.component.name, themeProp)\n\t\t\t\t});\n\t\t\t}\n\t\t\tconst asChildEntry = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"asChild\");\n\t\t\tif (asChildEntry || Object.hasOwn(props, \"asChild\")) return bailout(input, \"local/unsupported-target\", \"asChild renders a Slot, not a host view\", asChildEntry?.span);\n\t\t\tif (platform === \"native\" && (\"group\" in props || \"container\" in props || \"containerName\" in props || \"containerType\" in props)) return bailout(input, \"local/unsupported-target\", \"Native group containers remain on the runtime path\");\n\t\t\tif (runtimeAnimationRequired && !cssAnimationDriver) return bailout(input, \"local/unsupported-target\", \"Animated candidates remain on the runtime path\", transitionEntry?.span, {\n\t\t\t\trule: 5,\n\t\t\t\tmessage: zeroRuleMessage(5, { detail: `the animation configured on ${input.element.component.name}` })\n\t\t\t});\n\t\t\tif (platform === \"web\" && (dynamicStyleEntries.length > 0 || runtimeAnimationRequired) && dynamicHostStyleProperties === null && !supportsWebConditionalClasses && component.partialRuntimeSafe) {\n\t\t\t\tconst hasSpread = input.element.entries.some((entry) => entry.kind === \"spread\");\n\t\t\t\tconst unsupportedRuntimeStyle = input.element.entries.find((entry) => entry.kind === \"prop\" && isStyleProp(entry.name, component) && !runtimeAnimationProps.has(entry.name) && !directStyleName(entry.name, component));\n\t\t\t\tif (!hasSpread && !unsupportedRuntimeStyle) {\n\t\t\t\t\tconst dynamicOwners = /* @__PURE__ */ new Set();\n\t\t\t\t\tlet canProveDynamicOwnership = true;\n\t\t\t\t\tfor (const entry of dynamicStyleEntries) {\n\t\t\t\t\t\tif (entry.kind !== \"prop\") continue;\n\t\t\t\t\t\tconst name = directStyleName(entry.name, component);\n\t\t\t\t\t\tif (!name) {\n\t\t\t\t\t\t\tcanProveDynamicOwnership = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tconst owners = dynamicStyleOwners(name, component.staticConfig);\n\t\t\t\t\t\tif (!owners) {\n\t\t\t\t\t\t\tcanProveDynamicOwnership = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfor (const owner of owners) dynamicOwners.add(owner);\n\t\t\t\t\t}\n\t\t\t\t\tconst staticStyleEntries = canProveDynamicOwnership ? input.element.entries.filter((entry) => {\n\t\t\t\t\t\tif (entry.kind !== \"prop\" || entry.value.kind !== \"static\") return false;\n\t\t\t\t\t\tif (runtimeAnimationProps.has(entry.name)) return false;\n\t\t\t\t\t\tconst name = directStyleName(entry.name, component);\n\t\t\t\t\t\tif (!name) return false;\n\t\t\t\t\t\tconst owners = styleOwners(name, entry.value.value, component.staticConfig);\n\t\t\t\t\t\treturn !!owners && !cssOwnersConflict(owners, dynamicOwners);\n\t\t\t\t\t}) : [];\n\t\t\t\t\tif (staticStyleEntries.length > 0) {\n\t\t\t\t\t\tconst partialProps = {};\n\t\t\t\t\t\tfor (const entry of staticStyleEntries) if (entry.kind === \"prop\" && entry.value.kind === \"static\") partialProps[entry.name] = entry.value.value;\n\t\t\t\t\t\tconst partialSplit = resolveSplitStyles(partialProps, partialStaticConfig(component.staticConfig));\n\t\t\t\t\t\tconst partialInlineStyle = partialSplit?.viewProps?.style;\n\t\t\t\t\t\tconst hasPartialInlineStyle = staticObject(partialInlineStyle) && !partialInlineStyle[\"$$css\"] && Object.keys(partialInlineStyle).length > 0;\n\t\t\t\t\t\tif (partialSplit && !hasPartialInlineStyle) {\n\t\t\t\t\t\t\tconst artifacts2 = extractedStyleArtifacts(partialSplit, partialProps, options.tamaguiConfig, false);\n\t\t\t\t\t\t\tif (artifacts2.className) if (input.element.form !== \"jsx\") {\n\t\t\t\t\t\t\t\tconst propsEdits = compiledPropsEdits(input, staticStyleEntries, objectClassName(artifacts2.className));\n\t\t\t\t\t\t\t\tif (propsEdits) return {\n\t\t\t\t\t\t\t\t\tok: true,\n\t\t\t\t\t\t\t\t\tedits: propsEdits,\n\t\t\t\t\t\t\t\t\tcss: artifacts2.css,\n\t\t\t\t\t\t\t\t\timports: [],\n\t\t\t\t\t\t\t\t\tflattened: false\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tconst [first2, ...rest2] = staticStyleEntries;\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tok: true,\n\t\t\t\t\t\t\t\t\tedits: [{\n\t\t\t\t\t\t\t\t\t\tstart: first2.span.start,\n\t\t\t\t\t\t\t\t\t\tend: first2.span.end,\n\t\t\t\t\t\t\t\t\t\tcontent: jsxClassName(artifacts2.className),\n\t\t\t\t\t\t\t\t\t\torigin: first2.span\n\t\t\t\t\t\t\t\t\t}, ...rest2.map((entry) => ({\n\t\t\t\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t\t\t\t}))],\n\t\t\t\t\t\t\t\t\tcss: artifacts2.css,\n\t\t\t\t\t\t\t\t\timports: [],\n\t\t\t\t\t\t\t\t\tflattened: false\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (runtimeAnimationRequired) return bailout(input, \"local/unsupported-target\", \"Animated candidates remain on the runtime path\", transitionEntry?.span, {\n\t\t\t\trule: 5,\n\t\t\t\tmessage: zeroRuleMessage(5, { detail: `the animation configured on ${input.element.component.name}` })\n\t\t\t});\n\t\t\tconst supportsNativeDynamicStyles = platform === \"native\" && !options.disablePartialExtraction && (input.element.form === \"jsx\" || input.element.propsSpan !== null) && dynamicStyleEntries.every((entry) => entry.kind === \"prop\" && (directStyleName(entry.name, component) === \"opacity\" || entry.value.kind === \"conditional\" && canLowerConditionalStyleProp(entry.name, component)));\n\t\t\tif (dynamicStyleEntries.length > 0 && dynamicHostStyleProperties === null && !supportsNativeDynamicStyles && !supportsWebConditionalClasses) {\n\t\t\t\tconst entry = dynamicStyleEntries[0];\n\t\t\t\treturn bailout(input, \"local/dynamic-style-value\", `Style prop ${entry.kind === \"prop\" ? entry.name : \"unknown\"} could not be safely extracted`, entry.span);\n\t\t\t}\n\t\t\tconst staticDefaultProps = core.getDefaultProps(component.staticConfig) ?? {};\n\t\t\tconst defaultProps = platform === \"web\" && !component.staticConfig.isText && options.tamaguiConfig.settings.defaultPosition === \"relative\" && staticDefaultProps.position === void 0 ? core.mergeProps({ position: \"relative\" }, staticDefaultProps) : staticDefaultProps;\n\t\t\tlet completeProps = core.mergeProps(defaultProps, props);\n\t\t\tif (platform === \"native\" && component.domTag && props.display === \"flex\") completeProps = core.mergeProps(core.mergeProps(defaultProps, NATIVE_FLEX_DEFAULTS), props);\n\t\t\tif (platform === \"native\") {\n\t\t\t\tconst isClauseValue = (name, value) => isStyleProp(name, component) && typeof value === \"string\" && flatClausePattern.test(value);\n\t\t\t\tconst defaultVariants = component.staticConfig.defaultVariants ?? {};\n\t\t\t\tif (Object.entries(completeProps).some(([name, value]) => isClauseValue(name, value)) || Object.entries(component.staticConfig.variants ?? {}).some(([variantName, definitions]) => (completeProps[variantName] !== void 0 || defaultVariants[variantName] !== void 0) && staticObject(definitions) && Object.values(definitions).some((definition) => staticObject(definition) && Object.entries(definition).some(([name, value]) => isClauseValue(name, value))))) return bailout(input, \"local/unsupported-target\", \"Native conditional value programs remain on the runtime path\");\n\t\t\t}\n\t\t\tconst split = resolveSplitStyles(completeProps, component.staticConfig, cssAnimationDriver, component.displayName);\n\t\t\tif (!split) return bailout(input, \"local/style-resolution-failed\", \"getSplitStyles returned no static result\");\n\t\t\tif (split.programLifecycleStyleKeys?.enter?.size || split.programLifecycleStyleKeys?.exit?.size) return bailout(input, \"local/unsupported-target\", \"Lifecycle value programs remain on the runtime path\", input.element.span, {\n\t\t\t\trule: 5,\n\t\t\t\tmessage: zeroRuleMessage(5, { detail: `an enter or exit style program on ${input.element.component.name}` })\n\t\t\t});\n\t\t\tconst domStyleProgram = input.element.entries.find((entry) => entry.kind === \"prop\" && entry.name === \"style\" && entry.value.kind === \"dom-style\");\n\t\t\tconst flatTag = component.domTag ?? (typeof props.render === \"string\" ? props.render : typeof defaultProps.render === \"string\" ? defaultProps.render : component.staticConfig.isText ? \"span\" : \"div\");\n\t\t\tconst tagEdits = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\tstart: span.start,\n\t\t\t\tend: span.end,\n\t\t\t\tcontent: input.element.form === \"jsx\" ? flatTag : JSON.stringify(flatTag),\n\t\t\t\torigin: span\n\t\t\t}));\n\t\t\tlet styleEntries = input.element.entries.filter((entry) => entry.kind === \"prop\" && (isStyleProp(entry.name, component) || isInvalidHostStyleProp(entry.name, component)) || entry.kind === \"spread\" && entry.value.kind === \"static\" && staticObject(entry.value.value) && Object.keys(entry.value.value).every((name) => isStyleProp(name, component) || isInvalidHostStyleProp(name, component)));\n\t\t\tlet invalidHostStyle;\n\t\t\tfor (const entry of input.element.entries) {\n\t\t\t\tif (entry.kind === \"prop\") {\n\t\t\t\t\tif (isInvalidHostStyleProp(entry.name, component)) {\n\t\t\t\t\t\tinvalidHostStyle = {\n\t\t\t\t\t\t\tentry,\n\t\t\t\t\t\t\tname: entry.name\n\t\t\t\t\t\t};\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif (entry.kind === \"spread\" && entry.value.kind === \"static\" && staticObject(entry.value.value)) {\n\t\t\t\t\tconst name = Object.keys(entry.value.value).find((name2) => isInvalidHostStyleProp(name2, component));\n\t\t\t\t\tif (name) {\n\t\t\t\t\t\tinvalidHostStyle = {\n\t\t\t\t\t\t\tentry,\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t};\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (invalidHostStyle) return bailout(input, \"local/unsupported-target\", `\"${invalidHostStyle.name}\" is a text style prop and this component is not text. Use a Text-based component, or html.* for raw web elements.`, invalidHostStyle.entry.span);\n\t\t\tconst webPropEdits = platform === \"web\" ? input.element.entries.flatMap((entry) => {\n\t\t\t\tif (entry.kind !== \"prop\" || entry.name !== \"testID\") return [];\n\t\t\t\tconst content = input.source.slice(entry.span.start, entry.span.end);\n\t\t\t\tconst nameOffset = content.indexOf(\"testID\");\n\t\t\t\tif (nameOffset === -1) return [];\n\t\t\t\tconst alreadyQuoted = content[nameOffset - 1] === \"\\\"\" || content[nameOffset - 1] === \"'\";\n\t\t\t\treturn [{\n\t\t\t\t\tstart: entry.span.start + nameOffset,\n\t\t\t\t\tend: entry.span.start + nameOffset + 6,\n\t\t\t\t\tcontent: input.element.form === \"jsx\" || alreadyQuoted ? \"data-testid\" : `'data-testid'`,\n\t\t\t\t\torigin: entry.span\n\t\t\t\t}];\n\t\t\t}) : [];\n\t\t\tconst webDOMResult = platform === \"web\" && component.domTag ? webDOMProps(input, component.domTag) : {\n\t\t\t\tedits: [],\n\t\t\t\tadditions: []\n\t\t\t};\n\t\t\twebPropEdits.push(...webDOMResult.edits);\n\t\t\tconst unsafeSpread = input.element.entries.find((entry) => entry.kind === \"spread\" && !styleEntries.includes(entry) && entry.value.kind === \"static\" && staticObject(entry.value.value) && Object.keys(entry.value.value).some((name) => isStyleProp(name, component)));\n\t\t\tif (unsafeSpread) return bailout(input, \"local/unsafe-style-spread\", \"A mixed style/non-style spread cannot be removed transactionally\", unsafeSpread.span);\n\t\t\tif (platform === \"native\") {\n\t\t\t\tconst nativeStyleResolved = split.viewProps?.style;\n\t\t\t\tlet themedStyleKeys = null;\n\t\t\t\tlet nativeStyle = nativeStyleResolved;\n\t\t\t\tif (staticObject(nativeStyleResolved)) {\n\t\t\t\t\tfor (const [styleKey, styleValue] of Object.entries(nativeStyleResolved)) {\n\t\t\t\t\t\tif (!core.containsThemeRef(styleValue)) continue;\n\t\t\t\t\t\tconst themeKey = core.themeRefKey(styleValue);\n\t\t\t\t\t\tif (!themeKey) return bailout(input, \"local/dynamic-style-value\", `Style ${styleKey} uses a theme value in a compound or modified position that compiled output cannot represent`);\n\t\t\t\t\t\t(themedStyleKeys ||= {})[styleKey] = themeKey;\n\t\t\t\t\t}\n\t\t\t\t\tif (themedStyleKeys) {\n\t\t\t\t\t\tconst plain = {};\n\t\t\t\t\t\tfor (const [styleKey, styleValue] of Object.entries(nativeStyleResolved)) if (!(styleKey in themedStyleKeys)) plain[styleKey] = styleValue;\n\t\t\t\t\t\tnativeStyle = plain;\n\t\t\t\t\t}\n\t\t\t\t} else if (core.containsThemeRef(nativeStyleResolved)) return bailout(input, \"local/dynamic-style-value\", \"Theme values inside non-object native style output stay on the runtime path\");\n\t\t\t\tif (!isSerializableNativeStyle(nativeStyle)) return bailout(input, \"local/unsupported-target\", \"Native style output is not a static serializable value\");\n\t\t\t\tconst nativeStyleLocal = unusedIdentifier(input.source, `__TamaguiNativeStyle${input.element.span.start}`);\n\t\t\t\tconst nativeStyleImports = [{\n\t\t\t\t\tcontent: `\nfunction ${nativeStyleLocal}() { return ${nativeStyleLocal}._ ?? (${nativeStyleLocal}._ = ${JSON.stringify(nativeStyle ?? {})}); } ${nativeStyleLocal}();`,\n\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t}];\n\t\t\t\tconst nativeStyleSource = `${nativeStyleLocal}._ ?? ${nativeStyleLocal}()`;\n\t\t\t\tlet nativeFastPath;\n\t\t\t\tif (themedStyleKeys && options.experimentalNativeFastPath && dynamicStyleEntries.length === 0 && !input.element.entries.some((entry) => entry.kind === \"spread\")) {\n\t\t\t\t\tconst mappingLocal = unusedIdentifier(input.source, `__TamaguiNativeMapping${input.element.span.start}`);\n\t\t\t\t\tnativeFastPath = {\n\t\t\t\t\t\tmappingLocal,\n\t\t\t\t\t\timports: [{\n\t\t\t\t\t\t\tcontent: `\nconst ${mappingLocal} = ${JSON.stringify(themedStyleKeys)};`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t}]\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tif (component.domTag) {\n\t\t\t\t\tif (themedStyleKeys) return bailout(input, \"local/unsupported-target\", \"Theme values on DOM-tag native output stay on the runtime path\");\n\t\t\t\t\tconst row = TAGS[component.domTag];\n\t\t\t\t\tconst basePrimitive = NATIVE_BACKING[row.backing].primitive;\n\t\t\t\t\tlet primitive = basePrimitive;\n\t\t\t\t\tconst propsResult = nativeDOMProps(input, component.domTag);\n\t\t\t\t\tif (propsResult.diagnostic) return bailout(input, \"local/unsupported-target\", propsResult.diagnostic, propsResult.diagnosticSpan);\n\t\t\t\t\tstyleEntries = [.../* @__PURE__ */ new Set([...styleEntries, ...propsResult.consumed])];\n\t\t\t\t\tlet nativeDOMStyleSource = nativeStyleSource;\n\t\t\t\t\tlet runtimeStyleSource = null;\n\t\t\t\t\tif (domStyleProgram?.kind === \"prop\" && domStyleProgram.value.kind === \"dom-style\") {\n\t\t\t\t\t\tconst needsRuntime = domStyleProgram.value.items.some((item) => item.value.kind === \"static\" && staticObject(item.value.value) && (Object.keys(item.value.value).some((property) => nativeRuntimeOnlyStyleProperties.has(property)) || Object.values(item.value.value).some((value) => typeof value === \"string\" && (flatClausePattern.test(value) || nativeInheritedKeywordPattern.test(value)))));\n\t\t\t\t\t\tconst itemSources = [];\n\t\t\t\t\t\tfor (const item of domStyleProgram.value.items) {\n\t\t\t\t\t\t\tif (item.value.kind !== \"static\" || !staticObject(item.value.value)) return bailout(input, \"local/dynamic-style-value\", \"Every style() handle in a style array must be statically evaluable\", item.value.span);\n\t\t\t\t\t\t\tif (Object.values(item.value.value).some((value2) => typeof value2 === \"string\" && nativeInitialKeywordPattern.test(value2))) return bailout(input, \"local/unsupported-target\", \"Native DOM style() does not support the CSS initial keyword, matching the pinned upstream limitation\", item.value.span);\n\t\t\t\t\t\t\tlet value;\n\t\t\t\t\t\t\tif (needsRuntime) value = JSON.stringify(item.value.value);\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tconst itemStyle = resolveSplitStyles(item.value.value, partialStaticConfig(component.staticConfig))?.viewProps?.style;\n\t\t\t\t\t\t\t\tif (!isSerializableNativeStyle(itemStyle) || core.containsThemeRef(itemStyle)) return bailout(input, \"local/unsupported-target\", \"Native style() output is not serializable\", item.value.span);\n\t\t\t\t\t\t\t\tvalue = JSON.stringify(itemStyle ?? {});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tconst condition = item.condition ? input.source.slice(item.condition.start, item.condition.end) : null;\n\t\t\t\t\t\t\titemSources.push(condition ? `(${condition}) && ${value}` : value);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (needsRuntime) {\n\t\t\t\t\t\t\tprimitive = `DOMRuntime${basePrimitive.slice(3)}`;\n\t\t\t\t\t\t\truntimeStyleSource = `[${itemSources.join(\", \")}]`;\n\t\t\t\t\t\t} else nativeDOMStyleSource = `[${[nativeDOMStyleSource, ...itemSources].join(\", \")}]`;\n\t\t\t\t\t}\n\t\t\t\t\tconst nativeLocal2 = unusedIdentifier(input.source, `__Tamagui${primitive}`);\n\t\t\t\t\tconst propertyContent = [\n\t\t\t\t\t\tinput.element.form === \"jsx\" ? `style={${nativeDOMStyleSource}}` : `style: ${nativeDOMStyleSource}`,\n\t\t\t\t\t\truntimeStyleSource ? input.element.form === \"jsx\" ? `__styles={${runtimeStyleSource}}` : `__styles: ${runtimeStyleSource}` : \"\",\n\t\t\t\t\t\tserializedProps(input.element.form, propsResult.additions)\n\t\t\t\t\t].filter(Boolean).join(input.element.form === \"jsx\" ? \" \" : \", \");\n\t\t\t\t\tconst primitiveTagEdits = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\t\t\tstart: span.start,\n\t\t\t\t\t\tend: span.end,\n\t\t\t\t\t\tcontent: input.element.form === \"jsx\" ? nativeLocal2 : JSON.stringify(nativeLocal2).slice(1, -1),\n\t\t\t\t\t\torigin: span\n\t\t\t\t\t}));\n\t\t\t\t\tconst literalEdits = [];\n\t\t\t\t\tconst imports = [...nativeStyleImports, {\n\t\t\t\t\t\tcontent: `\nimport { ${primitive} as ${nativeLocal2} } from ${JSON.stringify(NATIVE_PRIMITIVE_MODULE)}\n`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}];\n\t\t\t\t\tif (NATIVE_BACKING[row.backing].wrapsLiteralText) {\n\t\t\t\t\t\tconst textLocal = unusedIdentifier(input.source, \"__TamaguiDOMText\");\n\t\t\t\t\t\tconst createElementLocal = unusedIdentifier(input.source, \"__TamaguiCreateElement\");\n\t\t\t\t\t\tlet needsText = false;\n\t\t\t\t\t\tlet needsCreateElement = false;\n\t\t\t\t\t\tfor (const entry of input.element.entries) {\n\t\t\t\t\t\t\tif (entry.kind !== \"child\") continue;\n\t\t\t\t\t\t\tif (entry.value.kind === \"empty\" || entry.value.kind === \"element\" || entry.value.kind === \"static\" && (entry.value.value === null || typeof entry.value.value === \"boolean\")) continue;\n\t\t\t\t\t\t\tif (entry.value.kind !== \"static\" || entry.value.literalOrigin !== true || typeof entry.value.value !== \"string\" && typeof entry.value.value !== \"number\") return bailout(input, \"local/unsupported-child\", `html.${component.domTag} has a direct child that may render unwrapped native text; write a literal as JSX text or wrap the child in html.span`, entry.span);\n\t\t\t\t\t\t\tneedsText = true;\n\t\t\t\t\t\t\tconst child = input.source.slice(entry.span.start, entry.span.end);\n\t\t\t\t\t\t\tif (input.element.form === \"jsx\") literalEdits.push({\n\t\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\t\tcontent: `<${textLocal} __inherit>${child}</${textLocal}>`,\n\t\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tneedsCreateElement = true;\n\t\t\t\t\t\t\t\tliteralEdits.push({\n\t\t\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\t\t\tcontent: `${createElementLocal}(${textLocal}, { __inherit: true }, ${child})`,\n\t\t\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (needsText) imports.push({\n\t\t\t\t\t\t\tcontent: `\nimport { DOMText as ${textLocal} } from ${JSON.stringify(NATIVE_PRIMITIVE_MODULE)}\n`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t});\n\t\t\t\t\t\tif (needsCreateElement) imports.push({\n\t\t\t\t\t\t\tcontent: `\nimport { createElement as ${createElementLocal} } from \"react\"\n`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t\tconst propsEdits = input.element.form === \"jsx\" ? styleEntries.length === 0 ? [{\n\t\t\t\t\t\tstart: input.element.component.span.end,\n\t\t\t\t\t\tend: input.element.component.span.end,\n\t\t\t\t\t\tcontent: ` ${propertyContent}`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}] : [{\n\t\t\t\t\t\tstart: styleEntries[0].span.start,\n\t\t\t\t\t\tend: styleEntries[0].span.end,\n\t\t\t\t\t\tcontent: propertyContent,\n\t\t\t\t\t\torigin: styleEntries[0].span\n\t\t\t\t\t}, ...styleEntries.slice(1).map((entry) => ({\n\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t}))] : compiledPropsEdits(input, styleEntries, propertyContent);\n\t\t\t\t\tif (!propsEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\t\treturn {\n\t\t\t\t\t\tok: true,\n\t\t\t\t\t\tedits: [\n\t\t\t\t\t\t\t...primitiveTagEdits,\n\t\t\t\t\t\t\t...propsResult.edits,\n\t\t\t\t\t\t\t...propsEdits,\n\t\t\t\t\t\t\t...literalEdits\n\t\t\t\t\t\t],\n\t\t\t\t\t\tcss: [],\n\t\t\t\t\t\timports,\n\t\t\t\t\t\tflattened: true\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tconst nativeName = component.staticConfig.isText ? \"Text\" : \"View\";\n\t\t\t\tconst useHostView = options.experimentalNativeFastPath && nativeName === \"View\" && isBareHostView(input.element);\n\t\t\t\tconst nativeExport = useHostView ? \"unstable_NativeView\" : nativeName;\n\t\t\t\tconst nativeLocal = unusedIdentifier(input.source, `__TamaguiNative${useHostView ? \"HostView\" : nativeName}`);\n\t\t\t\tif (themedStyleKeys && options.disablePartialExtraction) return bailout(input, \"local/dynamic-style-value\", \"Theme values require partial extraction, which is disabled\");\n\t\t\t\tif (dynamicStyleEntries.length > 0 || themedStyleKeys) {\n\t\t\t\t\tif (nativeFastPath) {\n\t\t\t\t\t\tconst fastLocal = `__TamaguiNativeFast${nativeName}${input.element.span.start}`;\n\t\t\t\t\t\tconst tagEdits4 = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\t\t\t\tstart: span.start,\n\t\t\t\t\t\t\tend: span.end,\n\t\t\t\t\t\t\tcontent: fastLocal,\n\t\t\t\t\t\t\torigin: span\n\t\t\t\t\t\t}));\n\t\t\t\t\t\tconst [first4, ...rest4] = styleEntries;\n\t\t\t\t\t\tconst styleEdits = styleEntries.length === 0 ? [] : input.element.form === \"jsx\" ? [{\n\t\t\t\t\t\t\tstart: first4.span.start,\n\t\t\t\t\t\t\tend: first4.span.end,\n\t\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\t\torigin: first4.span\n\t\t\t\t\t\t}, ...rest4.map((entry) => ({\n\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t}))] : compiledPropsEdits(input, styleEntries, `_expressions: []`);\n\t\t\t\t\t\tif (!styleEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tok: true,\n\t\t\t\t\t\t\tedits: [...tagEdits4, ...styleEdits],\n\t\t\t\t\t\t\tcss: [],\n\t\t\t\t\t\t\timports: [\n\t\t\t\t\t\t\t\t...nativeStyleImports,\n\t\t\t\t\t\t\t\t...nativeFastPath.imports,\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcontent: `\nconst ${fastLocal} = require('@tamagui/core')._withNativeStyle(${nativeLocal}, ${nativeStyleSource}, ${nativeFastPath.mappingLocal});`,\n\t\t\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tflattened: true\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\t\t\t\t\tconst stableLocal = `__TamaguiStable${nativeName}${input.element.span.start}`;\n\t\t\t\t\tconst expressions = [];\n\t\t\t\t\tconst plainDynamicParts = [];\n\t\t\t\t\tconst conditionalParts = [];\n\t\t\t\t\tconst conditionalKeys = /* @__PURE__ */ new Set();\n\t\t\t\t\tconst baseStyleForDiff = staticObject(nativeStyleResolved) ? nativeStyleResolved : {};\n\t\t\t\t\tfor (const entry of dynamicStyleEntries) if (entry.value.kind === \"conditional\" && directStyleName(entry.name, component) !== \"opacity\") {\n\t\t\t\t\t\tconst branchDiffs = [];\n\t\t\t\t\t\tfor (const branchValue of [entry.value.whenTrue, entry.value.whenFalse]) {\n\t\t\t\t\t\t\tconst branchSplit = resolveSplitStyles({\n\t\t\t\t\t\t\t\t...completeProps,\n\t\t\t\t\t\t\t\t[entry.name]: branchValue\n\t\t\t\t\t\t\t}, component.staticConfig, cssAnimationDriver, component.displayName);\n\t\t\t\t\t\t\tconst branchStyle = branchSplit?.viewProps?.style;\n\t\t\t\t\t\t\tif (!staticObject(branchStyle)) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch did not resolve to a static native style`, entry.value.span);\n\t\t\t\t\t\t\tfor (const viewPropsKey of /* @__PURE__ */ new Set([...Object.keys(branchSplit?.viewProps ?? {}), ...Object.keys(split.viewProps ?? {})])) {\n\t\t\t\t\t\t\t\tif (viewPropsKey === \"style\") continue;\n\t\t\t\t\t\t\t\tif (JSON.stringify(branchSplit?.viewProps?.[viewPropsKey]) !== JSON.stringify(split.viewProps?.[viewPropsKey])) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch changes ${viewPropsKey}, which the compiled style array cannot express`, entry.value.span);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tfor (const key of Object.keys(baseStyleForDiff)) if (!(key in branchStyle)) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch removes ${key}, which an additive style array cannot express`, entry.value.span);\n\t\t\t\t\t\t\tconst diff = {};\n\t\t\t\t\t\t\tfor (const [key, value] of Object.entries(branchStyle)) if (JSON.stringify(baseStyleForDiff[key]) !== JSON.stringify(value)) diff[key] = value;\n\t\t\t\t\t\t\tif (!isSerializableNativeStyle(diff) || core.containsThemeRef(diff)) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch style is not statically representable`, entry.value.span);\n\t\t\t\t\t\t\tfor (const key of Object.keys(diff)) if (conditionalKeys.has(key)) return bailout(input, \"local/dynamic-style-value\", `Multiple conditionals contribute ${key}; their interaction cannot be resolved per-branch`, entry.value.span);\n\t\t\t\t\t\t\tbranchDiffs.push(diff);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfor (const diff of branchDiffs) for (const key of Object.keys(diff)) conditionalKeys.add(key);\n\t\t\t\t\t\tconst index = expressions.length;\n\t\t\t\t\t\texpressions.push(input.source.slice(entry.value.test.start, entry.value.test.end));\n\t\t\t\t\t\tconditionalParts.push(`expressions[${index}] ? ${JSON.stringify(branchDiffs[0])} : ${JSON.stringify(branchDiffs[1])}`);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tconst index = expressions.length;\n\t\t\t\t\t\texpressions.push(input.source.slice(entry.value.span.start, entry.value.span.end));\n\t\t\t\t\t\tplainDynamicParts.push(`${JSON.stringify(directStyleName(entry.name, component))}: expressions[${index}]`);\n\t\t\t\t\t}\n\t\t\t\t\tconst dynamicStyle = plainDynamicParts.join(\", \");\n\t\t\t\t\tconst themedStyle = themedStyleKeys ? Object.entries(themedStyleKeys).map(([styleKey, themeKey]) => `${JSON.stringify(styleKey)}: _theme[${JSON.stringify(themeKey)}]?.get()`).join(\", \") : null;\n\t\t\t\t\tconst styleParts = [\n\t\t\t\t\t\tnativeStyleSource,\n\t\t\t\t\t\t...themedStyle ? [`{ ${themedStyle} }`] : [],\n\t\t\t\t\t\t...conditionalParts,\n\t\t\t\t\t\t...dynamicStyle ? [`{ ${dynamicStyle} }`] : []\n\t\t\t\t\t];\n\t\t\t\t\tconst tagEdits3 = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\t\t\tstart: span.start,\n\t\t\t\t\t\tend: span.end,\n\t\t\t\t\t\tcontent: stableLocal,\n\t\t\t\t\t\torigin: span\n\t\t\t\t\t}));\n\t\t\t\t\tconst [first3, ...rest3] = styleEntries;\n\t\t\t\t\tconst expressionEdits = styleEntries.length === 0 ? [] : input.element.form === \"jsx\" ? [{\n\t\t\t\t\t\tstart: first3.span.start,\n\t\t\t\t\t\tend: first3.span.end,\n\t\t\t\t\t\tcontent: expressions.length > 0 ? `_expressions={[${expressions.join(\", \")}]}` : \"\",\n\t\t\t\t\t\torigin: first3.span\n\t\t\t\t\t}, ...rest3.map((entry) => ({\n\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t}))] : compiledPropsEdits(input, styleEntries, `_expressions: [${expressions.join(\", \")}]`);\n\t\t\t\t\tif (!expressionEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\t\treturn {\n\t\t\t\t\t\tok: true,\n\t\t\t\t\t\tedits: [...tagEdits3, ...expressionEdits],\n\t\t\t\t\t\tcss: [],\n\t\t\t\t\t\timports: [\n\t\t\t\t\t\t\t...nativeStyleImports,\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tcontent: `\nconst ${stableLocal} = require('@tamagui/core')._withStableStyle(${nativeLocal}, (_theme, expressions) => [${styleParts.join(\", \")}], ${themedStyleKeys ? \"true\" : \"false\"}, false);`,\n\t\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t],\n\t\t\t\t\t\tflattened: true\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tconst styleContent = `style: ${nativeStyleSource}`;\n\t\t\t\tconst tagEdits2 = [input.element.component.span, input.element.component.closingSpan].filter((span) => !!span).map((span) => ({\n\t\t\t\t\tstart: span.start,\n\t\t\t\t\tend: span.end,\n\t\t\t\t\tcontent: nativeLocal,\n\t\t\t\t\torigin: span\n\t\t\t\t}));\n\t\t\t\tif (input.element.form !== \"jsx\") {\n\t\t\t\t\tconst propsEdits = compiledPropsEdits(input, styleEntries, styleContent);\n\t\t\t\t\tif (!propsEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\t\treturn {\n\t\t\t\t\t\tok: true,\n\t\t\t\t\t\tedits: [...tagEdits2, ...propsEdits],\n\t\t\t\t\t\tcss: [],\n\t\t\t\t\t\timports: [...nativeStyleImports, {\n\t\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t}],\n\t\t\t\t\t\tflattened: true\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tif (styleEntries.length === 0) return {\n\t\t\t\t\tok: true,\n\t\t\t\t\tedits: [...tagEdits2, {\n\t\t\t\t\t\tstart: input.element.component.span.end,\n\t\t\t\t\t\tend: input.element.component.span.end,\n\t\t\t\t\t\tcontent: ` style={${nativeStyleSource}}`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}],\n\t\t\t\t\tcss: [],\n\t\t\t\t\timports: [...nativeStyleImports, {\n\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}],\n\t\t\t\t\tflattened: true\n\t\t\t\t};\n\t\t\t\tconst [first2, ...rest2] = styleEntries;\n\t\t\t\treturn {\n\t\t\t\t\tok: true,\n\t\t\t\t\tedits: [\n\t\t\t\t\t\t...tagEdits2,\n\t\t\t\t\t\t...webPropEdits,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tstart: first2.span.start,\n\t\t\t\t\t\t\tend: first2.span.end,\n\t\t\t\t\t\t\tcontent: `style={${nativeStyleSource}}`,\n\t\t\t\t\t\t\torigin: first2.span\n\t\t\t\t\t\t},\n\t\t\t\t\t\t...rest2.map((entry) => ({\n\t\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t\t}))\n\t\t\t\t\t],\n\t\t\t\t\tcss: [],\n\t\t\t\t\timports: [...nativeStyleImports, {\n\t\t\t\t\t\tcontent: `\nconst ${nativeLocal} = require('react-native').${nativeExport};`,\n\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t}],\n\t\t\t\t\tflattened: true\n\t\t\t\t};\n\t\t\t}\n\t\t\tconst artifacts = extractedStyleArtifacts(split, props, options.tamaguiConfig, !component.domTag, Boolean(component.staticConfig.styleFrontend));\n\t\t\tconst className = artifacts.className;\n\t\t\tconst rawInlineStyle = split.viewProps?.style;\n\t\t\tconst inlineStyle = staticObject(rawInlineStyle) && !rawInlineStyle[\"$$css\"] && Object.keys(rawInlineStyle).length > 0 ? rawInlineStyle : null;\n\t\t\tif (rawInlineStyle && !inlineStyle && !isSerializableNativeStyle(rawInlineStyle)) return bailout(input, \"local/unsupported-target\", \"Web inline style output is not a static serializable value\");\n\t\t\tconst programCSS = [];\n\t\t\tconst programClassSources = [];\n\t\t\tif (domStyleProgram?.kind === \"prop\" && domStyleProgram.value.kind === \"dom-style\") for (const item of domStyleProgram.value.items) {\n\t\t\t\tif (item.value.kind !== \"static\" || !staticObject(item.value.value)) return bailout(input, \"local/dynamic-style-value\", \"Every style() handle in a style array must be statically evaluable\", item.value.span);\n\t\t\t\tconst itemSplit = resolveSplitStyles(item.value.value, partialStaticConfig(component.staticConfig));\n\t\t\t\tif (!itemSplit) return bailout(input, \"local/style-resolution-failed\", \"A style() handle could not be resolved\", item.value.span);\n\t\t\t\tconst itemInline = itemSplit.viewProps?.style;\n\t\t\t\tif (staticObject(itemInline) && !itemInline[\"$$css\"] && Object.keys(itemInline).length > 0) return bailout(input, \"local/unsupported-target\", \"Conditional web style() handles must lower to CSS classes\", item.value.span);\n\t\t\t\tconst itemArtifacts = extractedStyleArtifacts(itemSplit, item.value.value, options.tamaguiConfig, false);\n\t\t\t\tprogramCSS.push(...itemArtifacts.css);\n\t\t\t\tif (itemArtifacts.className) {\n\t\t\t\t\tconst condition = item.condition ? input.source.slice(item.condition.start, item.condition.end) : null;\n\t\t\t\t\tprogramClassSources.push(condition ? `(${condition}) && ${JSON.stringify(itemArtifacts.className)}` : JSON.stringify(itemArtifacts.className));\n\t\t\t\t}\n\t\t\t}\n\t\t\tlet webClassName = className;\n\t\t\tconst webConditionalCSS = [];\n\t\t\tconst webConditionalEntries = supportsWebConditionalClasses ? dynamicStyleEntries.filter((entry) => entry.value.kind === \"conditional\") : [];\n\t\t\tfor (const entry of webConditionalEntries) {\n\t\t\t\tif (entry.value.kind !== \"conditional\") continue;\n\t\t\t\tconst branches = [];\n\t\t\t\tfor (const branchValue of [entry.value.whenTrue, entry.value.whenFalse]) {\n\t\t\t\t\tconst branchSplit = resolveSplitStyles({\n\t\t\t\t\t\t...completeProps,\n\t\t\t\t\t\t[entry.name]: branchValue\n\t\t\t\t\t}, component.staticConfig, cssAnimationDriver, component.displayName);\n\t\t\t\t\tif (!branchSplit) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch could not be resolved`, entry.value.span);\n\t\t\t\t\tfor (const viewPropsKey of /* @__PURE__ */ new Set([...Object.keys(branchSplit.viewProps ?? {}), ...Object.keys(split.viewProps ?? {})])) {\n\t\t\t\t\t\tif (viewPropsKey === \"className\") continue;\n\t\t\t\t\t\tif (JSON.stringify(branchSplit.viewProps?.[viewPropsKey]) !== JSON.stringify(split.viewProps?.[viewPropsKey])) return bailout(input, \"local/dynamic-style-value\", `Conditional ${entry.name} branch changes ${viewPropsKey}, which conditional classes cannot express`, entry.value.span);\n\t\t\t\t\t}\n\t\t\t\t\tconst branchArtifacts = extractedStyleArtifacts(branchSplit, {\n\t\t\t\t\t\t...props,\n\t\t\t\t\t\t[entry.name]: branchValue\n\t\t\t\t\t}, options.tamaguiConfig, !component.domTag, Boolean(component.staticConfig.styleFrontend));\n\t\t\t\t\tbranches.push({\n\t\t\t\t\t\tclasses: branchArtifacts.className.split(\" \").filter(Boolean),\n\t\t\t\t\t\tcss: branchArtifacts.css\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tconst [whenTrue, whenFalse] = branches;\n\t\t\t\tconst shared = new Set(whenTrue.classes.filter((item) => whenFalse.classes.includes(item)));\n\t\t\t\tconst trueOnly = whenTrue.classes.filter((item) => !shared.has(item));\n\t\t\t\tconst falseOnly = whenFalse.classes.filter((item) => !shared.has(item));\n\t\t\t\twebClassName = [...shared].join(\" \");\n\t\t\t\twebConditionalCSS.push(...whenTrue.css, ...whenFalse.css);\n\t\t\t\tif (trueOnly.length > 0 || falseOnly.length > 0) {\n\t\t\t\t\tconst test = input.source.slice(entry.value.test.start, entry.value.test.end);\n\t\t\t\t\tprogramClassSources.push(`(${test}) ? ${JSON.stringify(trueOnly.join(\" \"))} : ${JSON.stringify(falseOnly.join(\" \"))}`);\n\t\t\t\t}\n\t\t\t}\n\t\t\tconst classNameExpression = programClassSources.length > 0 ? `[${[JSON.stringify(webClassName), ...programClassSources].join(\", \")}].filter(Boolean).join(\" \")` : null;\n\t\t\tconst serializedInlineStyle = serializedStyle(inlineStyle, dynamicHostStyleProperties ?? []);\n\t\t\tconst jsxWebStyle = classNameExpression ? [`className={${classNameExpression}}`, serializedInlineStyle ? `style={${serializedInlineStyle}}` : \"\"].filter(Boolean).join(\" \") : jsxStyleAttributes(webClassName, inlineStyle, dynamicHostStyleProperties ?? []);\n\t\t\tconst objectWebStyle = classNameExpression ? [`className: ${classNameExpression}`, serializedInlineStyle ? `style: ${serializedInlineStyle}` : \"\"].filter(Boolean).join(\", \") : objectStyleProperties(webClassName, inlineStyle, dynamicHostStyleProperties ?? []);\n\t\t\tconst webCSS = [.../* @__PURE__ */ new Set([\n\t\t\t\t...artifacts.css,\n\t\t\t\t...programCSS,\n\t\t\t\t...webConditionalCSS\n\t\t\t])];\n\t\t\tconst webExtraProps = serializedProps(input.element.form, webDOMResult.additions);\n\t\t\tif (input.element.form !== \"jsx\") {\n\t\t\t\tconst replacement = [objectWebStyle, webExtraProps].filter(Boolean).join(\", \");\n\t\t\t\tconst propsEdits = compiledPropsEdits(input, styleEntries, replacement);\n\t\t\t\tif (!propsEdits) return bailout(input, \"local/unsupported-target\", `Compiled ${input.element.form} call has no editable props argument`);\n\t\t\t\treturn {\n\t\t\t\t\tok: true,\n\t\t\t\t\tedits: [\n\t\t\t\t\t\t...tagEdits,\n\t\t\t\t\t\t...webPropEdits,\n\t\t\t\t\t\t...propsEdits\n\t\t\t\t\t],\n\t\t\t\t\tcss: webCSS,\n\t\t\t\t\timports: [],\n\t\t\t\t\tflattened: true\n\t\t\t\t};\n\t\t\t}\n\t\t\tif (styleEntries.length === 0) {\n\t\t\t\tconst attributes2 = [jsxWebStyle, webExtraProps].filter(Boolean).join(\" \");\n\t\t\t\treturn {\n\t\t\t\t\tok: true,\n\t\t\t\t\tedits: attributes2 ? [\n\t\t\t\t\t\t...tagEdits,\n\t\t\t\t\t\t...webPropEdits,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tstart: input.element.component.span.end,\n\t\t\t\t\t\t\tend: input.element.component.span.end,\n\t\t\t\t\t\t\tcontent: ` ${attributes2}`,\n\t\t\t\t\t\t\torigin: input.element.component.span\n\t\t\t\t\t\t}\n\t\t\t\t\t] : [...tagEdits, ...webPropEdits],\n\t\t\t\t\tcss: webCSS,\n\t\t\t\t\timports: [],\n\t\t\t\t\tflattened: true\n\t\t\t\t};\n\t\t\t}\n\t\t\tconst [first, ...rest] = styleEntries;\n\t\t\tconst attributes = [jsxWebStyle, webExtraProps].filter(Boolean).join(\" \");\n\t\t\treturn {\n\t\t\t\tok: true,\n\t\t\t\tedits: [\n\t\t\t\t\t...tagEdits,\n\t\t\t\t\t...webPropEdits,\n\t\t\t\t\t{\n\t\t\t\t\t\tstart: first.span.start,\n\t\t\t\t\t\tend: first.span.end,\n\t\t\t\t\t\tcontent: attributes,\n\t\t\t\t\t\torigin: first.span\n\t\t\t\t\t},\n\t\t\t\t\t...rest.map((entry) => ({\n\t\t\t\t\t\tstart: entry.span.start,\n\t\t\t\t\t\tend: entry.span.end,\n\t\t\t\t\t\tcontent: \"\",\n\t\t\t\t\t\torigin: entry.span\n\t\t\t\t\t}))\n\t\t\t\t],\n\t\t\t\tcss: webCSS,\n\t\t\t\timports: [],\n\t\t\t\tflattened: true\n\t\t\t};\n\t\t}\n\t};\n}\nfunction bailout(input, code, message, span = input.element.span, zero) {\n\treturn {\n\t\tok: false,\n\t\tbailout: {\n\t\t\tcode,\n\t\t\tkind: \"local\",\n\t\t\tmessage,\n\t\t\tspan,\n\t\t\tcomponent: input.element.component.name,\n\t\t\t...zero && {\n\t\t\t\tzeroRule: zero.rule,\n\t\t\t\tzeroMessage: zero.message\n\t\t\t}\n\t\t}\n\t};\n}\n\nexport { createTamaguiCompilerHost };"],"mappings":"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EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACD;CACA,WAAW;EACV;EACA;EACA;CACD;CACA,aAAa;EACZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACD;CACA,cAAc;EACb;EACA;EACA;CACD;CACA,YAAY;EACX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACD;CACA,aAAa;EACZ;EACA;EACA;EACA;EACA;CACD;CACA,SAAS;EACR;EACA;EACA;CACD;CACA,KAAK,CAAC,aAAa,QAAQ;CAC3B,YAAY,CAAC,iBAAiB,iBAAiB;CAC/C,SAAS,CAAC,cAAc,cAAc;CACtC,cAAc;EACb;EACA;EACA;EACA;EACA;EACA;CACD;CACA,eAAe;EACd;EACA;EACA;EACA;EACA;EACA;CACD;CACA,aAAa;EACZ;EACA;EACA;EACA;EACA;EACA;CACD;CACA,mBAAmB;EAClB;EACA;EACA;EACA;EACA;EACA;CACD;CACA,mBAAmB;EAClB;EACA;EACA;EACA;EACA;EACA;CACD;CACA,mBAAmB;EAClB;EACA;EACA;EACA;EACA;EACA;CACD;CACA,MAAM;EACL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACD;CACA,YAAY;EACX;EACA;EACA;EACA;EACA;EACA;CACD;AACD;AACA,MAAM,sBAAsB;iBACX,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;EACvB;EACA;EACA;EACA;EACA;EACA;EACA;CACD,CAAC;iBACe,IAAI,IAAI;E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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/static",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.655.1",
|
|
4
4
|
"gitHead": "a49cc7ea6b93ba384e77a4880ae48ac4a5635c14",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -45,21 +45,21 @@
|
|
|
45
45
|
"clean:build": "tamagui-build clean:build"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@tamagui/cli-color": "3.0.0-beta.
|
|
49
|
-
"@tamagui/compiler-core": "3.0.0-beta.
|
|
50
|
-
"@tamagui/config-default": "3.0.0-beta.
|
|
51
|
-
"@tamagui/core": "3.0.0-beta.
|
|
52
|
-
"@tamagui/dom": "3.0.0-beta.
|
|
53
|
-
"@tamagui/fake-react-native": "3.0.0-beta.
|
|
54
|
-
"@tamagui/generate-themes": "3.0.0-beta.
|
|
55
|
-
"@tamagui/helpers": "3.0.0-beta.
|
|
56
|
-
"@tamagui/helpers-node": "3.0.0-beta.
|
|
57
|
-
"@tamagui/react-native-web-internals": "3.0.0-beta.
|
|
58
|
-
"@tamagui/react-native-web-lite": "3.0.0-beta.
|
|
59
|
-
"@tamagui/shorthands": "3.0.0-beta.
|
|
60
|
-
"@tamagui/style-grammar": "3.0.0-beta.
|
|
61
|
-
"@tamagui/types": "3.0.0-beta.
|
|
62
|
-
"@tamagui/web": "3.0.0-beta.
|
|
48
|
+
"@tamagui/cli-color": "3.0.0-beta.655.1",
|
|
49
|
+
"@tamagui/compiler-core": "3.0.0-beta.655.1",
|
|
50
|
+
"@tamagui/config-default": "3.0.0-beta.655.1",
|
|
51
|
+
"@tamagui/core": "3.0.0-beta.655.1",
|
|
52
|
+
"@tamagui/dom": "3.0.0-beta.655.1",
|
|
53
|
+
"@tamagui/fake-react-native": "3.0.0-beta.655.1",
|
|
54
|
+
"@tamagui/generate-themes": "3.0.0-beta.655.1",
|
|
55
|
+
"@tamagui/helpers": "3.0.0-beta.655.1",
|
|
56
|
+
"@tamagui/helpers-node": "3.0.0-beta.655.1",
|
|
57
|
+
"@tamagui/react-native-web-internals": "3.0.0-beta.655.1",
|
|
58
|
+
"@tamagui/react-native-web-lite": "3.0.0-beta.655.1",
|
|
59
|
+
"@tamagui/shorthands": "3.0.0-beta.655.1",
|
|
60
|
+
"@tamagui/style-grammar": "3.0.0-beta.655.1",
|
|
61
|
+
"@tamagui/types": "3.0.0-beta.655.1",
|
|
62
|
+
"@tamagui/web": "3.0.0-beta.655.1",
|
|
63
63
|
"browserslist": "^4.28.1",
|
|
64
64
|
"check-dependency-version-consistency": "^4.1.0",
|
|
65
65
|
"esbuild": "0.28.1",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"react-native-web": "^0.21.0"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@tamagui/build": "3.0.0-beta.
|
|
74
|
+
"@tamagui/build": "3.0.0-beta.655.1",
|
|
75
75
|
"@types/find-root": "^1.1.2",
|
|
76
76
|
"@types/node": "^22.1.0",
|
|
77
77
|
"@types/webpack": "^4.41.26",
|
package/src/compilerHost.ts
CHANGED
|
@@ -14,6 +14,7 @@ import {
|
|
|
14
14
|
StyleObjectIdentifier,
|
|
15
15
|
StyleObjectProperty,
|
|
16
16
|
StyleObjectRules,
|
|
17
|
+
StyleObjectValue,
|
|
17
18
|
stylePropsAll,
|
|
18
19
|
stylePropsText,
|
|
19
20
|
validStyles as validStylesView,
|
|
@@ -1668,7 +1669,9 @@ export function createTamaguiCompilerHost(
|
|
|
1668
1669
|
animatedByNeedsRuntime
|
|
1669
1670
|
let dynamicHostStyleProperties: string[] | null = null
|
|
1670
1671
|
if (
|
|
1671
|
-
|
|
1672
|
+
platform === 'web' &&
|
|
1673
|
+
!options.disablePartialExtraction &&
|
|
1674
|
+
(input.element.form === 'jsx' || input.element.propsSpan !== null) &&
|
|
1672
1675
|
dynamicStyleEntries.length > 0 &&
|
|
1673
1676
|
!input.element.entries.some((entry) => entry.kind === 'spread')
|
|
1674
1677
|
) {
|
|
@@ -1683,7 +1686,7 @@ export function createTamaguiCompilerHost(
|
|
|
1683
1686
|
continue
|
|
1684
1687
|
}
|
|
1685
1688
|
const name = directStyleName(entry.name, component)
|
|
1686
|
-
if (
|
|
1689
|
+
if (!name || seen.has(name)) {
|
|
1687
1690
|
properties.length = 0
|
|
1688
1691
|
break
|
|
1689
1692
|
}
|
|
@@ -1692,17 +1695,56 @@ export function createTamaguiCompilerHost(
|
|
|
1692
1695
|
properties.length = 0
|
|
1693
1696
|
break
|
|
1694
1697
|
}
|
|
1695
|
-
|
|
1696
|
-
for (const owner of owners) dynamicOwners.add(owner)
|
|
1698
|
+
let property: string | null = null
|
|
1697
1699
|
const expression = input.source.slice(
|
|
1698
1700
|
entry.value.span.start,
|
|
1699
1701
|
entry.value.span.end
|
|
1700
1702
|
)
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1703
|
+
if (
|
|
1704
|
+
resolvedCssTransition !== null &&
|
|
1705
|
+
(name === 'opacity' || name === 'scale')
|
|
1706
|
+
) {
|
|
1707
|
+
property =
|
|
1708
|
+
name === 'opacity'
|
|
1709
|
+
? `opacity: (${expression})`
|
|
1710
|
+
: `transform: "scale(" + (${expression}) + ")"`
|
|
1711
|
+
} else if (
|
|
1712
|
+
entry.value.kind === 'bailout' &&
|
|
1713
|
+
owners.size === 1 &&
|
|
1714
|
+
owners.has(name)
|
|
1715
|
+
) {
|
|
1716
|
+
const dynamic = entry.value.dynamic
|
|
1717
|
+
if (dynamic?.type === 'number') {
|
|
1718
|
+
property = `${JSON.stringify(name)}: (${expression})`
|
|
1719
|
+
} else if (dynamic?.type === 'string' && dynamic.values?.length) {
|
|
1720
|
+
let valuesStayLiteral = true
|
|
1721
|
+
for (const value of dynamic.values) {
|
|
1722
|
+
const split = resolveSplitStyles(
|
|
1723
|
+
{ [entry.name]: value },
|
|
1724
|
+
partialStaticConfig(component.staticConfig as StaticConfig)
|
|
1725
|
+
)
|
|
1726
|
+
const atomics = Object.values(split?.rulesToInsert ?? {}) as any[]
|
|
1727
|
+
if (
|
|
1728
|
+
atomics.length !== 1 ||
|
|
1729
|
+
atomics[0]?.[StyleObjectProperty] !== name ||
|
|
1730
|
+
atomics[0]?.[StyleObjectValue] !== value
|
|
1731
|
+
) {
|
|
1732
|
+
valuesStayLiteral = false
|
|
1733
|
+
break
|
|
1734
|
+
}
|
|
1735
|
+
}
|
|
1736
|
+
if (valuesStayLiteral) {
|
|
1737
|
+
property = `${JSON.stringify(name)}: (${expression})`
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
}
|
|
1741
|
+
if (!property) {
|
|
1742
|
+
properties.length = 0
|
|
1743
|
+
break
|
|
1744
|
+
}
|
|
1745
|
+
seen.add(name)
|
|
1746
|
+
for (const owner of owners) dynamicOwners.add(owner)
|
|
1747
|
+
properties.push(property)
|
|
1706
1748
|
}
|
|
1707
1749
|
if (
|
|
1708
1750
|
properties.length === dynamicStyleEntries.length &&
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compilerHost.d.ts","sourceRoot":"","sources":["../src/compilerHost.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,oBAAoB,EACpB,cAAc,EAQf,MAAM,wBAAwB,CAAA;
|
|
1
|
+
{"version":3,"file":"compilerHost.d.ts","sourceRoot":"","sources":["../src/compilerHost.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,oBAAoB,EACpB,cAAc,EAQf,MAAM,wBAAwB,CAAA;AA+B/B,OAAO,KAAK,EAAiC,qBAAqB,EAAE,MAAM,cAAc,CAAA;AAExF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAIhE,MAAM,WAAW,uBAAuB;IACtC,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,WAAW,0BAA0B;IACzC,MAAM,EAAE,cAAc,CAAA;IACtB,aAAa,EAAE,qBAAqB,CAAA;IACpC,UAAU,EAAE,gBAAgB,EAAE,CAAA;IAC9B,gBAAgB,EAAE,uBAAuB,EAAE,CAAA;IAC3C,wEAAwE;IACxE,wBAAwB,CAAC,EAAE,OAAO,CAAA;IAClC,mEAAmE;IACnE,0BAA0B,CAAC,EAAE,OAAO,CAAA;IACpC;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB;AA00BD,wBAAgB,yBAAyB,CACvC,OAAO,EAAE,0BAA0B,GAClC,oBAAoB,CAsrEtB"}
|
package/types/zero/identity.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { TamaguiRuntimeLiteral } from './options';
|
|
|
3
3
|
* Bumped whenever the zero transform's emitted output changes shape. It rides
|
|
4
4
|
* the lowering plan version so a compiler change also invalidates zero caches.
|
|
5
5
|
*/
|
|
6
|
-
export declare const ZERO_COMPILER_VERSION = "zero-1/plan-
|
|
6
|
+
export declare const ZERO_COMPILER_VERSION = "zero-1/plan-3";
|
|
7
7
|
/**
|
|
8
8
|
* Every integration records this tuple in its cache and build identity. The CSS
|
|
9
9
|
* path alone is insufficient because the artifact's content can change in place.
|