@c8y/ngx-components 1018.0.225 → 1018.0.229

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.
@@ -11215,7 +11215,6 @@ class DocsService extends ExtensionPointWithoutStateForPlugins {
11215
11215
  get() {
11216
11216
  // use the function as a factory
11217
11217
  const { links, noDefault, excludeDefault = [] } = this.options.get('docs', {});
11218
- const { supportUrl } = this.app.state;
11219
11218
  let staticLinks = noDefault
11220
11219
  ? []
11221
11220
  : documentationItems
@@ -11231,14 +11230,6 @@ class DocsService extends ExtensionPointWithoutStateForPlugins {
11231
11230
  });
11232
11231
  staticLinks = staticLinks.concat(links);
11233
11232
  }
11234
- if (supportUrl) {
11235
- staticLinks.push({
11236
- icon: 'comments',
11237
- label: gettext('Forum support'),
11238
- url: supportUrl,
11239
- type: 'doc'
11240
- });
11241
- }
11242
11233
  return staticLinks;
11243
11234
  }
11244
11235
  setupItemsObservable() {
@@ -25788,6 +25779,9 @@ class FilteringFormRendererComponent {
25788
25779
  if (typeof filterPredicate === 'string') {
25789
25780
  this.defaultRendererFilterText = filterPredicate;
25790
25781
  }
25782
+ if (filterPredicate === undefined) {
25783
+ this.defaultRendererFilterText = '';
25784
+ }
25791
25785
  }
25792
25786
  }
25793
25787
  FilteringFormRendererComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: FilteringFormRendererComponent, deps: [{ token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });