x-ipe 1.0.22__py3-none-any.whl → 1.0.23__py3-none-any.whl

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.
@@ -430,6 +430,17 @@ class WorkplaceManager {
430
430
  this.downloadFile(node.path, node.name);
431
431
  });
432
432
  actionBtns.appendChild(downloadBtn);
433
+
434
+ // Rename button for files
435
+ const renameBtn = document.createElement('button');
436
+ renameBtn.className = 'workplace-tree-action-btn workplace-tree-rename-btn';
437
+ renameBtn.innerHTML = '<i class="bi bi-pencil"></i>';
438
+ renameBtn.title = 'Rename file';
439
+ renameBtn.addEventListener('click', (e) => {
440
+ e.stopPropagation();
441
+ this.startFileRename(li, node.path, node.name);
442
+ });
443
+ actionBtns.appendChild(renameBtn);
433
444
  }
434
445
 
435
446
  // Delete button
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: x-ipe
3
- Version: 1.0.22
3
+ Version: 1.0.23
4
4
  Summary: X-IPE: AI-powered development framework
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.12
@@ -85,7 +85,7 @@ x_ipe/static/js/features/project-switcher.js,sha256=PpmOBkUHnl508OmywDPJqqM9AZ7j
85
85
  x_ipe/static/js/features/sidebar.js,sha256=00NCOzIRS7zsaXytFCG2tquFDmglywNkE89L3ImeWUU,30703
86
86
  x_ipe/static/js/features/stage-toolbox.js,sha256=sAztFeGFBzgvIXO0jdw6XK2kwd5CieJV3ULcm50umHQ,22621
87
87
  x_ipe/static/js/features/voice-input.js,sha256=5YpvtfhlwPWcDZqstaszOP3BfKQyy-oOF84ZPyGtSSQ,16247
88
- x_ipe/static/js/features/workplace.js,sha256=6LCxG4fLL_Ghid9X5ALRkJQeY2Mf4VYQOiUtGhlBT14,88012
88
+ x_ipe/static/js/features/workplace.js,sha256=AIL-exn6YMprqGhr16oDX5CY-QWZrbrqsJ7Mg-z9Bps,88593
89
89
  x_ipe/static/js/lib/architecture-dsl/bundle.js,sha256=QwOewNVc5Vi8dEYS6mXG4l3HFbmD9UZ_wTOBTzvDBP4,28961
90
90
  x_ipe/static/js/lib/architecture-dsl/html-renderer.js,sha256=I1b17Lo6Rhc5xg28dIK7CcB5G-LCuTSjne1dZU6j6es,18405
91
91
  x_ipe/static/js/lib/architecture-dsl/index.js,sha256=KlrxsSYtevthcm_qPszEGiZpMJ73okKne66zncpSlms,5039
@@ -1244,8 +1244,8 @@ x_ipe/resources/skills/x-ipe-skill-creator/templates/references/examples.md,sha2
1244
1244
  x_ipe/resources/skills/xlsx/LICENSE.txt,sha256=efbY9bQnJS-jscEezb22v2ELlE91MLTeePdw84dBz6o,1467
1245
1245
  x_ipe/resources/skills/xlsx/SKILL.md,sha256=AgzNtZMiV7ZsY47BFX6iSNV_pSyMAfH2i1WbWXDH3zU,10632
1246
1246
  x_ipe/resources/skills/xlsx/recalc.py,sha256=qx7wyUU2uyO2xqPTJ2mwQB7DzIXnPCR9V03YTsc68V0,6408
1247
- x_ipe-1.0.22.dist-info/METADATA,sha256=93yC-kRYsIc9w_xnXDFHPiQSGcEC-dclRpvCUqbe19o,637
1248
- x_ipe-1.0.22.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
1249
- x_ipe-1.0.22.dist-info/entry_points.txt,sha256=b787rsvZAIjLgjBzB87D_BE8yu6DCqBqv9zv4F6_j6M,41
1250
- x_ipe-1.0.22.dist-info/licenses/LICENSE,sha256=8lS-M88bBvSI9_8kauYvQRu03WEMnj1Q5KoxOFKFnhc,1062
1251
- x_ipe-1.0.22.dist-info/RECORD,,
1247
+ x_ipe-1.0.23.dist-info/METADATA,sha256=7HgCDMaazBfNapmbElkyHVgUwFYOJ0-m0Ns_6AJaR9s,637
1248
+ x_ipe-1.0.23.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
1249
+ x_ipe-1.0.23.dist-info/entry_points.txt,sha256=b787rsvZAIjLgjBzB87D_BE8yu6DCqBqv9zv4F6_j6M,41
1250
+ x_ipe-1.0.23.dist-info/licenses/LICENSE,sha256=8lS-M88bBvSI9_8kauYvQRu03WEMnj1Q5KoxOFKFnhc,1062
1251
+ x_ipe-1.0.23.dist-info/RECORD,,
File without changes