Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ further defined and clarified by project maintainers.
### Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at emma.brillhart@formidable.com. All
reported by contacting the project team at coc@formidable.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
18 changes: 16 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ declare module 'spectacle' {
| 'flex-end center'
| 'flex-end flex-end';

/**
* Bullet Style Types for Spectacle
*/
type bulletStyleType =
| 'arrow'
| 'classicCheck'
| 'cross'
| 'greenCheck'
| 'star';

/**
* Animation Types for Spectacle
*/
Expand Down Expand Up @@ -212,6 +222,10 @@ declare module 'spectacle' {
target?: targetType;
}

interface ListProps extends BaseProps {
bulletStyle?: bulletStyleType;
}

interface MarkdownProps {
mdastConfig?: { [key: string]: number | string };
source?: string;
Expand Down Expand Up @@ -280,9 +294,9 @@ declare module 'spectacle' {

class Link extends React.Component<LinkProps> {}

class List extends React.Component<BaseProps> {}
class List extends React.Component<ListProps> {}

class ListItem extends React.Component<BaseProps> {}
class ListItem extends React.Component<ListProps> {}

class Markdown extends React.Component<MarkdownProps> {}

Expand Down