@inkeep/cxkit-primitives 0.5.75 → 0.5.76
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/api/analytics/feedback.cjs +1 -1
- package/dist/atoms/api/analytics/feedback.js +9 -8
- package/dist/providers/base-events-provider.cjs +1 -1
- package/dist/providers/base-events-provider.js +32 -23
- package/dist/providers/chat-events-provider.cjs +1 -1
- package/dist/providers/chat-events-provider.js +47 -37
- package/dist/providers/feedback-provider.cjs +1 -1
- package/dist/providers/feedback-provider.js +35 -34
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});async function b(r){const{type:t,messageId:n,reasons:s=[],apiKey:a,apiUrl:i,userProperties:c}=r,
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});async function b(r){const{type:t,messageId:n,reasons:s=[],apiKey:a,apiUrl:i,userProperties:c,properties:d}=r,p=`${i}/feedback`,o={type:t,messageId:n,createdAt:new Date().toISOString(),userProperties:c,properties:d};t==="negative"&&(o.reasons=s);const e=await fetch(p,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${a}`},body:JSON.stringify(o)});if(!e.ok){const u=await e.text();throw new Error(`Failed to send feedback: ${u}`)}return e.json()}exports.submitFeedback=b;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
async function
|
|
3
|
-
const { type: t, messageId:
|
|
2
|
+
async function u(r) {
|
|
3
|
+
const { type: t, messageId: n, reasons: s = [], apiKey: a, apiUrl: i, userProperties: c, properties: d } = r, p = `${i}/feedback`, o = {
|
|
4
4
|
type: t,
|
|
5
|
-
messageId:
|
|
5
|
+
messageId: n,
|
|
6
6
|
createdAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
7
|
-
userProperties: c
|
|
7
|
+
userProperties: c,
|
|
8
|
+
properties: d
|
|
8
9
|
};
|
|
9
10
|
t === "negative" && (o.reasons = s);
|
|
10
|
-
const e = await fetch(
|
|
11
|
+
const e = await fetch(p, {
|
|
11
12
|
method: "POST",
|
|
12
13
|
headers: {
|
|
13
14
|
"Content-Type": "application/json",
|
|
@@ -16,11 +17,11 @@ async function f(n) {
|
|
|
16
17
|
body: JSON.stringify(o)
|
|
17
18
|
});
|
|
18
19
|
if (!e.ok) {
|
|
19
|
-
const
|
|
20
|
-
throw new Error(`Failed to send feedback: ${
|
|
20
|
+
const f = await e.text();
|
|
21
|
+
throw new Error(`Failed to send feedback: ${f}`);
|
|
21
22
|
}
|
|
22
23
|
return e.json();
|
|
23
24
|
}
|
|
24
25
|
export {
|
|
25
|
-
|
|
26
|
+
u as submitFeedback
|
|
26
27
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const B=require("react/jsx-runtime"),t=require("react"),f=require("../atoms/api/analytics/events.cjs"),b=require("./config-provider.cjs"),x=require("./user-provider.cjs"),E=t.createContext(void 0),q=({children:e})=>{const{baseSettings:s,componentType:r}=b.useInkeepConfig(),{apiKey:i,analyticsApiBaseUrl:c,tags:a,privacyPreferences:m,env:g,analyticsProperties:v}=s,{userProperties:u}=x.useUser(),l=t.useMemo(()=>({widgetLibraryVersion:"0.5.76",componentType:r,tags:a}),[r,a]),d=!m.optOutAllAnalytics&&g!=="development",P={logEvent:t.useCallback(async n=>{const o={...l,...n.properties,...v},p={eventName:n.eventName,properties:o,userProperties:u},y=["modal_opened","modal_closed"].includes(n.eventName);if(d&&!y){if("conversation"in o&&!o.conversation?.id)return;f.logEvent(p,i,c)}s.onEvent?.(p)},[d,s,i,c,u,l,v])};return B.jsx(E.Provider,{value:P,children:e})},C=()=>{const e=t.useContext(E);if(!e)throw new Error("useBaseEvents must be used within a BaseEventsProvider");return e};exports.BaseEventsProvider=q;exports.useBaseEvents=C;
|
|
@@ -1,43 +1,52 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as
|
|
3
|
-
import { useMemo as
|
|
4
|
-
import { logEvent as
|
|
5
|
-
import { useInkeepConfig as
|
|
6
|
-
import { useUser as
|
|
7
|
-
const
|
|
8
|
-
const { baseSettings: t, componentType: s } =
|
|
2
|
+
import { jsx as y } from "react/jsx-runtime";
|
|
3
|
+
import { useMemo as P, useCallback as x, createContext as B, useContext as C } from "react";
|
|
4
|
+
import { logEvent as b } from "../atoms/api/analytics/events.js";
|
|
5
|
+
import { useInkeepConfig as w } from "./config-provider.js";
|
|
6
|
+
import { useUser as A } from "./user-provider.js";
|
|
7
|
+
const u = B(void 0), $ = ({ children: e }) => {
|
|
8
|
+
const { baseSettings: t, componentType: s } = w(), { apiKey: r, analyticsApiBaseUrl: i, tags: a, privacyPreferences: d, env: E, analyticsProperties: c } = t, { userProperties: v } = A(), p = P(
|
|
9
9
|
() => ({
|
|
10
|
-
widgetLibraryVersion: "0.5.
|
|
10
|
+
widgetLibraryVersion: "0.5.76",
|
|
11
11
|
componentType: s,
|
|
12
12
|
tags: a
|
|
13
13
|
}),
|
|
14
14
|
[s, a]
|
|
15
|
-
), m = !
|
|
15
|
+
), m = !d.optOutAllAnalytics && E !== "development", f = { logEvent: x(
|
|
16
16
|
async (o) => {
|
|
17
17
|
const n = {
|
|
18
|
-
...
|
|
19
|
-
...o.properties
|
|
20
|
-
|
|
18
|
+
...p,
|
|
19
|
+
...o.properties,
|
|
20
|
+
...c
|
|
21
|
+
}, l = {
|
|
21
22
|
eventName: o.eventName,
|
|
22
23
|
properties: n,
|
|
23
|
-
userProperties:
|
|
24
|
-
},
|
|
25
|
-
if (m && !
|
|
24
|
+
userProperties: v
|
|
25
|
+
}, g = ["modal_opened", "modal_closed"].includes(o.eventName);
|
|
26
|
+
if (m && !g) {
|
|
26
27
|
if ("conversation" in n && !n.conversation?.id) return;
|
|
27
|
-
|
|
28
|
+
b(l, r, i);
|
|
28
29
|
}
|
|
29
|
-
t.onEvent?.(
|
|
30
|
+
t.onEvent?.(l);
|
|
30
31
|
},
|
|
31
|
-
[
|
|
32
|
+
[
|
|
33
|
+
m,
|
|
34
|
+
t,
|
|
35
|
+
r,
|
|
36
|
+
i,
|
|
37
|
+
v,
|
|
38
|
+
p,
|
|
39
|
+
c
|
|
40
|
+
]
|
|
32
41
|
) };
|
|
33
|
-
return /* @__PURE__ */
|
|
34
|
-
},
|
|
35
|
-
const e =
|
|
42
|
+
return /* @__PURE__ */ y(u.Provider, { value: f, children: e });
|
|
43
|
+
}, j = () => {
|
|
44
|
+
const e = C(u);
|
|
36
45
|
if (!e)
|
|
37
46
|
throw new Error("useBaseEvents must be used within a BaseEventsProvider");
|
|
38
47
|
return e;
|
|
39
48
|
};
|
|
40
49
|
export {
|
|
41
|
-
|
|
42
|
-
|
|
50
|
+
$ as BaseEventsProvider,
|
|
51
|
+
j as useBaseEvents
|
|
43
52
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const q=require("react/jsx-runtime"),e=require("react"),
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const q=require("react/jsx-runtime"),e=require("react"),x=require("../atoms/api/analytics/conversation.cjs"),w=require("./config-provider.cjs"),j=require("./conversation-provider.cjs"),k=require("./user-provider.cjs"),U=require("./base-events-provider.cjs"),A=require("../utils/generate-uid.cjs"),P=e.createContext(void 0),O=({children:o})=>{const{baseSettings:f}=w.useInkeepConfig(),{apiKey:C,analyticsApiBaseUrl:d,tags:p,privacyPreferences:{optOutAllAnalytics:i},env:a,analyticsProperties:c}=f,{userProperties:E}=k.useUser(),{logEvent:h}=U.useBaseEvents(),{conversation:v,setConversation:y}=j.useInkeepConversation(),u=e.useRef(v);e.useEffect(()=>{u.current=v},[v]);const l=e.useCallback(async t=>{const n=u.current,r=!i&&a!=="development";let s=Object.assign({},n,{messages:t});if(r){const g=await x.logConversation(n.id,{messages:t,tags:p,userProperties:E,properties:c},C,d);g&&(s=g)}else s.id="conv_"+A.generateUid(16);return s},[d,C,p,E,i,a,c]),b={logEvent:e.useCallback(async(t,n)=>{let r=u.current;n&&(r=await l(n),y(r));const s={...t,properties:{conversation:r,...t.properties}};h(s)},[h,l,i,a,c]),logConversation:l};return q.jsx(P.Provider,{value:b,children:o})},R=()=>{const o=e.useContext(P);if(!o)throw new Error("useChatEvents must be used within a ChatEventsProvider");return o};exports.ChatEventsProvider=O;exports.useChatEvents=R;
|
|
@@ -1,49 +1,59 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as
|
|
3
|
-
import { useRef as w, useEffect as
|
|
4
|
-
import { logConversation as
|
|
5
|
-
import { useInkeepConfig as
|
|
6
|
-
import { useInkeepConversation as
|
|
7
|
-
import { useUser as
|
|
8
|
-
import { useBaseEvents as
|
|
9
|
-
import { generateUid as
|
|
10
|
-
const
|
|
11
|
-
const { baseSettings:
|
|
2
|
+
import { jsx as P } from "react/jsx-runtime";
|
|
3
|
+
import { useRef as w, useEffect as b, useCallback as E, createContext as k, useContext as A } from "react";
|
|
4
|
+
import { logConversation as U } from "../atoms/api/analytics/conversation.js";
|
|
5
|
+
import { useInkeepConfig as j } from "./config-provider.js";
|
|
6
|
+
import { useInkeepConversation as B } from "./conversation-provider.js";
|
|
7
|
+
import { useUser as I } from "./user-provider.js";
|
|
8
|
+
import { useBaseEvents as O } from "./base-events-provider.js";
|
|
9
|
+
import { generateUid as K } from "../utils/generate-uid.js";
|
|
10
|
+
const h = k(void 0), G = ({ children: r }) => {
|
|
11
|
+
const { baseSettings: g } = j(), {
|
|
12
12
|
apiKey: u,
|
|
13
|
-
analyticsApiBaseUrl:
|
|
14
|
-
tags:
|
|
13
|
+
analyticsApiBaseUrl: l,
|
|
14
|
+
tags: C,
|
|
15
15
|
privacyPreferences: { optOutAllAnalytics: s },
|
|
16
|
-
env: i
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
16
|
+
env: i,
|
|
17
|
+
analyticsProperties: a
|
|
18
|
+
} = g, { userProperties: f } = I(), { logEvent: m } = O(), { conversation: c, setConversation: y } = B(), v = w(c);
|
|
19
|
+
b(() => {
|
|
20
|
+
v.current = c;
|
|
21
|
+
}, [c]);
|
|
22
|
+
const p = E(
|
|
22
23
|
async (t) => {
|
|
23
|
-
const e =
|
|
24
|
+
const e = v.current, n = !s && i !== "development";
|
|
24
25
|
let o = Object.assign({}, e, { messages: t });
|
|
25
26
|
if (n) {
|
|
26
|
-
const
|
|
27
|
+
const d = await U(
|
|
27
28
|
e.id,
|
|
28
29
|
{
|
|
29
30
|
messages: t,
|
|
30
|
-
tags:
|
|
31
|
-
userProperties:
|
|
31
|
+
tags: C,
|
|
32
|
+
userProperties: f,
|
|
33
|
+
properties: a
|
|
32
34
|
},
|
|
33
35
|
u,
|
|
34
|
-
|
|
36
|
+
l
|
|
35
37
|
);
|
|
36
|
-
|
|
38
|
+
d && (o = d);
|
|
37
39
|
} else
|
|
38
|
-
o.id = "conv_" +
|
|
40
|
+
o.id = "conv_" + K(16);
|
|
39
41
|
return o;
|
|
40
42
|
},
|
|
41
|
-
[
|
|
43
|
+
[
|
|
44
|
+
l,
|
|
45
|
+
u,
|
|
46
|
+
C,
|
|
47
|
+
f,
|
|
48
|
+
s,
|
|
49
|
+
i,
|
|
50
|
+
a
|
|
51
|
+
]
|
|
42
52
|
), x = {
|
|
43
|
-
logEvent:
|
|
53
|
+
logEvent: E(
|
|
44
54
|
async (t, e) => {
|
|
45
|
-
let n =
|
|
46
|
-
e && (n = await
|
|
55
|
+
let n = v.current;
|
|
56
|
+
e && (n = await p(e), y(n));
|
|
47
57
|
const o = {
|
|
48
58
|
...t,
|
|
49
59
|
properties: {
|
|
@@ -51,20 +61,20 @@ const E = b(void 0), F = ({ children: r }) => {
|
|
|
51
61
|
...t.properties
|
|
52
62
|
}
|
|
53
63
|
};
|
|
54
|
-
|
|
64
|
+
m(o);
|
|
55
65
|
},
|
|
56
|
-
[
|
|
66
|
+
[m, p, s, i, a]
|
|
57
67
|
),
|
|
58
|
-
logConversation:
|
|
68
|
+
logConversation: p
|
|
59
69
|
};
|
|
60
|
-
return /* @__PURE__ */
|
|
61
|
-
},
|
|
62
|
-
const r =
|
|
70
|
+
return /* @__PURE__ */ P(h.Provider, { value: x, children: r });
|
|
71
|
+
}, H = () => {
|
|
72
|
+
const r = A(h);
|
|
63
73
|
if (!r)
|
|
64
74
|
throw new Error("useChatEvents must be used within a ChatEventsProvider");
|
|
65
75
|
return r;
|
|
66
76
|
};
|
|
67
77
|
export {
|
|
68
|
-
|
|
69
|
-
|
|
78
|
+
G as ChatEventsProvider,
|
|
79
|
+
H as useChatEvents
|
|
70
80
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const _=require("react/jsx-runtime"),n=require("react"),M=require("../atoms/api/analytics/feedback.cjs"),S=require("../components/embedded-chat/chat-provider.cjs"),l=require("../utils/misc.cjs"),E=require("./config-provider.cjs"),j=require("./conversation-provider.cjs"),I=require("./chat-events-provider.cjs"),R=require("./user-provider.cjs"),f=n.createContext(void 0);function U(){const{baseSettings:e}=E.useInkeepConfig(),{apiKey:s,analyticsApiBaseUrl:o,analyticsProperties:b}=e,[g,p]=n.useState(null),[F,P]=n.useState({}),{conversation:k}=j.useInkeepConversation(),{messages:r,selectedWorkflow:C}=S.useChat(),{userProperties:m}=R.useUser(),{logEvent:h}=I.useChatEvents(),c=n.useCallback(async(t,i,a=[])=>{const u=await M.submitFeedback({type:i,messageId:t,reasons:a,apiKey:s,apiUrl:o,userProperties:m,properties:b});u&&P(d=>({...d,[t]:{type:u.type,reasons:u.reasons}}));const v=r.findIndex(d=>d.id===t),w=r[v],x={conversationId:k.id,question:l.getMessageContent(r[v-1]),answer:l.getMessageContent(w),messageId:t,reasons:a,workflowId:C?.id};h({eventName:i==="positive"?"assistant_positive_feedback_submitted":"assistant_negative_feedback_submitted",properties:x})},[r,k]),q=n.useCallback(async t=>{c(t,"positive")},[c]),y=n.useCallback(async(t,i)=>{const a=A(i);c(t,"negative",a)},[c]);return{feedback:F,currentFeedback:g,setCurrentFeedback:p,submitPositiveFeedback:q,submitNegativeFeedback:y}}const N=({children:e})=>{const s=U();return _.jsx(f.Provider,{value:s,children:e})},$=()=>{const e=n.useContext(f);if(!e)throw new Error("useFeedback must be used within a FeedbackProvider");return e};function A(e){const s=[];for(const o in e)e[o]==="on"&&s.push({label:o,details:e[`${o}:description`]||""});return s.length>0?s:[]}exports.FeedbackProvider=N;exports.useMessageFeedback=$;
|
|
@@ -1,40 +1,41 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as
|
|
3
|
-
import { createContext as
|
|
4
|
-
import { submitFeedback as
|
|
5
|
-
import { useChat as
|
|
2
|
+
import { jsx as I } from "react/jsx-runtime";
|
|
3
|
+
import { createContext as U, useContext as M, useState as k, useCallback as u } from "react";
|
|
4
|
+
import { submitFeedback as N } from "../atoms/api/analytics/feedback.js";
|
|
5
|
+
import { useChat as S } from "../components/embedded-chat/chat-provider.js";
|
|
6
6
|
import { getMessageContent as f } from "../utils/misc.js";
|
|
7
|
-
import { useInkeepConfig as
|
|
8
|
-
import { useInkeepConversation as
|
|
9
|
-
import { useChatEvents as
|
|
10
|
-
import { useUser as
|
|
11
|
-
const v =
|
|
12
|
-
function
|
|
13
|
-
const { baseSettings: e } =
|
|
7
|
+
import { useInkeepConfig as j } from "./config-provider.js";
|
|
8
|
+
import { useInkeepConversation as q } from "./conversation-provider.js";
|
|
9
|
+
import { useChatEvents as A } from "./chat-events-provider.js";
|
|
10
|
+
import { useUser as B } from "./user-provider.js";
|
|
11
|
+
const v = U(void 0);
|
|
12
|
+
function K() {
|
|
13
|
+
const { baseSettings: e } = j(), { apiKey: s, analyticsApiBaseUrl: o, analyticsProperties: b } = e, [l, F] = k(null), [g, C] = k({}), { conversation: m } = q(), { messages: n, selectedWorkflow: h } = S(), { userProperties: w } = B(), { logEvent: y } = A(), r = u(
|
|
14
14
|
async (t, i, c = []) => {
|
|
15
|
-
const a = await
|
|
15
|
+
const a = await N({
|
|
16
16
|
type: i,
|
|
17
17
|
messageId: t,
|
|
18
18
|
reasons: c,
|
|
19
19
|
apiKey: s,
|
|
20
20
|
apiUrl: o,
|
|
21
|
-
userProperties:
|
|
21
|
+
userProperties: w,
|
|
22
|
+
properties: b
|
|
22
23
|
});
|
|
23
|
-
a &&
|
|
24
|
+
a && C((d) => ({
|
|
24
25
|
...d,
|
|
25
26
|
[t]: { type: a.type, reasons: a.reasons }
|
|
26
27
|
}));
|
|
27
|
-
const
|
|
28
|
+
const p = n.findIndex((d) => d.id === t), _ = n[p], E = {
|
|
28
29
|
conversationId: m.id,
|
|
29
|
-
question: f(n[
|
|
30
|
-
answer: f(
|
|
30
|
+
question: f(n[p - 1]),
|
|
31
|
+
answer: f(_),
|
|
31
32
|
messageId: t,
|
|
32
33
|
reasons: c,
|
|
33
|
-
workflowId:
|
|
34
|
+
workflowId: h?.id
|
|
34
35
|
};
|
|
35
|
-
|
|
36
|
+
y({
|
|
36
37
|
eventName: i === "positive" ? "assistant_positive_feedback_submitted" : "assistant_negative_feedback_submitted",
|
|
37
|
-
properties:
|
|
38
|
+
properties: E
|
|
38
39
|
});
|
|
39
40
|
},
|
|
40
41
|
[n, m]
|
|
@@ -43,31 +44,31 @@ function B() {
|
|
|
43
44
|
r(t, "positive");
|
|
44
45
|
},
|
|
45
46
|
[r]
|
|
46
|
-
),
|
|
47
|
+
), P = u(
|
|
47
48
|
async (t, i) => {
|
|
48
|
-
const c =
|
|
49
|
+
const c = R(i);
|
|
49
50
|
r(t, "negative", c);
|
|
50
51
|
},
|
|
51
52
|
[r]
|
|
52
53
|
);
|
|
53
54
|
return {
|
|
54
|
-
feedback:
|
|
55
|
-
currentFeedback:
|
|
56
|
-
setCurrentFeedback:
|
|
55
|
+
feedback: g,
|
|
56
|
+
currentFeedback: l,
|
|
57
|
+
setCurrentFeedback: F,
|
|
57
58
|
submitPositiveFeedback: x,
|
|
58
|
-
submitNegativeFeedback:
|
|
59
|
+
submitNegativeFeedback: P
|
|
59
60
|
};
|
|
60
61
|
}
|
|
61
|
-
const
|
|
62
|
-
const s =
|
|
63
|
-
return /* @__PURE__ */
|
|
64
|
-
},
|
|
65
|
-
const e =
|
|
62
|
+
const Q = ({ children: e }) => {
|
|
63
|
+
const s = K();
|
|
64
|
+
return /* @__PURE__ */ I(v.Provider, { value: s, children: e });
|
|
65
|
+
}, T = () => {
|
|
66
|
+
const e = M(v);
|
|
66
67
|
if (!e)
|
|
67
68
|
throw new Error("useFeedback must be used within a FeedbackProvider");
|
|
68
69
|
return e;
|
|
69
70
|
};
|
|
70
|
-
function
|
|
71
|
+
function R(e) {
|
|
71
72
|
const s = [];
|
|
72
73
|
for (const o in e)
|
|
73
74
|
e[o] === "on" && s.push({
|
|
@@ -77,6 +78,6 @@ function K(e) {
|
|
|
77
78
|
return s.length > 0 ? s : [];
|
|
78
79
|
}
|
|
79
80
|
export {
|
|
80
|
-
|
|
81
|
-
|
|
81
|
+
Q as FeedbackProvider,
|
|
82
|
+
T as useMessageFeedback
|
|
82
83
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/cxkit-primitives",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.76",
|
|
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.76",
|
|
64
|
+
"@inkeep/cxkit-theme": "0.5.76",
|
|
65
|
+
"@inkeep/cxkit-types": "0.5.76"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@biomejs/biome": "1.9.4",
|