tamagui 1.88.18 → 1.88.19
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 +179 -169
- package/dist/native.js.map +2 -2
- package/dist/test.native.js +155 -144
- package/dist/test.native.js.map +2 -2
- package/package.json +54 -54
package/dist/native.js
CHANGED
|
@@ -3935,8 +3935,14 @@ var require_getSplitStyles_native = __commonJS({
|
|
|
3935
3935
|
style[keyInit] = valInit;
|
|
3936
3936
|
continue;
|
|
3937
3937
|
}
|
|
3938
|
-
let
|
|
3939
|
-
if (
|
|
3938
|
+
let avoidPropMap = isMediaOrPseudo || !isVariant && !isValidStyleKeyInit, expanded = avoidPropMap ? null : (0, import_propMapper.propMapper)(keyInit, valInit, styleState);
|
|
3939
|
+
if (!avoidPropMap) {
|
|
3940
|
+
if (!expanded)
|
|
3941
|
+
continue;
|
|
3942
|
+
let next = (0, import_propMapper.getPropMappedFontFamily)(expanded);
|
|
3943
|
+
next && (styleState.fontFamily = next);
|
|
3944
|
+
}
|
|
3945
|
+
if (process.env.NODE_ENV === "development" && debug === "verbose") {
|
|
3940
3946
|
console.groupCollapsed(" \u{1F4A0} expanded", keyInit, valInit);
|
|
3941
3947
|
try {
|
|
3942
3948
|
!import_constants4.isServer && import_isDevTools.isDevTools && ((0, import_log.log)({
|
|
@@ -3959,192 +3965,195 @@ current`, {
|
|
|
3959
3965
|
}
|
|
3960
3966
|
console.groupEnd();
|
|
3961
3967
|
}
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3968
|
+
let key = keyInit, val = valInit, max2 = expanded ? expanded.length : 1;
|
|
3969
|
+
for (let i = 0; i < max2; i++) {
|
|
3970
|
+
if (expanded) {
|
|
3971
|
+
let [k, v] = expanded[i];
|
|
3972
|
+
key = k, val = v;
|
|
3973
|
+
}
|
|
3974
|
+
if (!(val == null || key in usedKeys)) {
|
|
3975
|
+
if (isPseudo = key in import_helpers.validPseudoKeys, isMedia = !isPseudo && !isValidStyleKeyInit && (0, import_useMedia.isMediaKey)(key), isMediaOrPseudo = !!(isMedia || isPseudo), isVariant = variants && key in variants, (inlineProps != null && inlineProps.has(key) || IS_STATIC && inlineWhenUnflattened != null && inlineWhenUnflattened.has(key)) && (viewProps[key] = props[key] ?? val), styleProps.noExpand && isPseudo || isHOC && (isMediaOrPseudo || ((_b = parentStaticConfig == null ? void 0 : parentStaticConfig.variants) == null ? void 0 : _b[keyInit]))) {
|
|
3976
|
+
passDownProp(viewProps, key, val, isMediaOrPseudo), process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed(` - passing down prop ${key}`), (0, import_log.log)({ val, after: { ...viewProps[key] } }), console.groupEnd());
|
|
3977
|
+
continue;
|
|
3978
|
+
}
|
|
3979
|
+
if (isPseudo) {
|
|
3980
|
+
if (!val)
|
|
3981
|
+
continue;
|
|
3982
|
+
let pseudoStyleObject = getSubStyle(
|
|
3983
|
+
styleState,
|
|
3984
|
+
key,
|
|
3985
|
+
val,
|
|
3986
|
+
styleProps.noClassNames
|
|
3987
|
+
), descriptor = import_pseudoDescriptors.pseudoDescriptors[key], isEnter = key === "enterStyle", isExit = key === "exitStyle";
|
|
3988
|
+
if (!descriptor)
|
|
3989
|
+
continue;
|
|
3990
|
+
if ((!shouldDoClasses || IS_STATIC) && (pseudos || (pseudos = {}), pseudos[key] || (pseudos[key] = {}), IS_STATIC)) {
|
|
3991
|
+
Object.assign(pseudos[key], pseudoStyleObject);
|
|
3967
3992
|
continue;
|
|
3968
3993
|
}
|
|
3969
|
-
if (
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
let
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
let importance = descriptor.priority;
|
|
3994
|
-
for (let pkey in pseudoStyleObject) {
|
|
3995
|
-
let val2 = pseudoStyleObject[pkey];
|
|
3996
|
-
if (isDisabled) {
|
|
3997
|
-
let defaultValues = animatableDefaults[pkey];
|
|
3998
|
-
defaultValues != null && !(pkey in usedKeys) && !(pkey in styleState.style) && mergeStyle(styleState, pkey, defaultValues);
|
|
3999
|
-
} else {
|
|
4000
|
-
let curImportance = usedKeys[pkey] || 0, shouldMerge = importance >= curImportance;
|
|
4001
|
-
shouldMerge && (pseudos || (pseudos = {}), pseudos[key] || (pseudos[key] = {}), pseudos[key][pkey] = val2, mergeStyle(styleState, pkey, val2)), process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(" subKey", pkey, shouldMerge, {
|
|
4002
|
-
importance,
|
|
4003
|
-
curImportance,
|
|
4004
|
-
pkey,
|
|
4005
|
-
val: val2,
|
|
4006
|
-
transforms: { ...styleState.transforms }
|
|
4007
|
-
});
|
|
4008
|
-
}
|
|
3994
|
+
if (shouldDoClasses && !isExit) {
|
|
3995
|
+
let pseudoStyles = (0, import_getStylesAtomic.generateAtomicStyles)(pseudoStyleObject, descriptor);
|
|
3996
|
+
process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed("pseudo (classes)", key), (0, import_log.log)({ pseudoStyleObject, pseudoStyles }), console.groupEnd());
|
|
3997
|
+
for (let psuedoStyle of pseudoStyles)
|
|
3998
|
+
`${psuedoStyle.property}${PROP_SPLIT}${descriptor.name}` in usedKeys || psuedoStyle.identifier;
|
|
3999
|
+
}
|
|
4000
|
+
if (!shouldDoClasses || isExit || isEnter) {
|
|
4001
|
+
let descriptorKey = descriptor.stateKey || descriptor.name, isDisabled = componentState[descriptorKey] === !1;
|
|
4002
|
+
isExit && (isDisabled = !styleProps.isExiting), isEnter && (isDisabled = componentState.unmounted === "should-enter" ? !0 : !componentState.unmounted), process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed("pseudo", key, { isDisabled }), (0, import_log.log)({ pseudoStyleObject, isDisabled, descriptor, componentState }), console.groupEnd());
|
|
4003
|
+
let importance = descriptor.priority;
|
|
4004
|
+
for (let pkey in pseudoStyleObject) {
|
|
4005
|
+
let val2 = pseudoStyleObject[pkey];
|
|
4006
|
+
if (isDisabled) {
|
|
4007
|
+
let defaultValues = animatableDefaults[pkey];
|
|
4008
|
+
defaultValues != null && !(pkey in usedKeys) && !(pkey in styleState.style) && mergeStyle(styleState, pkey, defaultValues);
|
|
4009
|
+
} else {
|
|
4010
|
+
let curImportance = usedKeys[pkey] || 0, shouldMerge = importance >= curImportance;
|
|
4011
|
+
shouldMerge && (pseudos || (pseudos = {}), pseudos[key] || (pseudos[key] = {}), pseudos[key][pkey] = val2, mergeStyle(styleState, pkey, val2)), process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(" subKey", pkey, shouldMerge, {
|
|
4012
|
+
importance,
|
|
4013
|
+
curImportance,
|
|
4014
|
+
pkey,
|
|
4015
|
+
val: val2,
|
|
4016
|
+
transforms: { ...styleState.transforms }
|
|
4017
|
+
});
|
|
4009
4018
|
}
|
|
4010
|
-
if (!isDisabled)
|
|
4011
|
-
for (let key2 in val) {
|
|
4012
|
-
let k = shorthands[key2] || key2;
|
|
4013
|
-
usedKeys[k] = Math.max(importance, usedKeys[k] || 0);
|
|
4014
|
-
}
|
|
4015
4019
|
}
|
|
4020
|
+
if (!isDisabled)
|
|
4021
|
+
for (let key2 in val) {
|
|
4022
|
+
let k = shorthands[key2] || key2;
|
|
4023
|
+
usedKeys[k] = Math.max(importance, usedKeys[k] || 0);
|
|
4024
|
+
}
|
|
4025
|
+
}
|
|
4026
|
+
continue;
|
|
4027
|
+
}
|
|
4028
|
+
if (isMedia) {
|
|
4029
|
+
if (!val)
|
|
4016
4030
|
continue;
|
|
4031
|
+
if (isMedia === "platform") {
|
|
4032
|
+
let platform = key.slice(10);
|
|
4033
|
+
if (
|
|
4034
|
+
// supports web, ios, android
|
|
4035
|
+
platform !== import_constants4.currentPlatform && // supports web, native
|
|
4036
|
+
platform !== "native"
|
|
4037
|
+
)
|
|
4038
|
+
continue;
|
|
4017
4039
|
}
|
|
4018
|
-
|
|
4019
|
-
|
|
4040
|
+
hasMedia || (hasMedia = !0);
|
|
4041
|
+
let mediaStyle = getSubStyle(
|
|
4042
|
+
styleState,
|
|
4043
|
+
key,
|
|
4044
|
+
val,
|
|
4045
|
+
// TODO try true like pseudo
|
|
4046
|
+
!1
|
|
4047
|
+
), mediaKeyShort = key.slice(1);
|
|
4048
|
+
process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(` \u{1F4FA} ${key}`, {
|
|
4049
|
+
key,
|
|
4050
|
+
val,
|
|
4051
|
+
mediaStyle,
|
|
4052
|
+
props,
|
|
4053
|
+
shouldDoClasses,
|
|
4054
|
+
componentState
|
|
4055
|
+
});
|
|
4056
|
+
let hasSpace = val.space;
|
|
4057
|
+
if ((hasSpace || !shouldDoClasses) && (Array.isArray(hasMedia) || (hasMedia = []), hasMedia.push(mediaKeyShort)), shouldDoClasses) {
|
|
4058
|
+
if (hasSpace && (delete mediaStyle.space, mediaState3[mediaKeyShort])) {
|
|
4059
|
+
let importance = (0, import_useMedia.getMediaImportanceIfMoreImportant)(
|
|
4060
|
+
mediaKeyShort,
|
|
4061
|
+
"space",
|
|
4062
|
+
usedKeys,
|
|
4063
|
+
!0
|
|
4064
|
+
);
|
|
4065
|
+
importance && (space = val.space, usedKeys.space = importance, process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(
|
|
4066
|
+
`Found more important space for current media ${mediaKeyShort}: ${val} (importance: ${importance})`
|
|
4067
|
+
));
|
|
4068
|
+
}
|
|
4069
|
+
let mediaStyles = (0, import_getStylesAtomic.getStylesAtomic)(mediaStyle, debug), priority = mediaStylesSeen;
|
|
4070
|
+
mediaStylesSeen += 1;
|
|
4071
|
+
for (let style2 of mediaStyles) {
|
|
4072
|
+
let out = (0, import_createMediaStyle.createMediaStyle)(
|
|
4073
|
+
style2,
|
|
4074
|
+
mediaKeyShort,
|
|
4075
|
+
import_useMedia.mediaQueryConfig,
|
|
4076
|
+
isMedia,
|
|
4077
|
+
!1,
|
|
4078
|
+
priority
|
|
4079
|
+
);
|
|
4080
|
+
process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)("\u{1F4FA} media style:", out), `${style2.property}${PROP_SPLIT}${mediaKeyShort}` in usedKeys || out.identifier;
|
|
4081
|
+
}
|
|
4082
|
+
} else {
|
|
4083
|
+
let isThemeMedia = isMedia === "theme", isGroupMedia = isMedia === "group";
|
|
4084
|
+
if (!isThemeMedia && isMedia !== "platform" && !isGroupMedia && !mediaState3[mediaKeyShort])
|
|
4020
4085
|
continue;
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
platform !== "native"
|
|
4027
|
-
)
|
|
4086
|
+
let importanceBump = 0;
|
|
4087
|
+
if (isThemeMedia) {
|
|
4088
|
+
dynamicThemeAccess = !0;
|
|
4089
|
+
let mediaThemeName = mediaKeyShort.slice(6);
|
|
4090
|
+
if (!(themeName === mediaThemeName || themeName.startsWith(mediaThemeName)))
|
|
4028
4091
|
continue;
|
|
4029
|
-
}
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
key,
|
|
4034
|
-
val,
|
|
4035
|
-
// TODO try true like pseudo
|
|
4036
|
-
!1
|
|
4037
|
-
), mediaKeyShort = key.slice(1);
|
|
4038
|
-
process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(` \u{1F4FA} ${key}`, {
|
|
4039
|
-
key,
|
|
4040
|
-
val,
|
|
4041
|
-
mediaStyle,
|
|
4042
|
-
props,
|
|
4043
|
-
shouldDoClasses,
|
|
4044
|
-
componentState
|
|
4045
|
-
});
|
|
4046
|
-
let hasSpace = val.space;
|
|
4047
|
-
if ((hasSpace || !shouldDoClasses) && (Array.isArray(hasMedia) || (hasMedia = []), hasMedia.push(mediaKeyShort)), shouldDoClasses) {
|
|
4048
|
-
if (hasSpace && (delete mediaStyle.space, mediaState3[mediaKeyShort])) {
|
|
4049
|
-
let importance = (0, import_useMedia.getMediaImportanceIfMoreImportant)(
|
|
4050
|
-
mediaKeyShort,
|
|
4051
|
-
"space",
|
|
4052
|
-
usedKeys,
|
|
4053
|
-
!0
|
|
4054
|
-
);
|
|
4055
|
-
importance && (space = val.space, usedKeys.space = importance, process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(
|
|
4056
|
-
`Found more important space for current media ${mediaKeyShort}: ${val} (importance: ${importance})`
|
|
4057
|
-
));
|
|
4058
|
-
}
|
|
4059
|
-
let mediaStyles = (0, import_getStylesAtomic.getStylesAtomic)(mediaStyle, debug), priority = mediaStylesSeen;
|
|
4060
|
-
mediaStylesSeen += 1;
|
|
4061
|
-
for (let style2 of mediaStyles) {
|
|
4062
|
-
let out = (0, import_createMediaStyle.createMediaStyle)(
|
|
4063
|
-
style2,
|
|
4064
|
-
mediaKeyShort,
|
|
4065
|
-
import_useMedia.mediaQueryConfig,
|
|
4066
|
-
isMedia,
|
|
4067
|
-
!1,
|
|
4068
|
-
priority
|
|
4069
|
-
);
|
|
4070
|
-
process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)("\u{1F4FA} media style:", out), `${style2.property}${PROP_SPLIT}${mediaKeyShort}` in usedKeys || out.identifier;
|
|
4071
|
-
}
|
|
4072
|
-
} else {
|
|
4073
|
-
let isThemeMedia = isMedia === "theme", isGroupMedia = isMedia === "group";
|
|
4074
|
-
if (!isThemeMedia && isMedia !== "platform" && !isGroupMedia && !mediaState3[mediaKeyShort])
|
|
4092
|
+
} else if (isGroupMedia) {
|
|
4093
|
+
let groupInfo = (0, import_getGroupPropParts.getGroupPropParts)(mediaKeyShort), groupName = groupInfo.name, groupContext = context == null ? void 0 : context.groups.state[groupName];
|
|
4094
|
+
if (!groupContext) {
|
|
4095
|
+
process.env.NODE_ENV === "development" && debug && console.warn(`No parent with group prop, skipping styles: ${groupName}`);
|
|
4075
4096
|
continue;
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
} else if (isGroupMedia) {
|
|
4083
|
-
let groupInfo = (0, import_getGroupPropParts.getGroupPropParts)(mediaKeyShort), groupName = groupInfo.name, groupContext = context == null ? void 0 : context.groups.state[groupName];
|
|
4084
|
-
if (!groupContext) {
|
|
4085
|
-
process.env.NODE_ENV === "development" && debug && console.warn(`No parent with group prop, skipping styles: ${groupName}`);
|
|
4097
|
+
}
|
|
4098
|
+
let groupPseudoKey = groupInfo.pseudo, groupMediaKey = groupInfo.media, componentGroupState = (_c = componentState.group) == null ? void 0 : _c[groupName];
|
|
4099
|
+
if (groupMediaKey) {
|
|
4100
|
+
mediaGroups || (mediaGroups = /* @__PURE__ */ new Set()), mediaGroups.add(groupMediaKey);
|
|
4101
|
+
let mediaState22 = componentGroupState == null ? void 0 : componentGroupState.media, isActive = mediaState22 == null ? void 0 : mediaState22[groupMediaKey];
|
|
4102
|
+
if (!mediaState22 && groupContext.layout && (isActive = (0, import_useMedia.mediaKeyMatch)(groupMediaKey, groupContext.layout)), !isActive)
|
|
4086
4103
|
continue;
|
|
4087
|
-
|
|
4088
|
-
let groupPseudoKey = groupInfo.pseudo, groupMediaKey = groupInfo.media, componentGroupState = (_c = componentState.group) == null ? void 0 : _c[groupName];
|
|
4089
|
-
if (groupMediaKey) {
|
|
4090
|
-
mediaGroups || (mediaGroups = /* @__PURE__ */ new Set()), mediaGroups.add(groupMediaKey);
|
|
4091
|
-
let mediaState22 = componentGroupState == null ? void 0 : componentGroupState.media, isActive = mediaState22 == null ? void 0 : mediaState22[groupMediaKey];
|
|
4092
|
-
if (!mediaState22 && groupContext.layout && (isActive = (0, import_useMedia.mediaKeyMatch)(groupMediaKey, groupContext.layout)), !isActive)
|
|
4093
|
-
continue;
|
|
4094
|
-
importanceBump = 2;
|
|
4095
|
-
}
|
|
4096
|
-
if (groupPseudoKey) {
|
|
4097
|
-
pseudoGroups || (pseudoGroups = /* @__PURE__ */ new Set()), pseudoGroups.add(groupName);
|
|
4098
|
-
let componentGroupPseudoState = (componentGroupState || // fallback to context initially
|
|
4099
|
-
context.groups.state[groupName]).pseudo;
|
|
4100
|
-
if (!(componentGroupPseudoState != null && componentGroupPseudoState[groupPseudoKey]))
|
|
4101
|
-
continue;
|
|
4102
|
-
importanceBump = import_pseudoDescriptors.pseudoPriorities[groupPseudoKey];
|
|
4103
|
-
}
|
|
4104
|
+
importanceBump = 2;
|
|
4104
4105
|
}
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4106
|
+
if (groupPseudoKey) {
|
|
4107
|
+
pseudoGroups || (pseudoGroups = /* @__PURE__ */ new Set()), pseudoGroups.add(groupName);
|
|
4108
|
+
let componentGroupPseudoState = (componentGroupState || // fallback to context initially
|
|
4109
|
+
context.groups.state[groupName]).pseudo;
|
|
4110
|
+
if (!(componentGroupPseudoState != null && componentGroupPseudoState[groupPseudoKey]))
|
|
4108
4111
|
continue;
|
|
4109
|
-
|
|
4110
|
-
(0, import_useMedia.mergeMediaByImportance)(
|
|
4111
|
-
style,
|
|
4112
|
-
mediaKeyShort,
|
|
4113
|
-
subKey,
|
|
4114
|
-
mediaStyle[subKey],
|
|
4115
|
-
usedKeys,
|
|
4116
|
-
mediaState3[mediaKeyShort],
|
|
4117
|
-
importanceBump
|
|
4118
|
-
), key === "fontFamily" && (styleState.fontFamily = mediaStyle.fontFamily);
|
|
4112
|
+
importanceBump = import_pseudoDescriptors.pseudoPriorities[groupPseudoKey];
|
|
4119
4113
|
}
|
|
4120
4114
|
}
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4115
|
+
for (let subKey in mediaStyle) {
|
|
4116
|
+
if (subKey === "space") {
|
|
4117
|
+
space = valInit.space;
|
|
4118
|
+
continue;
|
|
4119
|
+
}
|
|
4120
|
+
(0, import_useMedia.mergeMediaByImportance)(
|
|
4121
|
+
style,
|
|
4122
|
+
mediaKeyShort,
|
|
4123
|
+
subKey,
|
|
4124
|
+
mediaStyle[subKey],
|
|
4125
|
+
usedKeys,
|
|
4126
|
+
mediaState3[mediaKeyShort],
|
|
4127
|
+
importanceBump
|
|
4128
|
+
), key === "fontFamily" && (styleState.fontFamily = mediaStyle.fontFamily);
|
|
4129
|
+
}
|
|
4134
4130
|
}
|
|
4135
|
-
|
|
4131
|
+
continue;
|
|
4136
4132
|
}
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
(0, import_log.log)("style", { ...style }), (0, import_log.log)("transforms", { ...transforms }), (0, import_log.log)("viewProps", { ...viewProps });
|
|
4141
|
-
} catch {
|
|
4133
|
+
if (key === "pointerEvents") {
|
|
4134
|
+
viewProps[key] = val;
|
|
4135
|
+
continue;
|
|
4142
4136
|
}
|
|
4143
|
-
|
|
4137
|
+
if (
|
|
4138
|
+
// is HOC we can just pass through the styles as props
|
|
4139
|
+
// this fixes issues where style prop got merged with wrong priority
|
|
4140
|
+
!isHOC && (isValidStyleKey(key, staticConfig) || import_constants4.isAndroid && key === "elevation")
|
|
4141
|
+
) {
|
|
4142
|
+
mergeStyle(styleState, key, val);
|
|
4143
|
+
continue;
|
|
4144
|
+
}
|
|
4145
|
+
isVariant || (viewProps[key] = val);
|
|
4144
4146
|
}
|
|
4145
4147
|
}
|
|
4148
|
+
if (process.env.NODE_ENV === "development" && debug === "verbose") {
|
|
4149
|
+
try {
|
|
4150
|
+
(0, import_log.log)(" \u2714\uFE0F expand complete", keyInit), (0, import_log.log)("style", { ...style }), (0, import_log.log)("transforms", { ...transforms }), (0, import_log.log)("viewProps", { ...viewProps });
|
|
4151
|
+
} catch {
|
|
4152
|
+
}
|
|
4153
|
+
console.groupEnd();
|
|
4154
|
+
}
|
|
4146
4155
|
}
|
|
4147
|
-
if (
|
|
4156
|
+
if (props.style)
|
|
4148
4157
|
if (isHOC)
|
|
4149
4158
|
viewProps.style = props.style;
|
|
4150
4159
|
else
|
|
@@ -5053,8 +5062,9 @@ If you meant to do this, you can disable this warning - either change untilMeasu
|
|
|
5053
5062
|
willBeAnimated
|
|
5054
5063
|
}));
|
|
5055
5064
|
} catch {
|
|
5065
|
+
} finally {
|
|
5066
|
+
console.groupEnd();
|
|
5056
5067
|
}
|
|
5057
|
-
console.groupEnd();
|
|
5058
5068
|
} else {
|
|
5059
5069
|
(0, import_log.log)(title), (0, import_log.log)("final styles:");
|
|
5060
5070
|
for (let key in splitStylesStyle)
|