@haiilo/catalyst-angular 10.8.0 → 10.9.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 +29 -5
- package/fesm2015/haiilo-catalyst-angular.mjs +27 -3
- package/fesm2015/haiilo-catalyst-angular.mjs.map +1 -1
- package/fesm2020/haiilo-catalyst-angular.mjs +27 -3
- package/fesm2020/haiilo-catalyst-angular.mjs.map +1 -1
- package/lib/dialog/dialog.component.d.ts +18 -2
- package/package.json +3 -3
|
@@ -1,14 +1,30 @@
|
|
|
1
1
|
import { DialogRef } from '@angular/cdk/dialog';
|
|
2
|
-
import { AfterContentInit } from '@angular/core';
|
|
2
|
+
import { AfterContentInit, EventEmitter } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* A modal dialog.
|
|
6
6
|
*/
|
|
7
7
|
export declare class CatDialogComponent implements AfterContentInit {
|
|
8
8
|
private readonly dialogRef;
|
|
9
|
+
/**
|
|
10
|
+
* Flag to disable/enable overscroll behavior.
|
|
11
|
+
*/
|
|
12
|
+
noOverscroll: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Flag to not fire an initial scroll event after content initialization.
|
|
15
|
+
*/
|
|
16
|
+
noScrolledInit: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Buffer to be used to calculate the content scroll distance.
|
|
19
|
+
*/
|
|
20
|
+
scrolledBuffer: number;
|
|
21
|
+
/**
|
|
22
|
+
* Emitted when the dialog content is fully scrolled to the bottom.
|
|
23
|
+
*/
|
|
24
|
+
scrolledBottom: EventEmitter<void>;
|
|
9
25
|
private header?;
|
|
10
26
|
constructor(dialogRef: DialogRef);
|
|
11
27
|
ngAfterContentInit(): void;
|
|
12
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatDialogComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CatDialogComponent, "cat-dialog", never, {}, {}, ["header"], ["cat-dialog-header", "*", "cat-dialog-actions"], false>;
|
|
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>;
|
|
14
30
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haiilo/catalyst-angular",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.9.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
|
|
17
|
+
"@haiilo/catalyst-tokens": "10.9.0",
|
|
18
|
+
"@haiilo/catalyst": "10.9.0"
|
|
19
19
|
},
|
|
20
20
|
"module": "fesm2015/haiilo-catalyst-angular.mjs",
|
|
21
21
|
"es2020": "fesm2020/haiilo-catalyst-angular.mjs",
|