claude-kanban 0.6.1 → 0.6.2
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/bin/cli.js +16 -16
- package/dist/bin/cli.js.map +1 -1
- package/dist/server/index.js +16 -16
- package/dist/server/index.js.map +1 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -4273,33 +4273,33 @@ function renderRoadmapFeature(feature) {
|
|
|
4273
4273
|
|
|
4274
4274
|
function renderRoadmapModal() {
|
|
4275
4275
|
return \`
|
|
4276
|
-
<div class="modal-backdrop" onclick="state.showModal = null; render();">
|
|
4277
|
-
<div class="modal-content max-w-lg
|
|
4278
|
-
<div class="
|
|
4279
|
-
<
|
|
4280
|
-
<button onclick="state.showModal = null; render();" class="
|
|
4276
|
+
<div class="modal-backdrop fixed inset-0 flex items-center justify-center z-50" onclick="if(event.target === event.currentTarget) { state.showModal = null; render(); }">
|
|
4277
|
+
<div class="modal-content card rounded-xl w-full max-w-lg mx-4">
|
|
4278
|
+
<div class="px-6 py-4 border-b border-canvas-200 flex justify-between items-center">
|
|
4279
|
+
<h3 class="font-display font-semibold text-canvas-800 text-lg">\u{1F5FA}\uFE0F Generate Roadmap</h3>
|
|
4280
|
+
<button onclick="state.showModal = null; render();" class="text-canvas-400 hover:text-canvas-600 text-xl leading-none">×</button>
|
|
4281
4281
|
</div>
|
|
4282
|
-
<div class="
|
|
4283
|
-
<p class="text-sm text-canvas-500 mb-
|
|
4282
|
+
<div class="p-6">
|
|
4283
|
+
<p class="text-sm text-canvas-500 mb-6">
|
|
4284
4284
|
Generate a strategic feature roadmap by analyzing your project structure and optionally researching competitors.
|
|
4285
4285
|
</p>
|
|
4286
4286
|
|
|
4287
|
-
<div class="space-y-
|
|
4288
|
-
<label class="flex items-
|
|
4287
|
+
<div class="space-y-5">
|
|
4288
|
+
<label class="flex items-start gap-3 cursor-pointer p-3 rounded-lg border border-canvas-200 hover:border-canvas-300 transition-colors">
|
|
4289
4289
|
<input type="checkbox"
|
|
4290
4290
|
\${state.roadmapEnableCompetitors ? 'checked' : ''}
|
|
4291
4291
|
onchange="state.roadmapEnableCompetitors = this.checked; render();"
|
|
4292
|
-
class="w-4 h-4 accent-accent">
|
|
4292
|
+
class="w-4 h-4 mt-0.5 accent-accent">
|
|
4293
4293
|
<div>
|
|
4294
4294
|
<span class="text-sm font-medium text-canvas-700">Enable competitor research</span>
|
|
4295
|
-
<p class="text-xs text-canvas-400">Use web search to analyze competitors (takes longer)</p>
|
|
4295
|
+
<p class="text-xs text-canvas-400 mt-0.5">Use web search to analyze competitors (takes longer)</p>
|
|
4296
4296
|
</div>
|
|
4297
4297
|
</label>
|
|
4298
4298
|
|
|
4299
4299
|
<div>
|
|
4300
|
-
<label class="text-sm font-medium text-canvas-700">Additional context (optional)</label>
|
|
4300
|
+
<label class="block text-sm font-medium text-canvas-700 mb-1.5">Additional context (optional)</label>
|
|
4301
4301
|
<textarea
|
|
4302
|
-
class="input w-full
|
|
4302
|
+
class="input w-full text-sm"
|
|
4303
4303
|
rows="3"
|
|
4304
4304
|
placeholder="E.g., Focus on mobile features, target enterprise users..."
|
|
4305
4305
|
oninput="state.roadmapCustomPrompt = this.value;"
|
|
@@ -4307,9 +4307,9 @@ function renderRoadmapModal() {
|
|
|
4307
4307
|
</div>
|
|
4308
4308
|
</div>
|
|
4309
4309
|
</div>
|
|
4310
|
-
<div class="
|
|
4311
|
-
<button onclick="state.showModal = null; render();" class="btn btn-ghost">Cancel</button>
|
|
4312
|
-
<button onclick="generateRoadmap(); state.showModal = null; render();" class="btn btn-primary">
|
|
4310
|
+
<div class="px-6 py-4 border-t border-canvas-200 flex justify-end gap-3">
|
|
4311
|
+
<button onclick="state.showModal = null; render();" class="btn btn-ghost px-4 py-2">Cancel</button>
|
|
4312
|
+
<button onclick="generateRoadmap(); state.showModal = null; render();" class="btn btn-primary px-4 py-2">
|
|
4313
4313
|
\u{1F680} Generate Roadmap
|
|
4314
4314
|
</button>
|
|
4315
4315
|
</div>
|