@nextcloud/files 3.7.0 → 3.8.0

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.
@@ -57,6 +57,10 @@ interface ViewData {
57
57
  * haven't customized their sorting column
58
58
  */
59
59
  defaultSortKey?: string;
60
+ /**
61
+ * Method called to load child views if any
62
+ */
63
+ loadChildViews?: (view: View) => Promise<void>;
60
64
  }
61
65
  export declare class View implements ViewData {
62
66
  private _view;
@@ -80,5 +84,6 @@ export declare class View implements ViewData {
80
84
  get expanded(): boolean | undefined;
81
85
  set expanded(expanded: boolean | undefined);
82
86
  get defaultSortKey(): string | undefined;
87
+ get loadChildViews(): ((view: View) => Promise<void>) | undefined;
83
88
  }
84
89
  export {};
@@ -5,7 +5,7 @@ version: 3.3.1
5
5
  license: GPL-3.0-or-later
6
6
 
7
7
  fast-xml-parser
8
- version: 4.4.0
8
+ version: 4.4.1
9
9
  license: MIT
10
10
 
11
11
  is-svg
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextcloud/files",
3
- "version": "3.7.0",
3
+ "version": "3.8.0",
4
4
  "description": "Nextcloud files utils",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -56,14 +56,14 @@
56
56
  "@nextcloud/event-bus": "^3.3.1",
57
57
  "@nextcloud/typings": "^1.9.1",
58
58
  "@nextcloud/vite-config": "^2.1.0",
59
- "@types/node": "^20.14.11",
60
- "@vitest/coverage-istanbul": "^2.0.3",
61
- "fast-xml-parser": "^4.4.0",
62
- "jsdom": "^24.1.0",
59
+ "@types/node": "^22.1.0",
60
+ "@vitest/coverage-istanbul": "^2.0.5",
61
+ "fast-xml-parser": "^4.4.1",
62
+ "jsdom": "^24.1.1",
63
63
  "tslib": "^2.6.3",
64
- "typedoc": "^0.26.4",
65
- "typescript": "^5.5.3",
66
- "vite": "^5.3.4",
64
+ "typedoc": "^0.26.5",
65
+ "typescript": "^5.5.4",
66
+ "vite": "^5.3.5",
67
67
  "vitest": "^2.0.2"
68
68
  },
69
69
  "dependencies": {
@@ -71,13 +71,13 @@
71
71
  "@nextcloud/capabilities": "^1.2.0",
72
72
  "@nextcloud/l10n": "^3.1.0",
73
73
  "@nextcloud/logger": "^3.0.2",
74
- "@nextcloud/paths": "^2.2.0",
74
+ "@nextcloud/paths": "^2.2.1",
75
75
  "@nextcloud/router": "^3.0.1",
76
- "@nextcloud/sharing": "^0.2.2",
76
+ "@nextcloud/sharing": "^0.2.3",
77
77
  "cancelable-promise": "^4.3.1",
78
78
  "is-svg": "^5.0.1",
79
79
  "typedoc-plugin-missing-exports": "^3.0.0",
80
80
  "typescript-event-target": "^1.1.1",
81
- "webdav": "^5.6.0"
81
+ "webdav": "^5.7.0"
82
82
  }
83
83
  }