@inkeep/cxkit-primitives 0.5.69 → 0.5.71
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/components/embedded-chat/use-inkeep-chat.cjs +3 -3
- package/dist/components/embedded-chat/use-inkeep-chat.js +35 -35
- package/dist/components/embedded-search.cjs +1 -1
- package/dist/components/embedded-search.js +197 -189
- package/dist/components/intelligent-form/actions/qa-model-response.cjs +1 -1
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/providers/base-events-provider.cjs +1 -1
- package/dist/providers/base-events-provider.js +1 -1
- package/dist/utils/component-ids.cjs +1 -1
- package/dist/utils/component-ids.js +2 -0
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./escalation-schema.cjs"),p=async(o,
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./escalation-schema.cjs"),p=async(o,c,n)=>{const t=await c.chat.completions.create({model:"inkeep-qa-expert",messages:o,tools:[{type:"function",function:{name:"provideAIAnnotations",description:"Provides AI confidence levels for the response",parameters:l.escalationSchema}},{type:"function",function:{name:"provideRecordsConsidered",description:"Provides records considered in generating the response",parameters:{type:"object"}}}],tool_choice:"auto"},n?{headers:n}:void 0),i=t.choices[0]?.message?.content;let s,r;const a=t.choices[0]?.message?.tool_calls||[];for(const e of a)e.function.name==="provideAIAnnotations"&&(s=JSON.parse(e.function.arguments).aiAnnotations),e.function.name==="provideRecordsConsidered"&&(r=JSON.parse(e.function.arguments).recordsConsidered??[]);return{answer:i||null,aiAnnotations:s,recordsConsidered:r,messages:o}};exports.generateQAModelResponse=p;
|
package/dist/index.d.cts
CHANGED
|
@@ -271,7 +271,9 @@ export declare const aiSearchComponentIds: {
|
|
|
271
271
|
aiAskAITrigger: "aiAskAITrigger";
|
|
272
272
|
aiAskAITrigger__Icon: "aiAskAITrigger__Icon";
|
|
273
273
|
aiAskAITrigger__Label: "aiAskAITrigger__Label";
|
|
274
|
+
aiAskAITrigger__Query: "aiAskAITrigger__Query";
|
|
274
275
|
aiAskAITrigger__Indicator: "aiAskAITrigger__Indicator";
|
|
276
|
+
aiAskAITrigger__IndicatorText: "aiAskAITrigger__IndicatorText";
|
|
275
277
|
aiSearchResults: "aiSearchResults";
|
|
276
278
|
aiSearchResults__Loading: "aiSearchResults__Loading";
|
|
277
279
|
aiSearchResults__Empty: "aiSearchResults__Empty";
|
|
@@ -964,7 +966,9 @@ export declare const componentIDs: {
|
|
|
964
966
|
aiAskAITrigger: "aiAskAITrigger";
|
|
965
967
|
aiAskAITrigger__Icon: "aiAskAITrigger__Icon";
|
|
966
968
|
aiAskAITrigger__Label: "aiAskAITrigger__Label";
|
|
969
|
+
aiAskAITrigger__Query: "aiAskAITrigger__Query";
|
|
967
970
|
aiAskAITrigger__Indicator: "aiAskAITrigger__Indicator";
|
|
971
|
+
aiAskAITrigger__IndicatorText: "aiAskAITrigger__IndicatorText";
|
|
968
972
|
aiSearchResults: "aiSearchResults";
|
|
969
973
|
aiSearchResults__Loading: "aiSearchResults__Loading";
|
|
970
974
|
aiSearchResults__Empty: "aiSearchResults__Empty";
|
|
@@ -2420,7 +2424,9 @@ export declare namespace EmbeddedSearchPrimitive {
|
|
|
2420
2424
|
EmbeddedSearchPrimitiveAskAITrigger,
|
|
2421
2425
|
EmbeddedSearchPrimitiveAskAITriggerIcon,
|
|
2422
2426
|
EmbeddedSearchPrimitiveAskAITriggerLabel,
|
|
2427
|
+
EmbeddedSearchPrimitiveAskAITriggerQuery,
|
|
2423
2428
|
EmbeddedSearchPrimitiveAskAITriggerIndicator,
|
|
2429
|
+
EmbeddedSearchPrimitiveAskAITriggerIndicatorText,
|
|
2424
2430
|
EmbeddedSearchPrimitiveResults,
|
|
2425
2431
|
EmbeddedSearchPrimitiveResultsLoading,
|
|
2426
2432
|
EmbeddedSearchPrimitiveResultsEmpty,
|
|
@@ -2472,7 +2478,9 @@ export declare namespace EmbeddedSearchPrimitive {
|
|
|
2472
2478
|
EmbeddedSearchPrimitiveAskAITrigger as AskAITrigger,
|
|
2473
2479
|
EmbeddedSearchPrimitiveAskAITriggerIcon as AskAITriggerIcon,
|
|
2474
2480
|
EmbeddedSearchPrimitiveAskAITriggerLabel as AskAITriggerLabel,
|
|
2481
|
+
EmbeddedSearchPrimitiveAskAITriggerQuery as AskAITriggerQuery,
|
|
2475
2482
|
EmbeddedSearchPrimitiveAskAITriggerIndicator as AskAITriggerIndicator,
|
|
2483
|
+
EmbeddedSearchPrimitiveAskAITriggerIndicatorText as AskAITriggerIndicatorText,
|
|
2476
2484
|
EmbeddedSearchPrimitiveResults as Results,
|
|
2477
2485
|
EmbeddedSearchPrimitiveResultsLoading as ResultsLoading,
|
|
2478
2486
|
EmbeddedSearchPrimitiveResultsEmpty as ResultsEmpty,
|
|
@@ -2523,8 +2531,12 @@ declare const EmbeddedSearchPrimitiveAskAITriggerIcon: (props: Omit<ComponentPro
|
|
|
2523
2531
|
|
|
2524
2532
|
declare const EmbeddedSearchPrimitiveAskAITriggerIndicator: ForwardRefExoticComponent< PolymorphicProps & Omit< CustomIconProps, "_id" | "iconKey"> & Partial<Pick< CustomIconProps, "_id" | "iconKey">>>;
|
|
2525
2533
|
|
|
2534
|
+
declare const EmbeddedSearchPrimitiveAskAITriggerIndicatorText: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
2535
|
+
|
|
2526
2536
|
declare const EmbeddedSearchPrimitiveAskAITriggerLabel: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
2527
2537
|
|
|
2538
|
+
declare const EmbeddedSearchPrimitiveAskAITriggerQuery: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
2539
|
+
|
|
2528
2540
|
declare const EmbeddedSearchPrimitiveContent: ForwardRefExoticComponent<Omit< PolymorphicProps & Omit<{
|
|
2529
2541
|
children?: React.ReactNode;
|
|
2530
2542
|
} & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
|
package/dist/index.d.ts
CHANGED
|
@@ -271,7 +271,9 @@ export declare const aiSearchComponentIds: {
|
|
|
271
271
|
aiAskAITrigger: "aiAskAITrigger";
|
|
272
272
|
aiAskAITrigger__Icon: "aiAskAITrigger__Icon";
|
|
273
273
|
aiAskAITrigger__Label: "aiAskAITrigger__Label";
|
|
274
|
+
aiAskAITrigger__Query: "aiAskAITrigger__Query";
|
|
274
275
|
aiAskAITrigger__Indicator: "aiAskAITrigger__Indicator";
|
|
276
|
+
aiAskAITrigger__IndicatorText: "aiAskAITrigger__IndicatorText";
|
|
275
277
|
aiSearchResults: "aiSearchResults";
|
|
276
278
|
aiSearchResults__Loading: "aiSearchResults__Loading";
|
|
277
279
|
aiSearchResults__Empty: "aiSearchResults__Empty";
|
|
@@ -964,7 +966,9 @@ export declare const componentIDs: {
|
|
|
964
966
|
aiAskAITrigger: "aiAskAITrigger";
|
|
965
967
|
aiAskAITrigger__Icon: "aiAskAITrigger__Icon";
|
|
966
968
|
aiAskAITrigger__Label: "aiAskAITrigger__Label";
|
|
969
|
+
aiAskAITrigger__Query: "aiAskAITrigger__Query";
|
|
967
970
|
aiAskAITrigger__Indicator: "aiAskAITrigger__Indicator";
|
|
971
|
+
aiAskAITrigger__IndicatorText: "aiAskAITrigger__IndicatorText";
|
|
968
972
|
aiSearchResults: "aiSearchResults";
|
|
969
973
|
aiSearchResults__Loading: "aiSearchResults__Loading";
|
|
970
974
|
aiSearchResults__Empty: "aiSearchResults__Empty";
|
|
@@ -2420,7 +2424,9 @@ export declare namespace EmbeddedSearchPrimitive {
|
|
|
2420
2424
|
EmbeddedSearchPrimitiveAskAITrigger,
|
|
2421
2425
|
EmbeddedSearchPrimitiveAskAITriggerIcon,
|
|
2422
2426
|
EmbeddedSearchPrimitiveAskAITriggerLabel,
|
|
2427
|
+
EmbeddedSearchPrimitiveAskAITriggerQuery,
|
|
2423
2428
|
EmbeddedSearchPrimitiveAskAITriggerIndicator,
|
|
2429
|
+
EmbeddedSearchPrimitiveAskAITriggerIndicatorText,
|
|
2424
2430
|
EmbeddedSearchPrimitiveResults,
|
|
2425
2431
|
EmbeddedSearchPrimitiveResultsLoading,
|
|
2426
2432
|
EmbeddedSearchPrimitiveResultsEmpty,
|
|
@@ -2472,7 +2478,9 @@ export declare namespace EmbeddedSearchPrimitive {
|
|
|
2472
2478
|
EmbeddedSearchPrimitiveAskAITrigger as AskAITrigger,
|
|
2473
2479
|
EmbeddedSearchPrimitiveAskAITriggerIcon as AskAITriggerIcon,
|
|
2474
2480
|
EmbeddedSearchPrimitiveAskAITriggerLabel as AskAITriggerLabel,
|
|
2481
|
+
EmbeddedSearchPrimitiveAskAITriggerQuery as AskAITriggerQuery,
|
|
2475
2482
|
EmbeddedSearchPrimitiveAskAITriggerIndicator as AskAITriggerIndicator,
|
|
2483
|
+
EmbeddedSearchPrimitiveAskAITriggerIndicatorText as AskAITriggerIndicatorText,
|
|
2476
2484
|
EmbeddedSearchPrimitiveResults as Results,
|
|
2477
2485
|
EmbeddedSearchPrimitiveResultsLoading as ResultsLoading,
|
|
2478
2486
|
EmbeddedSearchPrimitiveResultsEmpty as ResultsEmpty,
|
|
@@ -2523,8 +2531,12 @@ declare const EmbeddedSearchPrimitiveAskAITriggerIcon: (props: Omit<ComponentPro
|
|
|
2523
2531
|
|
|
2524
2532
|
declare const EmbeddedSearchPrimitiveAskAITriggerIndicator: ForwardRefExoticComponent< PolymorphicProps & Omit< CustomIconProps, "_id" | "iconKey"> & Partial<Pick< CustomIconProps, "_id" | "iconKey">>>;
|
|
2525
2533
|
|
|
2534
|
+
declare const EmbeddedSearchPrimitiveAskAITriggerIndicatorText: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
2535
|
+
|
|
2526
2536
|
declare const EmbeddedSearchPrimitiveAskAITriggerLabel: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
2527
2537
|
|
|
2538
|
+
declare const EmbeddedSearchPrimitiveAskAITriggerQuery: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
2539
|
+
|
|
2528
2540
|
declare const EmbeddedSearchPrimitiveContent: ForwardRefExoticComponent<Omit< PolymorphicProps & Omit<{
|
|
2529
2541
|
children?: React.ReactNode;
|
|
2530
2542
|
} & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const y=require("react/jsx-runtime"),t=require("react"),B=require("../atoms/api/analytics/events.cjs"),f=require("./config-provider.cjs"),b=require("./user-provider.cjs"),p=t.createContext(void 0),x=({children:e})=>{const{baseSettings:n,componentType:r}=f.useInkeepConfig(),{apiKey:i,analyticsApiBaseUrl:c,tags:a,privacyPreferences:E,env:m}=n,{userProperties:v}=b.useUser(),u=t.useMemo(()=>({widgetLibraryVersion:"0.5.
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const y=require("react/jsx-runtime"),t=require("react"),B=require("../atoms/api/analytics/events.cjs"),f=require("./config-provider.cjs"),b=require("./user-provider.cjs"),p=t.createContext(void 0),x=({children:e})=>{const{baseSettings:n,componentType:r}=f.useInkeepConfig(),{apiKey:i,analyticsApiBaseUrl:c,tags:a,privacyPreferences:E,env:m}=n,{userProperties:v}=b.useUser(),u=t.useMemo(()=>({widgetLibraryVersion:"0.5.71",componentType:r,tags:a}),[r,a]),d=!E.optOutAllAnalytics&&m!=="development",g={logEvent:t.useCallback(async s=>{const o={...u,...s.properties},l={eventName:s.eventName,properties:o,userProperties:v},P=["modal_opened","modal_closed"].includes(s.eventName);if(d&&!P){if("conversation"in o&&!o.conversation?.id)return;B.logEvent(l,i,c)}n.onEvent?.(l)},[d,n,i,c,v,u])};return y.jsx(p.Provider,{value:g,children:e})},q=()=>{const e=t.useContext(p);if(!e)throw new Error("useBaseEvents must be used within a BaseEventsProvider");return e};exports.BaseEventsProvider=x;exports.useBaseEvents=q;
|
|
@@ -7,7 +7,7 @@ import { useUser as w } from "./user-provider.js";
|
|
|
7
7
|
const l = B(void 0), _ = ({ children: e }) => {
|
|
8
8
|
const { baseSettings: t, componentType: s } = b(), { apiKey: r, analyticsApiBaseUrl: i, tags: a, privacyPreferences: u, env: d } = t, { userProperties: c } = w(), v = y(
|
|
9
9
|
() => ({
|
|
10
|
-
widgetLibraryVersion: "0.5.
|
|
10
|
+
widgetLibraryVersion: "0.5.71",
|
|
11
11
|
componentType: s,
|
|
12
12
|
tags: a
|
|
13
13
|
}),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={icon:"icon",loadingIndicator__Text:"loadingIndicator__Text",loadingIndicator__Dots:"loadingIndicator__Dots",loadingIndicator__Dot:"loadingIndicator__Dot",view_toggle:"view_toggle",view_toggle_button:"view_toggle_button",view_toggle_icon:"view_toggle_icon"},a={codeblockContainer:"codeblockContainer",codeblockHeader:"codeblockHeader",codeblockHeaderLanguage:"codeblockHeaderLanguage",codeblockCopyButton:"codeblockCopyButton",codeblockHighlighterWrapper:"codeblockHighlighterWrapper",codeblockHighlighter:"codeblockHighlighter",codeblockCode:"codeblockCode",markdownH1:"markdownH1",markdownH2:"markdownH2",markdownP:"markdownP",markdownLi:"markdownLi",markdownUl:"markdownUl",markdownOl:"markdownOl",markdownLink:"markdownLink",markdownSourceLink:"markdownSourceLink",markdownTable:"markdownTable",markdownTh:"markdownTh",markdownTd:"markdownTd",markdownCode:"markdownCode",markdownInput:"markdownInput"},t={aiChatWrapper:"aiChatWrapper",aiChatConversationLoading:"aiChatConversationLoading",aiChatRoot:"aiChatRoot",aiChatHeader:"aiChatHeader",aiChatHeader__Toolbar:"aiChatHeader__Toolbar",aiChatHeader__ToolbarHeader:"aiChatHeader__ToolbarHeader",aiChatHeader__ToolbarHeaderWrapper:"aiChatHeader__ToolbarHeaderWrapper",aiChatContent:"aiChatContent",aiChatContentScrollArea:"aiChatContentScrollArea",aiChatContentScrollArea__Viewport:"aiChatContentScrollArea__Viewport",aiChatContentScrollArea__Scrollbar:"aiChatContentScrollArea__Scrollbar",aiChatContentScrollArea__Thumb:"aiChatContentScrollArea__Thumb",aiChatContentScrollArea__Corner:"aiChatContentScrollArea__Corner",aiChatDisclaimer:"aiChatDisclaimer",aiChatDisclaimerLabel:"aiChatDisclaimerLabel",aiChatDisclaimerTrigger:"aiChatDisclaimerTrigger",aiChatDisclaimerContent:"aiChatDisclaimerContent",aiChatDisclaimerText:"aiChatDisclaimerText",aiChatDisclaimerArrow:"aiChatDisclaimerArrow",aiChatExampleQuestions:"aiChatExampleQuestions",aiChatExampleQuestionsLabel:"aiChatExampleQuestionsLabel",aiChatExampleQuestionsList:"aiChatExampleQuestionsList",aiChatExampleQuestion:"aiChatExampleQuestion",aiChatExampleQuestionButton:"aiChatExampleQuestionButton",aiChatWorkflows:"aiChatWorkflows",aiChatWorkflowsLabel:"aiChatWorkflowsLabel",aiChatWorkflowsList:"aiChatWorkflowsList",aiChatWorkflow:"aiChatWorkflow",aiChatWorkflow__Icon:"aiChatWorkflow__Icon",aiChatMessages:"aiChatMessages",aiChatMessageWrapper:"aiChatMessageWrapper",aiChatMessageHeader:"aiChatMessageHeader",aiChatMessageLoading:"aiChatMessageLoading",aiChatMessageAvatar:"aiChatMessageAvatar",aiChatMessageAvatarFallback:"aiChatMessageAvatarFallback",aiChatMessageAvatarImage:"aiChatMessageAvatarImage",aiChatMessageAvatarContent:"aiChatMessageAvatarContent",aiChatMessageName:"aiChatMessageName",aiChatMessageContentWrapper:"aiChatMessageContentWrapper",aiChatMessageContent:"aiChatMessageContent",aiChatMessageAttachments:"aiChatMessageAttachments",aiChatMessageAttachments__List:"aiChatMessageAttachments__List",aiChatMessageAttachments__Item:"aiChatMessageAttachments__Item",aiChatMessageAttachments__ItemIcon:"aiChatMessageAttachments__ItemIcon",aiChatMessageAttachments__ItemTitle:"aiChatMessageAttachments__ItemTitle",aiChatMessageAttachmentsPreview:"aiChatMessageAttachmentsPreview",aiChatMessageAttachmentsPreview__Overlay:"aiChatMessageAttachmentsPreview__Overlay",aiChatMessageAttachmentsPreview__Content:"aiChatMessageAttachmentsPreview__Content",aiChatMessageAttachmentsPreview__Header:"aiChatMessageAttachmentsPreview__Header",aiChatMessageAttachmentsPreview__Close:"aiChatMessageAttachmentsPreview__Close",aiChatMessageAttachmentsPreview__Body:"aiChatMessageAttachmentsPreview__Body",aiChatMessage:"aiChatMessage",aiChatMessageToolbar:"aiChatMessageToolbar",aiChatMessageToolActions:"aiChatMessageToolActions",aiChatMessageToolAction:"aiChatMessageToolAction",aiChatMessageAction:"aiChatMessageAction",aiChatMessageSources:"aiChatMessageSources",aiChatMessageSources__Header:"aiChatMessageSources__Header",aiChatMessageSources__List:"aiChatMessageSources__List",aiChatMessageSourceItem:"aiChatMessageSourceItem",aiChatMessageSourceItem__Icon:"aiChatMessageSourceItem__Icon",aiChatMessageSourceItem__Breadcrumbs:"aiChatMessageSourceItem__Breadcrumbs",aiChatMessageSourceItem__Breadcrumb:"aiChatMessageSourceItem__Breadcrumb",aiChatMessageSourceItem__BreadcrumbIcon:"aiChatMessageSourceItem__BreadcrumbIcon",aiChatMessageSourceItem__Title:"aiChatMessageSourceItem__Title",aiChatMessageSourceItem__Tag:"aiChatMessageSourceItem__Tag",aiChatMessageSourceItem__Description:"aiChatMessageSourceItem__Description",aiChatMessageSourceItem__DescriptionPart:"aiChatMessageSourceItem__DescriptionPart",aiChatMessageSourceItem__Indicator:"aiChatMessageSourceItem__Indicator",aiChatFooter:"aiChatFooter",aiChatInput__Fieldset:"aiChatInput__Fieldset",aiChatInput__Group:"aiChatInput__Group",aiChatInput:"aiChatInput",aiChatInput__SendButton:"aiChatInput__SendButton",aiChatInput__SendButtonIcon:"aiChatInput__SendButtonIcon",aiChatAttachmentsBar:"aiChatAttachmentsBar",aiChatAttachmentsBar__List:"aiChatAttachmentsBar__List",aiChatAttachmentsBar__Attachment:"aiChatAttachmentsBar__Attachment",aiChatAttachmentsBar__AttachmentIcon:"aiChatAttachmentsBar__AttachmentIcon",aiChatAttachmentsBar__AttachmentTitle:"aiChatAttachmentsBar__AttachmentTitle",aiChatAttachmentsBar__AttachmentDelete:"aiChatAttachmentsBar__AttachmentDelete",aiChatAttachmentsBar__Actions:"aiChatAttachmentsBar__Actions",aiChatAttachmentsBar__InfoTip:"aiChatAttachmentsBar__InfoTip",aiChatAttachmentsBar__InfoTipIcon:"aiChatAttachmentsBar__InfoTipIcon",aiChatAttachmentsBar__InfoTipArrow:"aiChatAttachmentsBar__InfoTipArrow",aiChatAttachmentsBar__InfoTipText:"aiChatAttachmentsBar__InfoTipText",aiChatAttachmentsBar__Inputs:"aiChatAttachmentsBar__Inputs",aiChatAttachmentsBar__Input:"aiChatAttachmentsBar__Input",aiChatAttachmentsBar__InputIcon:"aiChatAttachmentsBar__InputIcon",aiChatAttachmentsBar__Modal:"aiChatAttachmentsBar__Modal",aiChatAttachmentsBar__ModalOverlay:"aiChatAttachmentsBar__ModalOverlay",aiChatAttachmentsBar__ModalContent:"aiChatAttachmentsBar__ModalContent",aiChatAttachmentsBar__ModalHeader:"aiChatAttachmentsBar__ModalHeader",aiChatAttachmentsBar__ModalClose:"aiChatAttachmentsBar__ModalClose",aiChatAttachmentsBar__ModalBody:"aiChatAttachmentsBar__ModalBody",aiChatAttachmentsBar__ModalHeading:"aiChatAttachmentsBar__ModalHeading",aiChatAttachmentsBar__ModalDescription:"aiChatAttachmentsBar__ModalDescription",aiChatAttachmentsBar__ModalHelp:"aiChatAttachmentsBar__ModalHelp",aiChatAttachmentsBar__Form:"aiChatAttachmentsBar__Form",aiChatAttachmentsBar__FormTitle:"aiChatAttachmentsBar__FormTitle",aiChatAttachmentsBar__FormTitleLabel:"aiChatAttachmentsBar__FormTitleLabel",aiChatAttachmentsBar__FormTitleInput:"aiChatAttachmentsBar__FormTitleInput",aiChatAttachmentsBar__FormTitleError:"aiChatAttachmentsBar__FormTitleError",aiChatAttachmentsBar__FormContent:"aiChatAttachmentsBar__FormContent",aiChatAttachmentsBar__FormContentLabel:"aiChatAttachmentsBar__FormContentLabel",aiChatAttachmentsBar__FormContentInput:"aiChatAttachmentsBar__FormContentInput",aiChatAttachmentsBar__FormContentError:"aiChatAttachmentsBar__FormContentError",aiChatAttachmentsBar__FormSubmitButton:"aiChatAttachmentsBar__FormSubmitButton",aiChatActionBar:"aiChatActionBar",aiChat__ChatActions:"aiChat__ChatActions",aiChat__ChatAction:"aiChat__ChatAction",aiChat__ChatActionLabel:"aiChat__ChatActionLabel",aiChat__ChatActionFeeback:"aiChat__ChatActionFeeback",aiChatHelpActions:"aiChatHelpActions",aiChatHelpAction:"aiChatHelpAction",aiChatHelpActions__Trigger:"aiChatHelpActions__Trigger",aiChatHelpActions__Menu:"aiChatHelpActions__Menu",aiChatHelpActions__MenuArrow:"aiChatHelpActions__MenuArrow",aiChatHelpActions__MenuItem:"aiChatHelpActions__MenuItem",aiChatHelpActions_MenuItemIcon:"aiChatHelpActions_MenuItemIcon",aiChatTagline__Container:"aiChatTagline__Container",aiChatTagline__Text:"aiChatTagline__Text",aiChatTagline__Logo:"aiChatTagline__Logo",aiChatTagline__BrandName:"aiChatTagline__BrandName",aiChatFeedbackModal:"aiChatFeedbackModal",aiChatFeedbackModal__Overlay:"aiChatFeedbackModal__Overlay",aiChatFeedbackModal__Content:"aiChatFeedbackModal__Content",aiChatFeedbackModal__Header:"aiChatFeedbackModal__Header",aiChatFeedbackModal__Close:"aiChatFeedbackModal__Close",aiChatFeedbackModal__Body:"aiChatFeedbackModal__Body",aiChatFeedbackForm:"aiChatFeedbackForm",aiChatFeedbackItem:"aiChatFeedbackItem",aiChatFeedbackItem__Checkbox:"aiChatFeedbackItem__Checkbox",aiChatFeedbackItem__CheckboxIndicator:"aiChatFeedbackItem__CheckboxIndicator",aiChatFeedbackItem__Label:"aiChatFeedbackItem__Label",aiChatFeedbackItem__Description:"aiChatFeedbackItem__Description",aiChatFeedbackForm__SubmitButton:"aiChatFeedbackForm__SubmitButton",aiChatForm__Wrapper:"aiChatForm__Wrapper",aiChatForm:"aiChatForm",aiChatForm__Close:"aiChatForm__Close",aiChatForm__Header:"aiChatForm__Header",aiChatForm__Heading:"aiChatForm__Heading",aiChatForm__Description:"aiChatForm__Description",aiChatForm__Content:"aiChatForm__Content",aiChatForm__Field:"aiChatForm__Field",aiChatForm__FieldLabel:"aiChatForm__FieldLabel",aiChatForm__FieldText:"aiChatForm__FieldText",aiChatForm__FieldEmail:"aiChatForm__FieldEmail",aiChatForm__FieldFile:"aiChatForm__FieldFile",aiChatForm__FieldTextArea:"aiChatForm__FieldTextArea",aiChatForm__FieldCheckbox:"aiChatForm__FieldCheckbox",aiChatForm__FieldCheckboxIndicator:"aiChatForm__FieldCheckboxIndicator",aiChatForm__FieldSelect:"aiChatForm__FieldSelect",aiChatForm__FieldSelect__Trigger:"aiChatForm__FieldSelect__Trigger",aiChatForm__FieldSelect__Value:"aiChatForm__FieldSelect__Value",aiChatForm__FieldSelect__Icon:"aiChatForm__FieldSelect__Icon",aiChatForm__FieldSelect__Content:"aiChatForm__FieldSelect__Content",aiChatForm__FieldSelect__Viewport:"aiChatForm__FieldSelect__Viewport",aiChatForm__FieldSelect__Item:"aiChatForm__FieldSelect__Item",aiChatForm__FieldSelect__ItemIndicator:"aiChatForm__FieldSelect__ItemIndicator",aiChatForm__FieldSelect__ItemText:"aiChatForm__FieldSelect__ItemText",aiChatForm__FieldError:"aiChatForm__FieldError",aiChatForm__Error:"aiChatForm__Error",aiChatForm__Footer:"aiChatForm__Footer",aiChatForm__Cancel:"aiChatForm__Cancel",aiChatForm__Submit:"aiChatForm__Submit",aiChatForm__Success:"aiChatForm__Success",aiChatForm__SuccessHeading:"aiChatForm__SuccessHeading",aiChatForm__SuccessMessage:"aiChatForm__SuccessMessage",aiChatForm__SuccessButton:"aiChatForm__SuccessButton",aiChatLink:"aiChatLink"},i={aiSearchWrapper:"aiSearchWrapper",aiSearchRoot:"aiSearchRoot",aiSearchContent:"aiSearchContent",aiSearchInputGroup:"aiSearchInputGroup",aiSearchInputIcon:"aiSearchInputIcon",aiSearchInput:"aiSearchInput",aiSearchLoading:"aiSearchLoading",aiAskAITrigger:"aiAskAITrigger",aiAskAITrigger__Icon:"aiAskAITrigger__Icon",aiAskAITrigger__Label:"aiAskAITrigger__Label",aiAskAITrigger__Indicator:"aiAskAITrigger__Indicator",aiSearchResults:"aiSearchResults",aiSearchResults__Loading:"aiSearchResults__Loading",aiSearchResults__Empty:"aiSearchResults__Empty",aiSearchResults__TabList:"aiSearchResults__TabList",aiSearchResults__Tab:"aiSearchResults__Tab",aiSearchResults__Content:"aiSearchResults__Content",aiSearchResults__ScrollArea:"aiSearchResults__ScrollArea",aiSearchResults__ScrollAreaViewport:"aiSearchResults__ScrollAreaViewport",aiSearchResults__List:"aiSearchResults__List",aiSearchResults__Item:"aiSearchResults__Item",aiSearchResults__ItemIcon:"aiSearchResults__ItemIcon",aiSearchResults__ItemBreadcrumbs:"aiSearchResults__ItemBreadcrumbs",aiSearchResults__ItemBreadcrumbIcon:"aiSearchResults__ItemBreadcrumbIcon",aiSearchResults__ItemTitle:"aiSearchResults__ItemTitle",aiSearchResults__ItemTag:"aiSearchResults__ItemTag",aiSearchResults__ItemDescription:"aiSearchResults__ItemDescription",aiSearchResults__ItemDescriptionPart:"aiSearchResults__ItemDescriptionPart",aiSearchResults__ItemIndicator:"aiSearchResults__ItemIndicator",aiSearchResults__ItemPreview:"aiSearchResults__ItemPreview",aiSearchResults__ItemPreview__Header:"aiSearchResults__ItemPreview__Header",aiSearchResults__ItemPreview__Heading:"aiSearchResults__ItemPreview__Heading",aiSearchResults__ItemPreview__Title:"aiSearchResults__ItemPreview__Title",aiSearchResults__ItemPreview__Title__LinkIcon:"aiSearchResults__ItemPreview__Title__LinkIcon",aiSearchResults__ItemPreview__Breadcrumbs:"aiSearchResults__ItemPreview__Breadcrumbs",aiSearchResults__ItemPreview__BreadcrumbIcon:"aiSearchResults__ItemPreview__BreadcrumbIcon",aiSearchResults__ItemPreview__Body:"aiSearchResults__ItemPreview__Body",aiSearchResults__ItemPreview__Outline:"aiSearchResults__ItemPreview__Outline",aiSearchResults__ItemPreview__Outline__Title:"aiSearchResults__ItemPreview__Outline__Title",aiSearchResults__ItemPreview__Outline__List:"aiSearchResults__ItemPreview__Outline__List",aiSearchResults__ItemPreview__Outline__Item:"aiSearchResults__ItemPreview__Outline__Item",aiSearchResults__ItemPreview__Outline__ItemIcon:"aiSearchResults__ItemPreview__Outline__ItemIcon",aiSearchResults__ItemPreview__Outline__ItemText:"aiSearchResults__ItemPreview__Outline__ItemText",aiSearchResults__ItemPreview__Outline__ItemLinkIcon:"aiSearchResults__ItemPreview__Outline__ItemLinkIcon",aiSearchResults__ScrollAreaScrollbar:"aiSearchResults__ScrollAreaScrollbar",aiSearchResults__ScrollAreaThumb:"aiSearchResults__ScrollAreaThumb",aiSearchResults__ScrollAreaCorner:"aiSearchResults__ScrollAreaCorner",aiSearchFooter:"aiSearchFooter",aiSearchTagline__Container:"aiSearchTagline__Container",aiSearchTagline__Text:"aiSearchTagline__Text",aiSearchTagline__Logo:"aiSearchTagline__Logo",aiSearchTagline__BrandName:"aiSearchTagline__BrandName"},_={modal:"modal",modal__Overlay:"modal__Overlay",modal__Content:"modal__Content",modal__Close:"modal__Close"},r={chatButton__Text:"chatButton__Text",chatButton__Button:"chatButton__Button",chatButton__Container:"chatButton__Container",chatButton__AvatarImage:"chatButton__AvatarImage",chatButton__AvatarContent:"chatButton__AvatarContent"},o={intelligentForm__Root:"intelligentForm__Root",intelligentForm__Heading:"intelligentForm__Heading",intelligentForm__Content:"intelligentForm__Content",intelligentForm__Content__ScrollArea:"intelligentForm__Content__ScrollArea",intelligentForm__Content__ScrollAreaViewport:"intelligentForm__Content__ScrollAreaViewport",intelligentForm__Content__ScrollAreaScrollbar:"intelligentForm__Content__ScrollAreaScrollbar",intelligentForm__Content__ScrollAreaThumb:"intelligentForm__Content__ScrollAreaThumb",intelligentForm__Content__ScrollAreaCorner:"intelligentForm__Content__ScrollAreaCorner",intelligentForm__Success:"intelligentForm__Success",intelligentForm__SuccessIcon:"intelligentForm__SuccessIcon",intelligentForm__SuccessHeading:"intelligentForm__SuccessHeading",intelligentForm__SuccessMessage:"intelligentForm__SuccessMessage",intelligentForm__PrimaryForm:"intelligentForm__PrimaryForm",intelligentForm__PrimaryForm__Description:"intelligentForm__PrimaryForm__Description",intelligentForm__PrimaryFormFields:"intelligentForm__PrimaryFormFields",intelligentForm__PrimaryFormSubmit:"intelligentForm__PrimaryFormSubmit",intelligentForm__Field:"intelligentForm__Field",intelligentForm__FieldLabel:"intelligentForm__FieldLabel",intelligentForm__FieldText:"intelligentForm__FieldText",intelligentForm__FieldEmail:"intelligentForm__FieldEmail",intelligentForm__FieldFile:"intelligentForm__FieldFile",intelligentForm__FieldTextArea:"intelligentForm__FieldTextArea",intelligentForm__FieldCheckbox:"intelligentForm__FieldCheckbox",intelligentForm__FieldCheckboxIndicator:"intelligentForm__FieldCheckboxIndicator",intelligentForm__FieldSelect:"intelligentForm__FieldSelect",intelligentForm__FieldSelect__Trigger:"intelligentForm__FieldSelect__Trigger",intelligentForm__FieldSelect__Value:"intelligentForm__FieldSelect__Value",intelligentForm__FieldSelect__Icon:"intelligentForm__FieldSelect__Icon",intelligentForm__FieldSelect__Content:"intelligentForm__FieldSelect__Content",intelligentForm__FieldSelect__Viewport:"intelligentForm__FieldSelect__Viewport",intelligentForm__FieldSelect__Item:"intelligentForm__FieldSelect__Item",intelligentForm__FieldSelect__ItemIndicator:"intelligentForm__FieldSelect__ItemIndicator",intelligentForm__FieldSelect__ItemText:"intelligentForm__FieldSelect__ItemText",intelligentForm__FieldError:"intelligentForm__FieldError",intelligentForm__BotHeading:"intelligentForm__BotHeading",intelligentForm__BotHeading__Icon:"intelligentForm__BotHeading__Icon",intelligentForm__BotHeading__Name:"intelligentForm__BotHeading__Name",intelligentForm__Loading:"intelligentForm__Loading",intelligentForm__ConfidentResponse:"intelligentForm__ConfidentResponse",intelligentForm__ConfidentAnswer:"intelligentForm__ConfidentAnswer",intelligentForm__ConfidentResponseButton:"intelligentForm__ConfidentResponseButton",intelligentForm__ConfidentResponseButton__Icon:"intelligentForm__ConfidentResponseButton__Icon",intelligentForm__ConfidentResponseButton__Label:"intelligentForm__ConfidentResponseButton__Label",intelligentForm__SecondaryForm:"intelligentForm__SecondaryForm",intelligentForm__SecondaryForm__Description:"intelligentForm__SecondaryForm__Description",intelligentForm__SecondaryFormFields:"intelligentForm__SecondaryFormFields",intelligentForm__SecondaryFormSubmit:"intelligentForm__SecondaryFormSubmit",intelligentForm__Error:"intelligentForm__Error",intelligentForm__Sources:"intelligentForm__Sources",intelligentForm__SourcesCaption:"intelligentForm__SourcesCaption",intelligentForm__SourcesList:"intelligentForm__SourcesList",intelligentForm__Source:"intelligentForm__Source",intelligentForm__SourceIcon:"intelligentForm__SourceIcon",intelligentForm__SourceTitle:"intelligentForm__SourceTitle"},n={searchBar__Container:"searchBar__Container",searchBar__Button:"searchBar__Button",searchBar__ContentWrapper:"searchBar__ContentWrapper",searchBar__Text:"searchBar__Text",searchBar__Icon:"searchBar__Icon",searchBar__KbdWrapper:"searchBar__KbdWrapper",searchBar__CmdIcon:"searchBar__CmdIcon",searchBar__Ctrl:"searchBar__Ctrl",searchBar__KbdShortcutKey:"searchBar__KbdShortcutKey"},l={...a,...t,...i,..._,...r,...n,...o,...e};exports.SearchBarComponentIds=n;exports.aiChatComponentIds=t;exports.aiSearchComponentIds=i;exports.chatButtonComponentIds=r;exports.componentIDs=l;exports.intelligentFormComponentIds=o;exports.markDownComponentIds=a;exports.miscellanousComponentIds=e;exports.modalComponentIds=_;
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={icon:"icon",loadingIndicator__Text:"loadingIndicator__Text",loadingIndicator__Dots:"loadingIndicator__Dots",loadingIndicator__Dot:"loadingIndicator__Dot",view_toggle:"view_toggle",view_toggle_button:"view_toggle_button",view_toggle_icon:"view_toggle_icon"},a={codeblockContainer:"codeblockContainer",codeblockHeader:"codeblockHeader",codeblockHeaderLanguage:"codeblockHeaderLanguage",codeblockCopyButton:"codeblockCopyButton",codeblockHighlighterWrapper:"codeblockHighlighterWrapper",codeblockHighlighter:"codeblockHighlighter",codeblockCode:"codeblockCode",markdownH1:"markdownH1",markdownH2:"markdownH2",markdownP:"markdownP",markdownLi:"markdownLi",markdownUl:"markdownUl",markdownOl:"markdownOl",markdownLink:"markdownLink",markdownSourceLink:"markdownSourceLink",markdownTable:"markdownTable",markdownTh:"markdownTh",markdownTd:"markdownTd",markdownCode:"markdownCode",markdownInput:"markdownInput"},t={aiChatWrapper:"aiChatWrapper",aiChatConversationLoading:"aiChatConversationLoading",aiChatRoot:"aiChatRoot",aiChatHeader:"aiChatHeader",aiChatHeader__Toolbar:"aiChatHeader__Toolbar",aiChatHeader__ToolbarHeader:"aiChatHeader__ToolbarHeader",aiChatHeader__ToolbarHeaderWrapper:"aiChatHeader__ToolbarHeaderWrapper",aiChatContent:"aiChatContent",aiChatContentScrollArea:"aiChatContentScrollArea",aiChatContentScrollArea__Viewport:"aiChatContentScrollArea__Viewport",aiChatContentScrollArea__Scrollbar:"aiChatContentScrollArea__Scrollbar",aiChatContentScrollArea__Thumb:"aiChatContentScrollArea__Thumb",aiChatContentScrollArea__Corner:"aiChatContentScrollArea__Corner",aiChatDisclaimer:"aiChatDisclaimer",aiChatDisclaimerLabel:"aiChatDisclaimerLabel",aiChatDisclaimerTrigger:"aiChatDisclaimerTrigger",aiChatDisclaimerContent:"aiChatDisclaimerContent",aiChatDisclaimerText:"aiChatDisclaimerText",aiChatDisclaimerArrow:"aiChatDisclaimerArrow",aiChatExampleQuestions:"aiChatExampleQuestions",aiChatExampleQuestionsLabel:"aiChatExampleQuestionsLabel",aiChatExampleQuestionsList:"aiChatExampleQuestionsList",aiChatExampleQuestion:"aiChatExampleQuestion",aiChatExampleQuestionButton:"aiChatExampleQuestionButton",aiChatWorkflows:"aiChatWorkflows",aiChatWorkflowsLabel:"aiChatWorkflowsLabel",aiChatWorkflowsList:"aiChatWorkflowsList",aiChatWorkflow:"aiChatWorkflow",aiChatWorkflow__Icon:"aiChatWorkflow__Icon",aiChatMessages:"aiChatMessages",aiChatMessageWrapper:"aiChatMessageWrapper",aiChatMessageHeader:"aiChatMessageHeader",aiChatMessageLoading:"aiChatMessageLoading",aiChatMessageAvatar:"aiChatMessageAvatar",aiChatMessageAvatarFallback:"aiChatMessageAvatarFallback",aiChatMessageAvatarImage:"aiChatMessageAvatarImage",aiChatMessageAvatarContent:"aiChatMessageAvatarContent",aiChatMessageName:"aiChatMessageName",aiChatMessageContentWrapper:"aiChatMessageContentWrapper",aiChatMessageContent:"aiChatMessageContent",aiChatMessageAttachments:"aiChatMessageAttachments",aiChatMessageAttachments__List:"aiChatMessageAttachments__List",aiChatMessageAttachments__Item:"aiChatMessageAttachments__Item",aiChatMessageAttachments__ItemIcon:"aiChatMessageAttachments__ItemIcon",aiChatMessageAttachments__ItemTitle:"aiChatMessageAttachments__ItemTitle",aiChatMessageAttachmentsPreview:"aiChatMessageAttachmentsPreview",aiChatMessageAttachmentsPreview__Overlay:"aiChatMessageAttachmentsPreview__Overlay",aiChatMessageAttachmentsPreview__Content:"aiChatMessageAttachmentsPreview__Content",aiChatMessageAttachmentsPreview__Header:"aiChatMessageAttachmentsPreview__Header",aiChatMessageAttachmentsPreview__Close:"aiChatMessageAttachmentsPreview__Close",aiChatMessageAttachmentsPreview__Body:"aiChatMessageAttachmentsPreview__Body",aiChatMessage:"aiChatMessage",aiChatMessageToolbar:"aiChatMessageToolbar",aiChatMessageToolActions:"aiChatMessageToolActions",aiChatMessageToolAction:"aiChatMessageToolAction",aiChatMessageAction:"aiChatMessageAction",aiChatMessageSources:"aiChatMessageSources",aiChatMessageSources__Header:"aiChatMessageSources__Header",aiChatMessageSources__List:"aiChatMessageSources__List",aiChatMessageSourceItem:"aiChatMessageSourceItem",aiChatMessageSourceItem__Icon:"aiChatMessageSourceItem__Icon",aiChatMessageSourceItem__Breadcrumbs:"aiChatMessageSourceItem__Breadcrumbs",aiChatMessageSourceItem__Breadcrumb:"aiChatMessageSourceItem__Breadcrumb",aiChatMessageSourceItem__BreadcrumbIcon:"aiChatMessageSourceItem__BreadcrumbIcon",aiChatMessageSourceItem__Title:"aiChatMessageSourceItem__Title",aiChatMessageSourceItem__Tag:"aiChatMessageSourceItem__Tag",aiChatMessageSourceItem__Description:"aiChatMessageSourceItem__Description",aiChatMessageSourceItem__DescriptionPart:"aiChatMessageSourceItem__DescriptionPart",aiChatMessageSourceItem__Indicator:"aiChatMessageSourceItem__Indicator",aiChatFooter:"aiChatFooter",aiChatInput__Fieldset:"aiChatInput__Fieldset",aiChatInput__Group:"aiChatInput__Group",aiChatInput:"aiChatInput",aiChatInput__SendButton:"aiChatInput__SendButton",aiChatInput__SendButtonIcon:"aiChatInput__SendButtonIcon",aiChatAttachmentsBar:"aiChatAttachmentsBar",aiChatAttachmentsBar__List:"aiChatAttachmentsBar__List",aiChatAttachmentsBar__Attachment:"aiChatAttachmentsBar__Attachment",aiChatAttachmentsBar__AttachmentIcon:"aiChatAttachmentsBar__AttachmentIcon",aiChatAttachmentsBar__AttachmentTitle:"aiChatAttachmentsBar__AttachmentTitle",aiChatAttachmentsBar__AttachmentDelete:"aiChatAttachmentsBar__AttachmentDelete",aiChatAttachmentsBar__Actions:"aiChatAttachmentsBar__Actions",aiChatAttachmentsBar__InfoTip:"aiChatAttachmentsBar__InfoTip",aiChatAttachmentsBar__InfoTipIcon:"aiChatAttachmentsBar__InfoTipIcon",aiChatAttachmentsBar__InfoTipArrow:"aiChatAttachmentsBar__InfoTipArrow",aiChatAttachmentsBar__InfoTipText:"aiChatAttachmentsBar__InfoTipText",aiChatAttachmentsBar__Inputs:"aiChatAttachmentsBar__Inputs",aiChatAttachmentsBar__Input:"aiChatAttachmentsBar__Input",aiChatAttachmentsBar__InputIcon:"aiChatAttachmentsBar__InputIcon",aiChatAttachmentsBar__Modal:"aiChatAttachmentsBar__Modal",aiChatAttachmentsBar__ModalOverlay:"aiChatAttachmentsBar__ModalOverlay",aiChatAttachmentsBar__ModalContent:"aiChatAttachmentsBar__ModalContent",aiChatAttachmentsBar__ModalHeader:"aiChatAttachmentsBar__ModalHeader",aiChatAttachmentsBar__ModalClose:"aiChatAttachmentsBar__ModalClose",aiChatAttachmentsBar__ModalBody:"aiChatAttachmentsBar__ModalBody",aiChatAttachmentsBar__ModalHeading:"aiChatAttachmentsBar__ModalHeading",aiChatAttachmentsBar__ModalDescription:"aiChatAttachmentsBar__ModalDescription",aiChatAttachmentsBar__ModalHelp:"aiChatAttachmentsBar__ModalHelp",aiChatAttachmentsBar__Form:"aiChatAttachmentsBar__Form",aiChatAttachmentsBar__FormTitle:"aiChatAttachmentsBar__FormTitle",aiChatAttachmentsBar__FormTitleLabel:"aiChatAttachmentsBar__FormTitleLabel",aiChatAttachmentsBar__FormTitleInput:"aiChatAttachmentsBar__FormTitleInput",aiChatAttachmentsBar__FormTitleError:"aiChatAttachmentsBar__FormTitleError",aiChatAttachmentsBar__FormContent:"aiChatAttachmentsBar__FormContent",aiChatAttachmentsBar__FormContentLabel:"aiChatAttachmentsBar__FormContentLabel",aiChatAttachmentsBar__FormContentInput:"aiChatAttachmentsBar__FormContentInput",aiChatAttachmentsBar__FormContentError:"aiChatAttachmentsBar__FormContentError",aiChatAttachmentsBar__FormSubmitButton:"aiChatAttachmentsBar__FormSubmitButton",aiChatActionBar:"aiChatActionBar",aiChat__ChatActions:"aiChat__ChatActions",aiChat__ChatAction:"aiChat__ChatAction",aiChat__ChatActionLabel:"aiChat__ChatActionLabel",aiChat__ChatActionFeeback:"aiChat__ChatActionFeeback",aiChatHelpActions:"aiChatHelpActions",aiChatHelpAction:"aiChatHelpAction",aiChatHelpActions__Trigger:"aiChatHelpActions__Trigger",aiChatHelpActions__Menu:"aiChatHelpActions__Menu",aiChatHelpActions__MenuArrow:"aiChatHelpActions__MenuArrow",aiChatHelpActions__MenuItem:"aiChatHelpActions__MenuItem",aiChatHelpActions_MenuItemIcon:"aiChatHelpActions_MenuItemIcon",aiChatTagline__Container:"aiChatTagline__Container",aiChatTagline__Text:"aiChatTagline__Text",aiChatTagline__Logo:"aiChatTagline__Logo",aiChatTagline__BrandName:"aiChatTagline__BrandName",aiChatFeedbackModal:"aiChatFeedbackModal",aiChatFeedbackModal__Overlay:"aiChatFeedbackModal__Overlay",aiChatFeedbackModal__Content:"aiChatFeedbackModal__Content",aiChatFeedbackModal__Header:"aiChatFeedbackModal__Header",aiChatFeedbackModal__Close:"aiChatFeedbackModal__Close",aiChatFeedbackModal__Body:"aiChatFeedbackModal__Body",aiChatFeedbackForm:"aiChatFeedbackForm",aiChatFeedbackItem:"aiChatFeedbackItem",aiChatFeedbackItem__Checkbox:"aiChatFeedbackItem__Checkbox",aiChatFeedbackItem__CheckboxIndicator:"aiChatFeedbackItem__CheckboxIndicator",aiChatFeedbackItem__Label:"aiChatFeedbackItem__Label",aiChatFeedbackItem__Description:"aiChatFeedbackItem__Description",aiChatFeedbackForm__SubmitButton:"aiChatFeedbackForm__SubmitButton",aiChatForm__Wrapper:"aiChatForm__Wrapper",aiChatForm:"aiChatForm",aiChatForm__Close:"aiChatForm__Close",aiChatForm__Header:"aiChatForm__Header",aiChatForm__Heading:"aiChatForm__Heading",aiChatForm__Description:"aiChatForm__Description",aiChatForm__Content:"aiChatForm__Content",aiChatForm__Field:"aiChatForm__Field",aiChatForm__FieldLabel:"aiChatForm__FieldLabel",aiChatForm__FieldText:"aiChatForm__FieldText",aiChatForm__FieldEmail:"aiChatForm__FieldEmail",aiChatForm__FieldFile:"aiChatForm__FieldFile",aiChatForm__FieldTextArea:"aiChatForm__FieldTextArea",aiChatForm__FieldCheckbox:"aiChatForm__FieldCheckbox",aiChatForm__FieldCheckboxIndicator:"aiChatForm__FieldCheckboxIndicator",aiChatForm__FieldSelect:"aiChatForm__FieldSelect",aiChatForm__FieldSelect__Trigger:"aiChatForm__FieldSelect__Trigger",aiChatForm__FieldSelect__Value:"aiChatForm__FieldSelect__Value",aiChatForm__FieldSelect__Icon:"aiChatForm__FieldSelect__Icon",aiChatForm__FieldSelect__Content:"aiChatForm__FieldSelect__Content",aiChatForm__FieldSelect__Viewport:"aiChatForm__FieldSelect__Viewport",aiChatForm__FieldSelect__Item:"aiChatForm__FieldSelect__Item",aiChatForm__FieldSelect__ItemIndicator:"aiChatForm__FieldSelect__ItemIndicator",aiChatForm__FieldSelect__ItemText:"aiChatForm__FieldSelect__ItemText",aiChatForm__FieldError:"aiChatForm__FieldError",aiChatForm__Error:"aiChatForm__Error",aiChatForm__Footer:"aiChatForm__Footer",aiChatForm__Cancel:"aiChatForm__Cancel",aiChatForm__Submit:"aiChatForm__Submit",aiChatForm__Success:"aiChatForm__Success",aiChatForm__SuccessHeading:"aiChatForm__SuccessHeading",aiChatForm__SuccessMessage:"aiChatForm__SuccessMessage",aiChatForm__SuccessButton:"aiChatForm__SuccessButton",aiChatLink:"aiChatLink"},i={aiSearchWrapper:"aiSearchWrapper",aiSearchRoot:"aiSearchRoot",aiSearchContent:"aiSearchContent",aiSearchInputGroup:"aiSearchInputGroup",aiSearchInputIcon:"aiSearchInputIcon",aiSearchInput:"aiSearchInput",aiSearchLoading:"aiSearchLoading",aiAskAITrigger:"aiAskAITrigger",aiAskAITrigger__Icon:"aiAskAITrigger__Icon",aiAskAITrigger__Label:"aiAskAITrigger__Label",aiAskAITrigger__Query:"aiAskAITrigger__Query",aiAskAITrigger__Indicator:"aiAskAITrigger__Indicator",aiAskAITrigger__IndicatorText:"aiAskAITrigger__IndicatorText",aiSearchResults:"aiSearchResults",aiSearchResults__Loading:"aiSearchResults__Loading",aiSearchResults__Empty:"aiSearchResults__Empty",aiSearchResults__TabList:"aiSearchResults__TabList",aiSearchResults__Tab:"aiSearchResults__Tab",aiSearchResults__Content:"aiSearchResults__Content",aiSearchResults__ScrollArea:"aiSearchResults__ScrollArea",aiSearchResults__ScrollAreaViewport:"aiSearchResults__ScrollAreaViewport",aiSearchResults__List:"aiSearchResults__List",aiSearchResults__Item:"aiSearchResults__Item",aiSearchResults__ItemIcon:"aiSearchResults__ItemIcon",aiSearchResults__ItemBreadcrumbs:"aiSearchResults__ItemBreadcrumbs",aiSearchResults__ItemBreadcrumbIcon:"aiSearchResults__ItemBreadcrumbIcon",aiSearchResults__ItemTitle:"aiSearchResults__ItemTitle",aiSearchResults__ItemTag:"aiSearchResults__ItemTag",aiSearchResults__ItemDescription:"aiSearchResults__ItemDescription",aiSearchResults__ItemDescriptionPart:"aiSearchResults__ItemDescriptionPart",aiSearchResults__ItemIndicator:"aiSearchResults__ItemIndicator",aiSearchResults__ItemPreview:"aiSearchResults__ItemPreview",aiSearchResults__ItemPreview__Header:"aiSearchResults__ItemPreview__Header",aiSearchResults__ItemPreview__Heading:"aiSearchResults__ItemPreview__Heading",aiSearchResults__ItemPreview__Title:"aiSearchResults__ItemPreview__Title",aiSearchResults__ItemPreview__Title__LinkIcon:"aiSearchResults__ItemPreview__Title__LinkIcon",aiSearchResults__ItemPreview__Breadcrumbs:"aiSearchResults__ItemPreview__Breadcrumbs",aiSearchResults__ItemPreview__BreadcrumbIcon:"aiSearchResults__ItemPreview__BreadcrumbIcon",aiSearchResults__ItemPreview__Body:"aiSearchResults__ItemPreview__Body",aiSearchResults__ItemPreview__Outline:"aiSearchResults__ItemPreview__Outline",aiSearchResults__ItemPreview__Outline__Title:"aiSearchResults__ItemPreview__Outline__Title",aiSearchResults__ItemPreview__Outline__List:"aiSearchResults__ItemPreview__Outline__List",aiSearchResults__ItemPreview__Outline__Item:"aiSearchResults__ItemPreview__Outline__Item",aiSearchResults__ItemPreview__Outline__ItemIcon:"aiSearchResults__ItemPreview__Outline__ItemIcon",aiSearchResults__ItemPreview__Outline__ItemText:"aiSearchResults__ItemPreview__Outline__ItemText",aiSearchResults__ItemPreview__Outline__ItemLinkIcon:"aiSearchResults__ItemPreview__Outline__ItemLinkIcon",aiSearchResults__ScrollAreaScrollbar:"aiSearchResults__ScrollAreaScrollbar",aiSearchResults__ScrollAreaThumb:"aiSearchResults__ScrollAreaThumb",aiSearchResults__ScrollAreaCorner:"aiSearchResults__ScrollAreaCorner",aiSearchFooter:"aiSearchFooter",aiSearchTagline__Container:"aiSearchTagline__Container",aiSearchTagline__Text:"aiSearchTagline__Text",aiSearchTagline__Logo:"aiSearchTagline__Logo",aiSearchTagline__BrandName:"aiSearchTagline__BrandName"},_={modal:"modal",modal__Overlay:"modal__Overlay",modal__Content:"modal__Content",modal__Close:"modal__Close"},r={chatButton__Text:"chatButton__Text",chatButton__Button:"chatButton__Button",chatButton__Container:"chatButton__Container",chatButton__AvatarImage:"chatButton__AvatarImage",chatButton__AvatarContent:"chatButton__AvatarContent"},o={intelligentForm__Root:"intelligentForm__Root",intelligentForm__Heading:"intelligentForm__Heading",intelligentForm__Content:"intelligentForm__Content",intelligentForm__Content__ScrollArea:"intelligentForm__Content__ScrollArea",intelligentForm__Content__ScrollAreaViewport:"intelligentForm__Content__ScrollAreaViewport",intelligentForm__Content__ScrollAreaScrollbar:"intelligentForm__Content__ScrollAreaScrollbar",intelligentForm__Content__ScrollAreaThumb:"intelligentForm__Content__ScrollAreaThumb",intelligentForm__Content__ScrollAreaCorner:"intelligentForm__Content__ScrollAreaCorner",intelligentForm__Success:"intelligentForm__Success",intelligentForm__SuccessIcon:"intelligentForm__SuccessIcon",intelligentForm__SuccessHeading:"intelligentForm__SuccessHeading",intelligentForm__SuccessMessage:"intelligentForm__SuccessMessage",intelligentForm__PrimaryForm:"intelligentForm__PrimaryForm",intelligentForm__PrimaryForm__Description:"intelligentForm__PrimaryForm__Description",intelligentForm__PrimaryFormFields:"intelligentForm__PrimaryFormFields",intelligentForm__PrimaryFormSubmit:"intelligentForm__PrimaryFormSubmit",intelligentForm__Field:"intelligentForm__Field",intelligentForm__FieldLabel:"intelligentForm__FieldLabel",intelligentForm__FieldText:"intelligentForm__FieldText",intelligentForm__FieldEmail:"intelligentForm__FieldEmail",intelligentForm__FieldFile:"intelligentForm__FieldFile",intelligentForm__FieldTextArea:"intelligentForm__FieldTextArea",intelligentForm__FieldCheckbox:"intelligentForm__FieldCheckbox",intelligentForm__FieldCheckboxIndicator:"intelligentForm__FieldCheckboxIndicator",intelligentForm__FieldSelect:"intelligentForm__FieldSelect",intelligentForm__FieldSelect__Trigger:"intelligentForm__FieldSelect__Trigger",intelligentForm__FieldSelect__Value:"intelligentForm__FieldSelect__Value",intelligentForm__FieldSelect__Icon:"intelligentForm__FieldSelect__Icon",intelligentForm__FieldSelect__Content:"intelligentForm__FieldSelect__Content",intelligentForm__FieldSelect__Viewport:"intelligentForm__FieldSelect__Viewport",intelligentForm__FieldSelect__Item:"intelligentForm__FieldSelect__Item",intelligentForm__FieldSelect__ItemIndicator:"intelligentForm__FieldSelect__ItemIndicator",intelligentForm__FieldSelect__ItemText:"intelligentForm__FieldSelect__ItemText",intelligentForm__FieldError:"intelligentForm__FieldError",intelligentForm__BotHeading:"intelligentForm__BotHeading",intelligentForm__BotHeading__Icon:"intelligentForm__BotHeading__Icon",intelligentForm__BotHeading__Name:"intelligentForm__BotHeading__Name",intelligentForm__Loading:"intelligentForm__Loading",intelligentForm__ConfidentResponse:"intelligentForm__ConfidentResponse",intelligentForm__ConfidentAnswer:"intelligentForm__ConfidentAnswer",intelligentForm__ConfidentResponseButton:"intelligentForm__ConfidentResponseButton",intelligentForm__ConfidentResponseButton__Icon:"intelligentForm__ConfidentResponseButton__Icon",intelligentForm__ConfidentResponseButton__Label:"intelligentForm__ConfidentResponseButton__Label",intelligentForm__SecondaryForm:"intelligentForm__SecondaryForm",intelligentForm__SecondaryForm__Description:"intelligentForm__SecondaryForm__Description",intelligentForm__SecondaryFormFields:"intelligentForm__SecondaryFormFields",intelligentForm__SecondaryFormSubmit:"intelligentForm__SecondaryFormSubmit",intelligentForm__Error:"intelligentForm__Error",intelligentForm__Sources:"intelligentForm__Sources",intelligentForm__SourcesCaption:"intelligentForm__SourcesCaption",intelligentForm__SourcesList:"intelligentForm__SourcesList",intelligentForm__Source:"intelligentForm__Source",intelligentForm__SourceIcon:"intelligentForm__SourceIcon",intelligentForm__SourceTitle:"intelligentForm__SourceTitle"},n={searchBar__Container:"searchBar__Container",searchBar__Button:"searchBar__Button",searchBar__ContentWrapper:"searchBar__ContentWrapper",searchBar__Text:"searchBar__Text",searchBar__Icon:"searchBar__Icon",searchBar__KbdWrapper:"searchBar__KbdWrapper",searchBar__CmdIcon:"searchBar__CmdIcon",searchBar__Ctrl:"searchBar__Ctrl",searchBar__KbdShortcutKey:"searchBar__KbdShortcutKey"},l={...a,...t,...i,..._,...r,...n,...o,...e};exports.SearchBarComponentIds=n;exports.aiChatComponentIds=t;exports.aiSearchComponentIds=i;exports.chatButtonComponentIds=r;exports.componentIDs=l;exports.intelligentFormComponentIds=o;exports.markDownComponentIds=a;exports.miscellanousComponentIds=e;exports.modalComponentIds=_;
|
|
@@ -213,7 +213,9 @@ const e = {
|
|
|
213
213
|
aiAskAITrigger: "aiAskAITrigger",
|
|
214
214
|
aiAskAITrigger__Icon: "aiAskAITrigger__Icon",
|
|
215
215
|
aiAskAITrigger__Label: "aiAskAITrigger__Label",
|
|
216
|
+
aiAskAITrigger__Query: "aiAskAITrigger__Query",
|
|
216
217
|
aiAskAITrigger__Indicator: "aiAskAITrigger__Indicator",
|
|
218
|
+
aiAskAITrigger__IndicatorText: "aiAskAITrigger__IndicatorText",
|
|
217
219
|
aiSearchResults: "aiSearchResults",
|
|
218
220
|
aiSearchResults__Loading: "aiSearchResults__Loading",
|
|
219
221
|
aiSearchResults__Empty: "aiSearchResults__Empty",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/cxkit-primitives",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.71",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Inkeep, Inc. Customer License (IICL) v1.1",
|
|
6
6
|
"homepage": "",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"remark-gfm": "^4.0.1",
|
|
61
61
|
"unist-util-visit": "^5.0.0",
|
|
62
62
|
"use-sync-external-store": "^1.4.0",
|
|
63
|
-
"@inkeep/cxkit-color-mode": "0.5.
|
|
64
|
-
"@inkeep/cxkit-theme": "0.5.
|
|
65
|
-
"@inkeep/cxkit-types": "0.5.
|
|
63
|
+
"@inkeep/cxkit-color-mode": "0.5.71",
|
|
64
|
+
"@inkeep/cxkit-theme": "0.5.71",
|
|
65
|
+
"@inkeep/cxkit-types": "0.5.71"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@biomejs/biome": "1.9.4",
|