@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.
- package/fesm2022/c8y-ngx-components-asset-properties.mjs +2 -2
- package/fesm2022/c8y-ngx-components-asset-properties.mjs.map +1 -1
- 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
- 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
- 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
- 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
- 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
- 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
- package/fesm2022/c8y-ngx-components-computed-asset-properties.mjs +1 -1
- package/fesm2022/c8y-ngx-components-context-dashboard.mjs +3 -0
- package/fesm2022/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-datapoint-explorer-view.mjs +10 -6
- package/fesm2022/c8y-ngx-components-datapoint-explorer-view.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-global-context.mjs +4 -4
- package/fesm2022/c8y-ngx-components-global-context.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-icon-selector.mjs +23 -11
- package/fesm2022/c8y-ngx-components-icon-selector.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-widgets-implementations-asset-table.mjs +24 -2
- package/fesm2022/c8y-ngx-components-widgets-implementations-asset-table.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components.mjs +39 -9
- package/fesm2022/c8y-ngx-components.mjs.map +1 -1
- package/locales/de.po +19 -15
- package/locales/es.po +3 -0
- package/locales/fr.po +4 -1
- package/locales/ja_JP.po +294 -283
- package/locales/ko.po +3 -0
- package/locales/locales.pot +3 -0
- package/locales/nl.po +3 -0
- package/locales/pl.po +3 -0
- package/locales/pt_BR.po +3 -0
- package/locales/zh_CN.po +3 -0
- package/locales/zh_TW.po +3 -0
- package/package.json +1 -1
- package/types/c8y-ngx-components-context-dashboard.d.ts.map +1 -1
- package/types/c8y-ngx-components-icon-selector.d.ts +7 -1
- package/types/c8y-ngx-components-icon-selector.d.ts.map +1 -1
- package/types/c8y-ngx-components-widgets-implementations-asset-table.d.ts +1 -0
- package/types/c8y-ngx-components-widgets-implementations-asset-table.d.ts.map +1 -1
- package/types/c8y-ngx-components.d.ts +22 -4
- 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
|
|
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
|
|
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
|
|
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;
|