solid-slider 1.3.16 → 1.3.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 +1 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -222,6 +222,7 @@ Thie library exports it's own CSS which is the basic Keen-Slider implementation
|
|
|
222
222
|
- 1.3.14 - Patched npm packaging issue (thanks [joeygrable94 ](https://www.github.com/joeygrable94))
|
|
223
223
|
- 1.3.15 - Updated to Solid 1.7.11
|
|
224
224
|
- 1.3.16 - Updated dependencies and move Solid from dependency to peer
|
|
225
|
+
- 1.3.17 - Added typs definition to exports (thanks [ChristophP](https://github.com/ChristophP))
|
|
225
226
|
|
|
226
227
|
## Keen Options API
|
|
227
228
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solid-slider",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.17",
|
|
4
4
|
"description": "A slider utility for SolidJS.",
|
|
5
5
|
"author": "David Di Biase",
|
|
6
6
|
"repository": {
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"types": "dist/index/index.d.ts",
|
|
23
23
|
"exports": {
|
|
24
24
|
".": {
|
|
25
|
+
"types": "./dist/index/index.d.ts",
|
|
25
26
|
"solid": "./dist/index/index.jsx",
|
|
26
27
|
"import": "./dist/index/index.module.js",
|
|
27
28
|
"browser": "./dist/index/index.module.js",
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
"node": "./dist/index/index.common.js"
|
|
30
31
|
},
|
|
31
32
|
"./plugins/autoplay": {
|
|
33
|
+
"types": "./dist/autoplay/index.d.ts",
|
|
32
34
|
"solid": "./dist/autoplay/autoplay.jsx",
|
|
33
35
|
"import": "./dist/autoplay/index.module.js",
|
|
34
36
|
"browser": "./dist/autoplay/index.module.js",
|
|
@@ -36,6 +38,7 @@
|
|
|
36
38
|
"node": "./dist/autoplay/index.common.js"
|
|
37
39
|
},
|
|
38
40
|
"./plugins/adaptiveHeight": {
|
|
41
|
+
"types": "./dist/adaptiveHeight/index.d.ts",
|
|
39
42
|
"solid": "./dist/adaptiveHeight/adaptiveHeight.jsx",
|
|
40
43
|
"import": "./dist/adaptiveHeight/index.module.js",
|
|
41
44
|
"browser": "./dist/adaptiveHeight/index.module.js",
|
|
@@ -43,6 +46,7 @@
|
|
|
43
46
|
"node": "./dist/adaptiveHeight/index.common.js"
|
|
44
47
|
},
|
|
45
48
|
"./plugins/adaptiveWidth": {
|
|
49
|
+
"types": "./dist/adaptiveWidth/index.d.ts",
|
|
46
50
|
"solid": "./dist/adaptiveWidth/adaptiveWidth.jsx",
|
|
47
51
|
"import": "./dist/adaptiveWidth/index.module.js",
|
|
48
52
|
"browser": "./dist/adaptiveWidth/index.module.js",
|