@tamagui/animate-presence 1.88.21 → 1.88.23
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/esm/AnimatePresence.native.js +25 -36
- package/dist/esm/AnimatePresence.native.js.map +1 -1
- package/dist/esm/LayoutGroupContext.native.js +4 -25
- package/dist/esm/LayoutGroupContext.native.js.map +1 -1
- package/dist/esm/PresenceChild.native.js +9 -34
- package/dist/esm/PresenceChild.native.js.map +1 -1
- package/dist/esm/index.native.js +4 -25
- package/dist/esm/index.native.js.map +1 -1
- package/dist/esm/types.native.js +0 -14
- package/dist/esm/types.native.js.map +2 -2
- package/package.json +7 -7
|
@@ -1,24 +1,14 @@
|
|
|
1
|
-
"use
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
-
return to;
|
|
14
|
-
};
|
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
16
|
-
var AnimatePresence_exports = {};
|
|
17
|
-
__export(AnimatePresence_exports, {
|
|
18
|
-
AnimatePresence: () => AnimatePresence
|
|
19
|
-
});
|
|
20
|
-
module.exports = __toCommonJS(AnimatePresence_exports);
|
|
21
|
-
var import_use_force_update = require("@tamagui/use-force-update"), import_react = require("react"), import_LayoutGroupContext = require("./LayoutGroupContext"), import_PresenceChild = require("./PresenceChild"), import_jsx_runtime = require("react/jsx-runtime");
|
|
1
|
+
import { useForceUpdate } from "@tamagui/use-force-update";
|
|
2
|
+
import {
|
|
3
|
+
Children,
|
|
4
|
+
cloneElement,
|
|
5
|
+
isValidElement,
|
|
6
|
+
useContext,
|
|
7
|
+
useRef
|
|
8
|
+
} from "react";
|
|
9
|
+
import { LayoutGroupContext } from "./LayoutGroupContext";
|
|
10
|
+
import { PresenceChild } from "./PresenceChild";
|
|
11
|
+
import { Fragment, jsx } from "react/jsx-runtime";
|
|
22
12
|
const getChildKey = (child) => child.key || "";
|
|
23
13
|
function updateChildLookup(children, allChildren) {
|
|
24
14
|
children.forEach((child) => {
|
|
@@ -28,8 +18,8 @@ function updateChildLookup(children, allChildren) {
|
|
|
28
18
|
}
|
|
29
19
|
function onlyElements(children) {
|
|
30
20
|
const filtered = [];
|
|
31
|
-
return
|
|
32
|
-
|
|
21
|
+
return Children.forEach(children, (child) => {
|
|
22
|
+
isValidElement(child) && filtered.push(child);
|
|
33
23
|
}), filtered;
|
|
34
24
|
}
|
|
35
25
|
const AnimatePresence = ({
|
|
@@ -43,13 +33,13 @@ const AnimatePresence = ({
|
|
|
43
33
|
presenceAffectsLayout = !0,
|
|
44
34
|
custom
|
|
45
35
|
}) => {
|
|
46
|
-
let forceRender =
|
|
47
|
-
const filteredChildren = onlyElements(children), presentChildren =
|
|
36
|
+
let forceRender = useContext(LayoutGroupContext).forceRender ?? useForceUpdate();
|
|
37
|
+
const filteredChildren = onlyElements(children), presentChildren = useRef(filteredChildren), allChildren = useRef(/* @__PURE__ */ new Map()).current, exiting = useRef(/* @__PURE__ */ new Set()).current;
|
|
48
38
|
updateChildLookup(filteredChildren, allChildren);
|
|
49
|
-
const isInitialRender =
|
|
39
|
+
const isInitialRender = useRef(!0);
|
|
50
40
|
if (isInitialRender.current)
|
|
51
|
-
return isInitialRender.current = !1, /* @__PURE__ */
|
|
52
|
-
|
|
41
|
+
return isInitialRender.current = !1, /* @__PURE__ */ jsx(Fragment, { children: filteredChildren.map((child) => /* @__PURE__ */ jsx(
|
|
42
|
+
PresenceChild,
|
|
53
43
|
{
|
|
54
44
|
isPresent: !0,
|
|
55
45
|
enterExitVariant,
|
|
@@ -74,8 +64,8 @@ const AnimatePresence = ({
|
|
|
74
64
|
const child = allChildren.get(key);
|
|
75
65
|
if (!child)
|
|
76
66
|
return;
|
|
77
|
-
const insertionIndex = presentKeys.indexOf(key), exitingComponent = /* @__PURE__ */
|
|
78
|
-
|
|
67
|
+
const insertionIndex = presentKeys.indexOf(key), exitingComponent = /* @__PURE__ */ jsx(
|
|
68
|
+
PresenceChild,
|
|
79
69
|
{
|
|
80
70
|
isPresent: !1,
|
|
81
71
|
onExitComplete: () => {
|
|
@@ -97,8 +87,8 @@ const AnimatePresence = ({
|
|
|
97
87
|
childrenToRender.splice(insertionIndex, 0, exitingComponent);
|
|
98
88
|
}), childrenToRender = childrenToRender.map((child) => {
|
|
99
89
|
const key = child.key;
|
|
100
|
-
return exiting.has(key) ? child : /* @__PURE__ */
|
|
101
|
-
|
|
90
|
+
return exiting.has(key) ? child : /* @__PURE__ */ jsx(
|
|
91
|
+
PresenceChild,
|
|
102
92
|
{
|
|
103
93
|
isPresent: !0,
|
|
104
94
|
exitVariant,
|
|
@@ -110,11 +100,10 @@ const AnimatePresence = ({
|
|
|
110
100
|
},
|
|
111
101
|
getChildKey(child)
|
|
112
102
|
);
|
|
113
|
-
}), presentChildren.current = childrenToRender, /* @__PURE__ */
|
|
103
|
+
}), presentChildren.current = childrenToRender, /* @__PURE__ */ jsx(Fragment, { children: exiting.size ? childrenToRender : childrenToRender.map((child) => cloneElement(child)) });
|
|
114
104
|
};
|
|
115
105
|
AnimatePresence.displayName = "AnimatePresence";
|
|
116
|
-
|
|
117
|
-
0 && (module.exports = {
|
|
106
|
+
export {
|
|
118
107
|
AnimatePresence
|
|
119
|
-
}
|
|
108
|
+
};
|
|
120
109
|
//# sourceMappingURL=AnimatePresence.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/AnimatePresence.tsx"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "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",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
|
@@ -1,27 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
-
return to;
|
|
14
|
-
};
|
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
16
|
-
var LayoutGroupContext_exports = {};
|
|
17
|
-
__export(LayoutGroupContext_exports, {
|
|
18
|
-
LayoutGroupContext: () => LayoutGroupContext
|
|
19
|
-
});
|
|
20
|
-
module.exports = __toCommonJS(LayoutGroupContext_exports);
|
|
21
|
-
var import_react = require("react");
|
|
22
|
-
const LayoutGroupContext = (0, import_react.createContext)({});
|
|
23
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
24
|
-
0 && (module.exports = {
|
|
1
|
+
import { createContext } from "react";
|
|
2
|
+
const LayoutGroupContext = createContext({});
|
|
3
|
+
export {
|
|
25
4
|
LayoutGroupContext
|
|
26
|
-
}
|
|
5
|
+
};
|
|
27
6
|
//# sourceMappingURL=LayoutGroupContext.js.map
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
"use
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __export = (target, all) => {
|
|
8
|
-
for (var name in all)
|
|
9
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
10
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
-
return to;
|
|
15
|
-
};
|
|
16
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
17
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
18
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
19
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
20
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
|
|
22
|
-
mod
|
|
23
|
-
)), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
24
|
-
var PresenceChild_exports = {};
|
|
25
|
-
__export(PresenceChild_exports, {
|
|
26
|
-
PresenceChild: () => PresenceChild
|
|
27
|
-
});
|
|
28
|
-
module.exports = __toCommonJS(PresenceChild_exports);
|
|
29
|
-
var import_use_constant = require("@tamagui/use-constant"), import_use_presence = require("@tamagui/use-presence"), React = __toESM(require("react")), import_react = require("react"), import_jsx_runtime = require("react/jsx-runtime");
|
|
1
|
+
import { useConstant } from "@tamagui/use-constant";
|
|
2
|
+
import { PresenceContext } from "@tamagui/use-presence";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { useId } from "react";
|
|
5
|
+
import { jsx } from "react/jsx-runtime";
|
|
30
6
|
const PresenceChild = ({
|
|
31
7
|
children,
|
|
32
8
|
initial,
|
|
@@ -38,7 +14,7 @@ const PresenceChild = ({
|
|
|
38
14
|
presenceAffectsLayout,
|
|
39
15
|
custom
|
|
40
16
|
}) => {
|
|
41
|
-
const presenceChildren =
|
|
17
|
+
const presenceChildren = useConstant(newChildrenMap), id = useId() || "", context = React.useMemo(
|
|
42
18
|
() => ({
|
|
43
19
|
id,
|
|
44
20
|
initial,
|
|
@@ -67,13 +43,12 @@ const PresenceChild = ({
|
|
|
67
43
|
presenceChildren.forEach((_, key) => presenceChildren.set(key, !1));
|
|
68
44
|
}, [isPresent]), React.useEffect(() => {
|
|
69
45
|
!isPresent && !presenceChildren.size && (onExitComplete == null || onExitComplete());
|
|
70
|
-
}, [isPresent]), /* @__PURE__ */
|
|
46
|
+
}, [isPresent]), /* @__PURE__ */ jsx(PresenceContext.Provider, { value: context, children });
|
|
71
47
|
};
|
|
72
48
|
function newChildrenMap() {
|
|
73
49
|
return /* @__PURE__ */ new Map();
|
|
74
50
|
}
|
|
75
|
-
|
|
76
|
-
0 && (module.exports = {
|
|
51
|
+
export {
|
|
77
52
|
PresenceChild
|
|
78
|
-
}
|
|
53
|
+
};
|
|
79
54
|
//# sourceMappingURL=PresenceChild.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/PresenceChild.tsx"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "AAAA,SAAS,mBAAmB;AAC5B,SAAS,uBAAuB;AAEhC,YAAY,WAAW;AACvB,SAAS,aAAa;AA4Eb;AA5DF,MAAM,gBAAgB,CAAC;AAAA,EAC5B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,MAA0B;AACxB,QAAM,mBAAmB,YAAY,cAAc,GAC7C,KAAK,MAAM,KAAK,IAEhB,UAAU,MAAM;AAAA,IACpB,OACS;AAAA,MACL;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,gBAAgB,CAACA,QAAe;AAC9B,yBAAiB,IAAIA,KAAI,EAAI;AAC7B,mBAAW,cAAc,iBAAiB,OAAO;AAC/C,cAAI,CAAC;AACH;AAGJ;AAAA,MACF;AAAA,MACA,UAAU,CAACA,SACT,iBAAiB,IAAIA,KAAI,EAAK,GACvB,MAAM,iBAAiB,OAAOA,GAAE;AAAA,IAE3C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAQF,wBAAwB,SAAY,CAAC,WAAW,aAAa,YAAY;AAAA,EAC3E;AAEA,eAAM,QAAQ,MAAM;AAClB,qBAAiB,QAAQ,CAAC,GAAG,QAAQ,iBAAiB,IAAI,KAAK,EAAK,CAAC;AAAA,EACvE,GAAG,CAAC,SAAS,CAAC,GAMd,MAAM,UAAU,MAAM;AACpB,KAAC,aAAa,CAAC,iBAAiB,SAAQ;AAAA,EAC1C,GAAG,CAAC,SAAS,CAAC,GAEP,oBAAC,gBAAgB,UAAhB,EAAyB,OAAO,SAAU,UAAS;AAC7D;AAEA,SAAS,iBAAuC;AAC9C,SAAO,oBAAI,IAAI;AACjB;",
|
|
5
5
|
"names": ["id"]
|
|
6
6
|
}
|
package/dist/esm/index.native.js
CHANGED
|
@@ -1,26 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __copyProps = (to, from, except, desc) => {
|
|
7
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
8
|
-
for (let key of __getOwnPropNames(from))
|
|
9
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
-
return to;
|
|
11
|
-
}, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
12
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
13
|
-
var src_exports = {};
|
|
14
|
-
module.exports = __toCommonJS(src_exports);
|
|
15
|
-
__reExport(src_exports, require("./AnimatePresence"), module.exports);
|
|
16
|
-
__reExport(src_exports, require("@tamagui/use-presence"), module.exports);
|
|
17
|
-
__reExport(src_exports, require("./types"), module.exports);
|
|
18
|
-
__reExport(src_exports, require("./PresenceChild"), module.exports);
|
|
19
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
20
|
-
0 && (module.exports = {
|
|
21
|
-
...require("./AnimatePresence"),
|
|
22
|
-
...require("@tamagui/use-presence"),
|
|
23
|
-
...require("./types"),
|
|
24
|
-
...require("./PresenceChild")
|
|
25
|
-
});
|
|
1
|
+
export * from "./AnimatePresence";
|
|
2
|
+
export * from "@tamagui/use-presence";
|
|
3
|
+
export * from "./types";
|
|
4
|
+
export * from "./PresenceChild";
|
|
26
5
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/types.native.js
CHANGED
|
@@ -1,15 +1 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __copyProps = (to, from, except, desc) => {
|
|
7
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
8
|
-
for (let key of __getOwnPropNames(from))
|
|
9
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
-
return to;
|
|
11
|
-
};
|
|
12
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
13
|
-
var types_exports = {};
|
|
14
|
-
module.exports = __toCommonJS(types_exports);
|
|
15
1
|
//# sourceMappingURL=types.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/animate-presence",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.23",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"dist"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@tamagui/helpers": "1.88.
|
|
17
|
-
"@tamagui/use-constant": "1.88.
|
|
18
|
-
"@tamagui/use-force-update": "1.88.
|
|
19
|
-
"@tamagui/use-presence": "1.88.
|
|
20
|
-
"@tamagui/web": "1.88.
|
|
16
|
+
"@tamagui/helpers": "1.88.23",
|
|
17
|
+
"@tamagui/use-constant": "1.88.23",
|
|
18
|
+
"@tamagui/use-force-update": "1.88.23",
|
|
19
|
+
"@tamagui/use-presence": "1.88.23",
|
|
20
|
+
"@tamagui/web": "1.88.23"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@tamagui/build": "1.88.
|
|
23
|
+
"@tamagui/build": "1.88.23"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "tamagui-build",
|