@haiilo/catalyst-angular 10.22.1 → 10.23.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/esm2020/lib/dialog/dialog.component.mjs +13 -5
- package/fesm2015/haiilo-catalyst-angular.mjs +10 -3
- package/fesm2015/haiilo-catalyst-angular.mjs.map +1 -1
- package/fesm2020/haiilo-catalyst-angular.mjs +10 -3
- package/fesm2020/haiilo-catalyst-angular.mjs.map +1 -1
- package/lib/dialog/dialog.component.d.ts +6 -1
- package/package.json +3 -3
|
@@ -6,6 +6,11 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class CatDialogComponent implements AfterContentInit {
|
|
8
8
|
private readonly dialogRef;
|
|
9
|
+
/**
|
|
10
|
+
* Flag to disable scrolling behavior of dialog content. Default is false. If set to true the
|
|
11
|
+
* using component is responsible for not overflowing the viewport.
|
|
12
|
+
*/
|
|
13
|
+
disableScrolling: boolean;
|
|
9
14
|
/**
|
|
10
15
|
* Flag to disable/enable overscroll behavior.
|
|
11
16
|
*/
|
|
@@ -26,5 +31,5 @@ export declare class CatDialogComponent implements AfterContentInit {
|
|
|
26
31
|
constructor(dialogRef: DialogRef);
|
|
27
32
|
ngAfterContentInit(): void;
|
|
28
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatDialogComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CatDialogComponent, "cat-dialog", never, { "noOverscroll": "noOverscroll"; "noScrolledInit": "noScrolledInit"; "scrolledBuffer": "scrolledBuffer"; }, { "scrolledBottom": "scrolledBottom"; }, ["header"], ["cat-dialog-header", "*", "cat-dialog-actions"], false>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CatDialogComponent, "cat-dialog", never, { "disableScrolling": "disableScrolling"; "noOverscroll": "noOverscroll"; "noScrolledInit": "noScrolledInit"; "scrolledBuffer": "scrolledBuffer"; }, { "scrolledBottom": "scrolledBottom"; }, ["header"], ["cat-dialog-header", "*", "*", "cat-dialog-actions"], false>;
|
|
30
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haiilo/catalyst-angular",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.23.0",
|
|
4
4
|
"description": "Angular wrapper for Catalyst Design System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"loglevel": "1.8.1",
|
|
16
16
|
"tslib": "^2.3.0",
|
|
17
|
-
"@haiilo/catalyst": "10.
|
|
18
|
-
"@haiilo/catalyst-tokens": "10.
|
|
17
|
+
"@haiilo/catalyst": "10.23.0",
|
|
18
|
+
"@haiilo/catalyst-tokens": "10.23.0"
|
|
19
19
|
},
|
|
20
20
|
"module": "fesm2015/haiilo-catalyst-angular.mjs",
|
|
21
21
|
"es2020": "fesm2020/haiilo-catalyst-angular.mjs",
|