design-system-silkhaus 2.0.0 → 2.1.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
@@ -11,6 +11,8 @@ import { PropsWithChildren } from 'react';
11
11
  import * as React_2 from 'react';
12
12
  import { ReactNode } from 'react';
13
13
  import { RefAttributes } from 'react';
14
+ import { toast as toast_2 } from 'react-toastify';
15
+ import { ToastContainerProps as ToastContainerProps_2 } from 'react-toastify';
14
16
  import { VariantProps } from 'class-variance-authority';
15
17
 
16
18
  export declare const Accordion: default_2.ForwardRefExoticComponent<AccordionProps & default_2.RefAttributes<HTMLDivElement>>;
@@ -336,6 +338,10 @@ export declare type ListingCardProps = {
336
338
  onClick: () => void;
337
339
  };
338
340
 
341
+ export declare const LocationIcon: FC<{
342
+ className?: string;
343
+ }>;
344
+
339
345
  export declare const LongTermBanner: default_2.ForwardRefExoticComponent<LongTermBannerProps & default_2.RefAttributes<HTMLDivElement>>;
340
346
 
341
347
  export declare interface LongTermBannerProps {
@@ -404,6 +410,10 @@ export declare const MoonIcon: FC<{
404
410
  className?: string;
405
411
  }>;
406
412
 
413
+ export declare const NoDataIcon: FC<{
414
+ className?: string;
415
+ }>;
416
+
407
417
  declare interface Option_2 {
408
418
  label: string;
409
419
  id?: number | 'All';
@@ -530,6 +540,12 @@ export declare interface TimerProps {
530
540
  outerDivClass?: string;
531
541
  }
532
542
 
543
+ export declare const toast: typeof toast_2;
544
+
545
+ export declare const ToastContainer: FC<ToastContainerProps>;
546
+
547
+ export declare type ToastContainerProps = ToastContainerProps_2;
548
+
533
549
  export declare const ToggleCard: default_2.ForwardRefExoticComponent<ToggleCardProps & default_2.RefAttributes<HTMLDivElement>>;
534
550
 
535
551
  export declare interface ToggleCardProps extends HTMLAttributes<HTMLDivElement> {
@@ -608,6 +624,24 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
608
624
  buttonText: string;
609
625
  }
610
626
 
627
+ export declare const TravelList: default_2.ForwardRefExoticComponent<TravelListProps & default_2.RefAttributes<HTMLDivElement>>;
628
+
629
+ export declare const TravelListItem: default_2.ForwardRefExoticComponent<TravelListItemProps & default_2.RefAttributes<HTMLDivElement>>;
630
+
631
+ export declare interface TravelListItemProps {
632
+ title?: string;
633
+ count?: number;
634
+ startDate?: string;
635
+ endDate?: string;
636
+ minBudget?: number;
637
+ maxBudget?: number;
638
+ shareLink?: string;
639
+ }
640
+
641
+ export declare interface TravelListProps extends default_2.PropsWithChildren {
642
+ items?: TravelListItemProps[];
643
+ }
644
+
611
645
  export declare const TwoColumnDialog: ForwardRefExoticComponent<TwoColumnDialogProps & RefAttributes<HTMLDivElement>>;
612
646
 
613
647
  export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElement> {