@paperless/angular 2.13.10 → 2.14.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/lib/stencil/components.mjs +5 -5
- package/fesm2015/paperless-angular.mjs +4 -4
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +4 -4
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/stencil/components.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1332,7 +1332,7 @@ let PField = class PField {
|
|
|
1332
1332
|
this.z = z;
|
|
1333
1333
|
c.detach();
|
|
1334
1334
|
this.el = r.nativeElement;
|
|
1335
|
-
proxyOutputs(this, this.el, ['valueChange', 'inputRefChange', 'add']);
|
|
1335
|
+
proxyOutputs(this, this.el, ['valueChange', 'inputRefChange', 'add', 'enter']);
|
|
1336
1336
|
}
|
|
1337
1337
|
};
|
|
1338
1338
|
PField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1958,10 +1958,10 @@ let PPaginationPages = class PPaginationPages {
|
|
|
1958
1958
|
}
|
|
1959
1959
|
};
|
|
1960
1960
|
PPaginationPages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PPaginationPages, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1961
|
-
PPaginationPages.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PPaginationPages, selector: "p-pagination-pages", inputs: { hideOnSinglePage: "hideOnSinglePage", page: "page", pageSize: "pageSize", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1961
|
+
PPaginationPages.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PPaginationPages, selector: "p-pagination-pages", inputs: { dropdownPageTemplate: "dropdownPageTemplate", hideOnSinglePage: "hideOnSinglePage", page: "page", pageSize: "pageSize", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1962
1962
|
PPaginationPages = __decorate([
|
|
1963
1963
|
ProxyCmp({
|
|
1964
|
-
inputs: ['hideOnSinglePage', 'page', 'pageSize', 'total']
|
|
1964
|
+
inputs: ['dropdownPageTemplate', 'hideOnSinglePage', 'page', 'pageSize', 'total']
|
|
1965
1965
|
})
|
|
1966
1966
|
], PPaginationPages);
|
|
1967
1967
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PPaginationPages, decorators: [{
|
|
@@ -1971,7 +1971,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1971
1971
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1972
1972
|
template: '<ng-content></ng-content>',
|
|
1973
1973
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1974
|
-
inputs: ['hideOnSinglePage', 'page', 'pageSize', 'total'],
|
|
1974
|
+
inputs: ['dropdownPageTemplate', 'hideOnSinglePage', 'page', 'pageSize', 'total'],
|
|
1975
1975
|
}]
|
|
1976
1976
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1977
1977
|
let PPaginationPagesItem = class PPaginationPagesItem {
|