@kyro-cms/admin 0.7.0 → 0.9.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/dist/index.cjs +6 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/kyro-cms.d.ts +4 -2
- package/src/lib/config.ts +8 -3
package/dist/index.cjs
CHANGED
|
@@ -1396,17 +1396,22 @@ function getAdminConfig(template = "blog") {
|
|
|
1396
1396
|
collections2.push(...Object.values(templates.minimalCollections));
|
|
1397
1397
|
globals2.push(...templates.coreSettingsGlobals);
|
|
1398
1398
|
break;
|
|
1399
|
+
case "starter":
|
|
1400
|
+
collections2.push(...Object.values(templates.starterCollections));
|
|
1401
|
+
globals2.push(...templates.coreSettingsGlobals);
|
|
1402
|
+
break;
|
|
1399
1403
|
case "blog":
|
|
1400
1404
|
collections2.push(...Object.values(templates.blogCollections));
|
|
1401
1405
|
globals2.push(...templates.coreSettingsGlobals);
|
|
1402
1406
|
break;
|
|
1403
1407
|
case "ecommerce":
|
|
1404
1408
|
collections2.push(...Object.values(templates.ecommerceCollections));
|
|
1405
|
-
globals2.push(...templates.
|
|
1409
|
+
globals2.push(...templates.allSettingsGlobals);
|
|
1406
1410
|
break;
|
|
1407
1411
|
case "kitchen-sink":
|
|
1408
1412
|
collections2.push(
|
|
1409
1413
|
...Object.values(templates.minimalCollections),
|
|
1414
|
+
...Object.values(templates.starterCollections),
|
|
1410
1415
|
...Object.values(templates.blogCollections),
|
|
1411
1416
|
...Object.values(templates.ecommerceCollections),
|
|
1412
1417
|
...Object.values(templates.kitchenSinkCollections)
|