@tutti-os/workspace-issue-manager 0.0.1 → 0.0.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.
@@ -23,7 +23,7 @@ import {
23
23
  resolveIssueManagerTopicDeleteErrorMessage,
24
24
  toContextRefInput,
25
25
  toIssueManagerWorkspaceFileLinkInput
26
- } from "./chunk-4B2P64PY.js";
26
+ } from "./chunk-FZXBXPXT.js";
27
27
  import {
28
28
  appendIssueManagerWorkspaceFileLinksToContent,
29
29
  clampIssueManagerSidebarWidth,
@@ -34,7 +34,7 @@ import {
34
34
  issueManagerSidebarMinWidth,
35
35
  normalizeIssueManagerContent,
36
36
  shouldAutoCollapseIssueManagerSidebar
37
- } from "./chunk-WJSZFKUD.js";
37
+ } from "./chunk-QRRPA7TH.js";
38
38
 
39
39
  // src/ui/react/internal/shell/IssueManagerNodeState.ts
40
40
  import { useEffect, useEffectEvent, useState } from "react";
@@ -1850,6 +1850,7 @@ function useIssueManagerController({
1850
1850
  notification,
1851
1851
  providerOptions,
1852
1852
  executionDirectoryProjectService: feature.executionDirectoryPicker?.service ?? null,
1853
+ workspaceUserProjectI18n: feature.workspaceUserProjectI18n,
1853
1854
  listExecutionDirectoryProjects: () => feature.executionDirectoryPicker?.list() ?? Promise.resolve({ projects: [] }),
1854
1855
  referenceTarget,
1855
1856
  selectTopic(topicId) {
@@ -2110,20 +2111,20 @@ function IssueManagerDetailTextSection({
2110
2111
  const bodyText = stripIssueManagerDescriptionTerminalPunctuation(body);
2111
2112
  const metaText = meta ? stripIssueManagerDescriptionTerminalPunctuation(meta) : null;
2112
2113
  const bodyClassName = cn(
2113
- "max-w-full whitespace-normal break-words text-[14px] leading-5 [overflow-wrap:anywhere]",
2114
+ "max-w-full whitespace-normal break-words text-[13px] leading-5 [overflow-wrap:anywhere]",
2114
2115
  isPlaceholder ? "font-normal text-[var(--text-secondary)]" : tone === "destructive" ? "font-semibold text-[var(--state-danger)]" : "font-semibold text-[var(--text-primary)]"
2115
2116
  );
2116
2117
  if (isPlaceholder) {
2117
2118
  return /* @__PURE__ */ jsxs3("section", { className: "grid gap-2.5", children: [
2118
- /* @__PURE__ */ jsx3("h3", { className: "text-sm font-semibold text-[var(--text-primary)]", children: label }),
2119
+ /* @__PURE__ */ jsx3("h3", { className: "text-[13px] font-semibold text-[var(--text-primary)]", children: label }),
2119
2120
  /* @__PURE__ */ jsx3("p", { className: bodyClassName, children: bodyText })
2120
2121
  ] });
2121
2122
  }
2122
2123
  return /* @__PURE__ */ jsxs3("section", { className: "grid gap-2.5", children: [
2123
- /* @__PURE__ */ jsx3("h3", { className: "text-sm font-semibold text-[var(--text-primary)]", children: label }),
2124
+ /* @__PURE__ */ jsx3("h3", { className: "text-[13px] font-semibold text-[var(--text-primary)]", children: label }),
2124
2125
  /* @__PURE__ */ jsxs3("div", { className: "min-w-0 rounded-[12px] border border-[var(--line-2)] px-4 py-3", children: [
2125
2126
  /* @__PURE__ */ jsx3("p", { className: bodyClassName, children: bodyText }),
2126
- metaText ? /* @__PURE__ */ jsx3("p", { className: "mt-1 truncate text-xs font-normal text-[var(--text-secondary)]", children: metaText }) : null
2127
+ metaText ? /* @__PURE__ */ jsx3("p", { className: "mt-1 truncate text-[11px] font-normal text-[var(--text-secondary)]", children: metaText }) : null
2127
2128
  ] })
2128
2129
  ] });
2129
2130
  }
@@ -2161,7 +2162,7 @@ function IssueManagerLatestRunStatusSection({
2161
2162
  }) : null;
2162
2163
  if (renderedLatestRunStatus !== null && renderedLatestRunStatus !== void 0) {
2163
2164
  return /* @__PURE__ */ jsxs3("section", { className: "grid gap-2.5", children: [
2164
- /* @__PURE__ */ jsx3("h3", { className: "text-sm font-semibold text-[var(--text-primary)]", children: copy.t("labels.latestRunStatus") }),
2165
+ /* @__PURE__ */ jsx3("h3", { className: "text-[13px] font-semibold text-[var(--text-primary)]", children: copy.t("labels.latestRunStatus") }),
2165
2166
  renderedLatestRunStatus
2166
2167
  ] });
2167
2168
  }
@@ -2184,7 +2185,7 @@ function IssueManagerLatestRunStatusSection({
2184
2185
  "p",
2185
2186
  {
2186
2187
  className: cn(
2187
- "min-w-0 flex-1 text-[14px] font-semibold leading-5 text-[var(--text-primary)] [overflow-wrap:anywhere]",
2188
+ "min-w-0 flex-1 text-[13px] font-semibold leading-5 text-[var(--text-primary)] [overflow-wrap:anywhere]",
2188
2189
  agentSessionId ? "font-mono" : ""
2189
2190
  ),
2190
2191
  children: primaryText
@@ -2192,9 +2193,9 @@ function IssueManagerLatestRunStatusSection({
2192
2193
  ),
2193
2194
  /* @__PURE__ */ jsx3(Badge, { variant: issueManagerStatusBadgeVariant(latestRun.status), children: statusLabel })
2194
2195
  ] }),
2195
- summary && agentSessionId ? /* @__PURE__ */ jsx3("p", { className: "mt-1 text-xs font-normal leading-5 text-[var(--text-secondary)] [overflow-wrap:anywhere]", children: summary }) : null,
2196
- timestamp ? /* @__PURE__ */ jsx3("p", { className: "mt-1 truncate text-xs font-normal text-[var(--text-secondary)]", children: timestamp }) : null,
2197
- errorMessage ? /* @__PURE__ */ jsx3("p", { className: "mt-2 text-xs font-medium leading-5 text-[var(--state-danger)] [overflow-wrap:anywhere]", children: errorMessage }) : null
2196
+ summary && agentSessionId ? /* @__PURE__ */ jsx3("p", { className: "mt-1 text-[11px] font-normal leading-5 text-[var(--text-secondary)] [overflow-wrap:anywhere]", children: summary }) : null,
2197
+ timestamp ? /* @__PURE__ */ jsx3("p", { className: "mt-1 truncate text-[11px] font-normal text-[var(--text-secondary)]", children: timestamp }) : null,
2198
+ errorMessage ? /* @__PURE__ */ jsx3("p", { className: "mt-2 text-[11px] font-medium leading-5 text-[var(--state-danger)] [overflow-wrap:anywhere]", children: errorMessage }) : null
2198
2199
  ] })
2199
2200
  ] });
