kandown 0.34.1 → 0.34.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/CHANGELOG.md +12 -0
- package/bin/kandown.js +1 -1
- package/bin/tui.js +1 -1
- package/dist/index.html +171 -162
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.34.3 — 2026-07-24 — "Motion Polish — Drag Fix"
|
|
4
|
+
|
|
5
|
+
- **Fixed**: **Cards could not be dragged between columns after the v0.34.2 motion polish** — the `motion.div` → plain `<div>` replacement in `Card.tsx` accidentally dropped the `draggable` HTML5 attribute and the `{...dragHandlers}` spread that wire `onDragStart` / `onDragEnd` on each card. Without `draggable` the native HTML5 drag event never fired, so the board could not move tasks between columns even though the click-to-open drawer still worked. Restores `draggable` and `dragHandlers` on the card container; no other behavior changes.
|
|
6
|
+
|
|
7
|
+
## 0.34.2 — 2026-07-24 — "Motion Polish"
|
|
8
|
+
|
|
9
|
+
- **Fixed**: **0.5s pop on card hover, click, and rearrange** — `Card`, `Column`, and `CardStack` were animating through Framer Motion springs (`whileHover={{ y: -1 }}`, `whileTap={{ scale: 0.99 }}` with stiffness 500) AND Tailwind `transition-all duration-150` at the same time, on the same `transform` property. The result was the half-second scale snap the user reported on every interaction. Replaced with a hybrid system:
|
|
10
|
+
- `src/lib/motion-presets.ts` defines a single source of truth (`EASE_OUT`, `EASE_SPRING`, `MOTION.fade / toast / progressBar / heroStagger / headerCrossfade / panel / rotate / chip`) for every `motion.*` and `AnimatePresence` in the project.
|
|
11
|
+
- `Card`, `Column`, `CardStack` (collapsed + expanded), `Board` wrapper, and `ListView` sections are now plain `<div>` / `<section>`. Drag is HTML5-native, so `layout` animation was unused and the spring was just overhead.
|
|
12
|
+
- Hover/active feedback is now Tailwind only: `hover:-translate-y-px active:scale-[0.99] active:duration-75` with `transition-[border-color,box-shadow,transform] duration-200 ease-out`. CSS, no overshoot, no animation on `all`.
|
|
13
|
+
- Motion is reserved for what actually needs an enter/exit curve: `Toaster`, `EmptyState` hero, `Header` boot cross-fade, `SubtaskEditor` progress bar (no more spring on `width` — it jittered), `SubtaskItem` panel expand/collapse + chevron rotate, and `Header` filter chips. Every site uses the corresponding `MOTION.*` token.
|
|
14
|
+
|
|
3
15
|
## 0.34.1 — 2026-07-24 — "CLI Modular Refactor"
|
|
4
16
|
|
|
5
17
|
- **Fixed**: **Web UI no longer opens to the project picker** — running `kandown` inside a project directory now auto-opens both the TUI and the Web UI directly into that project again. The regression was a missing `window.__KANDOWN_ROOT__` injection into the served HTML (lost during an earlier partial refactor); the web app now correctly detects server mode and skips the manual folder-picker screen.
|
package/bin/kandown.js
CHANGED
package/bin/tui.js
CHANGED
|
@@ -54963,7 +54963,7 @@ import { spawn, execSync } from "child_process";
|
|
|
54963
54963
|
import { homedir as homedir2 } from "os";
|
|
54964
54964
|
|
|
54965
54965
|
// src/lib/version.ts
|
|
54966
|
-
var KANDOWN_VERSION = "0.34.
|
|
54966
|
+
var KANDOWN_VERSION = "0.34.3";
|
|
54967
54967
|
|
|
54968
54968
|
// src/cli/lib/updater.ts
|
|
54969
54969
|
import { fileURLToPath as fileURLToPath2 } from "url";
|