@lynx-example/lynx-ui-swiper 0.0.1 → 0.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.
- package/Basic/index.tsx +109 -0
- package/Basic/styles.css +49 -0
- package/BasicDynamic/index.tsx +130 -0
- package/BasicDynamic/styles.css +47 -0
- package/BasicUpdateSize/index.tsx +131 -0
- package/BasicUpdateSize/styles.css +47 -0
- package/Bounces/index.tsx +73 -0
- package/Bounces/styles.css +41 -0
- package/CHANGELOG.md +15 -0
- package/Common/Button/index.tsx +48 -0
- package/Common/Button/styles.css +41 -0
- package/Common/Card/index.tsx +21 -0
- package/Common/Card/styles.css +21 -0
- package/Common/Indicator/index.tsx +24 -0
- package/Common/Indicator/styles.css +21 -0
- package/Custom/index.tsx +87 -0
- package/Custom/styles.css +47 -0
- package/CustomScale/index.tsx +116 -0
- package/CustomScale/styles.css +41 -0
- package/CustomTinder/Card.tsx +24 -0
- package/CustomTinder/index.tsx +111 -0
- package/CustomTinder/styles.css +61 -0
- package/DifferentHeight/Button.tsx +33 -0
- package/DifferentHeight/index.tsx +95 -0
- package/DifferentHeight/styles.css +50 -0
- package/Direction/index.tsx +127 -0
- package/Direction/styles.css +41 -0
- package/EmptyDataBug/index.tsx +371 -0
- package/EmptyDataBug/styles.css +75 -0
- package/Indicator/index.tsx +67 -0
- package/Indicator/styles.css +41 -0
- package/Lazy/index.tsx +83 -0
- package/Lazy/styles.css +41 -0
- package/Loop/index.tsx +77 -0
- package/Loop/styles.css +41 -0
- package/RTL/Button.tsx +33 -0
- package/RTL/index.tsx +133 -0
- package/RTL/styles.css +41 -0
- package/RTLCustom/index.tsx +115 -0
- package/RTLCustom/styles.css +41 -0
- package/RTLLoop/Button.tsx +33 -0
- package/RTLLoop/index.tsx +116 -0
- package/RTLLoop/styles.css +41 -0
- package/RTLLoopLynxRTL/Button.tsx +33 -0
- package/RTLLoopLynxRTL/index.tsx +116 -0
- package/RTLLoopLynxRTL/styles.css +41 -0
- package/WithGap/Button.tsx +33 -0
- package/WithGap/index.tsx +118 -0
- package/WithGap/styles.css +47 -0
- package/dist/SwiperBasic.lynx.bundle +0 -0
- package/dist/SwiperBasic.web.bundle +1 -1
- package/dist/SwiperBasicDynamic.lynx.bundle +0 -0
- package/dist/SwiperBasicDynamic.web.bundle +1 -1
- package/dist/SwiperBasicUpdateSize.lynx.bundle +0 -0
- package/dist/SwiperBasicUpdateSize.web.bundle +1 -1
- package/dist/SwiperCustomTinder.lynx.bundle +0 -0
- package/dist/SwiperCustomTinder.web.bundle +1 -1
- package/dist/SwiperDifferentHeight.lynx.bundle +0 -0
- package/dist/SwiperDifferentHeight.web.bundle +1 -1
- package/dist/SwiperEmptyDataBug.lynx.bundle +0 -0
- package/dist/SwiperEmptyDataBug.web.bundle +1 -1
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-example/lynx-ui-swiper",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Example app demonstrating Swiper usage in lynx-ui",
|
|
5
5
|
"homepage": "https://github.com/lynx-family/lynx-ui/tree/main/apps/examples/Swiper#readme",
|
|
6
6
|
"repository": {
|
|
@@ -17,14 +17,16 @@
|
|
|
17
17
|
"LICENSE",
|
|
18
18
|
"CHANGELOG.md",
|
|
19
19
|
"dist/",
|
|
20
|
-
"
|
|
20
|
+
"**/*.tsx",
|
|
21
|
+
"**/*.ts",
|
|
22
|
+
"**/*.css",
|
|
21
23
|
"lynx.config.mjs"
|
|
22
24
|
],
|
|
23
25
|
"dependencies": {
|
|
24
26
|
"@lynx-js/react": "0.113.0",
|
|
25
27
|
"clsx": "^2.1.1",
|
|
26
28
|
"@lynx-js/luna-styles": "0.1.0",
|
|
27
|
-
"@lynx-js/lynx-ui": "3.130.
|
|
29
|
+
"@lynx-js/lynx-ui": "3.130.1"
|
|
28
30
|
},
|
|
29
31
|
"devDependencies": {
|
|
30
32
|
"@lynx-js/qrcode-rsbuild-plugin": "0.3.3",
|