@abp/ng.theme.shared 7.1.0-rc.2 → 7.1.0
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/esm2020/extensions/lib/adapters/date-time.adapter.mjs +2 -2
- package/esm2020/lib/components/modal/modal.component.mjs +2 -2
- package/esm2020/lib/directives/visible.directive.mjs +2 -3
- package/fesm2015/abp-ng.theme.shared-extensions.mjs +1 -1
- package/fesm2015/abp-ng.theme.shared-extensions.mjs.map +1 -1
- package/fesm2015/abp-ng.theme.shared.mjs +2 -3
- package/fesm2015/abp-ng.theme.shared.mjs.map +1 -1
- package/fesm2020/abp-ng.theme.shared-extensions.mjs +1 -1
- package/fesm2020/abp-ng.theme.shared-extensions.mjs.map +1 -1
- package/fesm2020/abp-ng.theme.shared.mjs +2 -3
- package/fesm2020/abp-ng.theme.shared.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -737,7 +737,7 @@ class ModalComponent {
|
|
|
737
737
|
listen() {
|
|
738
738
|
if (this.modalWindowRef) {
|
|
739
739
|
fromEvent(this.modalWindowRef, 'keyup')
|
|
740
|
-
.pipe(takeUntil(this.destroy$), debounceTime(150), filter((key) => key && key.key === 'Escape'))
|
|
740
|
+
.pipe(takeUntil(this.destroy$), debounceTime(150), filter((key) => key && key.key === 'Escape' && this.options.keyboard))
|
|
741
741
|
.subscribe(() => this.close());
|
|
742
742
|
}
|
|
743
743
|
fromEvent(window, 'beforeunload')
|
|
@@ -1331,8 +1331,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
|
|
|
1331
1331
|
selector: '[abpVisible]',
|
|
1332
1332
|
}]
|
|
1333
1333
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }]; }, propDecorators: { abpVisible: [{
|
|
1334
|
-
type: Input
|
|
1335
|
-
args: ['abpVisible']
|
|
1334
|
+
type: Input
|
|
1336
1335
|
}] } });
|
|
1337
1336
|
function checkType(value) {
|
|
1338
1337
|
if (value instanceof Promise) {
|