-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathfomantic-ui-shape.d.ts
More file actions
274 lines (220 loc) · 6.81 KB
/
fomantic-ui-shape.d.ts
File metadata and controls
274 lines (220 loc) · 6.81 KB
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
declare namespace FomanticUI {
interface Shape {
settings: ShapeSettings;
/**
* Flips the shape upward.
*/
(behavior: 'flip up'): JQuery;
/**
* Flips the shape downward.
*/
(behavior: 'flip down'): JQuery;
/**
* Flips the shape right.
*/
(behavior: 'flip right'): JQuery;
/**
* Flips the shape left.
*/
(behavior: 'flip left'): JQuery;
/**
* Flips the shape over clock-wise.
*/
(behavior: 'flip over'): JQuery;
/**
* Flips the shape over counter-clockwise.
*/
(behavior: 'flip back'): JQuery;
/**
* Set the next side to a specific selector.
*/
(behavior: 'set next side', selector: string): JQuery;
/**
* Returns whether shape is currently animating.
*/
(behavior: 'is animating'): boolean;
/**
* Removes all inline styles.
*/
(behavior: 'reset'): JQuery;
/**
* Queues an animation after current animation.
*/
(behavior: 'queue', animation: string): JQuery;
/**
* Forces a reflow on element.
*/
(behavior: 'repaint', animation: string): JQuery;
/**
* Set the next side to next sibling to active element.
*/
(behavior: 'set default side'): JQuery;
/**
* Sets shape to the content size of the next side.
*/
(behavior: 'set stage size'): JQuery;
/**
* Refreshes the selector cache for element sides.
*/
(behavior: 'refresh'): JQuery;
/**
* Returns translation for next side staged below.
*/
(behavior: 'get transform down'): object;
/**
* Returns translation for next side staged left.
*/
(behavior: 'get transform left'): object;
/**
* Returns translation for next side staged right.
*/
(behavior: 'get transform right'): object;
/**
* Returns translation for next side staged up.
*/
(behavior: 'get transform up'): object;
/**
* Returns translation for next side staged down.
*/
(behavior: 'get transform down'): object;
/**
* Destroys instance and removes all events.
*/
(behavior: 'destroy'): JQuery;
<K extends keyof ShapeSettings>(behavior: 'setting', name: K, value?: undefined,): Partial<Pick<ShapeSettings, keyof ShapeSettings>>;
<K extends keyof ShapeSettings>(behavior: 'setting', name: K, value: ShapeSettings[K]): JQuery;
(behavior: 'setting', value: Partial<Pick<ShapeSettings, keyof ShapeSettings>>): JQuery;
(settings?: Partial<Pick<ShapeSettings, keyof ShapeSettings>>): JQuery;
}
/**
* @see {@link https://fomantic-ui.com/modules/shape.html#/settings}
*/
interface ShapeSettings {
// region Shape Settings
/**
* Duration of side change animation.
* @default false
*/
duration: false | string;
/**
* Width during animation, can be set to 'auto', 'initial', 'next' or pixel amount.
* @default 'initial'
*/
width: 'auto' | 'initial' | 'next' | number;
/**
* Height during animation, can be set to 'auto', 'initial', 'next' or pixel amount.
* @default 'initial'
*/
height: 'auto' | 'initial' | 'next' | number;
/**
* Fudge factor in pixels when swapping from 2d to 3d (can be useful to correct rounding errors).
* @default 0
*/
jitter: number;
/**
* Allow animation to same side.
* @default false
*/
allowRepeats: boolean;
// endregion
// region Callbacks
/**
* Is called before side change.
*/
onBeforeChange(this: JQuery): void;
/**
* Is called after visible side change.
*/
onChange(this: JQuery): void;
// endregion
// region DOM Settings
/**
* DOM Selectors used internally.
* Selectors used to find parts of a module.
*/
selector: Shape.SelectorSettings;
/**
* Class names used to determine element state.
*/
className: Shape.ClassNameSettings;
// endregion
// region Debug Settings
/**
* Name used in log statements
* @default 'Shape'
*/
name: string;
/**
* Event namespace. Makes sure module teardown does not effect other events attached to an element.
* @default 'shape'
*/
namespace: string;
/**
* Silences all console output including error messages, regardless of other debug settings.
* @default false
*/
silent: boolean;
/**
* Debug output to console
* @default false
*/
debug: boolean;
/**
* Show console.table output with performance metrics
* @default true
*/
performance: boolean;
/**
* Debug output includes all internal behaviors
* @default false
*/
verbose: boolean;
error: Shape.ErrorSettings;
// endregion
}
namespace Shape {
type SelectorSettings = Partial<Pick<Settings.Selectors, keyof Settings.Selectors>>;
type ClassNameSettings = Partial<Pick<Settings.ClassNames, keyof Settings.ClassNames>>;
type ErrorSettings = Partial<Pick<Settings.Errors, keyof Settings.Errors>>;
namespace Settings {
interface Selectors {
/**
* @default '.sides'
*/
sides: string;
/**
* @default '.side'
*/
side: string;
}
interface ClassNames {
/**
* @default 'animating'
*/
animating: string;
/**
* @default 'hidden'
*/
hidden: string;
/**
* @default 'loading'
*/
loading: string;
/**
* @default 'active'
*/
active: string;
}
interface Errors {
/**
* @default 'You tried to switch to a side that does not exist.'
*/
side: string;
/**
* @default 'The method you called is not defined'
*/
method: string;
}
}
}
}