@genesislcap/pbc-reporting-ui 14.387.2 → 14.388.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/dts/new/main/main.template.d.ts.map +1 -1
- package/dist/dts/old/main/main.template.d.ts.map +1 -1
- package/dist/esm/new/main/main.template.js +2 -4
- package/dist/esm/old/main/main.template.js +2 -7
- package/package.json +22 -22
- package/src/new/main/main.template.ts +2 -4
- package/src/old/main/main.template.ts +2 -7
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.template.d.ts","sourceRoot":"","sources":["../../../../src/new/main/main.template.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"main.template.d.ts","sourceRoot":"","sources":["../../../../src/new/main/main.template.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AAKxC,oBAAY,YAAY;IACtB,qBAAqB,IAAA;IACrB,aAAa,IAAA;IACb,mBAAmB,IAAA;IACnB,iBAAiB,IAAA;CAClB;AACD,eAAO,MAAM,YAAY,gEAsExB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.template.d.ts","sourceRoot":"","sources":["../../../../src/old/main/main.template.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,YAAY,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"main.template.d.ts","sourceRoot":"","sources":["../../../../src/old/main/main.template.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAU9E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AAkD9C,eAAO,MAAM,YAAY,8CA0DxB,CAAC"}
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { html, ref, when, whenElse } from '@genesislcap/web-core';
|
|
2
|
+
import { avoidTreeShaking } from '@genesislcap/foundation-utils';
|
|
2
3
|
import { ReportingConfigurations } from '../components/reporting-configurations/reporting-configurations';
|
|
3
4
|
import { ConfigJourneyOrchestrator } from './edit-config/config-journey-orchestrator';
|
|
4
5
|
import { GeneratedReports } from './generated-reports/generated-reports';
|
|
5
6
|
import { ReportDestinations } from './report-destinations/report-destinations';
|
|
6
|
-
ReportingConfigurations;
|
|
7
|
-
ConfigJourneyOrchestrator;
|
|
8
|
-
ReportDestinations;
|
|
9
|
-
GeneratedReports;
|
|
7
|
+
avoidTreeShaking(ReportingConfigurations, ConfigJourneyOrchestrator, ReportDestinations, GeneratedReports);
|
|
10
8
|
export var ReportingTab;
|
|
11
9
|
(function (ReportingTab) {
|
|
12
10
|
ReportingTab[ReportingTab["REPORT_CONFIGURATIONS"] = 0] = "REPORT_CONFIGURATIONS";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { html, repeat, ref, when } from '@genesislcap/web-core';
|
|
2
|
+
import { avoidTreeShaking } from '@genesislcap/foundation-utils';
|
|
2
3
|
import { CreateEdit } from '../components/create-edit';
|
|
3
4
|
import { List } from '../components/list';
|
|
4
5
|
import { Preview } from '../components/preview';
|
|
@@ -7,13 +8,7 @@ import { SelectFilters } from '../components/select-filters';
|
|
|
7
8
|
import { Wizard } from '../components/wizard';
|
|
8
9
|
import { LayoutTwoPaneHorizontal } from '../layouts';
|
|
9
10
|
import { buttonTag, tabPanelTag, tabTag, tabsTag, toastTag } from '../tags';
|
|
10
|
-
List;
|
|
11
|
-
Preview;
|
|
12
|
-
SelectFields;
|
|
13
|
-
SelectFilters;
|
|
14
|
-
Wizard;
|
|
15
|
-
CreateEdit;
|
|
16
|
-
LayoutTwoPaneHorizontal;
|
|
11
|
+
avoidTreeShaking(List, Preview, SelectFields, SelectFilters, Wizard, CreateEdit, LayoutTwoPaneHorizontal);
|
|
17
12
|
const notificationToast = html `
|
|
18
13
|
<div class="notification-container" data-test-id="notification-container">
|
|
19
14
|
${repeat((x) => x.notifications, html `
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/pbc-reporting-ui",
|
|
3
3
|
"description": "Genesis PBC Reporting UI",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.388.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/dts/index.d.ts",
|
|
@@ -104,21 +104,21 @@
|
|
|
104
104
|
"@ag-grid-community/core": "29.2.0"
|
|
105
105
|
},
|
|
106
106
|
"dependencies": {
|
|
107
|
-
"@genesislcap/foundation-comms": "14.
|
|
108
|
-
"@genesislcap/foundation-entity-management": "14.
|
|
109
|
-
"@genesislcap/foundation-events": "14.
|
|
110
|
-
"@genesislcap/foundation-forms": "14.
|
|
111
|
-
"@genesislcap/foundation-logger": "14.
|
|
112
|
-
"@genesislcap/foundation-notifications": "14.
|
|
113
|
-
"@genesislcap/foundation-ui": "14.
|
|
114
|
-
"@genesislcap/foundation-user": "14.
|
|
115
|
-
"@genesislcap/foundation-utils": "14.
|
|
116
|
-
"@genesislcap/foundation-zero": "14.
|
|
117
|
-
"@genesislcap/foundation-zero-grid-pro": "14.
|
|
118
|
-
"@genesislcap/grid-pro": "14.
|
|
119
|
-
"@genesislcap/rapid-design-system": "14.
|
|
120
|
-
"@genesislcap/rapid-grid-pro": "14.
|
|
121
|
-
"@genesislcap/web-core": "14.
|
|
107
|
+
"@genesislcap/foundation-comms": "14.388.0",
|
|
108
|
+
"@genesislcap/foundation-entity-management": "14.388.0",
|
|
109
|
+
"@genesislcap/foundation-events": "14.388.0",
|
|
110
|
+
"@genesislcap/foundation-forms": "14.388.0",
|
|
111
|
+
"@genesislcap/foundation-logger": "14.388.0",
|
|
112
|
+
"@genesislcap/foundation-notifications": "14.388.0",
|
|
113
|
+
"@genesislcap/foundation-ui": "14.388.0",
|
|
114
|
+
"@genesislcap/foundation-user": "14.388.0",
|
|
115
|
+
"@genesislcap/foundation-utils": "14.388.0",
|
|
116
|
+
"@genesislcap/foundation-zero": "14.388.0",
|
|
117
|
+
"@genesislcap/foundation-zero-grid-pro": "14.388.0",
|
|
118
|
+
"@genesislcap/grid-pro": "14.388.0",
|
|
119
|
+
"@genesislcap/rapid-design-system": "14.388.0",
|
|
120
|
+
"@genesislcap/rapid-grid-pro": "14.388.0",
|
|
121
|
+
"@genesislcap/web-core": "14.388.0",
|
|
122
122
|
"@reduxjs/toolkit": "^2.2.5",
|
|
123
123
|
"@types/node": "^22.10.2",
|
|
124
124
|
"change-case": "^5.4.3",
|
|
@@ -127,11 +127,11 @@
|
|
|
127
127
|
"devDependencies": {
|
|
128
128
|
"@genesiscommunitysuccess/cep-fast-plugin": "^5.0.3",
|
|
129
129
|
"@genesiscommunitysuccess/custom-elements-lsp": "^5.0.3",
|
|
130
|
-
"@genesislcap/eslint-config": "14.
|
|
131
|
-
"@genesislcap/foundation-testing": "14.
|
|
132
|
-
"@genesislcap/genx": "14.
|
|
133
|
-
"@genesislcap/prettier-config": "14.
|
|
134
|
-
"@genesislcap/stylelint-config": "14.
|
|
130
|
+
"@genesislcap/eslint-config": "14.388.0",
|
|
131
|
+
"@genesislcap/foundation-testing": "14.388.0",
|
|
132
|
+
"@genesislcap/genx": "14.388.0",
|
|
133
|
+
"@genesislcap/prettier-config": "14.388.0",
|
|
134
|
+
"@genesislcap/stylelint-config": "14.388.0",
|
|
135
135
|
"@types/json-schema": "^7.0.11",
|
|
136
136
|
"playwright-lighthouse": "^4.0.0",
|
|
137
137
|
"rimraf": "^5.0.0"
|
|
@@ -140,5 +140,5 @@
|
|
|
140
140
|
"access": "public"
|
|
141
141
|
},
|
|
142
142
|
"customElements": "dist/custom-elements.json",
|
|
143
|
-
"gitHead": "
|
|
143
|
+
"gitHead": "f89254b450f163535a403149dd4c0631641115d3"
|
|
144
144
|
}
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import { html, ref, when, whenElse } from '@genesislcap/web-core';
|
|
2
|
+
import { avoidTreeShaking } from '@genesislcap/foundation-utils';
|
|
2
3
|
import { ReportingConfigurations } from '../components/reporting-configurations/reporting-configurations';
|
|
3
4
|
import { ConfigJourneyOrchestrator } from './edit-config/config-journey-orchestrator';
|
|
4
5
|
import { GeneratedReports } from './generated-reports/generated-reports';
|
|
5
6
|
import type { Reporting } from './main';
|
|
6
7
|
import { ReportDestinations } from './report-destinations/report-destinations';
|
|
7
8
|
|
|
8
|
-
ReportingConfigurations;
|
|
9
|
-
ConfigJourneyOrchestrator;
|
|
10
|
-
ReportDestinations;
|
|
11
|
-
GeneratedReports;
|
|
9
|
+
avoidTreeShaking(ReportingConfigurations, ConfigJourneyOrchestrator, ReportDestinations, GeneratedReports);
|
|
12
10
|
|
|
13
11
|
export enum ReportingTab {
|
|
14
12
|
REPORT_CONFIGURATIONS,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { html, repeat, ref, when, ViewTemplate } from '@genesislcap/web-core';
|
|
2
|
+
import { avoidTreeShaking } from '@genesislcap/foundation-utils';
|
|
2
3
|
import { CreateEdit } from '../components/create-edit';
|
|
3
4
|
import { List } from '../components/list';
|
|
4
5
|
import { Preview } from '../components/preview';
|
|
@@ -9,13 +10,7 @@ import { LayoutTwoPaneHorizontal } from '../layouts';
|
|
|
9
10
|
import { buttonTag, tabPanelTag, tabTag, tabsTag, toastTag } from '../tags';
|
|
10
11
|
import type { LegacyReporting } from './main';
|
|
11
12
|
|
|
12
|
-
List;
|
|
13
|
-
Preview;
|
|
14
|
-
SelectFields;
|
|
15
|
-
SelectFilters;
|
|
16
|
-
Wizard;
|
|
17
|
-
CreateEdit;
|
|
18
|
-
LayoutTwoPaneHorizontal;
|
|
13
|
+
avoidTreeShaking(List, Preview, SelectFields, SelectFilters, Wizard, CreateEdit, LayoutTwoPaneHorizontal);
|
|
19
14
|
|
|
20
15
|
const notificationToast: ViewTemplate<LegacyReporting.Reporting> = html`
|
|
21
16
|
<div class="notification-container" data-test-id="notification-container">
|