design-system-silkhaus 2.1.0-beta.travel-list.8 → 2.1.0-beta.travel-list.10
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 +38 -38
- package/dist/index.d.ts +23 -0
- package/dist/index.js +4335 -4194
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -514,6 +514,10 @@ export declare interface SelectPopoverProps {
|
|
|
514
514
|
handleClose?: () => void;
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
export declare const SendIcon: FC<{
|
|
518
|
+
className?: string;
|
|
519
|
+
}>;
|
|
520
|
+
|
|
517
521
|
export declare const ShareIcon: FC<{
|
|
518
522
|
className?: string;
|
|
519
523
|
}>;
|
|
@@ -668,6 +672,10 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
|
|
|
668
672
|
buttonText: string;
|
|
669
673
|
}
|
|
670
674
|
|
|
675
|
+
export declare const TrashIcon: FC<{
|
|
676
|
+
className?: string;
|
|
677
|
+
}>;
|
|
678
|
+
|
|
671
679
|
export declare const TravelList: default_2.ForwardRefExoticComponent<TravelListProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
672
680
|
|
|
673
681
|
export declare const TravelListItem: default_2.ForwardRefExoticComponent<TravelListItemProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -686,6 +694,21 @@ export declare interface TravelListItemProps {
|
|
|
686
694
|
hideShare?: boolean;
|
|
687
695
|
}
|
|
688
696
|
|
|
697
|
+
export declare const TravelListPropertyItem: default_2.ForwardRefExoticComponent<TravelListPropertyItemProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
698
|
+
|
|
699
|
+
export declare interface TravelListPropertyItemProps {
|
|
700
|
+
className?: string;
|
|
701
|
+
title?: string;
|
|
702
|
+
type?: string;
|
|
703
|
+
bedroom?: string;
|
|
704
|
+
area?: string;
|
|
705
|
+
price?: string;
|
|
706
|
+
guests?: string;
|
|
707
|
+
imageUrl?: string;
|
|
708
|
+
onOpenLinkClick?: () => void;
|
|
709
|
+
onDeleteBtnClick?: () => void;
|
|
710
|
+
}
|
|
711
|
+
|
|
689
712
|
export declare interface TravelListProps extends default_2.PropsWithChildren {
|
|
690
713
|
items?: TravelListItemProps[];
|
|
691
714
|
hideShare?: boolean;
|