@pagelines/sdk 1.0.662 → 1.0.663
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/AgentProvider.js +2782 -0
- package/dist/AgentProvider.js.map +1 -0
- package/dist/AgentWidgetInline.js +44 -32
- package/dist/AgentWidgetInline.js.map +1 -1
- package/dist/AgentWidgetModal.js +75 -64
- package/dist/AgentWidgetModal.js.map +1 -1
- package/dist/AgentWrap.js +5251 -0
- package/dist/AgentWrap.js.map +1 -0
- package/dist/FModal.js +165 -0
- package/dist/FModal.js.map +1 -0
- package/dist/agent.js +157 -186
- package/dist/agent.js.map +1 -1
- package/dist/constants.js +80 -0
- package/dist/constants.js.map +1 -0
- package/dist/contract.js +6271 -0
- package/dist/contract.js.map +1 -0
- package/dist/demo.js +242 -259
- package/dist/demo.js.map +1 -1
- package/dist/node_modules/.vue-global-types/vue_3.5_false.d.ts +4 -0
- package/dist/rolldown-runtime.js +14 -0
- package/dist/sdk.css +2 -1
- package/dist/sdk.js +4 -14
- package/dist/sdkClient.js +775 -867
- package/dist/sdkClient.js.map +1 -1
- package/dist/useWidgetState.js +21 -0
- package/dist/useWidgetState.js.map +1 -0
- package/dist/widget.js +721 -7
- package/dist/widget.js.map +1 -1
- package/package.json +12 -12
- package/dist/AgentProvider.vue_vue_type_script_setup_true_lang.js +0 -4208
- package/dist/AgentProvider.vue_vue_type_script_setup_true_lang.js.map +0 -1
- package/dist/AgentWidgetOnboard.js +0 -5
- package/dist/AgentWidgetOnboard.js.map +0 -1
- package/dist/AgentWrap.vue_vue_type_script_setup_true_lang.js +0 -5098
- package/dist/AgentWrap.vue_vue_type_script_setup_true_lang.js.map +0 -1
- package/dist/FModal.vue_vue_type_script_setup_true_lang.js +0 -181
- package/dist/FModal.vue_vue_type_script_setup_true_lang.js.map +0 -1
- package/dist/agent/test/AgentController.test.d.ts +0 -1
- package/dist/agent/test/ChatRichText.client.test.d.ts +0 -1
- package/dist/agent/test/ChatVisualBlock.client.test.d.ts +0 -1
- package/dist/agent/test/ElAgentChat.client.test.d.ts +0 -1
- package/dist/agent/test/ElAgentChatPreview.client.test.d.ts +0 -1
- package/dist/agent/test/VoiceRecorderController.unit.test.d.ts +0 -1
- package/dist/agent/test/auth-inputs.test.d.ts +0 -1
- package/dist/agent/test/chat-visual-format.unit.test.d.ts +0 -1
- package/dist/agent/test/utils.test.d.ts +0 -1
- package/dist/agent/test/webhook.test.d.ts +0 -1
- package/dist/contract/regenerate.d.ts +0 -2
- package/dist/contract/test/build.unit.test.d.ts +0 -1
- package/dist/contract/test/conversation-wire-shapes.unit.test.d.ts +0 -14
- package/dist/contract/test/snapshot.unit.test.d.ts +0 -1
- package/dist/index.js +0 -872
- package/dist/index.js.map +0 -1
- package/dist/sdk.js.map +0 -1
- package/dist/socialPlatforms.js +0 -82
- package/dist/socialPlatforms.js.map +0 -1
- package/dist/test/agent-client.test.d.ts +0 -4
- package/dist/test/api.test.d.ts +0 -1
- package/dist/test/billing-client.test.d.ts +0 -4
- package/dist/test/build.test.d.ts +0 -1
- package/dist/test/chat-authenticated.test.d.ts +0 -1
- package/dist/test/chat-issue-presentation.test.d.ts +0 -1
- package/dist/test/derive-mode.test.d.ts +0 -1
- package/dist/test/sdk-token-capture.test.d.ts +0 -13
- package/dist/vite.config.sdk.d.ts +0 -2
- package/dist/vitest.config.d.ts +0 -2
|
@@ -1,33 +1,45 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
1
|
+
import "./rolldown-runtime.js";
|
|
2
|
+
import { t as e } from "./AgentProvider.js";
|
|
3
|
+
import { t } from "./useWidgetState.js";
|
|
4
|
+
import { createBlock as n, defineComponent as r, openBlock as i, unref as a } from "vue";
|
|
5
|
+
//#endregion
|
|
6
|
+
//#region widget/ui/AgentWidgetInline.vue
|
|
7
|
+
var o = /* @__PURE__ */ r({
|
|
8
|
+
__name: "AgentWidgetInline",
|
|
9
|
+
props: {
|
|
10
|
+
sdk: {},
|
|
11
|
+
handle: {},
|
|
12
|
+
agent: {},
|
|
13
|
+
context: {},
|
|
14
|
+
firstMessage: {},
|
|
15
|
+
buttonText: {},
|
|
16
|
+
buttonIcon: {},
|
|
17
|
+
chatOnly: { type: Boolean }
|
|
18
|
+
},
|
|
19
|
+
setup(r, { expose: o }) {
|
|
20
|
+
let { currentAgent: s, currentContext: c, currentFirstMessage: l, currentButtonText: u, currentButtonIcon: d, update: f } = t(r);
|
|
21
|
+
return o({ update: f }), (t, o) => (i(), n(e, {
|
|
22
|
+
sdk: r.sdk,
|
|
23
|
+
handle: r.handle,
|
|
24
|
+
agent: a(s),
|
|
25
|
+
context: a(c),
|
|
26
|
+
"first-message": a(l),
|
|
27
|
+
"button-text": a(u),
|
|
28
|
+
"button-icon": a(d),
|
|
29
|
+
"chat-only": r.chatOnly
|
|
30
|
+
}, null, 8, [
|
|
31
|
+
"sdk",
|
|
32
|
+
"handle",
|
|
33
|
+
"agent",
|
|
34
|
+
"context",
|
|
35
|
+
"first-message",
|
|
36
|
+
"button-text",
|
|
37
|
+
"button-icon",
|
|
38
|
+
"chat-only"
|
|
39
|
+
]));
|
|
40
|
+
}
|
|
29
41
|
});
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
//# sourceMappingURL=AgentWidgetInline.js.map
|
|
42
|
+
//#endregion
|
|
43
|
+
export { o as default };
|
|
44
|
+
|
|
45
|
+
//# sourceMappingURL=AgentWidgetInline.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AgentWidgetInline.js","sources":["../widget/ui/AgentWidgetInline.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport type { PageLinesSDK } from '../../sdkClient'\nimport type { AgentConfig } from '../../agent/schema'\nimport type { ButtonIconPreset } from '../PLWidget'\nimport AgentProvider from '../../agent/ui/AgentProvider.vue'\nimport { useWidgetState } from '../composables/useWidgetState'\n\nconst props = defineProps<{\n sdk?: PageLinesSDK\n handle?: string\n agent?: AgentConfig\n context?: string\n firstMessage?: string\n buttonText?: string\n buttonIcon?: ButtonIconPreset\n chatOnly?: boolean\n}>()\n\nconst { currentAgent, currentContext, currentFirstMessage, currentButtonText, currentButtonIcon, update } = useWidgetState(props)\n\ndefineExpose({ update })\n</script>\n\n<template>\n <AgentProvider\n :sdk=\"sdk\"\n :handle=\"handle\"\n :agent=\"currentAgent\"\n :context=\"currentContext\"\n :first-message=\"currentFirstMessage\"\n :button-text=\"currentButtonText\"\n :button-icon=\"currentButtonIcon\"\n :chat-only=\"chatOnly\"\n />\n</template>\n"
|
|
1
|
+
{"version":3,"file":"AgentWidgetInline.js","names":[],"sources":["../widget/ui/AgentWidgetInline.vue","../widget/ui/AgentWidgetInline.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport type { PageLinesSDK } from '../../sdkClient'\nimport type { AgentConfig } from '../../agent/schema'\nimport type { ButtonIconPreset } from '../PLWidget'\nimport AgentProvider from '../../agent/ui/AgentProvider.vue'\nimport { useWidgetState } from '../composables/useWidgetState'\n\nconst props = defineProps<{\n sdk?: PageLinesSDK\n handle?: string\n agent?: AgentConfig\n context?: string\n firstMessage?: string\n buttonText?: string\n buttonIcon?: ButtonIconPreset\n chatOnly?: boolean\n}>()\n\nconst { currentAgent, currentContext, currentFirstMessage, currentButtonText, currentButtonIcon, update } = useWidgetState(props)\n\ndefineExpose({ update })\n</script>\n\n<template>\n <AgentProvider\n :sdk=\"sdk\"\n :handle=\"handle\"\n :agent=\"currentAgent\"\n :context=\"currentContext\"\n :first-message=\"currentFirstMessage\"\n :button-text=\"currentButtonText\"\n :button-icon=\"currentButtonIcon\"\n :chat-only=\"chatOnly\"\n />\n</template>\n","<script setup lang=\"ts\">\nimport type { PageLinesSDK } from '../../sdkClient'\nimport type { AgentConfig } from '../../agent/schema'\nimport type { ButtonIconPreset } from '../PLWidget'\nimport AgentProvider from '../../agent/ui/AgentProvider.vue'\nimport { useWidgetState } from '../composables/useWidgetState'\n\nconst props = defineProps<{\n sdk?: PageLinesSDK\n handle?: string\n agent?: AgentConfig\n context?: string\n firstMessage?: string\n buttonText?: string\n buttonIcon?: ButtonIconPreset\n chatOnly?: boolean\n}>()\n\nconst { currentAgent, currentContext, currentFirstMessage, currentButtonText, currentButtonIcon, update } = useWidgetState(props)\n\ndefineExpose({ update })\n</script>\n\n<template>\n <AgentProvider\n :sdk=\"sdk\"\n :handle=\"handle\"\n :agent=\"currentAgent\"\n :context=\"currentContext\"\n :first-message=\"currentFirstMessage\"\n :button-text=\"currentButtonText\"\n :button-icon=\"currentButtonIcon\"\n :chat-only=\"chatOnly\"\n />\n</template>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EAkBA,IAAM,EAAE,iBAAc,mBAAgB,wBAAqB,sBAAmB,sBAAmB,cAAW,EAAe,CAAK;SAEhI,EAAa,EAAE,UAAO,CAAC,mBAIrB,EASE,GAAA;GARC,KAAK,EAAA;GACL,QAAQ,EAAA;GACR,OAAO,EAAA,CAAA;GACP,SAAS,EAAA,CAAA;GACT,iBAAe,EAAA,CAAA;GACf,eAAa,EAAA,CAAA;GACb,eAAa,EAAA,CAAA;GACb,aAAW,EAAA"}
|
package/dist/AgentWidgetModal.js
CHANGED
|
@@ -1,65 +1,76 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
1
|
+
import "./rolldown-runtime.js";
|
|
2
|
+
import { t as e } from "./AgentProvider.js";
|
|
3
|
+
import { t } from "./FModal.js";
|
|
4
|
+
import { t as n } from "./useWidgetState.js";
|
|
5
|
+
import { createBlock as r, createVNode as i, defineComponent as a, nextTick as o, onMounted as s, openBlock as c, ref as l, unref as u, withCtx as d } from "vue";
|
|
6
|
+
//#endregion
|
|
7
|
+
//#region widget/ui/AgentWidgetModal.vue
|
|
8
|
+
var f = /* @__PURE__ */ a({
|
|
9
|
+
__name: "AgentWidgetModal",
|
|
10
|
+
props: {
|
|
11
|
+
sdk: {},
|
|
12
|
+
handle: {},
|
|
13
|
+
agent: {},
|
|
14
|
+
context: {},
|
|
15
|
+
firstMessage: {},
|
|
16
|
+
buttonText: {},
|
|
17
|
+
buttonIcon: {},
|
|
18
|
+
chatOnly: { type: Boolean },
|
|
19
|
+
onClose: { type: Function }
|
|
20
|
+
},
|
|
21
|
+
setup(a, { expose: f }) {
|
|
22
|
+
let p = a, { currentAgent: m, currentContext: h, currentFirstMessage: g, currentButtonText: _, currentButtonIcon: v, update: y } = n(p), b = l(!1);
|
|
23
|
+
s(async () => {
|
|
24
|
+
await o(), setTimeout(() => {
|
|
25
|
+
b.value = !0;
|
|
26
|
+
}, 10);
|
|
27
|
+
});
|
|
28
|
+
function close() {
|
|
29
|
+
b.value = !1, setTimeout(() => {
|
|
30
|
+
p.onClose && p.onClose();
|
|
31
|
+
}, 300);
|
|
32
|
+
}
|
|
33
|
+
function open() {
|
|
34
|
+
b.value = !0;
|
|
35
|
+
}
|
|
36
|
+
return f({
|
|
37
|
+
update: y,
|
|
38
|
+
close,
|
|
39
|
+
open
|
|
40
|
+
}), (n, o) => (c(), r(t, {
|
|
41
|
+
vis: b.value,
|
|
42
|
+
"disable-teleport": !0,
|
|
43
|
+
"modal-class": "max-w-4xl h-[80vh] md:h-[600px]",
|
|
44
|
+
"has-close": !1,
|
|
45
|
+
"onUpdate:vis": o[0] || (o[0] = (e) => b.value = e),
|
|
46
|
+
onClose: close
|
|
47
|
+
}, {
|
|
48
|
+
default: d(() => [i(e, {
|
|
49
|
+
sdk: a.sdk,
|
|
50
|
+
handle: a.handle,
|
|
51
|
+
agent: u(m),
|
|
52
|
+
context: u(h),
|
|
53
|
+
"first-message": u(g),
|
|
54
|
+
"button-text": u(_),
|
|
55
|
+
"button-icon": u(v),
|
|
56
|
+
"chat-only": a.chatOnly,
|
|
57
|
+
"has-close": !0,
|
|
58
|
+
onClose: close
|
|
59
|
+
}, null, 8, [
|
|
60
|
+
"sdk",
|
|
61
|
+
"handle",
|
|
62
|
+
"agent",
|
|
63
|
+
"context",
|
|
64
|
+
"first-message",
|
|
65
|
+
"button-text",
|
|
66
|
+
"button-icon",
|
|
67
|
+
"chat-only"
|
|
68
|
+
])]),
|
|
69
|
+
_: 1
|
|
70
|
+
}, 8, ["vis"]));
|
|
71
|
+
}
|
|
61
72
|
});
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
//# sourceMappingURL=AgentWidgetModal.js.map
|
|
73
|
+
//#endregion
|
|
74
|
+
export { f as default };
|
|
75
|
+
|
|
76
|
+
//# sourceMappingURL=AgentWidgetModal.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AgentWidgetModal.js","sources":["../widget/ui/AgentWidgetModal.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport type { PageLinesSDK } from '../../sdkClient'\nimport type { AgentConfig } from '../../agent/schema'\nimport type { ButtonIconPreset } from '../PLWidget'\nimport { nextTick, onMounted, ref } from 'vue'\nimport FModal from '@/ui/common/FModal.vue'\nimport AgentProvider from '../../agent/ui/AgentProvider.vue'\nimport { useWidgetState } from '../composables/useWidgetState'\n\nconst props = defineProps<{\n sdk?: PageLinesSDK\n handle?: string\n agent?: AgentConfig\n context?: string\n firstMessage?: string\n buttonText?: string\n buttonIcon?: ButtonIconPreset\n chatOnly?: boolean\n onClose?: () => void\n}>()\n\nconst { currentAgent, currentContext, currentFirstMessage, currentButtonText, currentButtonIcon, update } = useWidgetState(props)\nconst isVisible = ref(false)\n\n// Trigger transition after mount\nonMounted(async () => {\n await nextTick()\n // Small delay to ensure DOM is ready and transition fires\n setTimeout(() => {\n isVisible.value = true\n }, 10)\n})\n\nfunction close() {\n isVisible.value = false\n // Wait for transition to complete before calling onClose\n setTimeout(() => {\n if (props.onClose) {\n props.onClose()\n }\n }, 300) // Match FModal transition duration\n}\n\nfunction open() {\n isVisible.value = true\n}\n\ndefineExpose({ update, close, open })\n</script>\n\n<template>\n <FModal\n :vis=\"isVisible\"\n :disable-teleport=\"true\"\n modal-class=\"max-w-4xl h-[80vh] md:h-[600px]\"\n :has-close=\"false\"\n @update:vis=\"isVisible = $event\"\n @close=\"close\"\n >\n <AgentProvider\n :sdk=\"sdk\"\n :handle=\"handle\"\n :agent=\"currentAgent\"\n :context=\"currentContext\"\n :first-message=\"currentFirstMessage\"\n :button-text=\"currentButtonText\"\n :button-icon=\"currentButtonIcon\"\n :chat-only=\"chatOnly\"\n :has-close=\"true\"\n @close=\"close\"\n />\n </FModal>\n</template>\n"
|
|
1
|
+
{"version":3,"file":"AgentWidgetModal.js","names":[],"sources":["../widget/ui/AgentWidgetModal.vue","../widget/ui/AgentWidgetModal.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport type { PageLinesSDK } from '../../sdkClient'\nimport type { AgentConfig } from '../../agent/schema'\nimport type { ButtonIconPreset } from '../PLWidget'\nimport { nextTick, onMounted, ref } from 'vue'\nimport FModal from '@/ui/common/FModal.vue'\nimport AgentProvider from '../../agent/ui/AgentProvider.vue'\nimport { useWidgetState } from '../composables/useWidgetState'\n\nconst props = defineProps<{\n sdk?: PageLinesSDK\n handle?: string\n agent?: AgentConfig\n context?: string\n firstMessage?: string\n buttonText?: string\n buttonIcon?: ButtonIconPreset\n chatOnly?: boolean\n onClose?: () => void\n}>()\n\nconst { currentAgent, currentContext, currentFirstMessage, currentButtonText, currentButtonIcon, update } = useWidgetState(props)\nconst isVisible = ref(false)\n\n// Trigger transition after mount\nonMounted(async () => {\n await nextTick()\n // Small delay to ensure DOM is ready and transition fires\n setTimeout(() => {\n isVisible.value = true\n }, 10)\n})\n\nfunction close() {\n isVisible.value = false\n // Wait for transition to complete before calling onClose\n setTimeout(() => {\n if (props.onClose) {\n props.onClose()\n }\n }, 300) // Match FModal transition duration\n}\n\nfunction open() {\n isVisible.value = true\n}\n\ndefineExpose({ update, close, open })\n</script>\n\n<template>\n <FModal\n :vis=\"isVisible\"\n :disable-teleport=\"true\"\n modal-class=\"max-w-4xl h-[80vh] md:h-[600px]\"\n :has-close=\"false\"\n @update:vis=\"isVisible = $event\"\n @close=\"close\"\n >\n <AgentProvider\n :sdk=\"sdk\"\n :handle=\"handle\"\n :agent=\"currentAgent\"\n :context=\"currentContext\"\n :first-message=\"currentFirstMessage\"\n :button-text=\"currentButtonText\"\n :button-icon=\"currentButtonIcon\"\n :chat-only=\"chatOnly\"\n :has-close=\"true\"\n @close=\"close\"\n />\n </FModal>\n</template>\n","<script setup lang=\"ts\">\nimport type { PageLinesSDK } from '../../sdkClient'\nimport type { AgentConfig } from '../../agent/schema'\nimport type { ButtonIconPreset } from '../PLWidget'\nimport { nextTick, onMounted, ref } from 'vue'\nimport FModal from '@/ui/common/FModal.vue'\nimport AgentProvider from '../../agent/ui/AgentProvider.vue'\nimport { useWidgetState } from '../composables/useWidgetState'\n\nconst props = defineProps<{\n sdk?: PageLinesSDK\n handle?: string\n agent?: AgentConfig\n context?: string\n firstMessage?: string\n buttonText?: string\n buttonIcon?: ButtonIconPreset\n chatOnly?: boolean\n onClose?: () => void\n}>()\n\nconst { currentAgent, currentContext, currentFirstMessage, currentButtonText, currentButtonIcon, update } = useWidgetState(props)\nconst isVisible = ref(false)\n\n// Trigger transition after mount\nonMounted(async () => {\n await nextTick()\n // Small delay to ensure DOM is ready and transition fires\n setTimeout(() => {\n isVisible.value = true\n }, 10)\n})\n\nfunction close() {\n isVisible.value = false\n // Wait for transition to complete before calling onClose\n setTimeout(() => {\n if (props.onClose) {\n props.onClose()\n }\n }, 300) // Match FModal transition duration\n}\n\nfunction open() {\n isVisible.value = true\n}\n\ndefineExpose({ update, close, open })\n</script>\n\n<template>\n <FModal\n :vis=\"isVisible\"\n :disable-teleport=\"true\"\n modal-class=\"max-w-4xl h-[80vh] md:h-[600px]\"\n :has-close=\"false\"\n @update:vis=\"isVisible = $event\"\n @close=\"close\"\n >\n <AgentProvider\n :sdk=\"sdk\"\n :handle=\"handle\"\n :agent=\"currentAgent\"\n :context=\"currentContext\"\n :first-message=\"currentFirstMessage\"\n :button-text=\"currentButtonText\"\n :button-icon=\"currentButtonIcon\"\n :chat-only=\"chatOnly\"\n :has-close=\"true\"\n @close=\"close\"\n />\n </FModal>\n</template>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;EASA,IAAM,IAAQ,GAYR,EAAE,iBAAc,mBAAgB,wBAAqB,sBAAmB,sBAAmB,cAAW,EAAe,CAAK,GAC1H,IAAY,EAAI,EAAK;EAG3B,EAAU,YAAY;GAGpB,AAFA,MAAM,EAAS,GAEf,iBAAiB;IACf,EAAU,QAAQ;GACpB,GAAG,EAAE;EACP,CAAC;EAED,SAAS,QAAQ;GAGf,AAFA,EAAU,QAAQ,IAElB,iBAAiB;IACf,AAAI,EAAM,WACR,EAAM,QAAQ;GAElB,GAAG,GAAG;EACR;EAEA,SAAS,OAAO;GACd,EAAU,QAAQ;EACpB;SAEA,EAAa;GAAE;GAAQ;GAAO;EAAK,CAAC,mBAIlC,EAoBS,GAAA;GAnBN,KAAK,EAAA;GACL,oBAAkB;GACnB,eAAY;GACX,aAAW;GACX,gBAAU,EAAA,OAAA,EAAA,MAAA,MAAE,EAAA,QAAY;GACxB,SAAO;;oBAaN,CAXF,EAWE,GAAA;IAVC,KAAK,EAAA;IACL,QAAQ,EAAA;IACR,OAAO,EAAA,CAAA;IACP,SAAS,EAAA,CAAA;IACT,iBAAe,EAAA,CAAA;IACf,eAAa,EAAA,CAAA;IACb,eAAa,EAAA,CAAA;IACb,aAAW,EAAA;IACX,aAAW;IACX,SAAO"}
|