@tamagui/core 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 +1 -1
- package/dist/test.native.js +155 -144
- package/dist/test.native.js.map +1 -1
- package/package.json +6 -6
package/dist/native.js
CHANGED
|
@@ -4096,8 +4096,14 @@ var require_getSplitStyles_native = __commonJS({
|
|
|
4096
4096
|
style[keyInit] = valInit;
|
|
4097
4097
|
continue;
|
|
4098
4098
|
}
|
|
4099
|
-
let
|
|
4100
|
-
if (
|
|
4099
|
+
let avoidPropMap = isMediaOrPseudo || !isVariant && !isValidStyleKeyInit, expanded = avoidPropMap ? null : (0, import_propMapper.propMapper)(keyInit, valInit, styleState);
|
|
4100
|
+
if (!avoidPropMap) {
|
|
4101
|
+
if (!expanded)
|
|
4102
|
+
continue;
|
|
4103
|
+
let next = (0, import_propMapper.getPropMappedFontFamily)(expanded);
|
|
4104
|
+
next && (styleState.fontFamily = next);
|
|
4105
|
+
}
|
|
4106
|
+
if (process.env.NODE_ENV === "development" && debug === "verbose") {
|
|
4101
4107
|
console.groupCollapsed(" \u{1F4A0} expanded", keyInit, valInit);
|
|
4102
4108
|
try {
|
|
4103
4109
|
!import_constants.isServer && import_isDevTools.isDevTools && ((0, import_log.log)({
|
|
@@ -4120,192 +4126,195 @@ current`, {
|
|
|
4120
4126
|
}
|
|
4121
4127
|
console.groupEnd();
|
|
4122
4128
|
}
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4129
|
+
let key = keyInit, val = valInit, max = expanded ? expanded.length : 1;
|
|
4130
|
+
for (let i = 0; i < max; i++) {
|
|
4131
|
+
if (expanded) {
|
|
4132
|
+
let [k, v] = expanded[i];
|
|
4133
|
+
key = k, val = v;
|
|
4134
|
+
}
|
|
4135
|
+
if (!(val == null || key in usedKeys)) {
|
|
4136
|
+
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]))) {
|
|
4137
|
+
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());
|
|
4138
|
+
continue;
|
|
4139
|
+
}
|
|
4140
|
+
if (isPseudo) {
|
|
4141
|
+
if (!val)
|
|
4142
|
+
continue;
|
|
4143
|
+
let pseudoStyleObject = getSubStyle(
|
|
4144
|
+
styleState,
|
|
4145
|
+
key,
|
|
4146
|
+
val,
|
|
4147
|
+
styleProps.noClassNames
|
|
4148
|
+
), descriptor = import_pseudoDescriptors.pseudoDescriptors[key], isEnter = key === "enterStyle", isExit = key === "exitStyle";
|
|
4149
|
+
if (!descriptor)
|
|
4150
|
+
continue;
|
|
4151
|
+
if ((!shouldDoClasses || IS_STATIC) && (pseudos || (pseudos = {}), pseudos[key] || (pseudos[key] = {}), IS_STATIC)) {
|
|
4152
|
+
Object.assign(pseudos[key], pseudoStyleObject);
|
|
4128
4153
|
continue;
|
|
4129
4154
|
}
|
|
4130
|
-
if (
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
let
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
let importance = descriptor.priority;
|
|
4155
|
-
for (let pkey in pseudoStyleObject) {
|
|
4156
|
-
let val2 = pseudoStyleObject[pkey];
|
|
4157
|
-
if (isDisabled) {
|
|
4158
|
-
let defaultValues = animatableDefaults[pkey];
|
|
4159
|
-
defaultValues != null && !(pkey in usedKeys) && !(pkey in styleState.style) && mergeStyle(styleState, pkey, defaultValues);
|
|
4160
|
-
} else {
|
|
4161
|
-
let curImportance = usedKeys[pkey] || 0, shouldMerge = importance >= curImportance;
|
|
4162
|
-
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, {
|
|
4163
|
-
importance,
|
|
4164
|
-
curImportance,
|
|
4165
|
-
pkey,
|
|
4166
|
-
val: val2,
|
|
4167
|
-
transforms: { ...styleState.transforms }
|
|
4168
|
-
});
|
|
4169
|
-
}
|
|
4155
|
+
if (shouldDoClasses && !isExit) {
|
|
4156
|
+
let pseudoStyles = (0, import_getStylesAtomic.generateAtomicStyles)(pseudoStyleObject, descriptor);
|
|
4157
|
+
process.env.NODE_ENV === "development" && debug === "verbose" && (console.groupCollapsed("pseudo (classes)", key), (0, import_log.log)({ pseudoStyleObject, pseudoStyles }), console.groupEnd());
|
|
4158
|
+
for (let psuedoStyle of pseudoStyles)
|
|
4159
|
+
`${psuedoStyle.property}${PROP_SPLIT}${descriptor.name}` in usedKeys || psuedoStyle.identifier;
|
|
4160
|
+
}
|
|
4161
|
+
if (!shouldDoClasses || isExit || isEnter) {
|
|
4162
|
+
let descriptorKey = descriptor.stateKey || descriptor.name, isDisabled = componentState[descriptorKey] === !1;
|
|
4163
|
+
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());
|
|
4164
|
+
let importance = descriptor.priority;
|
|
4165
|
+
for (let pkey in pseudoStyleObject) {
|
|
4166
|
+
let val2 = pseudoStyleObject[pkey];
|
|
4167
|
+
if (isDisabled) {
|
|
4168
|
+
let defaultValues = animatableDefaults[pkey];
|
|
4169
|
+
defaultValues != null && !(pkey in usedKeys) && !(pkey in styleState.style) && mergeStyle(styleState, pkey, defaultValues);
|
|
4170
|
+
} else {
|
|
4171
|
+
let curImportance = usedKeys[pkey] || 0, shouldMerge = importance >= curImportance;
|
|
4172
|
+
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, {
|
|
4173
|
+
importance,
|
|
4174
|
+
curImportance,
|
|
4175
|
+
pkey,
|
|
4176
|
+
val: val2,
|
|
4177
|
+
transforms: { ...styleState.transforms }
|
|
4178
|
+
});
|
|
4170
4179
|
}
|
|
4171
|
-
if (!isDisabled)
|
|
4172
|
-
for (let key2 in val) {
|
|
4173
|
-
let k = shorthands[key2] || key2;
|
|
4174
|
-
usedKeys[k] = Math.max(importance, usedKeys[k] || 0);
|
|
4175
|
-
}
|
|
4176
4180
|
}
|
|
4181
|
+
if (!isDisabled)
|
|
4182
|
+
for (let key2 in val) {
|
|
4183
|
+
let k = shorthands[key2] || key2;
|
|
4184
|
+
usedKeys[k] = Math.max(importance, usedKeys[k] || 0);
|
|
4185
|
+
}
|
|
4186
|
+
}
|
|
4187
|
+
continue;
|
|
4188
|
+
}
|
|
4189
|
+
if (isMedia) {
|
|
4190
|
+
if (!val)
|
|
4177
4191
|
continue;
|
|
4192
|
+
if (isMedia === "platform") {
|
|
4193
|
+
let platform = key.slice(10);
|
|
4194
|
+
if (
|
|
4195
|
+
// supports web, ios, android
|
|
4196
|
+
platform !== import_constants.currentPlatform && // supports web, native
|
|
4197
|
+
platform !== "native"
|
|
4198
|
+
)
|
|
4199
|
+
continue;
|
|
4178
4200
|
}
|
|
4179
|
-
|
|
4180
|
-
|
|
4201
|
+
hasMedia || (hasMedia = !0);
|
|
4202
|
+
let mediaStyle = getSubStyle(
|
|
4203
|
+
styleState,
|
|
4204
|
+
key,
|
|
4205
|
+
val,
|
|
4206
|
+
// TODO try true like pseudo
|
|
4207
|
+
!1
|
|
4208
|
+
), mediaKeyShort = key.slice(1);
|
|
4209
|
+
process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(` \u{1F4FA} ${key}`, {
|
|
4210
|
+
key,
|
|
4211
|
+
val,
|
|
4212
|
+
mediaStyle,
|
|
4213
|
+
props,
|
|
4214
|
+
shouldDoClasses,
|
|
4215
|
+
componentState
|
|
4216
|
+
});
|
|
4217
|
+
let hasSpace = val.space;
|
|
4218
|
+
if ((hasSpace || !shouldDoClasses) && (Array.isArray(hasMedia) || (hasMedia = []), hasMedia.push(mediaKeyShort)), shouldDoClasses) {
|
|
4219
|
+
if (hasSpace && (delete mediaStyle.space, mediaState2[mediaKeyShort])) {
|
|
4220
|
+
let importance = (0, import_useMedia.getMediaImportanceIfMoreImportant)(
|
|
4221
|
+
mediaKeyShort,
|
|
4222
|
+
"space",
|
|
4223
|
+
usedKeys,
|
|
4224
|
+
!0
|
|
4225
|
+
);
|
|
4226
|
+
importance && (space = val.space, usedKeys.space = importance, process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(
|
|
4227
|
+
`Found more important space for current media ${mediaKeyShort}: ${val} (importance: ${importance})`
|
|
4228
|
+
));
|
|
4229
|
+
}
|
|
4230
|
+
let mediaStyles = (0, import_getStylesAtomic.getStylesAtomic)(mediaStyle, debug), priority = mediaStylesSeen;
|
|
4231
|
+
mediaStylesSeen += 1;
|
|
4232
|
+
for (let style2 of mediaStyles) {
|
|
4233
|
+
let out = (0, import_createMediaStyle.createMediaStyle)(
|
|
4234
|
+
style2,
|
|
4235
|
+
mediaKeyShort,
|
|
4236
|
+
import_useMedia.mediaQueryConfig,
|
|
4237
|
+
isMedia,
|
|
4238
|
+
!1,
|
|
4239
|
+
priority
|
|
4240
|
+
);
|
|
4241
|
+
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;
|
|
4242
|
+
}
|
|
4243
|
+
} else {
|
|
4244
|
+
let isThemeMedia = isMedia === "theme", isGroupMedia = isMedia === "group";
|
|
4245
|
+
if (!isThemeMedia && isMedia !== "platform" && !isGroupMedia && !mediaState2[mediaKeyShort])
|
|
4181
4246
|
continue;
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
platform !== "native"
|
|
4188
|
-
)
|
|
4247
|
+
let importanceBump = 0;
|
|
4248
|
+
if (isThemeMedia) {
|
|
4249
|
+
dynamicThemeAccess = !0;
|
|
4250
|
+
let mediaThemeName = mediaKeyShort.slice(6);
|
|
4251
|
+
if (!(themeName === mediaThemeName || themeName.startsWith(mediaThemeName)))
|
|
4189
4252
|
continue;
|
|
4190
|
-
}
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
key,
|
|
4195
|
-
val,
|
|
4196
|
-
// TODO try true like pseudo
|
|
4197
|
-
!1
|
|
4198
|
-
), mediaKeyShort = key.slice(1);
|
|
4199
|
-
process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(` \u{1F4FA} ${key}`, {
|
|
4200
|
-
key,
|
|
4201
|
-
val,
|
|
4202
|
-
mediaStyle,
|
|
4203
|
-
props,
|
|
4204
|
-
shouldDoClasses,
|
|
4205
|
-
componentState
|
|
4206
|
-
});
|
|
4207
|
-
let hasSpace = val.space;
|
|
4208
|
-
if ((hasSpace || !shouldDoClasses) && (Array.isArray(hasMedia) || (hasMedia = []), hasMedia.push(mediaKeyShort)), shouldDoClasses) {
|
|
4209
|
-
if (hasSpace && (delete mediaStyle.space, mediaState2[mediaKeyShort])) {
|
|
4210
|
-
let importance = (0, import_useMedia.getMediaImportanceIfMoreImportant)(
|
|
4211
|
-
mediaKeyShort,
|
|
4212
|
-
"space",
|
|
4213
|
-
usedKeys,
|
|
4214
|
-
!0
|
|
4215
|
-
);
|
|
4216
|
-
importance && (space = val.space, usedKeys.space = importance, process.env.NODE_ENV === "development" && debug === "verbose" && (0, import_log.log)(
|
|
4217
|
-
`Found more important space for current media ${mediaKeyShort}: ${val} (importance: ${importance})`
|
|
4218
|
-
));
|
|
4219
|
-
}
|
|
4220
|
-
let mediaStyles = (0, import_getStylesAtomic.getStylesAtomic)(mediaStyle, debug), priority = mediaStylesSeen;
|
|
4221
|
-
mediaStylesSeen += 1;
|
|
4222
|
-
for (let style2 of mediaStyles) {
|
|
4223
|
-
let out = (0, import_createMediaStyle.createMediaStyle)(
|
|
4224
|
-
style2,
|
|
4225
|
-
mediaKeyShort,
|
|
4226
|
-
import_useMedia.mediaQueryConfig,
|
|
4227
|
-
isMedia,
|
|
4228
|
-
!1,
|
|
4229
|
-
priority
|
|
4230
|
-
);
|
|
4231
|
-
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;
|
|
4232
|
-
}
|
|
4233
|
-
} else {
|
|
4234
|
-
let isThemeMedia = isMedia === "theme", isGroupMedia = isMedia === "group";
|
|
4235
|
-
if (!isThemeMedia && isMedia !== "platform" && !isGroupMedia && !mediaState2[mediaKeyShort])
|
|
4253
|
+
} else if (isGroupMedia) {
|
|
4254
|
+
let groupInfo = (0, import_getGroupPropParts.getGroupPropParts)(mediaKeyShort), groupName = groupInfo.name, groupContext = context == null ? void 0 : context.groups.state[groupName];
|
|
4255
|
+
if (!groupContext) {
|
|
4256
|
+
process.env.NODE_ENV === "development" && debug && console.warn(`No parent with group prop, skipping styles: ${groupName}`);
|
|
4236
4257
|
continue;
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
} else if (isGroupMedia) {
|
|
4244
|
-
let groupInfo = (0, import_getGroupPropParts.getGroupPropParts)(mediaKeyShort), groupName = groupInfo.name, groupContext = context == null ? void 0 : context.groups.state[groupName];
|
|
4245
|
-
if (!groupContext) {
|
|
4246
|
-
process.env.NODE_ENV === "development" && debug && console.warn(`No parent with group prop, skipping styles: ${groupName}`);
|
|
4258
|
+
}
|
|
4259
|
+
let groupPseudoKey = groupInfo.pseudo, groupMediaKey = groupInfo.media, componentGroupState = (_c = componentState.group) == null ? void 0 : _c[groupName];
|
|
4260
|
+
if (groupMediaKey) {
|
|
4261
|
+
mediaGroups || (mediaGroups = /* @__PURE__ */ new Set()), mediaGroups.add(groupMediaKey);
|
|
4262
|
+
let mediaState22 = componentGroupState == null ? void 0 : componentGroupState.media, isActive = mediaState22 == null ? void 0 : mediaState22[groupMediaKey];
|
|
4263
|
+
if (!mediaState22 && groupContext.layout && (isActive = (0, import_useMedia.mediaKeyMatch)(groupMediaKey, groupContext.layout)), !isActive)
|
|
4247
4264
|
continue;
|
|
4248
|
-
|
|
4249
|
-
let groupPseudoKey = groupInfo.pseudo, groupMediaKey = groupInfo.media, componentGroupState = (_c = componentState.group) == null ? void 0 : _c[groupName];
|
|
4250
|
-
if (groupMediaKey) {
|
|
4251
|
-
mediaGroups || (mediaGroups = /* @__PURE__ */ new Set()), mediaGroups.add(groupMediaKey);
|
|
4252
|
-
let mediaState22 = componentGroupState == null ? void 0 : componentGroupState.media, isActive = mediaState22 == null ? void 0 : mediaState22[groupMediaKey];
|
|
4253
|
-
if (!mediaState22 && groupContext.layout && (isActive = (0, import_useMedia.mediaKeyMatch)(groupMediaKey, groupContext.layout)), !isActive)
|
|
4254
|
-
continue;
|
|
4255
|
-
importanceBump = 2;
|
|
4256
|
-
}
|
|
4257
|
-
if (groupPseudoKey) {
|
|
4258
|
-
pseudoGroups || (pseudoGroups = /* @__PURE__ */ new Set()), pseudoGroups.add(groupName);
|
|
4259
|
-
let componentGroupPseudoState = (componentGroupState || // fallback to context initially
|
|
4260
|
-
context.groups.state[groupName]).pseudo;
|
|
4261
|
-
if (!(componentGroupPseudoState != null && componentGroupPseudoState[groupPseudoKey]))
|
|
4262
|
-
continue;
|
|
4263
|
-
importanceBump = import_pseudoDescriptors.pseudoPriorities[groupPseudoKey];
|
|
4264
|
-
}
|
|
4265
|
+
importanceBump = 2;
|
|
4265
4266
|
}
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4267
|
+
if (groupPseudoKey) {
|
|
4268
|
+
pseudoGroups || (pseudoGroups = /* @__PURE__ */ new Set()), pseudoGroups.add(groupName);
|
|
4269
|
+
let componentGroupPseudoState = (componentGroupState || // fallback to context initially
|
|
4270
|
+
context.groups.state[groupName]).pseudo;
|
|
4271
|
+
if (!(componentGroupPseudoState != null && componentGroupPseudoState[groupPseudoKey]))
|
|
4269
4272
|
continue;
|
|
4270
|
-
|
|
4271
|
-
(0, import_useMedia.mergeMediaByImportance)(
|
|
4272
|
-
style,
|
|
4273
|
-
mediaKeyShort,
|
|
4274
|
-
subKey,
|
|
4275
|
-
mediaStyle[subKey],
|
|
4276
|
-
usedKeys,
|
|
4277
|
-
mediaState2[mediaKeyShort],
|
|
4278
|
-
importanceBump
|
|
4279
|
-
), key === "fontFamily" && (styleState.fontFamily = mediaStyle.fontFamily);
|
|
4273
|
+
importanceBump = import_pseudoDescriptors.pseudoPriorities[groupPseudoKey];
|
|
4280
4274
|
}
|
|
4281
4275
|
}
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
|
|
4276
|
+
for (let subKey in mediaStyle) {
|
|
4277
|
+
if (subKey === "space") {
|
|
4278
|
+
space = valInit.space;
|
|
4279
|
+
continue;
|
|
4280
|
+
}
|
|
4281
|
+
(0, import_useMedia.mergeMediaByImportance)(
|
|
4282
|
+
style,
|
|
4283
|
+
mediaKeyShort,
|
|
4284
|
+
subKey,
|
|
4285
|
+
mediaStyle[subKey],
|
|
4286
|
+
usedKeys,
|
|
4287
|
+
mediaState2[mediaKeyShort],
|
|
4288
|
+
importanceBump
|
|
4289
|
+
), key === "fontFamily" && (styleState.fontFamily = mediaStyle.fontFamily);
|
|
4290
|
+
}
|
|
4295
4291
|
}
|
|
4296
|
-
|
|
4292
|
+
continue;
|
|
4297
4293
|
}
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
(0, import_log.log)("style", { ...style }), (0, import_log.log)("transforms", { ...transforms }), (0, import_log.log)("viewProps", { ...viewProps });
|
|
4302
|
-
} catch {
|
|
4294
|
+
if (key === "pointerEvents") {
|
|
4295
|
+
viewProps[key] = val;
|
|
4296
|
+
continue;
|
|
4303
4297
|
}
|
|
4304
|
-
|
|
4298
|
+
if (
|
|
4299
|
+
// is HOC we can just pass through the styles as props
|
|
4300
|
+
// this fixes issues where style prop got merged with wrong priority
|
|
4301
|
+
!isHOC && (isValidStyleKey(key, staticConfig) || import_constants.isAndroid && key === "elevation")
|
|
4302
|
+
) {
|
|
4303
|
+
mergeStyle(styleState, key, val);
|
|
4304
|
+
continue;
|
|
4305
|
+
}
|
|
4306
|
+
isVariant || (viewProps[key] = val);
|
|
4305
4307
|
}
|
|
4306
4308
|
}
|
|
4309
|
+
if (process.env.NODE_ENV === "development" && debug === "verbose") {
|
|
4310
|
+
try {
|
|
4311
|
+
(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 });
|
|
4312
|
+
} catch {
|
|
4313
|
+
}
|
|
4314
|
+
console.groupEnd();
|
|
4315
|
+
}
|
|
4307
4316
|
}
|
|
4308
|
-
if (
|
|
4317
|
+
if (props.style)
|
|
4309
4318
|
if (isHOC)
|
|
4310
4319
|
viewProps.style = props.style;
|
|
4311
4320
|
else
|
|
@@ -5214,8 +5223,9 @@ If you meant to do this, you can disable this warning - either change untilMeasu
|
|
|
5214
5223
|
willBeAnimated
|
|
5215
5224
|
}));
|
|
5216
5225
|
} catch {
|
|
5226
|
+
} finally {
|
|
5227
|
+
console.groupEnd();
|
|
5217
5228
|
}
|
|
5218
|
-
console.groupEnd();
|
|
5219
5229
|
} else {
|
|
5220
5230
|
(0, import_log.log)(title), (0, import_log.log)("final styles:");
|
|
5221
5231
|
for (let key in splitStylesStyle)
|