22
33import Glide = require( "../index" ) ;
44import ComponentFunction from "../components" ;
5- import { Anchors } from "../components/anchors" ;
6- import { Autoplay } from "../components/autoplay" ;
7- import { Breakpoints } from "../components/breakpoints" ;
8- import { Clones } from "../components/clones" ;
9- import { Controls } from "../components/controls" ;
10- import { Direction } from "../components/direction" ;
11- import { Gaps } from "../components/gaps" ;
12- import { Html } from "../components/html" ;
13- import { Images } from "../components/images" ;
14- import { Keyboard } from "../components/keyboard" ;
15- import { Move } from "../components/move" ;
16- import { Peek } from "../components/peek" ;
17- import { Resize } from "../components/resize" ;
18- import { Run } from "../components/run" ;
19- import { Sizes } from "../components/sizes" ;
20- import { Swipe } from "../components/swipe" ;
21- import { Transition } from "../components/transition" ;
22- import { Translate } from "../components/translate" ;
5+ import { Anchors as AnchorsComponent } from "../components/anchors" ;
6+ import { Autoplay as AutoplayComponent } from "../components/autoplay" ;
7+ import { Breakpoints as BreakpointsComponent } from "../components/breakpoints" ;
8+ import { Clones as ClonesComponent } from "../components/clones" ;
9+ import { Controls as ControlsComponent } from "../components/controls" ;
10+ import { Direction as DirectionComponent } from "../components/direction" ;
11+ import { Gaps as GapsComponent } from "../components/gaps" ;
12+ import { Html as HtmlComponent } from "../components/html" ;
13+ import { Images as ImagesComponent } from "../components/images" ;
14+ import { Keyboard as KeyboardComponent } from "../components/keyboard" ;
15+ import { Move as MoveComponent } from "../components/move" ;
16+ import { Peek as PeekComponent } from "../components/peek" ;
17+ import { Resize as ResizeComponent } from "../components/resize" ;
18+ import { Run as RunComponent } from "../components/run" ;
19+ import { Sizes as SizesComponent } from "../components/sizes" ;
20+ import { Swipe as SwipeComponent } from "../components/swipe" ;
21+ import { Transition as TransitionComponent } from "../components/transition" ;
22+ import { Translate as TranslateComponent } from "../components/translate" ;
2323import TransformerFunction from "../mutator/transformers" ;
2424
2525export { ComponentFunction , TransformerFunction } ;
@@ -28,59 +28,59 @@ export { ComponentFunction, TransformerFunction };
2828 * Handles clicking and dragging events of the internal `<a>` HTML elements,
2929 * so they won't interfere while interacting with an instance.
3030 */
31- export const Anchors : ComponentFunction < Anchors > ;
31+ export const Anchors : ComponentFunction < AnchorsComponent > ;
3232
3333/**
3434 * Manages auto-changing of slides after a defined time interval.
3535 */
36- export const Autoplay : ComponentFunction < Autoplay > ;
36+ export const Autoplay : ComponentFunction < AutoplayComponent > ;
3737
3838/**
3939 * Reconfigures instance and its options based on currently matched `@media` breakpoint.
4040 */
41- export const Breakpoints : ComponentFunction < Breakpoints > ;
41+ export const Breakpoints : ComponentFunction < BreakpointsComponent > ;
4242
43- export const Clones : ComponentFunction < Clones > ;
43+ export const Clones : ComponentFunction < ClonesComponent > ;
4444
4545/**
4646 * Manages creating a buttons that allows user to control movement of the instance.
4747 */
48- export const Controls : ComponentFunction < Controls > ;
48+ export const Controls : ComponentFunction < ControlsComponent > ;
4949
50- export const Direction : ComponentFunction < Direction > ;
50+ export const Direction : ComponentFunction < DirectionComponent > ;
5151
52- export const Gaps : ComponentFunction < Gaps > ;
52+ export const Gaps : ComponentFunction < GapsComponent > ;
5353
54- export const Html : ComponentFunction < Html > ;
54+ export const Html : ComponentFunction < HtmlComponent > ;
5555
5656/**
5757 * Handles dragging events of the internal `<img>` HTML elements,
5858 * so they won't interfere while interacting with an instance.
5959 */
60- export const Images : ComponentFunction < Images > ;
60+ export const Images : ComponentFunction < ImagesComponent > ;
6161
6262/**
6363 * Allows for controlling movement of the instance with keyboard's arrow keys.
6464 */
65- export const Keyboard : ComponentFunction < Keyboard > ;
65+ export const Keyboard : ComponentFunction < KeyboardComponent > ;
6666
67- export const Move : ComponentFunction < Move > ;
67+ export const Move : ComponentFunction < MoveComponent > ;
6868
69- export const Peek : ComponentFunction < Peek > ;
69+ export const Peek : ComponentFunction < PeekComponent > ;
7070
71- export const Resize : ComponentFunction < Resize > ;
71+ export const Resize : ComponentFunction < ResizeComponent > ;
7272
73- export const Run : ComponentFunction < Run > ;
73+ export const Run : ComponentFunction < RunComponent > ;
7474
75- export const Sizes : ComponentFunction < Sizes > ;
75+ export const Sizes : ComponentFunction < SizesComponent > ;
7676
7777/**
7878 * Allows for controlling movement of the instance using finger swipe gestures.
7979 */
80- export const Swipe : ComponentFunction < Swipe > ;
80+ export const Swipe : ComponentFunction < SwipeComponent > ;
8181
82- export const Transition : ComponentFunction < Transition > ;
82+ export const Transition : ComponentFunction < TransitionComponent > ;
8383
84- export const Translate : ComponentFunction < Translate > ;
84+ export const Translate : ComponentFunction < TranslateComponent > ;
8585
8686export default Glide ;
0 commit comments