@inkeep/cxkit-primitives 0.5.24 → 0.5.26
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/atoms/markdown/index.cjs +1 -1
- package/dist/atoms/markdown/index.js +33 -32
- package/dist/components/embedded-chat.cjs +3 -3
- package/dist/components/embedded-chat.js +853 -854
- package/dist/components/embedded-search/transform-results.cjs +1 -1
- package/dist/components/embedded-search/transform-results.js +21 -21
- package/dist/index.d.cts +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/providers/base-events-provider.cjs +1 -1
- package/dist/providers/base-events-provider.js +1 -1
- package/dist/utils/default-settings.cjs +1 -1
- package/dist/utils/default-settings.js +2 -3
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const w=require("react"),S=require("../../providers/config-provider.cjs"),T=require("../../utils/transform-source/index.cjs"),v=(e,o)=>{const{baseSettings:{transformSource:r,organizationDisplayName:s},searchSettings:{tabs:u,searchQueryParamKey:
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const w=require("react"),S=require("../../providers/config-provider.cjs"),T=require("../../utils/transform-source/index.cjs"),v=(e,o)=>{const{baseSettings:{transformSource:r,organizationDisplayName:s},searchSettings:{tabs:u,searchQueryParamKey:i,shouldOpenLinksInNewTab:g}}=S.useInkeepConfig();return w.useMemo(()=>{const R=u.length>0?u:["All"],n={},y=new Set,d=R.map(t=>typeof t=="string"?t:t[0]);for(const t of d)n[t]=[];for(const t of e){const c=t.url||"";if(y.has(c))continue;y.add(c);const l=i?I(c,o,i):c,a=T.transformInkeepSource({title:t.title,url:l,description:k(t),type:O(t.rootRecord.__typename),tag:D(t),breadcrumbs:t.rootRecord.pathBreadcrumbs??[],contentType:t.rootRecord.contentType},"searchResultItem",{organizationDisplayName:s,tabs:u,transformSource:r}),f={...a,id:t.id,isExternal:a.shouldOpenInNewTab!==void 0?a.shouldOpenInNewTab:g},m=f.tabs||[];for(const b of m){const p=typeof b=="string"?b:b[0];if(!d.includes(p)){console.warn(`Tab "${p}" found in item but not configured in tabs`);continue}n[p].push(f)}d.includes("All")&&n.All.push(f)}for(const t of Object.keys(n)){const c=R.find(a=>typeof a=="string"?a===t:a[0]===t),l=typeof c=="object"?c[1]?.isAlwaysVisible===!0:!1;n[t].length===0&&!l&&delete n[t]}return n},[e,r,s,u,o,i,g])};function I(e,o,r){try{const s=new URL(e);return s.searchParams.set(r,o),s.toString()}catch{return e}}const k=e=>{switch(e.rootRecord.__typename){case"DocumentationRecord":{const o=h(e.pathHeadings?.at(-1)?.content||""),r=h(e.content?.content||"");return e.preview||r||o}case"GitHubIssueRecord":case"StackOverflowRecord":case"DiscourseRecord":return e.rootRecord.body;default:return e.preview}},D=e=>{switch(e.rootRecord.__typename){case"StackOverflowRecord":return e.rootRecord.markedAsCorrectAnswer?"Resolved":void 0;case"GitHubIssueRecord":return e.rootRecord.state==="CLOSED"?"Closed":void 0}},h=e=>{const o=/(https?:\/\/\S+)/g;return e.replace(o,r=>{const s=r.split("/");return s.length>3?`...${s.slice(-2).join("/")}`:r})},O=e=>{switch(e){case"DocumentationRecord":return"documentation";case"GitHubIssueRecord":return"github_issue";case"DiscourseRecord":return"discourse";case"DiscordRecord":return"discord";case"StackOverflowRecord":return"stackoverflow";case"SlackEntry":return"slack_message";default:return"site"}};exports.useTransformResults=v;
|
|
@@ -5,20 +5,20 @@ import { transformInkeepSource as I } from "../../utils/transform-source/index.j
|
|
|
5
5
|
const N = (e, r) => {
|
|
6
6
|
const {
|
|
7
7
|
baseSettings: { transformSource: o, organizationDisplayName: s },
|
|
8
|
-
searchSettings: { tabs: u, searchQueryParamKey:
|
|
8
|
+
searchSettings: { tabs: u, searchQueryParamKey: i, shouldOpenLinksInNewTab: g }
|
|
9
9
|
} = S();
|
|
10
10
|
return w(() => {
|
|
11
|
-
const m = u.length > 0 ? u : ["All"], n = {}, R = /* @__PURE__ */ new Set(),
|
|
12
|
-
for (const t of
|
|
11
|
+
const m = u.length > 0 ? u : ["All"], n = {}, R = /* @__PURE__ */ new Set(), d = m.map((t) => typeof t == "string" ? t : t[0]);
|
|
12
|
+
for (const t of d)
|
|
13
13
|
n[t] = [];
|
|
14
14
|
for (const t of e) {
|
|
15
|
-
const
|
|
16
|
-
if (R.has(
|
|
17
|
-
R.add(
|
|
18
|
-
const
|
|
15
|
+
const c = t.url || "";
|
|
16
|
+
if (R.has(c)) continue;
|
|
17
|
+
R.add(c);
|
|
18
|
+
const l = i ? T(c, r, i) : c, a = I(
|
|
19
19
|
{
|
|
20
20
|
title: t.title,
|
|
21
|
-
url:
|
|
21
|
+
url: l,
|
|
22
22
|
description: k(t),
|
|
23
23
|
type: D(t.rootRecord.__typename),
|
|
24
24
|
tag: v(t),
|
|
@@ -27,24 +27,24 @@ const N = (e, r) => {
|
|
|
27
27
|
},
|
|
28
28
|
"searchResultItem",
|
|
29
29
|
{ organizationDisplayName: s, tabs: u, transformSource: o }
|
|
30
|
-
),
|
|
31
|
-
...
|
|
30
|
+
), f = {
|
|
31
|
+
...a,
|
|
32
32
|
id: t.id,
|
|
33
|
-
isExternal:
|
|
34
|
-
}, y =
|
|
35
|
-
for (const
|
|
36
|
-
const
|
|
37
|
-
if (!
|
|
38
|
-
console.warn(`Tab "${
|
|
33
|
+
isExternal: a.shouldOpenInNewTab !== void 0 ? a.shouldOpenInNewTab : g
|
|
34
|
+
}, y = f.tabs || [];
|
|
35
|
+
for (const p of y) {
|
|
36
|
+
const b = typeof p == "string" ? p : p[0];
|
|
37
|
+
if (!d.includes(b)) {
|
|
38
|
+
console.warn(`Tab "${b}" found in item but not configured in tabs`);
|
|
39
39
|
continue;
|
|
40
40
|
}
|
|
41
|
-
n[
|
|
41
|
+
n[b].push(f);
|
|
42
42
|
}
|
|
43
|
-
|
|
43
|
+
d.includes("All") && n.All.push(f);
|
|
44
44
|
}
|
|
45
45
|
for (const t of Object.keys(n)) {
|
|
46
|
-
const
|
|
47
|
-
n[t].length === 0 && !
|
|
46
|
+
const c = m.find((a) => typeof a == "string" ? a === t : a[0] === t), l = typeof c == "object" ? c[1]?.isAlwaysVisible === !0 : !1;
|
|
47
|
+
n[t].length === 0 && !l && delete n[t];
|
|
48
48
|
}
|
|
49
49
|
return n;
|
|
50
50
|
}, [
|
|
@@ -53,7 +53,7 @@ const N = (e, r) => {
|
|
|
53
53
|
s,
|
|
54
54
|
u,
|
|
55
55
|
r,
|
|
56
|
-
|
|
56
|
+
i,
|
|
57
57
|
g
|
|
58
58
|
]);
|
|
59
59
|
};
|
package/dist/index.d.cts
CHANGED
|
@@ -737,6 +737,8 @@ export declare const componentIDs: {
|
|
|
737
737
|
markdownCode: "markdownCode";
|
|
738
738
|
};
|
|
739
739
|
|
|
740
|
+
declare type ComponentProps = Omit<ComponentPropsWithRef<typeof PrimitiveChatHelpAction>, 'action'> | ComponentPropsWithRef<typeof PrimitiveChatHelpActionLink>;
|
|
741
|
+
|
|
740
742
|
export declare function composeRefs<T>(...refs: PossibleRef<T>[]): (node: T | null) => void;
|
|
741
743
|
|
|
742
744
|
export declare interface ContainerSize {
|
|
@@ -1013,7 +1015,6 @@ declare const defaultInkeepSearchSettings: {
|
|
|
1013
1015
|
defaultQuery: string;
|
|
1014
1016
|
debounceTimeMs: number;
|
|
1015
1017
|
tabs: string[];
|
|
1016
|
-
searchQueryParamKey: string;
|
|
1017
1018
|
placeholder: string;
|
|
1018
1019
|
};
|
|
1019
1020
|
|
|
@@ -1634,9 +1635,9 @@ declare type EmbeddedChatPrimitiveChatActionType = 'help' | 'copy' | 'share' | '
|
|
|
1634
1635
|
|
|
1635
1636
|
declare const EmbeddedChatPrimitiveChatHelpAction: (props: EmbeddedChatPrimitiveChatHelpActionProps) => JSX.Element;
|
|
1636
1637
|
|
|
1637
|
-
declare
|
|
1638
|
+
declare type EmbeddedChatPrimitiveChatHelpActionProps = ComponentProps & {
|
|
1638
1639
|
action: GetHelpOption;
|
|
1639
|
-
}
|
|
1640
|
+
};
|
|
1640
1641
|
|
|
1641
1642
|
declare const EmbeddedChatPrimitiveContent: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
1642
1643
|
|
|
@@ -2893,6 +2894,8 @@ declare const PrimitiveChatButtonAvatarImage: ForwardRefExoticComponent< Polymor
|
|
|
2893
2894
|
|
|
2894
2895
|
declare const PrimitiveChatHelpAction: ForwardRefExoticComponent< PolymorphicProps & Omit<EmbeddedChatPrimitiveChatActionProps, "action" | "_id"> & Partial<Pick<EmbeddedChatPrimitiveChatActionProps, "action" | "_id">>>;
|
|
2895
2896
|
|
|
2897
|
+
declare const PrimitiveChatHelpActionLink: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "rel" | "target" | "_id"> & Partial<Pick< DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "rel" | "target" | "_id">>>;
|
|
2898
|
+
|
|
2896
2899
|
declare const PrimitiveConfidentAnswer: ForwardRefExoticComponent< PolymorphicProps & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id"> & Partial<Pick< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id">>>;
|
|
2897
2900
|
|
|
2898
2901
|
declare const PrimitiveConfidentResponseButton: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "_id"> & Partial<Pick< DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "_id">>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -737,6 +737,8 @@ export declare const componentIDs: {
|
|
|
737
737
|
markdownCode: "markdownCode";
|
|
738
738
|
};
|
|
739
739
|
|
|
740
|
+
declare type ComponentProps = Omit<ComponentPropsWithRef<typeof PrimitiveChatHelpAction>, 'action'> | ComponentPropsWithRef<typeof PrimitiveChatHelpActionLink>;
|
|
741
|
+
|
|
740
742
|
export declare function composeRefs<T>(...refs: PossibleRef<T>[]): (node: T | null) => void;
|
|
741
743
|
|
|
742
744
|
export declare interface ContainerSize {
|
|
@@ -1013,7 +1015,6 @@ declare const defaultInkeepSearchSettings: {
|
|
|
1013
1015
|
defaultQuery: string;
|
|
1014
1016
|
debounceTimeMs: number;
|
|
1015
1017
|
tabs: string[];
|
|
1016
|
-
searchQueryParamKey: string;
|
|
1017
1018
|
placeholder: string;
|
|
1018
1019
|
};
|
|
1019
1020
|
|
|
@@ -1634,9 +1635,9 @@ declare type EmbeddedChatPrimitiveChatActionType = 'help' | 'copy' | 'share' | '
|
|
|
1634
1635
|
|
|
1635
1636
|
declare const EmbeddedChatPrimitiveChatHelpAction: (props: EmbeddedChatPrimitiveChatHelpActionProps) => JSX.Element;
|
|
1636
1637
|
|
|
1637
|
-
declare
|
|
1638
|
+
declare type EmbeddedChatPrimitiveChatHelpActionProps = ComponentProps & {
|
|
1638
1639
|
action: GetHelpOption;
|
|
1639
|
-
}
|
|
1640
|
+
};
|
|
1640
1641
|
|
|
1641
1642
|
declare const EmbeddedChatPrimitiveContent: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
1642
1643
|
|
|
@@ -2893,6 +2894,8 @@ declare const PrimitiveChatButtonAvatarImage: ForwardRefExoticComponent< Polymor
|
|
|
2893
2894
|
|
|
2894
2895
|
declare const PrimitiveChatHelpAction: ForwardRefExoticComponent< PolymorphicProps & Omit<EmbeddedChatPrimitiveChatActionProps, "action" | "_id"> & Partial<Pick<EmbeddedChatPrimitiveChatActionProps, "action" | "_id">>>;
|
|
2895
2896
|
|
|
2897
|
+
declare const PrimitiveChatHelpActionLink: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "rel" | "target" | "_id"> & Partial<Pick< DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "rel" | "target" | "_id">>>;
|
|
2898
|
+
|
|
2896
2899
|
declare const PrimitiveConfidentAnswer: ForwardRefExoticComponent< PolymorphicProps & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id"> & Partial<Pick< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id">>>;
|
|
2897
2900
|
|
|
2898
2901
|
declare const PrimitiveConfidentResponseButton: ForwardRefExoticComponent< PolymorphicProps & Omit< DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "_id"> & Partial<Pick< DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "_id">>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const P=require("react/jsx-runtime"),t=require("react"),y=require("../atoms/api/analytics/events.cjs"),B=require("./config-provider.cjs"),b=require("./user-provider.cjs"),p=t.createContext(void 0),f=({children:e})=>{const{baseSettings:s,componentType:n}=B.useInkeepConfig(),{apiKey:o,analyticsApiBaseUrl:r,tags:i,privacyPreferences:d,env:E}=s,{userProperties:c}=b.useUser(),a=t.useMemo(()=>({widgetLibraryVersion:"0.5.
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const P=require("react/jsx-runtime"),t=require("react"),y=require("../atoms/api/analytics/events.cjs"),B=require("./config-provider.cjs"),b=require("./user-provider.cjs"),p=t.createContext(void 0),f=({children:e})=>{const{baseSettings:s,componentType:n}=B.useInkeepConfig(),{apiKey:o,analyticsApiBaseUrl:r,tags:i,privacyPreferences:d,env:E}=s,{userProperties:c}=b.useUser(),a=t.useMemo(()=>({widgetLibraryVersion:"0.5.26",componentType:n,tags:i}),[n,i]),u=!d.optOutAllAnalytics&&E!=="development",g={logEvent:t.useCallback(async v=>{const m={...a,...v.properties},l={eventName:v.eventName,properties:m,userProperties:c};u&&y.logEvent(l,o,r),s.onEvent?.(l)},[u,s,o,r,c,a])};return P.jsx(p.Provider,{value:g,children:e})},x=()=>{const e=t.useContext(p);if(!e)throw new Error("useBaseEvents must be used within a BaseEventsProvider");return e};exports.BaseEventsProvider=f;exports.useBaseEvents=x;
|
|
@@ -7,7 +7,7 @@ import { useUser as b } from "./user-provider.js";
|
|
|
7
7
|
const m = x(void 0), U = ({ children: e }) => {
|
|
8
8
|
const { baseSettings: t, componentType: o } = C(), { apiKey: n, analyticsApiBaseUrl: s, tags: r, privacyPreferences: u, env: l } = t, { userProperties: i } = b(), a = d(
|
|
9
9
|
() => ({
|
|
10
|
-
widgetLibraryVersion: "0.5.
|
|
10
|
+
widgetLibraryVersion: "0.5.26",
|
|
11
11
|
componentType: o,
|
|
12
12
|
tags: r
|
|
13
13
|
}),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@inkeep/cxkit-theme"),t=require("./tools/links-schema.cjs"),s={model:"inkeep-qa-expert",placeholder:"How do I get started?",aiAssistantName:void 0,shouldOpenLinksInNewTab:!0,disclaimerSettings:{isEnabled:!1,label:"Usage policy"},isShareButtonVisible:!1,isViewOnly:!1,exampleQuestionsLabel:"Example questions",exampleQuestions:[],isFirstExampleQuestionHighlighted:!0,isCopyChatButtonVisible:!1,getHelpOptions:[],workflowsHeader:"Workflows",workflows:[],toolbarButtonLabels:{clear:"Clear",share:"Share",getHelp:"Get help",stop:"Stop",copyChat:"Copy"},prompts:[],tools:[{type:"function",function:{name:"provideLinks",description:"Provides links",parameters:t.linksSchema}}],onToolCall:l=>{}},a={env:"production",apiKey:"",aiApiBaseUrl:"https://api.inkeep.com",analyticsApiBaseUrl:"https://api.io.inkeep.com",shouldBypassCaptcha:!1,privacyPreferences:{optOutAnalyticalCookies:!1,optOutAllAnalytics:!1,optOutFunctionalCookies:!1},tags:[],userProperties:{},primaryBrandColor:e.DEFAULT_PRIMARY_BRAND_COLOR,theme:{varsClassName:"inkeep-widget-vars",...e.theme}},i={shouldOpenLinksInNewTab:!1,maxResults:40,defaultQuery:"",debounceTimeMs:0,tabs:["All","Publications","PDFs","GitHub","Forums","Discord","Slack","StackOverflow"],
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@inkeep/cxkit-theme"),t=require("./tools/links-schema.cjs"),s={model:"inkeep-qa-expert",placeholder:"How do I get started?",aiAssistantName:void 0,shouldOpenLinksInNewTab:!0,disclaimerSettings:{isEnabled:!1,label:"Usage policy"},isShareButtonVisible:!1,isViewOnly:!1,exampleQuestionsLabel:"Example questions",exampleQuestions:[],isFirstExampleQuestionHighlighted:!0,isCopyChatButtonVisible:!1,getHelpOptions:[],workflowsHeader:"Workflows",workflows:[],toolbarButtonLabels:{clear:"Clear",share:"Share",getHelp:"Get help",stop:"Stop",copyChat:"Copy"},prompts:[],tools:[{type:"function",function:{name:"provideLinks",description:"Provides links",parameters:t.linksSchema}}],onToolCall:l=>{}},a={env:"production",apiKey:"",aiApiBaseUrl:"https://api.inkeep.com",analyticsApiBaseUrl:"https://api.io.inkeep.com",shouldBypassCaptcha:!1,privacyPreferences:{optOutAnalyticalCookies:!1,optOutAllAnalytics:!1,optOutFunctionalCookies:!1},tags:[],userProperties:{},primaryBrandColor:e.DEFAULT_PRIMARY_BRAND_COLOR,theme:{varsClassName:"inkeep-widget-vars",...e.theme}},i={shouldOpenLinksInNewTab:!1,maxResults:40,defaultQuery:"",debounceTimeMs:0,tabs:["All","Publications","PDFs","GitHub","Forums","Discord","Slack","StackOverflow"],placeholder:"Search for anything..."};exports.defaultInkeepAIChatSettings=s;exports.defaultInkeepBaseSettings=a;exports.defaultInkeepSearchSettings=i;
|
|
@@ -61,17 +61,16 @@ const i = {
|
|
|
61
61
|
varsClassName: "inkeep-widget-vars",
|
|
62
62
|
...e
|
|
63
63
|
}
|
|
64
|
-
},
|
|
64
|
+
}, p = {
|
|
65
65
|
shouldOpenLinksInNewTab: !1,
|
|
66
66
|
maxResults: 40,
|
|
67
67
|
defaultQuery: "",
|
|
68
68
|
debounceTimeMs: 0,
|
|
69
69
|
tabs: ["All", "Publications", "PDFs", "GitHub", "Forums", "Discord", "Slack", "StackOverflow"],
|
|
70
|
-
searchQueryParamKey: "q",
|
|
71
70
|
placeholder: "Search for anything..."
|
|
72
71
|
};
|
|
73
72
|
export {
|
|
74
73
|
i as defaultInkeepAIChatSettings,
|
|
75
74
|
n as defaultInkeepBaseSettings,
|
|
76
|
-
|
|
75
|
+
p as defaultInkeepSearchSettings
|
|
77
76
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/cxkit-primitives",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.26",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Inkeep, Inc. Customer License (IICL) v1.1",
|
|
6
6
|
"homepage": "",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"rehype-raw": "7.0.0",
|
|
59
59
|
"unist-util-visit": "^5.0.0",
|
|
60
60
|
"use-sync-external-store": "^1.4.0",
|
|
61
|
-
"@inkeep/cxkit-color-mode": "0.5.
|
|
62
|
-
"@inkeep/cxkit-theme": "0.5.
|
|
63
|
-
"@inkeep/cxkit-types": "0.5.
|
|
61
|
+
"@inkeep/cxkit-color-mode": "0.5.26",
|
|
62
|
+
"@inkeep/cxkit-theme": "0.5.26",
|
|
63
|
+
"@inkeep/cxkit-types": "0.5.26"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@biomejs/biome": "1.9.4",
|