chore(deps): update dependency reveal.js to v6#39
Open
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): update dependency reveal.js to v6#39renovate-sh-app[bot] wants to merge 1 commit intomainfrom
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
Conversation
| datasource | package | from | to | | ---------- | --------- | ----- | ----- | | npm | reveal.js | 4.5.0 | 6.0.0 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
6f2ce89 to
c0e919c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^4.5.0→^6.0.0Release Notes
hakimel/reveal.js (reveal.js)
v6.0.1Compare Source
Changes
previewIframein postMessage API #3887Full Changelog: hakimel/reveal.js@6.0.0...6.0.1
v6.0.0Compare Source
New Package: @revealjs/react
reveal.js now has an official React wrapper! The
@revealjs/reactpackage lets you build presentations using React components—<Deck>,<Slide>,<Stack>,<Fragment>, and<Code>. Learn more over at revealjs.com/react.Try it out by pulling reveal.js master and running
npm run react:demo.Breaking Changes
See the full upgrade guide for step-by-step instructions. The short version:
plugin/<name>/plugin.jstodist/plugin/<name>.js(e.g.plugin/notes/notes.js→dist/plugin/notes.js,plugin/highlight/monokai.css→dist/plugin/highlight/monokai.css).esm.jsfiles are now.mjs(e.g.dist/reveal.esm.js→dist/reveal.mjs). If you import via bare module specifiers this doesn't affect you.dist/prefix has been dropped from the public package API (e.g.reveal.js/dist/reveal.css→reveal.js/reveal.css).@types/reveal.jsyou can remove it and migrate. Note that the type names are slightly different, more info in the upgrade guide.Changes
controls: 'speaker'config option to show controls only in speaker view (@hakimel in #3853)alttags on images and videos are now announced by screen readers, and slide content is better punctuated for screen reader text (@hakimel in #3757, #3772)sync()now also updates slide classes, fixing issues when adding or removing slides and then calling sync (@hakimel)syncevent is now dispatched when reveal.js syncs (@hakimel)removeHiddenSlides()to the API (@hakimel)data-idis now supported for slide links (@hakimel)data-preview-linkvalue now takes precedence over the anchor'shref(@hakimel in #3854)preventIframeAutoFocusconfig option (@hakimel)displayconfig option now supports!important(@boba-beba)Fixes
Full Changelog: hakimel/reveal.js@5.2.1...6.0.0
v5.2.1Compare Source
Lightbox bug fixes and improvements
[data-preview-link]now works all element types, not just<a>(@hakimel)Reveal.getStateandReveal.setState(@hakimel)Full Changelog: hakimel/reveal.js@5.2.0...5.2.1
v5.2.0Compare Source
New Feature: Lightbox
Any element in your presentation can now be turned into an image/video lightbox trigger. Clicking reveals a full-size lightbox overlay where users can view your image or video. This is great for things like clickable thumbnails in a gallery.
Docs: revealjs.com/lightbox.
Here's what it looks like in action:
lightbox.mp4
Changes
controls: "speaker-only"config option for only showing controls in speaker view (@gpotter2 in #3716)closeSearchandtoggleSearch(@lechten in #3685)codetags by default (@hakimel in0d02d8a)initializefrom being called twice (@hakimel in16ac4b0)6dea2a5)Bug fixes
100dvh(@hakimel in6cebb77)slidechangeevent in scroll view (@hakimel infe4a6e8)Full Changelog: hakimel/reveal.js@5.1.0...5.2.0
v5.1.0Compare Source
Changes
enter-fullscreenclass to any element in your presentation to turn it into fullscreen trigger (@hakimel)continuous-video-bg-2.mp4
Fixes
r-stackoverflow behavior in Chromium browsers (@alifeee in #3598)Full Changelog: hakimel/reveal.js@5.0.5...5.1.0
v5.0.5Compare Source
Changes
Fixes
3dade61)fragmentshownandfragmenthiddennot firing in scroll view (@bouzidanas, @ hakimel in #3580)Full Changelog: hakimel/reveal.js@5.0.4...5.0.5
v5.0.4Compare Source
Fixes
v5.0.3Compare Source
Changes
Fixes
Full Changelog: hakimel/reveal.js@5.0.2...5.0.3
v5.0.2Compare Source
Changes
Full Changelog: hakimel/reveal.js@5.0.0...5.0.2
v5.0.1Compare Source
v5.0.0Compare Source
Scroll view
reveal.js 5.0 comes with a groundbreaking new feature; scroll view! (#3482)
Slide decks are a great format for giving presentations, but scrollable web pages are easier for viewers to read on their own.
The scroll view gives you the best of both worlds—without any extra effort. Present in the format best suited for presenting, share in the format best suited for consumption.
Here's what it looks in action:
reveal-scroll-view.mp4
Want to try it out yourself? Check out the announcement deck I put together for slides.com 👉 https://slides.com/news/scroll-mode/scroll
How to use it
The scroll view is enabled by initializing reveal.js with
view: "scroll"or by appending?view=scrollto a deck URL.It's possible to fine tune this view through multiple new config options. Full documentation available at https://revealjs.com/scroll-view.
Breaking change
The scroll view is automatically enabled for viewports below 435px wide. This is done because I believe the scroll view to be a superior way to browse any deck on a mobile device. If you want to revert this behavior and always paginate between slides, see
scrollActivationWidth:Changes
Reveal.initialize({ view: 'print' })(@hakimel in #3482)?view=print. It used to be?print-pdf, which is still supported for backwards compatibility. (@hakimel in #3482)Fixes
data-noteswere not working on the slide-level (@skyboyer in #3477)mousewheel& 'DOMMouseScroll` (@quochuy in #3489)Full Changelog: hakimel/reveal.js@4.6.0...5.0.0
v4.6.1Compare Source
v4.6.0Compare Source
Changes
Fixes
autoSlideinstead of using first fragment auto-slide (@hakimel)data-autoslide, all fragments of the same index will now use the same auto-slide timing (@hakimel)Full Changelog: hakimel/reveal.js@4.5.0...4.6.0
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
Need help?
You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section.