@devalok/shilp-sutra-karm 0.20.1 → 0.20.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/_chunks/chat-panel.js +4 -4
- package/dist/_chunks/kanban-board.js +8 -8
- package/dist/_chunks/project-card.js +21 -21
- package/dist/_chunks/render-adjustment-type.js +6 -6
- package/dist/_chunks/task-detail-panel.js +163 -151
- package/dist/dashboard/index.js +38 -38
- package/dist/tasks/index.js +3 -3
- package/dist/tasks/task-detail-panel.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/dashboard/index.js
CHANGED
|
@@ -13,24 +13,24 @@ import { Tooltip as ae, TooltipTrigger as se, TooltipContent as ne, TooltipProvi
|
|
|
13
13
|
function ce(t, e, s, o) {
|
|
14
14
|
if (t.length < 2) return { path: "", endX: 0, endY: 0, startX: 0 };
|
|
15
15
|
const a = t.length, i = e - o * 2, c = s - o * 2;
|
|
16
|
-
let m = Math.min(...t),
|
|
17
|
-
if (
|
|
18
|
-
const d = (
|
|
19
|
-
m = d - 0.05,
|
|
16
|
+
let m = Math.min(...t), f = Math.max(...t);
|
|
17
|
+
if (f - m < 0.1) {
|
|
18
|
+
const d = (f + m) / 2;
|
|
19
|
+
m = d - 0.05, f = d + 0.05;
|
|
20
20
|
}
|
|
21
|
-
const
|
|
22
|
-
(d) => o + (1 - (d - m) / (
|
|
21
|
+
const p = t.map((d, h) => o + h / (a - 1) * i), n = t.map(
|
|
22
|
+
(d) => o + (1 - (d - m) / (f - m)) * c
|
|
23
23
|
), l = [];
|
|
24
|
-
l.push(`M ${
|
|
24
|
+
l.push(`M ${p[0]} ${n[0]}`);
|
|
25
25
|
for (let d = 0; d < a - 1; d++) {
|
|
26
|
-
const h =
|
|
26
|
+
const h = p[Math.max(0, d - 1)], g = n[Math.max(0, d - 1)], w = p[d], x = n[d], N = p[d + 1], v = n[d + 1], B = p[Math.min(a - 1, d + 2)], I = n[Math.min(a - 1, d + 2)], E = (N - h) / 6, X = (v - g) / 6, z = (B - w) / 6, F = (I - x) / 6, K = w + E, O = x + X, Y = N - z, _ = v - F;
|
|
27
27
|
l.push(`C ${K} ${O}, ${Y} ${_}, ${N} ${v}`);
|
|
28
28
|
}
|
|
29
29
|
return {
|
|
30
30
|
path: l.join(" "),
|
|
31
|
-
endX:
|
|
31
|
+
endX: p[a - 1],
|
|
32
32
|
endY: n[a - 1],
|
|
33
|
-
startX:
|
|
33
|
+
startX: p[0]
|
|
34
34
|
};
|
|
35
35
|
}
|
|
36
36
|
function le(t) {
|
|
@@ -41,12 +41,12 @@ function le(t) {
|
|
|
41
41
|
return a > 0.05 ? { stroke: "var(--success-9)", fill: "var(--success-4)" } : a < -0.05 ? { stroke: "var(--error-9)", fill: "var(--error-4)" } : { stroke: "var(--warning-9)", fill: "var(--warning-4)" };
|
|
42
42
|
}
|
|
43
43
|
function ie({ trend: t, id: e }) {
|
|
44
|
-
const { path: i, endX: c, endY: m, startX:
|
|
44
|
+
const { path: i, endX: c, endY: m, startX: f } = ce(
|
|
45
45
|
t,
|
|
46
46
|
48,
|
|
47
47
|
20,
|
|
48
48
|
2
|
|
49
|
-
), { stroke:
|
|
49
|
+
), { stroke: p, fill: n } = le(t);
|
|
50
50
|
if (!i) return null;
|
|
51
51
|
const l = `sparkline-fill-${e}`;
|
|
52
52
|
return /* @__PURE__ */ u(
|
|
@@ -65,7 +65,7 @@ function ie({ trend: t, id: e }) {
|
|
|
65
65
|
/* @__PURE__ */ r(
|
|
66
66
|
"path",
|
|
67
67
|
{
|
|
68
|
-
d: `${i} L ${c} 18 L ${
|
|
68
|
+
d: `${i} L ${c} 18 L ${f} 18 Z`,
|
|
69
69
|
fill: `url(#${l})`
|
|
70
70
|
}
|
|
71
71
|
),
|
|
@@ -74,13 +74,13 @@ function ie({ trend: t, id: e }) {
|
|
|
74
74
|
{
|
|
75
75
|
d: i,
|
|
76
76
|
fill: "none",
|
|
77
|
-
stroke:
|
|
77
|
+
stroke: p,
|
|
78
78
|
strokeWidth: 1.5,
|
|
79
79
|
strokeLinecap: "round",
|
|
80
80
|
strokeLinejoin: "round"
|
|
81
81
|
}
|
|
82
82
|
),
|
|
83
|
-
/* @__PURE__ */ r("circle", { cx: c, cy: m, r: 2, fill:
|
|
83
|
+
/* @__PURE__ */ r("circle", { cx: c, cy: m, r: 2, fill: p })
|
|
84
84
|
]
|
|
85
85
|
}
|
|
86
86
|
);
|
|
@@ -123,10 +123,10 @@ function ue({
|
|
|
123
123
|
function me(t) {
|
|
124
124
|
return t > 75 ? "success" : t >= 25 ? "warning" : "error";
|
|
125
125
|
}
|
|
126
|
-
const
|
|
126
|
+
const fe = k.forwardRef(function({ project: e, onClick: s, loading: o, className: a, ...i }, c) {
|
|
127
127
|
if (o)
|
|
128
128
|
return /* @__PURE__ */ r(de, { className: a, ...i });
|
|
129
|
-
const { id: m, name:
|
|
129
|
+
const { id: m, name: f, completed: p, total: n, overdue: l, urgent: d, contextLine: h, trend: g } = e, w = n > 0 ? Math.round(p / n * 100) : 0, x = [];
|
|
130
130
|
h && x.push(
|
|
131
131
|
/* @__PURE__ */ r("span", { children: h }, "ctx")
|
|
132
132
|
), l && l > 0 && (x.length > 0 && x.push(
|
|
@@ -160,14 +160,14 @@ const pe = k.forwardRef(function({ project: e, onClick: s, loading: o, className
|
|
|
160
160
|
...M(i),
|
|
161
161
|
children: /* @__PURE__ */ u("div", { className: "flex flex-col gap-ds-03", children: [
|
|
162
162
|
/* @__PURE__ */ u("div", { className: "flex items-center justify-between gap-ds-02", children: [
|
|
163
|
-
/* @__PURE__ */ r("span", { className: "min-w-0 truncate text-ds-md font-semibold text-surface-fg", children:
|
|
163
|
+
/* @__PURE__ */ r("span", { className: "min-w-0 truncate text-ds-md font-semibold text-surface-fg", children: f }),
|
|
164
164
|
/* @__PURE__ */ r(ue, { urgent: d, overdue: l })
|
|
165
165
|
] }),
|
|
166
166
|
/* @__PURE__ */ u("div", { className: "flex items-center gap-ds-03", children: [
|
|
167
167
|
/* @__PURE__ */ u("div", { className: "flex-1 flex items-center gap-ds-03", children: [
|
|
168
|
-
/* @__PURE__ */ r("div", { className: "flex-1", children: /* @__PURE__ */ r(R, { size: "sm", color: me(w), value: w, "aria-label": `${
|
|
168
|
+
/* @__PURE__ */ r("div", { className: "flex-1", children: /* @__PURE__ */ r(R, { size: "sm", color: me(w), value: w, "aria-label": `${f} progress` }) }),
|
|
169
169
|
/* @__PURE__ */ u("span", { className: "shrink-0 text-ds-sm text-surface-fg-muted", children: [
|
|
170
|
-
|
|
170
|
+
p,
|
|
171
171
|
"/",
|
|
172
172
|
n,
|
|
173
173
|
" tasks"
|
|
@@ -180,7 +180,7 @@ const pe = k.forwardRef(function({ project: e, onClick: s, loading: o, className
|
|
|
180
180
|
}
|
|
181
181
|
);
|
|
182
182
|
});
|
|
183
|
-
|
|
183
|
+
fe.displayName = "ProjectHealthCard";
|
|
184
184
|
const j = q(null);
|
|
185
185
|
function y() {
|
|
186
186
|
const t = Z(j);
|
|
@@ -188,7 +188,7 @@ function y() {
|
|
|
188
188
|
throw new Error("useWeekHeatmap must be used within a WeekHeatmapProvider");
|
|
189
189
|
return t;
|
|
190
190
|
}
|
|
191
|
-
function
|
|
191
|
+
function pe(t, e) {
|
|
192
192
|
const s = t.filter((a) => a.date < e).sort((a, i) => i.date.localeCompare(a.date));
|
|
193
193
|
let o = 0;
|
|
194
194
|
for (const a of s)
|
|
@@ -206,14 +206,14 @@ function A({
|
|
|
206
206
|
today: a
|
|
207
207
|
}) {
|
|
208
208
|
const i = a ?? (/* @__PURE__ */ new Date()).toISOString().split("T")[0], c = U(() => {
|
|
209
|
-
const m = e.reduce((n, l) => n + l.completed, 0),
|
|
209
|
+
const m = e.reduce((n, l) => n + l.completed, 0), f = e.reduce((n, l) => n + l.total, 0), p = pe(e, i);
|
|
210
210
|
return {
|
|
211
211
|
days: e,
|
|
212
212
|
onDayClick: s,
|
|
213
213
|
overdue: o,
|
|
214
214
|
totalCompleted: m,
|
|
215
|
-
totalTasks:
|
|
216
|
-
streak:
|
|
215
|
+
totalTasks: f,
|
|
216
|
+
streak: p,
|
|
217
217
|
today: i
|
|
218
218
|
};
|
|
219
219
|
}, [e, s, o, i]);
|
|
@@ -221,7 +221,7 @@ function A({
|
|
|
221
221
|
}
|
|
222
222
|
A.displayName = "WeekHeatmapProvider";
|
|
223
223
|
const H = k.forwardRef(
|
|
224
|
-
function({ days: e, onDayClick: s, overdue: o, today: a, className: i, children: c, ...m },
|
|
224
|
+
function({ days: e, onDayClick: s, overdue: o, today: a, className: i, children: c, ...m }, f) {
|
|
225
225
|
return /* @__PURE__ */ r(
|
|
226
226
|
A,
|
|
227
227
|
{
|
|
@@ -229,7 +229,7 @@ const H = k.forwardRef(
|
|
|
229
229
|
onDayClick: s,
|
|
230
230
|
overdue: o,
|
|
231
231
|
today: a,
|
|
232
|
-
children: /* @__PURE__ */ r("div", { ref:
|
|
232
|
+
children: /* @__PURE__ */ r("div", { ref: f, className: b("flex flex-col gap-ds-04 rounded-ds-md border border-surface-border bg-surface-2 p-ds-04", i), ...m, children: c })
|
|
233
233
|
}
|
|
234
234
|
);
|
|
235
235
|
}
|
|
@@ -259,11 +259,11 @@ const be = {
|
|
|
259
259
|
empty: "bg-surface-3 border border-dashed border-surface-border text-surface-fg-subtle"
|
|
260
260
|
}, W = k.forwardRef(
|
|
261
261
|
function({ day: e, index: s, focusedIndex: o, onFocusChange: a }, i) {
|
|
262
|
-
const { onDayClick: c, today: m } = y(),
|
|
262
|
+
const { onDayClick: c, today: m } = y(), f = ke(e, m), p = ge(e.date), n = f === "empty", l = /* @__PURE__ */ u("div", { className: "flex flex-col", children: [
|
|
263
263
|
/* @__PURE__ */ r("span", { children: xe(e.date) }),
|
|
264
264
|
/* @__PURE__ */ r("span", { children: e.total > 0 ? `${e.completed} of ${e.total} completed` : "No tasks" })
|
|
265
265
|
] }), d = () => {
|
|
266
|
-
n ||
|
|
266
|
+
n || f === "future" || c == null || c(e.date);
|
|
267
267
|
}, h = (g) => {
|
|
268
268
|
(g.key === "Enter" || g.key === " ") && (g.preventDefault(), c == null || c(e.date));
|
|
269
269
|
};
|
|
@@ -275,20 +275,20 @@ const be = {
|
|
|
275
275
|
role: "gridcell",
|
|
276
276
|
tabIndex: o === s ? 0 : -1,
|
|
277
277
|
"aria-disabled": n || void 0,
|
|
278
|
-
"aria-label": `${
|
|
278
|
+
"aria-label": `${p}, ${e.completed} of ${e.total} completed`,
|
|
279
279
|
className: "flex cursor-pointer flex-col items-center gap-ds-02 outline-none focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-accent-7",
|
|
280
280
|
onClick: d,
|
|
281
281
|
onFocus: () => a(s),
|
|
282
282
|
onKeyDown: h,
|
|
283
283
|
whileTap: { scale: 0.95 },
|
|
284
284
|
children: [
|
|
285
|
-
/* @__PURE__ */ r("span", { className: "text-ds-xs text-surface-fg-muted", children:
|
|
285
|
+
/* @__PURE__ */ r("span", { className: "text-ds-xs text-surface-fg-muted", children: p }),
|
|
286
286
|
/* @__PURE__ */ r(
|
|
287
287
|
"div",
|
|
288
288
|
{
|
|
289
289
|
className: b(
|
|
290
|
-
"flex h-8 w-10 items-center justify-center rounded-ds-md transition-
|
|
291
|
-
be[
|
|
290
|
+
"flex h-8 w-10 items-center justify-center rounded-ds-md transition-[background-color,box-shadow] duration-fast-01 ease-productive-standard hover:ring-1 hover:ring-accent-7",
|
|
291
|
+
be[f]
|
|
292
292
|
)
|
|
293
293
|
}
|
|
294
294
|
),
|
|
@@ -307,7 +307,7 @@ const be = {
|
|
|
307
307
|
W.displayName = "WeekHeatmapDay";
|
|
308
308
|
const D = k.forwardRef(
|
|
309
309
|
function({ className: e, ...s }, o) {
|
|
310
|
-
const { days: a, today: i } = y(), [c, m] = J(0),
|
|
310
|
+
const { days: a, today: i } = y(), [c, m] = J(0), f = Q([]), p = V(
|
|
311
311
|
(n) => {
|
|
312
312
|
var d;
|
|
313
313
|
let l = c;
|
|
@@ -327,7 +327,7 @@ const D = k.forwardRef(
|
|
|
327
327
|
default:
|
|
328
328
|
return;
|
|
329
329
|
}
|
|
330
|
-
m(l), (d =
|
|
330
|
+
m(l), (d = f.current[l]) == null || d.focus();
|
|
331
331
|
},
|
|
332
332
|
[c, a.length]
|
|
333
333
|
);
|
|
@@ -339,14 +339,14 @@ const D = k.forwardRef(
|
|
|
339
339
|
"aria-label": "Weekly task completion",
|
|
340
340
|
delay: 0.05,
|
|
341
341
|
className: b("grid grid-cols-7 gap-ds-03", e),
|
|
342
|
-
onKeyDown:
|
|
342
|
+
onKeyDown: p,
|
|
343
343
|
...M(s),
|
|
344
344
|
children: /* @__PURE__ */ r("div", { role: "row", className: "contents", children: a.map((n, l) => {
|
|
345
345
|
const d = n.date === i, h = /* @__PURE__ */ r(
|
|
346
346
|
W,
|
|
347
347
|
{
|
|
348
348
|
ref: (g) => {
|
|
349
|
-
|
|
349
|
+
f.current[l] = g;
|
|
350
350
|
},
|
|
351
351
|
day: n,
|
|
352
352
|
index: l,
|
|
@@ -442,7 +442,7 @@ const Pe = Object.assign(L, {
|
|
|
442
442
|
export {
|
|
443
443
|
Me as AttendanceCTA,
|
|
444
444
|
Re as DailyBrief,
|
|
445
|
-
|
|
445
|
+
fe as ProjectHealthCard,
|
|
446
446
|
je as Scratchpad,
|
|
447
447
|
Ae as ScratchpadProvider,
|
|
448
448
|
Le as ScratchpadWidget,
|
package/dist/tasks/index.js
CHANGED
|
@@ -287,7 +287,7 @@ const ve = i.forwardRef(
|
|
|
287
287
|
return u ? /* @__PURE__ */ e("div", { className: p("inline-flex items-center gap-ds-03 px-ds-03 py-ds-02", h), children: t ? /* @__PURE__ */ c(E, { children: [
|
|
288
288
|
/* @__PURE__ */ c(M, { className: "h-ico-md w-ico-md", children: [
|
|
289
289
|
t.image && /* @__PURE__ */ e(O, { src: t.image, alt: t.name }),
|
|
290
|
-
/* @__PURE__ */ e(A, { className: "bg-surface-3 text-ds-xs font-semibold text-
|
|
290
|
+
/* @__PURE__ */ e(A, { className: "bg-surface-3 text-ds-xs font-semibold text-surface-fg", children: L(t.name) })
|
|
291
291
|
] }),
|
|
292
292
|
/* @__PURE__ */ e("span", { className: "text-ds-md text-surface-fg", children: t.name })
|
|
293
293
|
] }) : /* @__PURE__ */ e("span", { className: "text-ds-md text-surface-fg-subtle", children: f }) }) : /* @__PURE__ */ e(
|
|
@@ -308,7 +308,7 @@ const ve = i.forwardRef(
|
|
|
308
308
|
children: t ? /* @__PURE__ */ c(E, { children: [
|
|
309
309
|
/* @__PURE__ */ c(M, { className: "h-ico-md w-ico-md", children: [
|
|
310
310
|
t.image && /* @__PURE__ */ e(O, { src: t.image, alt: t.name }),
|
|
311
|
-
/* @__PURE__ */ e(A, { className: "bg-surface-3 text-ds-xs font-semibold text-
|
|
311
|
+
/* @__PURE__ */ e(A, { className: "bg-surface-3 text-ds-xs font-semibold text-surface-fg", children: L(t.name) })
|
|
312
312
|
] }),
|
|
313
313
|
/* @__PURE__ */ e("span", { className: "text-ds-md text-surface-fg", children: t.name })
|
|
314
314
|
] }) : /* @__PURE__ */ e("span", { className: "text-ds-md text-surface-fg-subtle", children: f })
|
|
@@ -338,7 +338,7 @@ const Te = i.forwardRef(
|
|
|
338
338
|
children: [
|
|
339
339
|
/* @__PURE__ */ c(M, { className: "h-ico-sm w-ico-sm", children: [
|
|
340
340
|
a.image && /* @__PURE__ */ e(O, { src: a.image, alt: a.name }),
|
|
341
|
-
/* @__PURE__ */ e(A, { className: "bg-surface-3 text-ds-xs font-semibold text-
|
|
341
|
+
/* @__PURE__ */ e(A, { className: "bg-surface-3 text-ds-xs font-semibold text-surface-fg", children: L(a.name) })
|
|
342
342
|
] }),
|
|
343
343
|
/* @__PURE__ */ e("span", { className: "text-ds-sm text-surface-fg-muted", children: a.name.split(" ")[0] }),
|
|
344
344
|
!u && /* @__PURE__ */ e(
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"task-detail-panel.d.ts","sourceRoot":"","sources":["../../src/tasks/task-detail-panel.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"task-detail-panel.d.ts","sourceRoot":"","sources":["../../src/tasks/task-detail-panel.tsx"],"names":[],"mappings":"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"}
|