@tamagui/web 3.0.0-beta.653.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.
- package/dist/cjs/helpers/directStyle.cjs +2 -1
- package/dist/cjs/helpers/directStyle.native.cjs +3 -2
- package/dist/cjs/helpers/directStyle.native.js +3 -2
- package/dist/cjs/helpers/directStyle.native.js.map +1 -1
- package/dist/cjs/helpers/getSplitStyles.cjs +0 -12
- package/dist/cjs/helpers/getSplitStyles.native.cjs +35 -35
- package/dist/cjs/helpers/getSplitStyles.native.js +35 -35
- package/dist/cjs/helpers/getSplitStyles.native.js.map +1 -1
- package/dist/cjs/helpers/registerCSSVariable.cjs +7 -15
- package/dist/cjs/helpers/registerCSSVariable.native.cjs +7 -15
- package/dist/cjs/helpers/registerCSSVariable.native.js +7 -15
- package/dist/cjs/helpers/registerCSSVariable.native.js.map +1 -1
- package/dist/esm/helpers/directStyle.mjs +3 -2
- package/dist/esm/helpers/directStyle.mjs.map +1 -1
- package/dist/esm/helpers/directStyle.native.js +4 -3
- package/dist/esm/helpers/directStyle.native.js.map +1 -1
- package/dist/esm/helpers/getSplitStyles.mjs +3 -15
- package/dist/esm/helpers/getSplitStyles.mjs.map +1 -1
- package/dist/esm/helpers/getSplitStyles.native.js +35 -35
- package/dist/esm/helpers/getSplitStyles.native.js.map +1 -1
- package/dist/esm/helpers/registerCSSVariable.mjs +7 -15
- package/dist/esm/helpers/registerCSSVariable.mjs.map +1 -1
- package/dist/esm/helpers/registerCSSVariable.native.js +7 -15
- package/dist/esm/helpers/registerCSSVariable.native.js.map +1 -1
- package/package.json +15 -15
- package/src/helpers/directStyle.ts +12 -4
- package/src/helpers/getSplitStyles.tsx +1 -38
- package/src/helpers/registerCSSVariable.ts +7 -29
- package/types/helpers/directStyle.d.ts.map +1 -1
- package/types/helpers/getSplitStyles.d.ts.map +1 -1
- package/types/helpers/registerCSSVariable.d.ts.map +1 -1
|
@@ -584,7 +584,8 @@ function emitProperty(state, property, value, condition, merge, originalValue, c
|
|
|
584
584
|
if (!condition || condition.active) (state.overriddenContextProps ||= {})[property] = originalValue;
|
|
585
585
|
return;
|
|
586
586
|
}
|
|
587
|
-
|
|
587
|
+
const shouldPromoteAnimatedStyle = import_constants.isWeb && !condition && !state.flatShouldDoClasses && !state.styleProps.noMergeStyle && state.styleProps.isAnimated && !state.animationDriver?.isReactNative && property in import_helpers.nonAnimatableStyleProps;
|
|
588
|
+
if (import_constants.isWeb && (state.flatShouldDoClasses || shouldPromoteAnimatedStyle)) {
|
|
588
589
|
if (!condition) {
|
|
589
590
|
if (state.style) delete state.style[property];
|
|
590
591
|
}
|
|
@@ -606,7 +606,7 @@ function getDirectDynamicThemeAccess(state) {
|
|
|
606
606
|
return state.flatDynamicThemeAccess;
|
|
607
607
|
}
|
|
608
608
|
function emitProperty(state, property, value, condition, merge, originalValue, contextOnly) {
|
|
609
|
-
var _state_flatActiveConditions;
|
|
609
|
+
var _state_animationDriver, _state_flatActiveConditions;
|
|
610
610
|
var _state, _state1;
|
|
611
611
|
var direct = state;
|
|
612
612
|
if (condition === null || condition === void 0 ? void 0 : condition.enter) ((_state = state).flatEnterKeys || (_state.flatEnterKeys = /* @__PURE__ */ new Set())).add(property);
|
|
@@ -628,7 +628,8 @@ function emitProperty(state, property, value, condition, merge, originalValue, c
|
|
|
628
628
|
}
|
|
629
629
|
return;
|
|
630
630
|
}
|
|
631
|
-
|
|
631
|
+
var shouldPromoteAnimatedStyle = import_constants.isWeb && !condition && !state.flatShouldDoClasses && !state.styleProps.noMergeStyle && state.styleProps.isAnimated && !((_state_animationDriver = state.animationDriver) === null || _state_animationDriver === void 0 ? void 0 : _state_animationDriver.isReactNative) && property in import_helpers.nonAnimatableStyleProps;
|
|
632
|
+
if (import_constants.isWeb && (state.flatShouldDoClasses || shouldPromoteAnimatedStyle)) {
|
|
632
633
|
if (!condition) {
|
|
633
634
|
if (state.style) delete state.style[property];
|
|
634
635
|
}
|
|
@@ -606,7 +606,7 @@ function getDirectDynamicThemeAccess(state) {
|
|
|
606
606
|
return state.flatDynamicThemeAccess;
|
|
607
607
|
}
|
|
608
608
|
function emitProperty(state, property, value, condition, merge, originalValue, contextOnly) {
|
|
609
|
-
var _state_flatActiveConditions;
|
|
609
|
+
var _state_animationDriver, _state_flatActiveConditions;
|
|
610
610
|
var _state, _state1;
|
|
611
611
|
var direct = state;
|
|
612
612
|
if (condition === null || condition === void 0 ? void 0 : condition.enter) ((_state = state).flatEnterKeys || (_state.flatEnterKeys = /* @__PURE__ */ new Set())).add(property);
|
|
@@ -628,7 +628,8 @@ function emitProperty(state, property, value, condition, merge, originalValue, c
|
|
|
628
628
|
}
|
|
629
629
|
return;
|
|
630
630
|
}
|
|
631
|
-
|
|
631
|
+
var shouldPromoteAnimatedStyle = import_constants.isWeb && !condition && !state.flatShouldDoClasses && !state.styleProps.noMergeStyle && state.styleProps.isAnimated && !((_state_animationDriver = state.animationDriver) === null || _state_animationDriver === void 0 ? void 0 : _state_animationDriver.isReactNative) && property in import_helpers.nonAnimatableStyleProps;
|
|
632
|
+
if (import_constants.isWeb && (state.flatShouldDoClasses || shouldPromoteAnimatedStyle)) {
|
|
632
633
|
if (!condition) {
|
|
633
634
|
if (state.style) delete state.style[property];
|
|
634
635
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"directStyle.native.js","names":[],"sources":["cjs/helpers/directStyle.native.js"],"sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n\tfor (var name in all) __defProp(target, name, {\n\t\tget: all[name],\n\t\tenumerable: true\n\t});\n};\nvar __copyProps = (to, from, except, desc) => {\n\tif (from && typeof from === \"object\" || typeof from === \"function\") {\n\t\tfor (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {\n\t\t\tget: () => from[key],\n\t\t\tenumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable\n\t\t});\n\t}\n\treturn to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar directStyle_exports = {};\n__export(directStyle_exports, {\n\tclearDirectStyle: () => clearDirectStyle,\n\tcontributeFrontendValue: () => contributeFrontendValue,\n\tcontributeStyleString: () => contributeStyleString,\n\tcontributeStyleValue: () => contributeStyleValue,\n\tcontributeVariantClauseValue: () => contributeVariantClauseValue,\n\tdirectStyleSignature: () => directStyleSignature,\n\tflushDirectStyles: () => flushDirectStyles,\n\tgetCondition: () => getCondition,\n\tgetDirectDynamicThemeAccess: () => getDirectDynamicThemeAccess,\n\tplatformMatches: () => platformMatches\n});\nmodule.exports = __toCommonJS(directStyle_exports);\nvar import_constants = require(\"@tamagui/constants\");\nvar import_helpers = require(\"@tamagui/helpers\");\nvar import_runtime = require(\"@tamagui/style-grammar/runtime\");\nvar import_createVariable = require(\"../createVariable\");\nvar import_useMedia = require(\"../hooks/useMedia\");\nvar import_warnOnce = require(\"./warnOnce\");\nvar import_expandStyle = require(\"./expandStyle\");\nvar import_getCSSStylesAtomic = require(\"./getCSSStylesAtomic\");\nvar import_getDynamicVal = require(\"./getDynamicVal\");\nvar import_insertStyleRule = require(\"./insertStyleRule\");\nvar import_mediaObjectToString = require(\"./mediaObjectToString\");\nvar import_normalizeColor = require(\"./normalizeColor\");\nvar import_parseNativeStyle = require(\"./parseNativeStyle.native\");\nvar import_parseNativeTransform = require(\"./parseNativeTransform.native\");\nvar import_tokenCategories = require(\"./tokenCategories\");\nvar import_resolveSafeAreaVariable = require(\"./resolveSafeAreaVariable\");\nvar import_resolveSafeArea = require(\"./resolveSafeArea\");\nvar import_resolveVariableValue = require(\"./resolveVariableValue\");\nvar import_themeRef = require(\"./themeRef\");\nvar import_transformsToString = require(\"./transformsToString\");\nvar baseClausePrecedence = [\n\t0,\n\t0,\n\t0,\n\t0\n];\nvar stateSelectors = {\n\thover: \":hover\",\n\tpress: \":active\",\n\tfocus: \":focus\",\n\t\"focus-visible\": \":focus-visible\",\n\t\"focus-within\": \":focus-within\",\n\tdisabled: \"[aria-disabled]\",\n\topen: \"[data-state=\\\"open\\\"]\",\n\tchecked: \"[data-state=\\\"checked\\\"]\",\n\thighlighted: \"[data-highlighted]\",\n\tselected: \"[data-state=\\\"active\\\"]\",\n\tinvalid: \"[aria-invalid=\\\"true\\\"]\"\n};\nvar legacyTransformParts = /* @__PURE__ */ new Set([\n\t\"matrix\",\n\t\"perspective\",\n\t\"rotateX\",\n\t\"rotateY\",\n\t\"rotateZ\",\n\t\"scaleZ\",\n\t\"skewX\",\n\t\"skewY\"\n]);\nvar webShadowParts = /* @__PURE__ */ new Set([\n\t\"shadowColor\",\n\t\"shadowOffset\",\n\t\"shadowOpacity\",\n\t\"shadowRadius\"\n]);\nvar webTextShadowParts = /* @__PURE__ */ new Set([\n\t\"textShadowColor\",\n\t\"textShadowOffset\",\n\t\"textShadowRadius\"\n]);\nvar lineStyles = /* @__PURE__ */ new Set([\n\t\"none\",\n\t\"hidden\",\n\t\"dotted\",\n\t\"dashed\",\n\t\"solid\",\n\t\"double\",\n\t\"groove\",\n\t\"ridge\",\n\t\"inset\",\n\t\"outset\"\n]);\nvar borderTargets = {\n\tborder: {\n\t\twidth: [\n\t\t\t\"borderTopWidth\",\n\t\t\t\"borderRightWidth\",\n\t\t\t\"borderBottomWidth\",\n\t\t\t\"borderLeftWidth\"\n\t\t],\n\t\tstyle: [\n\t\t\t\"borderTopStyle\",\n\t\t\t\"borderRightStyle\",\n\t\t\t\"borderBottomStyle\",\n\t\t\t\"borderLeftStyle\"\n\t\t],\n\t\tcolor: [\n\t\t\t\"borderTopColor\",\n\t\t\t\"borderRightColor\",\n\t\t\t\"borderBottomColor\",\n\t\t\t\"borderLeftColor\"\n\t\t]\n\t},\n\tborderTop: {\n\t\twidth: [\"borderTopWidth\"],\n\t\tstyle: [\"borderTopStyle\"],\n\t\tcolor: [\"borderTopColor\"]\n\t},\n\tborderRight: {\n\t\twidth: [\"borderRightWidth\"],\n\t\tstyle: [\"borderRightStyle\"],\n\t\tcolor: [\"borderRightColor\"]\n\t},\n\tborderBottom: {\n\t\twidth: [\"borderBottomWidth\"],\n\t\tstyle: [\"borderBottomStyle\"],\n\t\tcolor: [\"borderBottomColor\"]\n\t},\n\tborderLeft: {\n\t\twidth: [\"borderLeftWidth\"],\n\t\tstyle: [\"borderLeftStyle\"],\n\t\tcolor: [\"borderLeftColor\"]\n\t},\n\toutline: {\n\t\twidth: [\"outlineWidth\"],\n\t\tstyle: [\"outlineStyle\"],\n\t\tcolor: [\"outlineColor\"]\n\t},\n\tborderBlock: {\n\t\twidth: [\"borderBlockStartWidth\", \"borderBlockEndWidth\"],\n\t\tstyle: [\"borderBlockStartStyle\", \"borderBlockEndStyle\"],\n\t\tcolor: [\"borderBlockStartColor\", \"borderBlockEndColor\"]\n\t},\n\tborderInline: {\n\t\twidth: [\"borderInlineStartWidth\", \"borderInlineEndWidth\"],\n\t\tstyle: [\"borderInlineStartStyle\", \"borderInlineEndStyle\"],\n\t\tcolor: [\"borderInlineStartColor\", \"borderInlineEndColor\"]\n\t}\n};\nvar borderStyleDefaults = {\n\tborderWidth: \"borderStyle\",\n\tborderTopWidth: \"borderTopStyle\",\n\tborderRightWidth: \"borderRightStyle\",\n\tborderBottomWidth: \"borderBottomStyle\",\n\tborderLeftWidth: \"borderLeftStyle\"\n};\nvar mediaQueries = /* @__PURE__ */ new WeakMap();\nvar clausePrecedenceOrders = /* @__PURE__ */ new WeakMap();\nfunction queryFor(state, name) {\n\tvar queries = mediaQueries.get(state.conf);\n\tif (!queries) {\n\t\tqueries = {};\n\t\tvar media = state.conf.media || {};\n\t\tfor (var key in media) queries[key] = (0, import_mediaObjectToString.mediaObjectToString)(media[key]);\n\t\tmediaQueries.set(state.conf, queries);\n\t}\n\treturn queries[name];\n}\nfunction precedenceOrderFor(state) {\n\tvar order = clausePrecedenceOrders.get(state.conf);\n\tif (!order) {\n\t\torder = (0, import_runtime.createClausePrecedenceOrder)(state.conf.media);\n\t\tclausePrecedenceOrders.set(state.conf, order);\n\t}\n\treturn order;\n}\nfunction stateIsActive(state, name) {\n\tvar component = state.componentState;\n\tif (name === \"hover\") return !!component.hover;\n\tif (name === \"press\") return !!(component.press || component.pressIn);\n\tif (name === \"focus\") return !!component.focus;\n\tif (name === \"focus-visible\") return !!component.focusVisible;\n\tif (name === \"focus-within\") return !!component.focusWithin;\n\tif (name === \"disabled\") return !!(component.disabled || state.props.disabled);\n\tif (name === \"enter\") return !!component.unmounted;\n\tif (name === \"exit\") return !!state.styleProps.isExiting;\n\treturn false;\n}\nfunction platformMatches(name) {\n\tif (name === \"web\") return import_constants.isWeb;\n\tif (name === \"native\") return !import_constants.isWeb;\n\tif (name === \"ios\") return import_constants.isIos;\n\tif (name === \"android\") return import_constants.isAndroid;\n\tif (name === \"tvos\") return import_constants.isIos && import_constants.isTV;\n\tif (name === \"androidtv\") return import_constants.isAndroid && import_constants.isTV;\n\treturn name === \"tv\" && import_constants.isTV;\n}\nfunction groupCondition(state, modifier, out) {\n\tvar _state_componentState_group, _state_flatGroupContext, _this;\n\tvar _out, _out1, _state;\n\tvar slash = modifier.indexOf(\"/\");\n\tvar stateName = modifier.slice(6, slash === -1 ? void 0 : slash);\n\tvar groupName = slash === -1 ? \"true\" : modifier.slice(slash + 1);\n\tvar selector = stateSelectors[stateName];\n\tif (!selector || !groupName) return false;\n\tout.selector += `:where(.t_group_${groupName}${selector} *)`;\n\tif (stateName === \"hover\") ((_out = out).wrappers || (_out.wrappers = [])).push(\"@media (hover: hover)\");\n\tvar component = (_state_componentState_group = state.componentState.group) === null || _state_componentState_group === void 0 ? void 0 : _state_componentState_group[groupName];\n\tvar context = (_state_flatGroupContext = state.flatGroupContext) === null || _state_flatGroupContext === void 0 ? void 0 : _state_flatGroupContext[groupName];\n\tvar _component_pseudo;\n\t(_out1 = out).active && (_out1.active = !!((_this = (_component_pseudo = component === null || component === void 0 ? void 0 : component.pseudo) !== null && _component_pseudo !== void 0 ? _component_pseudo : context === null || context === void 0 ? void 0 : context.state.pseudo) === null || _this === void 0 ? void 0 : _this[stateName]));\n\t((_state = state).flatGroupKeys || (_state.flatGroupKeys = /* @__PURE__ */ new Set())).add(groupName);\n\treturn true;\n}\nfunction containerCondition(state, modifier, out) {\n\tvar _state_componentState_group, _state_flatGroupContext, _component_media;\n\tvar _out, _out1, _state, _state1;\n\tvar slash = modifier.indexOf(\"/\");\n\tvar size = modifier.slice(1, slash === -1 ? void 0 : slash);\n\tvar name = slash === -1 ? null : modifier.slice(slash + 1);\n\tvar query = queryFor(state, size);\n\tif (!query || name !== null && !name) return false;\n\tvar key = name === null ? \"@\" : `@${name}`;\n\t((_out = out).wrappers || (_out.wrappers = [])).push(name === null ? `@container ${query}` : `@container ${name} ${query}`);\n\tvar component = (_state_componentState_group = state.componentState.group) === null || _state_componentState_group === void 0 ? void 0 : _state_componentState_group[key];\n\tvar context = (_state_flatGroupContext = state.flatGroupContext) === null || _state_flatGroupContext === void 0 ? void 0 : _state_flatGroupContext[key];\n\tvar active = component === null || component === void 0 ? void 0 : (_component_media = component.media) === null || _component_media === void 0 ? void 0 : _component_media[size];\n\t(_out1 = out).active && (_out1.active = active === void 0 ? !!((context === null || context === void 0 ? void 0 : context.state.layout) && (0, import_useMedia.mediaKeyMatch)(size, context.state.layout)) : !!active);\n\t((_state = state).flatGroupKeys || (_state.flatGroupKeys = /* @__PURE__ */ new Set())).add(key);\n\t((_state1 = state).flatGroupMedia || (_state1.flatGroupMedia = /* @__PURE__ */ new Set())).add(size);\n\treturn true;\n}\nfunction getCondition(state, source) {\n\tvar out = {\n\t\tkey: \"\",\n\t\tactive: true,\n\t\temit: true,\n\t\tselector: \"\"\n\t};\n\tvar canonical = [];\n\tvar kinds = [];\n\tvar seenModifiers = /* @__PURE__ */ new Set();\n\tvar selfStateSpecificity = 0;\n\tvar start = 0;\n\tfor (var index = 0; index <= source.length; index++) {\n\t\tif (index !== source.length && source.charCodeAt(index) !== 58) continue;\n\t\tvar modifier = (0, import_runtime.canonicalClauseModifier)(source.slice(start, index));\n\t\tstart = index + 1;\n\t\tif (!modifier) return null;\n\t\tif (seenModifiers.has(modifier)) continue;\n\t\tseenModifiers.add(modifier);\n\t\tif (modifier.startsWith(\"group-\")) {\n\t\t\tif (!groupCondition(state, modifier, out)) return null;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"group\");\n\t\t\tcontinue;\n\t\t}\n\t\tif (modifier.charCodeAt(0) === 64) {\n\t\t\tif (!containerCondition(state, modifier, out)) return null;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"container\");\n\t\t\tcontinue;\n\t\t}\n\t\tif (modifier in stateSelectors || modifier === \"enter\" || modifier === \"exit\") {\n\t\t\tvar _out, _out1;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"state\");\n\t\t\tselfStateSpecificity++;\n\t\t\tvar selector = stateSelectors[modifier];\n\t\t\tif (!import_constants.isWeb && modifier !== \"hover\" && modifier !== \"press\" && modifier !== \"focus\" && modifier !== \"focus-visible\" && modifier !== \"focus-within\" && modifier !== \"disabled\" && modifier !== \"enter\" && modifier !== \"exit\") out.unsupportedState = modifier;\n\t\t\tif (modifier === \"enter\" || modifier === \"exit\") {\n\t\t\t\tvar cls = modifier === \"enter\" ? \".t_unmounted\" : \".t_exiting\";\n\t\t\t\tout.selector += `:is(${cls}, ${cls} *)`;\n\t\t\t\tout[modifier] = true;\n\t\t\t} else if (selector) out.selector += selector;\n\t\t\tif (modifier === \"hover\") ((_out = out).wrappers || (_out.wrappers = [])).push(\"@media (hover: hover)\");\n\t\t\t(_out1 = out).active && (_out1.active = stateIsActive(state, modifier));\n\t\t\tif (modifier === \"hover\" || modifier === \"press\" || modifier === \"focus\" || modifier === \"focus-visible\" || modifier === \"focus-within\") {\n\t\t\t\tvar _state;\n\t\t\t\t((_state = state).flatStateKeys || (_state.flatStateKeys = /* @__PURE__ */ new Set())).add(modifier);\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\t\tif (modifier in (state.conf.media || {})) {\n\t\t\tvar _state_flatMediaState;\n\t\t\tvar _out2, _out3, _state1;\n\t\t\tvar query = queryFor(state, modifier);\n\t\t\tif (!query) return null;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"media\");\n\t\t\t((_out2 = out).wrappers || (_out2.wrappers = [])).push(`@media ${query}`);\n\t\t\t(_out3 = out).active && (_out3.active = !!((_state_flatMediaState = state.flatMediaState) === null || _state_flatMediaState === void 0 ? void 0 : _state_flatMediaState[modifier]));\n\t\t\t((_state1 = state).flatMediaKeys || (_state1.flatMediaKeys = /* @__PURE__ */ new Set())).add(modifier);\n\t\t\tcontinue;\n\t\t}\n\t\tif ((0, import_runtime.isRootThemeName)(modifier) && modifier in (state.conf.themes || {})) {\n\t\t\tvar _state_flatThemeName;\n\t\t\tvar _out4;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"theme\");\n\t\t\tout.theme = modifier;\n\t\t\tout.selector += `:where(.t_${modifier}, .t_${modifier} *)`;\n\t\t\t(_out4 = out).active && (_out4.active = state.flatThemeName === modifier || ((_state_flatThemeName = state.flatThemeName) === null || _state_flatThemeName === void 0 ? void 0 : _state_flatThemeName.startsWith(`${modifier}_`)) === true);\n\t\t\tcontinue;\n\t\t}\n\t\tif (modifier === \"web\" || modifier === \"native\" || modifier === \"ios\" || modifier === \"android\" || modifier === \"tv\" || modifier === \"tvos\" || modifier === \"androidtv\") {\n\t\t\tvar _out5, _out6;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"platform\");\n\t\t\tvar matches = platformMatches(modifier);\n\t\t\t(_out5 = out).active && (_out5.active = matches);\n\t\t\t(_out6 = out).emit && (_out6.emit = matches);\n\t\t\tcontinue;\n\t\t}\n\t\treturn null;\n\t}\n\tout.key = (0, import_runtime.clauseConditionSetKey)(canonical);\n\tout.precedence = (0, import_runtime.getClausePrecedenceKeyFromKinds)(canonical, kinds, precedenceOrderFor(state));\n\tout.classRepetitions = (0, import_runtime.clauseSubjectClassRepetitions)(out.precedence, selfStateSpecificity);\n\treturn out;\n}\nvar tokenLookup = {\n\tvalue: void 0,\n\tfromTheme: false,\n\tthemeKey: \"\"\n};\nfunction fillTokenLookup(value, fromTheme, themeKey) {\n\ttokenLookup.value = value;\n\ttokenLookup.fromTheme = fromTheme;\n\ttokenLookup.themeKey = themeKey;\n\treturn tokenLookup;\n}\nfunction tokenVariable(state, property, name) {\n\tvar _state_theme, _state_conf_themes_, _state_conf_themes, _state_conf_tokensParsed_space, _state_conf_tokensParsed_color;\n\tvar lookupName = name.charCodeAt(0) === 36 ? name.slice(1) : name;\n\tif (property === \"fontFamily\") {\n\t\tvar _state_conf_fontsParsed_lookupName;\n\t\tvar family = (_state_conf_fontsParsed_lookupName = state.conf.fontsParsed[lookupName]) === null || _state_conf_fontsParsed_lookupName === void 0 ? void 0 : _state_conf_fontsParsed_lookupName.family;\n\t\treturn family ? fillTokenLookup(family, false, lookupName) : void 0;\n\t}\n\tvar fontKey = property === \"fontSize\" ? \"size\" : property === \"fontWeight\" ? \"weight\" : property === \"lineHeight\" || property === \"letterSpacing\" ? property : void 0;\n\tif (fontKey) {\n\t\tvar _font_fontKey;\n\t\tvar font = state.conf.fontsParsed[state.fontFamily || state.conf.defaultFontToken] || state.conf.fontsParsed[state.conf.defaultFontToken];\n\t\tvar value = font === null || font === void 0 ? void 0 : (_font_fontKey = font[fontKey]) === null || _font_fontKey === void 0 ? void 0 : _font_fontKey[lookupName];\n\t\treturn value ? fillTokenLookup(value, false, lookupName) : void 0;\n\t}\n\tvar category = (0, import_tokenCategories.getTokenCategoryForProperty)(property);\n\tvar dot = lookupName.indexOf(\".\");\n\tif (dot !== -1) {\n\t\tvar prefix = lookupName.slice(0, dot);\n\t\tif (!category || prefix === category || prefix === \"color\") lookupName = lookupName.slice(dot + 1);\n\t}\n\tif (category) {\n\t\tvar _state_conf_tokensParsed_category;\n\t\tvar own = (_state_conf_tokensParsed_category = state.conf.tokensParsed[category]) === null || _state_conf_tokensParsed_category === void 0 ? void 0 : _state_conf_tokensParsed_category[lookupName];\n\t\tif (own) return fillTokenLookup(own, false, lookupName);\n\t\tfor (var _i = 0, _iter = [\n\t\t\t\"color\",\n\t\t\t\"space\",\n\t\t\t\"size\",\n\t\t\t\"radius\",\n\t\t\t\"zIndex\"\n\t\t]; _i < _iter.length; _i++) {\n\t\t\tvar sibling = _iter[_i];\n\t\t\tvar _state_conf_tokensParsed_sibling;\n\t\t\tif (sibling !== category && ((_state_conf_tokensParsed_sibling = state.conf.tokensParsed[sibling]) === null || _state_conf_tokensParsed_sibling === void 0 ? void 0 : _state_conf_tokensParsed_sibling[lookupName])) return;\n\t\t}\n\t} else {\n\t\tvar first = lookupName.charCodeAt(0);\n\t\tif (first >= 48 && first <= 57 || first === 43 || first === 45 || first === 46) return;\n\t}\n\tvar theme = ((_state_theme = state.theme) === null || _state_theme === void 0 ? void 0 : _state_theme[lookupName]) || ((_state_conf_themes = state.conf.themes) === null || _state_conf_themes === void 0 ? void 0 : (_state_conf_themes_ = _state_conf_themes[state.flatThemeName || \"\"]) === null || _state_conf_themes_ === void 0 ? void 0 : _state_conf_themes_[lookupName]);\n\tif (theme) return fillTokenLookup(theme, true, lookupName);\n\tif (category) return;\n\tvar token = ((_state_conf_tokensParsed_space = state.conf.tokensParsed.space) === null || _state_conf_tokensParsed_space === void 0 ? void 0 : _state_conf_tokensParsed_space[lookupName]) || ((_state_conf_tokensParsed_color = state.conf.tokensParsed.color) === null || _state_conf_tokensParsed_color === void 0 ? void 0 : _state_conf_tokensParsed_color[lookupName]);\n\treturn token ? fillTokenLookup(token, false, lookupName) : void 0;\n}\nfunction configuredValue(state, property, raw) {\n\tvar name = raw;\n\tvar opacity;\n\tvar slash = raw.lastIndexOf(\"/\");\n\tif (slash > 0) {\n\t\tvar amount = Number(raw.slice(slash + 1));\n\t\tif (Number.isInteger(amount) && amount >= 0 && amount <= 100) {\n\t\t\tname = raw.slice(0, slash);\n\t\t\topacity = amount;\n\t\t}\n\t}\n\tvar safeArea = (0, import_resolveSafeAreaVariable.resolveSafeAreaVariable)(name);\n\tif (safeArea !== void 0) {\n\t\tstate.flatUsesSafeArea = true;\n\t\treturn safeArea;\n\t}\n\tvar lookup = tokenVariable(state, property, name);\n\tif (!lookup || !(0, import_createVariable.isVariable)(lookup.value)) {\n\t\tvar _state_conf_tokensParsed_color;\n\t\tif (process.env.NODE_ENV === \"development\" && import_tokenCategories.tokenCategoryByProperty[property] && ((_state_conf_tokensParsed_color = state.conf.tokensParsed.color) === null || _state_conf_tokensParsed_color === void 0 ? void 0 : _state_conf_tokensParsed_color[name])) (0, import_warnOnce.warnOnce)(`\"${name}\" contributes to \"color\", not \"${property}\"; keeping it literal`);\n\t\treturn raw;\n\t}\n\tvar resolveValues = import_constants.isWeb && !state.flatShouldDoClasses && state.styleProps.resolveValues === \"auto\" ? \"value\" : state.styleProps.resolveValues;\n\tif (resolveValues === \"except-theme\" && lookup.fromTheme) return `${import_themeRef.THEME_REF_PREFIX}${lookup.themeKey}${opacity !== void 0 ? `/${opacity}` : \"\"}`;\n\tvar value = (0, import_resolveVariableValue.resolveVariableValue)(property, lookup.value, resolveValues);\n\tif (opacity !== void 0) value = import_constants.isWeb ? `color-mix(in srgb, ${value} ${opacity}%, transparent)` : (0, import_normalizeColor.normalizeColor)(value, opacity / 100);\n\treturn value;\n}\nvar letterFreeCallPattern = /^[A-Za-z-]+\\([^A-Za-z]*\\)$/;\nfunction resolveEmbeddedTokens(state, property, raw) {\n\tif (letterFreeCallPattern.test(raw)) return raw;\n\treturn raw.replace(/[$A-Za-z_][\\w.$-]*(?:\\/\\d+)?/g, function(word, index) {\n\t\tif (word.charCodeAt(0) !== 36) {\n\t\t\tvar before = raw.charCodeAt(index - 1);\n\t\t\tif (before >= 48 && before <= 57 || before === 35 || before === 45 && raw.charCodeAt(index - 2) === 45 || raw.charCodeAt(index + word.length) === 40) return word;\n\t\t}\n\t\tvar value = configuredValue(state, property, word);\n\t\treturn value === word ? word : String(value);\n\t});\n}\nfunction normalizeTransitionNames(state, raw) {\n\tvar quote = 0;\n\tvar depth = 0;\n\tvar copyFrom = 0;\n\tvar out = \"\";\n\tfor (var index = 0; index < raw.length; index++) {\n\t\tvar code = raw.charCodeAt(index);\n\t\tif (quote) {\n\t\t\tif (code === 92) index++;\n\t\t\telse if (code === quote) quote = 0;\n\t\t\tcontinue;\n\t\t}\n\t\tif (code === 34 || code === 39) {\n\t\t\tquote = code;\n\t\t\tcontinue;\n\t\t}\n\t\tif (code === 40) {\n\t\t\tdepth++;\n\t\t\tcontinue;\n\t\t}\n\t\tif (code === 41) {\n\t\t\tdepth--;\n\t\t\tcontinue;\n\t\t}\n\t\tif (depth || !(code >= 65 && code <= 90 || code >= 97 && code <= 122 || code === 95) || index > 1 && raw.charCodeAt(index - 1) === 45 && raw.charCodeAt(index - 2) === 45) continue;\n\t\tvar end = index + 1;\n\t\twhile (end < raw.length) {\n\t\t\tvar next = raw.charCodeAt(end);\n\t\t\tif (next >= 48 && next <= 57 || next >= 65 && next <= 90 || next >= 97 && next <= 122 || next === 45 || next === 95) end++;\n\t\t\telse break;\n\t\t}\n\t\tif (raw.charCodeAt(end) !== 40) {\n\t\t\tvar authored = raw.slice(index, end);\n\t\t\tvar property = state.conf.shorthands[authored] || authored;\n\t\t\tif (property === \"x\" || property === \"y\") property = \"translate\";\n\t\t\telse if (property === \"scaleX\" || property === \"scaleY\") property = \"scale\";\n\t\t\telse if (legacyTransformParts.has(property)) property = \"transform\";\n\t\t\tif (property !== authored || /[A-Z]/.test(property)) {\n\t\t\t\tout += raw.slice(copyFrom, index);\n\t\t\t\tout += property.replace(/[A-Z]/g, function(letter) {\n\t\t\t\t\treturn `-${letter.toLowerCase()}`;\n\t\t\t\t});\n\t\t\t\tcopyFrom = end;\n\t\t\t}\n\t\t}\n\t\tindex = end - 1;\n\t}\n\treturn copyFrom ? out + raw.slice(copyFrom) : raw;\n}\nfunction directStyleSignature(property, value) {\n\treturn `\u001f${property}\u001f${arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : \"\"}\u001e${String(value)}`;\n}\nfunction directAtomic(state, property, value, condition) {\n\tvar isDefault = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : false;\n\tvar _state;\n\tvar atomics = (_state = state).flatAtomics || (_state.flatAtomics = {});\n\tvar atomicKey = property.startsWith(\"transition\") ? \"transition\" : property;\n\tvar existing = atomics[atomicKey];\n\tvar contribution = directStyleSignature(property, value, (condition === null || condition === void 0 ? void 0 : condition.key) || \"\");\n\tvar signature = existing ? existing.signature + contribution : contribution;\n\tvar next = (0, import_getCSSStylesAtomic.getCSSStyleAtomic)(property, value, condition === null || condition === void 0 ? void 0 : condition.selector, condition === null || condition === void 0 ? void 0 : condition.wrappers, signature, true, atomicKey, condition === null || condition === void 0 ? void 0 : condition.classRepetitions);\n\tif (!next) return;\n\tvar identifier = next[import_helpers.StyleObjectIdentifier];\n\tvar nextRules = next[import_helpers.StyleObjectRules];\n\tvar slotted = condition || atomicKey === \"transition\";\n\tif (!existing) {\n\t\tvar atomic = {\n\t\t\tbaseRules: slotted ? 0 : nextRules.length,\n\t\t\tconditions: void 0,\n\t\t\tsignature,\n\t\t\tstyleObject: next\n\t\t};\n\t\tif (slotted) {\n\t\t\tvar _condition_precedence;\n\t\t\tatomic.conditions = { [atomicKey === \"transition\" ? `${(condition === null || condition === void 0 ? void 0 : condition.key) || \"\"}\\0${property}` : condition.key]: {\n\t\t\t\tcount: nextRules.length,\n\t\t\t\tindex: 0,\n\t\t\t\tprecedence: (_condition_precedence = condition === null || condition === void 0 ? void 0 : condition.precedence) !== null && _condition_precedence !== void 0 ? _condition_precedence : baseClausePrecedence,\n\t\t\t\tdefault: isDefault\n\t\t\t} };\n\t\t}\n\t\tatomics[atomicKey] = atomic;\n\t} else {\n\t\tvar previousIdentifier = existing.styleObject[import_helpers.StyleObjectIdentifier];\n\t\tvar rules = existing.styleObject[import_helpers.StyleObjectRules];\n\t\tif (!condition && !isDefault && existing.conditions) for (var key in existing.conditions) {\n\t\t\tvar entry = existing.conditions[key];\n\t\t\tif (!entry.default) continue;\n\t\t\trules.splice(entry.index, entry.count);\n\t\t\tdelete existing.conditions[key];\n\t\t\tfor (var otherKey in existing.conditions) {\n\t\t\t\tvar other = existing.conditions[otherKey];\n\t\t\t\tif (other.index > entry.index) other.index -= entry.count;\n\t\t\t}\n\t\t}\n\t\tif (previousIdentifier !== identifier) {\n\t\t\tvar oldSelector = `.${previousIdentifier}`;\n\t\t\tvar newSelector = `.${identifier}`;\n\t\t\tfor (var index = 0; index < rules.length; index++) rules[index] = rules[index].replaceAll(oldSelector, newSelector);\n\t\t}\n\t\tif (slotted) {\n\t\t\tvar _existing_conditions;\n\t\t\tvar _existing;\n\t\t\tvar slot = atomicKey === \"transition\" ? `${(condition === null || condition === void 0 ? void 0 : condition.key) || \"\"}\\0${property}` : condition.key;\n\t\t\tvar previous = (_existing_conditions = existing.conditions) === null || _existing_conditions === void 0 ? void 0 : _existing_conditions[slot];\n\t\t\tif (previous) {\n\t\t\t\trules.splice(previous.index, previous.count);\n\t\t\t\tif (existing.conditions) for (var key1 in existing.conditions) {\n\t\t\t\t\tvar entry1 = existing.conditions[key1];\n\t\t\t\t\tif (entry1 !== previous && entry1.index > previous.index) entry1.index -= previous.count;\n\t\t\t\t}\n\t\t\t\tdelete existing.conditions[slot];\n\t\t\t}\n\t\t\tvar _condition_precedence1;\n\t\t\tvar precedence = (_condition_precedence1 = condition === null || condition === void 0 ? void 0 : condition.precedence) !== null && _condition_precedence1 !== void 0 ? _condition_precedence1 : baseClausePrecedence;\n\t\t\tvar insertionIndex = rules.length;\n\t\t\tif (existing.conditions) {\n\t\t\t\tfor (var key2 in existing.conditions) {\n\t\t\t\t\tvar entry2 = existing.conditions[key2];\n\t\t\t\t\tif ((0, import_runtime.compareClausePrecedence)(entry2.precedence, precedence) > 0 && entry2.index < insertionIndex) insertionIndex = entry2.index;\n\t\t\t\t}\n\t\t\t\tfor (var key3 in existing.conditions) {\n\t\t\t\t\tvar entry3 = existing.conditions[key3];\n\t\t\t\t\tif (entry3.index >= insertionIndex) entry3.index += nextRules.length;\n\t\t\t\t}\n\t\t\t}\n\t\t\t((_existing = existing).conditions || (_existing.conditions = {}))[slot] = {\n\t\t\t\tcount: nextRules.length,\n\t\t\t\tindex: insertionIndex,\n\t\t\t\tprecedence,\n\t\t\t\tdefault: isDefault\n\t\t\t};\n\t\t\trules.splice(insertionIndex, 0, ...nextRules);\n\t\t} else {\n\t\t\tvar difference = nextRules.length - existing.baseRules;\n\t\t\trules.splice(0, existing.baseRules, ...nextRules);\n\t\t\tif (difference && existing.conditions) for (var key4 in existing.conditions) existing.conditions[key4].index += difference;\n\t\t\texisting.baseRules = nextRules.length;\n\t\t}\n\t\texisting.signature = signature;\n\t\texisting.styleObject[import_helpers.StyleObjectIdentifier] = identifier;\n\t\texisting.styleObject[1] = next[1];\n\t}\n\tstate.classNames[atomicKey] = identifier;\n}\nfunction emitBorderStyleDefault(state, property, condition) {\n\tvar _state_flatAtomics, _atomic_conditions;\n\tif (!import_constants.isWeb || !state.flatShouldDoClasses || state.styleProps.noNormalize === false) return;\n\tvar target = borderStyleDefaults[property];\n\tif (!target) return;\n\tvar atomic = (_state_flatAtomics = state.flatAtomics) === null || _state_flatAtomics === void 0 ? void 0 : _state_flatAtomics[target];\n\tif ((atomic === null || atomic === void 0 ? void 0 : atomic.baseRules) || state.classNames[target] && !atomic || condition && (atomic === null || atomic === void 0 ? void 0 : (_atomic_conditions = atomic.conditions) === null || _atomic_conditions === void 0 ? void 0 : _atomic_conditions[condition.key])) return;\n\tdirectAtomic(state, target, \"solid\", condition, true);\n}\nfunction flushDirectStyles(state) {\n\tvar clear = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : false;\n\tvar direct = state;\n\tvar atomics = direct.flatAtomics;\n\tif (!atomics) return;\n\tfor (var property in atomics) {\n\t\tvar styleObject = atomics[property].styleObject;\n\t\tvar identifier = styleObject[import_helpers.StyleObjectIdentifier];\n\t\tif ((0, import_insertStyleRule.shouldInsertStyleRules)(identifier)) {\n\t\t\t(0, import_insertStyleRule.updateRules)(identifier, styleObject[import_helpers.StyleObjectRules]);\n\t\t\tstate.flatRulesToInsert[identifier] = styleObject;\n\t\t}\n\t}\n\tif (clear) direct.flatAtomics = void 0;\n}\nfunction getDirectDynamicThemeAccess(state) {\n\treturn state.flatDynamicThemeAccess;\n}\nfunction emitProperty(state, property, value, condition, merge, originalValue, contextOnly) {\n\tvar _state_flatActiveConditions;\n\tvar _state, _state1;\n\tvar direct = state;\n\tif (condition === null || condition === void 0 ? void 0 : condition.enter) ((_state = state).flatEnterKeys || (_state.flatEnterKeys = /* @__PURE__ */ new Set())).add(property);\n\tif (condition === null || condition === void 0 ? void 0 : condition.exit) ((_state1 = state).flatExitKeys || (_state1.flatExitKeys = /* @__PURE__ */ new Set())).add(property);\n\tif (!import_constants.isWeb && (condition === null || condition === void 0 ? void 0 : condition.theme)) {\n\t\tif (import_constants.supportsDynamicColorIOS && (0, import_getDynamicVal.isColorStyleKey)(property)) {\n\t\t\tvar _direct, _ref, _property;\n\t\t\tvar schemes = (_ref = (_direct = direct).flatDynamicColors || (_direct.flatDynamicColors = {}))[_property = property] || (_ref[_property] = {});\n\t\t\tschemes[condition.theme] = typeof originalValue === \"string\" && /^[a-z]+$/i.test(originalValue) ? originalValue : value;\n\t\t\tmerge(state, property, { dynamic: { ...schemes } }, 1, false, originalValue);\n\t\t\treturn;\n\t\t}\n\t\tdirect.flatDynamicThemeAccess = true;\n\t}\n\tif (contextOnly) {\n\t\tif (!condition || condition.active) {\n\t\t\tvar _state2;\n\t\t\t((_state2 = state).overriddenContextProps || (_state2.overriddenContextProps = {}))[property] = originalValue;\n\t\t}\n\t\treturn;\n\t}\n\tif (import_constants.isWeb && state.flatShouldDoClasses) {\n\t\tif (!condition) {\n\t\t\tif (state.style) delete state.style[property];\n\t\t}\n\t\tdirectAtomic(state, property, value, condition);\n\t\treturn;\n\t}\n\tif (condition) {\n\t\tvar _direct_flatPrecedence;\n\t\tvar _direct1, _state3;\n\t\tif (!condition.active) return;\n\t\tvar previous = (_direct_flatPrecedence = direct.flatPrecedence) === null || _direct_flatPrecedence === void 0 ? void 0 : _direct_flatPrecedence[property];\n\t\tif (previous && (0, import_runtime.compareClausePrecedence)(condition.precedence, previous) < 0) return;\n\t\t((_direct1 = direct).flatPrecedence || (_direct1.flatPrecedence = {}))[property] = condition.precedence;\n\t\t((_state3 = state).flatActiveConditions || (_state3.flatActiveConditions = {}))[property] = true;\n\t} else if ((_state_flatActiveConditions = state.flatActiveConditions) === null || _state_flatActiveConditions === void 0 ? void 0 : _state_flatActiveConditions[property]) return;\n\tmerge(state, property, value, 1, true, originalValue);\n}\nfunction splitComponents(value) {\n\tvar parts = [];\n\tvar start = 0;\n\tvar quote = 0;\n\tvar depth = 0;\n\tfor (var index = 0; index <= value.length; index++) {\n\t\tvar code = index === value.length ? 32 : value.charCodeAt(index);\n\t\tif (quote) {\n\t\t\tif (code === 92) index++;\n\t\t\telse if (code === quote) quote = 0;\n\t\t\tcontinue;\n\t\t}\n\t\tif (code === 34 || code === 39) quote = code;\n\t\telse if (code === 40) depth++;\n\t\telse if (code === 41) depth--;\n\t\telse if (!depth && code <= 32) {\n\t\t\tif (index > start) parts.push(value.slice(start, index));\n\t\t\tstart = index + 1;\n\t\t}\n\t}\n\treturn parts;\n}\nfunction emitBorder(state, property, raw, condition, merge, originalValue, contextOnly) {\n\tif (!import_constants.isWeb && (property === \"borderBlock\" || property === \"borderInline\")) {\n\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`RN has no logical border shorthand \"${property}\"; dropping it`);\n\t\treturn;\n\t}\n\tvar targets = borderTargets[property];\n\tvar width;\n\tvar style;\n\tvar color;\n\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\ttry {\n\t\tfor (var _iterator = splitComponents(raw)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\tvar part = _step.value;\n\t\t\tvar lower = part.toLowerCase();\n\t\t\tif (lineStyles.has(lower) || property === \"outline\" && lower === \"auto\") style = part;\n\t\t\telse if (lower === \"thin\" || lower === \"medium\" || lower === \"thick\" || /^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:[a-z%]+)?$/i.test(part) || /^(?:calc|var|min|max|clamp)\\(/i.test(part)) width = part;\n\t\t\telse color = part;\n\t\t}\n\t} catch (err) {\n\t\t_didIteratorError = true;\n\t\t_iteratorError = err;\n\t} finally {\n\t\ttry {\n\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t} finally {\n\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t}\n\t}\n\tif (style === \"none\" && width === void 0) width = \"0\";\n\tif (width !== void 0) {\n\t\tvar _iteratorNormalCompletion1 = true, _didIteratorError1 = false, _iteratorError1 = void 0;\n\t\ttry {\n\t\t\tfor (var _iterator1 = targets.width[Symbol.iterator](), _step1; !(_iteratorNormalCompletion1 = (_step1 = _iterator1.next()).done); _iteratorNormalCompletion1 = true) {\n\t\t\t\tvar target = _step1.value;\n\t\t\t\temitResolved(state, target, width, condition, merge, originalValue, contextOnly);\n\t\t\t}\n\t\t} catch (err) {\n\t\t\t_didIteratorError1 = true;\n\t\t\t_iteratorError1 = err;\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\tif (!_iteratorNormalCompletion1 && _iterator1.return != null) _iterator1.return();\n\t\t\t} finally {\n\t\t\t\tif (_didIteratorError1) throw _iteratorError1;\n\t\t\t}\n\t\t}\n\t}\n\tif (style !== void 0) {\n\t\tvar styleTargets = !import_constants.isWeb && property === \"border\" ? [\"borderStyle\"] : targets.style;\n\t\tvar _iteratorNormalCompletion2 = true, _didIteratorError2 = false, _iteratorError2 = void 0;\n\t\ttry {\n\t\t\tfor (var _iterator2 = styleTargets[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {\n\t\t\t\tvar target1 = _step2.value;\n\t\t\t\temitProperty(state, target1, style, condition, merge, originalValue, contextOnly);\n\t\t\t}\n\t\t} catch (err) {\n\t\t\t_didIteratorError2 = true;\n\t\t\t_iteratorError2 = err;\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\tif (!_iteratorNormalCompletion2 && _iterator2.return != null) _iterator2.return();\n\t\t\t} finally {\n\t\t\t\tif (_didIteratorError2) throw _iteratorError2;\n\t\t\t}\n\t\t}\n\t}\n\tif (color !== void 0) {\n\t\tvar _iteratorNormalCompletion3 = true, _didIteratorError3 = false, _iteratorError3 = void 0;\n\t\ttry {\n\t\t\tfor (var _iterator3 = targets.color[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {\n\t\t\t\tvar target2 = _step3.value;\n\t\t\t\temitResolved(state, target2, color, condition, merge, originalValue, contextOnly);\n\t\t\t}\n\t\t} catch (err) {\n\t\t\t_didIteratorError3 = true;\n\t\t\t_iteratorError3 = err;\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\tif (!_iteratorNormalCompletion3 && _iterator3.return != null) _iterator3.return();\n\t\t\t} finally {\n\t\t\t\tif (_didIteratorError3) throw _iteratorError3;\n\t\t\t}\n\t\t}\n\t}\n}\nfunction emitTextDecoration(state, raw, condition, merge, originalValue, contextOnly) {\n\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\ttry {\n\t\tfor (var _iterator = splitComponents(raw)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\tvar part = _step.value;\n\t\t\temitResolved(state, part === \"solid\" || part === \"double\" || part === \"dotted\" || part === \"dashed\" || part === \"wavy\" ? \"textDecorationStyle\" : part === \"underline\" || part === \"overline\" || part === \"line-through\" || part === \"none\" ? \"textDecorationLine\" : \"textDecorationColor\", part, condition, merge, originalValue, contextOnly);\n\t\t}\n\t} catch (err) {\n\t\t_didIteratorError = true;\n\t\t_iteratorError = err;\n\t} finally {\n\t\ttry {\n\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t} finally {\n\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t}\n\t}\n}\nfunction addComposition(state, property) {\n\tif (state.classNames[property]) return;\n\tvar value = property === \"translate\" ? \"var(--t-x, 0px) var(--t-y, 0px)\" : \"var(--t-scale-x, 1) var(--t-scale-y, 1)\";\n\tvar defaults = property === \"translate\" ? \"--t-x:0px;--t-y:0px\" : \"--t-scale-x:1;--t-scale-y:1\";\n\tvar styleObject = (0, import_getCSSStylesAtomic.getCSSStyleAtomic)(property, value, \"\", void 0, void 0, true);\n\tvar identifier = styleObject[import_helpers.StyleObjectIdentifier];\n\tstyleObject[import_helpers.StyleObjectRules].unshift(`:where(.${identifier}){${defaults}}`);\n\tif ((0, import_insertStyleRule.shouldInsertStyleRules)(identifier)) {\n\t\t(0, import_insertStyleRule.updateRules)(identifier, styleObject[import_helpers.StyleObjectRules]);\n\t\tstate.flatRulesToInsert[identifier] = styleObject;\n\t}\n\tstate.classNames[property] = identifier;\n}\nfunction emitTransform(state, property, value, condition, merge, originalValue, contextOnly) {\n\tif (!import_constants.isWeb || !state.flatShouldDoClasses) {\n\t\tif (!import_constants.isWeb && property === \"scale\") {\n\t\t\temitProperty(state, \"scaleX\", value, condition, merge, originalValue, contextOnly);\n\t\t\temitProperty(state, \"scaleY\", value, condition, merge, originalValue, contextOnly);\n\t\t} else emitProperty(state, property, value, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tvar targets = property === \"scale\" ? [\"--t-scale-x\", \"--t-scale-y\"] : [property === \"x\" ? \"--t-x\" : property === \"y\" ? \"--t-y\" : property === \"scaleX\" ? \"--t-scale-x\" : property === \"scaleY\" ? \"--t-scale-y\" : \"rotate\"];\n\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\ttry {\n\t\tfor (var _iterator = targets[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\tvar target = _step.value;\n\t\t\tvar targetValue = value;\n\t\t\tif (typeof targetValue === \"number\") {\n\t\t\t\tif (target === \"--t-x\" || target === \"--t-y\") targetValue = `${targetValue}px`;\n\t\t\t\telse if (target === \"rotate\") targetValue = `${targetValue}deg`;\n\t\t\t}\n\t\t\temitProperty(state, target, targetValue, condition, merge, originalValue, contextOnly);\n\t\t\tif (target === \"--t-x\" || target === \"--t-y\") addComposition(state, \"translate\");\n\t\t\telse if (target.startsWith(\"--t-scale\")) addComposition(state, \"scale\");\n\t\t}\n\t} catch (err) {\n\t\t_didIteratorError = true;\n\t\t_iteratorError = err;\n\t} finally {\n\t\ttry {\n\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t} finally {\n\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t}\n\t}\n}\nfunction emitResolved(state, property, raw, condition, merge, originalValue, contextOnly) {\n\tvar value = configuredValue(state, property, raw);\n\tif (value === raw && /[\\s,(]/.test(raw)) value = resolveEmbeddedTokens(state, property, raw);\n\tif ((!import_constants.isWeb || !state.flatShouldDoClasses) && typeof value === \"string\") {\n\t\tif (/^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:px|dp)$/i.test(value)) value = Number.parseFloat(value);\n\t\telse if (value !== \"\" && Number.isFinite(Number(value))) value = Number(value);\n\t}\n\temitProperty(state, property, value, condition, merge, originalValue, contextOnly);\n}\nfunction shadowUnit(part) {\n\treturn typeof part === \"number\" ? `${part}px` : part || \"0px\";\n}\nfunction emitWebShadow(state, property, value, merge, originalValue, contextOnly) {\n\tvar _state;\n\tvar shadow = (_state = state).flatWebShadow || (_state.flatWebShadow = {});\n\tshadow[property] = value;\n\tvar offset = shadow.shadowOffset || {\n\t\twidth: 0,\n\t\theight: 0\n\t};\n\tvar _shadow_shadowOpacity;\n\tvar color = (0, import_normalizeColor.normalizeColor)(shadow.shadowColor, (_shadow_shadowOpacity = shadow.shadowOpacity) !== null && _shadow_shadowOpacity !== void 0 ? _shadow_shadowOpacity : 1);\n\tif (!color) return;\n\tvar next = `${shadowUnit(offset.width)} ${shadowUnit(offset.height)} ${shadowUnit(shadow.shadowRadius)} ${color}`;\n\temitProperty(state, \"boxShadow\", state.flatBoxShadow ? `${state.flatBoxShadow}, ${next}` : next, null, merge, originalValue, contextOnly);\n}\nfunction emitWebTextShadow(state, property, value, merge, originalValue, contextOnly) {\n\tvar _state;\n\tvar shadow = (_state = state).flatTextShadow || (_state.flatTextShadow = {});\n\tshadow[property] = value;\n\tvar offset = shadow.textShadowOffset || {\n\t\twidth: 0,\n\t\theight: 0\n\t};\n\tif (!shadow.textShadowColor) return;\n\temitProperty(state, \"textShadow\", `${shadowUnit(offset.width)} ${shadowUnit(offset.height)} ${shadowUnit(shadow.textShadowRadius)} ${shadow.textShadowColor}`, null, merge, originalValue, contextOnly);\n}\nfunction emitValue(state, property, raw, condition, merge, originalValue, contextOnly) {\n\tif (typeof raw === \"string\") raw = raw.trim();\n\tif ((0, import_createVariable.isVariable)(raw)) raw = (0, import_resolveVariableValue.resolveVariableValue)(property, raw, import_constants.isWeb && !state.flatShouldDoClasses && state.styleProps.resolveValues === \"auto\" ? \"value\" : state.styleProps.resolveValues);\n\temitBorderStyleDefault(state, property, condition);\n\tif (typeof raw === \"string\" && (property === \"transition\" || property === \"transitionProperty\")) raw = normalizeTransitionNames(state, raw);\n\tif (legacyTransformParts.has(property)) {\n\t\tif (import_constants.isWeb && state.flatShouldDoClasses && state.classNames.transform) {\n\t\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`legacy transform part \"${property}\" is dropped because \"transform\" owns the property`);\n\t\t\treturn;\n\t\t}\n\t\tvar value = typeof raw === \"string\" ? configuredValue(state, property, raw) : raw;\n\t\tif (import_constants.isWeb && state.flatShouldDoClasses && !condition) {\n\t\t\tvar _direct;\n\t\t\tvar direct = state;\n\t\t\t((_direct = direct).flatLegacyTransforms || (_direct.flatLegacyTransforms = {}))[property] = value;\n\t\t\temitProperty(state, \"transform\", (0, import_transformsToString.transformsToString)(Object.keys(direct.flatLegacyTransforms).sort().map(function(key2) {\n\t\t\t\treturn { [key2]: direct.flatLegacyTransforms[key2] };\n\t\t\t})), null, merge, originalValue, contextOnly);\n\t\t} else if (condition && import_constants.isWeb && state.flatShouldDoClasses) emitProperty(state, \"transform\", `${property}(${value})`, condition, merge, originalValue, contextOnly);\n\t\telse merge(state, property, value, 1, false, originalValue);\n\t\treturn;\n\t}\n\tif (import_constants.isWeb && webShadowParts.has(property)) {\n\t\tvar value1 = typeof raw === \"string\" ? configuredValue(state, property, raw) : raw;\n\t\tif (state.flatShouldDoClasses) emitWebShadow(state, property, value1, merge, originalValue, contextOnly);\n\t\telse merge(state, property, value1, 1, false, originalValue);\n\t\treturn;\n\t}\n\tif (import_constants.isWeb && webTextShadowParts.has(property)) {\n\t\tvar value2 = typeof raw === \"string\" ? configuredValue(state, property, raw) : raw;\n\t\tif (state.flatShouldDoClasses) emitWebTextShadow(state, property, value2, merge, originalValue, contextOnly);\n\t\telse merge(state, property, value2, 1, false, originalValue);\n\t\treturn;\n\t}\n\tif (import_constants.isWeb && state.flatShouldDoClasses) {\n\t\tif (property === \"transform\") {\n\t\t\tvar direct1 = state;\n\t\t\tif (process.env.NODE_ENV === \"development\" && direct1.flatLegacyTransforms) for (var part in direct1.flatLegacyTransforms) (0, import_warnOnce.warnOnce)(`legacy transform part \"${part}\" is dropped because \"transform\" owns the property`);\n\t\t\tdirect1.flatLegacyTransforms = void 0;\n\t\t\tif (state.flatTransforms) {\n\t\t\t\tif (process.env.NODE_ENV === \"development\") for (var part1 in state.flatTransforms) (0, import_warnOnce.warnOnce)(`legacy transform part \"${part1}\" is dropped because \"transform\" owns the property`);\n\t\t\t\tstate.flatTransforms = void 0;\n\t\t\t}\n\t\t}\n\t}\n\tif (import_constants.isWeb && state.flatShouldDoClasses && property === \"transform\" && Array.isArray(raw)) raw = (0, import_transformsToString.transformsToString)(raw);\n\tif (typeof raw === \"string\" && property in borderTargets) {\n\t\temitBorder(state, property, raw, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (typeof raw === \"string\" && property === \"textDecoration\") {\n\t\temitTextDecoration(state, raw, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (typeof raw === \"string\" && property === \"background\") {\n\t\tvar parts = splitComponents(raw);\n\t\tif (parts.length === 1 && !/^(?:url|image-set|.*gradient)\\(/i.test(parts[0])) {\n\t\t\temitResolved(state, \"backgroundColor\", parts[0], condition, merge, originalValue, contextOnly);\n\t\t\treturn;\n\t\t}\n\t\tif (!import_constants.isWeb) {\n\t\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`native background cannot represent \"${raw}\"; dropping it`);\n\t\t\treturn;\n\t\t}\n\t}\n\tif (property === \"x\" || property === \"y\" || property === \"scale\" || property === \"scaleX\" || property === \"scaleY\" || property === \"rotate\") {\n\t\tvar value3 = typeof raw === \"string\" ? configuredValue(state, property, raw) : raw;\n\t\tif ((!import_constants.isWeb || !state.flatShouldDoClasses) && typeof value3 === \"string\" && !value3.startsWith(import_themeRef.THEME_REF_PREFIX)) {\n\t\t\tif (property === \"rotate\" && !/^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:deg|rad)$/i.test(value3)) {\n\t\t\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`native transform \"${property}\" cannot represent \"${value3}\"; dropping it`);\n\t\t\t\tif ((condition === null || condition === void 0 ? void 0 : condition.active) && state.flatTransforms) delete state.flatTransforms[property];\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif (/^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:px|dp)$/i.test(value3)) value3 = Number.parseFloat(value3);\n\t\t\telse if (Number.isFinite(Number(value3))) value3 = Number(value3);\n\t\t}\n\t\temitTransform(state, property, value3, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (import_constants.isWeb && !state.flatShouldDoClasses && !condition && property === \"borderRadius\") {\n\t\tif (typeof raw === \"string\") emitResolved(state, property, raw, condition, merge, originalValue, contextOnly);\n\t\telse emitProperty(state, property, raw, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (property === \"transform\" && typeof raw === \"string\") {\n\t\tvar transform = (0, import_parseNativeTransform.parseNativeTransform)(raw);\n\t\tif (transform) {\n\t\t\temitProperty(state, property, transform, condition, merge, originalValue, contextOnly);\n\t\t\treturn;\n\t\t}\n\t}\n\tvar value4 = raw;\n\tif (typeof raw === \"string\") {\n\t\tvalue4 = configuredValue(state, property, raw);\n\t\tif (value4 === raw && /[\\s,(]/.test(raw)) value4 = resolveEmbeddedTokens(state, property, raw);\n\t}\n\tif ((!import_constants.isWeb || !state.flatShouldDoClasses) && typeof value4 === \"string\") {\n\t\tif (/^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:px|dp)$/i.test(value4)) value4 = Number.parseFloat(value4);\n\t\telse if (value4 !== \"\" && Number.isFinite(Number(value4))) value4 = Number(value4);\n\t}\n\tif (import_constants.isWeb && state.flatShouldDoClasses && property === \"boxShadow\" && !condition) state.flatBoxShadow = value4;\n\tif (typeof value4 === \"string\" && (property === \"backgroundImage\" || property === \"boxShadow\" || property === \"textShadow\")) {\n\t\tvar parsed = (0, import_parseNativeStyle.parseNativeStyle)(property, value4);\n\t\tif (parsed) {\n\t\t\tif (property === \"textShadow\") {\n\t\t\t\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\t\t\t\ttry {\n\t\t\t\t\tfor (var _iterator = parsed[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\t\t\t\tvar [key, parsedValue] = _step.value;\n\t\t\t\t\t\temitProperty(state, key, parsedValue, condition, merge, originalValue, contextOnly);\n\t\t\t\t\t}\n\t\t\t\t} catch (err) {\n\t\t\t\t\t_didIteratorError = true;\n\t\t\t\t\t_iteratorError = err;\n\t\t\t\t} finally {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else emitProperty(state, property === \"backgroundImage\" ? \"experimental_backgroundImage\" : property, parsed, condition, merge, originalValue, contextOnly);\n\t\t\treturn;\n\t\t}\n\t}\n\tif (!import_constants.isWeb && property === \"fontVariant\" && typeof value4 === \"string\") value4 = value4.split(/[,\\s]+/).filter(Boolean);\n\tvar expanded = state.styleProps.noExpand ? null : (0, import_expandStyle.expandStyle)(property, value4, state.conf.settings.styleCompat || \"web\");\n\tif (!expanded) {\n\t\temitProperty(state, property, value4, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (typeof raw === \"string\" && expanded.length > 1) {\n\t\tvar parts1 = splitComponents(raw);\n\t\tif (parts1.length > 0 && parts1.length <= (expanded.length === 4 ? 4 : 2)) {\n\t\t\tfor (var index = 0; index < expanded.length; index++) {\n\t\t\t\tvar partIndex = index === 0 || parts1.length === 1 ? 0 : index === 1 || index === 3 && parts1.length < 4 ? 1 : index === 2 && parts1.length < 3 ? 0 : index;\n\t\t\t\temitResolved(state, expanded[index][0], parts1[partIndex], condition, merge, originalValue, contextOnly);\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t}\n\tfor (var index1 = 0; index1 < expanded.length; index1++) emitProperty(state, expanded[index1][0], expanded[index1][1], condition, merge, originalValue, contextOnly);\n}\nfunction emitSegment(state, property, source, start, end, condition, merge, originalValue, contextOnly) {\n\twhile (start < end && source.charCodeAt(start) <= 32) start++;\n\twhile (end > start && source.charCodeAt(end - 1) <= 32) end--;\n\tif (start === end) return false;\n\tif (!condition || condition.emit && (condition.active || import_constants.isWeb && state.flatShouldDoClasses || !import_constants.isWeb && condition.theme && import_constants.supportsDynamicColorIOS && (0, import_getDynamicVal.isColorStyleKey)(property))) {\n\t\tvar value = source.slice(start, end);\n\t\temitValue(state, property, value, condition, merge, value, contextOnly);\n\t}\n\treturn true;\n}\nfunction contributeStyleString(state, property, source, merge, originalValue) {\n\tvar contextOnly = arguments.length > 5 && arguments[5] !== void 0 ? arguments[5] : false;\n\tif (import_constants.isWeb && source.indexOf(\":\") !== -1 && (webShadowParts.has(property) || legacyTransformParts.has(property))) {\n\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`conditional \"${property}\" needs its composite property; dropping it`);\n\t\treturn true;\n\t}\n\tif (source.indexOf(\":\") === -1) {\n\t\temitValue(state, property, source, null, merge, originalValue !== null && originalValue !== void 0 ? originalValue : source, contextOnly);\n\t\treturn true;\n\t}\n\tvar conditions = [];\n\tvar starts = [];\n\tvar ends = [];\n\tvar pending = null;\n\tvar refused = \"\";\n\tvar lifecycle = false;\n\t(0, import_runtime.scanFlatValue)(source, {\n\t\tsegment(start, end, isBase) {\n\t\t\tif (start === end) {\n\t\t\t\tif (!isBase && !refused) refused = \"a conditional clause has no value\";\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tconditions.push(pending);\n\t\t\tstarts.push(start);\n\t\t\tends.push(end);\n\t\t},\n\t\tchain(start, end) {\n\t\t\tif (refused) return false;\n\t\t\tvar next = getCondition(state, source.slice(start, end));\n\t\t\tif (!next) {\n\t\t\t\trefused = `unknown modifier \"${source.slice(start, end)}\"`;\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tif (process.env.NODE_ENV === \"development\" && next.unsupportedState) (0, import_warnOnce.warnOnce)(`${property}: \"${next.unsupportedState}:\" has no native component-state source; dropping the clause`);\n\t\t\tpending = next;\n\t\t\tlifecycle || (lifecycle = !!(next.enter || next.exit));\n\t\t\treturn true;\n\t\t},\n\t\terror(code, index2) {\n\t\t\tif (refused) return;\n\t\t\trefused = code === \"invalid-character\" ? `\"${source[index2]}\" would end the declaration or rule` : code === \"unterminated-string\" ? \"an unterminated string\" : code === \"unterminated-comment\" ? \"an unterminated \\\"/*\\\" comment\" : code === \"stray-comment-close\" ? \"a stray \\\"*/\\\"\" : \"an unterminated \\\"(\\\"\";\n\t\t}\n\t});\n\tif (refused) {\n\t\tif (property === \"aspectRatio\") {\n\t\t\temitValue(state, property, source, null, merge, originalValue !== null && originalValue !== void 0 ? originalValue : source, contextOnly);\n\t\t\treturn true;\n\t\t}\n\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnRefusedValue)(property, source, refused);\n\t\treturn true;\n\t}\n\tvar hasBase = false;\n\tvar lastPayloadStart = 0;\n\tfor (var index = 0; index < conditions.length; index++) {\n\t\tvar condition = conditions[index];\n\t\tlastPayloadStart = starts[index];\n\t\tvar emitted = emitSegment(state, property, source, starts[index], ends[index], condition, merge, originalValue, contextOnly);\n\t\tif (!condition && emitted) hasBase = true;\n\t}\n\tif (process.env.NODE_ENV === \"development\" && !hasBase && conditions.length > 0 && (property in import_helpers.tokenCategories.color || property in import_tokenCategories.tokenCategoryByProperty) && splitComponents(source.slice(lastPayloadStart)).length > 1) (0, import_warnOnce.warnOnce)(`${property}=\"${source}\" has multiple values after its first conditional. Write the base value before the first conditional.`);\n\tif ((!import_constants.isWeb || !state.flatShouldDoClasses) && lifecycle && !hasBase) {\n\t\tvar value = property === \"opacity\" ? 1 : property === \"scale\" || property === \"scaleX\" || property === \"scaleY\" ? 1 : property === \"rotate\" ? \"0deg\" : property === \"x\" || property === \"y\" ? 0 : null;\n\t\tif (value !== null) emitValue(state, property, value, null, merge, value, contextOnly);\n\t}\n\treturn true;\n}\nfunction contributeFrontendValue(state, property, value, merge) {\n\tvar contextOnly = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : false;\n\tif (value.base !== null) emitValue(state, property, value.base, null, merge, value.base, contextOnly);\n\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\ttry {\n\t\tfor (var _iterator = value.clauses[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\tvar clause = _step.value;\n\t\t\tvar condition = getCondition(state, clause.modifiers.join(\":\"));\n\t\t\tif (condition && condition.emit && (condition.active || import_constants.isWeb && state.flatShouldDoClasses)) emitValue(state, property, clause.payload, condition, merge, clause.payload, contextOnly);\n\t\t}\n\t} catch (err) {\n\t\t_didIteratorError = true;\n\t\t_iteratorError = err;\n\t} finally {\n\t\ttry {\n\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t} finally {\n\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t}\n\t}\n\treturn true;\n}\nfunction contributeVariantClauseValue(state, property, value, conditionSource, merge, originalValue) {\n\tvar contextOnly = arguments.length > 6 && arguments[6] !== void 0 ? arguments[6] : false;\n\tvar condition = getCondition(state, conditionSource);\n\tif (!condition) {\n\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnRefusedValue)(property, value, `unknown modifier \"${conditionSource}\"`);\n\t\treturn;\n\t}\n\tif (process.env.NODE_ENV === \"development\" && condition.unsupportedState) (0, import_warnOnce.warnOnce)(`${property}: \"${condition.unsupportedState}:\" has no native component-state source; dropping the clause`);\n\tif (condition.emit && (condition.active || import_constants.isWeb && state.flatShouldDoClasses)) emitValue(state, property, value, condition, merge, originalValue, contextOnly);\n}\nfunction contributeStyleValue(state, property, value, merge, originalValue) {\n\tvar contextOnly = arguments.length > 5 && arguments[5] !== void 0 ? arguments[5] : false;\n\tif (value === \"safe\" && (0, import_resolveSafeArea.isSafeAreaKey)(property)) {\n\t\tvar expanded = (0, import_resolveSafeArea.expandSafeAreaValue)(property);\n\t\tif (expanded) {\n\t\t\tstate.flatUsesSafeArea = true;\n\t\t\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\t\t\ttry {\n\t\t\t\tfor (var _iterator = expanded[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\t\t\tvar [key, resolved] = _step.value;\n\t\t\t\t\temitValue(state, key, resolved, null, merge, originalValue !== null && originalValue !== void 0 ? originalValue : value, contextOnly);\n\t\t\t\t}\n\t\t\t} catch (err) {\n\t\t\t\t_didIteratorError = true;\n\t\t\t\t_iteratorError = err;\n\t\t\t} finally {\n\t\t\t\ttry {\n\t\t\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t\t\t} finally {\n\t\t\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t}\n\tif (typeof value === \"string\") return contributeStyleString(state, property, value, merge, originalValue, contextOnly);\n\tif (value != null) {\n\t\temitValue(state, property, value, null, merge, originalValue !== null && originalValue !== void 0 ? originalValue : value, contextOnly);\n\t\treturn true;\n\t}\n\treturn false;\n}\nfunction clearDirectStyle(state, property) {\n\tvar direct = state;\n\tvar atomicKey = property.startsWith(\"transition\") ? \"transition\" : webShadowParts.has(property) ? \"boxShadow\" : webTextShadowParts.has(property) ? \"textShadow\" : legacyTransformParts.has(property) ? \"transform\" : property;\n\tif (direct.flatAtomics) delete direct.flatAtomics[atomicKey];\n\tdelete state.classNames[atomicKey];\n}\n//# sourceMappingURL=directStyle.js.map\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"directStyle.native.js","names":[],"sources":["cjs/helpers/directStyle.native.js"],"sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n\tfor (var name in all) __defProp(target, name, {\n\t\tget: all[name],\n\t\tenumerable: true\n\t});\n};\nvar __copyProps = (to, from, except, desc) => {\n\tif (from && typeof from === \"object\" || typeof from === \"function\") {\n\t\tfor (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {\n\t\t\tget: () => from[key],\n\t\t\tenumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable\n\t\t});\n\t}\n\treturn to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar directStyle_exports = {};\n__export(directStyle_exports, {\n\tclearDirectStyle: () => clearDirectStyle,\n\tcontributeFrontendValue: () => contributeFrontendValue,\n\tcontributeStyleString: () => contributeStyleString,\n\tcontributeStyleValue: () => contributeStyleValue,\n\tcontributeVariantClauseValue: () => contributeVariantClauseValue,\n\tdirectStyleSignature: () => directStyleSignature,\n\tflushDirectStyles: () => flushDirectStyles,\n\tgetCondition: () => getCondition,\n\tgetDirectDynamicThemeAccess: () => getDirectDynamicThemeAccess,\n\tplatformMatches: () => platformMatches\n});\nmodule.exports = __toCommonJS(directStyle_exports);\nvar import_constants = require(\"@tamagui/constants\");\nvar import_helpers = require(\"@tamagui/helpers\");\nvar import_runtime = require(\"@tamagui/style-grammar/runtime\");\nvar import_createVariable = require(\"../createVariable\");\nvar import_useMedia = require(\"../hooks/useMedia\");\nvar import_warnOnce = require(\"./warnOnce\");\nvar import_expandStyle = require(\"./expandStyle\");\nvar import_getCSSStylesAtomic = require(\"./getCSSStylesAtomic\");\nvar import_getDynamicVal = require(\"./getDynamicVal\");\nvar import_insertStyleRule = require(\"./insertStyleRule\");\nvar import_mediaObjectToString = require(\"./mediaObjectToString\");\nvar import_normalizeColor = require(\"./normalizeColor\");\nvar import_parseNativeStyle = require(\"./parseNativeStyle.native\");\nvar import_parseNativeTransform = require(\"./parseNativeTransform.native\");\nvar import_tokenCategories = require(\"./tokenCategories\");\nvar import_resolveSafeAreaVariable = require(\"./resolveSafeAreaVariable\");\nvar import_resolveSafeArea = require(\"./resolveSafeArea\");\nvar import_resolveVariableValue = require(\"./resolveVariableValue\");\nvar import_themeRef = require(\"./themeRef\");\nvar import_transformsToString = require(\"./transformsToString\");\nvar baseClausePrecedence = [\n\t0,\n\t0,\n\t0,\n\t0\n];\nvar stateSelectors = {\n\thover: \":hover\",\n\tpress: \":active\",\n\tfocus: \":focus\",\n\t\"focus-visible\": \":focus-visible\",\n\t\"focus-within\": \":focus-within\",\n\tdisabled: \"[aria-disabled]\",\n\topen: \"[data-state=\\\"open\\\"]\",\n\tchecked: \"[data-state=\\\"checked\\\"]\",\n\thighlighted: \"[data-highlighted]\",\n\tselected: \"[data-state=\\\"active\\\"]\",\n\tinvalid: \"[aria-invalid=\\\"true\\\"]\"\n};\nvar legacyTransformParts = /* @__PURE__ */ new Set([\n\t\"matrix\",\n\t\"perspective\",\n\t\"rotateX\",\n\t\"rotateY\",\n\t\"rotateZ\",\n\t\"scaleZ\",\n\t\"skewX\",\n\t\"skewY\"\n]);\nvar webShadowParts = /* @__PURE__ */ new Set([\n\t\"shadowColor\",\n\t\"shadowOffset\",\n\t\"shadowOpacity\",\n\t\"shadowRadius\"\n]);\nvar webTextShadowParts = /* @__PURE__ */ new Set([\n\t\"textShadowColor\",\n\t\"textShadowOffset\",\n\t\"textShadowRadius\"\n]);\nvar lineStyles = /* @__PURE__ */ new Set([\n\t\"none\",\n\t\"hidden\",\n\t\"dotted\",\n\t\"dashed\",\n\t\"solid\",\n\t\"double\",\n\t\"groove\",\n\t\"ridge\",\n\t\"inset\",\n\t\"outset\"\n]);\nvar borderTargets = {\n\tborder: {\n\t\twidth: [\n\t\t\t\"borderTopWidth\",\n\t\t\t\"borderRightWidth\",\n\t\t\t\"borderBottomWidth\",\n\t\t\t\"borderLeftWidth\"\n\t\t],\n\t\tstyle: [\n\t\t\t\"borderTopStyle\",\n\t\t\t\"borderRightStyle\",\n\t\t\t\"borderBottomStyle\",\n\t\t\t\"borderLeftStyle\"\n\t\t],\n\t\tcolor: [\n\t\t\t\"borderTopColor\",\n\t\t\t\"borderRightColor\",\n\t\t\t\"borderBottomColor\",\n\t\t\t\"borderLeftColor\"\n\t\t]\n\t},\n\tborderTop: {\n\t\twidth: [\"borderTopWidth\"],\n\t\tstyle: [\"borderTopStyle\"],\n\t\tcolor: [\"borderTopColor\"]\n\t},\n\tborderRight: {\n\t\twidth: [\"borderRightWidth\"],\n\t\tstyle: [\"borderRightStyle\"],\n\t\tcolor: [\"borderRightColor\"]\n\t},\n\tborderBottom: {\n\t\twidth: [\"borderBottomWidth\"],\n\t\tstyle: [\"borderBottomStyle\"],\n\t\tcolor: [\"borderBottomColor\"]\n\t},\n\tborderLeft: {\n\t\twidth: [\"borderLeftWidth\"],\n\t\tstyle: [\"borderLeftStyle\"],\n\t\tcolor: [\"borderLeftColor\"]\n\t},\n\toutline: {\n\t\twidth: [\"outlineWidth\"],\n\t\tstyle: [\"outlineStyle\"],\n\t\tcolor: [\"outlineColor\"]\n\t},\n\tborderBlock: {\n\t\twidth: [\"borderBlockStartWidth\", \"borderBlockEndWidth\"],\n\t\tstyle: [\"borderBlockStartStyle\", \"borderBlockEndStyle\"],\n\t\tcolor: [\"borderBlockStartColor\", \"borderBlockEndColor\"]\n\t},\n\tborderInline: {\n\t\twidth: [\"borderInlineStartWidth\", \"borderInlineEndWidth\"],\n\t\tstyle: [\"borderInlineStartStyle\", \"borderInlineEndStyle\"],\n\t\tcolor: [\"borderInlineStartColor\", \"borderInlineEndColor\"]\n\t}\n};\nvar borderStyleDefaults = {\n\tborderWidth: \"borderStyle\",\n\tborderTopWidth: \"borderTopStyle\",\n\tborderRightWidth: \"borderRightStyle\",\n\tborderBottomWidth: \"borderBottomStyle\",\n\tborderLeftWidth: \"borderLeftStyle\"\n};\nvar mediaQueries = /* @__PURE__ */ new WeakMap();\nvar clausePrecedenceOrders = /* @__PURE__ */ new WeakMap();\nfunction queryFor(state, name) {\n\tvar queries = mediaQueries.get(state.conf);\n\tif (!queries) {\n\t\tqueries = {};\n\t\tvar media = state.conf.media || {};\n\t\tfor (var key in media) queries[key] = (0, import_mediaObjectToString.mediaObjectToString)(media[key]);\n\t\tmediaQueries.set(state.conf, queries);\n\t}\n\treturn queries[name];\n}\nfunction precedenceOrderFor(state) {\n\tvar order = clausePrecedenceOrders.get(state.conf);\n\tif (!order) {\n\t\torder = (0, import_runtime.createClausePrecedenceOrder)(state.conf.media);\n\t\tclausePrecedenceOrders.set(state.conf, order);\n\t}\n\treturn order;\n}\nfunction stateIsActive(state, name) {\n\tvar component = state.componentState;\n\tif (name === \"hover\") return !!component.hover;\n\tif (name === \"press\") return !!(component.press || component.pressIn);\n\tif (name === \"focus\") return !!component.focus;\n\tif (name === \"focus-visible\") return !!component.focusVisible;\n\tif (name === \"focus-within\") return !!component.focusWithin;\n\tif (name === \"disabled\") return !!(component.disabled || state.props.disabled);\n\tif (name === \"enter\") return !!component.unmounted;\n\tif (name === \"exit\") return !!state.styleProps.isExiting;\n\treturn false;\n}\nfunction platformMatches(name) {\n\tif (name === \"web\") return import_constants.isWeb;\n\tif (name === \"native\") return !import_constants.isWeb;\n\tif (name === \"ios\") return import_constants.isIos;\n\tif (name === \"android\") return import_constants.isAndroid;\n\tif (name === \"tvos\") return import_constants.isIos && import_constants.isTV;\n\tif (name === \"androidtv\") return import_constants.isAndroid && import_constants.isTV;\n\treturn name === \"tv\" && import_constants.isTV;\n}\nfunction groupCondition(state, modifier, out) {\n\tvar _state_componentState_group, _state_flatGroupContext, _this;\n\tvar _out, _out1, _state;\n\tvar slash = modifier.indexOf(\"/\");\n\tvar stateName = modifier.slice(6, slash === -1 ? void 0 : slash);\n\tvar groupName = slash === -1 ? \"true\" : modifier.slice(slash + 1);\n\tvar selector = stateSelectors[stateName];\n\tif (!selector || !groupName) return false;\n\tout.selector += `:where(.t_group_${groupName}${selector} *)`;\n\tif (stateName === \"hover\") ((_out = out).wrappers || (_out.wrappers = [])).push(\"@media (hover: hover)\");\n\tvar component = (_state_componentState_group = state.componentState.group) === null || _state_componentState_group === void 0 ? void 0 : _state_componentState_group[groupName];\n\tvar context = (_state_flatGroupContext = state.flatGroupContext) === null || _state_flatGroupContext === void 0 ? void 0 : _state_flatGroupContext[groupName];\n\tvar _component_pseudo;\n\t(_out1 = out).active && (_out1.active = !!((_this = (_component_pseudo = component === null || component === void 0 ? void 0 : component.pseudo) !== null && _component_pseudo !== void 0 ? _component_pseudo : context === null || context === void 0 ? void 0 : context.state.pseudo) === null || _this === void 0 ? void 0 : _this[stateName]));\n\t((_state = state).flatGroupKeys || (_state.flatGroupKeys = /* @__PURE__ */ new Set())).add(groupName);\n\treturn true;\n}\nfunction containerCondition(state, modifier, out) {\n\tvar _state_componentState_group, _state_flatGroupContext, _component_media;\n\tvar _out, _out1, _state, _state1;\n\tvar slash = modifier.indexOf(\"/\");\n\tvar size = modifier.slice(1, slash === -1 ? void 0 : slash);\n\tvar name = slash === -1 ? null : modifier.slice(slash + 1);\n\tvar query = queryFor(state, size);\n\tif (!query || name !== null && !name) return false;\n\tvar key = name === null ? \"@\" : `@${name}`;\n\t((_out = out).wrappers || (_out.wrappers = [])).push(name === null ? `@container ${query}` : `@container ${name} ${query}`);\n\tvar component = (_state_componentState_group = state.componentState.group) === null || _state_componentState_group === void 0 ? void 0 : _state_componentState_group[key];\n\tvar context = (_state_flatGroupContext = state.flatGroupContext) === null || _state_flatGroupContext === void 0 ? void 0 : _state_flatGroupContext[key];\n\tvar active = component === null || component === void 0 ? void 0 : (_component_media = component.media) === null || _component_media === void 0 ? void 0 : _component_media[size];\n\t(_out1 = out).active && (_out1.active = active === void 0 ? !!((context === null || context === void 0 ? void 0 : context.state.layout) && (0, import_useMedia.mediaKeyMatch)(size, context.state.layout)) : !!active);\n\t((_state = state).flatGroupKeys || (_state.flatGroupKeys = /* @__PURE__ */ new Set())).add(key);\n\t((_state1 = state).flatGroupMedia || (_state1.flatGroupMedia = /* @__PURE__ */ new Set())).add(size);\n\treturn true;\n}\nfunction getCondition(state, source) {\n\tvar out = {\n\t\tkey: \"\",\n\t\tactive: true,\n\t\temit: true,\n\t\tselector: \"\"\n\t};\n\tvar canonical = [];\n\tvar kinds = [];\n\tvar seenModifiers = /* @__PURE__ */ new Set();\n\tvar selfStateSpecificity = 0;\n\tvar start = 0;\n\tfor (var index = 0; index <= source.length; index++) {\n\t\tif (index !== source.length && source.charCodeAt(index) !== 58) continue;\n\t\tvar modifier = (0, import_runtime.canonicalClauseModifier)(source.slice(start, index));\n\t\tstart = index + 1;\n\t\tif (!modifier) return null;\n\t\tif (seenModifiers.has(modifier)) continue;\n\t\tseenModifiers.add(modifier);\n\t\tif (modifier.startsWith(\"group-\")) {\n\t\t\tif (!groupCondition(state, modifier, out)) return null;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"group\");\n\t\t\tcontinue;\n\t\t}\n\t\tif (modifier.charCodeAt(0) === 64) {\n\t\t\tif (!containerCondition(state, modifier, out)) return null;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"container\");\n\t\t\tcontinue;\n\t\t}\n\t\tif (modifier in stateSelectors || modifier === \"enter\" || modifier === \"exit\") {\n\t\t\tvar _out, _out1;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"state\");\n\t\t\tselfStateSpecificity++;\n\t\t\tvar selector = stateSelectors[modifier];\n\t\t\tif (!import_constants.isWeb && modifier !== \"hover\" && modifier !== \"press\" && modifier !== \"focus\" && modifier !== \"focus-visible\" && modifier !== \"focus-within\" && modifier !== \"disabled\" && modifier !== \"enter\" && modifier !== \"exit\") out.unsupportedState = modifier;\n\t\t\tif (modifier === \"enter\" || modifier === \"exit\") {\n\t\t\t\tvar cls = modifier === \"enter\" ? \".t_unmounted\" : \".t_exiting\";\n\t\t\t\tout.selector += `:is(${cls}, ${cls} *)`;\n\t\t\t\tout[modifier] = true;\n\t\t\t} else if (selector) out.selector += selector;\n\t\t\tif (modifier === \"hover\") ((_out = out).wrappers || (_out.wrappers = [])).push(\"@media (hover: hover)\");\n\t\t\t(_out1 = out).active && (_out1.active = stateIsActive(state, modifier));\n\t\t\tif (modifier === \"hover\" || modifier === \"press\" || modifier === \"focus\" || modifier === \"focus-visible\" || modifier === \"focus-within\") {\n\t\t\t\tvar _state;\n\t\t\t\t((_state = state).flatStateKeys || (_state.flatStateKeys = /* @__PURE__ */ new Set())).add(modifier);\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\t\tif (modifier in (state.conf.media || {})) {\n\t\t\tvar _state_flatMediaState;\n\t\t\tvar _out2, _out3, _state1;\n\t\t\tvar query = queryFor(state, modifier);\n\t\t\tif (!query) return null;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"media\");\n\t\t\t((_out2 = out).wrappers || (_out2.wrappers = [])).push(`@media ${query}`);\n\t\t\t(_out3 = out).active && (_out3.active = !!((_state_flatMediaState = state.flatMediaState) === null || _state_flatMediaState === void 0 ? void 0 : _state_flatMediaState[modifier]));\n\t\t\t((_state1 = state).flatMediaKeys || (_state1.flatMediaKeys = /* @__PURE__ */ new Set())).add(modifier);\n\t\t\tcontinue;\n\t\t}\n\t\tif ((0, import_runtime.isRootThemeName)(modifier) && modifier in (state.conf.themes || {})) {\n\t\t\tvar _state_flatThemeName;\n\t\t\tvar _out4;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"theme\");\n\t\t\tout.theme = modifier;\n\t\t\tout.selector += `:where(.t_${modifier}, .t_${modifier} *)`;\n\t\t\t(_out4 = out).active && (_out4.active = state.flatThemeName === modifier || ((_state_flatThemeName = state.flatThemeName) === null || _state_flatThemeName === void 0 ? void 0 : _state_flatThemeName.startsWith(`${modifier}_`)) === true);\n\t\t\tcontinue;\n\t\t}\n\t\tif (modifier === \"web\" || modifier === \"native\" || modifier === \"ios\" || modifier === \"android\" || modifier === \"tv\" || modifier === \"tvos\" || modifier === \"androidtv\") {\n\t\t\tvar _out5, _out6;\n\t\t\tcanonical.push(modifier);\n\t\t\tkinds.push(\"platform\");\n\t\t\tvar matches = platformMatches(modifier);\n\t\t\t(_out5 = out).active && (_out5.active = matches);\n\t\t\t(_out6 = out).emit && (_out6.emit = matches);\n\t\t\tcontinue;\n\t\t}\n\t\treturn null;\n\t}\n\tout.key = (0, import_runtime.clauseConditionSetKey)(canonical);\n\tout.precedence = (0, import_runtime.getClausePrecedenceKeyFromKinds)(canonical, kinds, precedenceOrderFor(state));\n\tout.classRepetitions = (0, import_runtime.clauseSubjectClassRepetitions)(out.precedence, selfStateSpecificity);\n\treturn out;\n}\nvar tokenLookup = {\n\tvalue: void 0,\n\tfromTheme: false,\n\tthemeKey: \"\"\n};\nfunction fillTokenLookup(value, fromTheme, themeKey) {\n\ttokenLookup.value = value;\n\ttokenLookup.fromTheme = fromTheme;\n\ttokenLookup.themeKey = themeKey;\n\treturn tokenLookup;\n}\nfunction tokenVariable(state, property, name) {\n\tvar _state_theme, _state_conf_themes_, _state_conf_themes, _state_conf_tokensParsed_space, _state_conf_tokensParsed_color;\n\tvar lookupName = name.charCodeAt(0) === 36 ? name.slice(1) : name;\n\tif (property === \"fontFamily\") {\n\t\tvar _state_conf_fontsParsed_lookupName;\n\t\tvar family = (_state_conf_fontsParsed_lookupName = state.conf.fontsParsed[lookupName]) === null || _state_conf_fontsParsed_lookupName === void 0 ? void 0 : _state_conf_fontsParsed_lookupName.family;\n\t\treturn family ? fillTokenLookup(family, false, lookupName) : void 0;\n\t}\n\tvar fontKey = property === \"fontSize\" ? \"size\" : property === \"fontWeight\" ? \"weight\" : property === \"lineHeight\" || property === \"letterSpacing\" ? property : void 0;\n\tif (fontKey) {\n\t\tvar _font_fontKey;\n\t\tvar font = state.conf.fontsParsed[state.fontFamily || state.conf.defaultFontToken] || state.conf.fontsParsed[state.conf.defaultFontToken];\n\t\tvar value = font === null || font === void 0 ? void 0 : (_font_fontKey = font[fontKey]) === null || _font_fontKey === void 0 ? void 0 : _font_fontKey[lookupName];\n\t\treturn value ? fillTokenLookup(value, false, lookupName) : void 0;\n\t}\n\tvar category = (0, import_tokenCategories.getTokenCategoryForProperty)(property);\n\tvar dot = lookupName.indexOf(\".\");\n\tif (dot !== -1) {\n\t\tvar prefix = lookupName.slice(0, dot);\n\t\tif (!category || prefix === category || prefix === \"color\") lookupName = lookupName.slice(dot + 1);\n\t}\n\tif (category) {\n\t\tvar _state_conf_tokensParsed_category;\n\t\tvar own = (_state_conf_tokensParsed_category = state.conf.tokensParsed[category]) === null || _state_conf_tokensParsed_category === void 0 ? void 0 : _state_conf_tokensParsed_category[lookupName];\n\t\tif (own) return fillTokenLookup(own, false, lookupName);\n\t\tfor (var _i = 0, _iter = [\n\t\t\t\"color\",\n\t\t\t\"space\",\n\t\t\t\"size\",\n\t\t\t\"radius\",\n\t\t\t\"zIndex\"\n\t\t]; _i < _iter.length; _i++) {\n\t\t\tvar sibling = _iter[_i];\n\t\t\tvar _state_conf_tokensParsed_sibling;\n\t\t\tif (sibling !== category && ((_state_conf_tokensParsed_sibling = state.conf.tokensParsed[sibling]) === null || _state_conf_tokensParsed_sibling === void 0 ? void 0 : _state_conf_tokensParsed_sibling[lookupName])) return;\n\t\t}\n\t} else {\n\t\tvar first = lookupName.charCodeAt(0);\n\t\tif (first >= 48 && first <= 57 || first === 43 || first === 45 || first === 46) return;\n\t}\n\tvar theme = ((_state_theme = state.theme) === null || _state_theme === void 0 ? void 0 : _state_theme[lookupName]) || ((_state_conf_themes = state.conf.themes) === null || _state_conf_themes === void 0 ? void 0 : (_state_conf_themes_ = _state_conf_themes[state.flatThemeName || \"\"]) === null || _state_conf_themes_ === void 0 ? void 0 : _state_conf_themes_[lookupName]);\n\tif (theme) return fillTokenLookup(theme, true, lookupName);\n\tif (category) return;\n\tvar token = ((_state_conf_tokensParsed_space = state.conf.tokensParsed.space) === null || _state_conf_tokensParsed_space === void 0 ? void 0 : _state_conf_tokensParsed_space[lookupName]) || ((_state_conf_tokensParsed_color = state.conf.tokensParsed.color) === null || _state_conf_tokensParsed_color === void 0 ? void 0 : _state_conf_tokensParsed_color[lookupName]);\n\treturn token ? fillTokenLookup(token, false, lookupName) : void 0;\n}\nfunction configuredValue(state, property, raw) {\n\tvar name = raw;\n\tvar opacity;\n\tvar slash = raw.lastIndexOf(\"/\");\n\tif (slash > 0) {\n\t\tvar amount = Number(raw.slice(slash + 1));\n\t\tif (Number.isInteger(amount) && amount >= 0 && amount <= 100) {\n\t\t\tname = raw.slice(0, slash);\n\t\t\topacity = amount;\n\t\t}\n\t}\n\tvar safeArea = (0, import_resolveSafeAreaVariable.resolveSafeAreaVariable)(name);\n\tif (safeArea !== void 0) {\n\t\tstate.flatUsesSafeArea = true;\n\t\treturn safeArea;\n\t}\n\tvar lookup = tokenVariable(state, property, name);\n\tif (!lookup || !(0, import_createVariable.isVariable)(lookup.value)) {\n\t\tvar _state_conf_tokensParsed_color;\n\t\tif (process.env.NODE_ENV === \"development\" && import_tokenCategories.tokenCategoryByProperty[property] && ((_state_conf_tokensParsed_color = state.conf.tokensParsed.color) === null || _state_conf_tokensParsed_color === void 0 ? void 0 : _state_conf_tokensParsed_color[name])) (0, import_warnOnce.warnOnce)(`\"${name}\" contributes to \"color\", not \"${property}\"; keeping it literal`);\n\t\treturn raw;\n\t}\n\tvar resolveValues = import_constants.isWeb && !state.flatShouldDoClasses && state.styleProps.resolveValues === \"auto\" ? \"value\" : state.styleProps.resolveValues;\n\tif (resolveValues === \"except-theme\" && lookup.fromTheme) return `${import_themeRef.THEME_REF_PREFIX}${lookup.themeKey}${opacity !== void 0 ? `/${opacity}` : \"\"}`;\n\tvar value = (0, import_resolveVariableValue.resolveVariableValue)(property, lookup.value, resolveValues);\n\tif (opacity !== void 0) value = import_constants.isWeb ? `color-mix(in srgb, ${value} ${opacity}%, transparent)` : (0, import_normalizeColor.normalizeColor)(value, opacity / 100);\n\treturn value;\n}\nvar letterFreeCallPattern = /^[A-Za-z-]+\\([^A-Za-z]*\\)$/;\nfunction resolveEmbeddedTokens(state, property, raw) {\n\tif (letterFreeCallPattern.test(raw)) return raw;\n\treturn raw.replace(/[$A-Za-z_][\\w.$-]*(?:\\/\\d+)?/g, function(word, index) {\n\t\tif (word.charCodeAt(0) !== 36) {\n\t\t\tvar before = raw.charCodeAt(index - 1);\n\t\t\tif (before >= 48 && before <= 57 || before === 35 || before === 45 && raw.charCodeAt(index - 2) === 45 || raw.charCodeAt(index + word.length) === 40) return word;\n\t\t}\n\t\tvar value = configuredValue(state, property, word);\n\t\treturn value === word ? word : String(value);\n\t});\n}\nfunction normalizeTransitionNames(state, raw) {\n\tvar quote = 0;\n\tvar depth = 0;\n\tvar copyFrom = 0;\n\tvar out = \"\";\n\tfor (var index = 0; index < raw.length; index++) {\n\t\tvar code = raw.charCodeAt(index);\n\t\tif (quote) {\n\t\t\tif (code === 92) index++;\n\t\t\telse if (code === quote) quote = 0;\n\t\t\tcontinue;\n\t\t}\n\t\tif (code === 34 || code === 39) {\n\t\t\tquote = code;\n\t\t\tcontinue;\n\t\t}\n\t\tif (code === 40) {\n\t\t\tdepth++;\n\t\t\tcontinue;\n\t\t}\n\t\tif (code === 41) {\n\t\t\tdepth--;\n\t\t\tcontinue;\n\t\t}\n\t\tif (depth || !(code >= 65 && code <= 90 || code >= 97 && code <= 122 || code === 95) || index > 1 && raw.charCodeAt(index - 1) === 45 && raw.charCodeAt(index - 2) === 45) continue;\n\t\tvar end = index + 1;\n\t\twhile (end < raw.length) {\n\t\t\tvar next = raw.charCodeAt(end);\n\t\t\tif (next >= 48 && next <= 57 || next >= 65 && next <= 90 || next >= 97 && next <= 122 || next === 45 || next === 95) end++;\n\t\t\telse break;\n\t\t}\n\t\tif (raw.charCodeAt(end) !== 40) {\n\t\t\tvar authored = raw.slice(index, end);\n\t\t\tvar property = state.conf.shorthands[authored] || authored;\n\t\t\tif (property === \"x\" || property === \"y\") property = \"translate\";\n\t\t\telse if (property === \"scaleX\" || property === \"scaleY\") property = \"scale\";\n\t\t\telse if (legacyTransformParts.has(property)) property = \"transform\";\n\t\t\tif (property !== authored || /[A-Z]/.test(property)) {\n\t\t\t\tout += raw.slice(copyFrom, index);\n\t\t\t\tout += property.replace(/[A-Z]/g, function(letter) {\n\t\t\t\t\treturn `-${letter.toLowerCase()}`;\n\t\t\t\t});\n\t\t\t\tcopyFrom = end;\n\t\t\t}\n\t\t}\n\t\tindex = end - 1;\n\t}\n\treturn copyFrom ? out + raw.slice(copyFrom) : raw;\n}\nfunction directStyleSignature(property, value) {\n\treturn `\u001f${property}\u001f${arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : \"\"}\u001e${String(value)}`;\n}\nfunction directAtomic(state, property, value, condition) {\n\tvar isDefault = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : false;\n\tvar _state;\n\tvar atomics = (_state = state).flatAtomics || (_state.flatAtomics = {});\n\tvar atomicKey = property.startsWith(\"transition\") ? \"transition\" : property;\n\tvar existing = atomics[atomicKey];\n\tvar contribution = directStyleSignature(property, value, (condition === null || condition === void 0 ? void 0 : condition.key) || \"\");\n\tvar signature = existing ? existing.signature + contribution : contribution;\n\tvar next = (0, import_getCSSStylesAtomic.getCSSStyleAtomic)(property, value, condition === null || condition === void 0 ? void 0 : condition.selector, condition === null || condition === void 0 ? void 0 : condition.wrappers, signature, true, atomicKey, condition === null || condition === void 0 ? void 0 : condition.classRepetitions);\n\tif (!next) return;\n\tvar identifier = next[import_helpers.StyleObjectIdentifier];\n\tvar nextRules = next[import_helpers.StyleObjectRules];\n\tvar slotted = condition || atomicKey === \"transition\";\n\tif (!existing) {\n\t\tvar atomic = {\n\t\t\tbaseRules: slotted ? 0 : nextRules.length,\n\t\t\tconditions: void 0,\n\t\t\tsignature,\n\t\t\tstyleObject: next\n\t\t};\n\t\tif (slotted) {\n\t\t\tvar _condition_precedence;\n\t\t\tatomic.conditions = { [atomicKey === \"transition\" ? `${(condition === null || condition === void 0 ? void 0 : condition.key) || \"\"}\\0${property}` : condition.key]: {\n\t\t\t\tcount: nextRules.length,\n\t\t\t\tindex: 0,\n\t\t\t\tprecedence: (_condition_precedence = condition === null || condition === void 0 ? void 0 : condition.precedence) !== null && _condition_precedence !== void 0 ? _condition_precedence : baseClausePrecedence,\n\t\t\t\tdefault: isDefault\n\t\t\t} };\n\t\t}\n\t\tatomics[atomicKey] = atomic;\n\t} else {\n\t\tvar previousIdentifier = existing.styleObject[import_helpers.StyleObjectIdentifier];\n\t\tvar rules = existing.styleObject[import_helpers.StyleObjectRules];\n\t\tif (!condition && !isDefault && existing.conditions) for (var key in existing.conditions) {\n\t\t\tvar entry = existing.conditions[key];\n\t\t\tif (!entry.default) continue;\n\t\t\trules.splice(entry.index, entry.count);\n\t\t\tdelete existing.conditions[key];\n\t\t\tfor (var otherKey in existing.conditions) {\n\t\t\t\tvar other = existing.conditions[otherKey];\n\t\t\t\tif (other.index > entry.index) other.index -= entry.count;\n\t\t\t}\n\t\t}\n\t\tif (previousIdentifier !== identifier) {\n\t\t\tvar oldSelector = `.${previousIdentifier}`;\n\t\t\tvar newSelector = `.${identifier}`;\n\t\t\tfor (var index = 0; index < rules.length; index++) rules[index] = rules[index].replaceAll(oldSelector, newSelector);\n\t\t}\n\t\tif (slotted) {\n\t\t\tvar _existing_conditions;\n\t\t\tvar _existing;\n\t\t\tvar slot = atomicKey === \"transition\" ? `${(condition === null || condition === void 0 ? void 0 : condition.key) || \"\"}\\0${property}` : condition.key;\n\t\t\tvar previous = (_existing_conditions = existing.conditions) === null || _existing_conditions === void 0 ? void 0 : _existing_conditions[slot];\n\t\t\tif (previous) {\n\t\t\t\trules.splice(previous.index, previous.count);\n\t\t\t\tif (existing.conditions) for (var key1 in existing.conditions) {\n\t\t\t\t\tvar entry1 = existing.conditions[key1];\n\t\t\t\t\tif (entry1 !== previous && entry1.index > previous.index) entry1.index -= previous.count;\n\t\t\t\t}\n\t\t\t\tdelete existing.conditions[slot];\n\t\t\t}\n\t\t\tvar _condition_precedence1;\n\t\t\tvar precedence = (_condition_precedence1 = condition === null || condition === void 0 ? void 0 : condition.precedence) !== null && _condition_precedence1 !== void 0 ? _condition_precedence1 : baseClausePrecedence;\n\t\t\tvar insertionIndex = rules.length;\n\t\t\tif (existing.conditions) {\n\t\t\t\tfor (var key2 in existing.conditions) {\n\t\t\t\t\tvar entry2 = existing.conditions[key2];\n\t\t\t\t\tif ((0, import_runtime.compareClausePrecedence)(entry2.precedence, precedence) > 0 && entry2.index < insertionIndex) insertionIndex = entry2.index;\n\t\t\t\t}\n\t\t\t\tfor (var key3 in existing.conditions) {\n\t\t\t\t\tvar entry3 = existing.conditions[key3];\n\t\t\t\t\tif (entry3.index >= insertionIndex) entry3.index += nextRules.length;\n\t\t\t\t}\n\t\t\t}\n\t\t\t((_existing = existing).conditions || (_existing.conditions = {}))[slot] = {\n\t\t\t\tcount: nextRules.length,\n\t\t\t\tindex: insertionIndex,\n\t\t\t\tprecedence,\n\t\t\t\tdefault: isDefault\n\t\t\t};\n\t\t\trules.splice(insertionIndex, 0, ...nextRules);\n\t\t} else {\n\t\t\tvar difference = nextRules.length - existing.baseRules;\n\t\t\trules.splice(0, existing.baseRules, ...nextRules);\n\t\t\tif (difference && existing.conditions) for (var key4 in existing.conditions) existing.conditions[key4].index += difference;\n\t\t\texisting.baseRules = nextRules.length;\n\t\t}\n\t\texisting.signature = signature;\n\t\texisting.styleObject[import_helpers.StyleObjectIdentifier] = identifier;\n\t\texisting.styleObject[1] = next[1];\n\t}\n\tstate.classNames[atomicKey] = identifier;\n}\nfunction emitBorderStyleDefault(state, property, condition) {\n\tvar _state_flatAtomics, _atomic_conditions;\n\tif (!import_constants.isWeb || !state.flatShouldDoClasses || state.styleProps.noNormalize === false) return;\n\tvar target = borderStyleDefaults[property];\n\tif (!target) return;\n\tvar atomic = (_state_flatAtomics = state.flatAtomics) === null || _state_flatAtomics === void 0 ? void 0 : _state_flatAtomics[target];\n\tif ((atomic === null || atomic === void 0 ? void 0 : atomic.baseRules) || state.classNames[target] && !atomic || condition && (atomic === null || atomic === void 0 ? void 0 : (_atomic_conditions = atomic.conditions) === null || _atomic_conditions === void 0 ? void 0 : _atomic_conditions[condition.key])) return;\n\tdirectAtomic(state, target, \"solid\", condition, true);\n}\nfunction flushDirectStyles(state) {\n\tvar clear = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : false;\n\tvar direct = state;\n\tvar atomics = direct.flatAtomics;\n\tif (!atomics) return;\n\tfor (var property in atomics) {\n\t\tvar styleObject = atomics[property].styleObject;\n\t\tvar identifier = styleObject[import_helpers.StyleObjectIdentifier];\n\t\tif ((0, import_insertStyleRule.shouldInsertStyleRules)(identifier)) {\n\t\t\t(0, import_insertStyleRule.updateRules)(identifier, styleObject[import_helpers.StyleObjectRules]);\n\t\t\tstate.flatRulesToInsert[identifier] = styleObject;\n\t\t}\n\t}\n\tif (clear) direct.flatAtomics = void 0;\n}\nfunction getDirectDynamicThemeAccess(state) {\n\treturn state.flatDynamicThemeAccess;\n}\nfunction emitProperty(state, property, value, condition, merge, originalValue, contextOnly) {\n\tvar _state_animationDriver, _state_flatActiveConditions;\n\tvar _state, _state1;\n\tvar direct = state;\n\tif (condition === null || condition === void 0 ? void 0 : condition.enter) ((_state = state).flatEnterKeys || (_state.flatEnterKeys = /* @__PURE__ */ new Set())).add(property);\n\tif (condition === null || condition === void 0 ? void 0 : condition.exit) ((_state1 = state).flatExitKeys || (_state1.flatExitKeys = /* @__PURE__ */ new Set())).add(property);\n\tif (!import_constants.isWeb && (condition === null || condition === void 0 ? void 0 : condition.theme)) {\n\t\tif (import_constants.supportsDynamicColorIOS && (0, import_getDynamicVal.isColorStyleKey)(property)) {\n\t\t\tvar _direct, _ref, _property;\n\t\t\tvar schemes = (_ref = (_direct = direct).flatDynamicColors || (_direct.flatDynamicColors = {}))[_property = property] || (_ref[_property] = {});\n\t\t\tschemes[condition.theme] = typeof originalValue === \"string\" && /^[a-z]+$/i.test(originalValue) ? originalValue : value;\n\t\t\tmerge(state, property, { dynamic: { ...schemes } }, 1, false, originalValue);\n\t\t\treturn;\n\t\t}\n\t\tdirect.flatDynamicThemeAccess = true;\n\t}\n\tif (contextOnly) {\n\t\tif (!condition || condition.active) {\n\t\t\tvar _state2;\n\t\t\t((_state2 = state).overriddenContextProps || (_state2.overriddenContextProps = {}))[property] = originalValue;\n\t\t}\n\t\treturn;\n\t}\n\tvar shouldPromoteAnimatedStyle = import_constants.isWeb && !condition && !state.flatShouldDoClasses && !state.styleProps.noMergeStyle && state.styleProps.isAnimated && !((_state_animationDriver = state.animationDriver) === null || _state_animationDriver === void 0 ? void 0 : _state_animationDriver.isReactNative) && property in import_helpers.nonAnimatableStyleProps;\n\tif (import_constants.isWeb && (state.flatShouldDoClasses || shouldPromoteAnimatedStyle)) {\n\t\tif (!condition) {\n\t\t\tif (state.style) delete state.style[property];\n\t\t}\n\t\tdirectAtomic(state, property, value, condition);\n\t\treturn;\n\t}\n\tif (condition) {\n\t\tvar _direct_flatPrecedence;\n\t\tvar _direct1, _state3;\n\t\tif (!condition.active) return;\n\t\tvar previous = (_direct_flatPrecedence = direct.flatPrecedence) === null || _direct_flatPrecedence === void 0 ? void 0 : _direct_flatPrecedence[property];\n\t\tif (previous && (0, import_runtime.compareClausePrecedence)(condition.precedence, previous) < 0) return;\n\t\t((_direct1 = direct).flatPrecedence || (_direct1.flatPrecedence = {}))[property] = condition.precedence;\n\t\t((_state3 = state).flatActiveConditions || (_state3.flatActiveConditions = {}))[property] = true;\n\t} else if ((_state_flatActiveConditions = state.flatActiveConditions) === null || _state_flatActiveConditions === void 0 ? void 0 : _state_flatActiveConditions[property]) return;\n\tmerge(state, property, value, 1, true, originalValue);\n}\nfunction splitComponents(value) {\n\tvar parts = [];\n\tvar start = 0;\n\tvar quote = 0;\n\tvar depth = 0;\n\tfor (var index = 0; index <= value.length; index++) {\n\t\tvar code = index === value.length ? 32 : value.charCodeAt(index);\n\t\tif (quote) {\n\t\t\tif (code === 92) index++;\n\t\t\telse if (code === quote) quote = 0;\n\t\t\tcontinue;\n\t\t}\n\t\tif (code === 34 || code === 39) quote = code;\n\t\telse if (code === 40) depth++;\n\t\telse if (code === 41) depth--;\n\t\telse if (!depth && code <= 32) {\n\t\t\tif (index > start) parts.push(value.slice(start, index));\n\t\t\tstart = index + 1;\n\t\t}\n\t}\n\treturn parts;\n}\nfunction emitBorder(state, property, raw, condition, merge, originalValue, contextOnly) {\n\tif (!import_constants.isWeb && (property === \"borderBlock\" || property === \"borderInline\")) {\n\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`RN has no logical border shorthand \"${property}\"; dropping it`);\n\t\treturn;\n\t}\n\tvar targets = borderTargets[property];\n\tvar width;\n\tvar style;\n\tvar color;\n\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\ttry {\n\t\tfor (var _iterator = splitComponents(raw)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\tvar part = _step.value;\n\t\t\tvar lower = part.toLowerCase();\n\t\t\tif (lineStyles.has(lower) || property === \"outline\" && lower === \"auto\") style = part;\n\t\t\telse if (lower === \"thin\" || lower === \"medium\" || lower === \"thick\" || /^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:[a-z%]+)?$/i.test(part) || /^(?:calc|var|min|max|clamp)\\(/i.test(part)) width = part;\n\t\t\telse color = part;\n\t\t}\n\t} catch (err) {\n\t\t_didIteratorError = true;\n\t\t_iteratorError = err;\n\t} finally {\n\t\ttry {\n\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t} finally {\n\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t}\n\t}\n\tif (style === \"none\" && width === void 0) width = \"0\";\n\tif (width !== void 0) {\n\t\tvar _iteratorNormalCompletion1 = true, _didIteratorError1 = false, _iteratorError1 = void 0;\n\t\ttry {\n\t\t\tfor (var _iterator1 = targets.width[Symbol.iterator](), _step1; !(_iteratorNormalCompletion1 = (_step1 = _iterator1.next()).done); _iteratorNormalCompletion1 = true) {\n\t\t\t\tvar target = _step1.value;\n\t\t\t\temitResolved(state, target, width, condition, merge, originalValue, contextOnly);\n\t\t\t}\n\t\t} catch (err) {\n\t\t\t_didIteratorError1 = true;\n\t\t\t_iteratorError1 = err;\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\tif (!_iteratorNormalCompletion1 && _iterator1.return != null) _iterator1.return();\n\t\t\t} finally {\n\t\t\t\tif (_didIteratorError1) throw _iteratorError1;\n\t\t\t}\n\t\t}\n\t}\n\tif (style !== void 0) {\n\t\tvar styleTargets = !import_constants.isWeb && property === \"border\" ? [\"borderStyle\"] : targets.style;\n\t\tvar _iteratorNormalCompletion2 = true, _didIteratorError2 = false, _iteratorError2 = void 0;\n\t\ttry {\n\t\t\tfor (var _iterator2 = styleTargets[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {\n\t\t\t\tvar target1 = _step2.value;\n\t\t\t\temitProperty(state, target1, style, condition, merge, originalValue, contextOnly);\n\t\t\t}\n\t\t} catch (err) {\n\t\t\t_didIteratorError2 = true;\n\t\t\t_iteratorError2 = err;\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\tif (!_iteratorNormalCompletion2 && _iterator2.return != null) _iterator2.return();\n\t\t\t} finally {\n\t\t\t\tif (_didIteratorError2) throw _iteratorError2;\n\t\t\t}\n\t\t}\n\t}\n\tif (color !== void 0) {\n\t\tvar _iteratorNormalCompletion3 = true, _didIteratorError3 = false, _iteratorError3 = void 0;\n\t\ttry {\n\t\t\tfor (var _iterator3 = targets.color[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {\n\t\t\t\tvar target2 = _step3.value;\n\t\t\t\temitResolved(state, target2, color, condition, merge, originalValue, contextOnly);\n\t\t\t}\n\t\t} catch (err) {\n\t\t\t_didIteratorError3 = true;\n\t\t\t_iteratorError3 = err;\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\tif (!_iteratorNormalCompletion3 && _iterator3.return != null) _iterator3.return();\n\t\t\t} finally {\n\t\t\t\tif (_didIteratorError3) throw _iteratorError3;\n\t\t\t}\n\t\t}\n\t}\n}\nfunction emitTextDecoration(state, raw, condition, merge, originalValue, contextOnly) {\n\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\ttry {\n\t\tfor (var _iterator = splitComponents(raw)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\tvar part = _step.value;\n\t\t\temitResolved(state, part === \"solid\" || part === \"double\" || part === \"dotted\" || part === \"dashed\" || part === \"wavy\" ? \"textDecorationStyle\" : part === \"underline\" || part === \"overline\" || part === \"line-through\" || part === \"none\" ? \"textDecorationLine\" : \"textDecorationColor\", part, condition, merge, originalValue, contextOnly);\n\t\t}\n\t} catch (err) {\n\t\t_didIteratorError = true;\n\t\t_iteratorError = err;\n\t} finally {\n\t\ttry {\n\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t} finally {\n\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t}\n\t}\n}\nfunction addComposition(state, property) {\n\tif (state.classNames[property]) return;\n\tvar value = property === \"translate\" ? \"var(--t-x, 0px) var(--t-y, 0px)\" : \"var(--t-scale-x, 1) var(--t-scale-y, 1)\";\n\tvar defaults = property === \"translate\" ? \"--t-x:0px;--t-y:0px\" : \"--t-scale-x:1;--t-scale-y:1\";\n\tvar styleObject = (0, import_getCSSStylesAtomic.getCSSStyleAtomic)(property, value, \"\", void 0, void 0, true);\n\tvar identifier = styleObject[import_helpers.StyleObjectIdentifier];\n\tstyleObject[import_helpers.StyleObjectRules].unshift(`:where(.${identifier}){${defaults}}`);\n\tif ((0, import_insertStyleRule.shouldInsertStyleRules)(identifier)) {\n\t\t(0, import_insertStyleRule.updateRules)(identifier, styleObject[import_helpers.StyleObjectRules]);\n\t\tstate.flatRulesToInsert[identifier] = styleObject;\n\t}\n\tstate.classNames[property] = identifier;\n}\nfunction emitTransform(state, property, value, condition, merge, originalValue, contextOnly) {\n\tif (!import_constants.isWeb || !state.flatShouldDoClasses) {\n\t\tif (!import_constants.isWeb && property === \"scale\") {\n\t\t\temitProperty(state, \"scaleX\", value, condition, merge, originalValue, contextOnly);\n\t\t\temitProperty(state, \"scaleY\", value, condition, merge, originalValue, contextOnly);\n\t\t} else emitProperty(state, property, value, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tvar targets = property === \"scale\" ? [\"--t-scale-x\", \"--t-scale-y\"] : [property === \"x\" ? \"--t-x\" : property === \"y\" ? \"--t-y\" : property === \"scaleX\" ? \"--t-scale-x\" : property === \"scaleY\" ? \"--t-scale-y\" : \"rotate\"];\n\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\ttry {\n\t\tfor (var _iterator = targets[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\tvar target = _step.value;\n\t\t\tvar targetValue = value;\n\t\t\tif (typeof targetValue === \"number\") {\n\t\t\t\tif (target === \"--t-x\" || target === \"--t-y\") targetValue = `${targetValue}px`;\n\t\t\t\telse if (target === \"rotate\") targetValue = `${targetValue}deg`;\n\t\t\t}\n\t\t\temitProperty(state, target, targetValue, condition, merge, originalValue, contextOnly);\n\t\t\tif (target === \"--t-x\" || target === \"--t-y\") addComposition(state, \"translate\");\n\t\t\telse if (target.startsWith(\"--t-scale\")) addComposition(state, \"scale\");\n\t\t}\n\t} catch (err) {\n\t\t_didIteratorError = true;\n\t\t_iteratorError = err;\n\t} finally {\n\t\ttry {\n\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t} finally {\n\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t}\n\t}\n}\nfunction emitResolved(state, property, raw, condition, merge, originalValue, contextOnly) {\n\tvar value = configuredValue(state, property, raw);\n\tif (value === raw && /[\\s,(]/.test(raw)) value = resolveEmbeddedTokens(state, property, raw);\n\tif ((!import_constants.isWeb || !state.flatShouldDoClasses) && typeof value === \"string\") {\n\t\tif (/^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:px|dp)$/i.test(value)) value = Number.parseFloat(value);\n\t\telse if (value !== \"\" && Number.isFinite(Number(value))) value = Number(value);\n\t}\n\temitProperty(state, property, value, condition, merge, originalValue, contextOnly);\n}\nfunction shadowUnit(part) {\n\treturn typeof part === \"number\" ? `${part}px` : part || \"0px\";\n}\nfunction emitWebShadow(state, property, value, merge, originalValue, contextOnly) {\n\tvar _state;\n\tvar shadow = (_state = state).flatWebShadow || (_state.flatWebShadow = {});\n\tshadow[property] = value;\n\tvar offset = shadow.shadowOffset || {\n\t\twidth: 0,\n\t\theight: 0\n\t};\n\tvar _shadow_shadowOpacity;\n\tvar color = (0, import_normalizeColor.normalizeColor)(shadow.shadowColor, (_shadow_shadowOpacity = shadow.shadowOpacity) !== null && _shadow_shadowOpacity !== void 0 ? _shadow_shadowOpacity : 1);\n\tif (!color) return;\n\tvar next = `${shadowUnit(offset.width)} ${shadowUnit(offset.height)} ${shadowUnit(shadow.shadowRadius)} ${color}`;\n\temitProperty(state, \"boxShadow\", state.flatBoxShadow ? `${state.flatBoxShadow}, ${next}` : next, null, merge, originalValue, contextOnly);\n}\nfunction emitWebTextShadow(state, property, value, merge, originalValue, contextOnly) {\n\tvar _state;\n\tvar shadow = (_state = state).flatTextShadow || (_state.flatTextShadow = {});\n\tshadow[property] = value;\n\tvar offset = shadow.textShadowOffset || {\n\t\twidth: 0,\n\t\theight: 0\n\t};\n\tif (!shadow.textShadowColor) return;\n\temitProperty(state, \"textShadow\", `${shadowUnit(offset.width)} ${shadowUnit(offset.height)} ${shadowUnit(shadow.textShadowRadius)} ${shadow.textShadowColor}`, null, merge, originalValue, contextOnly);\n}\nfunction emitValue(state, property, raw, condition, merge, originalValue, contextOnly) {\n\tif (typeof raw === \"string\") raw = raw.trim();\n\tif ((0, import_createVariable.isVariable)(raw)) raw = (0, import_resolveVariableValue.resolveVariableValue)(property, raw, import_constants.isWeb && !state.flatShouldDoClasses && state.styleProps.resolveValues === \"auto\" ? \"value\" : state.styleProps.resolveValues);\n\temitBorderStyleDefault(state, property, condition);\n\tif (typeof raw === \"string\" && (property === \"transition\" || property === \"transitionProperty\")) raw = normalizeTransitionNames(state, raw);\n\tif (legacyTransformParts.has(property)) {\n\t\tif (import_constants.isWeb && state.flatShouldDoClasses && state.classNames.transform) {\n\t\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`legacy transform part \"${property}\" is dropped because \"transform\" owns the property`);\n\t\t\treturn;\n\t\t}\n\t\tvar value = typeof raw === \"string\" ? configuredValue(state, property, raw) : raw;\n\t\tif (import_constants.isWeb && state.flatShouldDoClasses && !condition) {\n\t\t\tvar _direct;\n\t\t\tvar direct = state;\n\t\t\t((_direct = direct).flatLegacyTransforms || (_direct.flatLegacyTransforms = {}))[property] = value;\n\t\t\temitProperty(state, \"transform\", (0, import_transformsToString.transformsToString)(Object.keys(direct.flatLegacyTransforms).sort().map(function(key2) {\n\t\t\t\treturn { [key2]: direct.flatLegacyTransforms[key2] };\n\t\t\t})), null, merge, originalValue, contextOnly);\n\t\t} else if (condition && import_constants.isWeb && state.flatShouldDoClasses) emitProperty(state, \"transform\", `${property}(${value})`, condition, merge, originalValue, contextOnly);\n\t\telse merge(state, property, value, 1, false, originalValue);\n\t\treturn;\n\t}\n\tif (import_constants.isWeb && webShadowParts.has(property)) {\n\t\tvar value1 = typeof raw === \"string\" ? configuredValue(state, property, raw) : raw;\n\t\tif (state.flatShouldDoClasses) emitWebShadow(state, property, value1, merge, originalValue, contextOnly);\n\t\telse merge(state, property, value1, 1, false, originalValue);\n\t\treturn;\n\t}\n\tif (import_constants.isWeb && webTextShadowParts.has(property)) {\n\t\tvar value2 = typeof raw === \"string\" ? configuredValue(state, property, raw) : raw;\n\t\tif (state.flatShouldDoClasses) emitWebTextShadow(state, property, value2, merge, originalValue, contextOnly);\n\t\telse merge(state, property, value2, 1, false, originalValue);\n\t\treturn;\n\t}\n\tif (import_constants.isWeb && state.flatShouldDoClasses) {\n\t\tif (property === \"transform\") {\n\t\t\tvar direct1 = state;\n\t\t\tif (process.env.NODE_ENV === \"development\" && direct1.flatLegacyTransforms) for (var part in direct1.flatLegacyTransforms) (0, import_warnOnce.warnOnce)(`legacy transform part \"${part}\" is dropped because \"transform\" owns the property`);\n\t\t\tdirect1.flatLegacyTransforms = void 0;\n\t\t\tif (state.flatTransforms) {\n\t\t\t\tif (process.env.NODE_ENV === \"development\") for (var part1 in state.flatTransforms) (0, import_warnOnce.warnOnce)(`legacy transform part \"${part1}\" is dropped because \"transform\" owns the property`);\n\t\t\t\tstate.flatTransforms = void 0;\n\t\t\t}\n\t\t}\n\t}\n\tif (import_constants.isWeb && state.flatShouldDoClasses && property === \"transform\" && Array.isArray(raw)) raw = (0, import_transformsToString.transformsToString)(raw);\n\tif (typeof raw === \"string\" && property in borderTargets) {\n\t\temitBorder(state, property, raw, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (typeof raw === \"string\" && property === \"textDecoration\") {\n\t\temitTextDecoration(state, raw, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (typeof raw === \"string\" && property === \"background\") {\n\t\tvar parts = splitComponents(raw);\n\t\tif (parts.length === 1 && !/^(?:url|image-set|.*gradient)\\(/i.test(parts[0])) {\n\t\t\temitResolved(state, \"backgroundColor\", parts[0], condition, merge, originalValue, contextOnly);\n\t\t\treturn;\n\t\t}\n\t\tif (!import_constants.isWeb) {\n\t\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`native background cannot represent \"${raw}\"; dropping it`);\n\t\t\treturn;\n\t\t}\n\t}\n\tif (property === \"x\" || property === \"y\" || property === \"scale\" || property === \"scaleX\" || property === \"scaleY\" || property === \"rotate\") {\n\t\tvar value3 = typeof raw === \"string\" ? configuredValue(state, property, raw) : raw;\n\t\tif ((!import_constants.isWeb || !state.flatShouldDoClasses) && typeof value3 === \"string\" && !value3.startsWith(import_themeRef.THEME_REF_PREFIX)) {\n\t\t\tif (property === \"rotate\" && !/^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:deg|rad)$/i.test(value3)) {\n\t\t\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`native transform \"${property}\" cannot represent \"${value3}\"; dropping it`);\n\t\t\t\tif ((condition === null || condition === void 0 ? void 0 : condition.active) && state.flatTransforms) delete state.flatTransforms[property];\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif (/^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:px|dp)$/i.test(value3)) value3 = Number.parseFloat(value3);\n\t\t\telse if (Number.isFinite(Number(value3))) value3 = Number(value3);\n\t\t}\n\t\temitTransform(state, property, value3, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (import_constants.isWeb && !state.flatShouldDoClasses && !condition && property === \"borderRadius\") {\n\t\tif (typeof raw === \"string\") emitResolved(state, property, raw, condition, merge, originalValue, contextOnly);\n\t\telse emitProperty(state, property, raw, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (property === \"transform\" && typeof raw === \"string\") {\n\t\tvar transform = (0, import_parseNativeTransform.parseNativeTransform)(raw);\n\t\tif (transform) {\n\t\t\temitProperty(state, property, transform, condition, merge, originalValue, contextOnly);\n\t\t\treturn;\n\t\t}\n\t}\n\tvar value4 = raw;\n\tif (typeof raw === \"string\") {\n\t\tvalue4 = configuredValue(state, property, raw);\n\t\tif (value4 === raw && /[\\s,(]/.test(raw)) value4 = resolveEmbeddedTokens(state, property, raw);\n\t}\n\tif ((!import_constants.isWeb || !state.flatShouldDoClasses) && typeof value4 === \"string\") {\n\t\tif (/^-?(?:\\d+\\.?\\d*|\\.\\d+)(?:px|dp)$/i.test(value4)) value4 = Number.parseFloat(value4);\n\t\telse if (value4 !== \"\" && Number.isFinite(Number(value4))) value4 = Number(value4);\n\t}\n\tif (import_constants.isWeb && state.flatShouldDoClasses && property === \"boxShadow\" && !condition) state.flatBoxShadow = value4;\n\tif (typeof value4 === \"string\" && (property === \"backgroundImage\" || property === \"boxShadow\" || property === \"textShadow\")) {\n\t\tvar parsed = (0, import_parseNativeStyle.parseNativeStyle)(property, value4);\n\t\tif (parsed) {\n\t\t\tif (property === \"textShadow\") {\n\t\t\t\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\t\t\t\ttry {\n\t\t\t\t\tfor (var _iterator = parsed[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\t\t\t\tvar [key, parsedValue] = _step.value;\n\t\t\t\t\t\temitProperty(state, key, parsedValue, condition, merge, originalValue, contextOnly);\n\t\t\t\t\t}\n\t\t\t\t} catch (err) {\n\t\t\t\t\t_didIteratorError = true;\n\t\t\t\t\t_iteratorError = err;\n\t\t\t\t} finally {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else emitProperty(state, property === \"backgroundImage\" ? \"experimental_backgroundImage\" : property, parsed, condition, merge, originalValue, contextOnly);\n\t\t\treturn;\n\t\t}\n\t}\n\tif (!import_constants.isWeb && property === \"fontVariant\" && typeof value4 === \"string\") value4 = value4.split(/[,\\s]+/).filter(Boolean);\n\tvar expanded = state.styleProps.noExpand ? null : (0, import_expandStyle.expandStyle)(property, value4, state.conf.settings.styleCompat || \"web\");\n\tif (!expanded) {\n\t\temitProperty(state, property, value4, condition, merge, originalValue, contextOnly);\n\t\treturn;\n\t}\n\tif (typeof raw === \"string\" && expanded.length > 1) {\n\t\tvar parts1 = splitComponents(raw);\n\t\tif (parts1.length > 0 && parts1.length <= (expanded.length === 4 ? 4 : 2)) {\n\t\t\tfor (var index = 0; index < expanded.length; index++) {\n\t\t\t\tvar partIndex = index === 0 || parts1.length === 1 ? 0 : index === 1 || index === 3 && parts1.length < 4 ? 1 : index === 2 && parts1.length < 3 ? 0 : index;\n\t\t\t\temitResolved(state, expanded[index][0], parts1[partIndex], condition, merge, originalValue, contextOnly);\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t}\n\tfor (var index1 = 0; index1 < expanded.length; index1++) emitProperty(state, expanded[index1][0], expanded[index1][1], condition, merge, originalValue, contextOnly);\n}\nfunction emitSegment(state, property, source, start, end, condition, merge, originalValue, contextOnly) {\n\twhile (start < end && source.charCodeAt(start) <= 32) start++;\n\twhile (end > start && source.charCodeAt(end - 1) <= 32) end--;\n\tif (start === end) return false;\n\tif (!condition || condition.emit && (condition.active || import_constants.isWeb && state.flatShouldDoClasses || !import_constants.isWeb && condition.theme && import_constants.supportsDynamicColorIOS && (0, import_getDynamicVal.isColorStyleKey)(property))) {\n\t\tvar value = source.slice(start, end);\n\t\temitValue(state, property, value, condition, merge, value, contextOnly);\n\t}\n\treturn true;\n}\nfunction contributeStyleString(state, property, source, merge, originalValue) {\n\tvar contextOnly = arguments.length > 5 && arguments[5] !== void 0 ? arguments[5] : false;\n\tif (import_constants.isWeb && source.indexOf(\":\") !== -1 && (webShadowParts.has(property) || legacyTransformParts.has(property))) {\n\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnOnce)(`conditional \"${property}\" needs its composite property; dropping it`);\n\t\treturn true;\n\t}\n\tif (source.indexOf(\":\") === -1) {\n\t\temitValue(state, property, source, null, merge, originalValue !== null && originalValue !== void 0 ? originalValue : source, contextOnly);\n\t\treturn true;\n\t}\n\tvar conditions = [];\n\tvar starts = [];\n\tvar ends = [];\n\tvar pending = null;\n\tvar refused = \"\";\n\tvar lifecycle = false;\n\t(0, import_runtime.scanFlatValue)(source, {\n\t\tsegment(start, end, isBase) {\n\t\t\tif (start === end) {\n\t\t\t\tif (!isBase && !refused) refused = \"a conditional clause has no value\";\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tconditions.push(pending);\n\t\t\tstarts.push(start);\n\t\t\tends.push(end);\n\t\t},\n\t\tchain(start, end) {\n\t\t\tif (refused) return false;\n\t\t\tvar next = getCondition(state, source.slice(start, end));\n\t\t\tif (!next) {\n\t\t\t\trefused = `unknown modifier \"${source.slice(start, end)}\"`;\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tif (process.env.NODE_ENV === \"development\" && next.unsupportedState) (0, import_warnOnce.warnOnce)(`${property}: \"${next.unsupportedState}:\" has no native component-state source; dropping the clause`);\n\t\t\tpending = next;\n\t\t\tlifecycle || (lifecycle = !!(next.enter || next.exit));\n\t\t\treturn true;\n\t\t},\n\t\terror(code, index2) {\n\t\t\tif (refused) return;\n\t\t\trefused = code === \"invalid-character\" ? `\"${source[index2]}\" would end the declaration or rule` : code === \"unterminated-string\" ? \"an unterminated string\" : code === \"unterminated-comment\" ? \"an unterminated \\\"/*\\\" comment\" : code === \"stray-comment-close\" ? \"a stray \\\"*/\\\"\" : \"an unterminated \\\"(\\\"\";\n\t\t}\n\t});\n\tif (refused) {\n\t\tif (property === \"aspectRatio\") {\n\t\t\temitValue(state, property, source, null, merge, originalValue !== null && originalValue !== void 0 ? originalValue : source, contextOnly);\n\t\t\treturn true;\n\t\t}\n\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnRefusedValue)(property, source, refused);\n\t\treturn true;\n\t}\n\tvar hasBase = false;\n\tvar lastPayloadStart = 0;\n\tfor (var index = 0; index < conditions.length; index++) {\n\t\tvar condition = conditions[index];\n\t\tlastPayloadStart = starts[index];\n\t\tvar emitted = emitSegment(state, property, source, starts[index], ends[index], condition, merge, originalValue, contextOnly);\n\t\tif (!condition && emitted) hasBase = true;\n\t}\n\tif (process.env.NODE_ENV === \"development\" && !hasBase && conditions.length > 0 && (property in import_helpers.tokenCategories.color || property in import_tokenCategories.tokenCategoryByProperty) && splitComponents(source.slice(lastPayloadStart)).length > 1) (0, import_warnOnce.warnOnce)(`${property}=\"${source}\" has multiple values after its first conditional. Write the base value before the first conditional.`);\n\tif ((!import_constants.isWeb || !state.flatShouldDoClasses) && lifecycle && !hasBase) {\n\t\tvar value = property === \"opacity\" ? 1 : property === \"scale\" || property === \"scaleX\" || property === \"scaleY\" ? 1 : property === \"rotate\" ? \"0deg\" : property === \"x\" || property === \"y\" ? 0 : null;\n\t\tif (value !== null) emitValue(state, property, value, null, merge, value, contextOnly);\n\t}\n\treturn true;\n}\nfunction contributeFrontendValue(state, property, value, merge) {\n\tvar contextOnly = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : false;\n\tif (value.base !== null) emitValue(state, property, value.base, null, merge, value.base, contextOnly);\n\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\ttry {\n\t\tfor (var _iterator = value.clauses[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\tvar clause = _step.value;\n\t\t\tvar condition = getCondition(state, clause.modifiers.join(\":\"));\n\t\t\tif (condition && condition.emit && (condition.active || import_constants.isWeb && state.flatShouldDoClasses)) emitValue(state, property, clause.payload, condition, merge, clause.payload, contextOnly);\n\t\t}\n\t} catch (err) {\n\t\t_didIteratorError = true;\n\t\t_iteratorError = err;\n\t} finally {\n\t\ttry {\n\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t} finally {\n\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t}\n\t}\n\treturn true;\n}\nfunction contributeVariantClauseValue(state, property, value, conditionSource, merge, originalValue) {\n\tvar contextOnly = arguments.length > 6 && arguments[6] !== void 0 ? arguments[6] : false;\n\tvar condition = getCondition(state, conditionSource);\n\tif (!condition) {\n\t\tif (process.env.NODE_ENV === \"development\") (0, import_warnOnce.warnRefusedValue)(property, value, `unknown modifier \"${conditionSource}\"`);\n\t\treturn;\n\t}\n\tif (process.env.NODE_ENV === \"development\" && condition.unsupportedState) (0, import_warnOnce.warnOnce)(`${property}: \"${condition.unsupportedState}:\" has no native component-state source; dropping the clause`);\n\tif (condition.emit && (condition.active || import_constants.isWeb && state.flatShouldDoClasses)) emitValue(state, property, value, condition, merge, originalValue, contextOnly);\n}\nfunction contributeStyleValue(state, property, value, merge, originalValue) {\n\tvar contextOnly = arguments.length > 5 && arguments[5] !== void 0 ? arguments[5] : false;\n\tif (value === \"safe\" && (0, import_resolveSafeArea.isSafeAreaKey)(property)) {\n\t\tvar expanded = (0, import_resolveSafeArea.expandSafeAreaValue)(property);\n\t\tif (expanded) {\n\t\t\tstate.flatUsesSafeArea = true;\n\t\t\tvar _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n\t\t\ttry {\n\t\t\t\tfor (var _iterator = expanded[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\t\t\tvar [key, resolved] = _step.value;\n\t\t\t\t\temitValue(state, key, resolved, null, merge, originalValue !== null && originalValue !== void 0 ? originalValue : value, contextOnly);\n\t\t\t\t}\n\t\t\t} catch (err) {\n\t\t\t\t_didIteratorError = true;\n\t\t\t\t_iteratorError = err;\n\t\t\t} finally {\n\t\t\t\ttry {\n\t\t\t\t\tif (!_iteratorNormalCompletion && _iterator.return != null) _iterator.return();\n\t\t\t\t} finally {\n\t\t\t\t\tif (_didIteratorError) throw _iteratorError;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t}\n\tif (typeof value === \"string\") return contributeStyleString(state, property, value, merge, originalValue, contextOnly);\n\tif (value != null) {\n\t\temitValue(state, property, value, null, merge, originalValue !== null && originalValue !== void 0 ? originalValue : value, contextOnly);\n\t\treturn true;\n\t}\n\treturn false;\n}\nfunction clearDirectStyle(state, property) {\n\tvar direct = state;\n\tvar atomicKey = property.startsWith(\"transition\") ? \"transition\" : webShadowParts.has(property) ? \"boxShadow\" : webTextShadowParts.has(property) ? \"textShadow\" : legacyTransformParts.has(property) ? \"transform\" : property;\n\tif (direct.flatAtomics) delete direct.flatAtomics[atomicKey];\n\tdelete state.classNames[atomicKey];\n}\n//# sourceMappingURL=directStyle.js.map\n"],"mappings":"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"}
|
|
@@ -499,18 +499,6 @@ const getSplitStyles = (props, staticConfig, theme, themeName, componentState, s
|
|
|
499
499
|
}
|
|
500
500
|
if (!styleProps.noNormalize && !staticConfig.isReactNative && !staticConfig.isHOC && (!styleProps.isAnimated || driver?.inputStyle === "css") && Array.isArray(styleState.style?.transform)) styleState.style.transform = (0, import_transformsToString.transformsToString)(styleState.style.transform);
|
|
501
501
|
(0, import_directStyle.flushDirectStyles)(styleState);
|
|
502
|
-
if (!styleProps.noMergeStyle && styleState.style && !shouldDoClasses && styleProps.isAnimated && !driver?.isReactNative) {
|
|
503
|
-
if (!styleState.style["$$css"]) {
|
|
504
|
-
for (const key in styleState.style) if (key in import_helpers.nonAnimatableStyleProps) {
|
|
505
|
-
const atomicStyle = (0, import_getCSSStylesAtomic.getCSSStyleAtomic)(key, styleState.style[key], "", void 0, (0, import_directStyle.directStyleSignature)(key, styleState.style[key]), true);
|
|
506
|
-
delete styleState.style[key];
|
|
507
|
-
if (atomicStyle) {
|
|
508
|
-
addStyleToInsertRules(rulesToInsert, atomicStyle);
|
|
509
|
-
classNames[atomicStyle[import_helpers.StyleObjectProperty]] = atomicStyle[import_helpers.StyleObjectIdentifier];
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
}
|
|
514
502
|
if (process.env.NODE_ENV === "development" && (debug === "profile" || globalThis.time)) time`split-styles-pre-result`;
|
|
515
503
|
if (shouldTrackStyleTokenProvenance && styleState.style && styleState.tokenProvenance) {
|
|
516
504
|
const provenance = {};
|