@flamingo-stack/openframe-frontend-core 0.0.225 → 0.0.227
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-2QURHTDV.js → chunk-CUBRHI6D.js} +2 -2
- package/dist/{chunk-NRJ53MIF.cjs → chunk-E3DB4D43.cjs} +9 -9
- package/dist/{chunk-NRJ53MIF.cjs.map → chunk-E3DB4D43.cjs.map} +1 -1
- package/dist/{chunk-3YTIV6C5.cjs → chunk-E3WJQQGW.cjs} +7 -7
- package/dist/{chunk-3YTIV6C5.cjs.map → chunk-E3WJQQGW.cjs.map} +1 -1
- package/dist/{chunk-SAJG77KY.js → chunk-EURLSRHW.js} +2 -2
- package/dist/{chunk-IWBDAGZQ.cjs → chunk-HO2VEMEX.cjs} +24 -24
- package/dist/{chunk-IWBDAGZQ.cjs.map → chunk-HO2VEMEX.cjs.map} +1 -1
- package/dist/{chunk-NHRVPMBU.js → chunk-K252FYE5.js} +3959 -3740
- package/dist/chunk-K252FYE5.js.map +1 -0
- package/dist/{chunk-5RELSRTS.cjs → chunk-LEM4FLCU.cjs} +10 -10
- package/dist/{chunk-5RELSRTS.cjs.map → chunk-LEM4FLCU.cjs.map} +1 -1
- package/dist/{chunk-HOQDRQ4M.cjs → chunk-QFC725WU.cjs} +746 -527
- package/dist/chunk-QFC725WU.cjs.map +1 -0
- package/dist/{chunk-RIEEPMJ6.js → chunk-X3KKG6IU.js} +2 -2
- package/dist/{chunk-NUOYDHUM.js → chunk-YE62NF6I.js} +2 -2
- package/dist/components/chat/approval-batch-message.d.ts +6 -0
- package/dist/components/chat/approval-batch-message.d.ts.map +1 -1
- package/dist/components/chat/index.cjs +2 -2
- package/dist/components/chat/index.js +1 -1
- package/dist/components/contact/index.cjs +3 -3
- package/dist/components/contact/index.js +2 -2
- package/dist/components/features/index.cjs +10 -2
- package/dist/components/features/index.cjs.map +1 -1
- package/dist/components/features/index.js +9 -1
- package/dist/components/features/notifications/approval-request-notification-tile.d.ts +13 -0
- package/dist/components/features/notifications/approval-request-notification-tile.d.ts.map +1 -0
- package/dist/components/features/notifications/index.d.ts +4 -1
- package/dist/components/features/notifications/index.d.ts.map +1 -1
- package/dist/components/features/notifications/notification-drawer.d.ts +3 -1
- package/dist/components/features/notifications/notification-drawer.d.ts.map +1 -1
- package/dist/components/features/notifications/notification-popups.d.ts +3 -1
- package/dist/components/features/notifications/notification-popups.d.ts.map +1 -1
- package/dist/components/features/notifications/notification-tile.d.ts +6 -1
- package/dist/components/features/notifications/notification-tile.d.ts.map +1 -1
- package/dist/components/features/notifications/notifications-context.d.ts +5 -2
- package/dist/components/features/notifications/notifications-context.d.ts.map +1 -1
- package/dist/components/features/notifications/types.d.ts +30 -0
- package/dist/components/features/notifications/types.d.ts.map +1 -1
- package/dist/components/index.cjs +87 -77
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +14 -4
- package/dist/components/index.js.map +1 -1
- package/dist/components/navigation/index.cjs +2 -2
- package/dist/components/navigation/index.js +1 -1
- package/dist/components/onboarding-guides/index.cjs +25 -25
- package/dist/components/onboarding-guides/index.js +3 -3
- package/dist/components/tickets/index.cjs +64 -64
- package/dist/components/tickets/index.js +4 -4
- package/dist/components/ui/color-preset-select.d.ts.map +1 -1
- package/dist/components/ui/color-swatch.d.ts +7 -0
- package/dist/components/ui/color-swatch.d.ts.map +1 -0
- package/dist/components/ui/data-table/data-table-body.d.ts +8 -1
- package/dist/components/ui/data-table/data-table-body.d.ts.map +1 -1
- package/dist/components/ui/data-table/data-table-row.d.ts +4 -2
- package/dist/components/ui/data-table/data-table-row.d.ts.map +1 -1
- package/dist/components/ui/data-table/index.d.ts +1 -1
- package/dist/components/ui/index.cjs +4 -2
- package/dist/components/ui/index.cjs.map +1 -1
- package/dist/components/ui/index.d.ts +1 -0
- package/dist/components/ui/index.d.ts.map +1 -1
- package/dist/components/ui/index.js +3 -1
- package/dist/components/ui/ticket-status-config-row.d.ts.map +1 -1
- package/dist/components/ui/ticket-status-tag.d.ts.map +1 -1
- package/dist/index.cjs +12 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +11 -1
- package/package.json +1 -1
- package/src/components/chat/approval-batch-message.tsx +26 -15
- package/src/components/features/notifications/approval-request-notification-tile.tsx +118 -0
- package/src/components/features/notifications/index.ts +10 -0
- package/src/components/features/notifications/notification-drawer.tsx +28 -11
- package/src/components/features/notifications/notification-popups.tsx +33 -19
- package/src/components/features/notifications/notification-tile.tsx +34 -19
- package/src/components/features/notifications/notifications-context.tsx +7 -1
- package/src/components/features/notifications/types.ts +50 -0
- package/src/components/ui/color-preset-select.tsx +1 -10
- package/src/components/ui/color-swatch.tsx +17 -0
- package/src/components/ui/data-table/data-table-body.tsx +9 -0
- package/src/components/ui/data-table/data-table-row.tsx +24 -3
- package/src/components/ui/index.ts +1 -0
- package/src/components/ui/modal-v2.tsx +2 -2
- package/src/components/ui/ticket-status-config-row.tsx +78 -39
- package/src/components/ui/ticket-status-tag.tsx +2 -7
- package/src/stories/NotificationDrawer.stories.tsx +148 -1
- package/dist/chunk-HOQDRQ4M.cjs.map +0 -1
- package/dist/chunk-NHRVPMBU.js.map +0 -1
- /package/dist/{chunk-2QURHTDV.js.map → chunk-CUBRHI6D.js.map} +0 -0
- /package/dist/{chunk-SAJG77KY.js.map → chunk-EURLSRHW.js.map} +0 -0
- /package/dist/{chunk-RIEEPMJ6.js.map → chunk-X3KKG6IU.js.map} +0 -0
- /package/dist/{chunk-NUOYDHUM.js.map → chunk-YE62NF6I.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-YE62NF6I.js";
|
|
10
10
|
import {
|
|
11
11
|
DetailPageSkeleton,
|
|
12
12
|
DocSearchBar,
|
|
@@ -16,16 +16,17 @@ import {
|
|
|
16
16
|
resolveSearchResultAction,
|
|
17
17
|
useDocSearch,
|
|
18
18
|
useSelfFetch
|
|
19
|
-
} from "../chunk-
|
|
19
|
+
} from "../chunk-CUBRHI6D.js";
|
|
20
20
|
import {
|
|
21
21
|
DevCardRowContent,
|
|
22
22
|
DevCardRowSkeleton,
|
|
23
23
|
DevCardRowSkeletonList,
|
|
24
24
|
DevSectionPage,
|
|
25
25
|
DevSectionView
|
|
26
|
-
} from "../chunk-
|
|
26
|
+
} from "../chunk-X3KKG6IU.js";
|
|
27
27
|
import "../chunk-ORJREQ2W.js";
|
|
28
28
|
import {
|
|
29
|
+
ADMIN_APPROVAL_REQUEST_CONTEXT_TYPE,
|
|
29
30
|
AIEnrichButton,
|
|
30
31
|
AIEnrichSection,
|
|
31
32
|
AIRequiredBadge,
|
|
@@ -71,6 +72,7 @@ import {
|
|
|
71
72
|
AppLayoutDrawerTrigger,
|
|
72
73
|
ApprovalBatchMessage,
|
|
73
74
|
ApprovalRequestMessage,
|
|
75
|
+
ApprovalRequestNotificationTile,
|
|
74
76
|
ArchiveChatModal,
|
|
75
77
|
ArgRow,
|
|
76
78
|
ArrayEntryManager,
|
|
@@ -173,6 +175,7 @@ import {
|
|
|
173
175
|
ClientOnlyHeader,
|
|
174
176
|
ColorPickerInput,
|
|
175
177
|
ColorPresetSelect,
|
|
178
|
+
ColorSwatch,
|
|
176
179
|
CommandBox,
|
|
177
180
|
CompactPageLoader,
|
|
178
181
|
ConfidenceBadge,
|
|
@@ -581,6 +584,7 @@ import {
|
|
|
581
584
|
formatReleaseDate,
|
|
582
585
|
formatSingularLookupInvocation,
|
|
583
586
|
getAppType,
|
|
587
|
+
getApprovalMeta,
|
|
584
588
|
getCaptionsUrl,
|
|
585
589
|
getCommandText,
|
|
586
590
|
getCoreRowModel,
|
|
@@ -610,6 +614,7 @@ import {
|
|
|
610
614
|
groupTicketsByStatus,
|
|
611
615
|
handleChatNavClick,
|
|
612
616
|
init_pagination,
|
|
617
|
+
isApprovalNotification,
|
|
613
618
|
isControlChunk,
|
|
614
619
|
isCrossOriginUrl,
|
|
615
620
|
isErrorChunk,
|
|
@@ -684,7 +689,7 @@ import {
|
|
|
684
689
|
useVideoOriginPreconnect,
|
|
685
690
|
useVideoWarmup,
|
|
686
691
|
usesCanonicalStatusStyle
|
|
687
|
-
} from "../chunk-
|
|
692
|
+
} from "../chunk-K252FYE5.js";
|
|
688
693
|
import {
|
|
689
694
|
next_image_default
|
|
690
695
|
} from "../chunk-LXC6P2EO.js";
|
|
@@ -6938,6 +6943,7 @@ function LegalDocumentPage({
|
|
|
6938
6943
|
] }) });
|
|
6939
6944
|
}
|
|
6940
6945
|
export {
|
|
6946
|
+
ADMIN_APPROVAL_REQUEST_CONTEXT_TYPE,
|
|
6941
6947
|
AIEnrichButton,
|
|
6942
6948
|
AIEnrichSection,
|
|
6943
6949
|
AIRequiredBadge,
|
|
@@ -6988,6 +6994,7 @@ export {
|
|
|
6988
6994
|
AppLayoutDrawerTrigger,
|
|
6989
6995
|
ApprovalBatchMessage,
|
|
6990
6996
|
ApprovalRequestMessage,
|
|
6997
|
+
ApprovalRequestNotificationTile,
|
|
6991
6998
|
ArchiveChatModal,
|
|
6992
6999
|
ArchiveIcon,
|
|
6993
7000
|
ArgRow,
|
|
@@ -7117,6 +7124,7 @@ export {
|
|
|
7117
7124
|
CoinsIcon,
|
|
7118
7125
|
ColorPickerInput,
|
|
7119
7126
|
ColorPresetSelect,
|
|
7127
|
+
ColorSwatch,
|
|
7120
7128
|
CommandApprovalToast,
|
|
7121
7129
|
CommandBox,
|
|
7122
7130
|
CommentCard,
|
|
@@ -7770,6 +7778,7 @@ export {
|
|
|
7770
7778
|
formatPricingForDisplay,
|
|
7771
7779
|
formatRelativePath,
|
|
7772
7780
|
formatSingularLookupInvocation,
|
|
7781
|
+
getApprovalMeta,
|
|
7773
7782
|
getCaptionsUrl,
|
|
7774
7783
|
getEmbedProxyAuth as getChatProxyAuth,
|
|
7775
7784
|
getCommandText,
|
|
@@ -7798,6 +7807,7 @@ export {
|
|
|
7798
7807
|
groupByAspectRatio,
|
|
7799
7808
|
groupTicketsByStatus,
|
|
7800
7809
|
handleChatNavClick,
|
|
7810
|
+
isApprovalNotification,
|
|
7801
7811
|
isControlChunk,
|
|
7802
7812
|
isCrossOriginUrl,
|
|
7803
7813
|
isErrorChunk,
|