@pitcher/canvas-ui 2026.1.13-141745-beta → 2026.1.13-143130-beta
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/canvas-ui.js +5 -1
- package/canvas-ui.js.map +1 -1
- package/lib/apps/browser/stores/api.d.ts +4 -0
- package/package.json +1 -1
package/canvas-ui.js
CHANGED
|
@@ -110057,6 +110057,8 @@ function updateFolderState(folder) {
|
|
|
110057
110057
|
state$2.folderCache[subfolder.id] = {
|
|
110058
110058
|
files_count: subfolder.files_count ?? 0,
|
|
110059
110059
|
folders_count: subfolder.folders_count ?? 0,
|
|
110060
|
+
available_files_count: subfolder.available_files_count,
|
|
110061
|
+
available_folders_count: subfolder.available_folders_count,
|
|
110060
110062
|
timestamp: Date.now()
|
|
110061
110063
|
};
|
|
110062
110064
|
});
|
|
@@ -110332,7 +110334,9 @@ function init({
|
|
|
110332
110334
|
...folder,
|
|
110333
110335
|
type: "folder",
|
|
110334
110336
|
files_count: cached.files_count,
|
|
110335
|
-
folders_count: cached.folders_count
|
|
110337
|
+
folders_count: cached.folders_count,
|
|
110338
|
+
available_files_count: cached.available_files_count,
|
|
110339
|
+
available_folders_count: cached.available_folders_count
|
|
110336
110340
|
};
|
|
110337
110341
|
}
|
|
110338
110342
|
return { ...folder, type: "folder" };
|