@c8y/ngx-components 1017.0.456 → 1017.0.463
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 +28 -0
- package/context-dashboard/context-dashboard.service.d.ts +4 -2
- package/context-dashboard/dashboard-availability.component.d.ts +3 -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 +29 -1
- package/esm2020/context-dashboard/context-dashboard.service.mjs +21 -6
- package/esm2020/context-dashboard/dashboard-availability.component.mjs +17 -5
- package/esm2020/context-dashboard/report-dashboard/report-dashboard-list.component.mjs +21 -6
- package/esm2020/core/docs/docs.service.mjs +1 -10
- package/fesm2015/c8y-ngx-components-context-dashboard.mjs +114 -13
- package/fesm2015/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components.mjs +0 -8
- package/fesm2015/c8y-ngx-components.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-context-dashboard.mjs +113 -13
- package/fesm2020/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components.mjs +0 -8
- package/fesm2020/c8y-ngx-components.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -10080,14 +10080,6 @@ class DocsService {
|
|
|
10080
10080
|
});
|
|
10081
10081
|
staticLinks = staticLinks.concat(links);
|
|
10082
10082
|
}
|
|
10083
|
-
if (supportUrl) {
|
|
10084
|
-
staticLinks.push({
|
|
10085
|
-
icon: 'comments',
|
|
10086
|
-
label: gettext('Forum support'),
|
|
10087
|
-
url: supportUrl,
|
|
10088
|
-
type: 'doc'
|
|
10089
|
-
});
|
|
10090
|
-
}
|
|
10091
10083
|
return staticLinks;
|
|
10092
10084
|
}
|
|
10093
10085
|
getLink(templateStr, partialLink) {
|