diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8289eed72..b78f3573f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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. diff --git a/index.d.ts b/index.d.ts index a9b94d79f..acbfb7abb 100644 --- a/index.d.ts +++ b/index.d.ts @@ -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 */ @@ -212,6 +222,10 @@ declare module 'spectacle' { target?: targetType; } + interface ListProps extends BaseProps { + bulletStyle?: bulletStyleType; + } + interface MarkdownProps { mdastConfig?: { [key: string]: number | string }; source?: string; @@ -280,9 +294,9 @@ declare module 'spectacle' { class Link extends React.Component {} - class List extends React.Component {} + class List extends React.Component {} - class ListItem extends React.Component {} + class ListItem extends React.Component {} class Markdown extends React.Component {}