@eightshift/frontend-libs-tailwind 2.2.0 → 2.4.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 +431 -130
- package/linters/base.config.mjs +20 -21
- package/package.json +27 -25
- package/scripts/components/media-picker.js +13 -1
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
|
+
## [2.4.0]
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Option to try out `__SmartImageNext` in the `MediaPicker` component (via the `__useSmartImageNext` prop).
|
|
14
|
+
|
|
15
|
+
### Updated
|
|
16
|
+
|
|
17
|
+
- Updated dependencies.
|
|
18
|
+
- Bumped min. version of `@eightshift/ui-components` to 6.1.0.
|
|
19
|
+
|
|
20
|
+
## [2.3.0]
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Re-added React ESLint rules.
|
|
25
|
+
|
|
26
|
+
### Updated
|
|
27
|
+
|
|
28
|
+
- Fixed ESLint configs.
|
|
29
|
+
- Updated dependencies.
|
|
30
|
+
|
|
9
31
|
## [2.2.0]
|
|
10
32
|
|
|
11
33
|
### Added
|
|
@@ -273,6 +295,8 @@ Co-authored with @piqusy
|
|
|
273
295
|
- Initial release.
|
|
274
296
|
|
|
275
297
|
[Unreleased]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/master...HEAD
|
|
298
|
+
[2.4.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.3.0...2.4.0
|
|
299
|
+
[2.3.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.2.0...2.3.0
|
|
276
300
|
[2.2.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.1.1...2.2.0
|
|
277
301
|
[2.1.1]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.1.0...2.1.1
|
|
278
302
|
[2.1.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.0.7...2.1.0
|