@nettyapps/ntybase 21.0.35-beta.20 → 21.0.35-beta.21
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.
|
@@ -1607,6 +1607,25 @@ class NettyAgGridBase extends NettyAppsBase {
|
|
|
1607
1607
|
.map((columnDef) => columnDef.field);
|
|
1608
1608
|
this.gridApi?.setColumnsVisible(fields, !this._isEmbedded());
|
|
1609
1609
|
}
|
|
1610
|
+
// *****************************************
|
|
1611
|
+
// *** Logging Functions ***
|
|
1612
|
+
// *****************************************
|
|
1613
|
+
logInputs(message) {
|
|
1614
|
+
if (!message || message.length < 1) {
|
|
1615
|
+
message = 'agGridBase - Inputs log';
|
|
1616
|
+
}
|
|
1617
|
+
const inputs = {
|
|
1618
|
+
"popupFilterValid": this.popupFilterValid(),
|
|
1619
|
+
"_isPopupFilterValid": this._isPopupFilterValid(),
|
|
1620
|
+
"popupValid": this.popupValid(),
|
|
1621
|
+
"_isPopupValid": this._isPopupValid(),
|
|
1622
|
+
"componantParameterGUID": this.componantParameterGUID(),
|
|
1623
|
+
"componantParameterType": this.componantParameterType(),
|
|
1624
|
+
"embedded": this.embedded(),
|
|
1625
|
+
"_isEmbedded": this._isEmbedded(),
|
|
1626
|
+
};
|
|
1627
|
+
console.log(message, inputs);
|
|
1628
|
+
}
|
|
1610
1629
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: NettyAgGridBase, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1611
1630
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.6", type: NettyAgGridBase, isStandalone: true, selector: "ntybase-ag-grid-base", inputs: { popupFilterValid: { classPropertyName: "popupFilterValid", publicName: "popupFilterValid", isSignal: true, isRequired: false, transformFunction: null }, popupValid: { classPropertyName: "popupValid", publicName: "popupValid", isSignal: true, isRequired: false, transformFunction: null }, componantParameterGUID: { classPropertyName: "componantParameterGUID", publicName: "componantParameterGUID", isSignal: true, isRequired: false, transformFunction: null }, componantParameterType: { classPropertyName: "componantParameterType", publicName: "componantParameterType", isSignal: true, isRequired: false, transformFunction: null }, agGridSelectionMode: { classPropertyName: "agGridSelectionMode", publicName: "agGridSelectionMode", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onElementSelect: "onElementSelect", selectedElement: "selectedElement" }, host: { attributes: { "ntybase-id": "NettyAgGridBase" } }, usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
1612
1631
|
}
|
|
@@ -1814,6 +1833,7 @@ class NettyAgGridListBase extends NettyAgGridBase {
|
|
|
1814
1833
|
* Component initialization lifecycle hook
|
|
1815
1834
|
*/
|
|
1816
1835
|
async ngOnInit() {
|
|
1836
|
+
this.logInputs('AgGridListBase - ngOnInit - enterance');
|
|
1817
1837
|
this.nettyAppsProxy.setURLPath(this.componentName());
|
|
1818
1838
|
await this.setAccessRights();
|
|
1819
1839
|
const savedSearchValue = sessionStorage.getItem(this.searchValueName());
|
|
@@ -1826,6 +1846,7 @@ class NettyAgGridListBase extends NettyAgGridBase {
|
|
|
1826
1846
|
// Load user grid preferences
|
|
1827
1847
|
await this.nettyAgGridService.copyGridUserPereferenceToLocal(this.preferenceType());
|
|
1828
1848
|
await this.AfterOnInit();
|
|
1849
|
+
this.logInputs('AgGridListBase - ngOnInit - exit');
|
|
1829
1850
|
}
|
|
1830
1851
|
parseOrReturnValue(value) {
|
|
1831
1852
|
if (value) {
|
|
@@ -2035,6 +2056,29 @@ class NettyAgGridListBase extends NettyAgGridBase {
|
|
|
2035
2056
|
error: (err) => this.alertService.showError(err),
|
|
2036
2057
|
});
|
|
2037
2058
|
}
|
|
2059
|
+
// *****************************************
|
|
2060
|
+
// *** Logging Functions ***
|
|
2061
|
+
// *****************************************
|
|
2062
|
+
logInputs(message) {
|
|
2063
|
+
if (!message || message.length < 1) {
|
|
2064
|
+
message = 'AgGridListBase - Inputs log';
|
|
2065
|
+
}
|
|
2066
|
+
const inputs = {
|
|
2067
|
+
"popupFilterValid": this.popupFilterValid(),
|
|
2068
|
+
"_isPopupFilterValid": this._isPopupFilterValid(),
|
|
2069
|
+
"popupValid": this.popupValid(),
|
|
2070
|
+
"_isPopupValid": this._isPopupValid(),
|
|
2071
|
+
"componantParameterGUID": this.componantParameterGUID(),
|
|
2072
|
+
"componantParameterType": this.componantParameterType(),
|
|
2073
|
+
"embedded": this.embedded(),
|
|
2074
|
+
"_isEmbedded": this._isEmbedded(),
|
|
2075
|
+
"hasFilter": this.hasFilter(),
|
|
2076
|
+
"_hasFilter": this._hasFilter(),
|
|
2077
|
+
"isFilterValid": this.isFilterValid(),
|
|
2078
|
+
"isFilterExpanded": this.isFilterExpanded(),
|
|
2079
|
+
};
|
|
2080
|
+
console.log(message, inputs);
|
|
2081
|
+
}
|
|
2038
2082
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: NettyAgGridListBase, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2039
2083
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.6", type: NettyAgGridListBase, isStandalone: true, selector: "ntybase-ag-grid-list-base", inputs: { hasFilter: { classPropertyName: "hasFilter", publicName: "hasFilter", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "ntybase-id": "NettyAgGridListBase" } }, usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
2040
2084
|
}
|
|
@@ -4336,6 +4380,20 @@ class NettyAppsFilterBase extends NettyAppsBase {
|
|
|
4336
4380
|
});
|
|
4337
4381
|
}
|
|
4338
4382
|
async afterOnInit() { }
|
|
4383
|
+
// *****************************************
|
|
4384
|
+
// *** Logging Functions ***
|
|
4385
|
+
// *****************************************
|
|
4386
|
+
logInputs(message) {
|
|
4387
|
+
if (!message || message.length < 1) {
|
|
4388
|
+
message = 'NettyAppsFilterBase - Inputs log';
|
|
4389
|
+
}
|
|
4390
|
+
const inputs = {
|
|
4391
|
+
"isFilterExpanded": this.isFilterExpanded(),
|
|
4392
|
+
"refresh": this.refresh(),
|
|
4393
|
+
"fileName": this.fileName(),
|
|
4394
|
+
};
|
|
4395
|
+
console.log(message, inputs);
|
|
4396
|
+
}
|
|
4339
4397
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: NettyAppsFilterBase, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4340
4398
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.6", type: NettyAppsFilterBase, isStandalone: true, selector: "ntybase-netty-apps-base", inputs: { isFilterExpanded: { classPropertyName: "isFilterExpanded", publicName: "isFilterExpanded", isSignal: true, isRequired: false, transformFunction: null }, refresh: { classPropertyName: "refresh", publicName: "refresh", isSignal: true, isRequired: false, transformFunction: null }, fileName: { classPropertyName: "fileName", publicName: "fileName", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { isFilterExpanded: "isFilterExpandedChange", filteredRecords: "filteredRecords" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
4341
4399
|
}
|