tamagui 1.125.7 → 1.125.8
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 +10 -9
- package/dist/native.js.map +3 -3
- package/dist/test.native.js +5 -7
- package/dist/test.native.js.map +3 -3
- package/package.json +55 -55
package/dist/native.js
CHANGED
|
@@ -2654,13 +2654,16 @@ var require_insertStyleRule_native = __commonJS({
|
|
|
2654
2654
|
};
|
|
2655
2655
|
}
|
|
2656
2656
|
}
|
|
2657
|
-
var tamaguiSelectorRegex =
|
|
2657
|
+
var tamaguiSelectorRegex = /\.tm_xxt/;
|
|
2658
2658
|
function getTamaguiSelector(rule) {
|
|
2659
2659
|
var collectThemes = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !1;
|
|
2660
2660
|
if (rule instanceof CSSStyleRule) {
|
|
2661
2661
|
var text = rule.selectorText;
|
|
2662
2662
|
if (text[0] === ":" && text[1] === "r" && tamaguiSelectorRegex.test(text)) {
|
|
2663
|
-
var id = getIdentifierFromTamaguiSelector(
|
|
2663
|
+
var id = getIdentifierFromTamaguiSelector(
|
|
2664
|
+
// next.js minifies it so its in front
|
|
2665
|
+
text.replace(tamaguiSelectorRegex, "")
|
|
2666
|
+
);
|
|
2664
2667
|
return collectThemes ? [
|
|
2665
2668
|
id,
|
|
2666
2669
|
rule,
|
|
@@ -3848,11 +3851,8 @@ var require_consoleLog_native = __commonJS({
|
|
|
3848
3851
|
return __copyProps2(__defProp2({}, "__esModule", {
|
|
3849
3852
|
value: !0
|
|
3850
3853
|
}), mod);
|
|
3851
|
-
},
|
|
3852
|
-
__export2(
|
|
3853
|
-
gc: function() {
|
|
3854
|
-
return gc;
|
|
3855
|
-
},
|
|
3854
|
+
}, consoleLog_native_exports = {};
|
|
3855
|
+
__export2(consoleLog_native_exports, {
|
|
3856
3856
|
groupCollapsed: function() {
|
|
3857
3857
|
return groupCollapsed;
|
|
3858
3858
|
},
|
|
@@ -3860,8 +3860,9 @@ var require_consoleLog_native = __commonJS({
|
|
|
3860
3860
|
return groupEnd;
|
|
3861
3861
|
}
|
|
3862
3862
|
});
|
|
3863
|
-
module2.exports = __toCommonJS2(
|
|
3864
|
-
var
|
|
3863
|
+
module2.exports = __toCommonJS2(consoleLog_native_exports);
|
|
3864
|
+
var groupEnd = function() {
|
|
3865
|
+
}, groupCollapsed = console.info;
|
|
3865
3866
|
}
|
|
3866
3867
|
});
|
|
3867
3868
|
|