design-system-silkhaus 0.0.87-beta.develop-long-term-pricing-fixes.2 → 0.0.87-beta.develop-long-term-pricing.14

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.d.ts CHANGED
@@ -86,6 +86,23 @@ declare interface AsteriskProps {
86
86
  className?: string;
87
87
  }
88
88
 
89
+ export declare const Badge: default_2.ForwardRefExoticComponent<BadgeProps & default_2.RefAttributes<HTMLDivElement>>;
90
+
91
+ export declare type BadgeProps = {
92
+ icon?: default_2.ReactNode;
93
+ label: string;
94
+ variant: 'dark' | 'light' | 'amenity';
95
+ className?: string;
96
+ };
97
+
98
+ export declare const BedLineIcon: FC<{
99
+ className?: string;
100
+ }>;
101
+
102
+ export declare const BedRegularIcon: FC<{
103
+ className?: string;
104
+ }>;
105
+
89
106
  export declare const BookingQuoteCard: default_2.ForwardRefExoticComponent<BookingQuoteCardProps & default_2.RefAttributes<HTMLDivElement>>;
90
107
 
91
108
  export declare interface BookingQuoteCardProps extends default_2.HTMLAttributes<HTMLDivElement> {
@@ -134,6 +151,14 @@ declare const cardVariants: (props?: ({
134
151
  cardType?: "default" | "shadowCard" | null | undefined;
135
152
  } & ClassProp) | undefined) => string;
136
153
 
154
+ export declare const ChevronLeftRegularIcon: FC<{
155
+ className?: string;
156
+ }>;
157
+
158
+ export declare const ChevronRightRegularIcon: FC<{
159
+ className?: string;
160
+ }>;
161
+
137
162
  export declare const CloseIcon: FC<{
138
163
  className?: string;
139
164
  }>;
@@ -202,6 +227,10 @@ declare const gridVariants: (props?: ({
202
227
  placeItems?: "start" | "end" | "center" | "stretch" | "baseline" | null | undefined;
203
228
  } & ClassProp) | undefined) => string;
204
229
 
230
+ export declare const HouseRegularIcon: FC<{
231
+ className?: string;
232
+ }>;
233
+
205
234
  export declare const IconButton: default_2.ForwardRefExoticComponent<IconButtonProps & default_2.RefAttributes<HTMLButtonElement>>;
206
235
 
207
236
  export declare interface IconButtonProps extends default_2.ButtonHTMLAttributes<HTMLButtonElement> {
@@ -229,6 +258,23 @@ export declare interface InputProps extends default_2.InputHTMLAttributes<HTMLIn
229
258
  captionClass?: string | undefined;
230
259
  }
231
260
 
261
+ export declare const ListingCard: default_2.ForwardRefExoticComponent<ListingCardProps & default_2.RefAttributes<HTMLDivElement>>;
262
+
263
+ export declare type ListingCardProps = {
264
+ images: string[];
265
+ title: string | default_2.ReactNode;
266
+ subtitle: string | default_2.ReactNode;
267
+ guests: number;
268
+ type: string;
269
+ sqft: string;
270
+ tags: TagProps[];
271
+ amenityTags?: TagProps[];
272
+ price: string;
273
+ isMonthlyPrice: boolean;
274
+ totalPrice: string;
275
+ onClick: () => void;
276
+ };
277
+
232
278
  export declare const LongTermBanner: default_2.ForwardRefExoticComponent<LongTermBannerProps & default_2.RefAttributes<HTMLDivElement>>;
233
279
 
234
280
  export declare interface LongTermBannerProps {
@@ -312,6 +358,28 @@ export declare interface RoundedProgressBarProps {
312
358
  textClass?: string;
313
359
  }
314
360
 
361
+ export declare const RulerRegularIcon: FC<{
362
+ className?: string;
363
+ }>;
364
+
365
+ export declare const SlickImageCarousel: default_2.ForwardRefExoticComponent<SlickImageCarouselProps & default_2.RefAttributes<HTMLDivElement>>;
366
+
367
+ export declare type SlickImageCarouselProps = {
368
+ images: string[];
369
+ dots?: boolean;
370
+ infinite?: boolean;
371
+ className?: string;
372
+ onClick?: () => void;
373
+ };
374
+
375
+ export declare const StarLineIcon: FC<{
376
+ className?: string;
377
+ }>;
378
+
379
+ export declare const StarRegularIcon: FC<{
380
+ className?: string;
381
+ }>;
382
+
315
383
  export declare interface Step {
316
384
  number: number;
317
385
  title: string;
@@ -337,6 +405,11 @@ export declare interface SwitchProps {
337
405
  htmlId?: string;
338
406
  }
339
407
 
408
+ declare type TagProps = {
409
+ icon: default_2.ReactNode;
410
+ label: string;
411
+ };
412
+
340
413
  export declare const Timer: default_2.ForwardRefExoticComponent<TimerProps & default_2.RefAttributes<HTMLDivElement>>;
341
414
 
342
415
  export declare interface TimerProps {