ngx-toastr 14.2.3 → 15.0.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/README.md +6 -7
- package/esm2020/overlay/overlay-container.mjs +7 -5
- package/esm2020/overlay/overlay.mjs +3 -3
- package/esm2020/toastr/toast-noanimation.component.mjs +13 -14
- package/esm2020/toastr/toast.component.mjs +9 -9
- package/esm2020/toastr/toast.directive.mjs +7 -7
- package/esm2020/toastr/toastr.module.mjs +10 -11
- package/esm2020/toastr/toastr.service.mjs +5 -7
- package/fesm2015/ngx-toastr.mjs +48 -50
- package/fesm2015/ngx-toastr.mjs.map +1 -1
- package/fesm2020/ngx-toastr.mjs +48 -50
- package/fesm2020/ngx-toastr.mjs.map +1 -1
- package/{ngx-toastr.d.ts → index.d.ts} +0 -0
- package/overlay/overlay-container.d.ts +2 -1
- package/package.json +6 -7
- package/toastr/toast-noanimation.component.d.ts +1 -1
- package/toastr/toast.component.d.ts +1 -1
- package/toastr/toast.directive.d.ts +1 -1
package/fesm2020/ngx-toastr.mjs
CHANGED
@@ -14,9 +14,9 @@ class ToastContainerDirective {
|
|
14
14
|
return this.el.nativeElement;
|
15
15
|
}
|
16
16
|
}
|
17
|
-
ToastContainerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
18
|
-
ToastContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17
|
+
ToastContainerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastContainerDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
18
|
+
ToastContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: ToastContainerDirective, selector: "[toastContainer]", exportAs: ["toastContainer"], ngImport: i0 });
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastContainerDirective, decorators: [{
|
20
20
|
type: Directive,
|
21
21
|
args: [{
|
22
22
|
selector: '[toastContainer]',
|
@@ -25,10 +25,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImpor
|
|
25
25
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
26
26
|
class ToastContainerModule {
|
27
27
|
}
|
28
|
-
ToastContainerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
29
|
-
ToastContainerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
30
|
-
ToastContainerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
31
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
28
|
+
ToastContainerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
29
|
+
ToastContainerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.2", ngImport: i0, type: ToastContainerModule, declarations: [ToastContainerDirective], exports: [ToastContainerDirective] });
|
30
|
+
ToastContainerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastContainerModule });
|
31
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastContainerModule, decorators: [{
|
32
32
|
type: NgModule,
|
33
33
|
args: [{
|
34
34
|
declarations: [ToastContainerDirective],
|
@@ -342,18 +342,20 @@ class OverlayContainer {
|
|
342
342
|
}
|
343
343
|
/**
|
344
344
|
* Create the overlay container element, which is simply a div
|
345
|
-
* with the 'cdk-overlay-container' class on the document body
|
345
|
+
* with the 'cdk-overlay-container' class on the document body
|
346
|
+
* and 'aria-live="polite"'
|
346
347
|
*/
|
347
348
|
_createContainer() {
|
348
349
|
const container = this._document.createElement('div');
|
349
350
|
container.classList.add('overlay-container');
|
351
|
+
container.setAttribute('aria-live', 'polite');
|
350
352
|
this._document.body.appendChild(container);
|
351
353
|
this._containerElement = container;
|
352
354
|
}
|
353
355
|
}
|
354
|
-
OverlayContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
355
|
-
OverlayContainer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
356
|
+
OverlayContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: OverlayContainer, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
357
|
+
OverlayContainer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: OverlayContainer, providedIn: 'root' });
|
358
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: OverlayContainer, decorators: [{
|
357
359
|
type: Injectable,
|
358
360
|
args: [{ providedIn: 'root' }]
|
359
361
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
@@ -429,9 +431,9 @@ class Overlay {
|
|
429
431
|
return new OverlayRef(this._createPortalHost(pane));
|
430
432
|
}
|
431
433
|
}
|
432
|
-
Overlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
433
|
-
Overlay.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
434
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
434
|
+
Overlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: Overlay, deps: [{ token: OverlayContainer }, { token: i0.ComponentFactoryResolver }, { token: i0.ApplicationRef }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
435
|
+
Overlay.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: Overlay, providedIn: 'root' });
|
436
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: Overlay, decorators: [{
|
435
437
|
type: Injectable,
|
436
438
|
args: [{ providedIn: 'root' }]
|
437
439
|
}], ctorParameters: function () { return [{ type: OverlayContainer }, { type: i0.ComponentFactoryResolver }, { type: i0.ApplicationRef }, { type: undefined, decorators: [{
|
@@ -510,9 +512,7 @@ class ToastrService {
|
|
510
512
|
}
|
511
513
|
found.activeToast.toastRef.close();
|
512
514
|
this.toasts.splice(found.index, 1);
|
513
|
-
|
514
|
-
this.currentlyActive = this.currentlyActive - 1;
|
515
|
-
}
|
515
|
+
this.currentlyActive = this.currentlyActive - 1;
|
516
516
|
if (!this.toastrConfig.maxOpened || !this.toasts.length) {
|
517
517
|
return false;
|
518
518
|
}
|
@@ -621,9 +621,9 @@ class ToastrService {
|
|
621
621
|
return ins;
|
622
622
|
}
|
623
623
|
}
|
624
|
-
ToastrService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
625
|
-
ToastrService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
624
|
+
ToastrService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastrService, deps: [{ token: TOAST_CONFIG }, { token: Overlay }, { token: i0.Injector }, { token: i2.DomSanitizer }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
625
|
+
ToastrService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastrService, providedIn: 'root' });
|
626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastrService, decorators: [{
|
627
627
|
type: Injectable,
|
628
628
|
args: [{ providedIn: 'root' }]
|
629
629
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
@@ -796,25 +796,25 @@ class Toast {
|
|
796
796
|
}
|
797
797
|
}
|
798
798
|
}
|
799
|
-
Toast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
800
|
-
Toast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
799
|
+
Toast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: Toast, deps: [{ token: ToastrService }, { token: ToastPackage }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
800
|
+
Toast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.2", type: Toast, selector: "[toast-component]", host: { listeners: { "click": "tapToast()", "mouseenter": "stickAround()", "mouseleave": "delayedHideToast()" }, properties: { "class": "this.toastClasses", "@flyInOut": "this.state", "style.display": "this.displayStyle" } }, ngImport: i0, template: `
|
801
801
|
<button *ngIf="options.closeButton" (click)="remove()" type="button" class="toast-close-button" aria-label="Close">
|
802
802
|
<span aria-hidden="true">×</span>
|
803
803
|
</button>
|
804
804
|
<div *ngIf="title" [class]="options.titleClass" [attr.aria-label]="title">
|
805
805
|
{{ title }} <ng-container *ngIf="duplicatesCount">[{{ duplicatesCount + 1 }}]</ng-container>
|
806
806
|
</div>
|
807
|
-
<div *ngIf="message && options.enableHtml" role="
|
807
|
+
<div *ngIf="message && options.enableHtml" role="alert"
|
808
808
|
[class]="options.messageClass" [innerHTML]="message">
|
809
809
|
</div>
|
810
|
-
<div *ngIf="message && !options.enableHtml" role="
|
810
|
+
<div *ngIf="message && !options.enableHtml" role="alert"
|
811
811
|
[class]="options.messageClass" [attr.aria-label]="message">
|
812
812
|
{{ message }}
|
813
813
|
</div>
|
814
814
|
<div *ngIf="options.progressBar">
|
815
815
|
<div class="toast-progress" [style.width]="width + '%'"></div>
|
816
816
|
</div>
|
817
|
-
`, isInline: true,
|
817
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], animations: [
|
818
818
|
trigger('flyInOut', [
|
819
819
|
state('inactive', style({ opacity: 0 })),
|
820
820
|
state('active', style({ opacity: 1 })),
|
@@ -823,7 +823,7 @@ Toast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.5
|
|
823
823
|
transition('active => removed', animate('{{ easeTime }}ms {{ easing }}'))
|
824
824
|
])
|
825
825
|
] });
|
826
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: Toast, decorators: [{
|
827
827
|
type: Component,
|
828
828
|
args: [{
|
829
829
|
selector: '[toast-component]',
|
@@ -834,10 +834,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImpor
|
|
834
834
|
<div *ngIf="title" [class]="options.titleClass" [attr.aria-label]="title">
|
835
835
|
{{ title }} <ng-container *ngIf="duplicatesCount">[{{ duplicatesCount + 1 }}]</ng-container>
|
836
836
|
</div>
|
837
|
-
<div *ngIf="message && options.enableHtml" role="
|
837
|
+
<div *ngIf="message && options.enableHtml" role="alert"
|
838
838
|
[class]="options.messageClass" [innerHTML]="message">
|
839
839
|
</div>
|
840
|
-
<div *ngIf="message && !options.enableHtml" role="
|
840
|
+
<div *ngIf="message && !options.enableHtml" role="alert"
|
841
841
|
[class]="options.messageClass" [attr.aria-label]="message">
|
842
842
|
{{ message }}
|
843
843
|
</div>
|
@@ -896,16 +896,15 @@ class ToastrModule {
|
|
896
896
|
};
|
897
897
|
}
|
898
898
|
}
|
899
|
-
ToastrModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
900
|
-
ToastrModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
901
|
-
ToastrModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
902
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
899
|
+
ToastrModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastrModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
900
|
+
ToastrModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.2", ngImport: i0, type: ToastrModule, declarations: [Toast], imports: [CommonModule], exports: [Toast] });
|
901
|
+
ToastrModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastrModule, imports: [CommonModule] });
|
902
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastrModule, decorators: [{
|
903
903
|
type: NgModule,
|
904
904
|
args: [{
|
905
905
|
imports: [CommonModule],
|
906
906
|
declarations: [Toast],
|
907
907
|
exports: [Toast],
|
908
|
-
entryComponents: [Toast],
|
909
908
|
}]
|
910
909
|
}] });
|
911
910
|
class ToastrComponentlessModule {
|
@@ -924,10 +923,10 @@ class ToastrComponentlessModule {
|
|
924
923
|
};
|
925
924
|
}
|
926
925
|
}
|
927
|
-
ToastrComponentlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
928
|
-
ToastrComponentlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
929
|
-
ToastrComponentlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
930
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
926
|
+
ToastrComponentlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastrComponentlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
927
|
+
ToastrComponentlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.2", ngImport: i0, type: ToastrComponentlessModule, imports: [CommonModule] });
|
928
|
+
ToastrComponentlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastrComponentlessModule, imports: [CommonModule] });
|
929
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastrComponentlessModule, decorators: [{
|
931
930
|
type: NgModule,
|
932
931
|
args: [{
|
933
932
|
imports: [CommonModule],
|
@@ -1073,26 +1072,26 @@ class ToastNoAnimation {
|
|
1073
1072
|
}
|
1074
1073
|
}
|
1075
1074
|
}
|
1076
|
-
ToastNoAnimation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
1077
|
-
ToastNoAnimation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
1075
|
+
ToastNoAnimation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastNoAnimation, deps: [{ token: ToastrService }, { token: ToastPackage }, { token: i0.ApplicationRef }], target: i0.ɵɵFactoryTarget.Component });
|
1076
|
+
ToastNoAnimation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.2", type: ToastNoAnimation, selector: "[toast-component]", host: { listeners: { "click": "tapToast()", "mouseenter": "stickAround()", "mouseleave": "delayedHideToast()" }, properties: { "class": "this.toastClasses", "style.display": "this.displayStyle" } }, ngImport: i0, template: `
|
1078
1077
|
<button *ngIf="options.closeButton" (click)="remove()" type="button" class="toast-close-button" aria-label="Close">
|
1079
1078
|
<span aria-hidden="true">×</span>
|
1080
1079
|
</button>
|
1081
1080
|
<div *ngIf="title" [class]="options.titleClass" [attr.aria-label]="title">
|
1082
1081
|
{{ title }} <ng-container *ngIf="duplicatesCount">[{{ duplicatesCount + 1 }}]</ng-container>
|
1083
1082
|
</div>
|
1084
|
-
<div *ngIf="message && options.enableHtml" role="alert"
|
1083
|
+
<div *ngIf="message && options.enableHtml" role="alert"
|
1085
1084
|
[class]="options.messageClass" [innerHTML]="message">
|
1086
1085
|
</div>
|
1087
|
-
<div *ngIf="message && !options.enableHtml" role="alert"
|
1086
|
+
<div *ngIf="message && !options.enableHtml" role="alert"
|
1088
1087
|
[class]="options.messageClass" [attr.aria-label]="message">
|
1089
1088
|
{{ message }}
|
1090
1089
|
</div>
|
1091
1090
|
<div *ngIf="options.progressBar">
|
1092
1091
|
<div class="toast-progress" [style.width]="width + '%'"></div>
|
1093
1092
|
</div>
|
1094
|
-
`, isInline: true,
|
1095
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
1093
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
1094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastNoAnimation, decorators: [{
|
1096
1095
|
type: Component,
|
1097
1096
|
args: [{
|
1098
1097
|
selector: '[toast-component]',
|
@@ -1103,10 +1102,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImpor
|
|
1103
1102
|
<div *ngIf="title" [class]="options.titleClass" [attr.aria-label]="title">
|
1104
1103
|
{{ title }} <ng-container *ngIf="duplicatesCount">[{{ duplicatesCount + 1 }}]</ng-container>
|
1105
1104
|
</div>
|
1106
|
-
<div *ngIf="message && options.enableHtml" role="alert"
|
1105
|
+
<div *ngIf="message && options.enableHtml" role="alert"
|
1107
1106
|
[class]="options.messageClass" [innerHTML]="message">
|
1108
1107
|
</div>
|
1109
|
-
<div *ngIf="message && !options.enableHtml" role="alert"
|
1108
|
+
<div *ngIf="message && !options.enableHtml" role="alert"
|
1110
1109
|
[class]="options.messageClass" [attr.aria-label]="message">
|
1111
1110
|
{{ message }}
|
1112
1111
|
</div>
|
@@ -1151,16 +1150,15 @@ class ToastNoAnimationModule {
|
|
1151
1150
|
};
|
1152
1151
|
}
|
1153
1152
|
}
|
1154
|
-
ToastNoAnimationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
1155
|
-
ToastNoAnimationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
1156
|
-
ToastNoAnimationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
1157
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
1153
|
+
ToastNoAnimationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastNoAnimationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1154
|
+
ToastNoAnimationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.2", ngImport: i0, type: ToastNoAnimationModule, declarations: [ToastNoAnimation], imports: [CommonModule], exports: [ToastNoAnimation] });
|
1155
|
+
ToastNoAnimationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastNoAnimationModule, imports: [CommonModule] });
|
1156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ToastNoAnimationModule, decorators: [{
|
1158
1157
|
type: NgModule,
|
1159
1158
|
args: [{
|
1160
1159
|
imports: [CommonModule],
|
1161
1160
|
declarations: [ToastNoAnimation],
|
1162
1161
|
exports: [ToastNoAnimation],
|
1163
|
-
entryComponents: [ToastNoAnimation],
|
1164
1162
|
}]
|
1165
1163
|
}] });
|
1166
1164
|
|