@shower/core 3.0.0-2 → 3.3.0
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 -2
- package/dist/shower.js +360 -238
- package/lib/default-options.js +14 -0
- package/lib/modules/a11y.js +38 -0
- package/lib/modules/install.js +28 -0
- package/lib/modules/keys.js +113 -0
- package/lib/modules/location.js +53 -0
- package/lib/modules/mouse.js +41 -0
- package/lib/modules/next.js +54 -0
- package/lib/modules/parse-timing.mjs +28 -0
- package/lib/modules/progress.js +22 -0
- package/lib/modules/timer.js +34 -0
- package/lib/modules/title.js +21 -0
- package/lib/modules/touch.js +34 -0
- package/lib/modules/view.js +54 -0
- package/lib/shower.js +66 -65
- package/lib/slide.js +99 -0
- package/lib/start.js +14 -0
- package/lib/utils.js +22 -0
- package/package.json +30 -30
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Core of Shower [](https://travis-ci.org/shower/core)
|
|
2
2
|
|
|
3
3
|
Core of the [Shower](https://github.com/shower/shower) presentation engine. Doesn’t include themes. [See it in action](https://shwr.me). Follow [@shower_me](https://twitter.com/shower_me) for support and updates, [file an issue] if you have any.
|
|
4
4
|
|
|
@@ -6,7 +6,7 @@ Core of the [Shower](https://github.com/shower/shower) presentation engine. Does
|
|
|
6
6
|
|
|
7
7
|
Get the [Shower template](https://github.com/shower/shower) with core already included. Download the template [archive](http://shwr.me/shower.zip) or install the package:
|
|
8
8
|
|
|
9
|
-
npm install shower
|
|
9
|
+
npm install @shower/shower
|
|
10
10
|
|
|
11
11
|
You can also install core as a separate package:
|
|
12
12
|
|