diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fb6577..d1253a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,18 @@ until we achieve a stable v1.0 release ## v0.1.2 - unreleased +- 🚀 NEW: Set `aria-current='true'` on active slide +- 🚀 NEW: Add support for slide parts – `slide-canvas` & `slide-note` +- 🚀 NEW: Each slide is labeled with either + `slide-item='container'` (if it has nested parts) + or `slide-item='canvas' slide-canvas` (if there are no nested parts) +- 🚀 NEW: The slide-deck has a `--slide-count` property, + and each slide has a `--slide-index` - 💥 BREAKING: Removed the shadow DOM content wrapper, and all shadow DOM styles -- 💥 BREAKING: Renamed and added control-panel parts, +- 🚀 NEW / 💥 BREAKING: Renamed and added control-panel parts, to allow for more customization of the default panel + including pressed buttons with `:part(button pressed)` - 🚀 NEW: Default styles are in `slide-deck.css` and can be applied from the light DOM - 🚀 NEW: The entire control panel can be replaced diff --git a/README.md b/README.md index 985dc55..fbee859 100644 --- a/README.md +++ b/README.md @@ -108,22 +108,25 @@ Make sure you include the ` ``` ```html + ``` ```html + ``` diff --git a/custom-panel.html b/custom-panel.html index 604b1a0..0512346 100644 --- a/custom-panel.html +++ b/custom-panel.html @@ -14,7 +14,8 @@ diff --git a/index.html b/index.html index c78a88a..18e8c4c 100644 --- a/index.html +++ b/index.html @@ -18,8 +18,49 @@
+ Some slide notes are very short. Little reminders. +
++ In script view the active slide-item will have a larger canvas size + and the font-size of an active slides speaker notes is increased + for easier readability. +
+ ++ This paragraph exists to test a variety of content + within slide-notes. While some slides may not have any + notes at all, others may have extremely verbose notes and may + contain many details. +
+ ++++ Blockquote example within the slide-notes to test a few different + content types. +
+
<button slide-event>previous<button>
<button set-view>list<button>
<button set-view>solo<button>
<div>
+ <div slide-canvas>
+ This slide has both a canvas
+ </div>
+ <div slide-note>
+ And a section for notes
+ </div>
+</div>
+ + Within a slide element, + we can provide both a 'canvas' and a 'note'! + For styling purposes: +
+slide-item="container"
+ slide-item="canvas"
+ and also the slide-canvas
attribute
+