@tamagui/core 1.88.0 → 1.88.1
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 +2 -2
- package/dist/native.js.map +1 -1
- package/dist/test.native.js +2 -2
- package/dist/test.native.js.map +1 -1
- package/package.json +6 -6
package/dist/native.js
CHANGED
|
@@ -4129,7 +4129,7 @@ current`, {
|
|
|
4129
4129
|
val,
|
|
4130
4130
|
styleProps.noClassNames
|
|
4131
4131
|
), descriptor = import_pseudoDescriptors.pseudoDescriptors[key], isEnter = key === "enterStyle", isExit = key === "exitStyle";
|
|
4132
|
-
if (!descriptor
|
|
4132
|
+
if (!descriptor)
|
|
4133
4133
|
continue;
|
|
4134
4134
|
if ((!shouldDoClasses || IS_STATIC) && (pseudos ||= {}, pseudos[key] ||= {}, IS_STATIC)) {
|
|
4135
4135
|
Object.assign(pseudos[key], pseudoStyleObject);
|
|
@@ -4149,7 +4149,7 @@ current`, {
|
|
|
4149
4149
|
let val2 = pseudoStyleObject[pkey];
|
|
4150
4150
|
if (isDisabled) {
|
|
4151
4151
|
let defaultValues = animatableDefaults[pkey];
|
|
4152
|
-
defaultValues && !(pkey in usedKeys) && mergeStyle(styleState, pkey, defaultValues);
|
|
4152
|
+
defaultValues != null && !(pkey in usedKeys) && mergeStyle(styleState, pkey, defaultValues);
|
|
4153
4153
|
} else {
|
|
4154
4154
|
let curImportance = usedKeys[pkey] || 0, shouldMerge = importance >= curImportance;
|
|
4155
4155
|
shouldMerge && (pseudos ||= {}, pseudos[key] ||= {}, pseudos[key][pkey] = val2, mergeStyle(styleState, pkey, val2)), process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(" subKey", pkey, shouldMerge, {
|