@eightshift/frontend-libs-tailwind 2.1.1 → 2.3.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 +421 -100
- package/linters/base.config.mjs +20 -21
- package/package.json +20 -18
- package/scripts/editor/editor.js +16 -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.3.0]
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Re-added React ESLint rules.
|
|
14
|
+
|
|
15
|
+
### Updated
|
|
16
|
+
|
|
17
|
+
- Fixed ESLint configs.
|
|
18
|
+
- Updated dependencies.
|
|
19
|
+
|
|
20
|
+
## [2.2.0]
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Default portalling for `Options` components in `GutenbergBlock` (`document.body` by default). Can be disabled by passing `optionsPortalElement={false}`.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Updated dependencies.
|
|
29
|
+
|
|
30
|
+
|
|
9
31
|
## [2.1.1]
|
|
10
32
|
|
|
11
33
|
### Changed
|
|
@@ -262,6 +284,8 @@ Co-authored with @piqusy
|
|
|
262
284
|
- Initial release.
|
|
263
285
|
|
|
264
286
|
[Unreleased]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/master...HEAD
|
|
287
|
+
[2.3.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.2.0...2.3.0
|
|
288
|
+
[2.2.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.1.1...2.2.0
|
|
265
289
|
[2.1.1]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.1.0...2.1.1
|
|
266
290
|
[2.1.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.0.7...2.1.0
|
|
267
291
|
[2.0.7]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.0.6...2.0.7
|