@flamingo-stack/openframe-frontend-core 0.0.217 → 0.0.218
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/{chunk-L6IBKPVM.js → chunk-EKBM4FHK.js} +2 -2
- package/dist/{chunk-SWZUZYWR.js → chunk-EWA2NFUR.js} +2 -2
- package/dist/{chunk-TYIBMDUZ.cjs → chunk-FZZBCRID.cjs} +7 -7
- package/dist/{chunk-TYIBMDUZ.cjs.map → chunk-FZZBCRID.cjs.map} +1 -1
- package/dist/{chunk-G2HHSZ3S.cjs → chunk-GE64T3JT.cjs} +9 -9
- package/dist/{chunk-G2HHSZ3S.cjs.map → chunk-GE64T3JT.cjs.map} +1 -1
- package/dist/{chunk-YWDC5BXM.cjs → chunk-L5RSJE2I.cjs} +1940 -915
- package/dist/chunk-L5RSJE2I.cjs.map +1 -0
- package/dist/{chunk-BVFRD34B.js → chunk-OHOUSDAY.js} +2 -2
- package/dist/{chunk-MVQ3OODK.cjs → chunk-S4SVD5JI.cjs} +9 -9
- package/dist/{chunk-MVQ3OODK.cjs.map → chunk-S4SVD5JI.cjs.map} +1 -1
- package/dist/{chunk-N5IKPYRL.js → chunk-SWIR5EB2.js} +2 -2
- package/dist/{chunk-6DCKL73F.cjs → chunk-TCJ5B2ZD.cjs} +24 -24
- package/dist/{chunk-6DCKL73F.cjs.map → chunk-TCJ5B2ZD.cjs.map} +1 -1
- package/dist/{chunk-ENBGG2K2.js → chunk-V5JY5RSY.js} +2954 -1929
- package/dist/chunk-V5JY5RSY.js.map +1 -0
- package/dist/components/chat/embeddable-chat.d.ts +13 -0
- package/dist/components/chat/embeddable-chat.d.ts.map +1 -1
- package/dist/components/chat/hooks/use-nats-chat-adapter.d.ts +104 -10
- package/dist/components/chat/hooks/use-nats-chat-adapter.d.ts.map +1 -1
- package/dist/components/chat/hooks/use-slash-commands.d.ts +6 -0
- package/dist/components/chat/hooks/use-slash-commands.d.ts.map +1 -1
- package/dist/components/chat/hooks/use-sse-chat-adapter.d.ts.map +1 -1
- package/dist/components/chat/hooks/use-unified-chat.d.ts.map +1 -1
- package/dist/components/chat/index.cjs +2 -2
- package/dist/components/chat/index.js +1 -1
- package/dist/components/chat/types/unified-chat-state.types.d.ts +81 -0
- package/dist/components/chat/types/unified-chat-state.types.d.ts.map +1 -1
- package/dist/components/contact/index.cjs +3 -3
- package/dist/components/contact/index.js +2 -2
- package/dist/components/features/index.cjs +2 -2
- package/dist/components/features/index.js +1 -1
- package/dist/components/index.cjs +73 -51
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +26 -4
- package/dist/components/index.js.map +1 -1
- package/dist/components/navigation/app-header.d.ts +7 -0
- package/dist/components/navigation/app-header.d.ts.map +1 -1
- package/dist/components/navigation/app-layout-drawer.d.ts +65 -0
- package/dist/components/navigation/app-layout-drawer.d.ts.map +1 -0
- package/dist/components/navigation/app-layout.d.ts +9 -1
- package/dist/components/navigation/app-layout.d.ts.map +1 -1
- package/dist/components/navigation/header-mingo-button.d.ts +21 -0
- package/dist/components/navigation/header-mingo-button.d.ts.map +1 -0
- package/dist/components/navigation/index.cjs +24 -2
- package/dist/components/navigation/index.cjs.map +1 -1
- package/dist/components/navigation/index.d.ts +5 -1
- package/dist/components/navigation/index.d.ts.map +1 -1
- package/dist/components/navigation/index.js +23 -1
- package/dist/components/onboarding-guides/index.cjs +18 -18
- package/dist/components/onboarding-guides/index.js +3 -3
- package/dist/components/tickets/hooks/use-ticket-engagements.d.ts.map +1 -1
- package/dist/components/tickets/index.cjs +80 -66
- package/dist/components/tickets/index.cjs.map +1 -1
- package/dist/components/tickets/index.js +20 -6
- package/dist/components/tickets/index.js.map +1 -1
- package/dist/components/ui/index.cjs +2 -2
- package/dist/components/ui/index.js +1 -1
- package/dist/index.cjs +26 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +25 -1
- package/dist/utils/embed-authed-fetch.d.ts +80 -0
- package/dist/utils/embed-authed-fetch.d.ts.map +1 -1
- package/dist/utils/index.cjs +70 -5
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +70 -6
- package/dist/utils/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/chat/embeddable-chat.tsx +154 -37
- package/src/components/chat/hooks/use-nats-chat-adapter.ts +601 -23
- package/src/components/chat/hooks/use-slash-commands.ts +10 -1
- package/src/components/chat/hooks/use-sse-chat-adapter.ts +45 -0
- package/src/components/chat/hooks/use-unified-chat.ts +59 -0
- package/src/components/chat/types/unified-chat-state.types.ts +116 -0
- package/src/components/navigation/app-header.tsx +23 -0
- package/src/components/navigation/app-layout-drawer.tsx +620 -0
- package/src/components/navigation/app-layout.tsx +65 -26
- package/src/components/navigation/header-mingo-button.tsx +58 -0
- package/src/components/navigation/index.ts +17 -1
- package/src/components/tickets/hooks/use-ticket-engagements.ts +24 -4
- package/src/stories/AppLayoutDrawer.stories.tsx +228 -0
- package/src/utils/.embed-authed-fetch.md +7 -0
- package/src/utils/__tests__/embed-authed-fetch.test.ts +103 -1
- package/src/utils/embed-authed-fetch.ts +247 -7
- package/src/utils/index.ts +5 -1
- package/dist/chunk-ENBGG2K2.js.map +0 -1
- package/dist/chunk-YWDC5BXM.cjs.map +0 -1
- /package/dist/{chunk-L6IBKPVM.js.map → chunk-EKBM4FHK.js.map} +0 -0
- /package/dist/{chunk-SWZUZYWR.js.map → chunk-EWA2NFUR.js.map} +0 -0
- /package/dist/{chunk-BVFRD34B.js.map → chunk-OHOUSDAY.js.map} +0 -0
- /package/dist/{chunk-N5IKPYRL.js.map → chunk-SWIR5EB2.js.map} +0 -0
package/dist/components/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
UnifiedPagination,
|
|
7
7
|
init_unified_pagination,
|
|
8
8
|
unified_pagination_exports
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-EKBM4FHK.js";
|
|
10
10
|
import {
|
|
11
11
|
DocSearchBar,
|
|
12
12
|
DocSearchResultRow,
|
|
@@ -14,14 +14,14 @@ import {
|
|
|
14
14
|
mapDocSearchResults,
|
|
15
15
|
resolveSearchResultAction,
|
|
16
16
|
useDocSearch
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-EWA2NFUR.js";
|
|
18
18
|
import {
|
|
19
19
|
DevCardRowContent,
|
|
20
20
|
DevCardRowSkeleton,
|
|
21
21
|
DevCardRowSkeletonList,
|
|
22
22
|
DevSectionPage,
|
|
23
23
|
DevSectionView
|
|
24
|
-
} from "../chunk-
|
|
24
|
+
} from "../chunk-SWIR5EB2.js";
|
|
25
25
|
import "../chunk-ORJREQ2W.js";
|
|
26
26
|
import {
|
|
27
27
|
AIEnrichButton,
|
|
@@ -58,6 +58,15 @@ import {
|
|
|
58
58
|
AllowedDomainsInput,
|
|
59
59
|
AppHeader,
|
|
60
60
|
AppLayout,
|
|
61
|
+
AppLayoutDrawerBody,
|
|
62
|
+
AppLayoutDrawerClose,
|
|
63
|
+
AppLayoutDrawerContent,
|
|
64
|
+
AppLayoutDrawerDescription,
|
|
65
|
+
AppLayoutDrawerFooter,
|
|
66
|
+
AppLayoutDrawerHeader,
|
|
67
|
+
AppLayoutDrawerRoot,
|
|
68
|
+
AppLayoutDrawerTitle,
|
|
69
|
+
AppLayoutDrawerTrigger,
|
|
61
70
|
ApprovalBatchMessage,
|
|
62
71
|
ApprovalRequestMessage,
|
|
63
72
|
ArgRow,
|
|
@@ -242,6 +251,7 @@ import {
|
|
|
242
251
|
Header,
|
|
243
252
|
HeaderButton,
|
|
244
253
|
HeaderGlobalSearch,
|
|
254
|
+
HeaderMingoButton,
|
|
245
255
|
HeaderOrganizationFilter,
|
|
246
256
|
HeaderSkeleton,
|
|
247
257
|
HiddenTagsPopup,
|
|
@@ -605,6 +615,7 @@ import {
|
|
|
605
615
|
transformEventToProgram,
|
|
606
616
|
transformPodcastToProgram,
|
|
607
617
|
transformWebinarToProgram,
|
|
618
|
+
useAppLayoutDrawerContainer,
|
|
608
619
|
useBoardCollapse,
|
|
609
620
|
useChat,
|
|
610
621
|
useChatAttachmentImageGallery,
|
|
@@ -636,7 +647,7 @@ import {
|
|
|
636
647
|
useUnifiedChat,
|
|
637
648
|
useVideoOriginPreconnect,
|
|
638
649
|
useVideoWarmup
|
|
639
|
-
} from "../chunk-
|
|
650
|
+
} from "../chunk-V5JY5RSY.js";
|
|
640
651
|
import {
|
|
641
652
|
next_image_default
|
|
642
653
|
} from "../chunk-LXC6P2EO.js";
|
|
@@ -6629,6 +6640,15 @@ export {
|
|
|
6629
6640
|
AnnouncementBarSkeleton,
|
|
6630
6641
|
AppHeader,
|
|
6631
6642
|
AppLayout,
|
|
6643
|
+
AppLayoutDrawerRoot as AppLayoutDrawer,
|
|
6644
|
+
AppLayoutDrawerBody,
|
|
6645
|
+
AppLayoutDrawerClose,
|
|
6646
|
+
AppLayoutDrawerContent,
|
|
6647
|
+
AppLayoutDrawerDescription,
|
|
6648
|
+
AppLayoutDrawerFooter,
|
|
6649
|
+
AppLayoutDrawerHeader,
|
|
6650
|
+
AppLayoutDrawerTitle,
|
|
6651
|
+
AppLayoutDrawerTrigger,
|
|
6632
6652
|
ApprovalBatchMessage,
|
|
6633
6653
|
ApprovalRequestMessage,
|
|
6634
6654
|
ArchiveIcon,
|
|
@@ -6923,6 +6943,7 @@ export {
|
|
|
6923
6943
|
Header,
|
|
6924
6944
|
HeaderButton,
|
|
6925
6945
|
HeaderGlobalSearch,
|
|
6946
|
+
HeaderMingoButton,
|
|
6926
6947
|
HeaderOrganizationFilter,
|
|
6927
6948
|
HeaderSkeleton,
|
|
6928
6949
|
HeroImageUploader,
|
|
@@ -7452,6 +7473,7 @@ export {
|
|
|
7452
7473
|
transformEventToProgram,
|
|
7453
7474
|
transformPodcastToProgram,
|
|
7454
7475
|
transformWebinarToProgram,
|
|
7476
|
+
useAppLayoutDrawerContainer,
|
|
7455
7477
|
useAuth,
|
|
7456
7478
|
useBoardCollapse,
|
|
7457
7479
|
useChat,
|