@kite-copilot/chat-panel 0.2.3 → 0.2.4
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/auto.cjs +3 -18
- package/dist/auto.js +1 -1
- package/dist/{chunk-R73Y24JS.js → chunk-6BQ6C2XU.js} +4 -19
- package/dist/embed.global.js +12 -13
- package/dist/index.cjs +3 -18
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1074,19 +1074,19 @@ var defaultStartingQuestions = [
|
|
|
1074
1074
|
{
|
|
1075
1075
|
id: "changing-layouts",
|
|
1076
1076
|
label: "Changing layouts",
|
|
1077
|
-
prompt: "How
|
|
1077
|
+
prompt: "How do I change the layout of my profiles or folders?",
|
|
1078
1078
|
icon: "layout"
|
|
1079
1079
|
},
|
|
1080
1080
|
{
|
|
1081
1081
|
id: "bulk-uploads",
|
|
1082
1082
|
label: "Bulk uploads",
|
|
1083
|
-
prompt: "How do I
|
|
1083
|
+
prompt: "How do I bulk upload profiles using a CSV file?",
|
|
1084
1084
|
icon: "upload"
|
|
1085
1085
|
},
|
|
1086
1086
|
{
|
|
1087
1087
|
id: "example-setups",
|
|
1088
1088
|
label: "Example setups",
|
|
1089
|
-
prompt: "Can you show me some example
|
|
1089
|
+
prompt: "Can you show me some example folder setups?",
|
|
1090
1090
|
icon: "setup"
|
|
1091
1091
|
}
|
|
1092
1092
|
];
|
|
@@ -2430,21 +2430,6 @@ ${userText}`
|
|
|
2430
2430
|
] }),
|
|
2431
2431
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "pb-4", children: [
|
|
2432
2432
|
panelView === "landing" && /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
2433
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "mb-2 text-[10px] font-semibold uppercase tracking-wider text-gray-400", children: "Quick Start" }),
|
|
2434
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
2435
|
-
Button,
|
|
2436
|
-
{
|
|
2437
|
-
type: "button",
|
|
2438
|
-
size: "sm",
|
|
2439
|
-
variant: "secondary",
|
|
2440
|
-
className: "w-full justify-start rounded-xl border border-primary/20 bg-primary/5 px-3 py-2.5 text-xs font-medium text-primary shadow-none transition-all hover:bg-primary/10 hover:border-primary/30 h-auto mb-4",
|
|
2441
|
-
onClick: () => startGuide("getting-started"),
|
|
2442
|
-
children: [
|
|
2443
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_lucide_react4.Play, { className: "mr-2 h-3.5 w-3.5" }),
|
|
2444
|
-
"Getting started"
|
|
2445
|
-
]
|
|
2446
|
-
}
|
|
2447
|
-
),
|
|
2448
2433
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "mb-2 text-[10px] font-semibold uppercase tracking-wider text-gray-400", children: "Suggested Questions" }),
|
|
2449
2434
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "flex flex-col gap-1", children: loadingQuestions ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "flex items-center justify-center py-4", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_lucide_react4.Loader2, { className: "h-4 w-4 animate-spin text-gray-400" }) }) : startingQuestions.map((question, index) => {
|
|
2450
2435
|
const iconColors = ["bg-blue-400", "bg-green-400", "bg-purple-400", "bg-orange-400", "bg-pink-400"];
|
package/dist/index.js
CHANGED