@eightshift/frontend-libs-tailwind 2.4.0 → 3.0.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 +12 -0
- package/bun.lock +201 -179
- package/package.json +19 -19
- package/scripts/components/block-inserter.js +2 -3
- package/scripts/components/file-picker.js +19 -10
- package/scripts/components/link-section-editor.js +3 -3
- package/scripts/components/media-picker.js +1 -13
- package/scripts/components/picker-placeholder.js +10 -11
- package/scripts/components/settings/settings.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [3.0.0]
|
|
10
|
+
|
|
11
|
+
### Updated
|
|
12
|
+
|
|
13
|
+
- Updated dependencies.
|
|
14
|
+
- Bumped min. version of `@eightshift/ui-components` to 7.0.0.
|
|
15
|
+
|
|
16
|
+
### Removed
|
|
17
|
+
|
|
18
|
+
- Removed `__useSmartImageNext` prop from `MediaPicker`.
|
|
19
|
+
|
|
9
20
|
## [2.4.0]
|
|
10
21
|
|
|
11
22
|
### Added
|
|
@@ -295,6 +306,7 @@ Co-authored with @piqusy
|
|
|
295
306
|
- Initial release.
|
|
296
307
|
|
|
297
308
|
[Unreleased]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/master...HEAD
|
|
309
|
+
[3.0.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.4.0...3.0.0
|
|
298
310
|
[2.4.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.3.0...2.4.0
|
|
299
311
|
[2.3.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.2.0...2.3.0
|
|
300
312
|
[2.2.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.1.1...2.2.0
|