design-system-silkhaus 2.1.0-beta.travel-list.9 → 2.1.0-beta.travel-list.12
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 +39 -39
- package/dist/index.d.ts +44 -0
- package/dist/index.js +8532 -8202
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -188,6 +188,14 @@ export declare interface CheckboxProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
188
188
|
onClick?: (e: default_2.MouseEvent) => void;
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
+
export declare const CheckmarkCircleIcon: FC<{
|
|
192
|
+
className?: string;
|
|
193
|
+
}>;
|
|
194
|
+
|
|
195
|
+
export declare const CheckmarkIcon: FC<{
|
|
196
|
+
className?: string;
|
|
197
|
+
}>;
|
|
198
|
+
|
|
191
199
|
export declare const ChevronLeftRegularIcon: FC<{
|
|
192
200
|
className?: string;
|
|
193
201
|
}>;
|
|
@@ -196,6 +204,10 @@ export declare const ChevronRightRegularIcon: FC<{
|
|
|
196
204
|
className?: string;
|
|
197
205
|
}>;
|
|
198
206
|
|
|
207
|
+
export declare const ClipboardSolidIcon: FC<{
|
|
208
|
+
className?: string;
|
|
209
|
+
}>;
|
|
210
|
+
|
|
199
211
|
export declare const CloseIcon: FC<{
|
|
200
212
|
className?: string;
|
|
201
213
|
}>;
|
|
@@ -342,6 +354,8 @@ export declare type ListingCardProps = {
|
|
|
342
354
|
totalPrice: string;
|
|
343
355
|
slashedTotalPrice?: string;
|
|
344
356
|
onClick: () => void;
|
|
357
|
+
selectable?: boolean;
|
|
358
|
+
selectionState?: SelectionStateEnum;
|
|
345
359
|
};
|
|
346
360
|
|
|
347
361
|
export declare const LocationIcon: FC<{
|
|
@@ -498,6 +512,12 @@ export declare const RulerRegularIcon: FC<{
|
|
|
498
512
|
|
|
499
513
|
export declare type ScreenSize = 'mobile' | 'tablet' | 'desktop';
|
|
500
514
|
|
|
515
|
+
export declare enum SelectionStateEnum {
|
|
516
|
+
None = "none",
|
|
517
|
+
Selected = "selected",
|
|
518
|
+
Added = "added"
|
|
519
|
+
}
|
|
520
|
+
|
|
501
521
|
export declare const SelectPopover: ForwardRefExoticComponent<SelectPopoverProps & RefAttributes<HTMLDivElement>>;
|
|
502
522
|
|
|
503
523
|
export declare interface SelectPopoverProps {
|
|
@@ -514,6 +534,10 @@ export declare interface SelectPopoverProps {
|
|
|
514
534
|
handleClose?: () => void;
|
|
515
535
|
}
|
|
516
536
|
|
|
537
|
+
export declare const SendIcon: FC<{
|
|
538
|
+
className?: string;
|
|
539
|
+
}>;
|
|
540
|
+
|
|
517
541
|
export declare const ShareIcon: FC<{
|
|
518
542
|
className?: string;
|
|
519
543
|
}>;
|
|
@@ -668,6 +692,10 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
|
|
|
668
692
|
buttonText: string;
|
|
669
693
|
}
|
|
670
694
|
|
|
695
|
+
export declare const TrashIcon: FC<{
|
|
696
|
+
className?: string;
|
|
697
|
+
}>;
|
|
698
|
+
|
|
671
699
|
export declare const TravelList: default_2.ForwardRefExoticComponent<TravelListProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
672
700
|
|
|
673
701
|
export declare const TravelListItem: default_2.ForwardRefExoticComponent<TravelListItemProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -686,6 +714,22 @@ export declare interface TravelListItemProps {
|
|
|
686
714
|
hideShare?: boolean;
|
|
687
715
|
}
|
|
688
716
|
|
|
717
|
+
export declare const TravelListPropertyItem: default_2.ForwardRefExoticComponent<TravelListPropertyItemProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
718
|
+
|
|
719
|
+
export declare interface TravelListPropertyItemProps {
|
|
720
|
+
className?: string;
|
|
721
|
+
title?: string;
|
|
722
|
+
type?: string;
|
|
723
|
+
bedroom?: string;
|
|
724
|
+
area?: string;
|
|
725
|
+
price?: string;
|
|
726
|
+
guests?: string;
|
|
727
|
+
imageUrl?: string;
|
|
728
|
+
onOpenLinkClick?: () => void;
|
|
729
|
+
onDeleteBtnClick?: () => void;
|
|
730
|
+
isUnavailable?: boolean;
|
|
731
|
+
}
|
|
732
|
+
|
|
689
733
|
export declare interface TravelListProps extends default_2.PropsWithChildren {
|
|
690
734
|
items?: TravelListItemProps[];
|
|
691
735
|
hideShare?: boolean;
|