File tree 2 files changed +17
-3
lines changed
2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ further defined and clarified by project maintainers.
106
106
### Enforcement
107
107
108
108
Instances of abusive, harassing, or otherwise unacceptable behavior may be
109
- reported by contacting the project team at emma.brillhart @formidable.com . All
109
+ reported by contacting the project team at coc @formidable.com . All
110
110
complaints will be reviewed and investigated and will result in a response that
111
111
is deemed necessary and appropriate to the circumstances. The project team is
112
112
obligated to maintain confidentiality with regard to the reporter of an incident.
Original file line number Diff line number Diff line change @@ -19,6 +19,16 @@ declare module 'spectacle' {
19
19
| 'flex-end center'
20
20
| 'flex-end flex-end' ;
21
21
22
+ /**
23
+ * Bullet Style Types for Spectacle
24
+ */
25
+ type bulletStyleType =
26
+ | 'arrow'
27
+ | 'classicCheck'
28
+ | 'cross'
29
+ | 'greenCheck'
30
+ | 'star' ;
31
+
22
32
/**
23
33
* Animation Types for Spectacle
24
34
*/
@@ -212,6 +222,10 @@ declare module 'spectacle' {
212
222
target ?: targetType ;
213
223
}
214
224
225
+ interface ListProps extends BaseProps {
226
+ bulletStyle ?: bulletStyleType ;
227
+ }
228
+
215
229
interface MarkdownProps {
216
230
mdastConfig ?: { [ key : string ] : number | string } ;
217
231
source ?: string ;
@@ -280,9 +294,9 @@ declare module 'spectacle' {
280
294
281
295
class Link extends React . Component < LinkProps > { }
282
296
283
- class List extends React . Component < BaseProps > { }
297
+ class List extends React . Component < ListProps > { }
284
298
285
- class ListItem extends React . Component < BaseProps > { }
299
+ class ListItem extends React . Component < ListProps > { }
286
300
287
301
class Markdown extends React . Component < MarkdownProps > { }
288
302
You can’t perform that action at this time.
0 commit comments