forked from FormidableLabs/nuka-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
512 lines (418 loc) · 10.4 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
// Definitions by: Roman Charugin <https://github.com/Romic>
// Alex Smith <https://github.com/altaudio>
// matt-sungwook <https://github.com/matt-sungwook>
import * as CSS from 'csstype';
import * as React from 'react';
export default class Carousel extends React.Component<
CarouselProps,
CarouselState
> {}
export type CarouselScrollModeProp = 'page' | 'remainder';
export type CarouselCellAlignProp = 'left' | 'center' | 'right';
export type CarouselHeightModeProp = 'first' | 'current' | 'max';
export type CarouselTransitionModeProp = 'fade' | 'scroll' | 'scroll3d';
export type CarouselSlidesToScrollProp = number | 'auto';
export type CarouselSlideWidthProp = string | number;
export type CarouselSlideActions =
| 'nextSlide'
| 'previousSlide'
| 'firstSlide'
| 'lastSlide'
| 'pause';
export type CarouselControlContainerProp =
| 'TopLeft'
| 'TopCenter'
| 'TopRight'
| 'CenterLeft'
| 'CenterCenter'
| 'CenterRight'
| 'BottomLeft'
| 'BottomCenter'
| 'BottomRight';
export interface CarouselSlideRenderControlProps {
/**
* When displaying more than one slide, sets which position to anchor the current slide to.
*/
cellAlign: CarouselCellAlignProp;
/**
* Space between slides, as an integer, but reflected as px
*/
cellSpacing: number;
/**
* Current slide index
*/
currentSlide: number;
/**
* Current frame width (px)
*/
frameWidth: number;
/**
* Go to X slide method
* @param index Slide's index to go
*/
goToSlide: (index: number) => void;
/**
* Go to the next slide method
*/
nextSlide: () => void;
/**
* Go to the previous slide method
*/
previousSlide: () => void;
/**
* Total amount of slides
*/
slideCount: number;
/**
* Slides to scroll at once
*/
slidesToScroll: CarouselSlidesToScrollProp;
/**
* Slides to show at once
*/
slidesToShow: number;
/**
* Current slide width (px)
*/
slideWidth: number;
/**
* Infinite mode enabled
*/
wrapAround: boolean;
}
export type CarouselRenderControl = (
props: CarouselSlideRenderControlProps
) => React.ReactNode;
/**
* All available DOM style properties and their types
* https://www.npmjs.com/package/csstype
*/
export interface CSSProperties extends CSS.Properties<string | number> {}
export interface CarouselProps {
/**
* Hook to be called after a slide is changed
* @param index Index of the current slide
*/
afterSlide?: (index: number) => void;
/**
* Adds a zoom effect on the currently visible slide.
*/
animation?: 'zoom';
/**
* Will generate a style tag to help ensure images are displayed properly
* @default true
*/
autoGenerateStyleTag?: boolean;
/**
* Autoplay mode active
* @default false
*/
autoplay?: boolean;
/**
* Interval for autoplay iteration (ms)
* @default 3000
*/
autoplayInterval?: number;
/**
* Autoplay cycles through slide indexes in reverse
* @default false
*/
autoplayReverse?: boolean;
/**
* Hook to be called before a slide is changed
* @param currentSlide Index of the current slide
* @param endSlide Index of the last slide
*/
beforeSlide?: (currentSlide: number, endSlide: number) => void;
/**
* When displaying more than one slide,
* sets which position to anchor the current slide to
*/
cellAlign?: CarouselCellAlignProp;
/**
* Space between slides, as an integer, but reflected as px
*/
cellSpacing?: number;
/**
* Additional className
*/
className?: string;
/**
* When set to true, disable keyboard controls
* @default false
*/
enableKeyboardControls?: boolean;
/**
* When enableKeyboardControls is enabled, Configure keyCodes for corresponding slide actions as array of keyCodes
*/
keyCodeConfig?: {
[slideAction in CarouselSlideActions]?: number[];
};
/**
* Optional callback to apply styles to the container of a control.
*/
getControlsContainerStyles?: (
key: CarouselControlContainerProp
) => CSSProperties;
/**
* This prop lets you apply custom classes and styles to the default Next, Previous, and Paging Dots controls
*/
defaultControlsConfig?: {
containerClassName?: string;
nextButtonClassName?: string;
nextButtonStyle?: CSSProperties;
nextButtonText?: string;
prevButtonClassName?: string;
prevButtonStyle?: CSSProperties;
prevButtonText?: string;
pagingDotsContainerClassName?: string;
pagingDotsClassName?: string;
pagingDotsStyle?: CSSProperties;
};
/**
* Disable slides animation
* @default false
*/
disableAnimation?: boolean;
/**
* Disable swipe before first slide and after last slide
* @default false
*/
disableEdgeSwiping?: boolean;
/**
* Enable mouse swipe/dragging
*/
dragging?: boolean;
/**
* Animation easing function
* @see https://github.com/d3/d3-ease
*/
easing?: string;
/**
* Animation easing function when swipe exceeds edge
* @see https://github.com/d3/d3-ease
*/
edgeEasing?: string;
/**
* Used to set overflow style property on slider frame
* @default 'hidden'
*/
frameOverflow?: string;
/**
* Used to set the margin of the slider frame.
* Accepts any string dimension value such as "0px 20px" or "500px"
* @example '0px 20px'
* @example '500px'
*/
framePadding?: string;
/**
* Used to hardcode the slider height
* @example '80%'
* @example '500px'
*/
height?: string;
/**
* Ref to pass to carousel element
*/
innerRef?: React.RefObject<HTMLInputElement>;
/**
* Change the height of the slides based either on the first slide,
* the current slide, or the maximum height of all slides.
*/
heightMode?: CarouselHeightModeProp;
/**
* Initial height of the slides (px)
*/
initialSlideHeight?: number;
/**
* Initial width of the slides (px)
*/
initialSlideWidth?: number;
/**
* optional callback function
*/
onDragStart?: () => void;
/**
* Window onResize callback
*/
onResize?: () => void;
/**
* Pause autoPlay when mouse is over carousel
* @default true
*/
pauseOnHover?: boolean;
/**
* Function for rendering top left control
*/
renderTopLeftControls?: CarouselRenderControl | null;
/**
* Function for rendering top center control
*/
renderTopCenterControls?: CarouselRenderControl | null;
/**
* Function for rendering top right control
*/
renderTopRightControls?: CarouselRenderControl | null;
/**
* Function for rendering center left control
*/
renderCenterLeftControls?: CarouselRenderControl | null;
/**
* Function for rendering center center control
*/
renderCenterCenterControls?: CarouselRenderControl | null;
/**
* Function for rendering center right control
*/
renderCenterRightControls?: CarouselRenderControl | null;
/**
* Function for rendering bottom left control
*/
renderBottomLeftControls?: CarouselRenderControl | null;
/**
* Function for rendering bottom center control
*/
renderBottomCenterControls?: CarouselRenderControl | null;
/**
* Function for rendering bottom right control
*/
renderBottomRightControls?: CarouselRenderControl | null;
/**
* Function for rendering aria-live announcement messages
*/
renderAnnounceSlideMessage?: ({
currentSlide,
slideCount
}: CarouselSlideRenderControlProps) => string;
/**
* Supports 'page' and 'remainder' scroll modes.
* Defaults to 'remainder'.
*/
scrollMode?: CarouselScrollModeProp;
/**
* Manually set the index of the slide to be shown
*/
slideIndex?: number;
/**
* While using prop animation = "zoom", you can
* configure space around current slide with slideOffset.
*/
slideOffset?: number;
/**
* Slides to scroll at once. Set to "auto"
* to always scroll the current number of visible slides
*/
slidesToScroll?: CarouselSlidesToScrollProp;
/**
* Slides to show at once
*/
slidesToShow?: number;
/**
* Manually set slideWidth
* @example '20px'
* @example 0.8
*/
slideWidth?: CarouselSlideWidthProp;
/**
* Animation duration
*/
speed?: number;
/**
* style object
*/
style?: CSSProperties;
/**
* Enable touch swipe/dragging
*/
swiping?: boolean;
/**
* Set the way slides transition from one to the next
*/
transitionMode?: CarouselTransitionModeProp;
/**
* Enable the slides to transition vertically
*/
vertical?: boolean;
/**
* Used to hardcode the slider width
* @example '80%'
* @example '500px'
*/
width?: string;
/**
* Sets infinite wrapAround mode
* @default false
*/
wrapAround?: boolean;
/**
* Used to remove all controls at once. Overwrites the render[Top, Right, Bottom, Left]CenterControls()
* @default false
*/
withoutControls?: boolean;
/**
* Adds a number value to set the scale of zoom when animation === "zoom".
* The number value should be set in a range of (0,1).
* @default 0.85
*/
zoomScale?: number;
}
export interface CarouselState {
/**
* Current slide index
*/
currentSlide: number;
/**
* Is dragging enabled
*/
dragging: boolean;
/**
* Easing function name
*/
easing: string;
/**
* Current frame width
*/
frameWidth: number;
isWrappingAround: boolean;
/**
* Current left value
*/
left: number;
pauseOnHover: boolean;
resetWrapAroundPosition: boolean;
/**
* Total amount of slides
*/
slideCount: number;
/**
* Slides to scroll at once
*/
slidesToScroll: CarouselSlidesToScrollProp;
/**
* Current slide width
*/
slideWidth: CarouselSlideWidthProp;
/**
* Current top value
*/
top: number;
/**
* Is infinite mode enabled
*/
wrapToIndex: boolean;
}
export interface PreviousButtonProps extends CarouselSlideRenderControlProps {}
export class PreviousButton extends React.Component<PreviousButtonProps> {}
export interface NextButtonProps extends CarouselSlideRenderControlProps {}
export class NextButton extends React.Component<NextButtonProps> {}
export interface PagingDotsProps extends CarouselSlideRenderControlProps {}
export class PagingDots extends React.Component<PagingDotsProps> {
public getButtonStyles(active: boolean): React.CSSProperties;
public getListStyles(): React.CSSProperties;
public getDotIndexes(
slideCount: number,
slidesToScroll: CarouselSlidesToScrollProp,
slidesToShow: number,
cellAlign: CarouselCellAlignProp
): number[];
}