File tree Expand file tree Collapse file tree 9 files changed +27
-16
lines changed
packages/spectacle/src/hooks Expand file tree Collapse file tree 9 files changed +27
-16
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' spectacle-docs ' : minor
3+ ---
4+
5+ Updated the order of the sidebar items.
Original file line number Diff line number Diff line change 11---
22title : API Reference
3- order : 5
4- sidebar_position : 5
3+ order : 4
4+ sidebar_position : 4
55---
66
77# API Reference
Original file line number Diff line number Diff line change 11---
22title : Extensions
3- order : 7
4- sidebar_position : 7
3+ order : 8
4+ sidebar_position : 8
55---
66
77# Third Party Extensions
Original file line number Diff line number Diff line change 11---
22title : FAQ
3- order : 8
4- sidebar_position : 8
3+ order : 9
4+ sidebar_position : 9
55---
66
77# Frequently Asked Questions
Original file line number Diff line number Diff line change 11---
22title : Base Props
3- order : 3
4- sidebar_position : 3
3+ order : 5
4+ sidebar_position : 5
55---
66
77# Base Props
Original file line number Diff line number Diff line change 1- import Full from '../website/static/img/slide-layouts/full.png';
1+ ---
2+ title : Slide Layouts
3+ order : 6
4+ sidebar_position : 6
5+ ---
26
7+ import Full from '../website/static/img/slide-layouts/full.png';
38
49## SlideLayout
510
@@ -225,4 +230,4 @@ A layout with an image that covers the entire slide.
225230| ` imgContainerProps ` | ` ComponentProps<typeof FlexBox> ` | ❌ | ` { style: { border: '8px solid white' } } ` |
226231| ` objectFit ` | ` React.CSSProperties['objectFit'] ` | ❌ | ` cover ` |
227232
228- ! [Full bleed image layout example slide ](../ website / static / img / slide - layouts / fullBleed .png )
233+ ! [Full bleed image layout example slide ](../ website / static / img / slide - layouts / fullBleed .png )
Original file line number Diff line number Diff line change 11---
22title : Themes
3- order : 4
4- sidebar_position : 4
3+ order : 7
4+ sidebar_position : 7
55---
66
77# Theme System
Original file line number Diff line number Diff line change 11---
22title : Getting Started
3- order : 6
4- sidebar_position : 6
3+ order : 3
4+ sidebar_position : 3
55---
66
77# Getting Started with Spectacle: A Tutorial
Original file line number Diff line number Diff line change @@ -5,10 +5,11 @@ import { DeckView } from './use-deck-state';
55
66const noop = ( ) => { } ;
77let safeWindow : any = { } ;
8- if ( typeof window !== " undefined" ) {
8+ if ( typeof window !== ' undefined' ) {
99 safeWindow = window ;
1010}
11- const BroadcastChannel = safeWindow . BroadcastChannel || BroadcastChannelPolyfill ;
11+ const BroadcastChannel =
12+ safeWindow . BroadcastChannel || BroadcastChannelPolyfill ;
1213
1314type MessageCallback = ( message : MessageTypes ) => void ;
1415
You can’t perform that action at this time.
0 commit comments