design-system-silkhaus 1.1.1 → 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';
@@ -571,6 +583,24 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
571
583
  buttonText: string;
572
584
  }
573
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
+
574
604
  export declare const TwoColumnDialog: ForwardRefExoticComponent<TwoColumnDialogProps & RefAttributes<HTMLDivElement>>;
575
605
 
576
606
  export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElement> {