design-system-silkhaus 0.0.87-beta.develop-long-term-pricing.4 → 0.0.87-beta.listing-card.1
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 +42 -29
- package/dist/index.d.ts +41 -0
- package/dist/index.js +16380 -11029
- package/dist/style.css +1 -1
- package/package.json +5 -2
package/dist/index.d.ts
CHANGED
|
@@ -71,6 +71,15 @@ declare interface AsteriskProps {
|
|
|
71
71
|
className?: string;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
+
export declare const Badge: default_2.ForwardRefExoticComponent<BadgeProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
75
|
+
|
|
76
|
+
export declare type BadgeProps = {
|
|
77
|
+
icon?: default_2.ReactNode;
|
|
78
|
+
label: string;
|
|
79
|
+
variant: 'dark' | 'light' | 'amenity';
|
|
80
|
+
className?: string;
|
|
81
|
+
};
|
|
82
|
+
|
|
74
83
|
export declare const BookingQuoteCard: default_2.ForwardRefExoticComponent<BookingQuoteCardProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
75
84
|
|
|
76
85
|
export declare interface BookingQuoteCardProps extends default_2.HTMLAttributes<HTMLDivElement> {
|
|
@@ -207,6 +216,23 @@ export declare interface InputProps extends default_2.InputHTMLAttributes<HTMLIn
|
|
|
207
216
|
captionClass?: string | undefined;
|
|
208
217
|
}
|
|
209
218
|
|
|
219
|
+
export declare const ListingCard: default_2.ForwardRefExoticComponent<ListingCardProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
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
|
+
|
|
210
236
|
export declare const LongTermBanner: default_2.ForwardRefExoticComponent<LongTermBannerProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
211
237
|
|
|
212
238
|
export declare interface LongTermBannerProps {
|
|
@@ -284,6 +310,16 @@ export declare interface RoundedProgressBarProps {
|
|
|
284
310
|
textClass?: string;
|
|
285
311
|
}
|
|
286
312
|
|
|
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
|
+
|
|
287
323
|
export declare interface Step {
|
|
288
324
|
number: number;
|
|
289
325
|
title: string;
|
|
@@ -309,6 +345,11 @@ export declare interface SwitchProps {
|
|
|
309
345
|
htmlId?: string;
|
|
310
346
|
}
|
|
311
347
|
|
|
348
|
+
declare type TagProps = {
|
|
349
|
+
icon: default_2.ReactNode;
|
|
350
|
+
label: string;
|
|
351
|
+
};
|
|
352
|
+
|
|
312
353
|
export declare const Timer: default_2.ForwardRefExoticComponent<TimerProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
313
354
|
|
|
314
355
|
export declare interface TimerProps {
|