@c8y/ngx-components 1018.0.116 → 1018.0.125

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.
Files changed (39) hide show
  1. package/context-dashboard/context-dashboard.model.d.ts +5 -0
  2. package/core/dashboard/dashboard.model.d.ts +5 -0
  3. package/ecosystem/application-plugins/plugin-list.component.d.ts +1 -1
  4. package/esm2020/context-dashboard/context-dashboard.component.mjs +3 -3
  5. package/esm2020/context-dashboard/context-dashboard.model.mjs +1 -1
  6. package/esm2020/context-dashboard/dashboard-detail.component.mjs +1 -1
  7. package/esm2020/core/common/group.service.mjs +2 -11
  8. package/esm2020/core/dashboard/dashboard.model.mjs +1 -1
  9. package/esm2020/core/dashboard/widgets-dashboard.component.mjs +5 -4
  10. package/esm2020/core/realtime/measurement-realtime.service.mjs +4 -2
  11. package/esm2020/device-profile/device-profile.component.mjs +4 -2
  12. package/esm2020/ecosystem/application-plugins/plugin-list.component.mjs +15 -7
  13. package/esm2020/widgets/implementations/kpi/kpi-widget-view/kpi-widget-view.component.mjs +2 -2
  14. package/fesm2015/c8y-ngx-components-context-dashboard.mjs +2 -2
  15. package/fesm2015/c8y-ngx-components-context-dashboard.mjs.map +1 -1
  16. package/fesm2015/c8y-ngx-components-device-profile.mjs +3 -1
  17. package/fesm2015/c8y-ngx-components-device-profile.mjs.map +1 -1
  18. package/fesm2015/c8y-ngx-components-ecosystem-application-plugins.mjs +14 -8
  19. package/fesm2015/c8y-ngx-components-ecosystem-application-plugins.mjs.map +1 -1
  20. package/fesm2015/c8y-ngx-components-ecosystem.mjs +14 -8
  21. package/fesm2015/c8y-ngx-components-ecosystem.mjs.map +1 -1
  22. package/fesm2015/c8y-ngx-components-widgets-implementations-kpi.mjs +1 -1
  23. package/fesm2015/c8y-ngx-components-widgets-implementations-kpi.mjs.map +1 -1
  24. package/fesm2015/c8y-ngx-components.mjs +29 -32
  25. package/fesm2015/c8y-ngx-components.mjs.map +1 -1
  26. package/fesm2020/c8y-ngx-components-context-dashboard.mjs +2 -2
  27. package/fesm2020/c8y-ngx-components-context-dashboard.mjs.map +1 -1
  28. package/fesm2020/c8y-ngx-components-device-profile.mjs +3 -1
  29. package/fesm2020/c8y-ngx-components-device-profile.mjs.map +1 -1
  30. package/fesm2020/c8y-ngx-components-ecosystem-application-plugins.mjs +14 -6
  31. package/fesm2020/c8y-ngx-components-ecosystem-application-plugins.mjs.map +1 -1
  32. package/fesm2020/c8y-ngx-components-ecosystem.mjs +14 -6
  33. package/fesm2020/c8y-ngx-components-ecosystem.mjs.map +1 -1
  34. package/fesm2020/c8y-ngx-components-widgets-implementations-kpi.mjs +1 -1
  35. package/fesm2020/c8y-ngx-components-widgets-implementations-kpi.mjs.map +1 -1
  36. package/fesm2020/c8y-ngx-components.mjs +29 -32
  37. package/fesm2020/c8y-ngx-components.mjs.map +1 -1
  38. package/package.json +1 -1
  39. package/widgets/implementations/kpi/kpi-widget-view/kpi-widget-view.component.d.ts +2 -2
@@ -536,7 +536,9 @@ class DeviceProfileComponent {
536
536
  return this.queriesUtil.addOrFilter({ deviceType: this.deviceProfile.c8y_Filter.type }, { __not: { __has: `deviceType` } });
537
537
  }
538
538
  else {
539
- return this.queriesUtil.addOrFilter({ 'c8y_Filter.type': this.deviceProfile.c8y_Filter.type }, { __not: { __has: `c8y_Filter.type` } });
539
+ return this.queriesUtil.addOrFilter({ 'c8y_Filter.type': this.deviceProfile.c8y_Filter.type }, {
540
+ __or: [{ 'c8y_Filter.type': '' }, { __not: { __has: `c8y_Filter.type` } }]
541
+ });
540
542
  }
541
543
  }
542
544
  return {};