tamagui 1.109.5 → 1.109.6
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 +3 -2
- package/dist/native.js.map +2 -2
- package/dist/test.native.js +3 -2
- package/dist/test.native.js.map +2 -2
- package/package.json +54 -54
package/dist/native.js
CHANGED
|
@@ -7320,10 +7320,10 @@ var require_getVariantExtras_native = __commonJS({
|
|
|
7320
7320
|
tokens: conf.tokensParsed,
|
|
7321
7321
|
theme,
|
|
7322
7322
|
get fontFamily() {
|
|
7323
|
-
return (0, import_createVariable.getVariableValue)(styleState.fontFamily || styleState.curProps.fontFamily || styleState.conf.defaultFont);
|
|
7323
|
+
return (0, import_createVariable.getVariableValue)(styleState.fontFamily || styleState.curProps.fontFamily) || props.fontFamily || (0, import_createVariable.getVariableValue)(styleState.conf.defaultFont);
|
|
7324
7324
|
},
|
|
7325
7325
|
get font() {
|
|
7326
|
-
return fonts[this.fontFamily] ||
|
|
7326
|
+
return fonts[this.fontFamily] || (props.fontFamily ? void 0 : styleState.conf.defaultFont);
|
|
7327
7327
|
},
|
|
7328
7328
|
// TODO do this in splitstlye
|
|
7329
7329
|
// we avoid passing in default props for media queries because that would confuse things like SizableText.size:
|
|
@@ -18284,6 +18284,7 @@ var require_Accordion_native = __commonJS({
|
|
|
18284
18284
|
}, rest), {
|
|
18285
18285
|
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_web.View, {
|
|
18286
18286
|
position: "absolute",
|
|
18287
|
+
width: "100%",
|
|
18287
18288
|
//@ts-ignore
|
|
18288
18289
|
onLayout,
|
|
18289
18290
|
children
|