@c8y/ngx-components 1021.2.0 → 1021.3.1

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 (42) hide show
  1. package/alarm-event-selector/alarm-event-attributes-form/alarm-event-attributes-form.component.d.ts +6 -3
  2. package/alarm-event-selector/alarm-event-attributes-form/alarm-event-attributes-form.component.d.ts.map +1 -1
  3. package/alarm-event-selector/alarm-event-attributes-form/alarm-event-attributes-form.service.d.ts +9 -0
  4. package/alarm-event-selector/alarm-event-attributes-form/alarm-event-attributes-form.service.d.ts.map +1 -0
  5. package/alarm-event-selector/custom-alarm-event-form/custom-alarm-event-form.component.d.ts +2 -1
  6. package/alarm-event-selector/custom-alarm-event-form/custom-alarm-event-form.component.d.ts.map +1 -1
  7. package/auth-configuration/sso-configuration/template-parts/basic-configuration.component.d.ts +1 -0
  8. package/auth-configuration/sso-configuration/template-parts/basic-configuration.component.d.ts.map +1 -1
  9. package/context-dashboard/context-dashboard.service.d.ts.map +1 -1
  10. package/core/common/get-group-icon.pipe.d.ts.map +1 -1
  11. package/core/common/global-config.service.d.ts +1 -1
  12. package/core/common/global-config.service.d.ts.map +1 -1
  13. package/device-profile/device-profile-list.component.d.ts +31 -14
  14. package/device-profile/device-profile-list.component.d.ts.map +1 -1
  15. package/esm2022/alarm-event-selector/alarm-event-attributes-form/alarm-event-attributes-form.component.mjs +24 -10
  16. package/esm2022/alarm-event-selector/alarm-event-attributes-form/alarm-event-attributes-form.service.mjs +20 -0
  17. package/esm2022/alarm-event-selector/alarm-event-selector-list-item/alarm-event-selector-list-item.component.mjs +1 -1
  18. package/esm2022/alarm-event-selector/alarm-event-selector.component.mjs +3 -3
  19. package/esm2022/alarm-event-selector/custom-alarm-event-form/custom-alarm-event-form.component.mjs +6 -3
  20. package/esm2022/auth-configuration/sso-configuration/template-parts/basic-configuration.component.mjs +5 -3
  21. package/esm2022/context-dashboard/context-dashboard.service.mjs +3 -2
  22. package/esm2022/core/common/get-group-icon.pipe.mjs +4 -1
  23. package/esm2022/core/common/global-config.service.mjs +3 -2
  24. package/esm2022/device-profile/device-profile-list.component.mjs +102 -27
  25. package/esm2022/repository/shared/repository.model.mjs +2 -1
  26. package/fesm2022/c8y-ngx-components-alarm-event-selector.mjs +46 -13
  27. package/fesm2022/c8y-ngx-components-alarm-event-selector.mjs.map +1 -1
  28. package/fesm2022/c8y-ngx-components-auth-configuration.mjs +4 -2
  29. package/fesm2022/c8y-ngx-components-auth-configuration.mjs.map +1 -1
  30. package/fesm2022/c8y-ngx-components-context-dashboard.mjs +2 -1
  31. package/fesm2022/c8y-ngx-components-context-dashboard.mjs.map +1 -1
  32. package/fesm2022/c8y-ngx-components-device-profile.mjs +110 -35
  33. package/fesm2022/c8y-ngx-components-device-profile.mjs.map +1 -1
  34. package/fesm2022/c8y-ngx-components-repository-shared.mjs +1 -0
  35. package/fesm2022/c8y-ngx-components-repository-shared.mjs.map +1 -1
  36. package/fesm2022/c8y-ngx-components.mjs +5 -1
  37. package/fesm2022/c8y-ngx-components.mjs.map +1 -1
  38. package/locales/locales.pot +17 -2
  39. package/package.json +1 -1
  40. package/repository/shared/repository.model.d.ts +2 -1
  41. package/repository/shared/repository.model.d.ts.map +1 -1
  42. package/repository/shared/repository.service.d.ts +1 -1
@@ -5954,6 +5954,9 @@ class GetGroupIconPipe {
5954
5954
  this.groupService = groupService;
5955
5955
  }
5956
5956
  async transform(mo, open = false, defaultIcon) {
5957
+ if (!mo.c8y_IsDevice) {
5958
+ return this.groupService.getIcon(mo, open, 'c8y-group-open');
5959
+ }
5957
5960
  return this.groupService.getIcon(mo, open, defaultIcon);
5958
5961
  }
5959
5962
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: GetGroupIconPipe, deps: [{ token: GroupService }], target: i0.ɵɵFactoryTarget.Pipe }); }
@@ -7537,7 +7540,8 @@ class GlobalConfigService {
7537
7540
  c8y_ModbusDeviceType: 'c8y_FieldbusAsGlobal',
7538
7541
  c8y_CANopenDeviceType: 'c8y_CANOpenAsGlobal',
7539
7542
  c8y_LoraDeviceType: 'c8y_LoraAsGlobal',
7540
- c8y_SigfoxDeviceType: 'c8y_SigfoxAsGlobal'
7543
+ c8y_SigfoxDeviceType: 'c8y_SigfoxAsGlobal',
7544
+ c8y_Profile: 'c8y_ProfileAsGlobal'
7541
7545
  };
7542
7546
  this.cache = undefined;
7543
7547
  }