@tamagui/animations-css 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 +5 -5
- package/src/createAnimations.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/animations-css",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.67.0",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"dist"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@tamagui/cubic-bezier-animator": "1.
|
|
17
|
-
"@tamagui/use-presence": "1.
|
|
18
|
-
"@tamagui/web": "1.
|
|
16
|
+
"@tamagui/cubic-bezier-animator": "1.67.0",
|
|
17
|
+
"@tamagui/use-presence": "1.67.0",
|
|
18
|
+
"@tamagui/web": "1.67.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@tamagui/build": "1.
|
|
21
|
+
"@tamagui/build": "1.67.0"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build": "tamagui-build",
|
package/src/createAnimations.tsx
CHANGED
|
@@ -129,7 +129,7 @@ export function createAnimations<A extends Object>(animations: A): AnimationDriv
|
|
|
129
129
|
}`
|
|
130
130
|
|
|
131
131
|
if (process.env.NODE_ENV === 'development' && props['debug']) {
|
|
132
|
-
//
|
|
132
|
+
// biome-ignore lint/suspicious/noConsoleLog: ok
|
|
133
133
|
console.log('CSS animation', style, { isEntering, isExiting })
|
|
134
134
|
}
|
|
135
135
|
|