solid-slider 1.2.5 → 1.2.6

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -96,6 +96,7 @@ Thie library exports it's own CSS which is the basic KeenSlider implementation f
96
96
  - 1.0.3 - Changed the exported API to be slightly more flexible.
97
97
  - 1.1.1 - Upgraded to KeenSlider 6 and improved general reactivity.
98
98
  - 1.2.5 - Added autoplay plugin and general plugin structure
99
+ - 1.2.6 - Maybe I should actually export the .css? That'd be a good idea, right?
99
100
 
100
101
  ## Keen Options API
101
102
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-slider",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "A slider utility for SolidJS.",
5
5
  "author": "David Di Biase",
6
6
  "license": "ISC",
@@ -18,7 +18,8 @@
18
18
  "module": "dist/index.js",
19
19
  "exports": {
20
20
  ".": "./dist/index.js",
21
- "./plugins/autoplay": "./dist/plugins/autoplay.js"
21
+ "./plugins/autoplay": "./dist/plugins/autoplay.js",
22
+ "./slider.css": "./dist/slider.css"
22
23
  },
23
24
  "types": "dist/index.d.ts",
24
25
  "sideEffects": "false",