@tamagui/portal 1.116.1 → 1.116.3

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.
@@ -0,0 +1,195 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf, __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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
16
+ // If the importer is in node compatibility mode or this is not an ESM
17
+ // file that has been converted to a CommonJS file using a Babel-
18
+ // compatible transform (i.e. "__esModule" has not been set), then set
19
+ // "default" to the CommonJS "module.exports" for node compatibility.
20
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
21
+ mod
22
+ )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
23
+ var GorhomPortal_exports = {};
24
+ __export(GorhomPortal_exports, {
25
+ ACTIONS: () => ACTIONS,
26
+ INITIAL_STATE: () => INITIAL_STATE,
27
+ PortalHost: () => PortalHost,
28
+ PortalItem: () => PortalItem,
29
+ PortalProvider: () => PortalProvider,
30
+ usePortal: () => usePortal
31
+ });
32
+ module.exports = __toCommonJS(GorhomPortal_exports);
33
+ var import_constants = require("@tamagui/constants"), import_core = require("@tamagui/core"), import_start_transition = require("@tamagui/start-transition"), import_react = __toESM(require("react")), import_react_dom = require("react-dom"), import_jsx_runtime = require("react/jsx-runtime"), ACTIONS = /* @__PURE__ */ ((ACTIONS2) => (ACTIONS2[ACTIONS2.REGISTER_HOST = 0] = "REGISTER_HOST", ACTIONS2[ACTIONS2.DEREGISTER_HOST = 1] = "DEREGISTER_HOST", ACTIONS2[ACTIONS2.ADD_UPDATE_PORTAL = 2] = "ADD_UPDATE_PORTAL", ACTIONS2[ACTIONS2.REMOVE_PORTAL = 3] = "REMOVE_PORTAL", ACTIONS2))(ACTIONS || {});
34
+ const INITIAL_STATE = {};
35
+ const registerHost = (state, hostName) => (hostName in state || (state[hostName] = []), state), deregisterHost = (state, hostName) => (delete state[hostName], state), addUpdatePortal = (state, hostName, portalName, node) => {
36
+ hostName in state || (state = registerHost(state, hostName));
37
+ const index = state[hostName].findIndex((item) => item.name === portalName);
38
+ return index !== -1 ? state[hostName][index].node = node : state[hostName].push({
39
+ name: portalName,
40
+ node
41
+ }), state;
42
+ }, removePortal = (state, hostName, portalName) => {
43
+ if (!(hostName in state))
44
+ return console.info(
45
+ `Failed to remove portal '${portalName}', '${hostName}' was not registered!`
46
+ ), state;
47
+ const index = state[hostName].findIndex((item) => item.name === portalName);
48
+ return index !== -1 && state[hostName].splice(index, 1), state;
49
+ }, reducer = (state, action) => {
50
+ const { type } = action;
51
+ switch (type) {
52
+ case 0 /* REGISTER_HOST */:
53
+ return registerHost({ ...state }, action.hostName);
54
+ case 1 /* DEREGISTER_HOST */:
55
+ return deregisterHost({ ...state }, action.hostName);
56
+ case 2 /* ADD_UPDATE_PORTAL */:
57
+ return addUpdatePortal(
58
+ { ...state },
59
+ action.hostName,
60
+ action.portalName,
61
+ action.node
62
+ );
63
+ case 3 /* REMOVE_PORTAL */:
64
+ return removePortal(
65
+ { ...state },
66
+ action.hostName,
67
+ action.portalName
68
+ );
69
+ default:
70
+ return state;
71
+ }
72
+ }, PortalStateContext = (0, import_react.createContext)(null), PortalDispatchContext = (0, import_react.createContext)(null), usePortalState = (hostName) => {
73
+ const state = (0, import_react.useContext)(PortalStateContext);
74
+ if (state === null)
75
+ throw new Error(
76
+ "'PortalStateContext' cannot be null, please add 'PortalProvider' to the root component."
77
+ );
78
+ return state[hostName] || [];
79
+ }, usePortal = (hostName = "root") => {
80
+ const dispatch = (0, import_react.useContext)(PortalDispatchContext);
81
+ if (dispatch === null)
82
+ throw new Error(
83
+ "'PortalDispatchContext' cannot be null, please add 'PortalProvider' to the root component."
84
+ );
85
+ const registerHost2 = (0, import_react.useCallback)(() => {
86
+ dispatch({
87
+ type: 0 /* REGISTER_HOST */,
88
+ hostName
89
+ });
90
+ }, []), deregisterHost2 = (0, import_react.useCallback)(() => {
91
+ dispatch({
92
+ type: 1 /* DEREGISTER_HOST */,
93
+ hostName
94
+ });
95
+ }, []), addUpdatePortal2 = (0, import_react.useCallback)((name, node) => {
96
+ dispatch({
97
+ type: 2 /* ADD_UPDATE_PORTAL */,
98
+ hostName,
99
+ portalName: name,
100
+ node
101
+ });
102
+ }, []), removePortal2 = (0, import_react.useCallback)((name) => {
103
+ dispatch({
104
+ type: 3 /* REMOVE_PORTAL */,
105
+ hostName,
106
+ portalName: name
107
+ });
108
+ }, []);
109
+ return {
110
+ registerHost: registerHost2,
111
+ deregisterHost: deregisterHost2,
112
+ addPortal: addUpdatePortal2,
113
+ updatePortal: addUpdatePortal2,
114
+ removePortal: removePortal2
115
+ };
116
+ }, PortalProviderComponent = ({
117
+ rootHostName = "root",
118
+ shouldAddRootHost = !0,
119
+ children
120
+ }) => {
121
+ const [state, dispatch] = (0, import_react.useReducer)(reducer, INITIAL_STATE), transitionDispatch = (0, import_react.useMemo)(() => (value) => {
122
+ (0, import_start_transition.startTransition)(() => {
123
+ dispatch(value);
124
+ });
125
+ }, [dispatch]);
126
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(PortalDispatchContext.Provider, { value: transitionDispatch, children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(PortalStateContext.Provider, { value: state, children: [
127
+ children,
128
+ shouldAddRootHost && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(PortalHost, { name: rootHostName })
129
+ ] }) });
130
+ }, PortalProvider = (0, import_react.memo)(PortalProviderComponent);
131
+ PortalProvider.displayName = "PortalProvider";
132
+ const defaultRenderer = (children) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children }), PortalHost = (0, import_react.memo)(function(props) {
133
+ return import_constants.isWeb ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(PortalHostWeb, { ...props }) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(PortalHostNonNative, { ...props });
134
+ }), allPortalHosts = /* @__PURE__ */ new Map();
135
+ function PortalHostWeb(props) {
136
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
137
+ "div",
138
+ {
139
+ style: {
140
+ display: "contents"
141
+ },
142
+ ref: (node) => {
143
+ node ? allPortalHosts.set(props.name, node) : allPortalHosts.delete(props.name);
144
+ }
145
+ }
146
+ );
147
+ }
148
+ function PortalHostNonNative(props) {
149
+ const { name, forwardProps, render = defaultRenderer } = props, state = usePortalState(name), { registerHost: registerHost2, deregisterHost: deregisterHost2 } = usePortal(props.name);
150
+ return (0, import_react.useEffect)(() => {
151
+ if (!(typeof window > "u"))
152
+ return registerHost2(), () => {
153
+ deregisterHost2();
154
+ };
155
+ }, []), render(
156
+ forwardProps ? state.map((item) => {
157
+ let next = item.node;
158
+ const { children, ...restForwardProps } = forwardProps;
159
+ return forwardProps ? import_react.default.Children.map(next, (child) => import_react.default.isValidElement(child) ? import_react.default.cloneElement(child, { key: child.key, ...restForwardProps }) : child) : next;
160
+ }) : state.map((item) => item.node)
161
+ );
162
+ }
163
+ const PortalItem = (0, import_react.memo)(function(props) {
164
+ return import_constants.isWeb ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(PortalItemWeb, { ...props }) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(NonNativePortalComponent, { ...props });
165
+ }), PortalItemWeb = (props) => {
166
+ if (!props.hostName)
167
+ throw new Error("No name");
168
+ const hostNode = allPortalHosts.get(props.hostName);
169
+ return hostNode ? (0, import_react_dom.createPortal)(props.children, hostNode) : null;
170
+ }, NonNativePortalComponent = (props) => {
171
+ const {
172
+ name: _providedName,
173
+ hostName,
174
+ handleOnMount: _providedHandleOnMount,
175
+ handleOnUnmount: _providedHandleOnUnmount,
176
+ handleOnUpdate: _providedHandleOnUpdate,
177
+ children,
178
+ passthrough
179
+ } = props, { addPortal: addUpdatePortal2, removePortal: removePortal2 } = usePortal(hostName), id = (0, import_react.useId)(), name = _providedName || id, handleOnMount = (0, import_core.useEvent)(() => {
180
+ _providedHandleOnMount ? _providedHandleOnMount(() => addUpdatePortal2(name, children)) : addUpdatePortal2(name, children);
181
+ }), handleOnUnmount = (0, import_core.useEvent)(() => {
182
+ _providedHandleOnUnmount ? _providedHandleOnUnmount(() => removePortal2(name)) : removePortal2(name);
183
+ }), handleOnUpdate = (0, import_core.useEvent)(() => {
184
+ _providedHandleOnUpdate ? _providedHandleOnUpdate(() => addUpdatePortal2(name, children)) : addUpdatePortal2(name, children);
185
+ });
186
+ return (0, import_constants.useIsomorphicLayoutEffect)(() => {
187
+ if (!passthrough)
188
+ return handleOnMount(), () => {
189
+ handleOnUnmount();
190
+ };
191
+ }, []), (0, import_react.useEffect)(() => {
192
+ passthrough || handleOnUpdate();
193
+ }, [children]), passthrough ? children : null;
194
+ };
195
+ //# sourceMappingURL=GorhomPortal.js.map
@@ -0,0 +1,50 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf, __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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
16
+ // If the importer is in node compatibility mode or this is not an ESM
17
+ // file that has been converted to a CommonJS file using a Babel-
18
+ // compatible transform (i.e. "__esModule" has not been set), then set
19
+ // "default" to the CommonJS "module.exports" for node compatibility.
20
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
21
+ mod
22
+ )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
23
+ var Portal_exports = {};
24
+ __export(Portal_exports, {
25
+ Portal: () => Portal
26
+ });
27
+ module.exports = __toCommonJS(Portal_exports);
28
+ var import_polyfill_dev = require("@tamagui/polyfill-dev"), import_constants = require("@tamagui/constants"), import_stacks = require("@tamagui/stacks"), React = __toESM(require("react")), import_react_dom = require("react-dom"), import_useStackedZIndex = require("./useStackedZIndex"), import_jsx_runtime = require("react/jsx-runtime");
29
+ const Portal = React.memo((propsIn) => {
30
+ if (import_constants.isServer)
31
+ return null;
32
+ const { host = globalThis.document?.body, stackZIndex, ...props } = propsIn, zIndex = (0, import_useStackedZIndex.useStackedZIndex)(propsIn);
33
+ return (0, import_react_dom.createPortal)(
34
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
35
+ import_stacks.YStack,
36
+ {
37
+ contain: "strict",
38
+ fullscreen: !0,
39
+ position: "fixed",
40
+ maxWidth: "100vw",
41
+ maxHeight: "100vh",
42
+ pointerEvents: "none",
43
+ ...props,
44
+ zIndex
45
+ }
46
+ ),
47
+ host
48
+ );
49
+ });
50
+ //# sourceMappingURL=Portal.js.map
@@ -0,0 +1,14 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __copyProps = (to, from, except, desc) => {
6
+ if (from && typeof from == "object" || typeof from == "function")
7
+ for (let key of __getOwnPropNames(from))
8
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
9
+ return to;
10
+ };
11
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
12
+ var PortalProps_exports = {};
13
+ module.exports = __toCommonJS(PortalProps_exports);
14
+ //# sourceMappingURL=PortalProps.js.map
@@ -0,0 +1,17 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __copyProps = (to, from, except, desc) => {
6
+ if (from && typeof from == "object" || typeof from == "function")
7
+ for (let key of __getOwnPropNames(from))
8
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
9
+ return to;
10
+ }, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
11
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
12
+ var src_exports = {};
13
+ module.exports = __toCommonJS(src_exports);
14
+ __reExport(src_exports, require("./Portal"), module.exports);
15
+ __reExport(src_exports, require("./PortalProps"), module.exports);
16
+ __reExport(src_exports, require("./GorhomPortal"), module.exports);
17
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,40 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: !0 });
8
+ }, __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from == "object" || typeof from == "function")
10
+ for (let key of __getOwnPropNames(from))
11
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12
+ return to;
13
+ };
14
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
15
+ var useStackedZIndex_exports = {};
16
+ __export(useStackedZIndex_exports, {
17
+ useStackedZIndex: () => useStackedZIndex
18
+ });
19
+ module.exports = __toCommonJS(useStackedZIndex_exports);
20
+ var import_react = require("react");
21
+ const CurrentPortalZIndices = {}, useStackedZIndex = (props) => {
22
+ const { stackZIndex, zIndex: zIndexProp = 1e3 } = props, zIndex = (() => {
23
+ if (stackZIndex) {
24
+ const highest = Object.values(CurrentPortalZIndices).reduce(
25
+ (acc, cur) => Math.max(acc, cur),
26
+ 0
27
+ );
28
+ return Math.max(stackZIndex, highest + 1);
29
+ }
30
+ if (zIndexProp)
31
+ return zIndexProp;
32
+ })(), id = (0, import_react.useId)();
33
+ return (0, import_react.useEffect)(() => {
34
+ if (typeof zIndex == "number")
35
+ return CurrentPortalZIndices[id] = zIndex, () => {
36
+ delete CurrentPortalZIndices[id];
37
+ };
38
+ }, [zIndex]), zIndex;
39
+ };
40
+ //# sourceMappingURL=useStackedZIndex.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/portal",
3
- "version": "1.116.1",
3
+ "version": "1.116.3",
4
4
  "source": "src/index.ts",
