tamagui 1.90.12 → 1.90.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 +1 -1
- package/dist/native.js.map +2 -2
- package/dist/test.native.js +1 -1
- package/dist/test.native.js.map +2 -2
- package/package.json +54 -54
package/dist/test.native.js
CHANGED
|
@@ -3600,7 +3600,7 @@ var require_ThemeManager_native = __commonJS({
|
|
|
3600
3600
|
var prefix = base.slice(0, i).join(import_constants22.THEME_NAME_SEPARATOR);
|
|
3601
3601
|
props.inverse && (prefix = inverseThemeName(prefix));
|
|
3602
3602
|
var potentials = [];
|
|
3603
|
-
if (prefix && prefix !== baseName && potentials.push(prefix), nextName && potentials.unshift(prefix ? "".concat(prefix, "_").concat(nextName) : nextName), i === 1) {
|
|
3603
|
+
if (prefix && prefix !== baseName && prefix.includes(nextName) && potentials.push(prefix), nextName && potentials.unshift(prefix ? "".concat(prefix, "_").concat(nextName) : nextName), i === 1) {
|
|
3604
3604
|
var lastSegment = potentials.findIndex(function(x) {
|
|
3605
3605
|
return !x.includes("_");
|
|
3606
3606
|
});
|