@bizy/core 19.11.21 → 19.12.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.
|
@@ -4,13 +4,20 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class BizyPopupService {
|
|
5
5
|
#private;
|
|
6
6
|
static dialogs: Set<DialogRef<unknown, any>>;
|
|
7
|
+
/**
|
|
8
|
+
*
|
|
9
|
+
* @param data.disableClose Deprecated
|
|
10
|
+
*/
|
|
7
11
|
open<R>(data: {
|
|
8
12
|
component: ComponentType<unknown>;
|
|
9
13
|
data?: unknown;
|
|
10
14
|
customClass?: Array<string> | string;
|
|
11
15
|
fullScreen?: boolean;
|
|
12
16
|
disableClose?: boolean;
|
|
17
|
+
disableBackdropClose?: boolean;
|
|
13
18
|
id?: string;
|
|
19
|
+
disableCloseButton?: boolean;
|
|
20
|
+
disableDragButton?: boolean;
|
|
14
21
|
}, callback?: (res: R) => void): void;
|
|
15
22
|
getData<D>(): D;
|
|
16
23
|
close(data?: {
|
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -344,8 +344,8 @@
|
|
|
344
344
|
--bizy-toggle-selected-color: var(--bizy-success-color);
|
|
345
345
|
--bizy-toggle-selected-background-color: #abd8b0;
|
|
346
346
|
|
|
347
|
-
--bizy-toolbar-height:
|
|
348
|
-
--bizy-toolbar-
|
|
347
|
+
--bizy-toolbar-height: fit-content;
|
|
348
|
+
--bizy-toolbar-min-height: 3.2rem;
|
|
349
349
|
--bizy-toolbar-background-color: #f3f3f3;
|
|
350
350
|
--bizy-toolbar-padding: 0 0.5rem 0 2rem;
|
|
351
351
|
|