@hedhog/pagination 0.0.16 → 0.0.17
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<img src="https://avatars.githubusercontent.com/u/177489127?s=200&v=4" alt="Hedhog Avatar" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
|
-
**Hedhog Pagination** is a powerful and flexible pagination library designed for use with HedHog-based projects. It simplifies the process of paginating data results from your database queries, making it easy to handle large datasets and provide
|
|
7
|
+
**Hedhog Pagination** is a powerful and flexible pagination library designed for use with HedHog-based projects. It simplifies the process of paginating data results from your database queries, making it easy to handle large datasets and provide user with a smooth and efficient browsing experience.
|
|
8
8
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
@@ -25,7 +25,7 @@ npm i @hedhog/pagination
|
|
|
25
25
|
|
|
26
26
|
```plaintext
|
|
27
27
|
pagination/
|
|
28
|
-
├── dist/ # Compiled JavaScript
|
|
28
|
+
├── dist/ # Compiled JavaScript file from build
|
|
29
29
|
├── node_modules/ # Discardable folder with all module dependencies
|
|
30
30
|
├── src/
|
|
31
31
|
│ ├── constants/
|
|
@@ -38,11 +38,11 @@ pagination/
|
|
|
38
38
|
│ │ └── pagination.enums.ts # Enums for pagination
|
|
39
39
|
│ ├── types/
|
|
40
40
|
│ │ └── pagination.types.ts # Type definitions for pagination
|
|
41
|
-
│ ├── index.ts # Entry point for pagination
|
|
41
|
+
│ ├── index.ts # Entry point for pagination file
|
|
42
42
|
│ ├── pagination.module.ts # Module definition for pagination functionalities
|
|
43
43
|
│ ├── pagination.service.spec.ts # Unit tests for PaginationService
|
|
44
44
|
│ └── pagination.service.ts # Service class for pagination logic
|
|
45
|
-
├── .gitignore # Specifies which
|
|
45
|
+
├── .gitignore # Specifies which file Git should ignore
|
|
46
46
|
├── package.json # Manages dependencies and scripts for the library
|
|
47
47
|
├── package-lock.json # Lock file for dependencies
|
|
48
48
|
├── README.md # Documentation for the library
|