@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
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
PageShell,
|
|
6
6
|
SearchInput,
|
|
7
7
|
StatusFilterComponent
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-K252FYE5.js";
|
|
9
9
|
import {
|
|
10
10
|
init_next_navigation,
|
|
11
11
|
usePathname,
|
|
@@ -159,4 +159,4 @@ export {
|
|
|
159
159
|
DevCardRowSkeleton,
|
|
160
160
|
DevCardRowSkeletonList
|
|
161
161
|
};
|
|
162
|
-
//# sourceMappingURL=chunk-
|
|
162
|
+
//# sourceMappingURL=chunk-X3KKG6IU.js.map
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
TASK_TYPE_TEXT_COLORS,
|
|
7
7
|
getStatusColorScheme,
|
|
8
8
|
init_pagination
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-K252FYE5.js";
|
|
10
10
|
import {
|
|
11
11
|
Button,
|
|
12
12
|
init_button2 as init_button
|
|
@@ -299,4 +299,4 @@ export {
|
|
|
299
299
|
init_unified_pagination,
|
|
300
300
|
DeliveryRow
|
|
301
301
|
};
|
|
302
|
-
//# sourceMappingURL=chunk-
|
|
302
|
+
//# sourceMappingURL=chunk-YE62NF6I.js.map
|
|
@@ -4,6 +4,12 @@ export interface ApprovalBatchMessageProps extends React.HTMLAttributes<HTMLDivE
|
|
|
4
4
|
status?: ApprovalBatchSegment["status"];
|
|
5
5
|
onApprove?: (requestId?: string) => void | Promise<void>;
|
|
6
6
|
onReject?: (requestId?: string) => void | Promise<void>;
|
|
7
|
+
/**
|
|
8
|
+
* Cap the tool-call list height so it scrolls internally while the footer
|
|
9
|
+
* (explanations + Approve/Reject) stays pinned below. Omit for the default
|
|
10
|
+
* chat behaviour where the whole batch grows with its content.
|
|
11
|
+
*/
|
|
12
|
+
maxBodyHeight?: number | string;
|
|
7
13
|
}
|
|
8
14
|
declare const ApprovalBatchMessage: import("react").ForwardRefExoticComponent<ApprovalBatchMessageProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
9
15
|
export { ApprovalBatchMessage };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"approval-batch-message.d.ts","sourceRoot":"","sources":["../../../src/components/chat/approval-batch-message.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAEV,oBAAoB,EAErB,MAAM,SAAS,CAAA;AAMhB,MAAM,WAAW,yBAA0B,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACrF,IAAI,EAAE,oBAAoB,CAAC,MAAM,CAAC,CAAA;IAClC,MAAM,CAAC,EAAE,oBAAoB,CAAC,QAAQ,CAAC,CAAA;IACvC,SAAS,CAAC,EAAE,CAAC,SAAS,CAAC,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IACxD,QAAQ,CAAC,EAAE,CAAC,SAAS,CAAC,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"approval-batch-message.d.ts","sourceRoot":"","sources":["../../../src/components/chat/approval-batch-message.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAEV,oBAAoB,EAErB,MAAM,SAAS,CAAA;AAMhB,MAAM,WAAW,yBAA0B,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACrF,IAAI,EAAE,oBAAoB,CAAC,MAAM,CAAC,CAAA;IAClC,MAAM,CAAC,EAAE,oBAAoB,CAAC,QAAQ,CAAC,CAAA;IACvC,SAAS,CAAC,EAAE,CAAC,SAAS,CAAC,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IACxD,QAAQ,CAAC,EAAE,CAAC,SAAS,CAAC,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IACvD;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;CAChC;AA2FD,QAAA,MAAM,oBAAoB,sHAqHzB,CAAA;AAID,OAAO,EAAE,oBAAoB,EAAE,CAAA"}
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
|
|
215
215
|
|
|
216
216
|
|
|
217
|
-
var
|
|
217
|
+
var _chunkQFC725WUcjs = require('../../chunk-QFC725WU.cjs');
|
|
218
218
|
require('../../chunk-XL4V2PYG.cjs');
|
|
219
219
|
require('../../chunk-BZFW3FOF.cjs');
|
|
220
220
|
require('../../chunk-E6B4B7GM.cjs');
|
|
@@ -445,5 +445,5 @@ require('../../chunk-VRHGVLSL.cjs');
|
|
|
445
445
|
|
|
446
446
|
|
|
447
447
|
|
|
448
|
-
exports.ANTHROPIC_SUPPORTED_IMAGE_MIME = _chunkHOQDRQ4Mcjs.ANTHROPIC_SUPPORTED_IMAGE_MIME; exports.APPROVAL_STATUS = _chunkHOQDRQ4Mcjs.APPROVAL_STATUS; exports.ASSISTANT_TYPE = _chunkHOQDRQ4Mcjs.ASSISTANT_TYPE; exports.AUTHOR_TYPE = _chunkHOQDRQ4Mcjs.AUTHOR_TYPE; exports.AUTO_CONTINUATION_DIRECTIVE_PREFIX = _chunkHOQDRQ4Mcjs.AUTO_CONTINUATION_DIRECTIVE_PREFIX; exports.AdminContentCard = _chunkHOQDRQ4Mcjs.AdminContentCard; exports.ApprovalBatchMessage = _chunkHOQDRQ4Mcjs.ApprovalBatchMessage; exports.ApprovalRequestMessage = _chunkHOQDRQ4Mcjs.ApprovalRequestMessage; exports.ArchiveChatModal = _chunkHOQDRQ4Mcjs.ArchiveChatModal; exports.ArgRow = _chunkHOQDRQ4Mcjs.ArgRow; exports.BlockCard = _chunkHOQDRQ4Mcjs.BlockCard; exports.BlogCard = _chunkHOQDRQ4Mcjs.BlogCard; exports.BlogCardSkeleton = _chunkHOQDRQ4Mcjs.BlogCardSkeleton; exports.BlogImagePlaceholder = _chunkHOQDRQ4Mcjs.BlogImagePlaceholder; exports.CHAT_ATTACHMENT_CONCURRENT_UPLOADS_PER_USER = _chunkHOQDRQ4Mcjs.CHAT_ATTACHMENT_CONCURRENT_UPLOADS_PER_USER; exports.CHAT_ATTACHMENT_MARKDOWN_PATTERN = _chunkHOQDRQ4Mcjs.CHAT_ATTACHMENT_MARKDOWN_PATTERN; exports.CHAT_ATTACHMENT_MIME_TYPES = _chunkHOQDRQ4Mcjs.CHAT_ATTACHMENT_MIME_TYPES; exports.CHAT_ATTACHMENT_VIEW_TOKEN_QUERY_PARAM = _chunkHOQDRQ4Mcjs.CHAT_ATTACHMENT_VIEW_TOKEN_QUERY_PARAM; exports.CHAT_ATTACHMENT_VIEW_URL_PREFIX = _chunkHOQDRQ4Mcjs.CHAT_ATTACHMENT_VIEW_URL_PREFIX; exports.CHAT_ATTACHMENT_VIEW_URL_PREFIX_REGEX_ESCAPED = _chunkHOQDRQ4Mcjs.CHAT_ATTACHMENT_VIEW_URL_PREFIX_REGEX_ESCAPED; exports.CHAT_TYPE = _chunkHOQDRQ4Mcjs.CHAT_TYPE; exports.CHIP_ACTION_BUTTON_CLASS = _chunkHOQDRQ4Mcjs.CHIP_ACTION_BUTTON_CLASS; exports.COMPACT_CARD_ICON_SLOT = _chunkHOQDRQ4Mcjs.COMPACT_CARD_ICON_SLOT; exports.COMPACT_CARD_IMAGE_SLOT = _chunkHOQDRQ4Mcjs.COMPACT_CARD_IMAGE_SLOT; exports.COMPACT_CARD_META_ROW = _chunkHOQDRQ4Mcjs.COMPACT_CARD_META_ROW; exports.COMPACT_CARD_META_ROW_BOX = _chunkHOQDRQ4Mcjs.COMPACT_CARD_META_ROW_BOX; exports.COMPACT_CARD_OUTER = _chunkHOQDRQ4Mcjs.COMPACT_CARD_OUTER; exports.COMPACT_CARD_OUTER_STATIC = _chunkHOQDRQ4Mcjs.COMPACT_CARD_OUTER_STATIC; exports.COMPACT_CARD_ROW_FILLER = _chunkHOQDRQ4Mcjs.COMPACT_CARD_ROW_FILLER; exports.COMPACT_CARD_SKELETON_IMAGE_SLOT = _chunkHOQDRQ4Mcjs.COMPACT_CARD_SKELETON_IMAGE_SLOT; exports.COMPACT_CARD_SKELETON_OUTER = _chunkHOQDRQ4Mcjs.COMPACT_CARD_SKELETON_OUTER; exports.COMPACT_CARD_SUBTITLE = _chunkHOQDRQ4Mcjs.COMPACT_CARD_SUBTITLE; exports.COMPACT_CARD_SUMMARY = _chunkHOQDRQ4Mcjs.COMPACT_CARD_SUMMARY; exports.COMPACT_CARD_TEXT_COL = _chunkHOQDRQ4Mcjs.COMPACT_CARD_TEXT_COL; exports.COMPACT_CARD_TITLE = _chunkHOQDRQ4Mcjs.COMPACT_CARD_TITLE; exports.COMPACT_CARD_TITLE_ROW = _chunkHOQDRQ4Mcjs.COMPACT_CARD_TITLE_ROW; exports.COMPACT_HEADER_BUTTON = _chunkHOQDRQ4Mcjs.COMPACT_HEADER_BUTTON; exports.CONNECTION_STATUS = _chunkHOQDRQ4Mcjs.CONNECTION_STATUS; exports.CUSTOM_ITEM_ID = _chunkHOQDRQ4Mcjs.CUSTOM_ITEM_ID; exports.CampaignCardAdmin = _chunkHOQDRQ4Mcjs.CampaignCardAdmin; exports.CampaignCardAdminSkeleton = _chunkHOQDRQ4Mcjs.CampaignCardAdminSkeleton; exports.CaseStudyCard = _chunkHOQDRQ4Mcjs.CaseStudyCard; exports.CaseStudyCardSkeleton = _chunkHOQDRQ4Mcjs.CaseStudyCardSkeleton; exports.ChatArchivePage = _chunkHOQDRQ4Mcjs.ChatArchivePage; exports.ChatAttachmentAddButton = _chunkHOQDRQ4Mcjs.ChatAttachmentAddButton; exports.ChatAttachmentChipStrip = _chunkHOQDRQ4Mcjs.ChatAttachmentChipStrip; exports.ChatCardLoader = _chunkHOQDRQ4Mcjs.ChatCardLoader; exports.ChatComposer = _chunkHOQDRQ4Mcjs.ChatComposer; exports.ChatContainer = _chunkHOQDRQ4Mcjs.ChatContainer; exports.ChatContent = _chunkHOQDRQ4Mcjs.ChatContent; exports.ChatDialogModals = _chunkHOQDRQ4Mcjs.ChatDialogModals; exports.ChatFooter = _chunkHOQDRQ4Mcjs.ChatFooter; exports.ChatHeader = _chunkHOQDRQ4Mcjs.ChatHeader; exports.ChatHeaderIconButton = _chunkHOQDRQ4Mcjs.ChatHeaderIconButton; exports.ChatIdentityProvider = _chunkHOQDRQ4Mcjs.ChatIdentityProvider; exports.ChatInput = _chunkHOQDRQ4Mcjs.ChatInput; exports.ChatMessageEnhanced = _chunkHOQDRQ4Mcjs.MemoizedChatMessageEnhanced; exports.ChatMessageList = _chunkHOQDRQ4Mcjs.ChatMessageList; exports.ChatMessageRow = _chunkHOQDRQ4Mcjs.ChatMessageRow; exports.ChatMessageRowSkeleton = _chunkHOQDRQ4Mcjs.ChatMessageRowSkeleton; exports.ChatPanelHeader = _chunkHOQDRQ4Mcjs.ChatPanelHeader; exports.ChatQuickAction = _chunkHOQDRQ4Mcjs.ChatQuickAction; exports.ChatSidebar = _chunkHOQDRQ4Mcjs.ChatSidebar; exports.ChatTicketItem = _chunkHOQDRQ4Mcjs.ChatTicketItem; exports.ChatTicketList = _chunkHOQDRQ4Mcjs.ChatTicketList; exports.ChatTypingIndicator = _chunkHOQDRQ4Mcjs.ChatTypingIndicator; exports.ChatVideoEntityCard = _chunkHOQDRQ4Mcjs.ChatVideoEntityCard; exports.ContextCompactionDisplay = _chunkHOQDRQ4Mcjs.ContextCompactionDisplay; exports.CustomerInterviewCard = _chunkHOQDRQ4Mcjs.CustomerInterviewCard; exports.CustomerInterviewCardSkeleton = _chunkHOQDRQ4Mcjs.CustomerInterviewCardSkeleton; exports.DEFAULT_DOCUMENT_TYPE_TO_TABLE_ID = _chunkHOQDRQ4Mcjs.DEFAULT_DOCUMENT_TYPE_TO_TABLE_ID; exports.DataRoomDocCard = _chunkHOQDRQ4Mcjs.DataRoomDocCard; exports.DataRoomDocCardSkeleton = _chunkHOQDRQ4Mcjs.DataRoomDocCardSkeleton; exports.DialogListItem = _chunkHOQDRQ4Mcjs.DialogListItem; exports.EMPTY_AUTHOR_PLACEHOLDER = _chunkHOQDRQ4Mcjs.EMPTY_AUTHOR_PLACEHOLDER; exports.EmbeddableChat = _chunkHOQDRQ4Mcjs.EmbeddableChat; exports.EntityAuthorCard = _chunkHOQDRQ4Mcjs.EntityAuthorCard; exports.EntityMetadataAuthorCell = _chunkHOQDRQ4Mcjs.EntityMetadataAuthorCell; exports.EntityMetadataValueCell = _chunkHOQDRQ4Mcjs.EntityMetadataValueCell; exports.ErrorMessageDisplay = _chunkHOQDRQ4Mcjs.ErrorMessageDisplay; exports.ExpandChevron = _chunkHOQDRQ4Mcjs.ExpandChevron; exports.GenericEntityCard = _chunkHOQDRQ4Mcjs.GenericEntityCard; exports.GenericEntityCardSkeleton = _chunkHOQDRQ4Mcjs.GenericEntityCardSkeleton; exports.GitHubActivityCard = _chunkHOQDRQ4Mcjs.GitHubActivityCard; exports.GitHubActivityCardSkeleton = _chunkHOQDRQ4Mcjs.GitHubActivityCardSkeleton; exports.GuideModeBanner = _chunkHOQDRQ4Mcjs.GuideModeBanner; exports.GuideWelcome = _chunkHOQDRQ4Mcjs.GuideWelcome; exports.HubspotTicketCard = _chunkHOQDRQ4Mcjs.HubspotTicketCard; exports.HubspotTicketCardSkeleton = _chunkHOQDRQ4Mcjs.HubspotTicketCardSkeleton; exports.ICON_REGISTRY = _chunkHOQDRQ4Mcjs.ICON_REGISTRY; exports.InvestorUpdateCard = _chunkHOQDRQ4Mcjs.InvestorUpdateCard; exports.InvestorUpdateCardSkeleton = _chunkHOQDRQ4Mcjs.InvestorUpdateCardSkeleton; exports.MESSAGE_ROLE = _chunkHOQDRQ4Mcjs.MESSAGE_ROLE; exports.MESSAGE_TYPE = _chunkHOQDRQ4Mcjs.MESSAGE_TYPE; exports.MessageSegmentAccumulator = _chunkHOQDRQ4Mcjs.MessageSegmentAccumulator; exports.MingoChatHistory = _chunkHOQDRQ4Mcjs.MingoChatHistory; exports.MingoChatHistorySkeleton = _chunkHOQDRQ4Mcjs.MingoChatHistorySkeleton; exports.MingoOnboardingCard = _chunkHOQDRQ4Mcjs.MingoOnboardingCard; exports.MingoOnboardingCardSkeleton = _chunkHOQDRQ4Mcjs.MingoOnboardingCardSkeleton; exports.MingoOnboardingListSkeleton = _chunkHOQDRQ4Mcjs.MingoOnboardingListSkeleton; exports.MingoWelcome = _chunkHOQDRQ4Mcjs.MingoWelcome; exports.ModelDisplay = _chunkHOQDRQ4Mcjs.ModelDisplay; exports.NETWORK_CONFIG = _chunkHOQDRQ4Mcjs.NETWORK_CONFIG; exports.NEW_TAB_FEATURES = _chunkHOQDRQ4Mcjs.NEW_TAB_FEATURES; exports.NavLinkAnchorViaRuntime = _chunkHOQDRQ4Mcjs.NavLinkAnchorViaRuntime; exports.OWNER_TYPE = _chunkHOQDRQ4Mcjs.OWNER_TYPE; exports.OnboardingGuideCard = _chunkHOQDRQ4Mcjs.OnboardingGuideCard; exports.OnboardingGuideCardSkeleton = _chunkHOQDRQ4Mcjs.OnboardingGuideCardSkeleton; exports.ProductReleaseCard = _chunkHOQDRQ4Mcjs.ProductReleaseCard; exports.ProductReleaseCardSkeleton = _chunkHOQDRQ4Mcjs.ProductReleaseCardSkeleton; exports.ProgramCard = _chunkHOQDRQ4Mcjs.ProgramCard; exports.ProgramCardSkeleton = _chunkHOQDRQ4Mcjs.ProgramCardSkeleton; exports.RenameChatModal = _chunkHOQDRQ4Mcjs.RenameChatModal; exports.ResultBlock = _chunkHOQDRQ4Mcjs.ResultBlock; exports.RoadmapCard = _chunkHOQDRQ4Mcjs.RoadmapCard; exports.RoadmapCardSkeleton = _chunkHOQDRQ4Mcjs.RoadmapCardSkeleton; exports.RoadmapVoteButton = _chunkHOQDRQ4Mcjs.RoadmapVoteButton; exports.SCROLL_ANCHOR = _chunkHOQDRQ4Mcjs.SCROLL_ANCHOR; exports.SCROLL_ANCHOR_WIRE_KEY = _chunkHOQDRQ4Mcjs.SCROLL_ANCHOR_WIRE_KEY; exports.SOURCE_ICON_NAMES = _chunkHOQDRQ4Mcjs.SOURCE_ICON_NAMES; exports.SOURCE_LABELS_BY_TABLE = _chunkHOQDRQ4Mcjs.SOURCE_LABELS_BY_TABLE; exports.SlackMessageCard = _chunkHOQDRQ4Mcjs.SlackMessageCard; exports.SlackMessageCardSkeleton = _chunkHOQDRQ4Mcjs.SlackMessageCardSkeleton; exports.SlashCommandSuggestions = _chunkHOQDRQ4Mcjs.SlashCommandSuggestions; exports.SourceActionButton = _chunkHOQDRQ4Mcjs.SourceActionButton; exports.TaskTypeIcon = _chunkHOQDRQ4Mcjs.TaskTypeIcon; exports.ThinkingDisplay = _chunkHOQDRQ4Mcjs.ThinkingDisplay; exports.ToolExecutionDisplay = _chunkHOQDRQ4Mcjs.ToolExecutionDisplay; exports.UnarchiveChatModal = _chunkHOQDRQ4Mcjs.UnarchiveChatModal; exports.applyProxyAuth = _chunkHOQDRQ4Mcjs.applyProxyAuth; exports.buildAnchorProps = _chunkHOQDRQ4Mcjs.buildAnchorProps; exports.buildAutoContinuationDirective = _chunkHOQDRQ4Mcjs.buildAutoContinuationDirective; exports.buildChatAttachmentViewUrl = _chunkHOQDRQ4Mcjs.buildChatAttachmentViewUrl; exports.buildChatRefKey = _chunkHOQDRQ4Mcjs.buildChatRefKey; exports.buildDiscussAddendum = _chunkHOQDRQ4Mcjs.buildDiscussAddendum; exports.buildNatsWsUrl = _chunkHOQDRQ4Mcjs.buildNatsWsUrl; exports.buildProductReleaseCardProps = _chunkHOQDRQ4Mcjs.buildProductReleaseCardProps; exports.chatAuthedFetch = _chunkHOQDRQ4Mcjs.embedAuthedFetch; exports.chatChipClass = _chunkHOQDRQ4Mcjs.chatChipClass; exports.clearChatProxyAuth = _chunkHOQDRQ4Mcjs.clearEmbedProxyAuth; exports.clickupTaskUrl = _chunkHOQDRQ4Mcjs.clickupTaskUrl; exports.computeIsNewTab = _chunkHOQDRQ4Mcjs.computeIsNewTab; exports.createMessageSegmentAccumulator = _chunkHOQDRQ4Mcjs.createMessageSegmentAccumulator; exports.decideNewTab = _chunkHOQDRQ4Mcjs.decideNewTab; exports.defaultBuildProductReleaseCardProps = _chunkHOQDRQ4Mcjs.defaultBuildProductReleaseCardProps; exports.defaultTableIdForDocumentType = _chunkHOQDRQ4Mcjs.defaultTableIdForDocumentType; exports.escapeMarkdownInline = _chunkHOQDRQ4Mcjs.escapeMarkdownInline; exports.executeNavigation = _chunkHOQDRQ4Mcjs.executeNavigation; exports.executeNavigationImperative = _chunkHOQDRQ4Mcjs.executeNavigationImperative; exports.extractEntityIdFilter = _chunkHOQDRQ4Mcjs.extractEntityIdFilter; exports.extractErrorMessages = _chunkHOQDRQ4Mcjs.extractErrorMessages; exports.extractIncompleteMessageState = _chunkHOQDRQ4Mcjs.extractIncompleteMessageState; exports.extractTextFromChunk = _chunkHOQDRQ4Mcjs.extractTextFromChunk; exports.fetchSlashCommands = _chunkHOQDRQ4Mcjs.fetchSlashCommands; exports.flattenAssistantContent = _chunkHOQDRQ4Mcjs.flattenAssistantContent; exports.formatChatAttachmentMarkdownForBubble = _chunkHOQDRQ4Mcjs.formatChatAttachmentMarkdownForBubble; exports.formatInvestorUpdatePeriod = _chunkHOQDRQ4Mcjs.formatInvestorUpdatePeriod; exports.formatSingularLookupInvocation = _chunkHOQDRQ4Mcjs.formatSingularLookupInvocation; exports.getChatProxyAuth = _chunkHOQDRQ4Mcjs.getEmbedProxyAuth; exports.getCommandText = _chunkHOQDRQ4Mcjs.getCommandText; exports.getDynamicIcon = _chunkHOQDRQ4Mcjs.getDynamicIcon; exports.getIconComponent = _chunkHOQDRQ4Mcjs.getIconComponent; exports.getPersistedProxyEmail = _chunkHOQDRQ4Mcjs.getPersistedProxyEmail; exports.getSourceIconName = _chunkHOQDRQ4Mcjs.getSourceIconName; exports.getSourceLabel = _chunkHOQDRQ4Mcjs.getSourceLabel; exports.getStatusColorScheme = _chunkHOQDRQ4Mcjs.getStatusColorScheme; exports.getTaskTypeLabel = _chunkHOQDRQ4Mcjs.getTaskTypeLabel; exports.handleChatNavClick = _chunkHOQDRQ4Mcjs.handleChatNavClick; exports.isControlChunk = _chunkHOQDRQ4Mcjs.isControlChunk; exports.isCrossOriginUrl = _chunkHOQDRQ4Mcjs.isCrossOriginUrl; exports.isErrorChunk = _chunkHOQDRQ4Mcjs.isErrorChunk; exports.isMetadataChunk = _chunkHOQDRQ4Mcjs.isMetadataChunk; exports.isModifierClick = _chunkHOQDRQ4Mcjs.isModifierClick; exports.isStructuredContent = _chunkHOQDRQ4Mcjs.isStructuredContent; exports.newTabAnchorAttrs = _chunkHOQDRQ4Mcjs.newTabAnchorAttrs; exports.normalizeContent = _chunkHOQDRQ4Mcjs.normalizeContent; exports.normalizeIconKey = _chunkHOQDRQ4Mcjs.normalizeIconKey; exports.parseChunkToAction = _chunkHOQDRQ4Mcjs.parseChunkToAction; exports.parseScrollAnchor = _chunkHOQDRQ4Mcjs.parseScrollAnchor; exports.parseWireCommandOverride = _chunkHOQDRQ4Mcjs.parseWireCommandOverride; exports.processHistoricalMessages = _chunkHOQDRQ4Mcjs.processHistoricalMessages; exports.processHistoricalMessagesWithErrors = _chunkHOQDRQ4Mcjs.processHistoricalMessagesWithErrors; exports.remarkCardLinks = _chunkHOQDRQ4Mcjs.remarkCardLinks; exports.renderChatInlineEntityCard = _chunkHOQDRQ4Mcjs.renderChatInlineEntityCard; exports.resolveExternalNavigation = _chunkHOQDRQ4Mcjs.resolveExternalNavigation; exports.resolveSourceIcon = _chunkHOQDRQ4Mcjs.resolveSourceIcon; exports.resolveSourceRowCTA = _chunkHOQDRQ4Mcjs.resolveSourceRowCTA; exports.safeHref = _chunkHOQDRQ4Mcjs.safeHref; exports.sanitizeTitleForChat = _chunkHOQDRQ4Mcjs.sanitizeTitleForChat; exports.setChatProxyAuth = _chunkHOQDRQ4Mcjs.setEmbedProxyAuth; exports.stripChatAttachmentMarkdown = _chunkHOQDRQ4Mcjs.stripChatAttachmentMarkdown; exports.stripSameOriginToPath = _chunkHOQDRQ4Mcjs.stripSameOriginToPath; exports.transformEventToProgram = _chunkHOQDRQ4Mcjs.transformEventToProgram; exports.transformPodcastToProgram = _chunkHOQDRQ4Mcjs.transformPodcastToProgram; exports.transformWebinarToProgram = _chunkHOQDRQ4Mcjs.transformWebinarToProgram; exports.useChat = _chunkHOQDRQ4Mcjs.useChat; exports.useChatAttachmentImageGallery = _chunkHOQDRQ4Mcjs.useChatAttachmentImageGallery; exports.useChatAttachments = _chunkHOQDRQ4Mcjs.useChatAttachments; exports.useChatCardItem = _chunkHOQDRQ4Mcjs.useChatCardItem; exports.useChatIdentity = _chunkHOQDRQ4Mcjs.useChatIdentity; exports.useChunkCatchup = _chunkHOQDRQ4Mcjs.useChunkCatchup; exports.useCloseOnNavigation = _chunkHOQDRQ4Mcjs.useCloseOnNavigation; exports.useCollapsible = _chunkHOQDRQ4Mcjs.useCollapsible; exports.useEmbeddedChat = _chunkHOQDRQ4Mcjs.useSseChatAdapter; exports.useJetStreamDialogSubscription = _chunkHOQDRQ4Mcjs.useJetStreamDialogSubscription; exports.useNatsChatAdapter = _chunkHOQDRQ4Mcjs.useNatsChatAdapter; exports.useNatsDialogSubscription = _chunkHOQDRQ4Mcjs.useNatsDialogSubscription; exports.useProxiedImageUrl = _chunkHOQDRQ4Mcjs.useProxiedImageUrl; exports.useRealtimeChunkProcessor = _chunkHOQDRQ4Mcjs.useRealtimeChunkProcessor; exports.useSSE = _chunkHOQDRQ4Mcjs.useSSE; exports.useSlashCommandRegistry = _chunkHOQDRQ4Mcjs.useSlashCommandRegistry; exports.useSlashCommands = _chunkHOQDRQ4Mcjs.useSlashCommands; exports.useSseChatAdapter = _chunkHOQDRQ4Mcjs.useSseChatAdapter; exports.useUnifiedChat = _chunkHOQDRQ4Mcjs.useUnifiedChat;
|
|
448
|
+
exports.ANTHROPIC_SUPPORTED_IMAGE_MIME = _chunkQFC725WUcjs.ANTHROPIC_SUPPORTED_IMAGE_MIME; exports.APPROVAL_STATUS = _chunkQFC725WUcjs.APPROVAL_STATUS; exports.ASSISTANT_TYPE = _chunkQFC725WUcjs.ASSISTANT_TYPE; exports.AUTHOR_TYPE = _chunkQFC725WUcjs.AUTHOR_TYPE; exports.AUTO_CONTINUATION_DIRECTIVE_PREFIX = _chunkQFC725WUcjs.AUTO_CONTINUATION_DIRECTIVE_PREFIX; exports.AdminContentCard = _chunkQFC725WUcjs.AdminContentCard; exports.ApprovalBatchMessage = _chunkQFC725WUcjs.ApprovalBatchMessage; exports.ApprovalRequestMessage = _chunkQFC725WUcjs.ApprovalRequestMessage; exports.ArchiveChatModal = _chunkQFC725WUcjs.ArchiveChatModal; exports.ArgRow = _chunkQFC725WUcjs.ArgRow; exports.BlockCard = _chunkQFC725WUcjs.BlockCard; exports.BlogCard = _chunkQFC725WUcjs.BlogCard; exports.BlogCardSkeleton = _chunkQFC725WUcjs.BlogCardSkeleton; exports.BlogImagePlaceholder = _chunkQFC725WUcjs.BlogImagePlaceholder; exports.CHAT_ATTACHMENT_CONCURRENT_UPLOADS_PER_USER = _chunkQFC725WUcjs.CHAT_ATTACHMENT_CONCURRENT_UPLOADS_PER_USER; exports.CHAT_ATTACHMENT_MARKDOWN_PATTERN = _chunkQFC725WUcjs.CHAT_ATTACHMENT_MARKDOWN_PATTERN; exports.CHAT_ATTACHMENT_MIME_TYPES = _chunkQFC725WUcjs.CHAT_ATTACHMENT_MIME_TYPES; exports.CHAT_ATTACHMENT_VIEW_TOKEN_QUERY_PARAM = _chunkQFC725WUcjs.CHAT_ATTACHMENT_VIEW_TOKEN_QUERY_PARAM; exports.CHAT_ATTACHMENT_VIEW_URL_PREFIX = _chunkQFC725WUcjs.CHAT_ATTACHMENT_VIEW_URL_PREFIX; exports.CHAT_ATTACHMENT_VIEW_URL_PREFIX_REGEX_ESCAPED = _chunkQFC725WUcjs.CHAT_ATTACHMENT_VIEW_URL_PREFIX_REGEX_ESCAPED; exports.CHAT_TYPE = _chunkQFC725WUcjs.CHAT_TYPE; exports.CHIP_ACTION_BUTTON_CLASS = _chunkQFC725WUcjs.CHIP_ACTION_BUTTON_CLASS; exports.COMPACT_CARD_ICON_SLOT = _chunkQFC725WUcjs.COMPACT_CARD_ICON_SLOT; exports.COMPACT_CARD_IMAGE_SLOT = _chunkQFC725WUcjs.COMPACT_CARD_IMAGE_SLOT; exports.COMPACT_CARD_META_ROW = _chunkQFC725WUcjs.COMPACT_CARD_META_ROW; exports.COMPACT_CARD_META_ROW_BOX = _chunkQFC725WUcjs.COMPACT_CARD_META_ROW_BOX; exports.COMPACT_CARD_OUTER = _chunkQFC725WUcjs.COMPACT_CARD_OUTER; exports.COMPACT_CARD_OUTER_STATIC = _chunkQFC725WUcjs.COMPACT_CARD_OUTER_STATIC; exports.COMPACT_CARD_ROW_FILLER = _chunkQFC725WUcjs.COMPACT_CARD_ROW_FILLER; exports.COMPACT_CARD_SKELETON_IMAGE_SLOT = _chunkQFC725WUcjs.COMPACT_CARD_SKELETON_IMAGE_SLOT; exports.COMPACT_CARD_SKELETON_OUTER = _chunkQFC725WUcjs.COMPACT_CARD_SKELETON_OUTER; exports.COMPACT_CARD_SUBTITLE = _chunkQFC725WUcjs.COMPACT_CARD_SUBTITLE; exports.COMPACT_CARD_SUMMARY = _chunkQFC725WUcjs.COMPACT_CARD_SUMMARY; exports.COMPACT_CARD_TEXT_COL = _chunkQFC725WUcjs.COMPACT_CARD_TEXT_COL; exports.COMPACT_CARD_TITLE = _chunkQFC725WUcjs.COMPACT_CARD_TITLE; exports.COMPACT_CARD_TITLE_ROW = _chunkQFC725WUcjs.COMPACT_CARD_TITLE_ROW; exports.COMPACT_HEADER_BUTTON = _chunkQFC725WUcjs.COMPACT_HEADER_BUTTON; exports.CONNECTION_STATUS = _chunkQFC725WUcjs.CONNECTION_STATUS; exports.CUSTOM_ITEM_ID = _chunkQFC725WUcjs.CUSTOM_ITEM_ID; exports.CampaignCardAdmin = _chunkQFC725WUcjs.CampaignCardAdmin; exports.CampaignCardAdminSkeleton = _chunkQFC725WUcjs.CampaignCardAdminSkeleton; exports.CaseStudyCard = _chunkQFC725WUcjs.CaseStudyCard; exports.CaseStudyCardSkeleton = _chunkQFC725WUcjs.CaseStudyCardSkeleton; exports.ChatArchivePage = _chunkQFC725WUcjs.ChatArchivePage; exports.ChatAttachmentAddButton = _chunkQFC725WUcjs.ChatAttachmentAddButton; exports.ChatAttachmentChipStrip = _chunkQFC725WUcjs.ChatAttachmentChipStrip; exports.ChatCardLoader = _chunkQFC725WUcjs.ChatCardLoader; exports.ChatComposer = _chunkQFC725WUcjs.ChatComposer; exports.ChatContainer = _chunkQFC725WUcjs.ChatContainer; exports.ChatContent = _chunkQFC725WUcjs.ChatContent; exports.ChatDialogModals = _chunkQFC725WUcjs.ChatDialogModals; exports.ChatFooter = _chunkQFC725WUcjs.ChatFooter; exports.ChatHeader = _chunkQFC725WUcjs.ChatHeader; exports.ChatHeaderIconButton = _chunkQFC725WUcjs.ChatHeaderIconButton; exports.ChatIdentityProvider = _chunkQFC725WUcjs.ChatIdentityProvider; exports.ChatInput = _chunkQFC725WUcjs.ChatInput; exports.ChatMessageEnhanced = _chunkQFC725WUcjs.MemoizedChatMessageEnhanced; exports.ChatMessageList = _chunkQFC725WUcjs.ChatMessageList; exports.ChatMessageRow = _chunkQFC725WUcjs.ChatMessageRow; exports.ChatMessageRowSkeleton = _chunkQFC725WUcjs.ChatMessageRowSkeleton; exports.ChatPanelHeader = _chunkQFC725WUcjs.ChatPanelHeader; exports.ChatQuickAction = _chunkQFC725WUcjs.ChatQuickAction; exports.ChatSidebar = _chunkQFC725WUcjs.ChatSidebar; exports.ChatTicketItem = _chunkQFC725WUcjs.ChatTicketItem; exports.ChatTicketList = _chunkQFC725WUcjs.ChatTicketList; exports.ChatTypingIndicator = _chunkQFC725WUcjs.ChatTypingIndicator; exports.ChatVideoEntityCard = _chunkQFC725WUcjs.ChatVideoEntityCard; exports.ContextCompactionDisplay = _chunkQFC725WUcjs.ContextCompactionDisplay; exports.CustomerInterviewCard = _chunkQFC725WUcjs.CustomerInterviewCard; exports.CustomerInterviewCardSkeleton = _chunkQFC725WUcjs.CustomerInterviewCardSkeleton; exports.DEFAULT_DOCUMENT_TYPE_TO_TABLE_ID = _chunkQFC725WUcjs.DEFAULT_DOCUMENT_TYPE_TO_TABLE_ID; exports.DataRoomDocCard = _chunkQFC725WUcjs.DataRoomDocCard; exports.DataRoomDocCardSkeleton = _chunkQFC725WUcjs.DataRoomDocCardSkeleton; exports.DialogListItem = _chunkQFC725WUcjs.DialogListItem; exports.EMPTY_AUTHOR_PLACEHOLDER = _chunkQFC725WUcjs.EMPTY_AUTHOR_PLACEHOLDER; exports.EmbeddableChat = _chunkQFC725WUcjs.EmbeddableChat; exports.EntityAuthorCard = _chunkQFC725WUcjs.EntityAuthorCard; exports.EntityMetadataAuthorCell = _chunkQFC725WUcjs.EntityMetadataAuthorCell; exports.EntityMetadataValueCell = _chunkQFC725WUcjs.EntityMetadataValueCell; exports.ErrorMessageDisplay = _chunkQFC725WUcjs.ErrorMessageDisplay; exports.ExpandChevron = _chunkQFC725WUcjs.ExpandChevron; exports.GenericEntityCard = _chunkQFC725WUcjs.GenericEntityCard; exports.GenericEntityCardSkeleton = _chunkQFC725WUcjs.GenericEntityCardSkeleton; exports.GitHubActivityCard = _chunkQFC725WUcjs.GitHubActivityCard; exports.GitHubActivityCardSkeleton = _chunkQFC725WUcjs.GitHubActivityCardSkeleton; exports.GuideModeBanner = _chunkQFC725WUcjs.GuideModeBanner; exports.GuideWelcome = _chunkQFC725WUcjs.GuideWelcome; exports.HubspotTicketCard = _chunkQFC725WUcjs.HubspotTicketCard; exports.HubspotTicketCardSkeleton = _chunkQFC725WUcjs.HubspotTicketCardSkeleton; exports.ICON_REGISTRY = _chunkQFC725WUcjs.ICON_REGISTRY; exports.InvestorUpdateCard = _chunkQFC725WUcjs.InvestorUpdateCard; exports.InvestorUpdateCardSkeleton = _chunkQFC725WUcjs.InvestorUpdateCardSkeleton; exports.MESSAGE_ROLE = _chunkQFC725WUcjs.MESSAGE_ROLE; exports.MESSAGE_TYPE = _chunkQFC725WUcjs.MESSAGE_TYPE; exports.MessageSegmentAccumulator = _chunkQFC725WUcjs.MessageSegmentAccumulator; exports.MingoChatHistory = _chunkQFC725WUcjs.MingoChatHistory; exports.MingoChatHistorySkeleton = _chunkQFC725WUcjs.MingoChatHistorySkeleton; exports.MingoOnboardingCard = _chunkQFC725WUcjs.MingoOnboardingCard; exports.MingoOnboardingCardSkeleton = _chunkQFC725WUcjs.MingoOnboardingCardSkeleton; exports.MingoOnboardingListSkeleton = _chunkQFC725WUcjs.MingoOnboardingListSkeleton; exports.MingoWelcome = _chunkQFC725WUcjs.MingoWelcome; exports.ModelDisplay = _chunkQFC725WUcjs.ModelDisplay; exports.NETWORK_CONFIG = _chunkQFC725WUcjs.NETWORK_CONFIG; exports.NEW_TAB_FEATURES = _chunkQFC725WUcjs.NEW_TAB_FEATURES; exports.NavLinkAnchorViaRuntime = _chunkQFC725WUcjs.NavLinkAnchorViaRuntime; exports.OWNER_TYPE = _chunkQFC725WUcjs.OWNER_TYPE; exports.OnboardingGuideCard = _chunkQFC725WUcjs.OnboardingGuideCard; exports.OnboardingGuideCardSkeleton = _chunkQFC725WUcjs.OnboardingGuideCardSkeleton; exports.ProductReleaseCard = _chunkQFC725WUcjs.ProductReleaseCard; exports.ProductReleaseCardSkeleton = _chunkQFC725WUcjs.ProductReleaseCardSkeleton; exports.ProgramCard = _chunkQFC725WUcjs.ProgramCard; exports.ProgramCardSkeleton = _chunkQFC725WUcjs.ProgramCardSkeleton; exports.RenameChatModal = _chunkQFC725WUcjs.RenameChatModal; exports.ResultBlock = _chunkQFC725WUcjs.ResultBlock; exports.RoadmapCard = _chunkQFC725WUcjs.RoadmapCard; exports.RoadmapCardSkeleton = _chunkQFC725WUcjs.RoadmapCardSkeleton; exports.RoadmapVoteButton = _chunkQFC725WUcjs.RoadmapVoteButton; exports.SCROLL_ANCHOR = _chunkQFC725WUcjs.SCROLL_ANCHOR; exports.SCROLL_ANCHOR_WIRE_KEY = _chunkQFC725WUcjs.SCROLL_ANCHOR_WIRE_KEY; exports.SOURCE_ICON_NAMES = _chunkQFC725WUcjs.SOURCE_ICON_NAMES; exports.SOURCE_LABELS_BY_TABLE = _chunkQFC725WUcjs.SOURCE_LABELS_BY_TABLE; exports.SlackMessageCard = _chunkQFC725WUcjs.SlackMessageCard; exports.SlackMessageCardSkeleton = _chunkQFC725WUcjs.SlackMessageCardSkeleton; exports.SlashCommandSuggestions = _chunkQFC725WUcjs.SlashCommandSuggestions; exports.SourceActionButton = _chunkQFC725WUcjs.SourceActionButton; exports.TaskTypeIcon = _chunkQFC725WUcjs.TaskTypeIcon; exports.ThinkingDisplay = _chunkQFC725WUcjs.ThinkingDisplay; exports.ToolExecutionDisplay = _chunkQFC725WUcjs.ToolExecutionDisplay; exports.UnarchiveChatModal = _chunkQFC725WUcjs.UnarchiveChatModal; exports.applyProxyAuth = _chunkQFC725WUcjs.applyProxyAuth; exports.buildAnchorProps = _chunkQFC725WUcjs.buildAnchorProps; exports.buildAutoContinuationDirective = _chunkQFC725WUcjs.buildAutoContinuationDirective; exports.buildChatAttachmentViewUrl = _chunkQFC725WUcjs.buildChatAttachmentViewUrl; exports.buildChatRefKey = _chunkQFC725WUcjs.buildChatRefKey; exports.buildDiscussAddendum = _chunkQFC725WUcjs.buildDiscussAddendum; exports.buildNatsWsUrl = _chunkQFC725WUcjs.buildNatsWsUrl; exports.buildProductReleaseCardProps = _chunkQFC725WUcjs.buildProductReleaseCardProps; exports.chatAuthedFetch = _chunkQFC725WUcjs.embedAuthedFetch; exports.chatChipClass = _chunkQFC725WUcjs.chatChipClass; exports.clearChatProxyAuth = _chunkQFC725WUcjs.clearEmbedProxyAuth; exports.clickupTaskUrl = _chunkQFC725WUcjs.clickupTaskUrl; exports.computeIsNewTab = _chunkQFC725WUcjs.computeIsNewTab; exports.createMessageSegmentAccumulator = _chunkQFC725WUcjs.createMessageSegmentAccumulator; exports.decideNewTab = _chunkQFC725WUcjs.decideNewTab; exports.defaultBuildProductReleaseCardProps = _chunkQFC725WUcjs.defaultBuildProductReleaseCardProps; exports.defaultTableIdForDocumentType = _chunkQFC725WUcjs.defaultTableIdForDocumentType; exports.escapeMarkdownInline = _chunkQFC725WUcjs.escapeMarkdownInline; exports.executeNavigation = _chunkQFC725WUcjs.executeNavigation; exports.executeNavigationImperative = _chunkQFC725WUcjs.executeNavigationImperative; exports.extractEntityIdFilter = _chunkQFC725WUcjs.extractEntityIdFilter; exports.extractErrorMessages = _chunkQFC725WUcjs.extractErrorMessages; exports.extractIncompleteMessageState = _chunkQFC725WUcjs.extractIncompleteMessageState; exports.extractTextFromChunk = _chunkQFC725WUcjs.extractTextFromChunk; exports.fetchSlashCommands = _chunkQFC725WUcjs.fetchSlashCommands; exports.flattenAssistantContent = _chunkQFC725WUcjs.flattenAssistantContent; exports.formatChatAttachmentMarkdownForBubble = _chunkQFC725WUcjs.formatChatAttachmentMarkdownForBubble; exports.formatInvestorUpdatePeriod = _chunkQFC725WUcjs.formatInvestorUpdatePeriod; exports.formatSingularLookupInvocation = _chunkQFC725WUcjs.formatSingularLookupInvocation; exports.getChatProxyAuth = _chunkQFC725WUcjs.getEmbedProxyAuth; exports.getCommandText = _chunkQFC725WUcjs.getCommandText; exports.getDynamicIcon = _chunkQFC725WUcjs.getDynamicIcon; exports.getIconComponent = _chunkQFC725WUcjs.getIconComponent; exports.getPersistedProxyEmail = _chunkQFC725WUcjs.getPersistedProxyEmail; exports.getSourceIconName = _chunkQFC725WUcjs.getSourceIconName; exports.getSourceLabel = _chunkQFC725WUcjs.getSourceLabel; exports.getStatusColorScheme = _chunkQFC725WUcjs.getStatusColorScheme; exports.getTaskTypeLabel = _chunkQFC725WUcjs.getTaskTypeLabel; exports.handleChatNavClick = _chunkQFC725WUcjs.handleChatNavClick; exports.isControlChunk = _chunkQFC725WUcjs.isControlChunk; exports.isCrossOriginUrl = _chunkQFC725WUcjs.isCrossOriginUrl; exports.isErrorChunk = _chunkQFC725WUcjs.isErrorChunk; exports.isMetadataChunk = _chunkQFC725WUcjs.isMetadataChunk; exports.isModifierClick = _chunkQFC725WUcjs.isModifierClick; exports.isStructuredContent = _chunkQFC725WUcjs.isStructuredContent; exports.newTabAnchorAttrs = _chunkQFC725WUcjs.newTabAnchorAttrs; exports.normalizeContent = _chunkQFC725WUcjs.normalizeContent; exports.normalizeIconKey = _chunkQFC725WUcjs.normalizeIconKey; exports.parseChunkToAction = _chunkQFC725WUcjs.parseChunkToAction; exports.parseScrollAnchor = _chunkQFC725WUcjs.parseScrollAnchor; exports.parseWireCommandOverride = _chunkQFC725WUcjs.parseWireCommandOverride; exports.processHistoricalMessages = _chunkQFC725WUcjs.processHistoricalMessages; exports.processHistoricalMessagesWithErrors = _chunkQFC725WUcjs.processHistoricalMessagesWithErrors; exports.remarkCardLinks = _chunkQFC725WUcjs.remarkCardLinks; exports.renderChatInlineEntityCard = _chunkQFC725WUcjs.renderChatInlineEntityCard; exports.resolveExternalNavigation = _chunkQFC725WUcjs.resolveExternalNavigation; exports.resolveSourceIcon = _chunkQFC725WUcjs.resolveSourceIcon; exports.resolveSourceRowCTA = _chunkQFC725WUcjs.resolveSourceRowCTA; exports.safeHref = _chunkQFC725WUcjs.safeHref; exports.sanitizeTitleForChat = _chunkQFC725WUcjs.sanitizeTitleForChat; exports.setChatProxyAuth = _chunkQFC725WUcjs.setEmbedProxyAuth; exports.stripChatAttachmentMarkdown = _chunkQFC725WUcjs.stripChatAttachmentMarkdown; exports.stripSameOriginToPath = _chunkQFC725WUcjs.stripSameOriginToPath; exports.transformEventToProgram = _chunkQFC725WUcjs.transformEventToProgram; exports.transformPodcastToProgram = _chunkQFC725WUcjs.transformPodcastToProgram; exports.transformWebinarToProgram = _chunkQFC725WUcjs.transformWebinarToProgram; exports.useChat = _chunkQFC725WUcjs.useChat; exports.useChatAttachmentImageGallery = _chunkQFC725WUcjs.useChatAttachmentImageGallery; exports.useChatAttachments = _chunkQFC725WUcjs.useChatAttachments; exports.useChatCardItem = _chunkQFC725WUcjs.useChatCardItem; exports.useChatIdentity = _chunkQFC725WUcjs.useChatIdentity; exports.useChunkCatchup = _chunkQFC725WUcjs.useChunkCatchup; exports.useCloseOnNavigation = _chunkQFC725WUcjs.useCloseOnNavigation; exports.useCollapsible = _chunkQFC725WUcjs.useCollapsible; exports.useEmbeddedChat = _chunkQFC725WUcjs.useSseChatAdapter; exports.useJetStreamDialogSubscription = _chunkQFC725WUcjs.useJetStreamDialogSubscription; exports.useNatsChatAdapter = _chunkQFC725WUcjs.useNatsChatAdapter; exports.useNatsDialogSubscription = _chunkQFC725WUcjs.useNatsDialogSubscription; exports.useProxiedImageUrl = _chunkQFC725WUcjs.useProxiedImageUrl; exports.useRealtimeChunkProcessor = _chunkQFC725WUcjs.useRealtimeChunkProcessor; exports.useSSE = _chunkQFC725WUcjs.useSSE; exports.useSlashCommandRegistry = _chunkQFC725WUcjs.useSlashCommandRegistry; exports.useSlashCommands = _chunkQFC725WUcjs.useSlashCommands; exports.useSseChatAdapter = _chunkQFC725WUcjs.useSseChatAdapter; exports.useUnifiedChat = _chunkQFC725WUcjs.useUnifiedChat;
|
|
449
449
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -214,7 +214,7 @@ import {
|
|
|
214
214
|
useSlashCommands,
|
|
215
215
|
useSseChatAdapter,
|
|
216
216
|
useUnifiedChat
|
|
217
|
-
} from "../../chunk-
|
|
217
|
+
} from "../../chunk-K252FYE5.js";
|
|
218
218
|
import "../../chunk-LXC6P2EO.js";
|
|
219
219
|
import "../../chunk-EL5YVPD5.js";
|
|
220
220
|
import "../../chunk-YZDUOUMB.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});"use client";
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../chunk-
|
|
4
|
+
var _chunkHO2VEMEXcjs = require('../../chunk-HO2VEMEX.cjs');
|
|
5
|
+
require('../../chunk-QFC725WU.cjs');
|
|
6
6
|
require('../../chunk-XL4V2PYG.cjs');
|
|
7
7
|
require('../../chunk-BZFW3FOF.cjs');
|
|
8
8
|
require('../../chunk-E6B4B7GM.cjs');
|
|
@@ -20,5 +20,5 @@ require('../../chunk-OZ3GH6OQ.cjs');
|
|
|
20
20
|
require('../../chunk-VRHGVLSL.cjs');
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
exports.ContactForm =
|
|
23
|
+
exports.ContactForm = _chunkHO2VEMEXcjs.ContactForm;
|
|
24
24
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
ContactForm
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-EURLSRHW.js";
|
|
5
|
+
import "../../chunk-K252FYE5.js";
|
|
6
6
|
import "../../chunk-LXC6P2EO.js";
|
|
7
7
|
import "../../chunk-EL5YVPD5.js";
|
|
8
8
|
import "../../chunk-YZDUOUMB.js";
|
|
@@ -97,7 +97,11 @@
|
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
var _chunkQFC725WUcjs = require('../../chunk-QFC725WU.cjs');
|
|
101
105
|
require('../../chunk-XL4V2PYG.cjs');
|
|
102
106
|
require('../../chunk-BZFW3FOF.cjs');
|
|
103
107
|
require('../../chunk-E6B4B7GM.cjs');
|
|
@@ -210,5 +214,9 @@ require('../../chunk-VRHGVLSL.cjs');
|
|
|
210
214
|
|
|
211
215
|
|
|
212
216
|
|
|
213
|
-
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
exports.ADMIN_APPROVAL_REQUEST_CONTEXT_TYPE = _chunkQFC725WUcjs.ADMIN_APPROVAL_REQUEST_CONTEXT_TYPE; exports.AIEnrichButton = _chunkQFC725WUcjs.AIEnrichButton; exports.AIEnrichSection = _chunkQFC725WUcjs.AIEnrichSection; exports.AIRequiredBadge = _chunkQFC725WUcjs.AIRequiredBadge; exports.AIStatusIndicator = _chunkQFC725WUcjs.AIStatusIndicator; exports.AIWarningsSection = _chunkQFC725WUcjs.AIWarningsSection; exports.ApprovalRequestNotificationTile = _chunkQFC725WUcjs.ApprovalRequestNotificationTile; exports.ArrayEntryManager = _chunkQFC725WUcjs.ArrayEntryManager; exports.AuthProvidersList = _chunkQFC725WUcjs.AuthProvidersList; exports.Board = _chunkQFC725WUcjs.Board; exports.BoardColumn = _chunkQFC725WUcjs.BoardColumn; exports.BoardColumnHeader = _chunkQFC725WUcjs.BoardColumnHeader; exports.ChangelogManager = _chunkQFC725WUcjs.ChangelogManager; exports.ChangelogSectionsManager = _chunkQFC725WUcjs.ChangelogSectionsManager; exports.ClickUpTasksManager = _chunkQFC725WUcjs.ClickUpTasksManager; exports.CommandBox = _chunkQFC725WUcjs.CommandBox; exports.ConfidenceBadge = _chunkQFC725WUcjs.ConfidenceBadge; exports.DEFAULT_THEME = _chunkQFC725WUcjs.DEFAULT_THEME; exports.DynamicThemeProvider = _chunkQFC725WUcjs.DynamicThemeProvider; exports.EntitySummaryEditor = _chunkQFC725WUcjs.EntitySummaryEditor; exports.EntityVideoSection = _chunkQFC725WUcjs.EntityVideoSection; exports.ErrorBoundary = _chunkQFC725WUcjs.ErrorBoundary; exports.FigmaPrototypeViewer = _chunkQFC725WUcjs.FigmaPrototypeViewer; exports.FiltersDropdown = _chunkQFC725WUcjs.FiltersDropdown; exports.GitHubReleasesManager = _chunkQFC725WUcjs.GitHubReleasesManager; exports.HighlightConfigSection = _chunkQFC725WUcjs.HighlightConfigSection; exports.HighlightGenerationSection = _chunkQFC725WUcjs.HighlightGenerationSection; exports.HighlightVideoCombinedSection = _chunkQFC725WUcjs.HighlightVideoCombinedSection; exports.HighlightVideoPreview = _chunkQFC725WUcjs.HighlightVideoPreview; exports.HighlightVideoSection = _chunkQFC725WUcjs.HighlightVideoSection; exports.KnowledgeBaseLinksManager = _chunkQFC725WUcjs.KnowledgeBaseLinksManager; exports.LoadingProvider = _chunkQFC725WUcjs.LoadingProvider; exports.MUX_IMAGE_ORIGIN = _chunkQFC725WUcjs.MUX_IMAGE_ORIGIN; exports.MUX_STREAM_ORIGIN = _chunkQFC725WUcjs.MUX_STREAM_ORIGIN; exports.MediaGalleryManager = _chunkQFC725WUcjs.MediaGalleryManager; exports.MoreAboutButton = _chunkQFC725WUcjs.MoreAboutButton; exports.NotificationDrawer = _chunkQFC725WUcjs.NotificationDrawer; exports.NotificationPopups = _chunkQFC725WUcjs.NotificationPopups; exports.NotificationTile = _chunkQFC725WUcjs.NotificationTile; exports.NotificationsProvider = _chunkQFC725WUcjs.NotificationsProvider; exports.OPENFRAME_PATHS = _chunkQFC725WUcjs.OPENFRAME_PATHS; exports.OSTypeBadge = _chunkQFC725WUcjs.OSTypeBadge; exports.OSTypeBadgeGroup = _chunkQFC725WUcjs.OSTypeBadgeGroup; exports.OSTypeIcon = _chunkQFC725WUcjs.OSTypeIcon; exports.OSTypeLabel = _chunkQFC725WUcjs.OSTypeLabel; exports.ParallaxImageShowcase = _chunkQFC725WUcjs.ParallaxImageShowcase; exports.PathsDisplay = _chunkQFC725WUcjs.PathsDisplay; exports.PlatformBadge = _chunkQFC725WUcjs.PlatformBadge; exports.PlatformFilterComponent = _chunkQFC725WUcjs.PlatformFilterComponent; exports.PolicyConfigurationPanel = _chunkQFC725WUcjs.PolicyConfigurationPanel; exports.ProviderButton = _chunkQFC725WUcjs.ProviderButton; exports.PushButtonSelector = _chunkQFC725WUcjs.PushButtonSelector; exports.RATIO_DISPLAY_GRID_CLASS = _chunkQFC725WUcjs.RATIO_DISPLAY_GRID_CLASS; exports.RATIO_GRID_CLASS = _chunkQFC725WUcjs.RATIO_GRID_CLASS; exports.RatioTabs = _chunkQFC725WUcjs.RatioTabs; exports.ReleaseMediaManager = _chunkQFC725WUcjs.ReleaseMediaManager; exports.SEOEditorPreview = _chunkQFC725WUcjs.SEOEditorPreview; exports.SectionSelector = _chunkQFC725WUcjs.SectionSelector; exports.SelectButton = _chunkQFC725WUcjs.SelectButton; exports.SocialLinksManager = _chunkQFC725WUcjs.SocialLinksManager; exports.StartWithOpenFrameButton = _chunkQFC725WUcjs.StartWithOpenFrameButton; exports.StatusFilterComponent = _chunkQFC725WUcjs.StatusFilterComponent; exports.THEME_ATTRIBUTE = _chunkQFC725WUcjs.THEME_ATTRIBUTE; exports.THEME_STORAGE_KEY = _chunkQFC725WUcjs.THEME_STORAGE_KEY; exports.TagsSelector = _chunkQFC725WUcjs.TagsSelector; exports.ThemeProvider = _chunkQFC725WUcjs.ThemeProvider; exports.TicketCard = _chunkQFC725WUcjs.TicketCard; exports.TicketCardSkeleton = _chunkQFC725WUcjs.TicketCardSkeleton; exports.TicketStatusConfigList = _chunkQFC725WUcjs.TicketStatusConfigList; exports.TranscribeAndSummarizeCombinedSection = _chunkQFC725WUcjs.TranscribeAndSummarizeCombinedSection; exports.TranscribeSummarizeSection = _chunkQFC725WUcjs.TranscribeSummarizeSection; exports.TranscriptSummaryEditor = _chunkQFC725WUcjs.TranscriptSummaryEditor; exports.Video = _chunkQFC725WUcjs.Video; exports.VideoBiteCard = _chunkQFC725WUcjs.VideoBiteCard; exports.VideoBitesDisplay = _chunkQFC725WUcjs.VideoBitesDisplay; exports.VideoClipsSection = _chunkQFC725WUcjs.VideoClipsSection; exports.VideoSourceSelector = _chunkQFC725WUcjs.VideoSourceSelector; exports.ViewToggle = _chunkQFC725WUcjs.ViewToggle; exports.WaitlistForm = _chunkQFC725WUcjs.WaitlistForm; exports.columnFromTicketStatus = _chunkQFC725WUcjs.columnFromTicketStatus; exports.detectAspectRatio = _chunkQFC725WUcjs.detectAspectRatio; exports.extractYouTubeId = _chunkQFC725WUcjs.extractYouTubeId; exports.getApprovalMeta = _chunkQFC725WUcjs.getApprovalMeta; exports.getCaptionsUrl = _chunkQFC725WUcjs.getCaptionsUrl; exports.getOpenFramePaths = _chunkQFC725WUcjs.getOpenFramePaths; exports.groupByAspectRatio = _chunkQFC725WUcjs.groupByAspectRatio; exports.groupTicketsByStatus = _chunkQFC725WUcjs.groupTicketsByStatus; exports.isApprovalNotification = _chunkQFC725WUcjs.isApprovalNotification; exports.ratioToCategory = _chunkQFC725WUcjs.ratioToCategory; exports.tintOnDark = _chunkQFC725WUcjs.tintOnDark; exports.useBoardCollapse = _chunkQFC725WUcjs.useBoardCollapse; exports.useDynamicTheme = _chunkQFC725WUcjs.useDynamicTheme; exports.useFiltersDropdown = _chunkQFC725WUcjs.useFiltersDropdown; exports.useLoading = _chunkQFC725WUcjs.useLoading; exports.useNotifications = _chunkQFC725WUcjs.useNotifications; exports.useOptionalNotifications = _chunkQFC725WUcjs.useOptionalNotifications; exports.useTheme = _chunkQFC725WUcjs.useTheme; exports.useThemeToggle = _chunkQFC725WUcjs.useThemeToggle; exports.useVideoOriginPreconnect = _chunkQFC725WUcjs.useVideoOriginPreconnect; exports.useVideoWarmup = _chunkQFC725WUcjs.useVideoWarmup;
|
|
214
222
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/openframe-oss-lib/openframe-oss-lib/openframe-frontend-core/dist/components/features/index.cjs"],"names":[],"mappings":"AAAA,qFAAY;AACZ,YAAY;AACZ;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,4DAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/openframe-oss-lib/openframe-oss-lib/openframe-frontend-core/dist/components/features/index.cjs"],"names":[],"mappings":"AAAA,qFAAY;AACZ,YAAY;AACZ;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,4DAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC;AACjC;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,u5MAAC","file":"/home/runner/work/openframe-oss-lib/openframe-oss-lib/openframe-frontend-core/dist/components/features/index.cjs"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
"use client";
|
|
3
3
|
import {
|
|
4
|
+
ADMIN_APPROVAL_REQUEST_CONTEXT_TYPE,
|
|
4
5
|
AIEnrichButton,
|
|
5
6
|
AIEnrichSection,
|
|
6
7
|
AIRequiredBadge,
|
|
7
8
|
AIStatusIndicator,
|
|
8
9
|
AIWarningsSection,
|
|
10
|
+
ApprovalRequestNotificationTile,
|
|
9
11
|
ArrayEntryManager,
|
|
10
12
|
AuthProvidersList,
|
|
11
13
|
Board,
|
|
@@ -81,10 +83,12 @@ import {
|
|
|
81
83
|
columnFromTicketStatus,
|
|
82
84
|
detectAspectRatio,
|
|
83
85
|
extractYouTubeId,
|
|
86
|
+
getApprovalMeta,
|
|
84
87
|
getCaptionsUrl,
|
|
85
88
|
getOpenFramePaths,
|
|
86
89
|
groupByAspectRatio,
|
|
87
90
|
groupTicketsByStatus,
|
|
91
|
+
isApprovalNotification,
|
|
88
92
|
ratioToCategory,
|
|
89
93
|
tintOnDark,
|
|
90
94
|
useBoardCollapse,
|
|
@@ -97,7 +101,7 @@ import {
|
|
|
97
101
|
useThemeToggle,
|
|
98
102
|
useVideoOriginPreconnect,
|
|
99
103
|
useVideoWarmup
|
|
100
|
-
} from "../../chunk-
|
|
104
|
+
} from "../../chunk-K252FYE5.js";
|
|
101
105
|
import "../../chunk-LXC6P2EO.js";
|
|
102
106
|
import "../../chunk-EL5YVPD5.js";
|
|
103
107
|
import "../../chunk-YZDUOUMB.js";
|
|
@@ -114,11 +118,13 @@ import "../../chunk-MJNXIEV2.js";
|
|
|
114
118
|
import "../../chunk-CZR7ARBA.js";
|
|
115
119
|
import "../../chunk-GGWZFCYS.js";
|
|
116
120
|
export {
|
|
121
|
+
ADMIN_APPROVAL_REQUEST_CONTEXT_TYPE,
|
|
117
122
|
AIEnrichButton,
|
|
118
123
|
AIEnrichSection,
|
|
119
124
|
AIRequiredBadge,
|
|
120
125
|
AIStatusIndicator,
|
|
121
126
|
AIWarningsSection,
|
|
127
|
+
ApprovalRequestNotificationTile,
|
|
122
128
|
ArrayEntryManager,
|
|
123
129
|
AuthProvidersList,
|
|
124
130
|
Board,
|
|
@@ -194,10 +200,12 @@ export {
|
|
|
194
200
|
columnFromTicketStatus,
|
|
195
201
|
detectAspectRatio,
|
|
196
202
|
extractYouTubeId,
|
|
203
|
+
getApprovalMeta,
|
|
197
204
|
getCaptionsUrl,
|
|
198
205
|
getOpenFramePaths,
|
|
199
206
|
groupByAspectRatio,
|
|
200
207
|
groupTicketsByStatus,
|
|
208
|
+
isApprovalNotification,
|
|
201
209
|
ratioToCategory,
|
|
202
210
|
tintOnDark,
|
|
203
211
|
useBoardCollapse,
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Notification } from './types';
|
|
2
|
+
export interface ApprovalRequestNotificationTileProps {
|
|
3
|
+
notification: Notification;
|
|
4
|
+
onApprove: (approvalRequestId: string) => void | Promise<void>;
|
|
5
|
+
onReject: (approvalRequestId: string) => void | Promise<void>;
|
|
6
|
+
onComplete: (id: string) => void;
|
|
7
|
+
onSettle?: (id: string) => void;
|
|
8
|
+
liveDurationMs?: number;
|
|
9
|
+
defaultExpanded?: boolean;
|
|
10
|
+
className?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare function ApprovalRequestNotificationTile({ notification, onApprove, onReject, onComplete, onSettle, liveDurationMs, defaultExpanded, className, }: ApprovalRequestNotificationTileProps): import("react").JSX.Element | null;
|
|
13
|
+
//# sourceMappingURL=approval-request-notification-tile.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"approval-request-notification-tile.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/approval-request-notification-tile.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAE3C,MAAM,WAAW,oCAAoC;IACnD,YAAY,EAAE,YAAY,CAAA;IAC1B,SAAS,EAAE,CAAC,iBAAiB,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAC9D,QAAQ,EAAE,CAAC,iBAAiB,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAC7D,UAAU,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;IAChC,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;IAC/B,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,+BAA+B,CAAC,EAC9C,YAAY,EACZ,SAAS,EACT,QAAQ,EACR,UAAU,EACV,QAAQ,EACR,cAAc,EACd,eAAuB,EACvB,SAAS,GACV,EAAE,oCAAoC,sCAqFtC"}
|
|
@@ -6,5 +6,8 @@ export { NotificationTile } from './notification-tile';
|
|
|
6
6
|
export type { NotificationTileProps } from './notification-tile';
|
|
7
7
|
export { NotificationPopups } from './notification-popups';
|
|
8
8
|
export type { NotificationPopupsProps, NotificationPopupsPosition } from './notification-popups';
|
|
9
|
-
export
|
|
9
|
+
export { ApprovalRequestNotificationTile } from './approval-request-notification-tile';
|
|
10
|
+
export type { ApprovalRequestNotificationTileProps } from './approval-request-notification-tile';
|
|
11
|
+
export { ADMIN_APPROVAL_REQUEST_CONTEXT_TYPE, getApprovalMeta, isApprovalNotification, } from './types';
|
|
12
|
+
export type { Notification, NotificationVariant, NotificationSeverity, AddNotificationInput, ApprovalNotificationMeta, ApprovalToolCallMeta, RenderNotificationTile, } from './types';
|
|
10
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qBAAqB,EACrB,gBAAgB,EAChB,wBAAwB,GACzB,MAAM,yBAAyB,CAAA;AAChC,YAAY,EAAE,0BAA0B,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAA;AAC/F,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,YAAY,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACtD,YAAY,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAA;AAChE,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,YAAY,EAAE,uBAAuB,EAAE,0BAA0B,EAAE,MAAM,uBAAuB,CAAA;AAChG,YAAY,EACV,YAAY,EACZ,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qBAAqB,EACrB,gBAAgB,EAChB,wBAAwB,GACzB,MAAM,yBAAyB,CAAA;AAChC,YAAY,EAAE,0BAA0B,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAA;AAC/F,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,YAAY,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACtD,YAAY,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAA;AAChE,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC1D,YAAY,EAAE,uBAAuB,EAAE,0BAA0B,EAAE,MAAM,uBAAuB,CAAA;AAChG,OAAO,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAA;AACtF,YAAY,EAAE,oCAAoC,EAAE,MAAM,sCAAsC,CAAA;AAChG,OAAO,EACL,mCAAmC,EACnC,eAAe,EACf,sBAAsB,GACvB,MAAM,SAAS,CAAA;AAChB,YAAY,EACV,YAAY,EACZ,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,EACpB,wBAAwB,EACxB,oBAAoB,EACpB,sBAAsB,GACvB,MAAM,SAAS,CAAA"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import type { RenderNotificationTile } from './types';
|
|
1
2
|
export interface NotificationDrawerProps {
|
|
2
3
|
className?: string;
|
|
3
4
|
liveDurationMs?: number;
|
|
4
5
|
loadMoreRootMargin?: string;
|
|
6
|
+
renderTile?: RenderNotificationTile;
|
|
5
7
|
}
|
|
6
|
-
export declare function NotificationDrawer({ className, liveDurationMs, loadMoreRootMargin }: NotificationDrawerProps): import("react").JSX.Element | null;
|
|
8
|
+
export declare function NotificationDrawer({ className, liveDurationMs, loadMoreRootMargin, renderTile: renderTileProp, }: NotificationDrawerProps): import("react").JSX.Element | null;
|
|
7
9
|
//# sourceMappingURL=notification-drawer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification-drawer.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/notification-drawer.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"notification-drawer.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/notification-drawer.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAgB,sBAAsB,EAAE,MAAM,SAAS,CAAA;AAGnE,MAAM,WAAW,uBAAuB;IACtC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,UAAU,CAAC,EAAE,sBAAsB,CAAA;CACpC;AAED,wBAAgB,kBAAkB,CAAC,EACjC,SAAS,EACT,cAAc,EACd,kBAA4B,EAC5B,UAAU,EAAE,cAAc,GAC3B,EAAE,uBAAuB,sCAuEzB"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { RenderNotificationTile } from './types';
|
|
1
2
|
export type NotificationPopupsPosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
|
|
2
3
|
export interface NotificationPopupsProps {
|
|
3
4
|
className?: string;
|
|
@@ -5,6 +6,7 @@ export interface NotificationPopupsProps {
|
|
|
5
6
|
maxVisible?: number;
|
|
6
7
|
position?: NotificationPopupsPosition;
|
|
7
8
|
hideWhenDrawerOpen?: boolean;
|
|
9
|
+
renderTile?: RenderNotificationTile;
|
|
8
10
|
}
|
|
9
|
-
export declare function NotificationPopups({ className, liveDurationMs, maxVisible, position, hideWhenDrawerOpen, }: NotificationPopupsProps): import("react").JSX.Element | null;
|
|
11
|
+
export declare function NotificationPopups({ className, liveDurationMs, maxVisible, position, hideWhenDrawerOpen, renderTile: renderTileProp, }: NotificationPopupsProps): import("react").JSX.Element | null;
|
|
10
12
|
//# sourceMappingURL=notification-popups.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification-popups.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/notification-popups.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"notification-popups.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/notification-popups.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAA;AAKrD,MAAM,MAAM,0BAA0B,GAClC,WAAW,GACX,UAAU,GACV,cAAc,GACd,aAAa,CAAA;AAEjB,MAAM,WAAW,uBAAuB;IACtC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,QAAQ,CAAC,EAAE,0BAA0B,CAAA;IACrC,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,UAAU,CAAC,EAAE,sBAAsB,CAAA;CACpC;AASD,wBAAgB,kBAAkB,CAAC,EACjC,SAAS,EACT,cAAqB,EACrB,UAAc,EACd,QAAsB,EACtB,kBAAyB,EACzB,UAAU,EAAE,cAAc,GAC3B,EAAE,uBAAuB,sCAgFzB"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type ReactNode } from 'react';
|
|
1
2
|
import type { Notification } from './types';
|
|
2
3
|
export interface NotificationTileProps {
|
|
3
4
|
notification: Notification;
|
|
@@ -5,6 +6,10 @@ export interface NotificationTileProps {
|
|
|
5
6
|
onComplete: (id: string) => void;
|
|
6
7
|
onSettle?: (id: string) => void;
|
|
7
8
|
className?: string;
|
|
9
|
+
/** Extra content rendered below the header inside the same card (e.g. an approval command section). */
|
|
10
|
+
children?: ReactNode;
|
|
11
|
+
/** Pin the tile: cancel the live auto-dismiss countdown (timer + progress bar) without settling it. */
|
|
12
|
+
paused?: boolean;
|
|
8
13
|
}
|
|
9
|
-
export declare function NotificationTile({ notification, liveDurationMs, onComplete, onSettle, className, }: NotificationTileProps): import("react").JSX.Element;
|
|
14
|
+
export declare function NotificationTile({ notification, liveDurationMs, onComplete, onSettle, className, children, paused, }: NotificationTileProps): import("react").JSX.Element;
|
|
10
15
|
//# sourceMappingURL=notification-tile.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification-tile.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/notification-tile.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"notification-tile.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/notification-tile.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAsB,KAAK,SAAS,EAAE,MAAM,OAAO,CAAA;AAM1D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAE3C,MAAM,WAAW,qBAAqB;IACpC,YAAY,EAAE,YAAY,CAAA;IAC1B,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;IAChC,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,uGAAuG;IACvG,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,uGAAuG;IACvG,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,YAAY,EACZ,cAAqB,EACrB,UAAU,EACV,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,MAAc,GACf,EAAE,qBAAqB,+BAwFvB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import type { AddNotificationInput, Notification } from './types';
|
|
2
|
+
import type { AddNotificationInput, Notification, RenderNotificationTile } from './types';
|
|
3
3
|
interface NotificationsContextValue {
|
|
4
4
|
notifications: Notification[];
|
|
5
5
|
unreadCount: number;
|
|
@@ -23,6 +23,7 @@ interface NotificationsContextValue {
|
|
|
23
23
|
hasMore: boolean;
|
|
24
24
|
isLoadingMore: boolean;
|
|
25
25
|
loadMore?: () => void;
|
|
26
|
+
renderTile?: RenderNotificationTile;
|
|
26
27
|
}
|
|
27
28
|
export interface NotificationsActions {
|
|
28
29
|
/** Called after the local reducer marks an item read; persist server-side. */
|
|
@@ -46,8 +47,10 @@ export interface NotificationsProviderProps {
|
|
|
46
47
|
hasMore?: boolean;
|
|
47
48
|
isLoadingMore?: boolean;
|
|
48
49
|
onLoadMore?: () => void;
|
|
50
|
+
/** Override how individual tiles render (drawer + popups); falls back to `NotificationTile`. */
|
|
51
|
+
renderTile?: RenderNotificationTile;
|
|
49
52
|
}
|
|
50
|
-
export declare function NotificationsProvider({ children, initialNotifications, maxNotifications, defaultShowPopups, onShowPopupsChange, onHistoryClick, actions, hasMore, isLoadingMore, onLoadMore, }: NotificationsProviderProps): React.JSX.Element;
|
|
53
|
+
export declare function NotificationsProvider({ children, initialNotifications, maxNotifications, defaultShowPopups, onShowPopupsChange, onHistoryClick, actions, hasMore, isLoadingMore, onLoadMore, renderTile, }: NotificationsProviderProps): React.JSX.Element;
|
|
51
54
|
export declare function useNotifications(): NotificationsContextValue;
|
|
52
55
|
export declare function useOptionalNotifications(): NotificationsContextValue | null;
|
|
53
56
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notifications-context.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/notifications-context.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"notifications-context.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/notifications-context.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,oBAAoB,EAAE,YAAY,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAA;AAEzF,UAAU,yBAAyB;IACjC,aAAa,EAAE,YAAY,EAAE,CAAA;IAC7B,WAAW,EAAE,MAAM,CAAA;IACnB,MAAM,EAAE,OAAO,CAAA;IACf,UAAU,EAAE,OAAO,CAAA;IACnB,eAAe,EAAE,CAAC,KAAK,EAAE,oBAAoB,KAAK,MAAM,CAAA;IACxD,kBAAkB,EAAE,CAAC,KAAK,EAAE,oBAAoB,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,KAAK,MAAM,CAAA;IAC5E,gBAAgB,EAAE,CAAC,IAAI,EAAE,YAAY,EAAE,KAAK,IAAI,CAAA;IAChD,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;IAC9B,WAAW,EAAE,MAAM,IAAI,CAAA;IACvB,WAAW,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;IACjC,MAAM,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;IAC5B,KAAK,EAAE,MAAM,IAAI,CAAA;IACjB,IAAI,EAAE,MAAM,IAAI,CAAA;IAChB,KAAK,EAAE,MAAM,IAAI,CAAA;IACjB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,aAAa,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;IACvC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAA;IAC3B,OAAO,EAAE,OAAO,CAAA;IAChB,aAAa,EAAE,OAAO,CAAA;IACtB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;IACrB,UAAU,CAAC,EAAE,sBAAsB,CAAA;CACpC;AAID,MAAM,WAAW,oBAAoB;IACnC,8EAA8E;IAC9E,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IACjD,0EAA0E;IAC1E,aAAa,CAAC,EAAE,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAC1C,2EAA2E;IAC3E,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAC/C,kFAAkF;IAClF,aAAa,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;CACrD;AAED,MAAM,WAAW,0BAA0B;IACzC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB,oBAAoB,CAAC,EAAE,YAAY,EAAE,CAAA;IACrC,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;IAC7C,cAAc,CAAC,EAAE,MAAM,IAAI,CAAA;IAC3B,OAAO,CAAC,EAAE,oBAAoB,CAAA;IAC9B,0EAA0E;IAC1E,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,UAAU,CAAC,EAAE,MAAM,IAAI,CAAA;IACvB,gGAAgG;IAChG,UAAU,CAAC,EAAE,sBAAsB,CAAA;CACpC;AA8ED,wBAAgB,qBAAqB,CAAC,EACpC,QAAQ,EACR,oBAAyB,EACzB,gBAAqB,EACrB,iBAAwB,EACxB,kBAAkB,EAClB,cAAc,EACd,OAAO,EACP,OAAe,EACf,aAAqB,EACrB,UAAU,EACV,UAAU,GACX,EAAE,0BAA0B,qBAoI5B;AAED,wBAAgB,gBAAgB,IAAI,yBAAyB,CAM5D;AAED,wBAAgB,wBAAwB,IAAI,yBAAyB,GAAG,IAAI,CAE3E"}
|
|
@@ -19,4 +19,34 @@ export type AddNotificationInput = Omit<Notification, 'id' | 'createdAt' | 'read
|
|
|
19
19
|
createdAt?: number;
|
|
20
20
|
read?: boolean;
|
|
21
21
|
};
|
|
22
|
+
/** Per-notification tile renderer; return a node to override the default `NotificationTile`, or `undefined` to fall back. */
|
|
23
|
+
export type RenderNotificationTile = (notification: Notification, helpers: {
|
|
24
|
+
onComplete: (id: string) => void;
|
|
25
|
+
onSettle: (id: string) => void;
|
|
26
|
+
liveDurationMs?: number;
|
|
27
|
+
}) => ReactNode;
|
|
28
|
+
/** Discriminator carried in `notification.meta.contextType` for Mingo approval requests. */
|
|
29
|
+
export declare const ADMIN_APPROVAL_REQUEST_CONTEXT_TYPE = "ADMIN_APPROVAL_REQUEST";
|
|
30
|
+
/** A single planned tool invocation awaiting approval. */
|
|
31
|
+
export interface ApprovalToolCallMeta {
|
|
32
|
+
toolExecutionRequestId?: string | null;
|
|
33
|
+
toolName: string;
|
|
34
|
+
toolTitle?: string | null;
|
|
35
|
+
toolExplanation?: string | null;
|
|
36
|
+
toolType?: string | null;
|
|
37
|
+
requiresApproval?: boolean;
|
|
38
|
+
approvalType?: string | null;
|
|
39
|
+
toolCallArguments?: Record<string, unknown> | null;
|
|
40
|
+
}
|
|
41
|
+
/** Approval payload stashed in `notification.meta` for an `ADMIN_APPROVAL_REQUEST` notification. */
|
|
42
|
+
export interface ApprovalNotificationMeta {
|
|
43
|
+
approvalRequestId: string;
|
|
44
|
+
dialogId?: string | null;
|
|
45
|
+
ticketId?: string | null;
|
|
46
|
+
approvalType?: string | null;
|
|
47
|
+
toolCalls: ApprovalToolCallMeta[];
|
|
48
|
+
}
|
|
49
|
+
export declare function isApprovalNotification(notification: Notification): boolean;
|
|
50
|
+
/** Safely read the approval payload off a notification; returns null when absent or malformed. */
|
|
51
|
+
export declare function getApprovalMeta(notification: Notification): ApprovalNotificationMeta | null;
|
|
22
52
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEtC,MAAM,MAAM,mBAAmB,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAA;AAEtF,MAAM,MAAM,oBAAoB,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,CAAA;AAEhE,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAA;IACV,OAAO,CAAC,EAAE,mBAAmB,CAAA;IAC7B,KAAK,EAAE,SAAS,CAAA;IAChB,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,oBAAoB,CAAA;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAC9B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB;AAED,MAAM,MAAM,oBAAoB,GAC9B,IAAI,CAAC,YAAY,EAAE,IAAI,GAAG,WAAW,GAAG,MAAM,GAAG,SAAS,CAAC,GAAG;IAC5D,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/features/notifications/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEtC,MAAM,MAAM,mBAAmB,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAA;AAEtF,MAAM,MAAM,oBAAoB,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,CAAA;AAEhE,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAA;IACV,OAAO,CAAC,EAAE,mBAAmB,CAAA;IAC7B,KAAK,EAAE,SAAS,CAAA;IAChB,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,oBAAoB,CAAA;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAC9B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB;AAED,MAAM,MAAM,oBAAoB,GAC9B,IAAI,CAAC,YAAY,EAAE,IAAI,GAAG,WAAW,GAAG,MAAM,GAAG,SAAS,CAAC,GAAG;IAC5D,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;AAEH,6HAA6H;AAC7H,MAAM,MAAM,sBAAsB,GAAG,CACnC,YAAY,EAAE,YAAY,EAC1B,OAAO,EAAE;IAAE,UAAU,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAA;CAAE,KACnG,SAAS,CAAA;AAEd,4FAA4F;AAC5F,eAAO,MAAM,mCAAmC,2BAA2B,CAAA;AAE3E,0DAA0D;AAC1D,MAAM,WAAW,oBAAoB;IACnC,sBAAsB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACtC,QAAQ,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACzB,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC/B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAA;CACnD;AAED,oGAAoG;AACpG,MAAM,WAAW,wBAAwB;IACvC,iBAAiB,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC5B,SAAS,EAAE,oBAAoB,EAAE,CAAA;CAClC;AAED,wBAAgB,sBAAsB,CAAC,YAAY,EAAE,YAAY,GAAG,OAAO,CAE1E;AAED,kGAAkG;AAClG,wBAAgB,eAAe,CAAC,YAAY,EAAE,YAAY,GAAG,wBAAwB,GAAG,IAAI,CAa3F"}
|