@nativescript-community/ui-document-picker 1.1.23 → 1.1.24

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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.1.24](https://github.com/nativescript-community/ui-document-picker/compare/v1.1.23...v1.1.24) (2024-07-25)
7
+
8
+ **Note:** Version bump only for package @nativescript-community/ui-document-picker
9
+
6
10
  ## [1.1.23](https://github.com/nativescript-community/ui-document-picker/compare/v1.1.22...v1.1.23) (2024-07-25)
7
11
 
8
12
  **Note:** Version bump only for package @nativescript-community/ui-document-picker
package/index.ios.js CHANGED
@@ -37,7 +37,7 @@ var DocumentPickerDelegate = /** @class */ (function (_super) {
37
37
  else {
38
38
  var output = [];
39
39
  for (var i = 0; i < urls.count; i++) {
40
- output.push(urls[i].absoluteString.replace('file://', ''));
40
+ output.push(decodeURI(urls[i].absoluteString.replace('file://', '')));
41
41
  }
42
42
  this._resolve((_a = {},
43
43
  _a[this._resultKey] = output,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/ui-document-picker",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "description": "A NativeScript plugin that allows you to select files from the device.",
5
5
  "main": "index",
6
6
  "typings": "index.d.ts",
@@ -41,5 +41,5 @@
41
41
  "dependencies": {
42
42
  "@nativescript-community/perms": "^2.3.0"
43
43
  },
44
- "gitHead": "02e2dcaf5b03405c106e332f253a2666d459b99f"
44
+ "gitHead": "3252f95c136c62c5252b45e48c67c2249b8bd74e"
45
45
  }