tamagui 1.74.11 → 1.74.13

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/native.js CHANGED
@@ -852,7 +852,7 @@ var require_insertStyleRule_native = __commonJS({
852
852
  } catch (err) {
853
853
  console.groupCollapsed(
854
854
  `Error inserting rule into CSSStyleSheet: ${String(err)}`
855
- ), console.log({ rule, rulesToInsert }), console.trace(), console.groupEnd();
855
+ ), console.info({ rule, rulesToInsert }), console.trace(), console.groupEnd();
856
856
  }
857
857
  }
858
858
  }
@@ -2337,7 +2337,7 @@ var require_normalizeValueWithProperty_native = __commonJS({
2337
2337
  return;
2338
2338
  }
2339
2339
  let cssVal = cssRule.replace(/.*:/, "").replace(/;.*/, "").trim(), res;
2340
- return cssVal.startsWith("var(") ? res = cssVal : import_helpers.stylePropsUnitless[key] ? res = +cssVal : cssVal.endsWith("px") ? res = +cssVal.replace("px", "") : res = cssVal, rcache[cssRule] = res, process.env.NODE_ENV === "development" && typeof res == "number" && isNaN(res) && console.log("Tamagui invalid parsed value, NaN:", {
2340
+ return cssVal.startsWith("var(") ? res = cssVal : import_helpers.stylePropsUnitless[key] ? res = +cssVal : cssVal.endsWith("px") ? res = +cssVal.replace("px", "") : res = cssVal, rcache[cssRule] = res, process.env.NODE_ENV === "development" && typeof res == "number" && isNaN(res) && console.info("Tamagui invalid parsed value, NaN:", {
2341
2341
  res,
2342
2342
  cssVal,
2343
2343
  cssRule,
@@ -2596,7 +2596,7 @@ var require_propMapper_native = __commonJS({
2596
2596
  if (!variants)
2597
2597
  return;
2598
2598
  let variantValue = getVariantDefinition(variants[key], value, conf);
2599
- if (process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed(`\u2666\uFE0F\u2666\uFE0F\u2666\uFE0F resolve variant ${key}`), console.log({
2599
+ if (process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed(`\u2666\uFE0F\u2666\uFE0F\u2666\uFE0F resolve variant ${key}`), console.info({
2600
2600
  key,
2601
2601
  value,
2602
2602
  variantValue,
@@ -2613,12 +2613,12 @@ var require_propMapper_native = __commonJS({
2613
2613
  }
2614
2614
  if (typeof variantValue == "function") {
2615
2615
  let fn = variantValue, extras = (0, import_getVariantExtras.getVariantExtras)(styleState);
2616
- variantValue = fn(value, extras), process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed(" expanded functional variant", key), console.log({ fn, variantValue, extras }), console.groupEnd());
2616
+ variantValue = fn(value, extras), process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed(" expanded functional variant", key), console.info({ fn, variantValue, extras }), console.groupEnd());
2617
2617
  }
2618
2618
  let fontFamilyResult;
2619
2619
  if ((0, import_isObj.isObj)(variantValue)) {
2620
2620
  let fontFamilyUpdate = variantValue.fontFamily || variantValue[conf.inverseShorthands.fontFamily];
2621
- fontFamilyUpdate && (fontFamilyResult = getFontFamilyFromNameOrVariable(fontFamilyUpdate, conf), styleState.fontFamily = fontFamilyResult, process.env.NODE_ENV === "development" && debug === "verbose" && console.log(" updating font family", fontFamilyResult)), variantValue = resolveTokensAndVariants(
2621
+ fontFamilyUpdate && (fontFamilyResult = getFontFamilyFromNameOrVariable(fontFamilyUpdate, conf), styleState.fontFamily = fontFamilyResult, process.env.NODE_ENV === "development" && debug === "verbose" && console.info(" updating font family", fontFamilyResult)), variantValue = resolveTokensAndVariants(
2622
2622
  key,
2623
2623
  variantValue,
2624
2624
  styleProps,
@@ -2647,7 +2647,7 @@ var require_propMapper_native = __commonJS({
2647
2647
  var variableToFontNameCache = /* @__PURE__ */ new WeakMap(), fontFamilyCache = /* @__PURE__ */ new WeakMap(), getPropMappedFontFamily = (expanded) => expanded && fontFamilyCache.get(expanded), resolveTokensAndVariants = (key, value, styleProps, styleState, parentVariantKey) => {
2648
2648
  var _a;
2649
2649
  let { conf, staticConfig, debug, theme } = styleState, { variants } = staticConfig, res = {};
2650
- process.env.NODE_ENV === "development" && debug === "verbose" && console.log(" - resolveTokensAndVariants", key, value);
2650
+ process.env.NODE_ENV === "development" && debug === "verbose" && console.info(" - resolveTokensAndVariants", key, value);
2651
2651
  for (let _key in value) {
2652
2652
  let subKey = conf.shorthands[_key] || _key, val = value[_key];
2653
2653
  if (styleProps.noExpand)
@@ -2678,7 +2678,7 @@ var require_propMapper_native = __commonJS({
2678
2678
  }
2679
2679
  if ((0, import_isObj.isObj)(val)) {
2680
2680
  let subObject = resolveTokensAndVariants(subKey, val, styleProps, styleState, key);
2681
- process.env.NODE_ENV === "development" && debug === "verbose" && console.log("object", subKey, subObject), res[subKey] ??= {}, Object.assign(res[subKey], subObject);
2681
+ process.env.NODE_ENV === "development" && debug === "verbose" && console.info("object", subKey, subObject), res[subKey] ??= {}, Object.assign(res[subKey], subObject);
2682
2682
  } else
2683
2683
  res[subKey] = val;
2684
2684
  process.env.NODE_ENV === "development" && debug && ((_a = res[subKey]) == null ? void 0 : _a[0]) === "$" && console.warn(
@@ -2719,7 +2719,7 @@ var require_propMapper_native = __commonJS({
2719
2719
  return value;
2720
2720
  let { theme, conf = (0, import_config.getConfig)(), context, fontFamily } = styleState, tokensParsed = conf.tokensParsed, valOrVar, hasSet = !1;
2721
2721
  if (theme && value in theme)
2722
- process.env.NODE_ENV === "development" && styleState.debug === "verbose" && console.log(` - getting theme value for ${key} from ${value}`), valOrVar = theme[value], hasSet = !0;
2722
+ process.env.NODE_ENV === "development" && styleState.debug === "verbose" && console.info(` - getting theme value for ${key} from ${value}`), valOrVar = theme[value], hasSet = !0;
2723
2723
  else if (value in conf.specificTokens)
2724
2724
  hasSet = !0, valOrVar = conf.specificTokens[value];
2725
2725
  else {
@@ -2752,9 +2752,9 @@ var require_propMapper_native = __commonJS({
2752
2752
  }
2753
2753
  if (hasSet) {
2754
2754
  let out = resolveVariableValue(key, valOrVar, resolveAs);
2755
- return process.env.NODE_ENV === "development" && styleState.debug === "verbose" && console.log("resolved", resolveAs, valOrVar.get, out), out;
2755
+ return process.env.NODE_ENV === "development" && styleState.debug === "verbose" && console.info("resolved", resolveAs, valOrVar.get, out), out;
2756
2756
  }
2757
- return process.env.NODE_ENV === "development" && import_isDevTools.isDevTools && styleState.debug === "verbose" && (console.groupCollapsed(" \uFE52 propMap (val)", key, value), console.log({ valOrVar, theme, hasSet }, theme ? theme[key] : ""), console.groupEnd()), value;
2757
+ return process.env.NODE_ENV === "development" && import_isDevTools.isDevTools && styleState.debug === "verbose" && (console.groupCollapsed(" \uFE52 propMap (val)", key, value), console.info({ valOrVar, theme, hasSet }, theme ? theme[key] : ""), console.groupEnd()), value;
2758
2758
  };
2759
2759
  function resolveVariableValue(key, valOrVar, resolveValues) {
2760
2760
  if (resolveValues === "none")
@@ -2817,7 +2817,7 @@ var require_getSplitStyles_native = __commonJS({
2817
2817
  context,
2818
2818
  debug
2819
2819
  };
2820
- process.env.NODE_ENV === "development" && debug && debug !== "profile" && import_constants.isClient && (console.groupCollapsed("getSplitStyles (collapsed)"), console.log({
2820
+ process.env.NODE_ENV === "development" && debug && debug !== "profile" && import_constants.isClient && (console.groupCollapsed("getSplitStyles (collapsed)"), console.info({
2821
2821
  props,
2822
2822
  staticConfig,
2823
2823
  shouldDoClasses,
@@ -2886,7 +2886,7 @@ var require_getSplitStyles_native = __commonJS({
2886
2886
  isHOC && (parentStaticConfig == null ? void 0 : parentStaticConfig.variants) && keyInit in parentStaticConfig.variants || (inlineProps == null ? void 0 : inlineProps.has(keyInit)), parentVariant = (_a = parentStaticConfig == null ? void 0 : parentStaticConfig.variants) == null ? void 0 : _a[keyInit], isHOCShouldPassThrough = !!(isHOC && (isShorthand || isValidStyleKeyInit || isMediaOrPseudo || parentVariant || keyInit in skipProps)), shouldPassThrough = shouldPassProp || isHOCShouldPassThrough;
2887
2887
  if (process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed(
2888
2888
  `\u{1F539}\u{1F539}\u{1F539}\u{1F539} ${keyOg}${keyInit !== keyOg ? ` (shorthand for ${keyInit})` : ""} ${shouldPassThrough ? "(pass)" : ""} \u{1F539}\u{1F539}\u{1F539}\u{1F539}`
2889
- ), console.log({ isVariant, valInit, shouldPassProp }), import_constants.isClient && console.log({
2889
+ ), console.info({ isVariant, valInit, shouldPassProp }), import_constants.isClient && console.info({
2890
2890
  variants,
2891
2891
  variant: variants == null ? void 0 : variants[keyInit],
2892
2892
  isVariant,
@@ -2903,7 +2903,7 @@ var require_getSplitStyles_native = __commonJS({
2903
2903
  if (next && (styleState.fontFamily = next), process.env.NODE_ENV === "development" && debug === "verbose") {
2904
2904
  console.groupCollapsed(" \u{1F4A0} expanded", keyInit, valInit);
2905
2905
  try {
2906
- !import_constants.isServer && import_isDevTools.isDevTools && (console.log({
2906
+ !import_constants.isServer && import_isDevTools.isDevTools && (console.info({
2907
2907
  expanded,
2908
2908
  styleProps,
2909
2909
  componentState,
@@ -2914,7 +2914,7 @@ var require_getSplitStyles_native = __commonJS({
2914
2914
  theme,
2915
2915
  usedKeys: { ...usedKeys },
2916
2916
  curProps: { ...styleState.curProps }
2917
- }), console.log("expanded", expanded, `
2917
+ }), console.info("expanded", expanded, `
2918
2918
  usedKeys`, { ...usedKeys }, `
2919
2919
  current`, {
2920
2920
  ...style
@@ -2927,7 +2927,7 @@ current`, {
2927
2927
  for (let [key, val] of expanded)
2928
2928
  if (!(val == null || key in usedKeys)) {
2929
2929
  if (isPseudo = key in import_helpers.validPseudoKeys, isMedia = !isPseudo && !isValidStyleKeyInit && (0, import_useMedia.isMediaKey)(key), isMediaOrPseudo = isMedia || isPseudo, isVariant = variants && key in variants, (inlineProps != null && inlineProps.has(key) || IS_STATIC && inlineWhenUnflattened != null && inlineWhenUnflattened.has(key)) && (viewProps[key] = props[key] ?? val), styleProps.noExpand && isPseudo || isHOC && (isMediaOrPseudo || ((_b = parentStaticConfig == null ? void 0 : parentStaticConfig.variants) == null ? void 0 : _b[keyInit]))) {
2930
- passDownProp(viewProps, key, val, isMediaOrPseudo), process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed(` - passing down prop ${key}`), console.log({ val, after: { ...viewProps[key] } }), console.groupEnd());
2930
+ passDownProp(viewProps, key, val, isMediaOrPseudo), process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed(` - passing down prop ${key}`), console.info({ val, after: { ...viewProps[key] } }), console.groupEnd());
2931
2931
  continue;
2932
2932
  }
2933
2933
  if (isPseudo) {
@@ -2950,12 +2950,12 @@ current`, {
2950
2950
  }
2951
2951
  if (shouldDoClasses && !isEnter && !isExit) {
2952
2952
  let pseudoStyles = (0, import_getStylesAtomic.generateAtomicStyles)(pseudoStyleObject, descriptor);
2953
- process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed("pseudo (classes)", key), console.log({ pseudoStyleObject, pseudoStyles }), console.groupEnd());
2953
+ process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed("pseudo (classes)", key), console.info({ pseudoStyleObject, pseudoStyles }), console.groupEnd());
2954
2954
  for (let psuedoStyle of pseudoStyles)
2955
2955
  `${psuedoStyle.property}${PROP_SPLIT}${descriptor.name}` in usedKeys || psuedoStyle.identifier;
2956
2956
  } else {
2957
2957
  let descriptorKey = descriptor.stateKey || descriptor.name, pseudoState = componentState[descriptorKey], isDisabled = isExit ? !styleProps.isExiting : !pseudoState;
2958
- import_constants.isWeb && !import_constants.isClient && isEnter && (isDisabled = !1), process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed("pseudo", key, { isDisabled }), console.log(pseudoStyleObject, {
2958
+ import_constants.isWeb && !import_constants.isClient && isEnter && (isDisabled = !1), process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed("pseudo", key, { isDisabled }), console.info(pseudoStyleObject, {
2959
2959
  isDisabled,
2960
2960
  descriptorKey,
2961
2961
  descriptor,
@@ -2972,7 +2972,7 @@ current`, {
2972
2972
  }
2973
2973
  } else {
2974
2974
  let curImportance = usedKeys[pkey] || 0, shouldMerge = importance >= curImportance;
2975
- shouldMerge && (pseudos ||= {}, pseudos[key] ||= {}, pseudos[key][pkey] = val2, mergeStyle(styleState, pkey, val2)), process.env.NODE_ENV === "development" && debug === "verbose" && console.log(" subKey", pkey, shouldMerge, {
2975
+ shouldMerge && (pseudos ||= {}, pseudos[key] ||= {}, pseudos[key][pkey] = val2, mergeStyle(styleState, pkey, val2)), process.env.NODE_ENV === "development" && debug === "verbose" && console.info(" subKey", pkey, shouldMerge, {
2976
2976
  importance,
2977
2977
  curImportance,
2978
2978
  pkey,
@@ -3009,7 +3009,7 @@ current`, {
3009
3009
  // TODO try true like pseudo
3010
3010
  !1
3011
3011
  ), mediaKeyShort = key.slice(1);
3012
- process.env.NODE_ENV === "development" && debug === "verbose" && console.log(` \u{1F4FA} ${key}`, {
3012
+ process.env.NODE_ENV === "development" && debug === "verbose" && console.info(` \u{1F4FA} ${key}`, {
3013
3013
  key,
3014
3014
  val,
3015
3015
  mediaStyle,
@@ -3026,7 +3026,7 @@ current`, {
3026
3026
  usedKeys,
3027
3027
  !0
3028
3028
  );
3029
- importance && (space = val.space, usedKeys.space = importance, process.env.NODE_ENV === "development" && debug === "verbose" && console.log(
3029
+ importance && (space = val.space, usedKeys.space = importance, process.env.NODE_ENV === "development" && debug === "verbose" && console.info(
3030
3030
  `Found more important space for current media ${mediaKeyShort}: ${val} (importance: ${importance})`
3031
3031
  ));
3032
3032
  }
@@ -3110,7 +3110,7 @@ current`, {
3110
3110
  if (process.env.NODE_ENV === "development" && debug === "verbose") {
3111
3111
  console.groupCollapsed(" \u2714\uFE0F expand complete", keyInit);
3112
3112
  try {
3113
- console.log("style", { ...style }), console.log("transforms", { ...transforms }), console.log("viewProps", { ...viewProps });
3113
+ console.info("style", { ...style }), console.info("transforms", { ...transforms }), console.info("viewProps", { ...viewProps });
3114
3114
  } catch {
3115
3115
  }
3116
3116
  console.groupEnd();
@@ -3142,13 +3142,14 @@ current`, {
3142
3142
  let overrideFace = (_g = (_f = faceInfo[style.fontWeight]) == null ? void 0 : _f[style.fontStyle || "normal"]) == null ? void 0 : _g.val;
3143
3143
  overrideFace && (style.fontFamily = overrideFace, styleState.fontFamily = overrideFace, delete style.fontWeight, delete style.fontStyle);
3144
3144
  }
3145
- process.env.NODE_ENV === "development" && debug && debug !== "profile" && console.log(`Found fontFamily native: ${style.fontFamily}`, faceInfo);
3145
+ process.env.NODE_ENV === "development" && debug && debug !== "profile" && console.info(`Found fontFamily native: ${style.fontFamily}`, faceInfo);
3146
3146
  }
3147
3147
  if (className && (classNames.className = className), process.env.NODE_ENV === "development" && debug === "verbose" && import_isDevTools.isDevTools) {
3148
3148
  console.groupCollapsed(" \u{1F539} ===>");
3149
3149
  try {
3150
3150
  let logs = {
3151
3151
  ...result,
3152
+ className,
3152
3153
  componentState,
3153
3154
  transforms,
3154
3155
  viewProps,
@@ -3157,7 +3158,7 @@ current`, {
3157
3158
  parentSplitStyles
3158
3159
  };
3159
3160
  for (let key in logs)
3160
- console.log(key, logs[key]);
3161
+ console.info(key, logs[key]);
3161
3162
  } catch {
3162
3163
  }
3163
3164
  console.groupEnd();
@@ -3459,7 +3460,7 @@ var require_ThemeManager_native = __commonJS({
3459
3460
  let base = parentName.split(import_constants2.THEME_NAME_SEPARATOR), lastSegment = base[base.length - 1], isParentComponentTheme = parentName && lastSegment[0].toUpperCase() === lastSegment[0];
3460
3461
  isParentComponentTheme && base.pop();
3461
3462
  let parentBaseTheme = isParentComponentTheme ? base.slice(0, base.length).join(import_constants2.THEME_NAME_SEPARATOR) : parentName, max2 = base.length, min2 = componentName && !nextName ? max2 : 0;
3462
- process.env.NODE_ENV === "development" && typeof props.debug == "string" && (console.groupCollapsed("ThemeManager.getState()"), console.log({
3463
+ process.env.NODE_ENV === "development" && typeof props.debug == "string" && (console.groupCollapsed("ThemeManager.getState()"), console.info({
3463
3464
  props,
3464
3465
  parentName,
3465
3466
  parentBaseTheme,
@@ -3494,7 +3495,7 @@ var require_ThemeManager_native = __commonJS({
3494
3495
  potentials = [...componentPotentials, ...potentials, ...allComponentThemes];
3495
3496
  }
3496
3497
  let found = potentials.find((t) => t in themes);
3497
- if (process.env.NODE_ENV === "development" && typeof props.debug == "string" && console.log(" - ", { found, potentials, parentManager }), found) {
3498
+ if (process.env.NODE_ENV === "development" && typeof props.debug == "string" && console.info(" - ", { found, potentials, parentManager }), found) {
3498
3499
  result = {
3499
3500
  name: found,
3500
3501
  theme: themes[found],
@@ -3582,7 +3583,7 @@ var require_useTheme_native = __commonJS({
3582
3583
  import_constants.isServer ? void 0 : () => {
3583
3584
  var _a, _b;
3584
3585
  let next = ((_a = props.shouldUpdate) == null ? void 0 : _a.call(props)) ?? (keys.current.length > 0 ? !0 : void 0);
3585
- return process.env.NODE_ENV === "development" && props.debug && props.debug !== "profile" && console.log(" \u{1F3A8} useTheme() shouldUpdate?", next, {
3586
+ return process.env.NODE_ENV === "development" && props.debug && props.debug !== "profile" && console.info(" \u{1F3A8} useTheme() shouldUpdate?", next, {
3586
3587
  shouldUpdateProp: (_b = props.shouldUpdate) == null ? void 0 : _b.call(props),
3587
3588
  keys: [...keys.current]
3588
3589
  }), next;
@@ -3596,14 +3597,14 @@ var require_useTheme_native = __commonJS({
3596
3597
  If this is intended and you are using Tamagui without any themes, you can disable this warning by setting the environment variable TAMAGUI_DISABLE_NO_THEME_WARNING=1`
3597
3598
  );
3598
3599
  let themeProxied = (0, import_react2.useMemo)(() => !themeManager || !(state != null && state.theme) ? {} : getThemeProxied(state, props.deopt, themeManager, keys.current, props.debug), [state, themeManager, props.deopt, props.debug]);
3599
- return process.env.NODE_ENV === "development" && props.debug === "verbose" && (console.groupCollapsed(" \u{1F539} useTheme =>", state == null ? void 0 : state.name), console.log("returning state", changedThemeState, "from props", props), console.groupEnd()), [changedThemeState, themeProxied];
3600
+ return process.env.NODE_ENV === "development" && props.debug === "verbose" && (console.groupCollapsed(" \u{1F539} useTheme =>", state == null ? void 0 : state.name), console.info("returning state", changedThemeState, "from props", props), console.groupEnd()), [changedThemeState, themeProxied];
3600
3601
  };
3601
3602
  function getThemeProxied({ theme, name }, deopt = !1, themeManager, keys, debug) {
3602
3603
  if (!theme)
3603
3604
  return {};
3604
3605
  let config = (0, import_config.getConfig)();
3605
3606
  function track(key) {
3606
- keys && !keys.includes(key) && (keys.push(key), process.env.NODE_ENV === "development" && debug && console.log(` \u{1F3A8} useTheme() tracking new key: ${key}`));
3607
+ keys && !keys.includes(key) && (keys.push(key), process.env.NODE_ENV === "development" && debug && console.info(` \u{1F3A8} useTheme() tracking new key: ${key}`));
3607
3608
  }
3608
3609
  return (0, import_createProxy.createProxy)(theme, {
3609
3610
  has(_, key) {
@@ -3686,7 +3687,7 @@ If this is intended and you are using Tamagui without any themes, you can disabl
3686
3687
  forced && setThemeState((prev) => createState(prev, !0));
3687
3688
  }), disposeChangeListener = parentManager == null ? void 0 : parentManager.onChangeTheme((name, manager) => {
3688
3689
  let force = (shouldUpdate == null ? void 0 : shouldUpdate()) || props.deopt || props["disable-child-theme"], shouldTryUpdate = force ?? !!(keys != null && keys.length || isNewTheme);
3689
- process.env.NODE_ENV === "development" && props.debug && console.log(" \u{1F538} onChange", themeManager.id, {
3690
+ process.env.NODE_ENV === "development" && props.debug && console.info(" \u{1F538} onChange", themeManager.id, {
3690
3691
  force,
3691
3692
  shouldTryUpdate,
3692
3693
  props,
@@ -3755,7 +3756,7 @@ If this is intended and you are using Tamagui without any themes, you can disabl
3755
3756
  if (process.env.NODE_ENV === "development" && props.debug && import_constants.isClient) {
3756
3757
  console.groupCollapsed(` \u{1F537} ${themeManager2.id} useChangeThemeEffect createState`);
3757
3758
  let parentState = { ...parentManager == null ? void 0 : parentManager.state }, parentId = parentManager == null ? void 0 : parentManager.id, themeManagerState = { ...themeManager2.state };
3758
- console.log({
3759
+ console.info({
3759
3760
  props,
3760
3761
  parentState,
3761
3762
  parentId,
@@ -4080,7 +4081,7 @@ var require_createComponent_native = __commonJS({
4080
4081
  (0, import_config.onConfiguredOnce)((conf) => {
4081
4082
  if (config = conf, !tamaguiConfig && (tamaguiConfig = conf, !initialTheme)) {
4082
4083
  let next = conf.themes[Object.keys(conf.themes)[0]];
4083
- initialTheme = (0, import_proxyThemeVariables.proxyThemeVariables)(next), process.env.NODE_ENV === "development" && (initialTheme || console.log("Warning: Missing theme"));
4084
+ initialTheme = (0, import_proxyThemeVariables.proxyThemeVariables)(next), process.env.NODE_ENV === "development" && (initialTheme || console.info("Warning: Missing theme"));
4084
4085
  }
4085
4086
  });
4086
4087
  let {
@@ -4091,7 +4092,7 @@ var require_createComponent_native = __commonJS({
4091
4092
  validStyles: validStyles2 = {},
4092
4093
  variants = {}
4093
4094
  } = staticConfig, defaultComponentClassName = `is_${staticConfig.componentName}`, defaultProps = staticConfig.defaultProps;
4094
- process.env.NODE_ENV === "development" && (_a = staticConfig.defaultProps) != null && _a.debug && process.env.IS_STATIC !== "is_static" && console.log(`\u{1F41B} [${staticConfig.componentName || "Component"}]`, {
4095
+ process.env.NODE_ENV === "development" && (_a = staticConfig.defaultProps) != null && _a.debug && process.env.IS_STATIC !== "is_static" && console.info(`\u{1F41B} [${staticConfig.componentName || "Component"}]`, {
4095
4096
  staticConfig,
4096
4097
  defaultProps,
4097
4098
  defaultPropsKeyOrder: defaultProps ? Object.keys(defaultProps) : []
@@ -4116,8 +4117,8 @@ var require_createComponent_native = __commonJS({
4116
4117
  propVal === void 0 ? contextValue && (key in validStyles2 || key in variants) && (styledContextProps ||= {}, styledContextProps[key] = contextValue[key]) : (overriddenContextProps ||= {}, overriddenContextProps[key] = propVal);
4117
4118
  }
4118
4119
  }
4119
- let curDefaultProps = styledContextProps ? { ...defaultProps, ...styledContextProps } : defaultProps, props;
4120
- curDefaultProps ? props = (0, import_mergeProps.mergeProps)(curDefaultProps, propsIn) : props = propsIn;
4120
+ let curDefaultProps = styledContextProps ? { ...defaultProps, ...styledContextProps } : defaultProps, props = propsIn;
4121
+ curDefaultProps && (props = (0, import_mergeProps.mergeProps)(curDefaultProps, propsIn));
4121
4122
  let debugProp = props.debug, componentName = props.componentName || staticConfig.componentName;
4122
4123
  process.env.NODE_ENV === "development" && import_constants.isClient && (0, import_react2.useEffect)(() => {
4123
4124
  let overlay = null, debugVisualizerHandler = (show = !1) => {
@@ -4201,7 +4202,7 @@ var require_createComponent_native = __commonJS({
4201
4202
  "background: green; color: white;"
4202
4203
  ), import_constants.isServer || (console.groupCollapsed(
4203
4204
  `Info (collapsed): ${state.press || state.pressIn ? "PRESSED " : ""}${state.hover ? "HOVERED " : ""}${state.focus ? "FOCUSED" : " "}`
4204
- ), console.log({
4205
+ ), console.info({
4205
4206
  propsIn,
4206
4207
  props,
4207
4208
  state,
@@ -4255,14 +4256,14 @@ var require_createComponent_native = __commonJS({
4255
4256
  keys: mediaListeningKeys
4256
4257
  });
4257
4258
  let isAnimatedReactNativeWeb = hasAnimationProp && isReactNative;
4258
- if (process.env.NODE_ENV === "development" && debugProp && debugProp !== "profile" && (console.groupCollapsed(">>>"), console.log(
4259
+ if (process.env.NODE_ENV === "development" && debugProp && debugProp !== "profile" && (console.groupCollapsed(">>>"), console.info(
4259
4260
  "props in",
4260
4261
  propsIn,
4261
4262
  "mapped to",
4262
4263
  props,
4263
4264
  "in order",
4264
4265
  Object.keys(props)
4265
- ), console.log("splitStyles", splitStyles), console.log("media", { shouldListenForMedia, isMediaArray, mediaListeningKeys }), console.log("className", Object.values(splitStyles.classNames)), import_constants.isClient && console.log("ref", hostRef, "(click to view)"), console.groupEnd(), debugProp === "break"))
4266
+ ), console.info("splitStyles", splitStyles), console.info("media", { shouldListenForMedia, isMediaArray, mediaListeningKeys }), console.info("className", Object.values(splitStyles.classNames)), import_constants.isClient && console.info("ref", hostRef, "(click to view)"), console.groupEnd(), debugProp === "break"))
4266
4267
  debugger;
4267
4268
  let {
4268
4269
  viewProps: viewPropsIn,
@@ -4424,7 +4425,7 @@ If you meant to do this, you can disable this warning - either change untilMeasu
4424
4425
  delayPressOut: viewProps.delayPressOut,
4425
4426
  focusable: viewProps.focusable ?? !0,
4426
4427
  minPressDuration: 0
4427
- }), process.env.NODE_ENV === "development" && time && time`events`, process.env.NODE_ENV === "development" && debugProp === "verbose" && console.log("events", { events, isHoverable, attachPress }), (_k = (_j = import_setupHooks.hooks).useEvents) == null || _k.call(_j, viewProps, events, splitStyles, setStateShallow, staticConfig);
4428
+ }), process.env.NODE_ENV === "development" && time && time`events`, process.env.NODE_ENV === "development" && debugProp === "verbose" && console.info("events", { events, isHoverable, attachPress }), (_k = (_j = import_setupHooks.hooks).useEvents) == null || _k.call(_j, viewProps, events, splitStyles, setStateShallow, staticConfig);
4428
4429
  let direction = props.spaceDirection || "both";
4429
4430
  process.env.NODE_ENV === "development" && time && time`hooks`;
4430
4431
  let content = !children || asChild ? children : spacedChildren2({
@@ -4471,10 +4472,10 @@ If you meant to do this, you can disable this warning - either change untilMeasu
4471
4472
  if (process.env.NODE_ENV === "development" && debugProp && debugProp !== "profile") {
4472
4473
  console.groupCollapsed(`render <${typeof elementType == "string" ? elementType : "Component"} /> with props`);
4473
4474
  try {
4474
- console.log("viewProps", viewProps), console.log("viewPropsOrder", Object.keys(viewProps));
4475
+ console.info("viewProps", viewProps), console.info("viewPropsOrder", Object.keys(viewProps));
4475
4476
  for (let key in viewProps)
4476
- console.log(" - ", key, viewProps[key]);
4477
- console.log("children", content), typeof window < "u" && console.log({
4477
+ console.info(" - ", key, viewProps[key]);
4478
+ console.info("children", content), typeof window < "u" && console.info({
4478
4479
  viewProps,
4479
4480
  state,
4480
4481
  styleProps,
@@ -4629,7 +4630,7 @@ If you meant to do this, you can disable this warning - either change untilMeasu
4629
4630
  })
4630
4631
  ));
4631
4632
  }
4632
- return process.env.NODE_ENV === "development" && props.debug && console.log(" Spaced children", final, props), final;
4633
+ return process.env.NODE_ENV === "development" && props.debug && console.info(" Spaced children", final, props), final;
4633
4634
  }
4634
4635
  function createSpacer({ key, direction, space, spaceFlex }) {
4635
4636
  return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
@@ -5171,7 +5172,7 @@ ${runtimeStyles}`;
5171
5172
  // const tokens = [...getToken(tokens.size[0])]
5172
5173
  // .spacer-sm + ._dsp_contents._dsp-sm-hidden { margin-left: -var(--${}) }
5173
5174
  };
5174
- return (0, import_useMedia.configureMedia)(config), (0, import_config.setConfig)(config), import_config.configListeners.size && (import_config.configListeners.forEach((cb) => cb(config)), import_config.configListeners.clear()), createdConfigs.set(config, !0), process.env.NODE_ENV === "development" && ((_a = process.env.DEBUG) != null && _a.startsWith("tamagui") && console.log("Tamagui config:", config), globalThis.Tamagui || (globalThis.Tamagui = import_Tamagui.Tamagui)), config;
5175
+ return (0, import_useMedia.configureMedia)(config), (0, import_config.setConfig)(config), import_config.configListeners.size && (import_config.configListeners.forEach((cb) => cb(config)), import_config.configListeners.clear()), createdConfigs.set(config, !0), process.env.NODE_ENV === "development" && ((_a = process.env.DEBUG) != null && _a.startsWith("tamagui") && console.info("Tamagui config:", config), globalThis.Tamagui || (globalThis.Tamagui = import_Tamagui.Tamagui)), config;
5175
5176
  }
5176
5177
  function getThemesDeduped(themes) {
5177
5178
  let dedupedThemes = [], existing = /* @__PURE__ */ new Map();
@@ -8163,7 +8164,7 @@ var require_index_native20 = __commonJS({
8163
8164
  fontSize,
8164
8165
  lineHeight
8165
8166
  };
8166
- return process.env.NODE_ENV === "development" && props.debug && props.debug === "verbose" && (console.groupCollapsed(" \u{1F539} getFontSized", sizeTokenIn, sizeToken), console.log({ style, props, font }), console.groupEnd()), style;
8167
+ return process.env.NODE_ENV === "development" && props.debug && props.debug === "verbose" && (console.groupCollapsed(" \u{1F539} getFontSized", sizeTokenIn, sizeToken), console.info({ style, props, font }), console.groupEnd()), style;
8167
8168
  }, cache = /* @__PURE__ */ new WeakMap();
8168
8169
  function getDefaultSizeToken(font) {
8169
8170
  if (typeof font == "object" && cache.has(font))
@@ -9106,7 +9107,7 @@ var require_GorhomPortal_native = __commonJS({
9106
9107
  }), state;
9107
9108
  }, removePortal = (state, hostName, portalName) => {
9108
9109
  if (!(hostName in state))
9109
- return console.log(
9110
+ return console.info(
9110
9111
  `Failed to remove portal '${portalName}', '${hostName}' was not registered!`
9111
9112
  ), state;
9112
9113
  let index = state[hostName].findIndex((item) => item.name === portalName);
@@ -15199,7 +15200,7 @@ var require_Popover_native = __commonJS({
15199
15200
  }
15200
15201
  function PopoverContentPortal(props) {
15201
15202
  let { __scopePopover } = props, zIndex = props.zIndex ?? 15e4, context = usePopoverContext(__scopePopover), popperContext = (0, import_popper.usePopperContext)(__scopePopover || POPOVER_SCOPE), themeName = (0, import_core13.useThemeName)(), contents = props.children;
15202
- return (import_react_native4.Platform.OS === "android" || import_react_native4.Platform.OS === "ios") && (contents = /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(PopoverRepropagateContext, { popperContext, context, children: props.children })), /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_portal2.Portal, { zIndex, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_core13.Theme, { forceClassName: !0, name: themeName, children: [
15203
+ return (import_react_native4.Platform.OS === "android" || import_react_native4.Platform.OS === "ios") && (contents = /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(PopoverRepropagateContext, { popperContext, context, children: props.children })), /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_portal2.Portal, { zIndex, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_core13.Theme, { name: themeName, children: [
15203
15204
  !!context.open && !context.breakpointActive && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
15204
15205
  import_stacks3.YStack,
15205
15206
  {