@nettyapps/ntybase 21.0.35-beta.16 → 21.0.35-beta.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.
@@ -1760,7 +1760,7 @@ class NettyAgGridListBase extends NettyAgGridBase {
1760
1760
  // *** INPUTS ***
1761
1761
  // ********************************************
1762
1762
  // Filter section
1763
- hasFilter = input(false, ...(ngDevMode ? [{ debugName: "hasFilter" }] : [])); // Does the component have a filter
1763
+ hasFilter = input(true, ...(ngDevMode ? [{ debugName: "hasFilter" }] : [])); // Does the component have a filter
1764
1764
  isFilterValid = signal(true, ...(ngDevMode ? [{ debugName: "isFilterValid" }] : [])); // Can the filter be used
1765
1765
  isFilterExpanded = linkedSignal({ ...(ngDevMode ? { debugName: "isFilterExpanded" } : {}), source: () => ({
1766
1766
  embedded: this.isEmbedded(),
@@ -1806,7 +1806,7 @@ class NettyAgGridListBase extends NettyAgGridBase {
1806
1806
  * Component initialization lifecycle hook
1807
1807
  */
1808
1808
  async ngOnInit() {
1809
- // this.nettyAppsProxy = injectNettyStandardProxy<T>(this.componentName());
1809
+ this.nettyAppsProxy.setURLPath(this.componentName());
1810
1810
  await this.setAccessRights();
1811
1811
  const savedSearchValue = sessionStorage.getItem(this.searchValueName());
1812
1812
  if (savedSearchValue) {
@@ -2045,7 +2045,7 @@ class NettyAgGridLogBase extends NettyAgGridBase {
2045
2045
  * Component initialization lifecycle hook
2046
2046
  */
2047
2047
  async ngOnInit() {
2048
- this.nettyAppsProxy = injectNettyStandardLogProxy(this.componentName());
2048
+ this.nettyAppsProxy.setURLPath(this.componentName());
2049
2049
  await this.setAccessRights();
2050
2050
  const savedSearchValue = sessionStorage.getItem(this.searchValueName());
2051
2051
  if (savedSearchValue) {
@@ -2117,7 +2117,7 @@ class NettyAgGridSaveBase extends NettyAppsBase {
2117
2117
  * Initialize parameters. This method is called in ngOnInit or constructor
2118
2118
  */
2119
2119
  initParameters(urlPath) {
2120
- this.nettyAppsProxy = injectNettyStandardProxy(urlPath);
2120
+ this.nettyAppsProxy.setURLPath(urlPath);
2121
2121
  this.recordType.set(urlPath);
2122
2122
  }
2123
2123
  /**