@genesislcap/blank-app-seed 2.5.7 → 2.5.8
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/.genx/configure.js +5 -3
- package/.genx/package.json +1 -1
- package/.genx/templates/route.template.hbs +1 -1
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
package/.genx/configure.js
CHANGED
|
@@ -14,8 +14,10 @@ module.exports = async (data, utils) => {
|
|
|
14
14
|
|
|
15
15
|
registerPartials(utils);
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
data.routes
|
|
18
|
+
.map((route) => ({ ...route, layoutKey: `${route.name}_${Date.now()}` }))
|
|
19
|
+
.forEach((route) => {
|
|
20
|
+
generateRoute(route, utils);
|
|
21
|
+
});
|
|
20
22
|
|
|
21
23
|
};
|
package/.genx/package.json
CHANGED
|
@@ -3,7 +3,7 @@ import type { {{pascalCase route.name}} } from './{{kebabCase route.name}}';
|
|
|
3
3
|
|
|
4
4
|
export const {{pascalCase route.name}}Template = html<{{pascalCase route.name}}>`
|
|
5
5
|
{{#if route.tiles}}
|
|
6
|
-
<zero-layout auto-save-key="{{route.
|
|
6
|
+
<zero-layout auto-save-key="{{route.layoutKey}}">
|
|
7
7
|
<zero-layout-region>
|
|
8
8
|
{{#each route.tiles}}
|
|
9
9
|
<zero-layout-item title="{{this.title}}">
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.5.8](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.7...v2.5.8) (2024-04-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* create unique layout autosave key attribute GENC-266 (#171) 8fd91ec
|
|
9
|
+
|
|
3
10
|
## [2.5.7](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.6...v2.5.7) (2024-04-03)
|
|
4
11
|
|
|
5
12
|
|