5
5
  "types": "./types/index.d.ts",
6
6
  "main": "dist/cjs",
@@ -30,17 +30,17 @@
30
30
  }
31
31
  },
32
32
  "dependencies": {
33
- "@tamagui/constants": "1.116.1",
34
- "@tamagui/core": "1.116.1",
35
- "@tamagui/stacks": "1.116.1",
36
- "@tamagui/start-transition": "1.116.1",
37
- "@tamagui/use-did-finish-ssr": "1.116.1",
38
- "@tamagui/use-event": "1.116.1",
33
+ "@tamagui/constants": "1.116.3",
34
+ "@tamagui/core": "1.116.3",
35
+ "@tamagui/stacks": "1.116.3",
36
+ "@tamagui/start-transition": "1.116.3",
37
+ "@tamagui/use-did-finish-ssr": "1.116.3",
38
+ "@tamagui/use-event": "1.116.3",
39
39
  "react": "^18.2.0 || ^19.0.0",
40
40
  "react-dom": "^18.2.0 || ^19.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@tamagui/build": "1.116.1",
43
+ "@tamagui/build": "1.116.3",
44
44
  "react-native": "0.74.1"
45
45
  },
46
46
  "publishConfig": {
@@ -1,65 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf,
6
- __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __export = (target, all) => {
8
- for (var name in all) __defProp(target, name, {
9
- get: all[name],
10
- enumerable: !0
11
- });
12
- },
13
- __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
15
- get: () => from[key],
16
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
- });
18
- return to;
19
- };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- // If the importer is in node compatibility mode or this is not an ESM
22
- // file that has been converted to a CommonJS file using a Babel-
23
- // compatible transform (i.e. "__esModule" has not been set), then set
24
- // "default" to the CommonJS "module.exports" for node compatibility.
25
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
26
- value: mod,
27
- enumerable: !0
28
- }) : target, mod)),
29
- __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
30
- value: !0
31
- }), mod);
32
- var Portal_native_exports = {};
33
- __export(Portal_native_exports, {
34
- Portal: () => Portal
35
- });
36
- module.exports = __toCommonJS(Portal_native_exports);
37
- var import_stacks = require("@tamagui/stacks"),
38
- React = __toESM(require("react")),
39
- import_react_native = require("react-native-web"),
40
- import_GorhomPortal = require("./GorhomPortal.cjs"),
41
- import_useStackedZIndex = require("./useStackedZIndex.cjs"),
42
- import_jsx_runtime = require("react/jsx-runtime");
43
- const isFabric = global?.nativeFabricUIManager;
44
- let createPortal;
45
- isFabric ? createPortal = require("react-native/Libraries/Renderer/shims/ReactFabric").createPortal : createPortal = require("react-native/Libraries/Renderer/shims/ReactNative").createPortal;
46
- const Portal = propsIn => {
47
- const {
48
- stackZIndex,
49
- ...props
50
- } = propsIn,
51
- rootTag = React.useContext(import_react_native.RootTagContext),
52
- zIndex = (0, import_useStackedZIndex.useStackedZIndex)(propsIn),
53
- contents = /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_stacks.YStack, {
54
- pointerEvents: "box-none",
55
- fullscreen: !0,
56
- position: "absolute",
57
- maxWidth: "100%",
58
- ...props,
59
- zIndex
60
- });
61
- return process.env.TAMAGUI_USE_NATIVE_PORTAL === "false" || import_react_native.Platform.OS === "android" || !rootTag ? /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_GorhomPortal.PortalItem, {
62
- hostName: "root",
63
- children: contents
64
- }) : createPortal(contents, rootTag);
65
- };
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/Portal.native.tsx"],
4
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAAuB,4BACvB,QAAuB,2BAEvB,sBAAyC,yBAEzC,sBAA2B,2BAE3B,0BAAiC,+BAiB7B;AAfJ,MAAM,WAAW,QAAQ;AACzB,IAAI;AACA,WACF,eAAe,QAAQ,mDAAmD,EAAE,eAE5E,eAAe,QAAQ,mDAAmD,EAAE;AAGvE,MAAM,SAAS,CAAC,YAAyB;AAC9C,QAAM,EAAE,aAAa,GAAG,MAAM,IAAI,SAE5B,UAAU,MAAM,WAAW,kCAAc,GACzC,aAAS,0CAAiB,OAAO,GAEjC,WACJ;AAAA,IAAC;AAAA;AAAA,MACC,eAAc;AAAA,MACd,YAAU;AAAA,MACV,UAAS;AAAA,MACT,UAAS;AAAA,MACR,GAAG;AAAA,MACJ;AAAA;AAAA,EACF;AAGF,SACE,QAAQ,IAAI,8BAA8B,WAC1C,6BAAS,OAAO,aAChB,CAAC,UAEM,4CAAC,kCAAW,UAAS,QAAQ,oBAAS,IAGxC,aAAa,UAAU,OAAO;AACvC;",
5
- "names": []
6
- }
File without changes
File without changes