@cuby-ui/core 0.0.76 → 0.0.79

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.
@@ -856,7 +856,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
856
856
 
857
857
  const CUI_DIALOGS = cuiCreateToken(new BehaviorSubject([]));
858
858
  const CUI_DIALOG_DEFAULT_OPTIONS = {
859
- size: 'auto'
859
+ size: 'auto',
860
+ data: undefined
860
861
  };
861
862
  const CUI_DIALOG_OPTIONS = cuiCreateToken(CUI_DIALOG_DEFAULT_OPTIONS);
862
863
  const CUI_DIALOG_CONTEXT = new InjectionToken('');
@@ -890,7 +891,7 @@ class CuiDialogComponent {
890
891
  return this.context.content;
891
892
  }
892
893
  onClose() {
893
- this.context.$implicit.complete();
894
+ this.context.$implicit.next(false);
894
895
  }
895
896
  initContentType() {
896
897
  const content = this.context.content;