-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.d.ts
421 lines (374 loc) · 9.72 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
declare module '@silintl/ui-components' {
import type { SvelteComponent } from 'svelte'
import type { writable } from 'svelte/store'
export type actions = typeof writable<any[]>
interface ButtonProps {
appendIcon?: string
disabled?: boolean
outlined?: boolean
prependIcon?: string
raised?: boolean
target?: string
url?: string
class?: string
}
export class Button extends SvelteComponent<ButtonProps> {}
export function isAboveMobile(): boolean
export function isAboveTablet(): boolean
interface CardProps {
secondary?: string
outlined?: boolean
color?: string
isClickable?: boolean
noPadding?: boolean
class?: string
}
export class Card extends SvelteComponent<CardProps> {}
interface CheckboxProps {
label?: string
checked?: boolean
disabled?: boolean
uppercase?: boolean
class?: string
inputID?: string
}
export class Checkbox extends SvelteComponent<CheckboxProps> {}
//Datatable
interface DatatableProps {
label?: string
numberOfCheckboxes?: number
class?: string
}
export class Datatable extends SvelteComponent<DatatableProps> {}
export namespace Datatable {
export class Header extends SvelteComponent {}
interface DatatableCheckboxProps {
disabled?: boolean
rowId?: string
class?: string
}
export class Checkbox extends SvelteComponent<DatatableCheckboxProps> {}
export namespace Header {
interface ItemProps {
numeric?: boolean
columnID?: string
sortable?: boolean
class?: string
}
export class Item extends SvelteComponent<ItemProps> {}
export class Checkbox extends SvelteComponent {}
}
export class Data extends SvelteComponent {}
export namespace Data {
interface RowProps {
clickable?: boolean
class?: string
}
export class Row extends SvelteComponent<RowProps> {}
export namespace Row {
interface ItemProps {
numeric?: boolean
colspan?: number
class?: string
lowContrast?: boolean
}
export class Item extends SvelteComponent<ItemProps> {}
}
}
}
interface DateInputProps {
color?: string
borderColor?: string
errorColor?: string
padding?: string
width?: string
fontSize?: string
name?: string
value?: string
disabled?: boolean
autofocus?: boolean
required?: boolean
class?: string
}
export class DateInput extends SvelteComponent<DateInputProps> {}
export namespace Dialog {
export type AlertButton = {
label: string
action: string
class: string
}
interface AlertProps {
open?: boolean
title?: string
titleIcon?: string
defaultAction?: string
buttons?: AlertButton[]
class?: string
}
export class Alert extends SvelteComponent<AlertProps> {}
interface SimpleProps {
open?: boolean
title?: string
items?: { id: string; name: string }[]
class?: string
}
export class Simple extends SvelteComponent<SimpleProps> {}
}
interface DrawerProps {
title?: string
subtitle?: string
menuItems?: {
icon: string
label: string
url: string
urlPattern: string
hide: boolean
button: boolean
tooltip: string
}[]
dismissible?: boolean
hasTopAppBar?: boolean
hideForTablet?: boolean
hideForPhonesOnly?: boolean
isFullHeightMenu?: boolean
miniMenu?: boolean
modal?: boolean
toggle?: boolean
currentUrl?: string
class?: string
}
export class Drawer extends SvelteComponent<DrawerProps> {}
interface FabProps {
icon?: string
label?: string
mini?: boolean
extended?: boolean
url?: string
action?: Function
target?: string
class?: string
}
export class Fab extends SvelteComponent<FabProps> {}
interface IconButtonProps {
ariaLabel?: string
disabled?: boolean
icon?: string
target?: string
url?: string
class?: string
}
export class IconButton extends SvelteComponent<IconButtonProps> {}
interface ListProps {
twoLine?: boolean
avatar?: boolean
class?: string
}
export class List extends SvelteComponent<ListProps> {}
type MenuItem = {
icon?: string
label?: string
url?: string
action?: VoidFunction
subtitle?: string
class?: string
}
interface MenuProps {
menuItems?: MenuItem[]
menuOpen?: boolean
currentUrl?: string
class?: string
}
export class Menu extends SvelteComponent<MenuProps> {}
interface MoneyInputProps {
label?: string
value?: number | string
name?: string
placeholder?: string
autofocus?: boolean
disabled?: boolean
required?: boolean
minValue?: number | string
maxValue?: number | string
step?: number | string
description?: string
class?: string
showWarn?: boolean
showError?: boolean
}
export class MoneyInput extends SvelteComponent<MoneyInputProps> {}
export namespace Progress {
type CircularProps = {}
export class Circular extends SvelteComponent<CircularProps> {}
interface LinearProps {
indeterminate?: boolean
value?: number
class?: string
}
export class Linear extends SvelteComponent<LinearProps> {}
}
interface SelectProps {
disabled?: boolean
label?: string
name?: string
options?: { name: string; id: string }[]
required?: boolean
showError?: boolean
selectedID?: string
width?: string
class?: string
}
export class Select extends SvelteComponent<SelectProps> {}
interface SwitchProps {
label?: string
disabled?: boolean
selected?: boolean
class?: string
}
export class Switch extends SvelteComponent<SwitchProps> {}
interface SnackbarProps {
// no exported members
}
export class Snackbar extends SvelteComponent<SnackbarProps> {}
interface TabBarProps {
tab?: number
class?: string
}
export class TabBar extends SvelteComponent<TabBarProps> {}
export namespace TabBar {
interface ScrollerProps {}
export class Scroller extends SvelteComponent<ScrollerProps> {}
interface TabProps {
active?: boolean
label?: string
class?: string
}
export class Tab extends SvelteComponent<TabProps> {}
}
interface TextAreaProps {
label?: string
value?: string
name?: string
placeholder?: string
rows?: number | string
required?: boolean
maxlength?: number
autofocus?: boolean
rtl?: boolean
description?: string
class?: string
showWarn?: boolean
showError?: boolean
}
export class TextArea extends SvelteComponent<TextAreaProps> {}
interface TextFieldProps {
label?: string
value?: string
name?: string
icon?: string
placeholder?: string
maxlength?: number
autofocus?: boolean
disabled?: boolean
required?: boolean
description?: string
class?: string
showWarn?: boolean
showError?: boolean
}
export class TextField extends SvelteComponent<TextFieldProps> {}
interface TooltipProps {
tooltipID?: string
positionX?: 'start' | 'center' | 'end'
positionY?: 'above' | 'below'
rich?: boolean
class?: string
}
export class Tooltip extends SvelteComponent<TooltipProps> {}
export namespace Tooltip {
interface TooltipWrapperProps {
ariaDescribedBy?: string
rich?: boolean
class?: string
}
export class Wrapper extends SvelteComponent<TooltipWrapperProps> {}
}
interface TopAppBarProps {
bgColorIsVariant?: boolean
dense?: boolean
fixed?: boolean
navIconBreakpointClass?: string
class?: string
}
export class TopAppBar extends SvelteComponent<TopAppBarProps> {}
interface BadgeProps {
color?: string
borderRadius?: string
padding?: string
bordered?: boolean
class?: string
}
export class Badge extends SvelteComponent<BadgeProps> {}
interface CustomCardProps {
src?: string
alt?: string
title?: string
icon?: string
disabled?: boolean
buttons?: { label: string; url: string }[]
footerText?: string
class?: string
}
export class CustomCard extends SvelteComponent<CustomCardProps> {}
interface FileDropAreaProps {
raised?: boolean
outlined?: boolean
mimeType?: string
uploading?: boolean
class?: string
}
export class FileDropArea extends SvelteComponent<FileDropAreaProps> {}
interface FormProps {
id?: string
saveToLocalStorage?: boolean
class?: string
}
export class Form extends SvelteComponent<FormProps> {}
interface PageProps {
loading?: boolean
title?: string
layout?: string
center?: boolean
noProgress?: boolean
class?: string
}
export class Page extends SvelteComponent<PageProps> {}
interface StaticChipProps {
bgColor?: string
height?: string
class?: string
}
export class StaticChip extends SvelteComponent<StaticChipProps> {}
export function setNotice(label: string, action?: string, callback?: Function): void
interface SearchableSelectProps {
choice?: string
disabled?: boolean
maxlength?: string
options: { [key: string]: string }
padding?: string
placeholder?: string
required?: boolean
width?: string
class?: string
}
export class SearchableSelect extends SvelteComponent<SearchableSelectProps> {}
type steps = 'title' | 'content' | 'left' | 'right' | 'previous' | 'next' | 'target'
interface TourProps {
steps?: { [key in steps]: string | number }[]
data?: { [key: string]: string }
class?: string
}
export class Tour extends SvelteComponent<TourProps> {}
}
declare module '@silintl/ui-components/random' {
export function generateRandomID(prefix?: string): string
}