@copilotz/chat-ui 0.7.3 → 0.7.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/index.cjs +8 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2428,11 +2428,17 @@ var Sidebar2 = ({
|
|
|
2428
2428
|
),
|
|
2429
2429
|
/* @__PURE__ */ jsxs11("div", { className: "px-2 py-1 mt-4", children: [
|
|
2430
2430
|
/* @__PURE__ */ jsxs11("div", { className: "relative group-data-[collapsible=icon]:hidden", children: [
|
|
2431
|
-
/* @__PURE__ */ jsx18(
|
|
2431
|
+
/* @__PURE__ */ jsx18(
|
|
2432
|
+
Search,
|
|
2433
|
+
{
|
|
2434
|
+
"aria-hidden": "true",
|
|
2435
|
+
className: "pointer-events-none absolute left-3 top-1/2 size-4 -translate-y-1/2 select-none opacity-50"
|
|
2436
|
+
}
|
|
2437
|
+
),
|
|
2432
2438
|
/* @__PURE__ */ jsx18(
|
|
2433
2439
|
Input,
|
|
2434
2440
|
{
|
|
2435
|
-
className: "
|
|
2441
|
+
className: "h-8 pl-10 pr-3 bg-sidebar-accent/50 border-sidebar-border focus-visible:ring-1 focus-visible:ring-sidebar-ring",
|
|
2436
2442
|
placeholder: config.labels?.search || "Search...",
|
|
2437
2443
|
value: searchQuery,
|
|
2438
2444
|
onChange: (e) => setSearchQuery(e.target.value)
|