tamagui 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 +3 -2
- package/dist/native.js.map +1 -1
- package/dist/test.native.js +3 -2
- package/dist/test.native.js.map +1 -1
- package/package.json +53 -53
package/dist/native.js
CHANGED
|
@@ -3969,7 +3969,7 @@ current`, {
|
|
|
3969
3969
|
val,
|
|
3970
3970
|
styleProps.noClassNames
|
|
3971
3971
|
), descriptor = import_pseudoDescriptors.pseudoDescriptors[key], isEnter = key === "enterStyle", isExit = key === "exitStyle";
|
|
3972
|
-
if (!descriptor
|
|
3972
|
+
if (!descriptor)
|
|
3973
3973
|
continue;
|
|
3974
3974
|
if ((!shouldDoClasses || IS_STATIC) && (pseudos ||= {}, pseudos[key] ||= {}, IS_STATIC)) {
|
|
3975
3975
|
Object.assign(pseudos[key], pseudoStyleObject);
|
|
@@ -3989,7 +3989,7 @@ current`, {
|
|
|
3989
3989
|
let val2 = pseudoStyleObject[pkey];
|
|
3990
3990
|
if (isDisabled) {
|
|
3991
3991
|
let defaultValues = animatableDefaults[pkey];
|
|
3992
|
-
defaultValues && !(pkey in usedKeys) && mergeStyle(styleState, pkey, defaultValues);
|
|
3992
|
+
defaultValues != null && !(pkey in usedKeys) && mergeStyle(styleState, pkey, defaultValues);
|
|
3993
3993
|
} else {
|
|
3994
3994
|
let curImportance = usedKeys[pkey] || 0, shouldMerge = importance >= curImportance;
|
|
3995
3995
|
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, {
|
|
@@ -11047,6 +11047,7 @@ var require_Dialog_native = __commonJS({
|
|
|
11047
11047
|
...props,
|
|
11048
11048
|
context,
|
|
11049
11049
|
ref: composedRefs,
|
|
11050
|
+
trapFocus: context.open,
|
|
11050
11051
|
disableOutsidePointerEvents: !0,
|
|
11051
11052
|
onCloseAutoFocus: (0, import_helpers.composeEventHandlers)(props.onCloseAutoFocus, (event) => {
|
|
11052
11053
|
var _a;
|