agkan 2.14.0 → 2.14.1

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.
@@ -1093,7 +1093,9 @@
1093
1093
  }
1094
1094
  const textarea = document.getElementById("detail-edit-body");
1095
1095
  if (textarea) {
1096
- autoResizeTextarea(textarea);
1096
+ requestAnimationFrame(() => {
1097
+ autoResizeTextarea(textarea);
1098
+ });
1097
1099
  textarea.addEventListener("input", () => {
1098
1100
  autoResizeTextarea(textarea);
1099
1101
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agkan",
3
- "version": "2.14.0",
3
+ "version": "2.14.1",
4
4
  "description": "TypeScript-based CLI task management tool with SQLite storage",
5
5
  "main": "dist/cli/index.js",
6
6
  "bin": {