filestack-js 3.32.3 → 3.33.3
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 +5 -0
- package/README.md +0 -3
- package/build/browser/filestack.esm.js +3 -3
- package/build/browser/filestack.esm.js.map +1 -1
- package/build/browser/filestack.min.js +3 -3
- package/build/browser/filestack.min.js.map +1 -1
- package/build/browser/filestack.umd.js +3 -3
- package/build/browser/filestack.umd.js.map +1 -1
- package/build/browser/manifest.json +2 -2
- package/build/main/config.js +2 -2
- package/build/main/index.d.ts +1 -1
- package/build/main/index.js +2 -2
- package/build/main/lib/api/upload/file.d.ts +1 -0
- package/build/main/lib/api/upload/file.js +1 -1
- package/build/main/lib/api/upload/types.d.ts +1 -0
- package/build/main/lib/api/upload/types.js +1 -1
- package/build/main/lib/api/upload/upload.d.ts +2 -1
- package/build/main/lib/api/upload/upload.js +6 -2
- package/build/main/lib/api/upload/uploaders/s3.js +3 -3
- package/build/main/lib/client.js +2 -2
- package/build/main/lib/client.spec.js +30 -3
- package/build/main/lib/picker.d.ts +8 -0
- package/build/main/lib/picker.js +13 -2
- package/build/main/lib/utils/index.browser.js +1 -1
- package/build/main/lib/utils/index.node.js +1 -1
- package/build/main/lib/utils/index.spec.browser.js +1 -1
- package/build/main/schema/picker.schema.d.ts +18 -4
- package/build/main/schema/picker.schema.js +40 -30
- package/build/main/schema/upload.schema.d.ts +4 -0
- package/build/main/schema/upload.schema.js +5 -1
- package/build/module/config.js +2 -2
- package/build/module/index.d.ts +1 -1
- package/build/module/index.js +2 -2
- package/build/module/lib/api/upload/file.d.ts +1 -0
- package/build/module/lib/api/upload/file.js +1 -1
- package/build/module/lib/api/upload/types.d.ts +1 -0
- package/build/module/lib/api/upload/types.js +1 -1
- package/build/module/lib/api/upload/upload.d.ts +2 -1
- package/build/module/lib/api/upload/upload.js +6 -2
- package/build/module/lib/api/upload/uploaders/s3.js +3 -3
- package/build/module/lib/client.js +2 -2
- package/build/module/lib/client.spec.js +30 -3
- package/build/module/lib/picker.d.ts +8 -0
- package/build/module/lib/picker.js +13 -2
- package/build/module/lib/utils/index.browser.js +1 -1
- package/build/module/lib/utils/index.node.js +1 -1
- package/build/module/lib/utils/index.spec.browser.js +1 -1
- package/build/module/schema/picker.schema.d.ts +18 -4
- package/build/module/schema/picker.schema.js +40 -30
- package/build/module/schema/upload.schema.d.ts +4 -0
- package/build/module/schema/upload.schema.js +5 -1
- package/package.json +2 -2
- package/src/config.ts +1 -1
- package/src/lib/api/upload/file.ts +2 -0
- package/src/lib/api/upload/types.ts +2 -0
- package/src/lib/api/upload/upload.ts +6 -1
- package/src/lib/api/upload/uploaders/s3.ts +2 -1
- package/src/lib/client.spec.ts +25 -2
- package/src/lib/client.ts +1 -1
- package/src/lib/picker.ts +19 -1
- package/src/schema/picker.schema.ts +39 -29
- package/src/schema/upload.schema.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [3.33.3](https://github.com/filestack/filestack-js/compare/v3.32.3...v3.33.3) (2024-06-18)
|
|
6
|
+
* **picker:** Updated picker v1.28.3 with transformations-ui as default editor
|
|
7
|
+
* **fromSources:** Added back picasa as a potential source ([#567](https://github.com/filestack/filestack-js/pull/567)
|
|
8
|
+
* **fix(dependency):** Updated fast-xml-parser ([#7b862752f6](https://github.com/filestack/filestack-js/commit/7b862752f64e242e1dac9c269bab03105667cc3c)
|
|
9
|
+
|
|
5
10
|
## [3.32.3](https://github.com/filestack/filestack-js/compare/v3.32.2...v3.32.3) (2024-06-18)
|
|
6
11
|
* **fromSources:** revert version ([b2767e5](https://github.com/filestack/filestack-js/commit/b2767e5))
|
|
7
12
|
|
package/README.md
CHANGED
|
@@ -184,8 +184,6 @@ Polyfills we recommend:**
|
|
|
184
184
|
Module (for bundling):
|
|
185
185
|
* https://babeljs.io/docs/en/babel-polyfill
|
|
186
186
|
|
|
187
|
-
Script (for script tag):
|
|
188
|
-
* https://polyfill.io/v3/polyfill.min.js?features=Promise%2CSymbol%2CSymbol.iterator%2CArray.from%2CObject.assign%2CNumber.isFinite%2CString.prototype.includes
|
|
189
187
|
|
|
190
188
|
## Development
|
|
191
189
|
|
|
@@ -239,7 +237,6 @@ If you're using [Sentry](https://sentry.io/welcome/) to monitor your application
|
|
|
239
237
|
## Versioning
|
|
240
238
|
|
|
241
239
|
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags](https://github.com/filestack/filestack-js/tags) on this repository.
|
|
242
|
-
|
|
243
240
|
## Contributing
|
|
244
241
|
|
|
245
242
|
We follow the [conventional commits](https://conventionalcommits.org/) specification to ensure consistent commit messages and changelog formatting.
|