-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathindex.d.ts
204 lines (192 loc) · 7.27 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
declare module '@fullpage/react-fullpage' {
export type Item = {
anchor: string | number,
index: number,
item: HTMLElement,
isFirst: boolean,
isLast: boolean
};
type DragAndMove = boolean | "vertical" | "horizontal" | "fingersonly" | "mouseonly";
type FadingEffect = boolean | "sections" | "slides";
type InterlockedSlides = boolean | Array<number>;
type bigSectionsDestination = "top" | "bottom" | null;
type Parallax = boolean | "sections" | "slides";
type DropEffect = boolean | "sections" | "slides";
type WaterEffect = boolean | "sections" | "slides";
type SkipIntermediateItems = boolean | "sections" | "slides";
type Trigger = "slideArrow" | "verticalNav" | "horizontalNav" | "keydown" | "wheel" | "menu";
type ScrollOverflowReset = boolean | "slides" | "sections";
type WaterEffectOptions = {
animateContent: boolean
animateOnMouseMove: boolean
};
type CardsOptions = {
perspective: number
fadeContent: boolean
fadeBackground: boolean
};
type ParallaxOptions = {
percentage?: number
property?: "translate" | "background"
type?: "reveal" | "cover"
};
type Credits = {
enabled?: boolean,
label?: string,
position?: "left" | "right"
}
export interface fullpageOptions {
anchors?: string[]
animateAnchor?: boolean
autoScrolling?: boolean
bigSectionsDestination?: bigSectionsDestination //top, bottom, null
continuousHorizontal?: boolean
continuousVertical?: boolean
controlArrowColor?: string
controlArrows?: boolean
controlArrowsHTML?: string[]
css3?: boolean
dragAndMove?: DragAndMove
easing?: string
easingcss3?: string
fadingEffect?: FadingEffect
fitToSection?: boolean
fitToSectionDelay?: number
fixedElements?: string // '#header, .footer'
hybrid?: boolean
interlockedSlides?: InterlockedSlides
keyboardScrolling?: boolean
lazyLoading?: boolean
lazyLoadThreshold?: number
observer?: boolean
licenseKey?: string
credits: Credits
lockAnchors?: boolean
loopBottom?: boolean
loopHorizontal?: boolean
loopTop?: boolean
menu?: string
navigation?: boolean
navigationPosition?: string
navigationTooltips?: string[] // ['firstSlide', 'secondSlide']
normalScrollElementTouchThreshold?: number
normalScrollElements?: string // '#element1, .element2',
offsetSections?: boolean
paddingBottom?: string
paddingTop?: string
parallax?: Parallax // true, false, 'sections', 'slides'
parallaxOptions?: ParallaxOptions
recordHistory?: boolean
resetSliders?: boolean
responsive?: number
responsiveHeight?: number
responsiveSlides?: boolean
responsiveWidth?: number
scrollBar?: boolean
scrollHorizontally?: boolean
scrollOverflow?: boolean
scrollOverflowMacStyle?: boolean
scrollOverflowHandler?: any
scrollOverflowReset?: ScrollOverflowReset
skipIntermediateItems?: SkipIntermediateItems
scrollingSpeed?: number
dropEffect?: DropEffect;
dropEffectOptions?: any;
waterEffect?: WaterEffect;
waterEffectOptions?: WaterEffectOptions;
cards?: boolean;
cardsOptions?: CardsOptions;
sectionSelector?: string
sectionsColor?: string[]
showActiveTooltip?: boolean
slideSelector?: string
slidesNavPosition?: "top" | "bottom"
slidesNavigation?: boolean
touchSensitivity?: number
verticalCentered?: boolean
/* callback and events */
afterLoad?(origin: Item, destination: Item, direction: string, trigger: Trigger): void
afterRender?(): void
afterResize?(width: number, height: number): void
afterReBuild?(): void
afterResponsive?(isResponsive: boolean): void
afterSlideLoad?(section: Item, origin: Item, destination: Item, direction: string, trigger: Trigger): void
onLeave?(origin: Item, destination: Item, direction: string, trigger: Trigger): void
beforeLeave?(origin: Item, destination: Item, direction: string, trigger: Trigger): void
onSlideLeave?(section: Item, origin: Item, destination: Item, direction: string, trigger: Trigger): void
onScrollOverflow?(section: Item, slide: Item, position: number, direction: string): void
/* keys for extensions */
fadingEffectKey?: string
responsiveSlidesKey?: string
continuousHorizontalKey?: string
interlockedSlidesKey?: string
scrollHorizontallyKey?: string
resetSlidersKey?: string
offsetSectionsKey?: string
dragAndMoveKey?: string
parallaxKey?: string
/* end key sections */
}
export interface fullpageApi {
continuousHorizontal: boolean
dragAndMove: DragAndMove
fadingEffect: FadingEffect
interlockedSlides: InterlockedSlides
offsetSections: boolean
parallax: Parallax
resetSliders: boolean
responsiveSlides: boolean
scrollHorizontally: boolean
scrollOverflowReset: ScrollOverflowReset
version: string
destroy(type?: string): void
fitToSection(): void
getActiveSection(): Item
getActiveSlide(): Item
getFullpageData(): any
landscapeScroll(e?: any, t?: any, n?: any): void
getScrollY(): number
getScrollX(): number
moveSectionDown(): void
moveSectionUp(): void
moveSlideLeft(): void
moveSlideRight(): void
moveTo(section: string | number, slide?: string | number): void
reBuild(isResizing?: boolean): void
setAllowScrolling(value: boolean, directions?: string): void
setAutoScrolling(value: boolean, type?: string): void
setFitToSection(value: boolean, type?: string): void
setKeyboardScrolling(value: boolean, directions?: string): void
setLockAnchors(value: boolean): void
setMouseWheelScrolling(value: boolean): void
setRecordHistory(value: boolean, type?: string): void
setResponsive(value: boolean): void
setScrollingSpeed(value: number, type?: string): void
silentMoveTo(sectionAnchor: string | number, slideAnchor?: string | number): void
shared: {
afterRenderActions(): void
}
test: {
left: number[]
top: string
translate3d: string
translate3dH: string[]
setAutoScrolling(value: boolean, type?: string): void
options: fullpageOptions
}
}
interface FullPageProps extends fullpageOptions {
licenseKey?: string
render: (comp: { state: any; fullpageApi: fullpageApi }) => React.ReactElement | void
debug?: boolean
pluginWrapper?: () => void
}
class ReactFullpage extends React.Component<FullPageProps>{ }
interface WrapperProps {
children: React.ReactNode
}
namespace ReactFullpage {
function Wrapper(props: WrapperProps): React.ReactElement
}
export default ReactFullpage
}