@xiping/react-components 0.0.64 → 0.0.66
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/dist/cjs/components/hyper-text/index.d.ts +22 -0
- package/dist/cjs/components/hyper-text/index.js +1 -0
- package/dist/cjs/components/image-viewer/ImageViewer.js +1 -1
- package/dist/cjs/components/morphing-text/index.d.ts +6 -0
- package/dist/cjs/components/pinch-content/PinchContent.d.ts +1 -0
- package/dist/cjs/components/pinch-content/PinchContent.js +1 -1
- package/dist/cjs/components/shimmer-button/ShimmerButton.d.ts +12 -0
- package/dist/cjs/components/text-animate/TextAnimate.d.ts +52 -0
- package/dist/cjs/components/text-animate/index.d.ts +3 -0
- package/dist/cjs/components/typing-animation/index.d.ts +11 -0
- package/dist/cjs/components/typing-animation/index.js +1 -0
- package/dist/cjs/index.d.ts +2 -0
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/react-components.css +1 -1
- package/dist/cjs/utils/utils.d.ts +2 -0
- package/dist/cjs/utils/utils.js +1 -0
- package/dist/es/components/hyper-text/index.d.ts +22 -0
- package/dist/es/components/hyper-text/index.js +73 -0
- package/dist/es/components/image-viewer/ImageViewer.js +52 -41
- package/dist/es/components/morphing-text/index.d.ts +6 -0
- package/dist/es/components/pinch-content/PinchContent.d.ts +1 -0
- package/dist/es/components/pinch-content/PinchContent.js +53 -45
- package/dist/es/components/shimmer-button/ShimmerButton.d.ts +12 -0
- package/dist/es/components/text-animate/TextAnimate.d.ts +52 -0
- package/dist/es/components/text-animate/index.d.ts +3 -0
- package/dist/es/components/typing-animation/index.d.ts +11 -0
- package/dist/es/components/typing-animation/index.js +58 -0
- package/dist/es/index.d.ts +2 -0
- package/dist/es/index.js +12 -8
- package/dist/es/react-components.css +1 -1
- package/dist/es/utils/utils.d.ts +2 -0
- package/dist/es/utils/utils.js +8 -0
- package/package.json +30 -27
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xiping/react-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.66",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cjs/index.js",
|
|
7
7
|
"module": "./dist/es/index.js",
|
|
@@ -33,57 +33,59 @@
|
|
|
33
33
|
"react-dom": ">=18 || >= 19"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@
|
|
37
|
-
"@
|
|
38
|
-
"@
|
|
39
|
-
"@nextui-org/spinner": "^2.2.6",
|
|
40
|
-
"@nextui-org/system": "^2.4.6",
|
|
36
|
+
"@heroui/button": "^2.2.10",
|
|
37
|
+
"@heroui/modal": "^2.2.7",
|
|
38
|
+
"@heroui/spinner": "^2.2.7",
|
|
41
39
|
"@nextui-org/theme": "^2.4.5",
|
|
40
|
+
"@radix-ui/react-scroll-area": "^1.2.2",
|
|
42
41
|
"@react-spring/web": "^9.7.5",
|
|
43
42
|
"@use-gesture/react": "^10.3.1",
|
|
44
43
|
"ahooks": "^3.8.4",
|
|
45
44
|
"axios": "^1.7.9",
|
|
46
45
|
"clsx": "^2.1.1",
|
|
47
46
|
"dayjs": "^1.11.13",
|
|
48
|
-
"framer-motion": "^
|
|
47
|
+
"framer-motion": "^12.0.0",
|
|
49
48
|
"lodash-es": "^4.17.21",
|
|
49
|
+
"motion": "^11.18.2",
|
|
50
50
|
"react": "^18.3.1",
|
|
51
51
|
"react-dom": "^18.3.1",
|
|
52
52
|
"react-icons": "^5.4.0",
|
|
53
|
-
"react-router-dom": "^7.1.
|
|
53
|
+
"react-router-dom": "^7.1.3",
|
|
54
54
|
"zustand": "^5.0.3"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@chromatic-com/storybook": "^3.2.
|
|
58
|
-
"@eslint/js": "^9.
|
|
59
|
-
"@faker-js/faker": "^9.
|
|
60
|
-
"@storybook/addon-essentials": "^8.
|
|
61
|
-
"@storybook/addon-interactions": "^8.
|
|
62
|
-
"@storybook/addon-onboarding": "^8.
|
|
63
|
-
"@storybook/blocks": "^8.
|
|
64
|
-
"@storybook/react": "^8.
|
|
65
|
-
"@storybook/react-vite": "^8.
|
|
66
|
-
"@storybook/test": "^8.
|
|
57
|
+
"@chromatic-com/storybook": "^3.2.4",
|
|
58
|
+
"@eslint/js": "^9.18.0",
|
|
59
|
+
"@faker-js/faker": "^9.4.0",
|
|
60
|
+
"@storybook/addon-essentials": "^8.5.0",
|
|
61
|
+
"@storybook/addon-interactions": "^8.5.0",
|
|
62
|
+
"@storybook/addon-onboarding": "^8.5.0",
|
|
63
|
+
"@storybook/blocks": "^8.5.0",
|
|
64
|
+
"@storybook/react": "^8.5.0",
|
|
65
|
+
"@storybook/react-vite": "^8.5.0",
|
|
66
|
+
"@storybook/test": "^8.5.0",
|
|
67
67
|
"@types/lodash-es": "^4.17.12",
|
|
68
|
-
"@types/node": "^22.10.
|
|
68
|
+
"@types/node": "^22.10.7",
|
|
69
69
|
"@types/react": "^18.3.18",
|
|
70
70
|
"@types/react-dom": "^18.3.5",
|
|
71
71
|
"@vitejs/plugin-react": "^4.3.4",
|
|
72
72
|
"autoprefixer": "^10.4.20",
|
|
73
|
-
"eslint": "^9.
|
|
73
|
+
"eslint": "^9.18.0",
|
|
74
74
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
75
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
75
|
+
"eslint-plugin-react-refresh": "^0.4.18",
|
|
76
76
|
"eslint-plugin-storybook": "^0.11.2",
|
|
77
77
|
"globals": "^15.14.0",
|
|
78
|
-
"postcss": "^8.
|
|
78
|
+
"postcss": "^8.5.1",
|
|
79
79
|
"prettier": "^3.4.2",
|
|
80
80
|
"sharp": "^0.33.5",
|
|
81
|
-
"storybook": "^8.
|
|
81
|
+
"storybook": "^8.5.0",
|
|
82
82
|
"svgo": "^3.3.2",
|
|
83
|
+
"tailwind-merge": "^2.6.0",
|
|
83
84
|
"tailwindcss": "^3.4.17",
|
|
85
|
+
"tailwindcss-safe-area": "^0.6.0",
|
|
84
86
|
"typescript": "~5.6.3",
|
|
85
|
-
"typescript-eslint": "^8.
|
|
86
|
-
"vite": "^6.0.
|
|
87
|
+
"typescript-eslint": "^8.21.0",
|
|
88
|
+
"vite": "^6.0.11",
|
|
87
89
|
"vite-plugin-dts": "^4.5.0",
|
|
88
90
|
"vite-plugin-image-optimizer": "^1.1.8",
|
|
89
91
|
"vite-plugin-lib-inject-css": "^2.2.1",
|
|
@@ -91,10 +93,11 @@
|
|
|
91
93
|
"vite-tsconfig-paths": "^5.1.4"
|
|
92
94
|
},
|
|
93
95
|
"publishConfig": {
|
|
94
|
-
"access": "public"
|
|
96
|
+
"access": "public",
|
|
97
|
+
"registry": "https://registry.npmjs.org/"
|
|
95
98
|
},
|
|
96
99
|
"engines": {
|
|
97
100
|
"node": ">=18"
|
|
98
101
|
},
|
|
99
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "a3acb9487aedf2fe3211a9e78a4e5b50ab9d6c5c"
|
|
100
103
|
}
|