@genesislcap/blank-app-seed 2.5.7 → 2.5.9
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/.github/CODEOWNERS +1 -1
- package/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.main.iml +8 -0
- package/.idea/modules/server/build/internal-modules/{{{appName}}-generated-view → {{appName}}-dictionary-cache/{{appName}}-generated-view}/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-view.iml +2 -2
- package/.idea/modules.xml +5 -1
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-fields/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-fields.iml +0 -8
- /package/.idea/modules/server/build/internal-modules/{{{appName}}-generated-hft/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-hft.iml → {{appName}}-dictionary-cache/{{appName}}-generated-hft/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-hft.main.iml} +0 -0
- /package/.idea/modules/server/build/internal-modules/{{{appName}}-generated-sysdef/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-sysdef.iml → {{appName}}-dictionary-cache/{{appName}}-generated-sysdef/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-sysdef.main.iml} +0 -0
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/.github/CODEOWNERS
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# for reference see https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-code-owners#example-of-a-codeowners-file
|
|
2
2
|
|
|
3
|
-
* @cistov @derekdon @MrBrunoWolff @skawian @kievitsp @jacinpoz @khouari1
|
|
3
|
+
* @cistov @derekdon @MrBrunoWolff @skawian @kievitsp @jacinpoz @khouari1 @rafaelnferreira
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module version="4">
|
|
3
|
+
<component name="AdditionalModuleElements">
|
|
4
|
+
<content url="file://$MODULE_DIR$/../../../../../../server/build/internal-modules/{{appName}}-dictionary-cache/build/generated/resources" dumb="true">
|
|
5
|
+
<excludeFolder url="file://$MODULE_DIR$/../../../../../../server/build/internal-modules/{{appName}}-dictionary-cache/build/generated/resources" />
|
|
6
|
+
</content>
|
|
7
|
+
</component>
|
|
8
|
+
</module>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<module version="4">
|
|
3
3
|
<component name="AdditionalModuleElements">
|
|
4
|
-
<content url="file://$MODULE_DIR$/../../../../../../../server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-view" dumb="true">
|
|
5
|
-
<excludeFolder url="file://$MODULE_DIR$/../../../../../../../server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-view" />
|
|
4
|
+
<content url="file://$MODULE_DIR$/../../../../../../../server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-view/build/generated/resources" dumb="true">
|
|
5
|
+
<excludeFolder url="file://$MODULE_DIR$/../../../../../../../server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-view/build/generated/resources" />
|
|
6
6
|
</content>
|
|
7
7
|
</component>
|
|
8
8
|
</module>
|
package/.idea/modules.xml
CHANGED
|
@@ -2,8 +2,12 @@
|
|
|
2
2
|
<project version="4">
|
|
3
3
|
<component name="ProjectModuleManager">
|
|
4
4
|
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.main.iml" filepath="$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.main.iml" />
|
|
6
6
|
<module fileurl="file://$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-fields/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-fields.main.iml" filepath="$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-fields/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-fields.main.iml" />
|
|
7
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-dao/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-dao.main.iml" filepath="$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-dao/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-dao.main.iml" />
|
|
8
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-view/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-view.main.iml" filepath="$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-view/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-view.main.iml" />
|
|
9
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-hft/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-hft.main.iml" filepath="$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-hft/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-hft.main.iml" />
|
|
10
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-sysdef/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-sysdef.main.iml" filepath="$PROJECT_DIR$/.idea/modules/server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-sysdef/genesisproduct-{{appName}}.{{appName}}-dictionary-cache.{{appName}}-generated-sysdef.main.iml" />
|
|
7
11
|
</modules>
|
|
8
12
|
</component>
|
|
9
13
|
</project>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.5.9](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.8...v2.5.9) (2024-04-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update .idea module files for exclusions GENC-205 (#172) e6fb5ec
|
|
9
|
+
|
|
10
|
+
## [2.5.8](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.7...v2.5.8) (2024-04-04)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* create unique layout autosave key attribute GENC-266 (#171) 8fd91ec
|
|
16
|
+
|
|
3
17
|
## [2.5.7](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.6...v2.5.7) (2024-04-03)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module version="4">
|
|
3
|
-
<component name="AdditionalModuleElements">
|
|
4
|
-
<content url="file://$MODULE_DIR$/../../../../../../../server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-fields" dumb="true">
|
|
5
|
-
<excludeFolder url="file://$MODULE_DIR$/../../../../../../../server/build/internal-modules/{{appName}}-dictionary-cache/{{appName}}-generated-fields" />
|
|
6
|
-
</content>
|
|
7
|
-
</component>
|
|
8
|
-
</module>
|