@db-ux/ngx-core-components 2.1.0 → 2.1.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/ngx-core-components",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Angular components @db-ux/core-components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@db-ux/core-components": "2.1.
|
|
30
|
-
"@db-ux/core-foundations": "2.1.
|
|
29
|
+
"@db-ux/core-components": "2.1.1",
|
|
30
|
+
"@db-ux/core-foundations": "2.1.1",
|
|
31
31
|
"tslib": "^2.3.0"
|
|
32
32
|
}
|
|
33
33
|
}
|
package/shared/model.d.ts
CHANGED
|
@@ -413,7 +413,7 @@ export type CloseEventProps = {
|
|
|
413
413
|
close?: (event?: any) => void;
|
|
414
414
|
};
|
|
415
415
|
export type CloseEventState = {
|
|
416
|
-
handleClose: (event: any) => void;
|
|
416
|
+
handleClose: (event: any, forceClose?: boolean) => void;
|
|
417
417
|
};
|
|
418
418
|
export declare const AlignmentList: readonly ["start", "center"];
|
|
419
419
|
export type AlignmentType = (typeof AlignmentList)[number];
|