@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.
- package/context-dashboard/add-dashboard.factory.d.ts +3 -2
- package/context-dashboard/context-dashboard.model.d.ts +16 -1
- package/context-dashboard/context-dashboard.service.d.ts +4 -2
- package/context-dashboard/report-dashboard/report-dashboard-list.component.d.ts +3 -2
- package/esm2020/context-dashboard/add-dashboard.factory.mjs +17 -5
- package/esm2020/context-dashboard/context-dashboard.component.mjs +23 -3
- package/esm2020/context-dashboard/context-dashboard.model.mjs +19 -4
- package/esm2020/context-dashboard/context-dashboard.service.mjs +21 -6
- package/esm2020/context-dashboard/dashboard-availability.component.mjs +3 -3
- package/esm2020/context-dashboard/report-dashboard/report-dashboard-list.component.mjs +21 -6
- package/esm2020/core/data-grid/column/filtering-form-renderer.component.mjs +4 -1
- package/esm2020/core/docs/docs.service.mjs +1 -11
- package/fesm2015/c8y-ngx-components-context-dashboard.mjs +90 -14
- package/fesm2015/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components.mjs +3 -9
- package/fesm2015/c8y-ngx-components.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-context-dashboard.mjs +90 -14
- package/fesm2020/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components.mjs +3 -9
- package/fesm2020/c8y-ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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 });
|