@c8y/ngx-components 1021.36.0 → 1021.37.5

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 (58) hide show
  1. package/alarms/alarms-view.service.d.ts.map +1 -1
  2. package/context-dashboard/context-dashboard.component.d.ts.map +1 -1
  3. package/core/common/forOf.directive.d.ts.map +1 -1
  4. package/core/file-picker/file-picker.component.d.ts +4 -2
  5. package/core/file-picker/file-picker.component.d.ts.map +1 -1
  6. package/core/forms/validation-pattern.d.ts +8 -0
  7. package/core/forms/validation-pattern.d.ts.map +1 -1
  8. package/esm2022/alarms/alarms-view.service.mjs +3 -1
  9. package/esm2022/alarms/alarms.component.mjs +2 -2
  10. package/esm2022/assets-navigator/asset-selector/asset-selector.component.mjs +3 -3
  11. package/esm2022/context-dashboard/context-dashboard.component.mjs +8 -2
  12. package/esm2022/core/common/forOf.directive.mjs +5 -1
  13. package/esm2022/core/file-picker/file-picker.component.mjs +7 -5
  14. package/esm2022/core/forms/validation-pattern.mjs +9 -1
  15. package/esm2022/core/navigator/navigator-bottom/navigator-bottom.component.mjs +3 -3
  16. package/esm2022/operations/operations-list/operations-list-item.component.mjs +14 -6
  17. package/esm2022/operations/operations-list/operations-list.component.mjs +13 -5
  18. package/esm2022/repository/configuration/list/configuration-detail.component.mjs +5 -4
  19. package/esm2022/repository/firmware/list/add-firmware-modal.component.mjs +5 -4
  20. package/esm2022/repository/software/list/add-software-modal.component.mjs +5 -4
  21. package/fesm2022/c8y-ngx-components-alarms.mjs +3 -1
  22. package/fesm2022/c8y-ngx-components-alarms.mjs.map +1 -1
  23. package/fesm2022/c8y-ngx-components-assets-navigator.mjs +2 -2
  24. package/fesm2022/c8y-ngx-components-assets-navigator.mjs.map +1 -1
  25. package/fesm2022/c8y-ngx-components-context-dashboard.mjs +6 -0
  26. package/fesm2022/c8y-ngx-components-context-dashboard.mjs.map +1 -1
  27. package/fesm2022/c8y-ngx-components-operations-operations-list.mjs +25 -9
  28. package/fesm2022/c8y-ngx-components-operations-operations-list.mjs.map +1 -1
  29. package/fesm2022/c8y-ngx-components-repository-configuration.mjs +10 -9
  30. package/fesm2022/c8y-ngx-components-repository-configuration.mjs.map +1 -1
  31. package/fesm2022/c8y-ngx-components-repository-firmware.mjs +4 -3
  32. package/fesm2022/c8y-ngx-components-repository-firmware.mjs.map +1 -1
  33. package/fesm2022/c8y-ngx-components-repository-software.mjs +4 -3
  34. package/fesm2022/c8y-ngx-components-repository-software.mjs.map +1 -1
  35. package/fesm2022/c8y-ngx-components.mjs +84 -71
  36. package/fesm2022/c8y-ngx-components.mjs.map +1 -1
  37. package/locales/de.po +10 -4
  38. package/locales/es.po +10 -4
  39. package/locales/fr.po +10 -4
  40. package/locales/ja_JP.po +10 -5
  41. package/locales/ko.po +10 -5
  42. package/locales/locales.pot +8 -2
  43. package/locales/nl.po +10 -4
  44. package/locales/pl.po +10 -4
  45. package/locales/pt_BR.po +10 -4
  46. package/locales/zh_CN.po +10 -5
  47. package/locales/zh_TW.po +10 -5
  48. package/operations/operations-list/operations-list-item.component.d.ts +3 -1
  49. package/operations/operations-list/operations-list-item.component.d.ts.map +1 -1
  50. package/operations/operations-list/operations-list.component.d.ts +1 -0
  51. package/operations/operations-list/operations-list.component.d.ts.map +1 -1
  52. package/package.json +1 -1
  53. package/repository/configuration/list/configuration-detail.component.d.ts +2 -1
  54. package/repository/configuration/list/configuration-detail.component.d.ts.map +1 -1
  55. package/repository/firmware/list/add-firmware-modal.component.d.ts +2 -1
  56. package/repository/firmware/list/add-firmware-modal.component.d.ts.map +1 -1
  57. package/repository/software/list/add-software-modal.component.d.ts +2 -1
  58. package/repository/software/list/add-software-modal.component.d.ts.map +1 -1
@@ -2606,6 +2606,12 @@ class ContextDashboardComponent {
2606
2606
  if (this.dataSub) {
2607
2607
  this.dataSub.unsubscribe();
2608
2608
  }
2609
+ const isNewDashboard = this.route.snapshot.queryParams[NEW_DASHBOARD_QUERY_PARAM];
2610
+ if (isNewDashboard) {
2611
+ this.router.navigate([], {
2612
+ queryParams: null
2613
+ });
2614
+ }
2609
2615
  }
2610
2616
  /**
2611
2617
  * Guards component from unintended navigation away or closing tab without saving changes.