tamagui 1.89.23 → 1.89.25
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 +54 -54
package/dist/native.js
CHANGED
|
@@ -3317,15 +3317,14 @@ var require_getStylesAtomic_native = __commonJS({
|
|
|
3317
3317
|
return to;
|
|
3318
3318
|
}, __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: !0 }), mod), getStylesAtomic_native_exports = {};
|
|
3319
3319
|
__export2(getStylesAtomic_native_exports, {
|
|
3320
|
-
|
|
3321
|
-
getAtomicStyle: () => getAtomicStyle,
|
|
3320
|
+
getStyleAtomic: () => getStyleAtomic,
|
|
3322
3321
|
getStylesAtomic: () => getStylesAtomic2,
|
|
3323
3322
|
styleToCSS: () => styleToCSS
|
|
3324
3323
|
});
|
|
3325
3324
|
module2.exports = __toCommonJS2(getStylesAtomic_native_exports);
|
|
3326
3325
|
var empty = () => {
|
|
3327
3326
|
console.warn("no-op native");
|
|
3328
|
-
}, getStylesAtomic2 = empty,
|
|
3327
|
+
}, getStylesAtomic2 = empty, getStyleAtomic = empty, styleToCSS = empty;
|
|
3329
3328
|
}
|
|
3330
3329
|
});
|
|
3331
3330
|
|
|
@@ -4104,7 +4103,7 @@ current`, {
|
|
|
4104
4103
|
continue;
|
|
4105
4104
|
}
|
|
4106
4105
|
if (shouldDoClasses && !isExit) {
|
|
4107
|
-
let pseudoStyles = (0, import_getStylesAtomic.
|
|
4106
|
+
let pseudoStyles = (0, import_getStylesAtomic.getStyleAtomic)(pseudoStyleObject, descriptor);
|
|
4108
4107
|
process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed("pseudo (classes)", key), (0, import_log.log)({ pseudoStyleObject, pseudoStyles }), console.groupEnd());
|
|
4109
4108
|
for (let psuedoStyle of pseudoStyles)
|
|
4110
4109
|
`${psuedoStyle.property}${PROP_SPLIT}${descriptor.name}` in usedKeys || psuedoStyle.identifier;
|
|
@@ -4179,7 +4178,7 @@ current`, {
|
|
|
4179
4178
|
`Found more important space for current media ${mediaKeyShort}: ${val} (importance: ${importance})`
|
|
4180
4179
|
));
|
|
4181
4180
|
}
|
|
4182
|
-
let mediaStyles = (0, import_getStylesAtomic.getStylesAtomic)(mediaStyle
|
|
4181
|
+
let mediaStyles = (0, import_getStylesAtomic.getStylesAtomic)(mediaStyle), priority = mediaStylesSeen;
|
|
4183
4182
|
mediaStylesSeen += 1;
|
|
4184
4183
|
for (let style of mediaStyles) {
|
|
4185
4184
|
let out = (0, import_createMediaStyle.createMediaStyle)(
|
|
@@ -5744,7 +5743,7 @@ ${JSON.stringify(variable, null, 2)}`
|
|
|
5744
5743
|
language
|
|
5745
5744
|
};
|
|
5746
5745
|
}
|
|
5747
|
-
let sep =
|
|
5746
|
+
let sep = configIn.cssStyleSeparator || "";
|
|
5748
5747
|
if (cssRuleSets.push(declarationsToRuleSet2(declarations)), fontDeclarations)
|
|
5749
5748
|
for (let key in fontDeclarations) {
|
|
5750
5749
|
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);
|