design-system-silkhaus 1.1.1-beta.promo-dialog.5 → 1.2.0-beta.travel-list.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.d.ts CHANGED
@@ -245,6 +245,10 @@ export declare const HandCursorTapIcon: FC<{
245
245
  className?: string;
246
246
  }>;
247
247
 
248
+ export declare const HomeIcon: FC<{
249
+ className?: string;
250
+ }>;
251
+
248
252
  export declare const HouseRegularIcon: FC<{
249
253
  className?: string;
250
254
  }>;
@@ -310,6 +314,10 @@ export declare type ListingCardProps = {
310
314
  onClick: () => void;
311
315
  };
312
316
 
317
+ export declare const LocationIcon: FC<{
318
+ className?: string;
319
+ }>;
320
+
313
321
  export declare const LongTermBanner: default_2.ForwardRefExoticComponent<LongTermBannerProps & default_2.RefAttributes<HTMLDivElement>>;
314
322
 
315
323
  export declare interface LongTermBannerProps {
@@ -378,6 +386,10 @@ export declare const MoonIcon: FC<{
378
386
  className?: string;
379
387
  }>;
380
388
 
389
+ export declare const NoDataIcon: FC<{
390
+ className?: string;
391
+ }>;
392
+
381
393
  declare interface Option_2 {
382
394
  label: string;
383
395
  id?: number | 'All';
@@ -405,23 +417,6 @@ export declare interface PriceRangeSliderProps {
405
417
  value?: [number | '', number | ''];
406
418
  }
407
419
 
408
- export declare const PromoDialog: default_2.ForwardRefExoticComponent<PromoDialogProps & default_2.RefAttributes<HTMLDivElement>>;
409
-
410
- export declare interface PromoDialogProps {
411
- bannerImageUrlDesktop?: string;
412
- bannerImageUrlMobile?: string;
413
- heading?: string;
414
- discountText?: string;
415
- desc?: string;
416
- warningText?: string;
417
- primaryBtnText?: string | ReactNode;
418
- secondaryBtnText?: string | ReactNode;
419
- onPrimaryBtnClick?: (email: string) => void;
420
- onSecondaryBtnClick?: () => void;
421
- onCloseButtonClick?: () => void;
422
- showRecaptchaBranding?: boolean;
423
- }
424
-
425
420
  export declare const QuestionMarkIcon: FC<{
426
421
  className?: string;
427
422
  }>;
@@ -588,6 +583,24 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
588
583
  buttonText: string;
589
584
  }
590
585
 
586
+ export declare const TravelList: default_2.ForwardRefExoticComponent<TravelListProps & default_2.RefAttributes<HTMLDivElement>>;
587
+
588
+ export declare const TravelListItem: default_2.ForwardRefExoticComponent<TravelListItemProps & default_2.RefAttributes<HTMLDivElement>>;
589
+
590
+ export declare interface TravelListItemProps {
591
+ title?: string;
592
+ count?: number;
593
+ startDate?: string;
594
+ endDate?: string;
595
+ minBudget?: number;
596
+ maxBudget?: number;
597
+ shareLink?: string;
598
+ }
599
+
600
+ export declare interface TravelListProps extends default_2.PropsWithChildren {
601
+ items?: TravelListItemProps[];
602
+ }
603
+
591
604
  export declare const TwoColumnDialog: ForwardRefExoticComponent<TwoColumnDialogProps & RefAttributes<HTMLDivElement>>;
592
605
 
593
606
  export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElement> {