hotsheet 0.6.1 → 0.6.3
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/cli.js +7 -1
- package/dist/client/app.global.js +50 -50
- package/dist/client/styles.css +1 -1
- package/package.json +2 -1
package/dist/cli.js
CHANGED
|
@@ -3406,7 +3406,13 @@ pageRoutes.get("/", (c) => {
|
|
|
3406
3406
|
/* @__PURE__ */ jsx("header", { className: "app-header", children: [
|
|
3407
3407
|
/* @__PURE__ */ jsx("div", { className: "app-title", children: /* @__PURE__ */ jsx("h1", { children: "Hot Sheet" }) }),
|
|
3408
3408
|
/* @__PURE__ */ jsx("div", { className: "header-controls", children: [
|
|
3409
|
-
/* @__PURE__ */ jsx("div", { className: "search-box", children:
|
|
3409
|
+
/* @__PURE__ */ jsx("div", { className: "search-box", children: [
|
|
3410
|
+
/* @__PURE__ */ jsx("svg", { className: "search-icon", xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: [
|
|
3411
|
+
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "8" }),
|
|
3412
|
+
/* @__PURE__ */ jsx("path", { d: "m21 21-4.3-4.3" })
|
|
3413
|
+
] }),
|
|
3414
|
+
/* @__PURE__ */ jsx("input", { type: "text", id: "search-input", placeholder: "Search tickets..." })
|
|
3415
|
+
] }),
|
|
3410
3416
|
/* @__PURE__ */ jsx("div", { className: "layout-toggle", id: "layout-toggle", children: [
|
|
3411
3417
|
/* @__PURE__ */ jsx("button", { className: "layout-btn active", "data-layout": "list", title: "List view", children: /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: [
|
|
3412
3418
|
/* @__PURE__ */ jsx("line", { x1: "8", y1: "6", x2: "21", y2: "6" }),
|