@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.
- package/components/dialog/dialog.component.d.ts +1 -1
- package/components/dialog/dialog.interfaces.d.ts +5 -1
- package/components/dialog/dialog.tokens.d.ts +3 -3
- package/esm2020/components/dialog/dialog.component.mjs +2 -2
- package/esm2020/components/dialog/dialog.interfaces.mjs +1 -1
- package/esm2020/components/dialog/dialog.tokens.mjs +3 -2
- package/fesm2015/cuby-ui-core.mjs +3 -2
- package/fesm2015/cuby-ui-core.mjs.map +1 -1
- package/fesm2020/cuby-ui-core.mjs +3 -2
- package/fesm2020/cuby-ui-core.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -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.
|
|
894
|
+
this.context.$implicit.next(false);
|
|
894
895
|
}
|
|
895
896
|
initContentType() {
|
|
896
897
|
const content = this.context.content;
|