@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,6 +4,8 @@ export declare class BizyPopupWrapperComponent<T> {
4
4
  #private;
5
5
  dynamicComponentContainer: ViewContainerRef;
6
6
  disabled: boolean;
7
+ disableClose: boolean;
8
+ disableDrag: boolean;
7
9
  ngAfterViewInit(): void;
8
10
  loadDynamicComponent(): void;
9
11
  close(): Promise<void>;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "19.11.21",
3
+ "version": "19.12.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "19.2.8",
6
6
  "@angular/cdk": "19.2.11",
@@ -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: 3.2rem;
348
- --bizy-toolbar-column-gap: 0.5rem;
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