@shower/core 3.3.0 → 3.4.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/LICENSE.md +5 -17
- package/README.md +7 -3
- package/dist/index.js +860 -0
- package/lib/default-options.js +11 -11
- package/lib/{start.js → index.js} +5 -5
- package/lib/modules/a11y.js +31 -29
- package/lib/modules/fullscreen.js +22 -0
- package/lib/modules/install.js +26 -24
- package/lib/modules/keys.js +96 -96
- package/lib/modules/location.js +51 -51
- package/lib/modules/mouse.js +39 -39
- package/lib/modules/next.js +39 -39
- package/lib/modules/parse-timing.js +28 -0
- package/lib/modules/progress.js +16 -16
- package/lib/modules/timer.js +25 -25
- package/lib/modules/title.js +15 -15
- package/lib/modules/touch.js +30 -30
- package/lib/modules/view.js +52 -52
- package/lib/shower.js +164 -164
- package/lib/slide.js +94 -94
- package/lib/utils.js +14 -14
- package/package.json +38 -61
- package/CHANGELOG.md +0 -13
- package/dist/shower.js +0 -836
- package/lib/modules/parse-timing.mjs +0 -28
package/CHANGELOG.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# 3.0.0 (Unreleased)
|
|
2
|
-
|
|
3
|
-
- Fix `data-timing` interop with inner navigation
|
|
4
|
-
- Add new duration format for `data-timing`
|
|
5
|
-
- Fix triggering inner navigation on `prev` when in list mode
|
|
6
|
-
- Prevent `#` from being appended to URL in `list` mode in Firefox
|
|
7
|
-
- `next` plugin now uses `slide_active_classname` option for classes of active items
|
|
8
|
-
|
|
9
|
-
# 2.1.0 (Feb 1, 2017)
|
|
10
|
-
|
|
11
|
-
- Allow asynchronous loading of Shower ([#118](https://github.com/shower/core/pull/118))
|
|
12
|
-
- Add `N` and `P` hotkeys for next/prev slides ([a1567ac](https://github.com/shower/core/commit/a1567acfd14959222c277bdd7702305d183dc60c))
|
|
13
|
-
- Require `Shift` for `Shift+F5` shortcut ([6f911ed](https://github.com/shower/core/commit/6f911ededc2b6d7de4bcf6b95808ff8f067d54c1))
|