design-system-silkhaus 0.0.87-beta.listing-card.2 → 0.0.87-beta.listing-card.4
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 +106 -38
- package/dist/index.d.ts +126 -93
- package/dist/index.js +14462 -14233
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
import { CalendarDayShape } from 'react-dates';
|
|
2
2
|
import { ClassProp } from 'class-variance-authority/types';
|
|
3
|
-
import {
|
|
3
|
+
import { FC } from 'react';
|
|
4
4
|
import { ForwardRefExoticComponent } from 'react';
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
import { ModifiersShape } from 'react-dates';
|
|
7
7
|
import { Moment } from 'moment';
|
|
8
|
-
import
|
|
8
|
+
import { Placement } from '@floating-ui/react';
|
|
9
|
+
import { PropsWithChildren } from 'react';
|
|
10
|
+
import { default as React_2 } from 'react';
|
|
11
|
+
import * as React_3 from 'react';
|
|
9
12
|
import { ReactNode } from 'react';
|
|
10
13
|
import { RefAttributes } from 'react';
|
|
11
14
|
import { VariantProps } from 'class-variance-authority';
|
|
12
15
|
|
|
13
|
-
export declare const Accordion:
|
|
16
|
+
export declare const Accordion: React_2.ForwardRefExoticComponent<AccordionProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
14
17
|
|
|
15
18
|
export declare interface AccordionProps {
|
|
16
19
|
title: string | ReactNode;
|
|
@@ -25,7 +28,7 @@ export declare interface AccordionProps {
|
|
|
25
28
|
isExpanded?: boolean;
|
|
26
29
|
}
|
|
27
30
|
|
|
28
|
-
export declare const ActionFooter:
|
|
31
|
+
export declare const ActionFooter: React_2.ForwardRefExoticComponent<ActionFooterProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
29
32
|
|
|
30
33
|
export declare interface ActionFooterProps {
|
|
31
34
|
className?: string;
|
|
@@ -33,12 +36,12 @@ export declare interface ActionFooterProps {
|
|
|
33
36
|
primaryBtnClick: () => void;
|
|
34
37
|
primaryBtnDisabled?: boolean;
|
|
35
38
|
secondaryBtnDisabled?: boolean;
|
|
36
|
-
primaryBtnTxt: string |
|
|
37
|
-
secondaryBtnTxt?: string |
|
|
38
|
-
thirdColumn?:
|
|
39
|
+
primaryBtnTxt: string | React_2.ReactNode;
|
|
40
|
+
secondaryBtnTxt?: string | React_2.ReactNode;
|
|
41
|
+
thirdColumn?: React_2.ReactNode;
|
|
39
42
|
}
|
|
40
43
|
|
|
41
|
-
export declare const AlertDialog:
|
|
44
|
+
export declare const AlertDialog: React_2.ForwardRefExoticComponent<AlertDialogProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
42
45
|
|
|
43
46
|
export declare interface AlertDialogProps {
|
|
44
47
|
outerDivClassName?: string;
|
|
@@ -61,28 +64,31 @@ export declare interface AnimatedModalProps extends HTMLAttributes<HTMLDivElemen
|
|
|
61
64
|
show: boolean;
|
|
62
65
|
handleClose?: () => void;
|
|
63
66
|
animation?: 'slideUp' | 'slideDown' | 'fadeIn';
|
|
67
|
+
/**
|
|
68
|
+
* @deprecated
|
|
69
|
+
* Apply styles using `contentClassName` instead
|
|
70
|
+
*/
|
|
64
71
|
marginTop?: string;
|
|
72
|
+
/**
|
|
73
|
+
* @deprecated
|
|
74
|
+
* Apply styles using `contentClassName` instead
|
|
75
|
+
*/
|
|
65
76
|
maxWidth?: string;
|
|
77
|
+
/**
|
|
78
|
+
* classes to apply on container that wraps the children passed to AnimatedModal
|
|
79
|
+
*/
|
|
80
|
+
contentClassName?: string;
|
|
66
81
|
}
|
|
67
82
|
|
|
68
|
-
export declare const Asterisk:
|
|
83
|
+
export declare const Asterisk: React_2.ForwardRefExoticComponent<AsteriskProps & React_2.RefAttributes<HTMLSpanElement>>;
|
|
69
84
|
|
|
70
85
|
declare interface AsteriskProps {
|
|
71
86
|
className?: string;
|
|
72
87
|
}
|
|
73
88
|
|
|
74
|
-
export declare const
|
|
89
|
+
export declare const BookingQuoteCard: React_2.ForwardRefExoticComponent<BookingQuoteCardProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
75
90
|
|
|
76
|
-
export declare
|
|
77
|
-
icon?: default_2.ReactNode;
|
|
78
|
-
label: string;
|
|
79
|
-
variant: 'dark' | 'light' | 'amenity';
|
|
80
|
-
className?: string;
|
|
81
|
-
};
|
|
82
|
-
|
|
83
|
-
export declare const BookingQuoteCard: default_2.ForwardRefExoticComponent<BookingQuoteCardProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
84
|
-
|
|
85
|
-
export declare interface BookingQuoteCardProps extends default_2.HTMLAttributes<HTMLDivElement> {
|
|
91
|
+
export declare interface BookingQuoteCardProps extends React_2.HTMLAttributes<HTMLDivElement> {
|
|
86
92
|
items: BookingQuoteLineItemType[];
|
|
87
93
|
isExpandedInMobile?: boolean;
|
|
88
94
|
}
|
|
@@ -92,34 +98,35 @@ export declare interface BookingQuoteLineItemType {
|
|
|
92
98
|
display_name: string;
|
|
93
99
|
currency_converted_amount: string;
|
|
94
100
|
type: string;
|
|
101
|
+
description?: string;
|
|
95
102
|
}
|
|
96
103
|
|
|
97
|
-
export declare const Button:
|
|
104
|
+
export declare const Button: React_2.ForwardRefExoticComponent<ButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
98
105
|
|
|
99
|
-
export declare interface ButtonProps extends
|
|
106
|
+
export declare interface ButtonProps extends React_2.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
100
107
|
color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary';
|
|
101
108
|
size?: 'small' | 'large';
|
|
102
109
|
disabled?: true | false;
|
|
103
|
-
startIcon?:
|
|
104
|
-
endIcon?:
|
|
110
|
+
startIcon?: React_2.ReactNode;
|
|
111
|
+
endIcon?: React_2.ReactNode;
|
|
105
112
|
}
|
|
106
113
|
|
|
107
|
-
export declare const Card:
|
|
114
|
+
export declare const Card: React_3.ForwardRefExoticComponent<CardProps & React_3.RefAttributes<HTMLDivElement>>;
|
|
108
115
|
|
|
109
|
-
export declare const CardContent:
|
|
116
|
+
export declare const CardContent: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
110
117
|
|
|
111
|
-
export declare const CardDescription:
|
|
118
|
+
export declare const CardDescription: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
112
119
|
|
|
113
|
-
export declare const CardFooter:
|
|
120
|
+
export declare const CardFooter: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
114
121
|
|
|
115
|
-
export declare const CardHeader:
|
|
122
|
+
export declare const CardHeader: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
116
123
|
|
|
117
|
-
declare interface CardProps extends
|
|
124
|
+
declare interface CardProps extends React_3.HTMLAttributes<HTMLDivElement>, CardVariantProps {
|
|
118
125
|
asChild?: boolean;
|
|
119
126
|
as?: string;
|
|
120
127
|
}
|
|
121
128
|
|
|
122
|
-
export declare const CardTitle:
|
|
129
|
+
export declare const CardTitle: React_3.ForwardRefExoticComponent<React_3.HTMLAttributes<HTMLDivElement> & React_3.RefAttributes<HTMLDivElement>>;
|
|
123
130
|
|
|
124
131
|
export declare type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
125
132
|
|
|
@@ -127,7 +134,11 @@ declare const cardVariants: (props?: ({
|
|
|
127
134
|
cardType?: "default" | "shadowCard" | null | undefined;
|
|
128
135
|
} & ClassProp) | undefined) => string;
|
|
129
136
|
|
|
130
|
-
export declare const
|
|
137
|
+
export declare const CloseIcon: FC<{
|
|
138
|
+
className?: string;
|
|
139
|
+
}>;
|
|
140
|
+
|
|
141
|
+
export declare const DateRangePicker: React_2.ForwardRefExoticComponent<DateRangePickerProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
131
142
|
|
|
132
143
|
declare interface DateRangePickerProps {
|
|
133
144
|
startDatePlaceholderText?: string;
|
|
@@ -145,32 +156,34 @@ declare interface DateRangePickerProps {
|
|
|
145
156
|
focusedInput?: 'startDate' | 'endDate' | null;
|
|
146
157
|
onFocusChange?: (focusedInput: 'startDate' | 'endDate' | null) => void;
|
|
147
158
|
lTBannerImage?: string;
|
|
148
|
-
lTBannerTitle?: string |
|
|
149
|
-
lTBannerDesc?: string |
|
|
159
|
+
lTBannerTitle?: string | React_2.ReactNode;
|
|
160
|
+
lTBannerDesc?: string | React_2.ReactNode;
|
|
150
161
|
lTBannerBgColor?: string;
|
|
151
|
-
thirdColumn?: string |
|
|
162
|
+
thirdColumn?: string | React_2.ReactNode;
|
|
152
163
|
onMobileCloseClick: () => void;
|
|
153
164
|
onOutsideClick?: (e: unknown) => void;
|
|
154
165
|
onPrevMonthClick?: (e: unknown) => void;
|
|
155
166
|
onNextMonthClick?: (e: unknown) => void;
|
|
156
|
-
renderCalendarDay?: (props: CalendarDayShape) =>
|
|
167
|
+
renderCalendarDay?: (props: CalendarDayShape) => React_2.ReactNode | undefined;
|
|
157
168
|
isDayBlocked?: ((day: Moment) => boolean) | undefined;
|
|
158
|
-
renderDayContents?: (day: Moment, modifiers: ModifiersShape) =>
|
|
159
|
-
renderCalendarInfo?: () =>
|
|
169
|
+
renderDayContents?: (day: Moment, modifiers: ModifiersShape) => React_2.ReactNode | null | undefined;
|
|
170
|
+
renderCalendarInfo?: () => React_2.ReactNode | null | undefined;
|
|
160
171
|
_daySize?: number;
|
|
161
172
|
_mobileDaySize?: number;
|
|
162
173
|
mobileBreakPoint?: number;
|
|
163
174
|
}
|
|
164
175
|
|
|
165
|
-
export declare const
|
|
176
|
+
export declare const DesktopTooltip: FC<PropsWithChildren<TooltipProps>>;
|
|
177
|
+
|
|
178
|
+
export declare const Dialog: React_2.ForwardRefExoticComponent<DialogProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
166
179
|
|
|
167
180
|
export declare interface DialogProps extends HTMLAttributes<HTMLDivElement> {
|
|
168
181
|
open: boolean;
|
|
169
182
|
}
|
|
170
183
|
|
|
171
|
-
export declare const Grid:
|
|
184
|
+
export declare const Grid: React_3.ForwardRefExoticComponent<GridProps & React_3.RefAttributes<HTMLDivElement>>;
|
|
172
185
|
|
|
173
|
-
export declare interface GridProps extends
|
|
186
|
+
export declare interface GridProps extends React_3.HTMLAttributes<HTMLDivElement>, Omit<GridVariantProps, 'optional'> {
|
|
174
187
|
asChild?: boolean;
|
|
175
188
|
}
|
|
176
189
|
|
|
@@ -189,23 +202,23 @@ declare const gridVariants: (props?: ({
|
|
|
189
202
|
placeItems?: "start" | "end" | "center" | "stretch" | "baseline" | null | undefined;
|
|
190
203
|
} & ClassProp) | undefined) => string;
|
|
191
204
|
|
|
192
|
-
export declare const IconButton:
|
|
205
|
+
export declare const IconButton: React_2.ForwardRefExoticComponent<IconButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
193
206
|
|
|
194
|
-
export declare interface IconButtonProps extends
|
|
207
|
+
export declare interface IconButtonProps extends React_2.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
195
208
|
color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary';
|
|
196
209
|
size?: 'small' | 'large';
|
|
197
210
|
disabled?: true | false;
|
|
198
211
|
}
|
|
199
212
|
|
|
200
|
-
export declare const ImageCarousel:
|
|
213
|
+
export declare const ImageCarousel: React_2.ForwardRefExoticComponent<ImageCarouselProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
201
214
|
|
|
202
|
-
export declare interface ImageCarouselProps extends
|
|
215
|
+
export declare interface ImageCarouselProps extends React_2.HTMLAttributes<HTMLDivElement> {
|
|
203
216
|
images: string[];
|
|
204
217
|
}
|
|
205
218
|
|
|
206
|
-
export declare const Input:
|
|
219
|
+
export declare const Input: React_2.ForwardRefExoticComponent<InputProps & React_2.RefAttributes<HTMLInputElement>>;
|
|
207
220
|
|
|
208
|
-
export declare interface InputProps extends
|
|
221
|
+
export declare interface InputProps extends React_2.InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement> {
|
|
209
222
|
textarea?: true | false | undefined;
|
|
210
223
|
label?: string | undefined;
|
|
211
224
|
caption?: string | undefined;
|
|
@@ -216,35 +229,18 @@ export declare interface InputProps extends default_2.InputHTMLAttributes<HTMLIn
|
|
|
216
229
|
captionClass?: string | undefined;
|
|
217
230
|
}
|
|
218
231
|
|
|
219
|
-
export declare const
|
|
220
|
-
|
|
221
|
-
export declare type ListingCardProps = {
|
|
222
|
-
images: string[];
|
|
223
|
-
title: string | default_2.ReactNode;
|
|
224
|
-
subtitle: string | default_2.ReactNode;
|
|
225
|
-
guests: number;
|
|
226
|
-
type: string;
|
|
227
|
-
sqft: string;
|
|
228
|
-
tags: TagProps[];
|
|
229
|
-
amenityTags?: TagProps[];
|
|
230
|
-
price: string;
|
|
231
|
-
isMonthlyPrice: boolean;
|
|
232
|
-
totalPrice: string;
|
|
233
|
-
onClick: () => void;
|
|
234
|
-
};
|
|
235
|
-
|
|
236
|
-
export declare const LongTermBanner: default_2.ForwardRefExoticComponent<LongTermBannerProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
232
|
+
export declare const LongTermBanner: React_2.ForwardRefExoticComponent<LongTermBannerProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
237
233
|
|
|
238
234
|
export declare interface LongTermBannerProps {
|
|
239
235
|
image: string;
|
|
240
|
-
title: string |
|
|
241
|
-
desc: string |
|
|
236
|
+
title: string | React_2.ReactNode;
|
|
237
|
+
desc: string | React_2.ReactNode;
|
|
242
238
|
size: 'small' | 'large';
|
|
243
239
|
bgColor: string;
|
|
244
240
|
className?: string;
|
|
245
241
|
}
|
|
246
242
|
|
|
247
|
-
export declare const MobileFilterMenu:
|
|
243
|
+
export declare const MobileFilterMenu: React_2.ForwardRefExoticComponent<MobileFilterMenuProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
248
244
|
|
|
249
245
|
export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivElement> {
|
|
250
246
|
show: boolean;
|
|
@@ -260,7 +256,7 @@ export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivEle
|
|
|
260
256
|
maxWidth?: string;
|
|
261
257
|
}
|
|
262
258
|
|
|
263
|
-
export declare const MobileMultiSelectFilterDropDown:
|
|
259
|
+
export declare const MobileMultiSelectFilterDropDown: React_2.ForwardRefExoticComponent<MobileMultiSelectFilterDropDownProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
264
260
|
|
|
265
261
|
export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
266
262
|
label?: string;
|
|
@@ -281,7 +277,7 @@ export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttrib
|
|
|
281
277
|
noDataError?: string;
|
|
282
278
|
}
|
|
283
279
|
|
|
284
|
-
export declare const MobileSelectCardDropDown:
|
|
280
|
+
export declare const MobileSelectCardDropDown: React_2.ForwardRefExoticComponent<MobileSelectCardDropDownProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
285
281
|
|
|
286
282
|
export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
287
283
|
label?: string;
|
|
@@ -298,7 +294,13 @@ export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HT
|
|
|
298
294
|
noDataError?: string;
|
|
299
295
|
}
|
|
300
296
|
|
|
301
|
-
export declare const
|
|
297
|
+
export declare const MobileTootip: FC<PropsWithChildren<TooltipProps>>;
|
|
298
|
+
|
|
299
|
+
export declare const QuestionMarkIcon: FC<{
|
|
300
|
+
className?: string;
|
|
301
|
+
}>;
|
|
302
|
+
|
|
303
|
+
export declare const RoundedProgressBar: React_2.ForwardRefExoticComponent<RoundedProgressBarProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
302
304
|
|
|
303
305
|
export declare interface RoundedProgressBarProps {
|
|
304
306
|
progress: number;
|
|
@@ -310,16 +312,6 @@ export declare interface RoundedProgressBarProps {
|
|
|
310
312
|
textClass?: string;
|
|
311
313
|
}
|
|
312
314
|
|
|
313
|
-
export declare const SlickImageCarousel: default_2.ForwardRefExoticComponent<SlickImageCarouselProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
314
|
-
|
|
315
|
-
export declare type SlickImageCarouselProps = {
|
|
316
|
-
images: string[];
|
|
317
|
-
dots?: boolean;
|
|
318
|
-
infinite?: boolean;
|
|
319
|
-
className?: string;
|
|
320
|
-
onClick?: () => void;
|
|
321
|
-
};
|
|
322
|
-
|
|
323
315
|
export declare interface Step {
|
|
324
316
|
number: number;
|
|
325
317
|
title: string;
|
|
@@ -328,7 +320,7 @@ export declare interface Step {
|
|
|
328
320
|
mobileNextTitle: string;
|
|
329
321
|
}
|
|
330
322
|
|
|
331
|
-
export declare const Stepper:
|
|
323
|
+
export declare const Stepper: React_2.ForwardRefExoticComponent<StepperProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
332
324
|
|
|
333
325
|
export declare interface StepperProps {
|
|
334
326
|
steps: Step[];
|
|
@@ -336,21 +328,16 @@ export declare interface StepperProps {
|
|
|
336
328
|
outerMobileDivClass?: string;
|
|
337
329
|
}
|
|
338
330
|
|
|
339
|
-
export declare const Switch:
|
|
331
|
+
export declare const Switch: React_2.ForwardRefExoticComponent<SwitchProps & React_2.RefAttributes<HTMLInputElement>>;
|
|
340
332
|
|
|
341
333
|
export declare interface SwitchProps {
|
|
342
334
|
checked: boolean;
|
|
343
|
-
onChange: (event:
|
|
335
|
+
onChange: (event: React_2.ChangeEvent<HTMLInputElement>) => void;
|
|
344
336
|
disabled?: boolean;
|
|
345
337
|
htmlId?: string;
|
|
346
338
|
}
|
|
347
339
|
|
|
348
|
-
declare
|
|
349
|
-
icon: default_2.ReactNode;
|
|
350
|
-
label: string;
|
|
351
|
-
};
|
|
352
|
-
|
|
353
|
-
export declare const Timer: default_2.ForwardRefExoticComponent<TimerProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
340
|
+
export declare const Timer: React_2.ForwardRefExoticComponent<TimerProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
354
341
|
|
|
355
342
|
export declare interface TimerProps {
|
|
356
343
|
time: number;
|
|
@@ -358,7 +345,53 @@ export declare interface TimerProps {
|
|
|
358
345
|
outerDivClass?: string;
|
|
359
346
|
}
|
|
360
347
|
|
|
361
|
-
|
|
348
|
+
/**
|
|
349
|
+
* A tooltip component that display a floating tooltip with the `content` on hover of the `trigger` element for desktop
|
|
350
|
+
* and for mobile it displays a popover with the `content` on click of the `trigger` element
|
|
351
|
+
*/
|
|
352
|
+
export declare const Tooltip: FC<PropsWithChildren<TooltipProps>>;
|
|
353
|
+
|
|
354
|
+
export declare interface TooltipProps {
|
|
355
|
+
/**
|
|
356
|
+
* Content of the tooltip
|
|
357
|
+
*/
|
|
358
|
+
content: ReactNode;
|
|
359
|
+
/**
|
|
360
|
+
* Title of the tooltip that is displayed in the header of the tooltip
|
|
361
|
+
* Only applicable for mobile version of tooltip
|
|
362
|
+
* @default ''
|
|
363
|
+
*/
|
|
364
|
+
title?: string;
|
|
365
|
+
/**
|
|
366
|
+
* The element that triggers the tooltip
|
|
367
|
+
*/
|
|
368
|
+
trigger: ReactNode;
|
|
369
|
+
/**
|
|
370
|
+
* The placement of the floating tooltip. Only used in desktop version
|
|
371
|
+
* @default 'left'
|
|
372
|
+
*/
|
|
373
|
+
placement?: Placement;
|
|
374
|
+
/**
|
|
375
|
+
* The trigger of the tooltip is wrapped in a container. This classname is added to that container
|
|
376
|
+
*/
|
|
377
|
+
triggerContainerClassName?: string;
|
|
378
|
+
/**
|
|
379
|
+
* The content of the tooltip is wrapped in a container. This classname is added to that container
|
|
380
|
+
*/
|
|
381
|
+
contentContainerClassname?: string;
|
|
382
|
+
/**
|
|
383
|
+
* When set true, tootlip will not be shown
|
|
384
|
+
* @default false
|
|
385
|
+
*/
|
|
386
|
+
disabled?: boolean;
|
|
387
|
+
/**
|
|
388
|
+
* The offset of the tooltip from the trigger in px. Only applicable for desktop tooltip
|
|
389
|
+
* @dwefault 4
|
|
390
|
+
*/
|
|
391
|
+
offset?: number;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
export declare const TopNavBar: React_2.ForwardRefExoticComponent<TopNavBarProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
362
395
|
|
|
363
396
|
export declare interface TopNavBarProps extends HTMLAttributes<HTMLDivElement> {
|
|
364
397
|
text?: string | ReactNode;
|
|
@@ -367,7 +400,7 @@ export declare interface TopNavBarProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
367
400
|
direction?: 'marquee--left' | 'marquee--right' | 'marquee--up' | 'marquee--down';
|
|
368
401
|
}
|
|
369
402
|
|
|
370
|
-
export declare const TopNavContainerMobile:
|
|
403
|
+
export declare const TopNavContainerMobile: React_2.ForwardRefExoticComponent<TopNavContainerMobileProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
371
404
|
|
|
372
405
|
export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLDivElement> {
|
|
373
406
|
img: string;
|
|
@@ -379,7 +412,7 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
|
|
|
379
412
|
buttonText: string;
|
|
380
413
|
}
|
|
381
414
|
|
|
382
|
-
export declare const TwoColumnDialog:
|
|
415
|
+
export declare const TwoColumnDialog: React_2.ForwardRefExoticComponent<TwoColumnDialogProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
383
416
|
|
|
384
417
|
export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElement> {
|
|
385
418
|
img: string;
|