@c8y/ngx-components 1018.0.225 → 1018.0.228

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.
@@ -11196,7 +11196,6 @@ class DocsService extends ExtensionPointWithoutStateForPlugins {
11196
11196
  get() {
11197
11197
  // use the function as a factory
11198
11198
  const { links, noDefault, excludeDefault = [] } = this.options.get('docs', {});
11199
- const { supportUrl } = this.app.state;
11200
11199
  let staticLinks = noDefault
11201
11200
  ? []
11202
11201
  : documentationItems
@@ -11212,14 +11211,6 @@ class DocsService extends ExtensionPointWithoutStateForPlugins {
11212
11211
  });
11213
11212
  staticLinks = staticLinks.concat(links);
11214
11213
  }
11215
- if (supportUrl) {
11216
- staticLinks.push({
11217
- icon: 'comments',
11218
- label: gettext('Forum support'),
11219
- url: supportUrl,
11220
- type: 'doc'
11221
- });
11222
- }
11223
11214
  return staticLinks;
11224
11215
  }
11225
11216
  setupItemsObservable() {
@@ -25642,6 +25633,9 @@ class FilteringFormRendererComponent {
25642
25633
  if (typeof filterPredicate === 'string') {
25643
25634
  this.defaultRendererFilterText = filterPredicate;
25644
25635
  }
25636
+ if (filterPredicate === undefined) {
25637
+ this.defaultRendererFilterText = '';
25638
+ }
25645
25639
  }
25646
25640
  }
25647
25641
  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 });