@lightspeed/crane 3.3.0 → 3.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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.4.0 - 2026-04-28
4
+
5
+ ### Added
6
+
7
+ - Add layout support for custom layouts
8
+ - Add storefront design setting to catalog and category custom layouts.
9
+ - Storefront product layout icons
10
+
11
+ ### Changed
12
+
13
+ - Disable footer navigation by default in custom layouts
14
+
15
+ ### Fixed
16
+
17
+ - Exclude custom.ts when running init --template from a dot-directory path (e.g. npx cache under ~/.npm/\_npx).
18
+
3
19
  ## 3.3.0 - 2026-04-20
4
20
 
5
21
  ### Added
package/UPGRADE.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Upgrades
2
2
 
3
+ ## 3.3.0 to 3.4.0
4
+
5
+ ### Custom layouts support for storefront layouts
6
+
7
+ Custom storefront layouts now support custom layout variants defined in `layout.ts` file. To upgrade, create a `layout.ts` file that default-exports an empty array inside each custom layout's settings folder:
8
+
9
+ **Create `layout.ts` at `layouts/<page>/<layoutId>/settings/layout.ts`:**
10
+
11
+ ```ts
12
+ export default [];
13
+ ```
14
+
15
+ > **Note:** The file can be empty initially, but later you will need to populate layout variants the same way you do for sections.
16
+
3
17
  ## 3.2.1 to 3.3.0
4
18
 
5
19
  ### Custom layout settings support