@eightshift/frontend-libs-tailwind 2.3.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 +24 -0
- package/bun.lock +214 -208
- package/package.json +24 -24
- 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/picker-placeholder.js +10 -11
- package/scripts/components/settings/settings.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,28 @@ 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
|
+
|
|
20
|
+
## [2.4.0]
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Option to try out `__SmartImageNext` in the `MediaPicker` component (via the `__useSmartImageNext` prop).
|
|
25
|
+
|
|
26
|
+
### Updated
|
|
27
|
+
|
|
28
|
+
- Updated dependencies.
|
|
29
|
+
- Bumped min. version of `@eightshift/ui-components` to 6.1.0.
|
|
30
|
+
|
|
9
31
|
## [2.3.0]
|
|
10
32
|
|
|
11
33
|
### Added
|
|
@@ -284,6 +306,8 @@ Co-authored with @piqusy
|
|
|
284
306
|
- Initial release.
|
|
285
307
|
|
|
286
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
|
|
310
|
+
[2.4.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.3.0...2.4.0
|
|
287
311
|
[2.3.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.2.0...2.3.0
|
|
288
312
|
[2.2.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.1.1...2.2.0
|
|
289
313
|
[2.1.1]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.1.0...2.1.1
|