design-system-silkhaus 0.0.88-beta.slider-input.6 → 0.0.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +74 -157
- package/dist/index.d.ts +59 -99
- package/dist/index.js +12419 -16428
- package/dist/style.css +1 -1
- package/package.json +4 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { CalendarDayShape } from 'react-dates';
|
|
2
2
|
import { ClassProp } from 'class-variance-authority/types';
|
|
3
|
-
import { default as default_2 } from 'react';
|
|
4
3
|
import { FC } from 'react';
|
|
5
4
|
import { ForwardRefExoticComponent } from 'react';
|
|
6
5
|
import { HTMLAttributes } from 'react';
|
|
@@ -8,12 +7,13 @@ import { ModifiersShape } from 'react-dates';
|
|
|
8
7
|
import { Moment } from 'moment';
|
|
9
8
|
import { Placement } from '@floating-ui/react';
|
|
10
9
|
import { PropsWithChildren } from 'react';
|
|
11
|
-
import
|
|
10
|
+
import { default as React_2 } from 'react';
|
|
11
|
+
import * as React_3 from 'react';
|
|
12
12
|
import { ReactNode } from 'react';
|
|
13
13
|
import { RefAttributes } from 'react';
|
|
14
14
|
import { VariantProps } from 'class-variance-authority';
|
|
15
15
|
|
|
16
|
-
export declare const Accordion:
|
|
16
|
+
export declare const Accordion: React_2.ForwardRefExoticComponent<AccordionProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
17
17
|
|
|
18
18
|
export declare interface AccordionProps {
|
|
19
19
|
title: string | ReactNode;
|
|
@@ -28,7 +28,7 @@ export declare interface AccordionProps {
|
|
|
28
28
|
isExpanded?: boolean;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
export declare const ActionFooter:
|
|
31
|
+
export declare const ActionFooter: React_2.ForwardRefExoticComponent<ActionFooterProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
32
32
|
|
|
33
33
|
export declare interface ActionFooterProps {
|
|
34
34
|
className?: string;
|
|
@@ -36,12 +36,12 @@ export declare interface ActionFooterProps {
|
|
|
36
36
|
primaryBtnClick: () => void;
|
|
37
37
|
primaryBtnDisabled?: boolean;
|
|
38
38
|
secondaryBtnDisabled?: boolean;
|
|
39
|
-
primaryBtnTxt: string |
|
|
40
|
-
secondaryBtnTxt?: string |
|
|
41
|
-
thirdColumn?:
|
|
39
|
+
primaryBtnTxt: string | React_2.ReactNode;
|
|
40
|
+
secondaryBtnTxt?: string | React_2.ReactNode;
|
|
41
|
+
thirdColumn?: React_2.ReactNode;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
export declare const AlertDialog:
|
|
44
|
+
export declare const AlertDialog: React_2.ForwardRefExoticComponent<AlertDialogProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
45
45
|
|
|
46
46
|
export declare interface AlertDialogProps {
|
|
47
47
|
outerDivClassName?: string;
|
|
@@ -80,16 +80,16 @@ export declare interface AnimatedModalProps extends HTMLAttributes<HTMLDivElemen
|
|
|
80
80
|
contentClassName?: string;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
export declare const Asterisk:
|
|
83
|
+
export declare const Asterisk: React_2.ForwardRefExoticComponent<AsteriskProps & React_2.RefAttributes<HTMLSpanElement>>;
|
|
84
84
|
|
|
85
85
|
declare interface AsteriskProps {
|
|
86
86
|
className?: string;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
export declare const Badge:
|
|
89
|
+
export declare const Badge: React_2.ForwardRefExoticComponent<BadgeProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
90
90
|
|
|
91
91
|
export declare type BadgeProps = {
|
|
92
|
-
icon?:
|
|
92
|
+
icon?: React_2.ReactNode;
|
|
93
93
|
label: string;
|
|
94
94
|
variant: 'dark' | 'light' | 'amenity';
|
|
95
95
|
className?: string;
|
|
@@ -103,9 +103,9 @@ export declare const BedRegularIcon: FC<{
|
|
|
103
103
|
className?: string;
|
|
104
104
|
}>;
|
|
105
105
|
|
|
106
|
-
export declare const BookingQuoteCard:
|
|
106
|
+
export declare const BookingQuoteCard: React_2.ForwardRefExoticComponent<BookingQuoteCardProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
107
107
|
|
|
108
|
-
export declare interface BookingQuoteCardProps extends
|
|
108
|
+
export declare interface BookingQuoteCardProps extends React_2.HTMLAttributes<HTMLDivElement> {
|
|
109
109
|
items: BookingQuoteLineItemType[];
|
|
110
110
|
isExpandedInMobile?: boolean;
|
|
111
111
|
}
|
|
@@ -118,32 +118,32 @@ export declare interface BookingQuoteLineItemType {
|
|
|
118
118
|
description?: string;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
-
export declare const Button:
|
|
121
|
+
export declare const Button: React_2.ForwardRefExoticComponent<ButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
122
122
|
|
|
123
|
-
export declare interface ButtonProps extends
|
|
123
|
+
export declare interface ButtonProps extends React_2.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
124
124
|
color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary';
|
|
125
125
|
size?: 'small' | 'large';
|
|
126
126
|
disabled?: true | false;
|
|
127
|
-
startIcon?:
|
|
128
|
-
endIcon?:
|
|
127
|
+
startIcon?: React_2.ReactNode;
|
|
128
|
+
endIcon?: React_2.ReactNode;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
export declare const Card:
|
|
131
|
+
export declare const Card: React_3.ForwardRefExoticComponent<CardProps & React_3.RefAttributes<HTMLDivElement>>;
|
|
132
132
|
|
|
133
|
-
export declare const CardContent:
|
|
133
|
+
export declare const CardContent: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
134
134
|
|
|
135
|
-
export declare const CardDescription:
|
|
135
|
+
export declare const CardDescription: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
136
136
|
|
|
137
|
-
export declare const CardFooter:
|
|
137
|
+
export declare const CardFooter: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
138
138
|
|
|
139
|
-
export declare const CardHeader:
|
|
139
|
+
export declare const CardHeader: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
140
140
|
|
|
141
|
-
declare interface CardProps extends
|
|
141
|
+
declare interface CardProps extends React_3.HTMLAttributes<HTMLDivElement>, CardVariantProps {
|
|
142
142
|
asChild?: boolean;
|
|
143
143
|
as?: string;
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
-
export declare const CardTitle:
|
|
146
|
+
export declare const CardTitle: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
147
147
|
|
|
148
148
|
export declare type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
149
149
|
|
|
@@ -163,7 +163,7 @@ export declare const CloseIcon: FC<{
|
|
|
163
163
|
className?: string;
|
|
164
164
|
}>;
|
|
165
165
|
|
|
166
|
-
export declare const DateRangePicker:
|
|
166
|
+
export declare const DateRangePicker: React_2.ForwardRefExoticComponent<DateRangePickerProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
167
167
|
|
|
168
168
|
declare interface DateRangePickerProps {
|
|
169
169
|
startDatePlaceholderText?: string;
|
|
@@ -181,18 +181,18 @@ declare interface DateRangePickerProps {
|
|
|
181
181
|
focusedInput?: 'startDate' | 'endDate' | null;
|
|
182
182
|
onFocusChange?: (focusedInput: 'startDate' | 'endDate' | null) => void;
|
|
183
183
|
lTBannerImage?: string;
|
|
184
|
-
lTBannerTitle?: string |
|
|
185
|
-
lTBannerDesc?: string |
|
|
184
|
+
lTBannerTitle?: string | React_2.ReactNode;
|
|
185
|
+
lTBannerDesc?: string | React_2.ReactNode;
|
|
186
186
|
lTBannerBgColor?: string;
|
|
187
|
-
thirdColumn?: string |
|
|
187
|
+
thirdColumn?: string | React_2.ReactNode;
|
|
188
188
|
onMobileCloseClick: () => void;
|
|
189
189
|
onOutsideClick?: (e: unknown) => void;
|
|
190
190
|
onPrevMonthClick?: (e: unknown) => void;
|
|
191
191
|
onNextMonthClick?: (e: unknown) => void;
|
|
192
|
-
renderCalendarDay?: (props: CalendarDayShape) =>
|
|
192
|
+
renderCalendarDay?: (props: CalendarDayShape) => React_2.ReactNode | undefined;
|
|
193
193
|
isDayBlocked?: ((day: Moment) => boolean) | undefined;
|
|
194
|
-
renderDayContents?: (day: Moment, modifiers: ModifiersShape) =>
|
|
195
|
-
renderCalendarInfo?: () =>
|
|
194
|
+
renderDayContents?: (day: Moment, modifiers: ModifiersShape) => React_2.ReactNode | null | undefined;
|
|
195
|
+
renderCalendarInfo?: () => React_2.ReactNode | null | undefined;
|
|
196
196
|
_daySize?: number;
|
|
197
197
|
_mobileDaySize?: number;
|
|
198
198
|
mobileBreakPoint?: number;
|
|
@@ -201,15 +201,15 @@ declare interface DateRangePickerProps {
|
|
|
201
201
|
|
|
202
202
|
export declare const DesktopTooltip: FC<PropsWithChildren<TooltipProps>>;
|
|
203
203
|
|
|
204
|
-
export declare const Dialog:
|
|
204
|
+
export declare const Dialog: React_2.ForwardRefExoticComponent<DialogProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
205
205
|
|
|
206
206
|
export declare interface DialogProps extends HTMLAttributes<HTMLDivElement> {
|
|
207
207
|
open: boolean;
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
-
export declare const Grid:
|
|
210
|
+
export declare const Grid: React_3.ForwardRefExoticComponent<GridProps & React_3.RefAttributes<HTMLDivElement>>;
|
|
211
211
|
|
|
212
|
-
export declare interface GridProps extends
|
|
212
|
+
export declare interface GridProps extends React_3.HTMLAttributes<HTMLDivElement>, Omit<GridVariantProps, 'optional'> {
|
|
213
213
|
asChild?: boolean;
|
|
214
214
|
}
|
|
215
215
|
|
|
@@ -236,54 +236,39 @@ export declare const HouseRegularIcon: FC<{
|
|
|
236
236
|
className?: string;
|
|
237
237
|
}>;
|
|
238
238
|
|
|
239
|
-
export declare const IconButton:
|
|
239
|
+
export declare const IconButton: React_2.ForwardRefExoticComponent<IconButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
240
240
|
|
|
241
|
-
export declare interface IconButtonProps extends
|
|
241
|
+
export declare interface IconButtonProps extends React_2.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
242
242
|
color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary';
|
|
243
243
|
size?: 'small' | 'large';
|
|
244
244
|
disabled?: true | false;
|
|
245
245
|
}
|
|
246
246
|
|
|
247
|
-
export declare const ImageCarousel:
|
|
247
|
+
export declare const ImageCarousel: React_2.ForwardRefExoticComponent<ImageCarouselProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
248
248
|
|
|
249
|
-
export declare interface ImageCarouselProps extends
|
|
249
|
+
export declare interface ImageCarouselProps extends React_2.HTMLAttributes<HTMLDivElement> {
|
|
250
250
|
images: string[];
|
|
251
251
|
}
|
|
252
252
|
|
|
253
|
-
export declare const Input:
|
|
253
|
+
export declare const Input: React_2.ForwardRefExoticComponent<InputProps & React_2.RefAttributes<HTMLInputElement>>;
|
|
254
254
|
|
|
255
|
-
export declare interface InputProps extends
|
|
255
|
+
export declare interface InputProps extends React_2.InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement> {
|
|
256
256
|
textarea?: true | false | undefined;
|
|
257
257
|
label?: string | undefined;
|
|
258
258
|
caption?: string | undefined;
|
|
259
|
-
color
|
|
259
|
+
color: 'primary' | 'success' | 'error' | 'primaryRounded' | 'errorRounded' | 'disabled';
|
|
260
260
|
required?: boolean;
|
|
261
261
|
labelClass?: string | undefined;
|
|
262
262
|
InputDivClass?: string | undefined;
|
|
263
263
|
captionClass?: string | undefined;
|
|
264
|
-
startAdornment?: default_2.ReactNode;
|
|
265
|
-
endAdornment?: default_2.ReactNode;
|
|
266
|
-
min?: number;
|
|
267
|
-
max?: number;
|
|
268
|
-
value?: string | number;
|
|
269
|
-
/**
|
|
270
|
-
* When `true`, only numbers can be entered. Any other input will be ignored
|
|
271
|
-
* When min and max are set, the entered value is set to min when less than min and max when greater than max
|
|
272
|
-
*/
|
|
273
|
-
isNumbersOnly?: boolean;
|
|
274
|
-
/**
|
|
275
|
-
* When `isNumbersOnly` is `true`, entered value might be modified depending on min and max.
|
|
276
|
-
* While `onChange` will you give what the user enters, `onNumberUpdate` will give the final modified value
|
|
277
|
-
*/
|
|
278
|
-
onNumberUpdate?: (val: number | '') => void;
|
|
279
264
|
}
|
|
280
265
|
|
|
281
|
-
export declare const ListingCard:
|
|
266
|
+
export declare const ListingCard: React_2.ForwardRefExoticComponent<ListingCardProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
282
267
|
|
|
283
268
|
export declare type ListingCardProps = {
|
|
284
269
|
images: string[];
|
|
285
|
-
title: string |
|
|
286
|
-
subtitle: string |
|
|
270
|
+
title: string | React_2.ReactNode;
|
|
271
|
+
subtitle: string | React_2.ReactNode;
|
|
287
272
|
guests: number;
|
|
288
273
|
type: string;
|
|
289
274
|
sqft: string;
|
|
@@ -297,18 +282,18 @@ export declare type ListingCardProps = {
|
|
|
297
282
|
onClick: () => void;
|
|
298
283
|
};
|
|
299
284
|
|
|
300
|
-
export declare const LongTermBanner:
|
|
285
|
+
export declare const LongTermBanner: React_2.ForwardRefExoticComponent<LongTermBannerProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
301
286
|
|
|
302
287
|
export declare interface LongTermBannerProps {
|
|
303
288
|
image: string;
|
|
304
|
-
title: string |
|
|
305
|
-
desc: string |
|
|
289
|
+
title: string | React_2.ReactNode;
|
|
290
|
+
desc: string | React_2.ReactNode;
|
|
306
291
|
size: 'small' | 'large';
|
|
307
292
|
bgColor: string;
|
|
308
293
|
className?: string;
|
|
309
294
|
}
|
|
310
295
|
|
|
311
|
-
export declare const MobileFilterMenu:
|
|
296
|
+
export declare const MobileFilterMenu: React_2.ForwardRefExoticComponent<MobileFilterMenuProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
312
297
|
|
|
313
298
|
export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivElement> {
|
|
314
299
|
show: boolean;
|
|
@@ -324,7 +309,7 @@ export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivEle
|
|
|
324
309
|
maxWidth?: string;
|
|
325
310
|
}
|
|
326
311
|
|
|
327
|
-
export declare const MobileMultiSelectFilterDropDown:
|
|
312
|
+
export declare const MobileMultiSelectFilterDropDown: React_2.ForwardRefExoticComponent<MobileMultiSelectFilterDropDownProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
328
313
|
|
|
329
314
|
export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
330
315
|
label?: string;
|
|
@@ -339,7 +324,7 @@ export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttrib
|
|
|
339
324
|
noDataError?: string;
|
|
340
325
|
}
|
|
341
326
|
|
|
342
|
-
export declare const MobileSelectCardDropDown:
|
|
327
|
+
export declare const MobileSelectCardDropDown: React_2.ForwardRefExoticComponent<MobileSelectCardDropDownProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
343
328
|
|
|
344
329
|
export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
345
330
|
label?: string;
|
|
@@ -363,36 +348,11 @@ declare interface Option_2 {
|
|
|
363
348
|
id?: number;
|
|
364
349
|
}
|
|
365
350
|
|
|
366
|
-
export declare const PriceRangeSlider: default_2.FC<PriceRangeSliderProps>;
|
|
367
|
-
|
|
368
|
-
export declare interface PriceRangeSliderProps {
|
|
369
|
-
className?: string;
|
|
370
|
-
min?: number;
|
|
371
|
-
max: number;
|
|
372
|
-
step?: number;
|
|
373
|
-
onChange?: (value: [number | '', number | '']) => void;
|
|
374
|
-
currency?: string;
|
|
375
|
-
value?: [number | '', number | ''];
|
|
376
|
-
}
|
|
377
|
-
|
|
378
351
|
export declare const QuestionMarkIcon: FC<{
|
|
379
352
|
className?: string;
|
|
380
353
|
}>;
|
|
381
354
|
|
|
382
|
-
export declare const
|
|
383
|
-
|
|
384
|
-
export declare interface RangeSliderProps {
|
|
385
|
-
value?: [number, number];
|
|
386
|
-
onChange?: (value: [number, number]) => void;
|
|
387
|
-
step?: number;
|
|
388
|
-
className?: string;
|
|
389
|
-
disabled?: boolean;
|
|
390
|
-
min?: number;
|
|
391
|
-
max?: number;
|
|
392
|
-
tooltip?: boolean;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
export declare const RoundedProgressBar: default_2.ForwardRefExoticComponent<RoundedProgressBarProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
355
|
+
export declare const RoundedProgressBar: React_2.ForwardRefExoticComponent<RoundedProgressBarProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
396
356
|
|
|
397
357
|
export declare interface RoundedProgressBarProps {
|
|
398
358
|
progress: number;
|
|
@@ -408,7 +368,7 @@ export declare const RulerRegularIcon: FC<{
|
|
|
408
368
|
className?: string;
|
|
409
369
|
}>;
|
|
410
370
|
|
|
411
|
-
export declare const SlickImageCarousel:
|
|
371
|
+
export declare const SlickImageCarousel: React_2.ForwardRefExoticComponent<SlickImageCarouselProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
412
372
|
|
|
413
373
|
export declare type SlickImageCarouselProps = {
|
|
414
374
|
images: string[];
|
|
@@ -434,7 +394,7 @@ export declare interface Step {
|
|
|
434
394
|
mobileNextTitle: string;
|
|
435
395
|
}
|
|
436
396
|
|
|
437
|
-
export declare const Stepper:
|
|
397
|
+
export declare const Stepper: React_2.ForwardRefExoticComponent<StepperProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
438
398
|
|
|
439
399
|
export declare interface StepperProps {
|
|
440
400
|
steps: Step[];
|
|
@@ -442,21 +402,21 @@ export declare interface StepperProps {
|
|
|
442
402
|
outerMobileDivClass?: string;
|
|
443
403
|
}
|
|
444
404
|
|
|
445
|
-
export declare const Switch:
|
|
405
|
+
export declare const Switch: React_2.ForwardRefExoticComponent<SwitchProps & React_2.RefAttributes<HTMLInputElement>>;
|
|
446
406
|
|
|
447
407
|
export declare interface SwitchProps {
|
|
448
408
|
checked: boolean;
|
|
449
|
-
onChange: (event:
|
|
409
|
+
onChange: (event: React_2.ChangeEvent<HTMLInputElement>) => void;
|
|
450
410
|
disabled?: boolean;
|
|
451
411
|
htmlId?: string;
|
|
452
412
|
}
|
|
453
413
|
|
|
454
414
|
declare type TagProps = {
|
|
455
|
-
icon:
|
|
415
|
+
icon: React_2.ReactNode;
|
|
456
416
|
label: string;
|
|
457
417
|
};
|
|
458
418
|
|
|
459
|
-
export declare const Timer:
|
|
419
|
+
export declare const Timer: React_2.ForwardRefExoticComponent<TimerProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
460
420
|
|
|
461
421
|
export declare interface TimerProps {
|
|
462
422
|
time: number;
|
|
@@ -519,7 +479,7 @@ export declare interface TopNavBarProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
519
479
|
direction?: 'marquee--left' | 'marquee--right' | 'marquee--up' | 'marquee--down';
|
|
520
480
|
}
|
|
521
481
|
|
|
522
|
-
export declare const TopNavContainerMobile:
|
|
482
|
+
export declare const TopNavContainerMobile: React_2.ForwardRefExoticComponent<TopNavContainerMobileProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
523
483
|
|
|
524
484
|
export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLDivElement> {
|
|
525
485
|
img: string;
|
|
@@ -531,7 +491,7 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
|
|
|
531
491
|
buttonText: string;
|
|
532
492
|
}
|
|
533
493
|
|
|
534
|
-
export declare const TwoColumnDialog:
|
|
494
|
+
export declare const TwoColumnDialog: React_2.ForwardRefExoticComponent<TwoColumnDialogProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
535
495
|
|
|
536
496
|
export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElement> {
|
|
537
497
|
img: string;
|