@lightspeed/crane 3.0.0 → 3.1.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 +16 -0
- package/UPGRADE.md +1 -1
- package/dist/cli.mjs +22 -22
- package/package.json +2 -2
- package/template/preview/shared/api-routes.ts +4 -4
- package/template/preview/shared/preview.ts +9 -4
- package/template/preview/shared/utils.ts +5 -0
- package/template/sections/example-section/settings/design.ts +8 -0
- package/template/sections/example-section/settings/layout.ts +3 -0
- package/template/sections/example-section/settings/translations.ts +13 -0
- package/template/sections/example-section/showcases/1.ts +3 -0
- package/template/sections/example-section/showcases/2.ts +3 -0
- package/template/sections/example-section/showcases/3.ts +3 -0
- package/template/sections/example-section/showcases/translations.ts +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.1.0 - 2026-03-12
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added `INFO` design editor type for displaying informational content with an optional CTA button
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Batch setting and showcase configuration build for faster 'build' execution.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @lightspeed/crane-api@2.1.0
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Update block name from showcases in tile API response.
|
|
18
|
+
|
|
3
19
|
## 3.0.0 - 2026-02-25
|
|
4
20
|
|
|
5
21
|
### Added
|