@siemens/ix-angular 1.1.0 → 1.2.0-beta.0
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/components.d.ts +64 -64
- package/esm2020/components.mjs +194 -194
- package/esm2020/modal/modal.config.mjs +1 -1
- package/esm2020/modal/modal.service.mjs +6 -4
- package/esm2020/module.mjs +5 -5
- package/esm2020/toast/toast.service.mjs +4 -4
- package/esm2020/tree/tree.mjs +4 -4
- package/fesm2015/siemens-ix-angular.mjs +208 -210
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +208 -206
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/modal/modal.config.d.ts +3 -1
- package/modal/modal.service.d.ts +1 -2
- package/package.json +3 -3
- package/tree/tree.d.ts +1 -1
package/modal/modal.config.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
-
|
|
2
|
+
import { ModalConfig as IxModalConfig } from '@siemens/ix';
|
|
3
|
+
export declare type ModalConfig<TDATA = any> = Omit<IxModalConfig, 'content'> & {
|
|
3
4
|
content: TemplateRef<any>;
|
|
5
|
+
data?: TDATA;
|
|
4
6
|
};
|
package/modal/modal.service.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { ModalConfig as IxModalConfig } from '@siemens/ix';
|
|
2
1
|
import { ModalConfig } from './modal.config';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class ModalService {
|
|
5
4
|
constructor();
|
|
6
|
-
open(config:
|
|
5
|
+
open<TDATA = any>(config: ModalConfig): Promise<{
|
|
7
6
|
onClose: import("@siemens/ix/dist/types/components/utils/typed-event").TypedEvent<any>;
|
|
8
7
|
onDismiss: import("@siemens/ix/dist/types/components/utils/typed-event").TypedEvent<any>;
|
|
9
8
|
}>;
|
package/package.json
CHANGED
|
@@ -7,16 +7,16 @@
|
|
|
7
7
|
"url": "https://github.com/siemens/ix",
|
|
8
8
|
"directory": "packages/angular"
|
|
9
9
|
},
|
|
10
|
-
"version": "1.
|
|
10
|
+
"version": "1.2.0-beta.0",
|
|
11
11
|
"description": "Siemens iX for Angular",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@siemens/ix": "~1.
|
|
14
|
+
"@siemens/ix": "~1.2.0-beta.0",
|
|
15
15
|
"@siemens/ix-icons": "~1.0.0",
|
|
16
16
|
"tslib": "^2.3.0"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@angular/core": "
|
|
19
|
+
"@angular/core": ">=13.3.12"
|
|
20
20
|
},
|
|
21
21
|
"module": "fesm2015/siemens-ix-angular.mjs",
|
|
22
22
|
"es2020": "fesm2020/siemens-ix-angular.mjs",
|
package/tree/tree.d.ts
CHANGED
|
@@ -22,5 +22,5 @@ export declare class IxTree implements OnDestroy {
|
|
|
22
22
|
ngOnDestroy(): void;
|
|
23
23
|
generateItemRenderer(templateRef: TemplateRef<any>): (_: number, itemData: any, __: any[], context: TreeContext, update: (callback: UpdateCallback) => void) => HTMLIxTreeItemElement;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTree, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTree, "ix-tree", never, { "context": "context"; "model": "model"; "root": "root"; "renderItem": "renderItem"; }, {}, never, ["*"]
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTree, "ix-tree", never, { "context": "context"; "model": "model"; "root": "root"; "renderItem": "renderItem"; }, {}, never, ["*"]>;
|
|
26
26
|
}
|