@tanstack/react-router 1.121.21 → 1.121.24
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/cjs/Asset.cjs +83 -16
- package/dist/cjs/Asset.cjs.map +1 -1
- package/dist/cjs/Asset.d.cts +2 -1
- package/dist/esm/Asset.d.ts +2 -1
- package/dist/esm/Asset.js +66 -16
- package/dist/esm/Asset.js.map +1 -1
- package/dist/llms/rules/guide.d.ts +1 -1
- package/dist/llms/rules/guide.js +2 -0
- package/package.json +1 -1
- package/src/Asset.tsx +95 -16
package/dist/cjs/Asset.cjs
CHANGED
|
@@ -1,7 +1,29 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
-
|
|
4
|
+
const React = require("react");
|
|
5
|
+
function _interopNamespaceDefault(e) {
|
|
6
|
+
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
7
|
+
if (e) {
|
|
8
|
+
for (const k in e) {
|
|
9
|
+
if (k !== "default") {
|
|
10
|
+
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
11
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: () => e[k]
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
n.default = e;
|
|
19
|
+
return Object.freeze(n);
|
|
20
|
+
}
|
|
21
|
+
const React__namespace = /* @__PURE__ */ _interopNamespaceDefault(React);
|
|
22
|
+
function Asset({
|
|
23
|
+
tag,
|
|
24
|
+
attrs,
|
|
25
|
+
children
|
|
26
|
+
}) {
|
|
5
27
|
switch (tag) {
|
|
6
28
|
case "title":
|
|
7
29
|
return /* @__PURE__ */ jsxRuntime.jsx("title", { ...attrs, suppressHydrationWarning: true, children });
|
|
@@ -18,24 +40,69 @@ function Asset({ tag, attrs, children }) {
|
|
|
18
40
|
}
|
|
19
41
|
);
|
|
20
42
|
case "script":
|
|
21
|
-
|
|
22
|
-
return /* @__PURE__ */ jsxRuntime.jsx("script", { ...attrs, suppressHydrationWarning: true });
|
|
23
|
-
}
|
|
24
|
-
if (typeof children === "string")
|
|
25
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
26
|
-
"script",
|
|
27
|
-
{
|
|
28
|
-
...attrs,
|
|
29
|
-
dangerouslySetInnerHTML: {
|
|
30
|
-
__html: children
|
|
31
|
-
},
|
|
32
|
-
suppressHydrationWarning: true
|
|
33
|
-
}
|
|
34
|
-
);
|
|
35
|
-
return null;
|
|
43
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Script, { attrs, children });
|
|
36
44
|
default:
|
|
37
45
|
return null;
|
|
38
46
|
}
|
|
39
47
|
}
|
|
48
|
+
function Script({
|
|
49
|
+
attrs,
|
|
50
|
+
children
|
|
51
|
+
}) {
|
|
52
|
+
React__namespace.useEffect(() => {
|
|
53
|
+
if (attrs == null ? void 0 : attrs.src) {
|
|
54
|
+
const script = document.createElement("script");
|
|
55
|
+
for (const [key, value] of Object.entries(attrs)) {
|
|
56
|
+
if (key !== "suppressHydrationWarning" && value !== void 0 && value !== false) {
|
|
57
|
+
script.setAttribute(
|
|
58
|
+
key,
|
|
59
|
+
typeof value === "boolean" ? "" : String(value)
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
document.head.appendChild(script);
|
|
64
|
+
return () => {
|
|
65
|
+
if (script.parentNode) {
|
|
66
|
+
script.parentNode.removeChild(script);
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
if (typeof children === "string") {
|
|
71
|
+
const script = document.createElement("script");
|
|
72
|
+
script.textContent = children;
|
|
73
|
+
if (attrs) {
|
|
74
|
+
for (const [key, value] of Object.entries(attrs)) {
|
|
75
|
+
if (key !== "suppressHydrationWarning" && value !== void 0 && value !== false) {
|
|
76
|
+
script.setAttribute(
|
|
77
|
+
key,
|
|
78
|
+
typeof value === "boolean" ? "" : String(value)
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
document.head.appendChild(script);
|
|
84
|
+
return () => {
|
|
85
|
+
if (script.parentNode) {
|
|
86
|
+
script.parentNode.removeChild(script);
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
return void 0;
|
|
91
|
+
}, [attrs, children]);
|
|
92
|
+
if ((attrs == null ? void 0 : attrs.src) && typeof attrs.src === "string") {
|
|
93
|
+
return /* @__PURE__ */ jsxRuntime.jsx("script", { ...attrs, suppressHydrationWarning: true });
|
|
94
|
+
}
|
|
95
|
+
if (typeof children === "string") {
|
|
96
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
97
|
+
"script",
|
|
98
|
+
{
|
|
99
|
+
...attrs,
|
|
100
|
+
dangerouslySetInnerHTML: { __html: children },
|
|
101
|
+
suppressHydrationWarning: true
|
|
102
|
+
}
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
return null;
|
|
106
|
+
}
|
|
40
107
|
exports.Asset = Asset;
|
|
41
108
|
//# sourceMappingURL=Asset.cjs.map
|
package/dist/cjs/Asset.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Asset.cjs","sources":["../../src/Asset.tsx"],"sourcesContent":["import type { RouterManagedTag } from '@tanstack/router-core'\n\nexport function Asset({
|
|
1
|
+
{"version":3,"file":"Asset.cjs","sources":["../../src/Asset.tsx"],"sourcesContent":["import * as React from 'react'\nimport type { RouterManagedTag } from '@tanstack/router-core'\n\ninterface ScriptAttrs {\n [key: string]: string | boolean | undefined\n src?: string\n suppressHydrationWarning?: boolean\n}\n\nexport function Asset({\n tag,\n attrs,\n children,\n}: RouterManagedTag): React.ReactElement | null {\n switch (tag) {\n case 'title':\n return (\n <title {...attrs} suppressHydrationWarning>\n {children}\n </title>\n )\n case 'meta':\n return <meta {...attrs} suppressHydrationWarning />\n case 'link':\n return <link {...attrs} suppressHydrationWarning />\n case 'style':\n return (\n <style\n {...attrs}\n dangerouslySetInnerHTML={{ __html: children as string }}\n />\n )\n case 'script':\n return <Script attrs={attrs}>{children}</Script>\n default:\n return null\n }\n}\n\nfunction Script({\n attrs,\n children,\n}: {\n attrs?: ScriptAttrs\n children?: string\n}) {\n React.useEffect(() => {\n if (attrs?.src) {\n const script = document.createElement('script')\n\n for (const [key, value] of Object.entries(attrs)) {\n if (\n key !== 'suppressHydrationWarning' &&\n value !== undefined &&\n value !== false\n ) {\n script.setAttribute(\n key,\n typeof value === 'boolean' ? '' : String(value),\n )\n }\n }\n\n document.head.appendChild(script)\n\n return () => {\n if (script.parentNode) {\n script.parentNode.removeChild(script)\n }\n }\n }\n\n if (typeof children === 'string') {\n const script = document.createElement('script')\n script.textContent = children\n\n if (attrs) {\n for (const [key, value] of Object.entries(attrs)) {\n if (\n key !== 'suppressHydrationWarning' &&\n value !== undefined &&\n value !== false\n ) {\n script.setAttribute(\n key,\n typeof value === 'boolean' ? '' : String(value),\n )\n }\n }\n }\n\n document.head.appendChild(script)\n\n return () => {\n if (script.parentNode) {\n script.parentNode.removeChild(script)\n }\n }\n }\n\n return undefined\n }, [attrs, children])\n\n if (attrs?.src && typeof attrs.src === 'string') {\n return <script {...attrs} suppressHydrationWarning />\n }\n\n if (typeof children === 'string') {\n return (\n <script\n {...attrs}\n dangerouslySetInnerHTML={{ __html: children }}\n suppressHydrationWarning\n />\n )\n }\n\n return null\n}\n"],"names":["jsx","React"],"mappings":";;;;;;;;;;;;;;;;;;;;;AASO,SAAS,MAAM;AAAA,EACpB;AAAA,EACA;AAAA,EACA;AACF,GAAgD;AAC9C,UAAQ,KAAK;AAAA,IACX,KAAK;AACH,4CACG,SAAO,EAAA,GAAG,OAAO,0BAAwB,MACvC,UACH;AAAA,IAEJ,KAAK;AACH,aAAQA,2BAAAA,IAAA,QAAA,EAAM,GAAG,OAAO,0BAAwB,MAAC;AAAA,IACnD,KAAK;AACH,aAAQA,2BAAAA,IAAA,QAAA,EAAM,GAAG,OAAO,0BAAwB,MAAC;AAAA,IACnD,KAAK;AAED,aAAAA,2BAAA;AAAA,QAAC;AAAA,QAAA;AAAA,UACE,GAAG;AAAA,UACJ,yBAAyB,EAAE,QAAQ,SAAmB;AAAA,QAAA;AAAA,MACxD;AAAA,IAEJ,KAAK;AACI,aAAAA,2BAAA,IAAC,QAAO,EAAA,OAAe,SAAS,CAAA;AAAA,IACzC;AACS,aAAA;AAAA,EAAA;AAEb;AAEA,SAAS,OAAO;AAAA,EACd;AAAA,EACA;AACF,GAGG;AACDC,mBAAM,UAAU,MAAM;AACpB,QAAI,+BAAO,KAAK;AACR,YAAA,SAAS,SAAS,cAAc,QAAQ;AAE9C,iBAAW,CAAC,KAAK,KAAK,KAAK,OAAO,QAAQ,KAAK,GAAG;AAChD,YACE,QAAQ,8BACR,UAAU,UACV,UAAU,OACV;AACO,iBAAA;AAAA,YACL;AAAA,YACA,OAAO,UAAU,YAAY,KAAK,OAAO,KAAK;AAAA,UAChD;AAAA,QAAA;AAAA,MACF;AAGO,eAAA,KAAK,YAAY,MAAM;AAEhC,aAAO,MAAM;AACX,YAAI,OAAO,YAAY;AACd,iBAAA,WAAW,YAAY,MAAM;AAAA,QAAA;AAAA,MAExC;AAAA,IAAA;AAGE,QAAA,OAAO,aAAa,UAAU;AAC1B,YAAA,SAAS,SAAS,cAAc,QAAQ;AAC9C,aAAO,cAAc;AAErB,UAAI,OAAO;AACT,mBAAW,CAAC,KAAK,KAAK,KAAK,OAAO,QAAQ,KAAK,GAAG;AAChD,cACE,QAAQ,8BACR,UAAU,UACV,UAAU,OACV;AACO,mBAAA;AAAA,cACL;AAAA,cACA,OAAO,UAAU,YAAY,KAAK,OAAO,KAAK;AAAA,YAChD;AAAA,UAAA;AAAA,QACF;AAAA,MACF;AAGO,eAAA,KAAK,YAAY,MAAM;AAEhC,aAAO,MAAM;AACX,YAAI,OAAO,YAAY;AACd,iBAAA,WAAW,YAAY,MAAM;AAAA,QAAA;AAAA,MAExC;AAAA,IAAA;AAGK,WAAA;AAAA,EAAA,GACN,CAAC,OAAO,QAAQ,CAAC;AAEpB,OAAI,+BAAO,QAAO,OAAO,MAAM,QAAQ,UAAU;AAC/C,WAAQD,2BAAAA,IAAA,UAAA,EAAQ,GAAG,OAAO,0BAAwB,MAAC;AAAA,EAAA;AAGjD,MAAA,OAAO,aAAa,UAAU;AAE9B,WAAAA,2BAAA;AAAA,MAAC;AAAA,MAAA;AAAA,QACE,GAAG;AAAA,QACJ,yBAAyB,EAAE,QAAQ,SAAS;AAAA,QAC5C,0BAAwB;AAAA,MAAA;AAAA,IAC1B;AAAA,EAAA;AAIG,SAAA;AACT;;"}
|
package/dist/cjs/Asset.d.cts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { RouterManagedTag } from '@tanstack/router-core';
|
|
2
|
-
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
export declare function Asset({ tag, attrs, children, }: RouterManagedTag): React.ReactElement | null;
|
package/dist/esm/Asset.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { RouterManagedTag } from '@tanstack/router-core';
|
|
2
|
-
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
export declare function Asset({ tag, attrs, children, }: RouterManagedTag): React.ReactElement | null;
|
package/dist/esm/Asset.js
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
function Asset({
|
|
4
|
+
tag,
|
|
5
|
+
attrs,
|
|
6
|
+
children
|
|
7
|
+
}) {
|
|
3
8
|
switch (tag) {
|
|
4
9
|
case "title":
|
|
5
10
|
return /* @__PURE__ */ jsx("title", { ...attrs, suppressHydrationWarning: true, children });
|
|
@@ -16,25 +21,70 @@ function Asset({ tag, attrs, children }) {
|
|
|
16
21
|
}
|
|
17
22
|
);
|
|
18
23
|
case "script":
|
|
19
|
-
|
|
20
|
-
return /* @__PURE__ */ jsx("script", { ...attrs, suppressHydrationWarning: true });
|
|
21
|
-
}
|
|
22
|
-
if (typeof children === "string")
|
|
23
|
-
return /* @__PURE__ */ jsx(
|
|
24
|
-
"script",
|
|
25
|
-
{
|
|
26
|
-
...attrs,
|
|
27
|
-
dangerouslySetInnerHTML: {
|
|
28
|
-
__html: children
|
|
29
|
-
},
|
|
30
|
-
suppressHydrationWarning: true
|
|
31
|
-
}
|
|
32
|
-
);
|
|
33
|
-
return null;
|
|
24
|
+
return /* @__PURE__ */ jsx(Script, { attrs, children });
|
|
34
25
|
default:
|
|
35
26
|
return null;
|
|
36
27
|
}
|
|
37
28
|
}
|
|
29
|
+
function Script({
|
|
30
|
+
attrs,
|
|
31
|
+
children
|
|
32
|
+
}) {
|
|
33
|
+
React.useEffect(() => {
|
|
34
|
+
if (attrs == null ? void 0 : attrs.src) {
|
|
35
|
+
const script = document.createElement("script");
|
|
36
|
+
for (const [key, value] of Object.entries(attrs)) {
|
|
37
|
+
if (key !== "suppressHydrationWarning" && value !== void 0 && value !== false) {
|
|
38
|
+
script.setAttribute(
|
|
39
|
+
key,
|
|
40
|
+
typeof value === "boolean" ? "" : String(value)
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
document.head.appendChild(script);
|
|
45
|
+
return () => {
|
|
46
|
+
if (script.parentNode) {
|
|
47
|
+
script.parentNode.removeChild(script);
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
if (typeof children === "string") {
|
|
52
|
+
const script = document.createElement("script");
|
|
53
|
+
script.textContent = children;
|
|
54
|
+
if (attrs) {
|
|
55
|
+
for (const [key, value] of Object.entries(attrs)) {
|
|
56
|
+
if (key !== "suppressHydrationWarning" && value !== void 0 && value !== false) {
|
|
57
|
+
script.setAttribute(
|
|
58
|
+
key,
|
|
59
|
+
typeof value === "boolean" ? "" : String(value)
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
document.head.appendChild(script);
|
|
65
|
+
return () => {
|
|
66
|
+
if (script.parentNode) {
|
|
67
|
+
script.parentNode.removeChild(script);
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
return void 0;
|
|
72
|
+
}, [attrs, children]);
|
|
73
|
+
if ((attrs == null ? void 0 : attrs.src) && typeof attrs.src === "string") {
|
|
74
|
+
return /* @__PURE__ */ jsx("script", { ...attrs, suppressHydrationWarning: true });
|
|
75
|
+
}
|
|
76
|
+
if (typeof children === "string") {
|
|
77
|
+
return /* @__PURE__ */ jsx(
|
|
78
|
+
"script",
|
|
79
|
+
{
|
|
80
|
+
...attrs,
|
|
81
|
+
dangerouslySetInnerHTML: { __html: children },
|
|
82
|
+
suppressHydrationWarning: true
|
|
83
|
+
}
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
return null;
|
|
87
|
+
}
|
|
38
88
|
export {
|
|
39
89
|
Asset
|
|
40
90
|
};
|
package/dist/esm/Asset.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Asset.js","sources":["../../src/Asset.tsx"],"sourcesContent":["import type { RouterManagedTag } from '@tanstack/router-core'\n\nexport function Asset({
|
|
1
|
+
{"version":3,"file":"Asset.js","sources":["../../src/Asset.tsx"],"sourcesContent":["import * as React from 'react'\nimport type { RouterManagedTag } from '@tanstack/router-core'\n\ninterface ScriptAttrs {\n [key: string]: string | boolean | undefined\n src?: string\n suppressHydrationWarning?: boolean\n}\n\nexport function Asset({\n tag,\n attrs,\n children,\n}: RouterManagedTag): React.ReactElement | null {\n switch (tag) {\n case 'title':\n return (\n <title {...attrs} suppressHydrationWarning>\n {children}\n </title>\n )\n case 'meta':\n return <meta {...attrs} suppressHydrationWarning />\n case 'link':\n return <link {...attrs} suppressHydrationWarning />\n case 'style':\n return (\n <style\n {...attrs}\n dangerouslySetInnerHTML={{ __html: children as string }}\n />\n )\n case 'script':\n return <Script attrs={attrs}>{children}</Script>\n default:\n return null\n }\n}\n\nfunction Script({\n attrs,\n children,\n}: {\n attrs?: ScriptAttrs\n children?: string\n}) {\n React.useEffect(() => {\n if (attrs?.src) {\n const script = document.createElement('script')\n\n for (const [key, value] of Object.entries(attrs)) {\n if (\n key !== 'suppressHydrationWarning' &&\n value !== undefined &&\n value !== false\n ) {\n script.setAttribute(\n key,\n typeof value === 'boolean' ? '' : String(value),\n )\n }\n }\n\n document.head.appendChild(script)\n\n return () => {\n if (script.parentNode) {\n script.parentNode.removeChild(script)\n }\n }\n }\n\n if (typeof children === 'string') {\n const script = document.createElement('script')\n script.textContent = children\n\n if (attrs) {\n for (const [key, value] of Object.entries(attrs)) {\n if (\n key !== 'suppressHydrationWarning' &&\n value !== undefined &&\n value !== false\n ) {\n script.setAttribute(\n key,\n typeof value === 'boolean' ? '' : String(value),\n )\n }\n }\n }\n\n document.head.appendChild(script)\n\n return () => {\n if (script.parentNode) {\n script.parentNode.removeChild(script)\n }\n }\n }\n\n return undefined\n }, [attrs, children])\n\n if (attrs?.src && typeof attrs.src === 'string') {\n return <script {...attrs} suppressHydrationWarning />\n }\n\n if (typeof children === 'string') {\n return (\n <script\n {...attrs}\n dangerouslySetInnerHTML={{ __html: children }}\n suppressHydrationWarning\n />\n )\n }\n\n return null\n}\n"],"names":[],"mappings":";;AASO,SAAS,MAAM;AAAA,EACpB;AAAA,EACA;AAAA,EACA;AACF,GAAgD;AAC9C,UAAQ,KAAK;AAAA,IACX,KAAK;AACH,iCACG,SAAO,EAAA,GAAG,OAAO,0BAAwB,MACvC,UACH;AAAA,IAEJ,KAAK;AACH,aAAQ,oBAAA,QAAA,EAAM,GAAG,OAAO,0BAAwB,MAAC;AAAA,IACnD,KAAK;AACH,aAAQ,oBAAA,QAAA,EAAM,GAAG,OAAO,0BAAwB,MAAC;AAAA,IACnD,KAAK;AAED,aAAA;AAAA,QAAC;AAAA,QAAA;AAAA,UACE,GAAG;AAAA,UACJ,yBAAyB,EAAE,QAAQ,SAAmB;AAAA,QAAA;AAAA,MACxD;AAAA,IAEJ,KAAK;AACI,aAAA,oBAAC,QAAO,EAAA,OAAe,SAAS,CAAA;AAAA,IACzC;AACS,aAAA;AAAA,EAAA;AAEb;AAEA,SAAS,OAAO;AAAA,EACd;AAAA,EACA;AACF,GAGG;AACD,QAAM,UAAU,MAAM;AACpB,QAAI,+BAAO,KAAK;AACR,YAAA,SAAS,SAAS,cAAc,QAAQ;AAE9C,iBAAW,CAAC,KAAK,KAAK,KAAK,OAAO,QAAQ,KAAK,GAAG;AAChD,YACE,QAAQ,8BACR,UAAU,UACV,UAAU,OACV;AACO,iBAAA;AAAA,YACL;AAAA,YACA,OAAO,UAAU,YAAY,KAAK,OAAO,KAAK;AAAA,UAChD;AAAA,QAAA;AAAA,MACF;AAGO,eAAA,KAAK,YAAY,MAAM;AAEhC,aAAO,MAAM;AACX,YAAI,OAAO,YAAY;AACd,iBAAA,WAAW,YAAY,MAAM;AAAA,QAAA;AAAA,MAExC;AAAA,IAAA;AAGE,QAAA,OAAO,aAAa,UAAU;AAC1B,YAAA,SAAS,SAAS,cAAc,QAAQ;AAC9C,aAAO,cAAc;AAErB,UAAI,OAAO;AACT,mBAAW,CAAC,KAAK,KAAK,KAAK,OAAO,QAAQ,KAAK,GAAG;AAChD,cACE,QAAQ,8BACR,UAAU,UACV,UAAU,OACV;AACO,mBAAA;AAAA,cACL;AAAA,cACA,OAAO,UAAU,YAAY,KAAK,OAAO,KAAK;AAAA,YAChD;AAAA,UAAA;AAAA,QACF;AAAA,MACF;AAGO,eAAA,KAAK,YAAY,MAAM;AAEhC,aAAO,MAAM;AACX,YAAI,OAAO,YAAY;AACd,iBAAA,WAAW,YAAY,MAAM;AAAA,QAAA;AAAA,MAExC;AAAA,IAAA;AAGK,WAAA;AAAA,EAAA,GACN,CAAC,OAAO,QAAQ,CAAC;AAEpB,OAAI,+BAAO,QAAO,OAAO,MAAM,QAAQ,UAAU;AAC/C,WAAQ,oBAAA,UAAA,EAAQ,GAAG,OAAO,0BAAwB,MAAC;AAAA,EAAA;AAGjD,MAAA,OAAO,aAAa,UAAU;AAE9B,WAAA;AAAA,MAAC;AAAA,MAAA;AAAA,QACE,GAAG;AAAA,QACJ,yBAAyB,EAAE,QAAQ,SAAS;AAAA,QAC5C,0BAAwB;AAAA,MAAA;AAAA,IAC1B;AAAA,EAAA;AAIG,SAAA;AACT;"}
|