solid-slider 1.3.13 → 1.3.15
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 +2 -0
- package/package.json +13 -5
package/README.md
CHANGED
|
@@ -219,6 +219,8 @@ Thie library exports it's own CSS which is the basic Keen-Slider implementation
|
|
|
219
219
|
- 1.3.11 - Upgraded importance dependencies including Solid 1.6
|
|
220
220
|
- 1.3.12 - Patched slider to reactively update on updating children
|
|
221
221
|
- 1.3.13 - Incorporated adaptiveHeight plugin (thanks [joeygrable94](https://www.github.com/joeygrable94))
|
|
222
|
+
- 1.3.14 - Patched npm packaging issue (thanks [joeygrable94 ](https://www.github.com/joeygrable94))
|
|
223
|
+
- 1.3.15 - Updated to Solid 1.7.11
|
|
222
224
|
|
|
223
225
|
## Keen Options API
|
|
224
226
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solid-slider",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.15",
|
|
4
4
|
"description": "A slider utility for SolidJS.",
|
|
5
5
|
"author": "David Di Biase",
|
|
6
6
|
"repository": {
|
|
@@ -36,14 +36,22 @@
|
|
|
36
36
|
"node": "./dist/autoplay/index.common.js"
|
|
37
37
|
},
|
|
38
38
|
"./plugins/adaptiveHeight": {
|
|
39
|
-
"solid": "./dist/adaptiveHeight/
|
|
39
|
+
"solid": "./dist/adaptiveHeight/adaptiveHeight.jsx",
|
|
40
40
|
"import": "./dist/adaptiveHeight/index.module.js",
|
|
41
41
|
"browser": "./dist/adaptiveHeight/index.module.js",
|
|
42
42
|
"require": "./dist/adaptiveHeight/index.common.js",
|
|
43
43
|
"node": "./dist/adaptiveHeight/index.common.js"
|
|
44
44
|
},
|
|
45
|
+
"./plugins/adaptiveWidth": {
|
|
46
|
+
"solid": "./dist/adaptiveWidth/adaptiveWidth.jsx",
|
|
47
|
+
"import": "./dist/adaptiveWidth/index.module.js",
|
|
48
|
+
"browser": "./dist/adaptiveWidth/index.module.js",
|
|
49
|
+
"require": "./dist/adaptiveWidth/index.common.js",
|
|
50
|
+
"node": "./dist/adaptiveWidth/index.common.js"
|
|
51
|
+
},
|
|
45
52
|
"./slider.css": "./dist/slider.css",
|
|
46
|
-
"./adaptiveHeight/style.css": "./dist/adaptiveHeight/slider.css"
|
|
53
|
+
"./adaptiveHeight/style.css": "./dist/adaptiveHeight/slider.css",
|
|
54
|
+
"./adaptiveWidth/style.css": "./dist/adaptiveWidth/slider.css"
|
|
47
55
|
},
|
|
48
56
|
"sideEffects": false,
|
|
49
57
|
"files": [
|
|
@@ -65,13 +73,13 @@
|
|
|
65
73
|
"@solid-primitives/timer": "^1.3.4",
|
|
66
74
|
"@solid-primitives/utils": "^4.0.0",
|
|
67
75
|
"keen-slider": "^6.8.3",
|
|
68
|
-
"solid-js": "^1.
|
|
76
|
+
"solid-js": "^1.7.11"
|
|
69
77
|
},
|
|
70
78
|
"devDependencies": {
|
|
71
79
|
"esbuild-plugin-solid": "^0.4.2",
|
|
72
80
|
"prettier": "^2.7.1",
|
|
73
81
|
"rollup": "^2.79.1",
|
|
74
82
|
"rollup-preset-solid": "^1.4.0",
|
|
75
|
-
"typescript": "^4.
|
|
83
|
+
"typescript": "^4.9.3"
|
|
76
84
|
}
|
|
77
85
|
}
|