@genesislcap/blank-app-seed 5.2.0-prerelease.16 → 5.2.0-prerelease.18
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/package.json +1 -1
- package/.genx/templates/angular/component/component.hbs +1 -1
- package/.genx/templates/angular/grid.hbs +2 -1
- package/.genx/templates/react/component/component.hbs +1 -1
- package/.genx/templates/react/grid.hbs +2 -1
- package/.genx/templates/web-components/entityManager.hbs +1 -1
- package/.genx/templates/web-components/grid.hbs +2 -1
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
package/.genx/package.json
CHANGED
|
@@ -53,7 +53,7 @@ export class {{pascalCase tile.componentName}} {
|
|
|
53
53
|
uischema = createFormSchema;{{/if}}{{#if tile.config.updateFormUiSchema}}
|
|
54
54
|
updateFormSchema = updateFormSchema;{{/if}}{{#if tile.config.gridOptions}}
|
|
55
55
|
gridOptions = gridOptions as GridOptionsConfig;{{/if}}{{#if tile.config.reqrep}}
|
|
56
|
-
reqrep = { pollingInterval: 5000 };{{/if}}{{#if tile.config.columns}}
|
|
56
|
+
reqrep = { pollingInterval: 5000, requestAutoSetup: false };{{/if}}{{#if tile.config.columns}}
|
|
57
57
|
columnDefs = [
|
|
58
58
|
...columnDefs,
|
|
59
59
|
{{#if tile.config.customEvents}}
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
isSnapshot="{{config.snapshot}}"
|
|
12
12
|
{{/if}}
|
|
13
13
|
{{#if config.reqrep}}
|
|
14
|
-
|
|
14
|
+
polling-interval="5000"
|
|
15
|
+
request-auto-setup="false"
|
|
15
16
|
{{/if}}
|
|
16
17
|
{{#if config.gridOptions}}
|
|
17
18
|
[deferredGridOptions]="{ onRowClicked: gridOptions.onRowClicked }"
|
|
@@ -113,7 +113,7 @@ export const {{pascalCase tile.componentName}}: React.FC = () => {
|
|
|
113
113
|
const deferredGridOptions: { onRowClicked: GridOptionsConfig.onRowClicked } = { onRowClicked: gridOptionsTile?.onRowClicked }
|
|
114
114
|
{{/if}}
|
|
115
115
|
{{#if tile.config.reqrep~}}
|
|
116
|
-
const reqrep: { pollingInterval: number } = { pollingInterval: 5000 };
|
|
116
|
+
const reqrep: { pollingInterval: number } = { pollingInterval: 5000, requestAutoSetup: false };
|
|
117
117
|
{{/if}}
|
|
118
118
|
{{#if tile.config.type~}}
|
|
119
119
|
const chartConfig: {
|
|
@@ -15,7 +15,8 @@ hasUserPermission('{{config.permissions.viewRight}}') ? (
|
|
|
15
15
|
isSnapshot="{{config.snapshot}}"
|
|
16
16
|
{{/if}}
|
|
17
17
|
{{#if config.reqrep~}}
|
|
18
|
-
|
|
18
|
+
polling-interval="5000"
|
|
19
|
+
request-auto-setup="false"
|
|
19
20
|
{{/if}}
|
|
20
21
|
{{#if config.gridOptions~}}
|
|
21
22
|
deferredGridOptions={deferredGridOptions}
|
|
@@ -32,7 +32,7 @@ ${whenElse(
|
|
|
32
32
|
:datasourceConfig=${() => ({isSnapshot: {{ config.snapshot }} })}
|
|
33
33
|
{{/if}}
|
|
34
34
|
{{#if config.reqrep}}
|
|
35
|
-
:datasourceConfig=${() => ({pollingInterval: 5000 })}
|
|
35
|
+
:datasourceConfig=${() => ({pollingInterval: 5000, requestAutoSetup: false})}
|
|
36
36
|
{{/if}}
|
|
37
37
|
{{#if config.entityName}}
|
|
38
38
|
entityLabel="{{ config.entityName }}"
|
|
@@ -13,7 +13,8 @@ ${whenElse(
|
|
|
13
13
|
isSnapshot="{{config.snapshot}}"
|
|
14
14
|
{{/if}}
|
|
15
15
|
{{#if config.reqrep}}
|
|
16
|
-
|
|
16
|
+
request-auto-setup="false"
|
|
17
|
+
polling-interval="5000"
|
|
17
18
|
{{/if}}
|
|
18
19
|
{{#if config.gridOptions}}
|
|
19
20
|
:deferredGridOptions=${() => ({ onRowClicked: gridOptions?.onRowClicked })}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.2.0-prerelease.18](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.2.0-prerelease.17...v5.2.0-prerelease.18) (2025-07-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* correct config for reqReps in grid GENC-1168 8e3927c
|
|
9
|
+
* correct config for reqReps in grid GENC-1168 (#487) f9170d4
|
|
10
|
+
|
|
11
|
+
## [5.2.0-prerelease.17](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.2.0-prerelease.16...v5.2.0-prerelease.17) (2025-07-10)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* set requestAutoSetup: false as default for ReqRep GENC-1168 ed6c00a
|
|
17
|
+
* set requestAutoSetup: false as default for ReqRep GENC-1168 (#486) e2a4679
|
|
18
|
+
|
|
3
19
|
## [5.2.0-prerelease.16](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.2.0-prerelease.15...v5.2.0-prerelease.16) (2025-07-10)
|
|
4
20
|
|
|
5
21
|
|