@eightshift/frontend-libs-tailwind 2.0.7 → 2.1.1
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 +16 -0
- package/bun.lock +157 -173
- package/package.json +21 -21
- package/scripts/components/file-picker.js +38 -87
- package/scripts/components/media-picker.js +42 -53
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,20 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [2.1.1]
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Updated Media and File pickers image component.
|
|
14
|
+
|
|
15
|
+
## [2.1.0]
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- New design for Media and File pickers.
|
|
20
|
+
- `ManageFileButton` now has a prop passthrough for the button inside (`buttonProps`).
|
|
21
|
+
- Updated dependencies.
|
|
22
|
+
|
|
9
23
|
## [2.0.7]
|
|
10
24
|
|
|
11
25
|
### Added
|
|
@@ -248,6 +262,8 @@ Co-authored with @piqusy
|
|
|
248
262
|
- Initial release.
|
|
249
263
|
|
|
250
264
|
[Unreleased]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/master...HEAD
|
|
265
|
+
[2.1.1]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.1.0...2.1.1
|
|
266
|
+
[2.1.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.0.7...2.1.0
|
|
251
267
|
[2.0.7]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.0.6...2.0.7
|
|
252
268
|
[2.0.6]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.0.5...2.0.6
|
|
253
269
|
[2.0.5]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.0.4...2.0.5
|