@crowdfarming/oliva-ds 1.63.0 → 1.64.0-rc.1
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/crowdfarming-oliva-ds.mjs +6 -0
- package/fesm2022/crowdfarming-oliva-ds.mjs.map +1 -1
- package/lib/modal/src/lib/modal/modal.component.d.ts +1 -0
- package/lib/modal/src/lib/modal/modal.interfaces.d.ts +1 -0
- package/lib/modal/src/lib/modal/modal.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5256,6 +5256,9 @@ class ModalComponent {
|
|
|
5256
5256
|
updateShowCloseButton(showCloseButton) {
|
|
5257
5257
|
this._showCloseButtonSignal.set(showCloseButton);
|
|
5258
5258
|
}
|
|
5259
|
+
updateSafeAreaInsetBottom(safeAreaInsetBottom) {
|
|
5260
|
+
this._safeAreaInsetBottomSignal.set(safeAreaInsetBottom);
|
|
5261
|
+
}
|
|
5259
5262
|
onBackdropClick() {
|
|
5260
5263
|
// This method is overridden by the service
|
|
5261
5264
|
}
|
|
@@ -5437,6 +5440,9 @@ class ModalService {
|
|
|
5437
5440
|
updateShowCloseButton: (showCloseButton) => {
|
|
5438
5441
|
modalRef.instance.updateShowCloseButton(showCloseButton);
|
|
5439
5442
|
},
|
|
5443
|
+
updateSafeAreaInsetBottom: (safeAreaInsetBottom) => {
|
|
5444
|
+
modalRef.instance.updateSafeAreaInsetBottom(safeAreaInsetBottom);
|
|
5445
|
+
},
|
|
5440
5446
|
};
|
|
5441
5447
|
// Store entry for tracking (resolvePromise will be assigned by the Promise executor)
|
|
5442
5448
|
const entry = {
|