@shift72/core-template 1.9.15 → 1.9.16

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/shift72/core-template/compare/1.9.15...HEAD)
3
+ ## [Unreleased](https://github.com/shift72/core-template/compare/1.9.16...HEAD)
4
4
 
5
5
  ### Added
6
6
 
@@ -8,6 +8,12 @@
8
8
 
9
9
  ### Fixed
10
10
 
11
+ ## [1.9.16](https://github.com/shift72/core-template/compare/1.9.15...1.9.16)
12
+
13
+ ### Changed
14
+
15
+ - updated theme.json to support new Checkout theme format
16
+
11
17
  ## [1.9.15](https://github.com/shift72/core-template/compare/1.9.14...1.9.15)
12
18
 
13
19
  ### Added
package/kibble.json CHANGED
@@ -194,5 +194,5 @@
194
194
  "pageSize": 0
195
195
  }
196
196
  ],
197
- "coreTemplateVersion": "1.9.15"
197
+ "coreTemplateVersion": "1.9.16"
198
198
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shift72/core-template",
3
- "version": "1.9.15",
3
+ "version": "1.9.16",
4
4
  "description": "Shift72 core template",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -1,4 +1,4 @@
1
1
  {
2
- "primaryColor": {{isset(site.Config["theme_primary_color"]) ? json(site.Config["theme_primary_color"]) : "null" | raw }},
3
- "mode": {{site.Config["theme_mode"] == "dark" ? "\"dark\"" : "\"light\"" | raw}}
2
+ "colorScheme": {{site.Config["theme_mode"] == "light" ? "\"light\"" : "\"dark\"" | raw}},
3
+ "colorPrimary": {{isset(site.Config["theme_primary_color"]) ? json(site.Config["theme_primary_color"]) : "null" | raw }}
4
4
  }