@c8y/ngx-components 1024.15.1 → 1024.15.13

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 (40) hide show
  1. package/fesm2022/c8y-ngx-components-asset-properties.mjs +2 -2
  2. package/fesm2022/c8y-ngx-components-asset-properties.mjs.map +1 -1
  3. package/fesm2022/{c8y-ngx-components-computed-asset-properties-c8y-ngx-components-computed-asset-properties-DreEjPAV.mjs → c8y-ngx-components-computed-asset-properties-c8y-ngx-components-computed-asset-properties-CFZO0ZaS.mjs} +3 -3
  4. package/fesm2022/{c8y-ngx-components-computed-asset-properties-c8y-ngx-components-computed-asset-properties-DreEjPAV.mjs.map → c8y-ngx-components-computed-asset-properties-c8y-ngx-components-computed-asset-properties-CFZO0ZaS.mjs.map} +1 -1
  5. package/fesm2022/{c8y-ngx-components-computed-asset-properties-fieldbus-item-status-config.component-B2z2tGM7.mjs → c8y-ngx-components-computed-asset-properties-fieldbus-item-status-config.component-1mnvr3pp.mjs} +2 -2
  6. package/fesm2022/{c8y-ngx-components-computed-asset-properties-fieldbus-item-status-config.component-B2z2tGM7.mjs.map → c8y-ngx-components-computed-asset-properties-fieldbus-item-status-config.component-1mnvr3pp.mjs.map} +1 -1
  7. package/fesm2022/{c8y-ngx-components-computed-asset-properties-last-measurement-config.component-CwWLXBUt.mjs → c8y-ngx-components-computed-asset-properties-last-measurement-config.component-Dq4w0MQH.mjs} +4 -4
  8. package/fesm2022/{c8y-ngx-components-computed-asset-properties-last-measurement-config.component-CwWLXBUt.mjs.map → c8y-ngx-components-computed-asset-properties-last-measurement-config.component-Dq4w0MQH.mjs.map} +1 -1
  9. package/fesm2022/c8y-ngx-components-computed-asset-properties.mjs +1 -1
  10. package/fesm2022/c8y-ngx-components-context-dashboard.mjs +3 -0
  11. package/fesm2022/c8y-ngx-components-context-dashboard.mjs.map +1 -1
  12. package/fesm2022/c8y-ngx-components-datapoint-explorer-view.mjs +10 -6
  13. package/fesm2022/c8y-ngx-components-datapoint-explorer-view.mjs.map +1 -1
  14. package/fesm2022/c8y-ngx-components-global-context.mjs +4 -4
  15. package/fesm2022/c8y-ngx-components-global-context.mjs.map +1 -1
  16. package/fesm2022/c8y-ngx-components-icon-selector.mjs +23 -11
  17. package/fesm2022/c8y-ngx-components-icon-selector.mjs.map +1 -1
  18. package/fesm2022/c8y-ngx-components-widgets-implementations-asset-table.mjs +24 -2
  19. package/fesm2022/c8y-ngx-components-widgets-implementations-asset-table.mjs.map +1 -1
  20. package/fesm2022/c8y-ngx-components.mjs +39 -9
  21. package/fesm2022/c8y-ngx-components.mjs.map +1 -1
  22. package/locales/de.po +19 -15
  23. package/locales/es.po +3 -0
  24. package/locales/fr.po +4 -1
  25. package/locales/ja_JP.po +294 -283
  26. package/locales/ko.po +3 -0
  27. package/locales/locales.pot +3 -0
  28. package/locales/nl.po +3 -0
  29. package/locales/pl.po +3 -0
  30. package/locales/pt_BR.po +3 -0
  31. package/locales/zh_CN.po +3 -0
  32. package/locales/zh_TW.po +3 -0
  33. package/package.json +1 -1
  34. package/types/c8y-ngx-components-context-dashboard.d.ts.map +1 -1
  35. package/types/c8y-ngx-components-icon-selector.d.ts +7 -1
  36. package/types/c8y-ngx-components-icon-selector.d.ts.map +1 -1
  37. package/types/c8y-ngx-components-widgets-implementations-asset-table.d.ts +1 -0
  38. package/types/c8y-ngx-components-widgets-implementations-asset-table.d.ts.map +1 -1
  39. package/types/c8y-ngx-components.d.ts +22 -4
  40. package/types/c8y-ngx-components.d.ts.map +1 -1
@@ -7389,7 +7389,7 @@ interface ConfirmOption {
7389
7389
  */
7390
7390
  disabledByKey?: string;
7391
7391
  }
7392
- declare class ConfirmModalComponent implements OnInit, OnDestroy {
7392
+ declare class ConfirmModalComponent implements OnInit, AfterViewInit, OnDestroy {
7393
7393
  private modal;
7394
7394
  result: Promise<boolean | {
7395
7395
  confirmed: boolean;
@@ -7408,9 +7408,17 @@ declare class ConfirmModalComponent implements OnInit, OnDestroy {
7408
7408
  get labels(): ModalLabels;
7409
7409
  code: string;
7410
7410
  confirmString: string;
7411
+ private focusTrap;
7411
7412
  private _labels;
7412
7413
  constructor(modal: BsModalRef);
7413
7414
  ngOnInit(): void;
7415
+ /**
7416
+ * Moves focus to the dialog once it is rendered, landing on the cancel button
7417
+ * (`cdkFocusInitial`) so that keyboard and screen reader users start on the least
7418
+ * destructive action. `ngx-bootstrap` focuses the dialog container itself, which happens
7419
+ * before this, hence focusing when the trap is ready rather than immediately.
7420
+ */
7421
+ ngAfterViewInit(): void;
7414
7422
  get classIcon(): string;
7415
7423
  get classAlert(): string;
7416
7424
  ngOnDestroy(): void;
@@ -7977,16 +7985,26 @@ declare class UserMenuService extends ExtensionPointForPlugins<UserMenuItem> {
7977
7985
  /**
7978
7986
  * Returns the current state.
7979
7987
  * @readonly
7980
- * @returns The current set of actions.
7988
+ * @returns The set of items added imperatively via `add`. Items registered
7989
+ * through `hookUserMenu` or an `ExtensionFactory` are not part of this set.
7981
7990
  */
7982
7991
  get state(): Set<UserMenuItem>;
7983
7992
  /**
7984
- * Adds a new item to the search in the header.
7993
+ * Adds an item to the user menu in the right drawer.
7994
+ *
7995
+ * Prefer `hookUserMenu` for items known at build time. Use this method when the
7996
+ * item is only known at runtime, for example when it depends on a resolved
7997
+ * permission or on an AngularJS service reached through the upgrade bridge.
7998
+ *
7999
+ * Items are ordered by descending `priority`, so a higher `priority` is shown first.
7985
8000
  * @param item The item to add.
7986
8001
  */
7987
8002
  add(item: UserMenuItem): void;
7988
8003
  /**
7989
- * Removes an search from the header.
8004
+ * Removes an item from the user menu in the right drawer.
8005
+ *
8006
+ * Only items previously added via `add` can be removed, and the same object
8007
+ * reference that was passed to `add` must be passed here.
7990
8008
  * @param item The item to remove.
7991
8009
  */
7992
8010
  remove(item: UserMenuItem): void;