@nextcloud/files 3.10.1 → 3.10.2

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.
@@ -1,6 +1,5 @@
1
1
  import { Node } from '../files/node';
2
2
  import { View } from './view';
3
-
4
3
  interface ColumnData {
5
4
  /** Unique column ID */
6
5
  id: string;
@@ -1,6 +1,5 @@
1
1
  import { View } from './view';
2
2
  import { TypedEventTarget } from 'typescript-event-target';
3
-
4
3
  /**
5
4
  * The event is emitted when the navigation view was updated.
6
5
  * It contains the new active view in the `detail` attribute.
@@ -1,7 +1,6 @@
1
1
  import { Folder } from '../files/folder';
2
2
  import { Node } from '../files/node';
3
3
  import { Column } from './column.js';
4
-
5
4
  export type ContentsWithRoot = {
6
5
  folder: Folder;
7
6
  contents: Node[];
@@ -1,5 +1,4 @@
1
1
  import { Folder, Node } from './index';
2
-
3
2
  export declare enum NewMenuEntryCategory {
4
3
  /**
5
4
  * For actions where the user is intended to upload from their device
@@ -1,6 +1,5 @@
1
1
  import { INode } from '../files/node';
2
2
  import { SortingOrder } from './sorting';
3
-
4
3
  export declare enum FilesSortingMode {
5
4
  Name = "basename",
6
5
  Modified = "mtime",
@@ -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.5.0
8
+ version: 4.5.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.10.1",
3
+ "version": "3.10.2",
4
4
  "description": "Nextcloud files utils",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -13,7 +13,7 @@
13
13
  "require": "./dist/index.cjs"
14
14
  },
15
15
  "./dav": {
16
- "types": "./dist/dav.d.ts",
16
+ "types": "./dist/dav/index.d.ts",
17
17
  "import": "./dist/dav.mjs",
18
18
  "require": "./dist/dav.cjs"
19
19
  }
@@ -56,20 +56,21 @@
56
56
  },
57
57
  "homepage": "https://github.com/nextcloud-libraries/nextcloud-files",
58
58
  "devDependencies": {
59
- "@codecov/vite-plugin": "^1.5.1",
59
+ "@codecov/vite-plugin": "^1.8.0",
60
60
  "@nextcloud/eslint-config": "^8.4.1",
61
61
  "@nextcloud/event-bus": "^3.3.1",
62
62
  "@nextcloud/typings": "^1.9.1",
63
- "@nextcloud/vite-config": "^2.2.2",
64
- "@types/node": "^22.10.1",
65
- "@vitest/coverage-istanbul": "^2.1.8",
66
- "fast-xml-parser": "^4.5.0",
67
- "jsdom": "^25.0.1",
63
+ "@nextcloud/vite-config": "^2.3.1",
64
+ "@types/node": "^22.13.1",
65
+ "@vitest/coverage-istanbul": "^3.0.5",
66
+ "fast-xml-parser": "^4.5.1",
67
+ "jsdom": "^26.0.0",
68
68
  "tslib": "^2.8.1",
69
- "typedoc": "^0.27.3",
70
- "typescript": "^5.7.2",
71
- "vite": "^5.4.11",
72
- "vitest": "^2.0.2"
69
+ "typedoc": "^0.27.6",
70
+ "typedoc-plugin-missing-exports": "^3.1.0",
71
+ "typescript": "^5.7.3",
72
+ "vite": "^6.1.0",
73
+ "vitest": "^3.0.4"
73
74
  },
74
75
  "dependencies": {
75
76
  "@nextcloud/auth": "^2.4.0",
@@ -78,10 +79,9 @@
78
79
  "@nextcloud/logger": "^3.0.2",
79
80
  "@nextcloud/paths": "^2.2.1",
80
81
  "@nextcloud/router": "^3.0.1",
81
- "@nextcloud/sharing": "^0.2.3",
82
+ "@nextcloud/sharing": "^0.2.4",
82
83
  "cancelable-promise": "^4.3.1",
83
84
  "is-svg": "^5.1.0",
84
- "typedoc-plugin-missing-exports": "^3.1.0",
85
85
  "typescript-event-target": "^1.1.1",
86
86
  "webdav": "^5.7.1"
87
87
  }