2200
2201
  const cardClassName = cn(
@@ -2202,7 +2203,7 @@ function IssueManagerLatestRunStatusSection({
2202
2203
  canOpenAgentSession ? "w-full bg-transparent text-left transition-colors hover:bg-transparency-hover focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/25 focus-visible:ring-inset" : "bg-transparent"
2203
2204
  );
2204
2205
  return /* @__PURE__ */ jsxs3("section", { className: "grid gap-2.5", children: [
2205
- /* @__PURE__ */ jsx3("h3", { className: "text-sm font-semibold text-[var(--text-primary)]", children: copy.t("labels.latestRunStatus") }),
2206
+ /* @__PURE__ */ jsx3("h3", { className: "text-[13px] font-semibold text-[var(--text-primary)]", children: copy.t("labels.latestRunStatus") }),
2206
2207
  canOpenAgentSession ? /* @__PURE__ */ jsx3(
2207
2208
  "button",
2208
2209
  {
@@ -2224,8 +2225,8 @@ function IssueManagerOutputSection({
2224
2225
  outputs
2225
2226
  }) {
2226
2227
  return /* @__PURE__ */ jsxs3("section", { className: "grid gap-2.5", children: [
2227
- /* @__PURE__ */ jsx3("h3", { className: "text-sm font-semibold text-[var(--text-primary)]", children: copy.t("labels.executionOutputs") }),
2228
- outputs.length === 0 ? /* @__PURE__ */ jsx3("p", { className: "text-sm font-normal leading-6 text-[var(--text-secondary)]", children: copy.t("messages.noExecutionOutputs") }) : /* @__PURE__ */ jsx3("div", { className: "overflow-hidden rounded-[12px] border border-[var(--line-2)] bg-transparent", children: outputs.map((output) => /* @__PURE__ */ jsxs3(
2228
+ /* @__PURE__ */ jsx3("h3", { className: "text-[13px] font-semibold text-[var(--text-primary)]", children: copy.t("labels.executionOutputs") }),
2229
+ outputs.length === 0 ? /* @__PURE__ */ jsx3("p", { className: "text-[13px] font-normal leading-6 text-[var(--text-secondary)]", children: copy.t("messages.noExecutionOutputs") }) : /* @__PURE__ */ jsx3("div", { className: "overflow-hidden rounded-[12px] border border-[var(--line-2)] bg-transparent", children: outputs.map((output) => /* @__PURE__ */ jsxs3(
2229
2230
  "button",
2230
2231
  {
2231
2232
  className: "flex w-full items-start justify-between gap-4 border-b border-[var(--line-2)] px-4 py-3 text-left transition-colors last:border-b-0 hover:bg-transparency-hover focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/25 focus-visible:ring-inset",
@@ -2239,10 +2240,10 @@ function IssueManagerOutputSection({
2239
2240
  },
2240
2241
  children: [
2241
2242
  /* @__PURE__ */ jsxs3("span", { className: "min-w-0 flex-1", children: [
2242
- /* @__PURE__ */ jsx3("span", { className: "block truncate text-sm font-semibold text-[var(--text-primary)]", children: output.displayName }),
2243
- /* @__PURE__ */ jsx3("span", { className: "mt-1 block truncate text-xs font-normal text-[var(--text-secondary)]", children: output.path })
2243
+ /* @__PURE__ */ jsx3("span", { className: "block truncate text-[13px] font-semibold text-[var(--text-primary)]", children: output.displayName }),
2244
+ /* @__PURE__ */ jsx3("span", { className: "mt-1 block truncate text-[11px] font-normal text-[var(--text-secondary)]", children: output.path })
2244
2245
  ] }),
2245
- /* @__PURE__ */ jsx3("span", { className: "shrink-0 text-xs font-normal text-[var(--text-secondary)]", children: formatIssueManagerTimestamp(output.createdAtUnix) || "" })
2246
+ /* @__PURE__ */ jsx3("span", { className: "shrink-0 text-[11px] font-normal text-[var(--text-secondary)]", children: formatIssueManagerTimestamp(output.createdAtUnix) || "" })
2246
2247
  ]
2247
2248
  },
2248
2249
  output.outputId
@@ -2258,13 +2259,13 @@ function IssueManagerSubtaskSection({
2258
2259
  }) {
2259
2260
  return /* @__PURE__ */ jsxs3("section", { className: "grid gap-2.5", children: [
2260
2261
  /* @__PURE__ */ jsxs3("div", { className: "flex items-center justify-between gap-3", children: [
2261
- /* @__PURE__ */ jsx3("h3", { className: "text-sm font-semibold text-[var(--text-primary)]", children: copy.t("labels.subtasks") }),
2262
+ /* @__PURE__ */ jsx3("h3", { className: "text-[13px] font-semibold text-[var(--text-primary)]", children: copy.t("labels.subtasks") }),
2262
2263
  /* @__PURE__ */ jsxs3(Button2, { size: "dialog", type: "button", variant: "ghost", onClick: onCreate, children: [
2263
2264
  /* @__PURE__ */ jsx3(FileCreateIcon2, { size: 14 }),
2264
2265
  copy.t("actions.add")
2265
2266
  ] })
2266
2267
  ] }),
2267
- tasks.length === 0 ? /* @__PURE__ */ jsx3("p", { className: "text-sm font-normal leading-6 text-[var(--text-secondary)]", children: copy.t("messages.noSubtasksForIssue") }) : /* @__PURE__ */ jsx3("div", { className: "overflow-hidden rounded-lg border border-[var(--line-2)] bg-transparent", children: tasks.map((task) => /* @__PURE__ */ jsxs3(
2268
+ tasks.length === 0 ? /* @__PURE__ */ jsx3("p", { className: "text-[13px] font-normal leading-6 text-[var(--text-secondary)]", children: copy.t("messages.noSubtasksForIssue") }) : /* @__PURE__ */ jsx3("div", { className: "overflow-hidden rounded-lg border border-[var(--line-2)] bg-transparent", children: tasks.map((task) => /* @__PURE__ */ jsxs3(
2268
2269
  "button",
2269
2270
  {
2270
2271
  className: cn(
@@ -2276,15 +2277,15 @@ function IssueManagerSubtaskSection({
2276
2277
  children: [
2277
2278
  /* @__PURE__ */ jsxs3("div", { className: "min-w-0 flex-1", children: [
2278
2279
  /* @__PURE__ */ jsxs3("div", { className: "flex min-w-0 items-center gap-2.5", children: [
2279
- /* @__PURE__ */ jsx3(IssueManagerTitleTooltip, { title: task.title, children: /* @__PURE__ */ jsx3("span", { className: "truncate text-sm font-semibold text-[var(--text-primary)]", children: task.title }) }),
2280
+ /* @__PURE__ */ jsx3(IssueManagerTitleTooltip, { title: task.title, children: /* @__PURE__ */ jsx3("span", { className: "truncate text-[13px] font-semibold text-[var(--text-primary)]", children: task.title }) }),
2280
2281
  /* @__PURE__ */ jsx3(Badge, { variant: issueManagerStatusBadgeVariant(task.status), children: resolveIssueManagerStatusLabel(copy, task.status) })
2281
2282
  ] }),
2282
- /* @__PURE__ */ jsx3("p", { className: "mt-2 line-clamp-2 text-[12px] font-normal leading-[1.5] text-[var(--text-secondary)]", children: summarizeIssueManagerContent(
2283
+ /* @__PURE__ */ jsx3("p", { className: "mt-2 line-clamp-2 text-[11px] font-normal leading-[1.5] text-[var(--text-secondary)]", children: summarizeIssueManagerContent(
2283
2284
  task.content,
2284
2285
  copy.t("messages.taskContentEmpty")
2285
2286
  ) })
2286
2287
  ] }),
2287
- /* @__PURE__ */ jsx3("span", { className: "shrink-0 text-xs font-normal text-[var(--text-secondary)]", children: formatIssueManagerTimestamp(
2288
+ /* @__PURE__ */ jsx3("span", { className: "shrink-0 text-[11px] font-normal text-[var(--text-secondary)]", children: formatIssueManagerTimestamp(
2288
2289
  task.createdAtUnix ?? task.updatedAtUnix
2289
2290
  ) || "" })
2290
2291
  ]
@@ -2343,18 +2344,18 @@ function IssueManagerDescriptionSection({
2343
2344
  }, [displayContent, variant]);
2344
2345
  if (variant === "plain") {
2345
2346
  return /* @__PURE__ */ jsxs4("section", { className: "grid gap-2", children: [
2346
- /* @__PURE__ */ jsx4("span", { className: "text-sm font-semibold leading-5 text-[var(--text-primary)]", children: label }),
2347
- displayContent ? /* @__PURE__ */ jsx4("div", { className: "max-w-3xl text-sm font-normal leading-5 text-[var(--text-secondary)]", children: /* @__PURE__ */ jsx4(
2347
+ /* @__PURE__ */ jsx4("span", { className: "text-[13px] font-semibold leading-5 text-[var(--text-primary)]", children: label }),
2348
+ displayContent ? /* @__PURE__ */ jsx4("div", { className: "max-w-3xl text-[13px] font-normal leading-5 text-[var(--text-secondary)]", children: /* @__PURE__ */ jsx4(
2348
2349
  IssueManagerDescriptionContent,
2349
2350
  {
2350
2351
  content: displayContent,
2351
2352
  onOpen
2352
2353
  }
2353
- ) }) : /* @__PURE__ */ jsx4("p", { className: "text-sm font-normal leading-5 text-[var(--text-secondary)]", children: emptyLabel })
2354
+ ) }) : /* @__PURE__ */ jsx4("p", { className: "text-[13px] font-normal leading-5 text-[var(--text-secondary)]", children: emptyLabel })
2354
2355
  ] });
2355
2356
  }
2356
2357
  return /* @__PURE__ */ jsxs4("section", { className: "grid gap-2", children: [
2357
- /* @__PURE__ */ jsx4("span", { className: "text-sm font-semibold leading-5 text-[var(--text-primary)]", children: label }),
2358
+ /* @__PURE__ */ jsx4("span", { className: "text-[13px] font-semibold leading-5 text-[var(--text-primary)]", children: label }),
2358
2359
  /* @__PURE__ */ jsxs4(
2359
2360
  "div",
2360
2361
  {
@@ -2367,7 +2368,7 @@ function IssueManagerDescriptionSection({
2367
2368
  "div",
2368
2369
  {
2369
2370
  className: cn2(
2370
- "max-h-[18rem] overflow-y-auto pr-2 text-sm font-normal leading-5 text-[var(--text-secondary)]",
2371
+ "max-h-[18rem] overflow-y-auto pr-2 text-[13px] font-normal leading-5 text-[var(--text-secondary)]",
2371
2372
  isOverflowing && "pb-8"
2372
2373
  ),
2373
2374
  ref: contentRef,
@@ -2416,8 +2417,8 @@ import { useEffect as useEffect5, useMemo as useMemo3, useRef as useRef2, useSta
2416
2417
  import { RichTextAtEditor } from "@tutti-os/ui-rich-text/editor";
2417
2418
  import { Button as Button3, LinkIcon, cn as cn3 } from "@tutti-os/ui-system";
2418
2419
  import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
2419
- var issueManagerRichTextTextareaBaseClassName = "min-h-20 w-full rounded-[8px] border border-transparent bg-[var(--transparency-block)] p-3 text-sm font-normal leading-[1.3] text-[var(--text-primary)] transition-[background-color,border-color,color] outline-none shadow-none placeholder:text-[var(--text-placeholder)] hover:bg-[var(--transparency-hover)] focus:bg-[var(--transparency-hover)] focus-visible:border-transparent focus-visible:bg-[var(--transparency-hover)] focus-visible:ring-0 disabled:cursor-not-allowed disabled:bg-[var(--transparency-block)] disabled:text-[var(--text-disabled)] disabled:opacity-100 aria-invalid:border-[var(--state-danger)] aria-invalid:bg-[var(--transparency-block)] aria-invalid:hover:bg-[var(--transparency-hover)] aria-invalid:focus:bg-[var(--transparency-hover)] aria-invalid:focus-visible:bg-[var(--transparency-hover)] aria-invalid:ring-0 aria-invalid:shadow-none";
2420
- var issueManagerRichTextPlaceholderBaseClassName = "min-h-20 w-full p-3 text-sm font-normal leading-[1.3] text-[var(--text-placeholder)]";
2420
+ var issueManagerRichTextTextareaBaseClassName = "min-h-20 w-full rounded-[8px] border border-transparent bg-[var(--transparency-block)] p-3 text-[13px] font-normal leading-[1.3] text-[var(--text-primary)] transition-[background-color,border-color,color] outline-none shadow-none placeholder:text-[var(--text-placeholder)] hover:bg-[var(--transparency-hover)] focus:bg-[var(--transparency-hover)] focus-visible:border-transparent focus-visible:bg-[var(--transparency-hover)] focus-visible:ring-0 disabled:cursor-not-allowed disabled:bg-[var(--transparency-block)] disabled:text-[var(--text-disabled)] disabled:opacity-100 aria-invalid:border-[var(--state-danger)] aria-invalid:bg-[var(--transparency-block)] aria-invalid:hover:bg-[var(--transparency-hover)] aria-invalid:focus:bg-[var(--transparency-hover)] aria-invalid:focus-visible:bg-[var(--transparency-hover)] aria-invalid:ring-0 aria-invalid:shadow-none";
2421
+ var issueManagerRichTextPlaceholderBaseClassName = "min-h-20 w-full p-3 text-[13px] font-normal leading-[1.3] text-[var(--text-placeholder)]";
2421
2422
  function IssueManagerRichTextTextarea({
2422
2423
  controller,
2423
2424
  onChange,
@@ -2581,14 +2582,14 @@ function IssueManagerIssuePane({
2581
2582
  "div",
2582
2583
  {
2583
2584
  className: `${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay0ClassName}`,
2584
- children: /* @__PURE__ */ jsx7("h2", { className: "m-0 text-[17px] font-semibold leading-[1.35] text-[var(--text-primary)]", children: isCreatingIssue ? copy.t("actions.createIssue") : copy.t("actions.editIssue") })
2585
+ children: /* @__PURE__ */ jsx7("h2", { className: "m-0 text-[15px] font-semibold leading-[1.35] text-[var(--text-primary)]", children: isCreatingIssue ? copy.t("actions.createIssue") : copy.t("actions.editIssue") })
2585
2586
  }
2586
2587
  ),
2587
2588
  /* @__PURE__ */ jsxs6("div", { className: "flex w-full min-w-0 flex-col gap-6", children: [
2588
2589
  /* @__PURE__ */ jsxs6(
2589
2590
  "label",
2590
2591
  {
2591
- className: `flex w-full min-w-0 flex-col gap-2 text-sm font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay1ClassName}`,
2592
+ className: `flex w-full min-w-0 flex-col gap-2 text-[13px] font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay1ClassName}`,
2592
2593
  children: [
2593
2594
  /* @__PURE__ */ jsx7("span", { className: "leading-5", children: copy.t("labels.title") }),
2594
2595
  /* @__PURE__ */ jsx7(
@@ -2605,7 +2606,7 @@ function IssueManagerIssuePane({
2605
2606
  /* @__PURE__ */ jsxs6(
2606
2607
  "div",
2607
2608
  {
2608
- className: `flex min-h-0 w-full min-w-0 flex-col gap-2 text-sm font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay2ClassName}`,
2609
+ className: `flex min-h-0 w-full min-w-0 flex-col gap-2 text-[13px] font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay2ClassName}`,
2609
2610
  children: [
2610
2611
  /* @__PURE__ */ jsx7("span", { className: "leading-5", children: copy.t("labels.content") }),
2611
2612
  /* @__PURE__ */ jsx7(
@@ -2660,7 +2661,7 @@ function IssueManagerIssuePane({
2660
2661
  return /* @__PURE__ */ jsx7("div", { className: "flex h-full min-h-0 flex-col overflow-hidden", children: /* @__PURE__ */ jsx7(ScrollArea2, { className: "min-h-0 flex-1 [&_[data-orientation=vertical][data-slot=scroll-area-scrollbar]]:opacity-100 [&_[data-slot=scroll-area-viewport]]:overscroll-contain", children: /* @__PURE__ */ jsx7("div", { className: "px-8 py-7", children: controller.issueDetail.isLoading && controller.issueDetail.value === null ? /* @__PURE__ */ jsx7(IssueManagerPaneLoadingState, {}) : /* @__PURE__ */ jsxs6("div", { className: "flex w-full min-w-0 flex-col gap-9", children: [
2661
2662
  /* @__PURE__ */ jsxs6("header", { className: "grid gap-3", children: [
2662
2663
  /* @__PURE__ */ jsxs6("div", { className: "flex items-center justify-between gap-6", children: [
2663
- /* @__PURE__ */ jsx7(IssueManagerTitleTooltip, { title: selectedIssue.title, children: /* @__PURE__ */ jsx7("h2", { className: "line-clamp-2 min-w-0 flex-1 whitespace-normal text-base font-semibold leading-6 text-[var(--text-primary)] [overflow-wrap:anywhere]", children: selectedIssue.title }) }),
2664
+ /* @__PURE__ */ jsx7(IssueManagerTitleTooltip, { title: selectedIssue.title, children: /* @__PURE__ */ jsx7("h2", { className: "line-clamp-2 min-w-0 flex-1 whitespace-normal text-[15px] font-semibold leading-6 text-[var(--text-primary)] [overflow-wrap:anywhere]", children: selectedIssue.title }) }),
2664
2665
  /* @__PURE__ */ jsxs6("div", { className: "flex shrink-0 items-center gap-2", children: [
2665
2666
  /* @__PURE__ */ jsx7(
2666
2667
  Button4,
@@ -2683,7 +2684,7 @@ function IssueManagerIssuePane({
2683
2684
  )
2684
2685
  ] })
2685
2686
  ] }),
2686
- /* @__PURE__ */ jsxs6("div", { className: "flex flex-wrap items-center gap-x-2 gap-y-2 text-[12px] font-normal leading-[1.3] text-[var(--text-secondary)]", children: [
2687
+ /* @__PURE__ */ jsxs6("div", { className: "flex flex-wrap items-center gap-x-2 gap-y-2 text-[11px] font-normal leading-[1.3] text-[var(--text-secondary)]", children: [
2687
2688
  /* @__PURE__ */ jsx7(
2688
2689
  Badge2,
2689
2690
  {
@@ -2700,7 +2701,7 @@ function IssueManagerIssuePane({
2700
2701
  className: "h-4 w-px shrink-0 bg-[var(--line-2)]"
2701
2702
  }
2702
2703
  ),
2703
- /* @__PURE__ */ jsxs6("span", { className: "text-[12px] font-normal leading-[1.3]", children: [
2704
+ /* @__PURE__ */ jsxs6("span", { className: "text-[11px] font-normal leading-[1.3]", children: [
2704
2705
  copy.t("labels.creator"),
2705
2706
  " ",
2706
2707
  resolveIssueManagerCreatorLabel(selectedIssue)
@@ -2712,7 +2713,7 @@ function IssueManagerIssuePane({
2712
2713
  className: "h-4 w-px shrink-0 bg-[var(--line-2)]"
2713
2714
  }
2714
2715
  ),
2715
- /* @__PURE__ */ jsxs6("span", { className: "text-[12px] font-normal leading-[1.3]", children: [
2716
+ /* @__PURE__ */ jsxs6("span", { className: "text-[11px] font-normal leading-[1.3]", children: [
2716
2717
  copy.t("labels.createdAt"),
2717
2718
  " ",
2718
2719
  formatIssueManagerTimestamp(selectedIssue.createdAtUnix) || "-"
@@ -2961,16 +2962,7 @@ function IssueManagerExecutionDirectoryTrigger({
2961
2962
  },
2962
2963
  contentAlign: "end",
2963
2964
  disabled,
2964
- labels: {
2965
- linkExistingProject: controller.copy.t(
2966
- "actions.linkExistingExecutionDirectory"
2967
- ),
2968
- loadingProjects: controller.copy.t(
2969
- "labels.loadingExecutionDirectories"
2970
- ),
2971
- noProject: controller.copy.t("labels.noProject"),
2972
- projectLabel: controller.copy.t("actions.selectExecutionDirectory")
2973
- },
2965
+ i18n: controller.workspaceUserProjectI18n,
2974
2966
  service: controller.executionDirectoryProjectService,
2975
2967
  selectedProjectPath: controller.nodeState.selectedExecutionDirectory,
2976
2968
  unlistedProjectLabel: controller.copy.t(
@@ -3356,7 +3348,7 @@ function IssueManagerSearchField({
3356
3348
  {
3357
3349
  "aria-label": placeholder,
3358
3350
  className: cn6(
3359
- "box-border h-8 min-h-8 rounded-md border-0 bg-[var(--transparency-block)] px-3 text-sm font-normal leading-normal text-[var(--text-primary)] shadow-none outline-none ring-0 transition-colors placeholder:text-[var(--text-placeholder)] hover:bg-[var(--transparency-hover)] focus:border-0 focus:bg-[var(--transparency-hover)] focus-visible:border-0 focus-visible:bg-[var(--transparency-hover)] focus-visible:ring-0 focus-visible:ring-offset-0 disabled:bg-[var(--transparency-block)] disabled:text-[var(--text-disabled)] disabled:opacity-100",
3351
+ "box-border h-8 min-h-8 rounded-md border-0 bg-[var(--transparency-block)] px-3 text-[13px] font-normal leading-normal text-[var(--text-primary)] shadow-none outline-none ring-0 transition-colors placeholder:text-[var(--text-placeholder)] hover:bg-[var(--transparency-hover)] focus:border-0 focus:bg-[var(--transparency-hover)] focus-visible:border-0 focus-visible:bg-[var(--transparency-hover)] focus-visible:ring-0 focus-visible:ring-offset-0 disabled:bg-[var(--transparency-block)] disabled:text-[var(--text-disabled)] disabled:opacity-100",
3360
3352
  "[&::-webkit-search-cancel-button]:appearance-none [&::-webkit-search-decoration]:appearance-none",
3361
3353
  searchInput.value ? "pr-9" : "pr-3"
3362
3354
  ),
@@ -3442,10 +3434,10 @@ function IssueManagerSidebarItem({
3442
3434
  }
3443
3435
  ),
3444
3436
  /* @__PURE__ */ jsxs9("div", { className: "min-w-0 space-y-2", children: [
3445
- /* @__PURE__ */ jsx11("p", { className: "pr-28 text-[12px] leading-[1.55] text-[var(--text-secondary)]", children: formatIssueManagerDate(issue.updatedAtUnix ?? issue.createdAtUnix) }),
3446
- /* @__PURE__ */ jsx11("p", { className: "line-clamp-4 text-[14px] font-medium leading-[1.35rem] text-[var(--text-primary)]", children: issue.title })
3437
+ /* @__PURE__ */ jsx11("p", { className: "pr-28 text-[11px] leading-[1.55] text-[var(--text-secondary)]", children: formatIssueManagerDate(issue.updatedAtUnix ?? issue.createdAtUnix) }),
3438
+ /* @__PURE__ */ jsx11("p", { className: "line-clamp-4 text-[13px] font-medium leading-[1.35rem] text-[var(--text-primary)]", children: issue.title })
3447
3439
  ] }),
3448
- /* @__PURE__ */ jsx11("div", { className: "mt-2 text-[12px] leading-[1.55] text-[var(--text-secondary)]", children: copy.t("labels.taskCount", { count: issue.taskCount ?? 0 }) })
3440
+ /* @__PURE__ */ jsx11("div", { className: "mt-2 text-[11px] leading-[1.55] text-[var(--text-secondary)]", children: copy.t("labels.taskCount", { count: issue.taskCount ?? 0 }) })
3449
3441
  ]
3450
3442
  }
3451
3443
  );
@@ -3495,7 +3487,7 @@ function IssueManagerSidebarEmptyState({
3495
3487
  "p",
3496
3488
  {
3497
3489
  className: cn6(
3498
- "max-w-sm text-sm leading-5 text-[var(--text-secondary)]",
3490
+ "max-w-sm text-[13px] leading-5 text-[var(--text-secondary)]",
3499
3491
  tone === "destructive" ? "text-[var(--state-danger)]" : "text-[var(--text-secondary)]"
3500
3492
  ),
3501
3493
  children: title
@@ -3518,7 +3510,7 @@ function IssueManagerSidebarErrorState({
3518
3510
  isNarrowLayout ? "h-24 max-h-24 min-h-24 w-full flex-[0_0_100%]" : "min-h-full"
3519
3511
  ),
3520
3512
  children: [
3521
- /* @__PURE__ */ jsx11("p", { className: "text-sm font-semibold leading-5 text-[var(--state-danger)]", children: title }),
3513
+ /* @__PURE__ */ jsx11("p", { className: "text-[13px] font-semibold leading-5 text-[var(--state-danger)]", children: title }),
3522
3514
  /* @__PURE__ */ jsx11(
3523
3515
  Button7,
3524
3516
  {
@@ -3655,14 +3647,14 @@ function IssueManagerTaskComposerPane({
3655
3647
  "div",
3656
3648
  {
3657
3649
  className: `${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay0ClassName}`,
3658
- children: /* @__PURE__ */ jsx13("h2", { className: "m-0 text-[17px] font-semibold leading-[1.35] text-[var(--text-primary)]", children: copy.t("actions.addSubtask") })
3650
+ children: /* @__PURE__ */ jsx13("h2", { className: "m-0 text-[15px] font-semibold leading-[1.35] text-[var(--text-primary)]", children: copy.t("actions.addSubtask") })
3659
3651
  }
3660
3652
  ),
3661
3653
  /* @__PURE__ */ jsxs11("div", { className: "flex w-full min-w-0 flex-col gap-6", children: [
3662
3654
  /* @__PURE__ */ jsxs11(
3663
3655
  "label",
3664
3656
  {
3665
- className: `flex w-full min-w-0 flex-col gap-2 text-sm font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay1ClassName}`,
3657
+ className: `flex w-full min-w-0 flex-col gap-2 text-[13px] font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay1ClassName}`,
3666
3658
  children: [
3667
3659
  /* @__PURE__ */ jsx13("span", { className: "leading-5", children: copy.t("labels.title") }),
3668
3660
  /* @__PURE__ */ jsx13(
@@ -3679,7 +3671,7 @@ function IssueManagerTaskComposerPane({
3679
3671
  /* @__PURE__ */ jsxs11(
3680
3672
  "div",
3681
3673
  {
3682
- className: `flex min-h-0 w-full min-w-0 flex-col gap-2 text-sm font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay2ClassName}`,
3674
+ className: `flex min-h-0 w-full min-w-0 flex-col gap-2 text-[13px] font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay2ClassName}`,
3683
3675
  children: [
3684
3676
  /* @__PURE__ */ jsx13("span", { className: "leading-5", children: copy.t("labels.requirementDescription") }),
3685
3677
  /* @__PURE__ */ jsx13(
@@ -3747,7 +3739,7 @@ function IssueManagerTaskDrawerHeader({
3747
3739
  return /* @__PURE__ */ jsxs12(Fragment2, { children: [
3748
3740
  /* @__PURE__ */ jsxs12("div", { className: "grid gap-3 px-6 py-7", children: [
3749
3741
  /* @__PURE__ */ jsxs12("div", { className: "flex items-center justify-between gap-6", children: [
3750
- view.showTaskMetadata && selectedTask ? /* @__PURE__ */ jsx14(IssueManagerTitleTooltip, { title: view.title, children: /* @__PURE__ */ jsx14("h3", { className: "line-clamp-2 min-w-0 flex-1 whitespace-normal text-base font-semibold leading-6 text-[var(--text-primary)] [overflow-wrap:anywhere]", children: view.title }) }) : /* @__PURE__ */ jsx14(IssueManagerTitleTooltip, { title: view.title, children: /* @__PURE__ */ jsx14("h3", { className: "line-clamp-2 min-w-0 flex-1 whitespace-normal text-[17px] font-semibold leading-[1.35] text-[var(--text-primary)] [overflow-wrap:anywhere]", children: view.title }) }),
3742
+ view.showTaskMetadata && selectedTask ? /* @__PURE__ */ jsx14(IssueManagerTitleTooltip, { title: view.title, children: /* @__PURE__ */ jsx14("h3", { className: "line-clamp-2 min-w-0 flex-1 whitespace-normal text-[15px] font-semibold leading-6 text-[var(--text-primary)] [overflow-wrap:anywhere]", children: view.title }) }) : /* @__PURE__ */ jsx14(IssueManagerTitleTooltip, { title: view.title, children: /* @__PURE__ */ jsx14("h3", { className: "line-clamp-2 min-w-0 flex-1 whitespace-normal text-[15px] font-semibold leading-[1.35] text-[var(--text-primary)] [overflow-wrap:anywhere]", children: view.title }) }),
3751
3743
  /* @__PURE__ */ jsx14("div", { className: "flex shrink-0 items-center gap-2", children: view.showTaskActions && selectedTask ? /* @__PURE__ */ jsxs12(Fragment2, { children: [
3752
3744
  /* @__PURE__ */ jsx14(
3753
3745
  Button9,
@@ -3787,7 +3779,7 @@ function IssueManagerTaskDrawerHeader({
3787
3779
  cancelLabel: copy.t("actions.cancel"),
3788
3780
  confirmBusy: deleteBusy,
3789
3781
  confirmLabel: copy.t("actions.delete"),
3790
- description: selectedTask.title,
3782
+ description: /* @__PURE__ */ jsx14("span", { className: "block max-w-full whitespace-normal [overflow-wrap:anywhere]", children: selectedTask.title }),
3791
3783
  open: deleteDialogOpen,
3792
3784
  title: copy.t("confirmations.deleteTask"),
3793
3785
  tone: "destructive",
@@ -3807,7 +3799,7 @@ function IssueManagerTaskMetadataRow({
3807
3799
  copy,
3808
3800
  selectedTask
3809
3801
  }) {
3810
- return /* @__PURE__ */ jsxs12("div", { className: "flex flex-wrap items-center gap-x-2 gap-y-2 text-[12px] font-normal leading-[1.3] text-[var(--text-secondary)]", children: [
3802
+ return /* @__PURE__ */ jsxs12("div", { className: "flex flex-wrap items-center gap-x-2 gap-y-2 text-[11px] font-normal leading-[1.3] text-[var(--text-secondary)]", children: [
3811
3803
  /* @__PURE__ */ jsx14(Badge5, { variant: issueManagerStatusBadgeVariant(selectedTask.status), children: resolveIssueManagerStatusLabel(copy, selectedTask.status) }),
3812
3804
  /* @__PURE__ */ jsx14(
3813
3805
  "span",
@@ -3816,7 +3808,7 @@ function IssueManagerTaskMetadataRow({
3816
3808
  className: "h-4 w-px shrink-0 bg-[var(--line-2)]"
3817
3809
  }
3818
3810
  ),
3819
- /* @__PURE__ */ jsxs12("span", { className: "text-[12px] font-normal leading-[1.3]", children: [
3811
+ /* @__PURE__ */ jsxs12("span", { className: "text-[11px] font-normal leading-[1.3]", children: [
3820
3812
  copy.t("labels.creator"),
3821
3813
  " ",
3822
3814
  resolveTaskCreatorLabel(selectedTask)
@@ -3828,7 +3820,7 @@ function IssueManagerTaskMetadataRow({
3828
3820
  className: "h-4 w-px shrink-0 bg-[var(--line-2)]"
3829
3821
  }
3830
3822
  ),
3831
- /* @__PURE__ */ jsxs12("span", { className: "text-[12px] font-normal leading-[1.3]", children: [
3823
+ /* @__PURE__ */ jsxs12("span", { className: "text-[11px] font-normal leading-[1.3]", children: [
3832
3824
  copy.t("labels.createdAt"),
3833
3825
  " ",
3834
3826
  formatIssueManagerTimestamp(selectedTask.createdAtUnix) || "-"
@@ -3840,7 +3832,7 @@ function IssueManagerTaskAcceptanceCard({
3840
3832
  }) {
3841
3833
  const copy = controller.copy;
3842
3834
  return /* @__PURE__ */ jsxs12("div", { className: "grid gap-2 rounded-md bg-[var(--transparency-block)] px-3 py-2", children: [
3843
- /* @__PURE__ */ jsxs12("div", { className: "min-w-0 text-[12px] font-normal leading-[1.45] text-[var(--text-secondary)] [overflow-wrap:anywhere]", children: [
3835
+ /* @__PURE__ */ jsxs12("div", { className: "min-w-0 text-[11px] font-normal leading-[1.45] text-[var(--text-secondary)] [overflow-wrap:anywhere]", children: [
3844
3836
  /* @__PURE__ */ jsx14("span", { className: "font-semibold text-[var(--text-primary)]", children: copy.t("labels.taskAcceptance") }),
3845
3837
  /* @__PURE__ */ jsx14("span", { className: "mx-1 text-[var(--text-tertiary)]", children: "\xB7" }),
3846
3838
  /* @__PURE__ */ jsx14("span", { children: copy.t("messages.taskAcceptanceHint") })
@@ -3849,7 +3841,7 @@ function IssueManagerTaskAcceptanceCard({
3849
3841
  /* @__PURE__ */ jsx14(
3850
3842
  Button9,
3851
3843
  {
3852
- className: "h-7 px-2 text-xs text-[var(--state-danger)] hover:bg-[var(--on-danger)] hover:text-[var(--state-danger)]",
3844
+ className: "h-7 px-2 text-[11px] text-[var(--state-danger)] hover:bg-[var(--on-danger)] hover:text-[var(--state-danger)]",
3853
3845
  type: "button",
3854
3846
  variant: "ghost",
3855
3847
  onClick: () => void controller.setSelectedTaskStatus("not_started"),
@@ -3859,7 +3851,7 @@ function IssueManagerTaskAcceptanceCard({
3859
3851
  /* @__PURE__ */ jsx14(
3860
3852
  Button9,
3861
3853
  {
3862
- className: "h-7 px-2.5 text-xs",
3854
+ className: "h-7 px-2.5 text-[11px]",
3863
3855
  type: "button",
3864
3856
  variant: "secondary",
3865
3857
  onClick: () => void controller.setSelectedTaskStatus("completed"),
@@ -3910,14 +3902,14 @@ function IssueManagerTaskDrawerEditBody({
3910
3902
  "div",
3911
3903
  {
3912
3904
  className: `${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay0ClassName}`,
3913
- children: /* @__PURE__ */ jsx14("h2", { className: "m-0 text-[17px] font-semibold leading-[1.35] text-[var(--text-primary)]", children: title })
3905
+ children: /* @__PURE__ */ jsx14("h2", { className: "m-0 text-[15px] font-semibold leading-[1.35] text-[var(--text-primary)]", children: title })
3914
3906
  }
3915
3907
  ),
3916
3908
  /* @__PURE__ */ jsxs12("div", { className: "flex w-full min-w-0 flex-col gap-6", children: [
3917
3909
  /* @__PURE__ */ jsxs12(
3918
3910
  "label",
3919
3911
  {
3920
- className: `flex w-full min-w-0 flex-col gap-2 text-sm font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay1ClassName}`,
3912
+ className: `flex w-full min-w-0 flex-col gap-2 text-[13px] font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay1ClassName}`,
3921
3913
  children: [
3922
3914
  /* @__PURE__ */ jsx14("span", { className: "leading-5", children: copy.t("labels.title") }),
3923
3915
  /* @__PURE__ */ jsx14(
@@ -3934,7 +3926,7 @@ function IssueManagerTaskDrawerEditBody({
3934
3926
  /* @__PURE__ */ jsxs12(
3935
3927
  "div",
3936
3928
  {
3937
- className: `flex min-h-0 w-full min-w-0 flex-col gap-2 text-sm font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay2ClassName}`,
3929
+ className: `flex min-h-0 w-full min-w-0 flex-col gap-2 text-[13px] font-semibold text-[var(--text-secondary)] ${issueManagerEditorRiseInClassName} ${issueManagerEditorRiseInDelay2ClassName}`,
3938
3930
  children: [
3939
3931
  /* @__PURE__ */ jsx14("span", { className: "leading-5", children: copy.t("labels.content") }),
3940
3932
  /* @__PURE__ */ jsx14(
@@ -4458,8 +4450,8 @@ function IssueManagerShellEmptyState({
4458
4450
  }) {
4459
4451
  return /* @__PURE__ */ jsx16("div", { className: "flex h-full min-h-[320px] items-center justify-center px-10 py-10", children: /* @__PURE__ */ jsxs14("div", { className: "grid max-w-[420px] justify-items-center gap-2 text-center", children: [
4460
4452
  emptyIllustration ? /* @__PURE__ */ jsx16("div", { className: "mb-4", children: emptyIllustration }) : null,
4461
- /* @__PURE__ */ jsx16("h2", { className: "text-[14px] font-semibold leading-5 text-[var(--text-primary)]", children: controller.copy.t("messages.noIssues") }),
4462
- /* @__PURE__ */ jsx16("p", { className: "max-w-[420px] text-[14px] leading-5 text-[var(--text-secondary)]", children: controller.copy.t("emptyState") }),
4453
+ /* @__PURE__ */ jsx16("h2", { className: "text-[13px] font-semibold leading-5 text-[var(--text-primary)]", children: controller.copy.t("messages.noIssues") }),
4454
+ /* @__PURE__ */ jsx16("p", { className: "max-w-[420px] text-[13px] leading-5 text-[var(--text-secondary)]", children: controller.copy.t("emptyState") }),
4463
4455
  /* @__PURE__ */ jsxs14(
4464
4456
  Button10,
4465
4457
  {
@@ -4538,7 +4530,7 @@ function IssueManagerTopicSelector({
4538
4530
  {
4539
4531
  "aria-label": topicLabel,
4540
4532
  className: cn10(
4541
- "max-w-[220px] gap-1 rounded-md border-0 bg-transparent text-sm font-normal shadow-none hover:bg-transparent focus:bg-transparent focus-visible:border-0 focus-visible:bg-transparent focus-visible:ring-0 active:bg-transparent aria-expanded:bg-transparent [&[data-state=open]>svg]:rotate-180",
4533
+ "max-w-[220px] gap-1 rounded-md border-0 bg-transparent text-[13px] font-normal shadow-none hover:bg-transparent focus:bg-transparent focus-visible:border-0 focus-visible:bg-transparent focus-visible:ring-0 active:bg-transparent aria-expanded:bg-transparent [&[data-state=open]>svg]:rotate-180",
4542
4534
  className
4543
4535
  ),
4544
4536
  size: "sm",
@@ -4655,7 +4647,7 @@ function IssueManagerTopicSelector({
4655
4647
  ] })
4656
4648
  ] }) }, topic.topicId);
4657
4649
  }),
4658
- topics.length === 0 ? /* @__PURE__ */ jsx17("div", { className: "px-3 py-2 text-xs leading-4 text-[var(--text-tertiary)]", children: copy.t("messages.topicListEmpty") }) : null,
4650
+ topics.length === 0 ? /* @__PURE__ */ jsx17("div", { className: "px-3 py-2 text-[11px] leading-4 text-[var(--text-tertiary)]", children: copy.t("messages.topicListEmpty") }) : null,
4659
4651
  /* @__PURE__ */ jsx17(DropdownMenuSeparator, {}),
4660
4652
  /* @__PURE__ */ jsxs15(
4661
4653
  DropdownMenuItem2,
@@ -4766,7 +4758,7 @@ function IssueManagerTopicDialog({
4766
4758
  /* @__PURE__ */ jsx17(DialogHeader, { children: /* @__PURE__ */ jsx17(DialogTitle, { children: dialogTitle }) }),
4767
4759
  /* @__PURE__ */ jsxs15("form", { className: "grid gap-4", onSubmit: submit, children: [
4768
4760
  /* @__PURE__ */ jsxs15("label", { className: "grid gap-2", children: [
4769
- /* @__PURE__ */ jsx17("span", { className: "text-xs font-medium leading-4 text-[var(--text-secondary)]", children: copy.t("labels.topicTitle") }),
4761
+ /* @__PURE__ */ jsx17("span", { className: "text-[11px] font-medium leading-4 text-[var(--text-secondary)]", children: copy.t("labels.topicTitle") }),
4770
4762
  /* @__PURE__ */ jsx17(
4771
4763
  Input3,
4772
4764
  {
@@ -4778,7 +4770,7 @@ function IssueManagerTopicDialog({
4778
4770
  )
4779
4771
  ] }),
4780
4772
  /* @__PURE__ */ jsxs15("label", { className: "grid gap-2", children: [
4781
- /* @__PURE__ */ jsx17("span", { className: "text-xs font-medium leading-4 text-[var(--text-secondary)]", children: copy.t("labels.topicSummary") }),
4773
+ /* @__PURE__ */ jsx17("span", { className: "text-[11px] font-medium leading-4 text-[var(--text-secondary)]", children: copy.t("labels.topicSummary") }),
4782
4774
  /* @__PURE__ */ jsx17(
4783
4775
  Textarea,
4784
4776
  {
@@ -5030,4 +5022,4 @@ export {
5030
5022
  IssueManagerNode,
5031
5023
  IssueManagerNodeHeader
5032
5024
  };
5033
- //# sourceMappingURL=chunk-DLB2WIV6.js.map
5025
+ //# sourceMappingURL=chunk-CHQTHPRL.js.map