@qnote/q-ai-note 1.0.9 → 1.0.10

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.
@@ -770,21 +770,26 @@ h2 {
770
770
  }
771
771
 
772
772
  .lane-tree-title-line {
773
- display: inline-flex;
773
+ display: flex;
774
+ flex-wrap: wrap;
774
775
  align-items: center;
775
776
  gap: 4px;
776
777
  min-width: 0;
777
778
  }
778
779
 
779
- .lane-tree-summary-line {
780
- display: inline-flex;
781
- align-items: center;
782
- gap: 4px;
783
- min-height: 14px;
780
+ .lane-tree-title-line .dense-node-name {
781
+ flex: 1 1 auto;
782
+ min-width: 96px;
784
783
  }
785
784
 
786
- .lane-tree-node-main.stack-summary .dense-node-name {
787
- max-width: calc(var(--lane-name-max, 154px) + 28px);
785
+ .lane-tree-title-line .node-entity-mini-badges,
786
+ .lane-tree-title-line .node-meta {
787
+ flex: 0 0 auto;
788
+ max-width: 100%;
789
+ }
790
+
791
+ .lane-tree-title-line .node-meta {
792
+ white-space: nowrap;
788
793
  }
789
794
 
790
795
  .lane-tree-node {
@@ -318,7 +318,6 @@ function renderDenseLaneNode(node, byParent, expandedIdSet, entitySummaryByNodeI
318
318
  const hasChildren = children.length > 0;
319
319
  const isExpanded = expandedIdSet.has(node.id);
320
320
  const nodeSummary = entitySummaryByNodeId?.[node.id] || { issue: 0, knowledge: 0, capability: 0 };
321
- const useStackSummary = depth >= 3;
322
321
  const summaryBadgeHtml = renderEntityBadges(nodeSummary);
323
322
  const summaryAssigneeHtml = showAssignee && node.assignee ? `<span class="node-meta">@${esc(node.assignee)}</span>` : '';
324
323
  const previewHtml = renderEntityPreviewBoxes(node.id, entityRowsByNodeId, elementPreviewMode);
@@ -342,18 +341,12 @@ function renderDenseLaneNode(node, byParent, expandedIdSet, entitySummaryByNodeI
342
341
  </button>
343
342
  ` : ''}
344
343
  <span class="node-status ${esc(node.status)}"></span>
345
- <div class="lane-tree-node-main ${useStackSummary ? 'stack-summary' : ''}">
344
+ <div class="lane-tree-node-main">
346
345
  <div class="lane-tree-title-line">
347
346
  <span class="dense-node-name">${esc(node.name)}</span>
348
- ${!useStackSummary ? summaryBadgeHtml : ''}
349
- ${!useStackSummary ? summaryAssigneeHtml : ''}
347
+ ${summaryBadgeHtml}
348
+ ${summaryAssigneeHtml}
350
349
  </div>
351
- ${useStackSummary && (summaryBadgeHtml || summaryAssigneeHtml) ? `
352
- <div class="lane-tree-summary-line">
353
- ${summaryBadgeHtml}
354
- ${summaryAssigneeHtml}
355
- </div>
356
- ` : ''}
357
350
  </div>
358
351
  ${readonly ? '' : `
359
352
  <div class="node-actions">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qnote/q-ai-note",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "type": "module",
5
5
  "description": "AI-assisted personal work sandbox and diary system",
6
6
  "main": "dist/server/index.js",