@agentsmith.bgd/as-lib-pagination 20.0.1 → 22.0.3
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.
|
@@ -5,25 +5,31 @@ import { CommonModule } from '@angular/common';
|
|
|
5
5
|
|
|
6
6
|
class AsLibPaginationService {
|
|
7
7
|
constructor() { }
|
|
8
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: AsLibPaginationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: AsLibPaginationService, providedIn: 'root' });
|
|
10
10
|
}
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: AsLibPaginationService, decorators: [{
|
|
12
12
|
type: Injectable,
|
|
13
13
|
args: [{
|
|
14
|
-
providedIn: 'root'
|
|
14
|
+
providedIn: 'root',
|
|
15
15
|
}]
|
|
16
16
|
}], ctorParameters: () => [] });
|
|
17
17
|
|
|
18
18
|
class AsLibPaginationComponent {
|
|
19
|
-
first = input(false
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
first = input(false, /* @ts-ignore */
|
|
20
|
+
...(ngDevMode ? [{ debugName: "first" }] : /* istanbul ignore next */ []));
|
|
21
|
+
last = input(false, /* @ts-ignore */
|
|
22
|
+
...(ngDevMode ? [{ debugName: "last" }] : /* istanbul ignore next */ []));
|
|
23
|
+
align = input('', /* @ts-ignore */
|
|
24
|
+
...(ngDevMode ? [{ debugName: "align" }] : /* istanbul ignore next */ []));
|
|
25
|
+
enableLog = input(false, /* @ts-ignore */
|
|
26
|
+
...(ngDevMode ? [{ debugName: "enableLog" }] : /* istanbul ignore next */ []));
|
|
23
27
|
pageChange = output();
|
|
24
28
|
arr = [];
|
|
25
|
-
totalPages = input(0
|
|
26
|
-
|
|
29
|
+
totalPages = input(0, /* @ts-ignore */
|
|
30
|
+
...(ngDevMode ? [{ debugName: "totalPages" }] : /* istanbul ignore next */ []));
|
|
31
|
+
page = input(0, /* @ts-ignore */
|
|
32
|
+
...(ngDevMode ? [{ debugName: "page" }] : /* istanbul ignore next */ []));
|
|
27
33
|
constructor() {
|
|
28
34
|
effect(() => {
|
|
29
35
|
console.log(`The count is:`, this.totalPages(), this.page());
|
|
@@ -53,15 +59,13 @@ class AsLibPaginationComponent {
|
|
|
53
59
|
myIndexFn(index, item) {
|
|
54
60
|
return String(index); // Use index to uniquely identify each item
|
|
55
61
|
}
|
|
56
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
57
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
62
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: AsLibPaginationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
63
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.2", type: AsLibPaginationComponent, isStandalone: true, selector: "as-lib-pagination", inputs: { first: { classPropertyName: "first", publicName: "first", isSignal: true, isRequired: false, transformFunction: null }, last: { classPropertyName: "last", publicName: "last", isSignal: true, isRequired: false, transformFunction: null }, align: { classPropertyName: "align", publicName: "align", isSignal: true, isRequired: false, transformFunction: null }, enableLog: { classPropertyName: "enableLog", publicName: "enableLog", isSignal: true, isRequired: false, transformFunction: null }, totalPages: { classPropertyName: "totalPages", publicName: "totalPages", isSignal: true, isRequired: false, transformFunction: null }, page: { classPropertyName: "page", publicName: "page", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { pageChange: "pageChange" }, ngImport: i0, template: "<ul class=\"pagination {{ align() }}\">\n\t<li [class.disabled]=\"first()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(0)\" class=\"page-link\"> <i class=\"fa fa-angle-double-left\"></i> </a\n\t></li>\n\t<li [class.disabled]=\"first()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(page() - 1)\" class=\"page-link\"><i class=\"fa fa-angle-left\"></i></a>\n\t</li>\n\n\t<ng-container *ngFor=\"let x of arr; trackBy: myIndexFn\">\n\t\t<ng-container *ngIf=\"x !== -1; else disabledPage\">\n\t\t\t<li class=\"page-item d-none d-sm-block\" [class.active]=\"x === page()\">\n\t\t\t\t<a (click)=\"pageChange.emit(x)\" class=\"page-link\">{{ 1 + x }}</a>\n\t\t\t</li>\n\t\t</ng-container>\n\t\t<ng-template #disabledPage>\n\t\t\t<li class=\"page-item disabled d-none d-sm-block\">\n\t\t\t\t<a class=\"page-link\">...</a>\n\t\t\t</li>\n\t\t</ng-template>\n\t</ng-container>\n\n\t<li [class.disabled]=\"last()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(page() + 1)\" class=\"page-link\"><i class=\"fa fa-angle-right\"></i></a>\n\t</li>\n\t<li [class.disabled]=\"last()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(totalPages() - 1)\" class=\"page-link\"> <i class=\"fa fa-angle-double-right\"></i> </a\n\t></li>\n</ul>\n", styles: [".pagination.right{justify-content:flex-end}.pagination.center{justify-content:center}a.page-link{cursor:pointer}@media(max-width:575px){ul.pagination{justify-content:center!important}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
58
64
|
}
|
|
59
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
65
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: AsLibPaginationComponent, decorators: [{
|
|
60
66
|
type: Component,
|
|
61
|
-
args: [{ selector: 'as-lib-pagination', imports: [
|
|
62
|
-
|
|
63
|
-
], standalone: true, template: "<ul class=\"pagination {{ align() }}\">\n <li [class.disabled]=\"first()\" class=\"page-item\"\n ><a (click)=\"pageChange.emit(0)\" class=\"page-link\"> <i class=\"fa fa-angle-double-left\"></i> </a\n ></li>\n <li [class.disabled]=\"first()\" class=\"page-item\"\n ><a (click)=\"pageChange.emit(page() - 1)\" class=\"page-link\"><i class=\"fa fa-angle-left\"></i></a>\n </li>\n\n <ng-container *ngFor=\"let x of arr; trackBy:myIndexFn\">\n <ng-container *ngIf=\"x !== -1; else disabledPage\">\n <li class=\"page-item d-none d-sm-block\" [class.active]=\"x === page()\">\n <a (click)=\"pageChange.emit(x)\" class=\"page-link\">{{ 1 + x }}</a>\n </li>\n </ng-container>\n <ng-template #disabledPage>\n <li class=\"page-item disabled d-none d-sm-block\">\n <a class=\"page-link\">...</a>\n </li>\n </ng-template>\n\n </ng-container>\n\n\n <li [class.disabled]=\"last()\" class=\"page-item\"\n ><a (click)=\"pageChange.emit(page() + 1)\" class=\"page-link\"><i class=\"fa fa-angle-right\"></i></a>\n </li>\n <li [class.disabled]=\"last()\" class=\"page-item\"\n ><a (click)=\"pageChange.emit(totalPages() - 1)\" class=\"page-link\"> <i class=\"fa fa-angle-double-right\"></i> </a\n ></li>\n</ul>\n", styles: [".pagination.right{justify-content:flex-end}.pagination.center{justify-content:center}a.page-link{cursor:pointer}@media (max-width: 575px){ul.pagination{justify-content:center!important}}\n"] }]
|
|
64
|
-
}], ctorParameters: () => [] });
|
|
67
|
+
args: [{ selector: 'as-lib-pagination', imports: [CommonModule], standalone: true, template: "<ul class=\"pagination {{ align() }}\">\n\t<li [class.disabled]=\"first()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(0)\" class=\"page-link\"> <i class=\"fa fa-angle-double-left\"></i> </a\n\t></li>\n\t<li [class.disabled]=\"first()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(page() - 1)\" class=\"page-link\"><i class=\"fa fa-angle-left\"></i></a>\n\t</li>\n\n\t<ng-container *ngFor=\"let x of arr; trackBy: myIndexFn\">\n\t\t<ng-container *ngIf=\"x !== -1; else disabledPage\">\n\t\t\t<li class=\"page-item d-none d-sm-block\" [class.active]=\"x === page()\">\n\t\t\t\t<a (click)=\"pageChange.emit(x)\" class=\"page-link\">{{ 1 + x }}</a>\n\t\t\t</li>\n\t\t</ng-container>\n\t\t<ng-template #disabledPage>\n\t\t\t<li class=\"page-item disabled d-none d-sm-block\">\n\t\t\t\t<a class=\"page-link\">...</a>\n\t\t\t</li>\n\t\t</ng-template>\n\t</ng-container>\n\n\t<li [class.disabled]=\"last()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(page() + 1)\" class=\"page-link\"><i class=\"fa fa-angle-right\"></i></a>\n\t</li>\n\t<li [class.disabled]=\"last()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(totalPages() - 1)\" class=\"page-link\"> <i class=\"fa fa-angle-double-right\"></i> </a\n\t></li>\n</ul>\n", styles: [".pagination.right{justify-content:flex-end}.pagination.center{justify-content:center}a.page-link{cursor:pointer}@media(max-width:575px){ul.pagination{justify-content:center!important}}\n"] }]
|
|
68
|
+
}], ctorParameters: () => [], propDecorators: { first: [{ type: i0.Input, args: [{ isSignal: true, alias: "first", required: false }] }], last: [{ type: i0.Input, args: [{ isSignal: true, alias: "last", required: false }] }], align: [{ type: i0.Input, args: [{ isSignal: true, alias: "align", required: false }] }], enableLog: [{ type: i0.Input, args: [{ isSignal: true, alias: "enableLog", required: false }] }], pageChange: [{ type: i0.Output, args: ["pageChange"] }], totalPages: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalPages", required: false }] }], page: [{ type: i0.Input, args: [{ isSignal: true, alias: "page", required: false }] }] } });
|
|
65
69
|
|
|
66
70
|
/*
|
|
67
71
|
* Public API Surface of as-lib-pagination
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentsmith.bgd-as-lib-pagination.mjs","sources":["../../../projects/as-lib-pagination/src/lib/as-lib-pagination.service.ts","../../../projects/as-lib-pagination/src/lib/as-lib-pagination.component.ts","../../../projects/as-lib-pagination/src/lib/as-lib-pagination.component.html","../../../projects/as-lib-pagination/src/public-api.ts","../../../projects/as-lib-pagination/src/agentsmith.bgd-as-lib-pagination.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n
|
|
1
|
+
{"version":3,"file":"agentsmith.bgd-as-lib-pagination.mjs","sources":["../../../projects/as-lib-pagination/src/lib/as-lib-pagination.service.ts","../../../projects/as-lib-pagination/src/lib/as-lib-pagination.component.ts","../../../projects/as-lib-pagination/src/lib/as-lib-pagination.component.html","../../../projects/as-lib-pagination/src/public-api.ts","../../../projects/as-lib-pagination/src/agentsmith.bgd-as-lib-pagination.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n\tprovidedIn: 'root',\n})\nexport class AsLibPaginationService {\n\tconstructor() {}\n}\n","import { Component, effect, input, output } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\n@Component({\n\tselector: 'as-lib-pagination',\n\timports: [CommonModule],\n\ttemplateUrl: './as-lib-pagination.component.html',\n\tstyleUrl: './as-lib-pagination.component.scss',\n\tstandalone: true,\n})\nexport class AsLibPaginationComponent {\n\tfirst = input(false);\n\tlast = input(false);\n\talign = input<'' | 'justify-content-center' | 'justify-content-end'>('');\n\tenableLog = input(false);\n\tpageChange = output<number>();\n\tarr: number[] = [];\n\ttotalPages = input(0);\n\tpage = input(0);\n\n\tconstructor() {\n\t\teffect(() => {\n\t\t\tconsole.log(`The count is:`, this.totalPages(), this.page());\n\t\t\tthis.calculatePager();\n\t\t});\n\t}\n\n\tcalculatePager(): void {\n\t\tthis.arr = [];\n\t\tconst midd = this.page() <= 4 || this.page() >= this.totalPages() - 4 ? Math.floor(this.totalPages() / 2) : 0;\n\t\tfor (let num = 0; num < this.totalPages(); num++) {\n\t\t\tif (num < 2 || 2 >= Math.abs(this.page() - num) || 1 >= Math.abs(midd - num) || num === this.page() || num >= this.totalPages() - 2) {\n\t\t\t\tthis.arr.push(num);\n\t\t\t} else if (this.arr[this.arr.length - 1] !== -1) {\n\t\t\t\tthis.arr.push(-1);\n\t\t\t}\n\t\t}\n\t}\n\n\tngOnInit() {\n\t\tthis.calculatePager();\n\t}\n\n\tlog(value: any, ...rest: any[]): void {\n\t\tif (this.enableLog() || localStorage.getItem('loggerEnable')) {\n\t\t\tconsole.log('%c DEBUG ', 'background: gray; color: white; font-weight: bold;', `AS Pagination -> ${value}`, ...rest);\n\t\t}\n\t}\n\n\tmyIndexFn(index: number, item: any): string {\n\t\treturn String(index); // Use index to uniquely identify each item\n\t}\n}\n","<ul class=\"pagination {{ align() }}\">\n\t<li [class.disabled]=\"first()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(0)\" class=\"page-link\"> <i class=\"fa fa-angle-double-left\"></i> </a\n\t></li>\n\t<li [class.disabled]=\"first()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(page() - 1)\" class=\"page-link\"><i class=\"fa fa-angle-left\"></i></a>\n\t</li>\n\n\t<ng-container *ngFor=\"let x of arr; trackBy: myIndexFn\">\n\t\t<ng-container *ngIf=\"x !== -1; else disabledPage\">\n\t\t\t<li class=\"page-item d-none d-sm-block\" [class.active]=\"x === page()\">\n\t\t\t\t<a (click)=\"pageChange.emit(x)\" class=\"page-link\">{{ 1 + x }}</a>\n\t\t\t</li>\n\t\t</ng-container>\n\t\t<ng-template #disabledPage>\n\t\t\t<li class=\"page-item disabled d-none d-sm-block\">\n\t\t\t\t<a class=\"page-link\">...</a>\n\t\t\t</li>\n\t\t</ng-template>\n\t</ng-container>\n\n\t<li [class.disabled]=\"last()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(page() + 1)\" class=\"page-link\"><i class=\"fa fa-angle-right\"></i></a>\n\t</li>\n\t<li [class.disabled]=\"last()\" class=\"page-item\"\n\t\t><a (click)=\"pageChange.emit(totalPages() - 1)\" class=\"page-link\"> <i class=\"fa fa-angle-double-right\"></i> </a\n\t></li>\n</ul>\n","/*\n * Public API Surface of as-lib-pagination\n */\n\nexport * from './lib/as-lib-pagination.service';\nexport * from './lib/as-lib-pagination.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentsmith.bgd/as-lib-pagination",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.3",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
5
|
+
"@angular/common": "^22.0.0",
|
|
6
|
+
"@angular/core": "^22.0.0",
|
|
7
7
|
"font-awesome": "4.7.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
@@ -11,14 +11,15 @@
|
|
|
11
11
|
},
|
|
12
12
|
"sideEffects": false,
|
|
13
13
|
"module": "fesm2022/agentsmith.bgd-as-lib-pagination.mjs",
|
|
14
|
-
"typings": "
|
|
14
|
+
"typings": "types/agentsmith.bgd-as-lib-pagination.d.ts",
|
|
15
15
|
"exports": {
|
|
16
16
|
"./package.json": {
|
|
17
17
|
"default": "./package.json"
|
|
18
18
|
},
|
|
19
19
|
".": {
|
|
20
|
-
"types": "./
|
|
20
|
+
"types": "./types/agentsmith.bgd-as-lib-pagination.d.ts",
|
|
21
21
|
"default": "./fesm2022/agentsmith.bgd-as-lib-pagination.mjs"
|
|
22
22
|
}
|
|
23
|
-
}
|
|
23
|
+
},
|
|
24
|
+
"type": "module"
|
|
24
25
|
}
|
|
File without changes
|