filestack-js 3.24.1 → 3.26.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.
- package/CHANGELOG.md +15 -0
- package/build/browser/filestack.esm.js +2 -2
- package/build/browser/filestack.esm.js.map +1 -1
- package/build/browser/filestack.min.js +2 -2
- package/build/browser/filestack.min.js.map +1 -1
- package/build/browser/filestack.umd.js +2 -2
- 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/upload.js +2 -1
- package/build/main/lib/api/upload/uploaders/s3.js +2 -1
- package/build/main/lib/client.js +3 -1
- package/build/main/lib/picker.d.ts +20 -2
- package/build/main/lib/picker.js +1 -1
- 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 +24 -14
- package/build/main/schema/picker.schema.js +28 -9
- 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/upload.js +2 -1
- package/build/module/lib/api/upload/uploaders/s3.js +2 -1
- package/build/module/lib/client.js +3 -1
- package/build/module/lib/picker.d.ts +20 -2
- package/build/module/lib/picker.js +1 -1
- 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 +24 -14
- package/build/module/schema/picker.schema.js +28 -9
- package/package.json +1 -1
- package/src/config.ts +1 -1
- package/src/lib/api/upload/upload.ts +1 -0
- package/src/lib/api/upload/uploaders/s3.ts +1 -0
- package/src/lib/client.ts +2 -0
- package/src/lib/picker.ts +16 -2
- package/src/schema/picker.schema.ts +30 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
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.26.0](https://github.com/filestack/filestack-js/compare/v3.25.0...v3.26.0) (2023-03-30)
|
|
6
|
+
### Feature
|
|
7
|
+
* **picker:** Added possibility to predefine the results for the imagesearch in Picker
|
|
8
|
+
* **picker:** Picker - Display Unsplash Search and Good Old Image Search as two tabs of one "source"
|
|
9
|
+
|
|
10
|
+
## [3.25.0](https://github.com/filestack/filestack-js/compare/v3.24.1...v3.25.0) (2021-10-05)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **picker:** bump version ([f047a4e](https://github.com/filestack/filestack-js/commit/f047a4e1552ba433f7f9f027c74cc4bf4ff90b8e))
|
|
16
|
+
* **picker:** Picker paste event add configuration options ([#454](https://github.com/filestack/filestack-js/issues/454)) ([a5a249b](https://github.com/filestack/filestack-js/commit/a5a249b0c9233f8eae7160bf5eef0f05dccd0920))
|
|
17
|
+
* **picker:** support callback for tags ([#461](https://github.com/filestack/filestack-js/issues/461)) ([cf89ee0](https://github.com/filestack/filestack-js/commit/cf89ee08486dc28f352a2523a96b53e7c58ce3b0))
|
|
18
|
+
* **upload:** emit event on file upload start ([#462](https://github.com/filestack/filestack-js/issues/462)) ([c676b48](https://github.com/filestack/filestack-js/commit/c676b483c8af519f0360fee0bf84446df1810494))
|
|
19
|
+
|
|
5
20
|
### [3.24.1](https://github.com/filestack/filestack-js/compare/v3.24.0...v3.24.1) (2021-07-28)
|
|
6
21
|
|
|
7
22
|
|