@tamagui/animations-react-native 1.65.4 → 1.67.0
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/package.json +4 -4
- package/src/createAnimations.tsx +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/animations-react-native",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.67.0",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"./polyfill.js"
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@tamagui/use-presence": "1.
|
|
19
|
-
"@tamagui/web": "1.
|
|
18
|
+
"@tamagui/use-presence": "1.67.0",
|
|
19
|
+
"@tamagui/web": "1.67.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@tamagui/build": "1.
|
|
22
|
+
"@tamagui/build": "1.67.0",
|
|
23
23
|
"react": "^18.2.0",
|
|
24
24
|
"react-native": "^0.72.1"
|
|
25
25
|
},
|
package/src/createAnimations.tsx
CHANGED
|
@@ -342,7 +342,7 @@ export function createAnimations<A extends AnimationsConfig>(
|
|
|
342
342
|
if (process.env.NODE_ENV === 'development') {
|
|
343
343
|
if (props['debug'] === 'verbose') {
|
|
344
344
|
// prettier-ignore
|
|
345
|
-
//
|
|
345
|
+
// biome-ignore lint/suspicious/noConsoleLog: ok
|
|
346
346
|
console.log(' 💠 animate',key,`from (${value['_value']}) to`, valIn, `(${val})`, 'type',type,'interpolate',interpolateArgs)
|
|
347
347
|
}
|
|
348
348
|
}
|
|
@@ -368,7 +368,7 @@ export function createAnimations<A extends AnimationsConfig>(
|
|
|
368
368
|
|
|
369
369
|
if (process.env.NODE_ENV === 'development') {
|
|
370
370
|
if (props['debug'] === 'verbose') {
|
|
371
|
-
//
|
|
371
|
+
// biome-ignore lint/suspicious/noConsoleLog: ok
|
|
372
372
|
console.log(`Returning animated`, res, 'given style', style)
|
|
373
373
|
}
|
|
374
374
|
}
|