@eightshift/frontend-libs-tailwind 2.0.0 → 2.0.2
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/.gitattributes +8 -30
- package/.github/workflows/ci.yml +2 -1
- package/CHANGELOG.md +26 -1
- package/bun.lock +1009 -0
- package/package.json +14 -17
- package/schemas/globalManifest.json +5 -0
- package/scripts/components/picker-placeholder.js +1 -1
- package/scripts/editor/colors.js +2 -2
- package/scripts/editor/options.js +1 -1
- package/scripts/editor/registration.js +4 -7
- package/scripts/editor/store.js +19 -0
- package/scripts/helpers/cookies.js +24 -16
- package/scripts/plugins/yoast-seo.js +71 -45
- package/webpack/base.mjs +10 -5
- package/webpack/helpers.mjs +1 -5
- package/webpack/index.mjs +0 -1
- package/webpack/project.mjs +0 -5
- package/bun.lockb +0 -0
- package/readme/packages.md +0 -74
package/.gitattributes
CHANGED
|
@@ -1,37 +1,15 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Exclude these files from release archives.
|
|
3
|
-
# This will also make them unavailable when using Composer with `--prefer-dist`.
|
|
4
|
-
# If you develop for WPCS using Composer, use `--prefer-source`.
|
|
5
|
-
# https://blog.madewithlove.be/post/gitattributes/
|
|
6
|
-
#
|
|
7
1
|
/.github export-ignore
|
|
8
|
-
/.
|
|
9
|
-
/
|
|
10
|
-
/documentation export-ignore
|
|
11
|
-
/package export-ignore
|
|
12
|
-
/setup export-ignore
|
|
13
|
-
/CODE_OF_CONDUCT.md export-ignore
|
|
14
|
-
/CHANGELOG.md export-ignore=
|
|
15
|
-
/readme export-ignore
|
|
2
|
+
/.husky export-ignore
|
|
3
|
+
/schemas export-ignore
|
|
16
4
|
|
|
17
|
-
/.eslintignore export-ignore
|
|
18
|
-
/.eslintrc export-ignore
|
|
19
5
|
/.gitattributes export-ignore
|
|
20
6
|
/.gitignore export-ignore
|
|
7
|
+
/.prettierrc export-ignore
|
|
21
8
|
/.stylelintrc export-ignore
|
|
22
|
-
/
|
|
23
|
-
/
|
|
9
|
+
/CHANGELOG.md export-ignore
|
|
10
|
+
/CODE_OF_CONDUCT.md export-ignore
|
|
11
|
+
/eslint.config.mjs export-ignore
|
|
12
|
+
/LICENSE export-ignore
|
|
13
|
+
/README.md export-ignore
|
|
24
14
|
|
|
25
|
-
#
|
|
26
|
-
# Auto detect text files and perform LF normalization
|
|
27
|
-
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
|
|
28
|
-
#
|
|
29
15
|
* text=auto
|
|
30
|
-
|
|
31
|
-
#
|
|
32
|
-
# The above will handle all files NOT found below
|
|
33
|
-
#
|
|
34
|
-
*.md text
|
|
35
|
-
*.php text
|
|
36
|
-
*.inc text
|
|
37
|
-
*.js text
|
package/.github/workflows/ci.yml
CHANGED
|
@@ -25,7 +25,8 @@ jobs:
|
|
|
25
25
|
node: [ 'latest' ]
|
|
26
26
|
steps:
|
|
27
27
|
- name: Lint assets
|
|
28
|
-
uses: infinum/eightshift-deploy-actions-public/.github/actions/lint
|
|
28
|
+
uses: infinum/eightshift-deploy-actions-public/.github/actions/lint/assets@main
|
|
29
29
|
with:
|
|
30
30
|
NODE_VERSION: ${{ matrix.node }}
|
|
31
31
|
PROJECT_PATH: '/'
|
|
32
|
+
USE_BUN: 'true'
|
package/CHANGELOG.md
CHANGED
|
@@ -6,21 +6,42 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [2.0.2]
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Broken import on mjs files.
|
|
14
|
+
|
|
15
|
+
## [2.0.1]
|
|
16
|
+
|
|
17
|
+
### Removed
|
|
18
|
+
|
|
19
|
+
- Some @wordpress packages, they will use the WP-provided ones now.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Updated dependencies.
|
|
24
|
+
- Tweaked Webpack config not to externalize "@wordpress-dom-ready"
|
|
25
|
+
|
|
9
26
|
## [2.0.0]
|
|
10
27
|
|
|
11
28
|
### Removed
|
|
29
|
+
|
|
12
30
|
- All legacy built-in blocks.
|
|
13
31
|
|
|
14
32
|
### Changed
|
|
33
|
+
|
|
15
34
|
- Updated WordPress dependency extraction webpack plugin - React 19 is now supported!
|
|
16
35
|
- Updated dependencies.
|
|
17
36
|
|
|
18
37
|
## [1.5.0]
|
|
19
38
|
|
|
20
39
|
### Added
|
|
40
|
+
|
|
21
41
|
- Rive-related strings to `FilePicker`.
|
|
22
42
|
|
|
23
43
|
### Changed
|
|
44
|
+
|
|
24
45
|
- Updated dependencies.
|
|
25
46
|
- Updated internal components to use ES UIC 2.x/3.x classnames.
|
|
26
47
|
|
|
@@ -33,6 +54,7 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
|
|
|
33
54
|
## [1.4.7]
|
|
34
55
|
|
|
35
56
|
### Changed
|
|
57
|
+
|
|
36
58
|
- Fixed Image component "image" part tailwind class output if not set.
|
|
37
59
|
- Fix Image component responsive output Co-authored-by: goran.alkovic@infinum.com
|
|
38
60
|
- Add "Auto" width to wrapperContent and set is as defaults
|
|
@@ -43,6 +65,7 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
|
|
|
43
65
|
## [1.4.6]
|
|
44
66
|
|
|
45
67
|
### Changed
|
|
68
|
+
|
|
46
69
|
- Tweaked webpack config to properly include font files from `@eightshfit` packages from `node_modules`.
|
|
47
70
|
- Added a new `buildWpRestUrl` helper for easily fetching WP REST URLs. (Similar to `fetchFromWpRest`, but allows you control over how you fetch).
|
|
48
71
|
- Updated dependencies.
|
|
@@ -75,7 +98,7 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
|
|
|
75
98
|
- Fixing Yoast SEO plugin helpers.
|
|
76
99
|
- Manifests in some default blocks not using `base` as a `part`.
|
|
77
100
|
- Image sizing in the default Image block when set to stretch.
|
|
78
|
-
- Class for gradient
|
|
101
|
+
- Class for gradient _top_ direction in wrapper.
|
|
79
102
|
|
|
80
103
|
## [1.4.2]
|
|
81
104
|
|
|
@@ -193,6 +216,8 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
|
|
|
193
216
|
- Initial release.
|
|
194
217
|
|
|
195
218
|
[Unreleased]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/master...HEAD
|
|
219
|
+
[2.0.2]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.0.1...2.0.2
|
|
220
|
+
[2.0.1]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/2.0.0...2.0.1
|
|
196
221
|
[2.0.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/1.5.0...2.0.0
|
|
197
222
|
[1.5.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/1.4.8...1.5.0
|
|
198
223
|
[1.4.8]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/1.4.7...1.4.8
|