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/server/index.js
CHANGED
|
@@ -3945,33 +3945,33 @@ function renderRoadmapFeature(feature) {
|
|
|
3945
3945
|
|
|
3946
3946
|
function renderRoadmapModal() {
|
|
3947
3947
|
return \`
|
|
3948
|
-
<div class="modal-backdrop" onclick="state.showModal = null; render();">
|
|
3949
|
-
<div class="modal-content max-w-lg
|
|
3950
|
-
<div class="
|
|
3951
|
-
<
|
|
3952
|
-
<button onclick="state.showModal = null; render();" class="
|
|
3948
|
+
<div class="modal-backdrop fixed inset-0 flex items-center justify-center z-50" onclick="if(event.target === event.currentTarget) { state.showModal = null; render(); }">
|
|
3949
|
+
<div class="modal-content card rounded-xl w-full max-w-lg mx-4">
|
|
3950
|
+
<div class="px-6 py-4 border-b border-canvas-200 flex justify-between items-center">
|
|
3951
|
+
<h3 class="font-display font-semibold text-canvas-800 text-lg">\u{1F5FA}\uFE0F Generate Roadmap</h3>
|
|
3952
|
+
<button onclick="state.showModal = null; render();" class="text-canvas-400 hover:text-canvas-600 text-xl leading-none">×</button>
|
|
3953
3953
|
</div>
|
|
3954
|
-
<div class="
|
|
3955
|
-
<p class="text-sm text-canvas-500 mb-
|
|
3954
|
+
<div class="p-6">
|
|
3955
|
+
<p class="text-sm text-canvas-500 mb-6">
|
|
3956
3956
|
Generate a strategic feature roadmap by analyzing your project structure and optionally researching competitors.
|
|
3957
3957
|
</p>
|
|
3958
3958
|
|
|
3959
|
-
<div class="space-y-
|
|
3960
|
-
<label class="flex items-
|
|
3959
|
+
<div class="space-y-5">
|
|
3960
|
+
<label class="flex items-start gap-3 cursor-pointer p-3 rounded-lg border border-canvas-200 hover:border-canvas-300 transition-colors">
|
|
3961
3961
|
<input type="checkbox"
|
|
3962
3962
|
\${state.roadmapEnableCompetitors ? 'checked' : ''}
|
|
3963
3963
|
onchange="state.roadmapEnableCompetitors = this.checked; render();"
|
|
3964
|
-
class="w-4 h-4 accent-accent">
|
|
3964
|
+
class="w-4 h-4 mt-0.5 accent-accent">
|
|
3965
3965
|
<div>
|
|
3966
3966
|
<span class="text-sm font-medium text-canvas-700">Enable competitor research</span>
|
|
3967
|
-
<p class="text-xs text-canvas-400">Use web search to analyze competitors (takes longer)</p>
|
|
3967
|
+
<p class="text-xs text-canvas-400 mt-0.5">Use web search to analyze competitors (takes longer)</p>
|
|
3968
3968
|
</div>
|
|
3969
3969
|
</label>
|
|
3970
3970
|
|
|
3971
3971
|
<div>
|
|
3972
|
-
<label class="text-sm font-medium text-canvas-700">Additional context (optional)</label>
|
|
3972
|
+
<label class="block text-sm font-medium text-canvas-700 mb-1.5">Additional context (optional)</label>
|
|
3973
3973
|
<textarea
|
|
3974
|
-
class="input w-full
|
|
3974
|
+
class="input w-full text-sm"
|
|
3975
3975
|
rows="3"
|
|
3976
3976
|
placeholder="E.g., Focus on mobile features, target enterprise users..."
|
|
3977
3977
|
oninput="state.roadmapCustomPrompt = this.value;"
|
|
@@ -3979,9 +3979,9 @@ function renderRoadmapModal() {
|
|
|
3979
3979
|
</div>
|
|
3980
3980
|
</div>
|
|
3981
3981
|
</div>
|
|
3982
|
-
<div class="
|
|
3983
|
-
<button onclick="state.showModal = null; render();" class="btn btn-ghost">Cancel</button>
|
|
3984
|
-
<button onclick="generateRoadmap(); state.showModal = null; render();" class="btn btn-primary">
|
|
3982
|
+
<div class="px-6 py-4 border-t border-canvas-200 flex justify-end gap-3">
|
|
3983
|
+
<button onclick="state.showModal = null; render();" class="btn btn-ghost px-4 py-2">Cancel</button>
|
|
3984
|
+
<button onclick="generateRoadmap(); state.showModal = null; render();" class="btn btn-primary px-4 py-2">
|
|
3985
3985
|
\u{1F680} Generate Roadmap
|
|
3986
3986
|
</button>
|
|
3987
3987
|
</div>
|