@@ -12,6 +12,7 @@ declare module '@silintl/ui-components' {
12
12
raised ?: boolean
13
13
target ?: string
14
14
url ?: string
15
+ class ?: string
15
16
}
16
17
export class Button extends SvelteComponentTyped < ButtonProps > { }
17
18
@@ -25,6 +26,7 @@ declare module '@silintl/ui-components' {
25
26
color ?: string
26
27
isClickable ?: boolean
27
28
noPadding ?: boolean
29
+ class ?: string
28
30
}
29
31
export class Card extends SvelteComponentTyped < CardProps > { }
30
32
@@ -33,13 +35,15 @@ declare module '@silintl/ui-components' {
33
35
checked ?: boolean
34
36
disabled ?: boolean
35
37
uppercase ?: boolean
38
+ class ?: string
36
39
}
37
40
export class Checkbox extends SvelteComponentTyped < CheckboxProps > { }
38
41
39
42
//Datatable
40
43
interface DatatableProps {
41
44
label ?: string
42
45
numberOfCheckboxes ?: number
46
+ class ?: string
43
47
}
44
48
export class Datatable extends SvelteComponentTyped < DatatableProps > { }
45
49
@@ -50,6 +54,7 @@ declare module '@silintl/ui-components' {
50
54
interface DatatableCheckboxProps {
51
55
disabled ?: boolean
52
56
rowId ?: string
57
+ class ?: string
53
58
}
54
59
export class Checkbox extends SvelteComponentTyped < DatatableCheckboxProps > { }
55
60
@@ -58,6 +63,7 @@ declare module '@silintl/ui-components' {
58
63
numeric ?: boolean
59
64
columnID ?: string
60
65
sortable ?: boolean
66
+ class ?: string
61
67
}
62
68
export class Item extends SvelteComponentTyped < ItemProps > { }
63
69
export class Checkbox extends SvelteComponentTyped < HeaderProps > { }
@@ -69,13 +75,15 @@ declare module '@silintl/ui-components' {
69
75
export namespace Data {
70
76
interface RowProps {
71
77
clickable ?: boolean
78
+ class ?: string
72
79
}
73
80
export class Row extends SvelteComponentTyped < RowProps > { }
74
81
75
82
export namespace Row {
76
83
interface ItemProps {
77
84
numeric ?: boolean
78
85
colspan ?: number
86
+ class ?: string
79
87
}
80
88
export class Item extends SvelteComponentTyped < ItemProps > { }
81
89
}
@@ -111,12 +119,14 @@ declare module '@silintl/ui-components' {
111
119
titleIcon ?: string
112
120
defaultAction ?: string
113
121
buttons ?: AlertButton [ ]
122
+ class ?: string
114
123
}
115
124
export class Alert extends SvelteComponentTyped < AlertProps > { }
116
125
117
126
interface SimpleProps {
118
127
open ?: boolean
119
128
title ?: string
129
+ class ?: string
120
130
}
121
131
export class Simple extends SvelteComponentTyped < SimpleProps > { }
122
132
}
@@ -142,6 +152,7 @@ declare module '@silintl/ui-components' {
142
152
modal ?: boolean
143
153
toggle ?: boolean
144
154
currentUrl ?: string
155
+ class ?: string
145
156
}
146
157
export class Drawer extends SvelteComponentTyped < DrawerProps > { }
147
158
@@ -153,6 +164,7 @@ declare module '@silintl/ui-components' {
153
164
url ?: string
154
165
action ?: Function
155
166
target ?: string
167
+ class ?: string
156
168
}
157
169
export class Fab extends SvelteComponentTyped < FabProps > { }
158
170
@@ -162,12 +174,14 @@ declare module '@silintl/ui-components' {
162
174
icon ?: string
163
175
target ?: string
164
176
url ?: string
177
+ class ?: string
165
178
}
166
179
export class IconButton extends SvelteComponentTyped < IconButtonProps > { }
167
180
168
181
interface ListProps {
169
182
twoLine ?: boolean
170
183
avatar ?: boolean
184
+ class ?: string
171
185
}
172
186
export class List extends SvelteComponentTyped < ListProps > { }
173
187
@@ -177,11 +191,13 @@ declare module '@silintl/ui-components' {
177
191
url ?: string
178
192
action ?: VoidFunction
179
193
subtitle ?: string
194
+ class ?: string
180
195
}
181
196
interface MenuProps {
182
197
menuItems ?: MenuItem [ ]
183
198
menuOpen ?: boolean
184
199
currentUrl ?: string
200
+ class ?: string
185
201
}
186
202
export class Menu extends SvelteComponentTyped < MenuProps > { }
187
203
@@ -197,6 +213,7 @@ declare module '@silintl/ui-components' {
197
213
maxValue ?: number | string
198
214
step ?: number | string
199
215
description ?: string
216
+ class ?: string
200
217
}
201
218
export class MoneyInput extends SvelteComponentTyped < MoneyInputProps > { }
202
219
@@ -207,6 +224,7 @@ declare module '@silintl/ui-components' {
207
224
interface LinearProps {
208
225
indeterminate ?: boolean
209
226
value ?: number
227
+ class ?: string
210
228
}
211
229
export class Linear extends SvelteComponentTyped < LinearProps > { }
212
230
}
@@ -216,13 +234,15 @@ declare module '@silintl/ui-components' {
216
234
width ?: string
217
235
disabled ?: boolean
218
236
selectedID ?: string
237
+ class ?: string
219
238
}
220
239
export class Select extends SvelteComponentTyped < SelectProps > { }
221
240
222
241
interface SwitchProps {
223
242
label ?: string
224
243
disabled ?: boolean
225
244
selected ?: boolean
245
+ class ?: string
226
246
}
227
247
export class Switch extends SvelteComponentTyped < SwitchProps > { }
228
248
@@ -233,6 +253,7 @@ declare module '@silintl/ui-components' {
233
253
234
254
interface TabBarProps {
235
255
tab ?: number
256
+ class ?: string
236
257
}
237
258
export class TabBar extends SvelteComponentTyped < TabBarProps > { }
238
259
@@ -243,6 +264,7 @@ declare module '@silintl/ui-components' {
243
264
interface TabProps {
244
265
active ?: boolean
245
266
label ?: string
267
+ class ?: string
246
268
}
247
269
export class Tab extends SvelteComponentTyped < TabProps > { }
248
270
}
@@ -258,6 +280,7 @@ declare module '@silintl/ui-components' {
258
280
autofocus ?: boolean
259
281
rtl ?: boolean
260
282
description ?: string
283
+ class ?: string
261
284
}
262
285
export class TextArea extends SvelteComponentTyped < TextAreaProps > { }
263
286
@@ -271,19 +294,22 @@ declare module '@silintl/ui-components' {
271
294
disabled ?: boolean
272
295
required ?: boolean
273
296
description ?: string
297
+ class ?: string
274
298
}
275
299
export class TextField extends SvelteComponentTyped < TextFieldProps > { }
276
300
277
301
interface TooltipProps {
278
302
tooltipID ?: string
279
303
positionX ?: 'start' | 'center' | 'end'
280
304
positionY ?: 'above' | 'below'
305
+ class ?: string
281
306
}
282
307
export class Tooltip extends SvelteComponentTyped < TooltipProps > { }
283
308
284
309
export namespace Tooltip {
285
310
interface TooltipWrapperProps {
286
311
ariaDescribedBy ?: string
312
+ class ?: string
287
313
}
288
314
export class Wrapper extends SvelteComponentTyped < TooltipWrapperProps > { }
289
315
}
@@ -293,6 +319,7 @@ declare module '@silintl/ui-components' {
293
319
dense ?: boolean
294
320
fixed ?: boolean
295
321
navIconBreakpointClass ?: string
322
+ class ?: string
296
323
}
297
324
export class TopAppBar extends SvelteComponentTyped < TopAppBarProps > { }
298
325
@@ -301,6 +328,7 @@ declare module '@silintl/ui-components' {
301
328
borderRadius ?: string
302
329
padding ?: string
303
330
bordered ?: boolean
331
+ class ?: string
304
332
}
305
333
export class Badge extends SvelteComponentTyped < BadgeProps > { }
306
334
@@ -312,6 +340,7 @@ declare module '@silintl/ui-components' {
312
340
disabled ?: boolean
313
341
buttons ?: { label : string ; url : string } [ ]
314
342
footerText ?: string
343
+ class ?: string
315
344
}
316
345
export class CustomCard extends SvelteComponentTyped < CustomCardProps > { }
317
346
@@ -320,12 +349,14 @@ declare module '@silintl/ui-components' {
320
349
outlined ?: boolean
321
350
mimeType ?: string
322
351
uploading ?: boolean
352
+ class ?: string
323
353
}
324
354
export class FileDropArea extends SvelteComponentTyped < FileDropAreaProps > { }
325
355
326
356
interface FormProps {
327
357
id ?: string
328
358
saveToLocalStorage ?: boolean
359
+ class ?: string
329
360
}
330
361
export class Form extends SvelteComponentTyped < FormProps > { }
331
362
@@ -335,11 +366,13 @@ declare module '@silintl/ui-components' {
335
366
layout ?: string
336
367
center ?: boolean
337
368
noProgress ?: boolean
369
+ class ?: string
338
370
}
339
371
export class Page extends SvelteComponentTyped < PageProps > { }
340
372
341
373
interface StaticChipProps {
342
374
bgColor ?: string
375
+ class ?: string
343
376
}
344
377
export class StaticChip extends SvelteComponentTyped < StaticChipProps > { }
345
378
@@ -354,6 +387,7 @@ declare module '@silintl/ui-components' {
354
387
placeholder ?: string
355
388
required ?: boolean
356
389
width ?: string
390
+ class ?: string
357
391
}
358
392
export class SearchableSelect extends SvelteComponentTyped < SearchableSelectProps > { }
359
393
@@ -362,6 +396,7 @@ declare module '@silintl/ui-components' {
362
396
interface TourProps {
363
397
steps ?: { [ key in steps ] : string | number } [ ]
364
398
data ?: { [ key : string ] : string }
399
+ class ?: string
365
400
}
366
401
export class Tour extends SvelteComponentTyped < TourProps > { }
367
402
}
0 commit comments