kandown 0.34.2 → 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 +4 -0
- package/bin/kandown.js +1 -1
- package/bin/tui.js +1 -1
- package/dist/index.html +40 -40
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
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
|
+
|
|
3
7
|
## 0.34.2 — 2026-07-24 — "Motion Polish"
|
|
4
8
|
|
|
5
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:
|
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";
|