@tamagui/core 1.89.24 → 1.89.26
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 +5 -6
- package/dist/native.js.map +1 -1
- package/dist/test.native.js +5 -6
- package/dist/test.native.js.map +2 -2
- package/package.json +6 -6
package/dist/native.js
CHANGED
|
@@ -3478,15 +3478,14 @@ var require_getStylesAtomic_native = __commonJS({
|
|
|
3478
3478
|
return to;
|
|
3479
3479
|
}, __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: !0 }), mod), getStylesAtomic_native_exports = {};
|
|
3480
3480
|
__export2(getStylesAtomic_native_exports, {
|
|
3481
|
-
|
|
3482
|
-
getAtomicStyle: () => getAtomicStyle,
|
|
3481
|
+
getStyleAtomic: () => getStyleAtomic,
|
|
3483
3482
|
getStylesAtomic: () => getStylesAtomic,
|
|
3484
3483
|
styleToCSS: () => styleToCSS
|
|
3485
3484
|
});
|
|
3486
3485
|
module2.exports = __toCommonJS2(getStylesAtomic_native_exports);
|
|
3487
3486
|
var empty = () => {
|
|
3488
3487
|
console.warn("no-op native");
|
|
3489
|
-
}, getStylesAtomic = empty,
|
|
3488
|
+
}, getStylesAtomic = empty, getStyleAtomic = empty, styleToCSS = empty;
|
|
3490
3489
|
}
|
|
3491
3490
|
});
|
|
3492
3491
|
|
|
@@ -4265,7 +4264,7 @@ current`, {
|
|
|
4265
4264
|
continue;
|
|
4266
4265
|
}
|
|
4267
4266
|
if (shouldDoClasses && !isExit) {
|
|
4268
|
-
let pseudoStyles = (0, import_getStylesAtomic.
|
|
4267
|
+
let pseudoStyles = (0, import_getStylesAtomic.getStyleAtomic)(pseudoStyleObject, descriptor);
|
|
4269
4268
|
process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed("pseudo (classes)", key), (0, import_log.log)({ pseudoStyleObject, pseudoStyles }), console.groupEnd());
|
|
4270
4269
|
for (let psuedoStyle of pseudoStyles)
|
|
4271
4270
|
`${psuedoStyle.property}${PROP_SPLIT}${descriptor.name}` in usedKeys || psuedoStyle.identifier;
|
|
@@ -4340,7 +4339,7 @@ current`, {
|
|
|
4340
4339
|
`Found more important space for current media ${mediaKeyShort}: ${val} (importance: ${importance})`
|
|
4341
4340
|
));
|
|
4342
4341
|
}
|
|
4343
|
-
let mediaStyles = (0, import_getStylesAtomic.getStylesAtomic)(mediaStyle
|
|
4342
|
+
let mediaStyles = (0, import_getStylesAtomic.getStylesAtomic)(mediaStyle), priority = mediaStylesSeen;
|
|
4344
4343
|
mediaStylesSeen += 1;
|
|
4345
4344
|
for (let style of mediaStyles) {
|
|
4346
4345
|
let out = (0, import_createMediaStyle.createMediaStyle)(
|
|
@@ -5905,7 +5904,7 @@ ${JSON.stringify(variable, null, 2)}`
|
|
|
5905
5904
|
language
|
|
5906
5905
|
};
|
|
5907
5906
|
}
|
|
5908
|
-
let sep =
|
|
5907
|
+
let sep = configIn.cssStyleSeparator || "";
|
|
5909
5908
|
if (cssRuleSets.push(declarationsToRuleSet2(declarations)), fontDeclarations)
|
|
5910
5909
|
for (let key in fontDeclarations) {
|
|
5911
5910
|
let { name, declarations: declarations2, language = "default" } = fontDeclarations[key], fontSelector = `.font_${name}`, langSelector = `:root .t_lang-${name}-${language} ${fontSelector}`, selectors = language === "default" ? ` ${fontSelector}, ${langSelector}` : langSelector, specificRuleSet = declarationsToRuleSet2(declarations2, selectors);
|