ngx-bimplus-components 0.0.181 → 0.0.183

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.
@@ -12,12 +12,16 @@ export interface ConfirmDialogInputData {
12
12
  export declare class BimplusOverlayDialogConfirmComponent {
13
13
  private readonly dialogService;
14
14
  private readonly translateService;
15
- title: string;
16
- message: string;
15
+ private _title;
16
+ private _message;
17
17
  acceptButtonLocalizedString: string;
18
18
  cancelButtonLocalizedString: string;
19
19
  acceptCallback: (() => void) | undefined;
20
20
  protected buttons: BimplusButtonRowItem[];
21
+ get title(): string;
22
+ set title(value: string);
23
+ get message(): string;
24
+ set message(value: string);
21
25
  constructor(dialogService: DialogService, translateService: TranslateService);
22
26
  initializeButtons(): void;
23
27
  close(): void;
@@ -25,5 +29,5 @@ export declare class BimplusOverlayDialogConfirmComponent {
25
29
  buttonRowButtonClicked($event: BimplusButtonClickEvent): void;
26
30
  handleKeydown(event: KeyboardEvent): void;
27
31
  static ɵfac: i0.ɵɵFactoryDeclaration<BimplusOverlayDialogConfirmComponent, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<BimplusOverlayDialogConfirmComponent, "lib-bimplus-overlay-dialog-confirm", never, {}, {}, never, never, true, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<BimplusOverlayDialogConfirmComponent, "lib-bimplus-overlay-dialog-confirm", never, { "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; }, {}, never, never, true, never>;
29
33
  }
@@ -2,6 +2,11 @@ import { TranslateService } from '@ngx-translate/core';
2
2
  import { BimplusButtonClickEvent, BimplusButtonRowItem } from '../bimplus-buttons-row/bimplus-buttons-row.interface';
3
3
  import { DialogService } from '../bimplus-general-overlay-dialog/bimplus-general-overlay-dialog.service';
4
4
  import * as i0 from "@angular/core";
5
+ export interface CommentDialogData {
6
+ title: string;
7
+ message: string;
8
+ acceptCallback: () => void;
9
+ }
5
10
  export declare class BimplusOverlayDialogDeleteComponent {
6
11
  private readonly dialogService;
7
12
  private readonly translateService;
@@ -6,7 +6,7 @@ interface ResizerItem {
6
6
  'className': string;
7
7
  'resizeStrategy': string;
8
8
  }
9
- interface ResizableElement extends HTMLElement {
9
+ export interface ResizableElement extends HTMLElement {
10
10
  resizeStrategy?: string;
11
11
  }
12
12
  export declare class ResizableDirective implements OnDestroy, OnInit {
@@ -31,7 +31,6 @@ export declare class ResizableDirective implements OnDestroy, OnInit {
31
31
  ngOnInit(): void;
32
32
  ngOnDestroy(): void;
33
33
  resizeEnd(): void;
34
- _getViewRect(): DOMRect;
35
34
  /**--------------------------------------------------------------------------
36
35
  * find if rectangle 1 is inside rectangle 2
37
36
  --------------------------------------------------------------------------*/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-bimplus-components",
3
- "version": "0.0.181",
3
+ "version": "0.0.183",
4
4
  "license": "MIT",
5
5
  "author": "",
6
6
  "description": "bim+ angular components library",