@paperless/angular 0.1.0-alpha.213 → 0.1.0-alpha.215
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/lib/animations/slide.mjs +10 -1
- package/esm2020/lib/modules/toast/components/toast-container/toast-container.component.mjs +6 -5
- package/fesm2015/paperless-angular.mjs +13 -4
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +13 -4
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/animations/slide.d.ts +1 -0
- package/lib/modules/toast/components/toast-container/toast-container.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { EventEmitter, Component, Input, Output, ViewChild, Directive, HostListe
|
|
|
3
3
|
import { NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray } from '@angular/forms';
|
|
4
4
|
import { __decorate } from 'tslib';
|
|
5
5
|
import { untilDestroyed, UntilDestroy } from '@ngneat/until-destroy';
|
|
6
|
-
import { timer, fromEvent, BehaviorSubject } from 'rxjs';
|
|
6
|
+
import { timer, fromEvent, BehaviorSubject, map as map$1 } from 'rxjs';
|
|
7
7
|
import { startWith, pairwise, map, filter, debounce } from 'rxjs/operators';
|
|
8
8
|
import { objectGetByPath } from '@paperless/core';
|
|
9
9
|
import * as i1 from '@angular/common';
|
|
@@ -2794,6 +2794,15 @@ const SLIDE_IN_BOTTOM_OUT_TOP = trigger('pSlideInBottomOutTop', [
|
|
|
2794
2794
|
animate('200ms ease-in', style({ transform: 'translateY(-100%)', opacity: 0 })),
|
|
2795
2795
|
]),
|
|
2796
2796
|
]);
|
|
2797
|
+
const SLIDE_IN_TOP_OUT_BOTTOM = trigger('pSlideInBottomOutTop', [
|
|
2798
|
+
transition(':enter', [
|
|
2799
|
+
style({ transform: 'translateY(-100%)', opacity: 0 }),
|
|
2800
|
+
animate('200ms ease-in', style({ transform: 'translateX(0%)', opacity: 1 })),
|
|
2801
|
+
]),
|
|
2802
|
+
transition(':leave', [
|
|
2803
|
+
animate('200ms ease-in', style({ transform: 'translateY(50%)', opacity: 0 })),
|
|
2804
|
+
]),
|
|
2805
|
+
]);
|
|
2797
2806
|
|
|
2798
2807
|
var ToastVariants;
|
|
2799
2808
|
(function (ToastVariants) {
|
|
@@ -2895,7 +2904,7 @@ let ToastContainer = class ToastContainer {
|
|
|
2895
2904
|
constructor(r, z, _toastService) {
|
|
2896
2905
|
this.z = z;
|
|
2897
2906
|
this._toastService = _toastService;
|
|
2898
|
-
this.toasts$ = this._toastService.toasts
|
|
2907
|
+
this.toasts$ = this._toastService.toasts$.pipe(map$1((arr) => arr.reverse()));
|
|
2899
2908
|
this.el = r.nativeElement;
|
|
2900
2909
|
}
|
|
2901
2910
|
dismiss(index) {
|
|
@@ -2903,7 +2912,7 @@ let ToastContainer = class ToastContainer {
|
|
|
2903
2912
|
}
|
|
2904
2913
|
};
|
|
2905
2914
|
ToastContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: ToastContainer, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2906
|
-
ToastContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: ToastContainer, selector: "p-toast-container", inputs: { placement: "placement" }, ngImport: i0, template: "<p-toast\n *ngFor=\"let toast of toasts$ | async; let index = index\"\n [variant]=\"toast.variant\"\n [header]=\"toast.header\"\n [content]=\"toast.content\"\n [index]=\"index\"\n [delay]=\"toast.options.delay ?? 5000\"\n [dismissOnAction]=\"toast.options.dismissOnAction ?? true\"\n [enableAction]=\"toast.options.enableAction\"\n [actionIcon]=\"toast.options.icon?.variant\"\n [actionIconFlip]=\"toast.options.icon?.flip\"\n [actionIconRotate]=\"toast.options.icon?.rotate\"\n (dismiss)=\"dismiss($event)\"\n [@pSlideInBottomOutTop]\n></p-toast>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: PToast, selector: "p-toast", inputs: ["actionIcon", "actionIconFlip", "actionIconRotate", "content", "enableAction", "header", "variant"] }, { kind: "directive", type: ToastDirective, selector: "p-toast", inputs: ["delay", "index", "dismissOnAction"], outputs: ["dismiss"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], animations: [
|
|
2915
|
+
ToastContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: ToastContainer, selector: "p-toast-container", inputs: { placement: "placement" }, ngImport: i0, template: "<p-toast\n *ngFor=\"let toast of toasts$ | async; let index = index\"\n [variant]=\"toast.variant\"\n [header]=\"toast.header\"\n [content]=\"toast.content\"\n [index]=\"index\"\n [delay]=\"toast.options.delay ?? 5000\"\n [dismissOnAction]=\"toast.options.dismissOnAction ?? true\"\n [enableAction]=\"toast.options.enableAction\"\n [actionIcon]=\"toast.options.icon?.variant\"\n [actionIconFlip]=\"toast.options.icon?.flip\"\n [actionIconRotate]=\"toast.options.icon?.rotate\"\n (dismiss)=\"dismiss($event)\"\n [@pSlideInBottomOutTop]\n></p-toast>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: PToast, selector: "p-toast", inputs: ["actionIcon", "actionIconFlip", "actionIconRotate", "content", "enableAction", "header", "variant"] }, { kind: "directive", type: ToastDirective, selector: "p-toast", inputs: ["delay", "index", "dismissOnAction"], outputs: ["dismiss"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], animations: [SLIDE_IN_TOP_OUT_BOTTOM], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2907
2916
|
ToastContainer = __decorate([
|
|
2908
2917
|
ProxyCmp({
|
|
2909
2918
|
defineCustomElementFn: undefined,
|
|
@@ -2912,7 +2921,7 @@ ToastContainer = __decorate([
|
|
|
2912
2921
|
], ToastContainer);
|
|
2913
2922
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: ToastContainer, decorators: [{
|
|
2914
2923
|
type: Component,
|
|
2915
|
-
args: [{ selector: 'p-toast-container', changeDetection: ChangeDetectionStrategy.OnPush, inputs: ['placement'], animations: [
|
|
2924
|
+
args: [{ selector: 'p-toast-container', changeDetection: ChangeDetectionStrategy.OnPush, inputs: ['placement'], animations: [SLIDE_IN_TOP_OUT_BOTTOM], template: "<p-toast\n *ngFor=\"let toast of toasts$ | async; let index = index\"\n [variant]=\"toast.variant\"\n [header]=\"toast.header\"\n [content]=\"toast.content\"\n [index]=\"index\"\n [delay]=\"toast.options.delay ?? 5000\"\n [dismissOnAction]=\"toast.options.dismissOnAction ?? true\"\n [enableAction]=\"toast.options.enableAction\"\n [actionIcon]=\"toast.options.icon?.variant\"\n [actionIconFlip]=\"toast.options.icon?.flip\"\n [actionIconRotate]=\"toast.options.icon?.rotate\"\n (dismiss)=\"dismiss($event)\"\n [@pSlideInBottomOutTop]\n></p-toast>\n" }]
|
|
2916
2925
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: ToastService }]; } });
|
|
2917
2926
|
|
|
2918
2927
|
const TOAST_COMPONENTS = [ToastContainer];
|