@bizy/core 20.5.4 → 20.5.5
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/fesm2022/bizy-core.mjs +51 -9
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1042,6 +1042,7 @@ declare class BizyPopupWrapperComponent<T> {
|
|
|
1042
1042
|
right: string;
|
|
1043
1043
|
bottom: string;
|
|
1044
1044
|
left: string;
|
|
1045
|
+
transform: string;
|
|
1045
1046
|
} | null;
|
|
1046
1047
|
ngOnInit(): void;
|
|
1047
1048
|
ngAfterViewInit(): void;
|
|
@@ -1080,12 +1081,14 @@ declare class BizyPopupService {
|
|
|
1080
1081
|
id?: string;
|
|
1081
1082
|
disableCloseButton?: boolean;
|
|
1082
1083
|
disableDragButton?: boolean;
|
|
1084
|
+
element?: HTMLElement;
|
|
1083
1085
|
position?: {
|
|
1084
1086
|
top?: string;
|
|
1085
1087
|
right?: string;
|
|
1086
1088
|
bottom?: string;
|
|
1087
1089
|
left?: string;
|
|
1088
1090
|
};
|
|
1091
|
+
placement?: 'top' | 'right' | 'bottom' | 'left';
|
|
1089
1092
|
}, callback?: (res: R) => void): void;
|
|
1090
1093
|
getData<D>(): D;
|
|
1091
1094
|
close(data?: {
|