@genesislcap/blank-app-seed 5.13.5 → 5.14.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/.genx/package.json +1 -1
- package/.genx/templates/react/component/component.gridOptions.hbs +2 -2
- package/.genx/templates/react/component/component.hbs +2 -2
- package/.genx/templates/web-components/component/component.gridOptions.hbs +2 -2
- package/CHANGELOG.md +8 -0
- package/client-tmp/react/package.json +2 -6
- package/client-tmp/react/src/share/genesis-components.ts +2 -12
- package/client-tmp/web-components/src/components/components.ts +2 -12
- package/package.json +1 -1
package/.genx/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{#if tile.config.gridOptions~}}
|
|
2
|
-
import {
|
|
2
|
+
import { GridOptions } from '@ag-grid-community/core';
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#if tile.config.hasNumberFormatter~}}
|
|
5
5
|
import { getNumberFormatter } from '@genesislcap/foundation-utils';
|
|
@@ -12,5 +12,5 @@ import { sendEventOnChannel } from '../../../utils';
|
|
|
12
12
|
{{/if}}
|
|
13
13
|
|
|
14
14
|
{{#if tile.config.gridOptions~}}
|
|
15
|
-
export const gridOptions:
|
|
15
|
+
export const gridOptions: GridOptions = {{{ tile.config.gridOptions }}}
|
|
16
16
|
{{/if}}
|
|
@@ -44,7 +44,7 @@ import { filterFormSchema as filterFormSchemaTile } from './{{pascalCase tile.ti
|
|
|
44
44
|
import { columnDefs as columnDefsTile } from './{{pascalCase tile.title}}ColumnDefs';
|
|
45
45
|
{{/if}}
|
|
46
46
|
{{#if tile.config.gridOptions~}}
|
|
47
|
-
import {
|
|
47
|
+
import { GridOptions } from '@ag-grid-community/core';
|
|
48
48
|
import { gridOptions as gridOptionsTile } from './{{pascalCase tile.title}}GridOptions';
|
|
49
49
|
{{/if}}
|
|
50
50
|
{{#if tile.config.eventing.publishEventName}}
|
|
@@ -108,7 +108,7 @@ export const {{pascalCase tile.componentName}}: React.FC = () => {
|
|
|
108
108
|
{{/if}}
|
|
109
109
|
{{#ifEquals tile.type 'grid-pro'}}
|
|
110
110
|
{{#ifAny tile.config.gridOptions tile.config.eventing.publishEventName}}
|
|
111
|
-
const gridOptions:
|
|
111
|
+
const gridOptions: GridOptions = {
|
|
112
112
|
{{#if tile.config.gridOptions}}
|
|
113
113
|
onRowClicked: gridOptionsTile?.onRowClicked,
|
|
114
114
|
{{/if}}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GridOptions } from '@ag-grid-community/core';
|
|
2
2
|
import { getNumberFormatter, getDateFormatter } from '@genesislcap/foundation-utils';
|
|
3
3
|
{{#if route.FDC3EventHandlersEnabled}}
|
|
4
4
|
import { sendEventOnChannel } from '../../../utils';
|
|
5
5
|
{{/if}}
|
|
6
6
|
{{#if tile.config.gridOptions}}
|
|
7
|
-
export const gridOptions:
|
|
7
|
+
export const gridOptions: GridOptions = {{{ tile.config.gridOptions }}}
|
|
8
8
|
{{/if}}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.14.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.13.5...v5.14.0) (2026-06-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* bump UI to use ag grid 35 GENC-1288 e10d73b
|
|
9
|
+
* bump UI to use ag grid 35 GENC-1288 (#583) 375a74f
|
|
10
|
+
|
|
3
11
|
## [5.13.5](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.13.4...v5.13.5) (2026-06-02)
|
|
4
12
|
|
|
5
13
|
|
|
@@ -36,12 +36,8 @@
|
|
|
36
36
|
"prettier": "@genesislcap/prettier-config",
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@microsoft/fast-react-wrapper": ">=0.3.25",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"@ag-grid-community/csv-export": "29.2.0",
|
|
42
|
-
"@ag-grid-enterprise/core": "29.2.0",
|
|
43
|
-
"@ag-grid-enterprise/row-grouping": "29.2.0",
|
|
44
|
-
"@ag-grid-enterprise/server-side-row-model": "29.2.0",
|
|
39
|
+
"ag-grid-community": "35.0.0",
|
|
40
|
+
"ag-grid-enterprise": "35.0.0",
|
|
45
41
|
"@genesislcap/foundation-comms": "{{versions.UI}}",
|
|
46
42
|
"@genesislcap/foundation-criteria": "{{versions.UI}}",
|
|
47
43
|
"@genesislcap/foundation-entity-management": "{{versions.UI}}",
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { getApp } from '@genesislcap/foundation-shell/app';
|
|
2
2
|
import { g2plotChartsComponents } from '@genesislcap/g2plot-chart';
|
|
3
3
|
import * as rapidDesignSystem from '@genesislcap/rapid-design-system';
|
|
4
|
-
import { rapidGridComponents,
|
|
4
|
+
import { rapidGridComponents, rapidGridProBeta } from '@genesislcap/rapid-grid-pro';
|
|
5
5
|
import { FoundationRouter } from '@genesislcap/foundation-ui';
|
|
6
6
|
import { avoidTreeShaking } from '@genesislcap/foundation-utils';
|
|
7
|
-
import { css } from "@genesislcap/web-core";
|
|
8
7
|
|
|
9
8
|
/**
|
|
10
9
|
* Ensure tree shaking doesn't remove these.
|
|
@@ -28,16 +27,7 @@ export async function registerComponents() {
|
|
|
28
27
|
.provideDesignSystem()
|
|
29
28
|
.register(
|
|
30
29
|
rapidDesignSystem.baseComponents,
|
|
31
|
-
|
|
32
|
-
styles: css`
|
|
33
|
-
${rapidGridProStyles}
|
|
34
|
-
.ag-theme-genesis-rapid,
|
|
35
|
-
.ag-theme-genesis-rapid-dark,
|
|
36
|
-
.ag-theme-genesis-rapid-light {
|
|
37
|
-
--ag-selected-row-background-color: var(--accent-fill-rest);
|
|
38
|
-
}
|
|
39
|
-
`,
|
|
40
|
-
}),
|
|
30
|
+
rapidGridProBeta(),
|
|
41
31
|
rapidGridComponents,
|
|
42
32
|
g2plotChartsComponents,
|
|
43
33
|
);
|
|
@@ -6,8 +6,7 @@ import { FoundationRouter } from '@genesislcap/foundation-ui';
|
|
|
6
6
|
import * as zeroDesignSystem from '@genesislcap/foundation-zero';
|
|
7
7
|
import { g2plotChartsComponents } from '@genesislcap/g2plot-chart';
|
|
8
8
|
import * as rapidDesignSystem from '@genesislcap/rapid-design-system';
|
|
9
|
-
import { rapidGridComponents,
|
|
10
|
-
import { css } from '@genesislcap/web-core';
|
|
9
|
+
import { rapidGridComponents, rapidGridProBeta } from '@genesislcap/rapid-grid-pro';
|
|
11
10
|
import { NotPermittedComponent } from './not-permitted-component';
|
|
12
11
|
|
|
13
12
|
/**
|
|
@@ -35,16 +34,7 @@ export async function registerComponents() {
|
|
|
35
34
|
|
|
36
35
|
rapidDesignSystem.provideDesignSystem().register(
|
|
37
36
|
rapidDesignSystem.baseComponents,
|
|
38
|
-
|
|
39
|
-
styles: css`
|
|
40
|
-
${rapidGridProStyles}
|
|
41
|
-
.ag-theme-genesis-rapid,
|
|
42
|
-
.ag-theme-genesis-rapid-dark,
|
|
43
|
-
.ag-theme-genesis-rapid-light {
|
|
44
|
-
--ag-selected-row-background-color: var(--accent-fill-rest);
|
|
45
|
-
}
|
|
46
|
-
`,
|
|
47
|
-
}),
|
|
37
|
+
rapidGridProBeta(),
|
|
48
38
|
rapidGridComponents,
|
|
49
39
|
g2plotChartsComponents,
|
|
50
40
|
foundationLayoutComponents,
|