@sytechui/pagination 2.2.27

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/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@sytechui/pagination",
3
+ "version": "2.2.27",
4
+ "description": "The Pagination component allows you to display active page and navigate between multiple pages.",
5
+ "keywords": [
6
+ "pagination"
7
+ ],
8
+ "author": "HeroUI <support@heroui.com>",
9
+ "homepage": "https://heroui.com",
10
+ "license": "MIT",
11
+ "main": "dist/index.js",
12
+ "sideEffects": false,
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/heroui-inc/heroui.git",
22
+ "directory": "packages/components/pagination"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/heroui-inc/heroui/issues"
26
+ },
27
+ "peerDependencies": {
28
+ "react": ">=18 || >=19.0.0-rc.0",
29
+ "react-dom": ">=18 || >=19.0.0-rc.0",
30
+ "@sytechui/theme": ">=2.4.24",
31
+ "@sytechui/system": ">=2.4.18"
32
+ },
33
+ "dependencies": {
34
+ "@react-aria/utils": "3.33.1",
35
+ "@react-aria/focus": "3.21.5",
36
+ "@react-aria/i18n": "3.12.16",
37
+ "@react-aria/interactions": "3.27.1",
38
+ "scroll-into-view-if-needed": "3.0.10",
39
+ "@sytechui/shared-utils": "2.1.12",
40
+ "@sytechui/react-utils": "2.1.14",
41
+ "@sytechui/use-intersection-observer": "2.2.14",
42
+ "@sytechui/use-pagination": "2.2.20",
43
+ "@sytechui/shared-icons": "2.1.10"
44
+ },
45
+ "clean-package": "../../../clean-package.config.json",
46
+ "module": "dist/index.mjs",
47
+ "types": "dist/index.d.ts",
48
+ "exports": {
49
+ ".": {
50
+ "types": "./dist/index.d.ts",
51
+ "import": "./dist/index.mjs",
52
+ "require": "./dist/index.js"
53
+ },
54
+ "./package.json": "./package.json"
55
+ },
56
+ "scripts": {
57
+ "build": "tsup src --dts",
58
+ "dev": "pnpm build:fast --watch",
59
+ "clean": "rimraf dist .turbo",
60
+ "typecheck": "tsc --noEmit",
61
+ "build:fast": "tsup src"
62
+ }
63
+ }