design-system-silkhaus 2.1.0-beta.travel-list.2 → 2.1.0-beta.travel-list.4
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 +34 -34
- package/dist/index.d.ts +39 -5
- package/dist/index.js +4638 -4424
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -236,6 +236,10 @@ declare interface DateRangePickerProps {
|
|
|
236
236
|
isAdjustHeightForViewport?: boolean;
|
|
237
237
|
}
|
|
238
238
|
|
|
239
|
+
export declare const DeleteIcon: FC<{
|
|
240
|
+
className?: string;
|
|
241
|
+
}>;
|
|
242
|
+
|
|
239
243
|
export declare const DesktopTooltip: FC<PropsWithChildren<TooltipProps>>;
|
|
240
244
|
|
|
241
245
|
export declare const Dialog: ForwardRefExoticComponent<DialogProps & RefAttributes<HTMLDivElement>>;
|
|
@@ -424,6 +428,10 @@ export declare const PencilIcon: FC<{
|
|
|
424
428
|
className?: string;
|
|
425
429
|
}>;
|
|
426
430
|
|
|
431
|
+
export declare const PreviewIcon: FC<{
|
|
432
|
+
className?: string;
|
|
433
|
+
}>;
|
|
434
|
+
|
|
427
435
|
export declare const PriceRangeSlider: default_2.FC<PriceRangeSliderProps>;
|
|
428
436
|
|
|
429
437
|
export declare interface PriceRangeSliderProps {
|
|
@@ -484,6 +492,26 @@ export declare const RulerRegularIcon: FC<{
|
|
|
484
492
|
|
|
485
493
|
export declare type ScreenSize = 'mobile' | 'tablet' | 'desktop';
|
|
486
494
|
|
|
495
|
+
export declare const SelectPopover: ForwardRefExoticComponent<SelectPopoverProps & RefAttributes<HTMLDivElement>>;
|
|
496
|
+
|
|
497
|
+
export declare interface SelectPopoverProps {
|
|
498
|
+
showPopup: boolean;
|
|
499
|
+
mobileContainerClassname?: string;
|
|
500
|
+
desktopContainerClassname?: string;
|
|
501
|
+
maxWidth?: string;
|
|
502
|
+
options?: Array<{
|
|
503
|
+
label: string;
|
|
504
|
+
icon: string | ReactNode;
|
|
505
|
+
value: string;
|
|
506
|
+
}>;
|
|
507
|
+
onOptionSelected?: (value: string) => void;
|
|
508
|
+
handleClose?: () => void;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
export declare const ShareIcon: FC<{
|
|
512
|
+
className?: string;
|
|
513
|
+
}>;
|
|
514
|
+
|
|
487
515
|
export declare const SlickImageCarousel: default_2.ForwardRefExoticComponent<SlickImageCarouselProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
488
516
|
|
|
489
517
|
export declare type SlickImageCarouselProps = {
|
|
@@ -638,16 +666,22 @@ export declare const TravelListItem: default_2.ForwardRefExoticComponent<TravelL
|
|
|
638
666
|
|
|
639
667
|
export declare interface TravelListItemProps {
|
|
640
668
|
title?: string;
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
maxBudget?: number;
|
|
669
|
+
homeCount?: number;
|
|
670
|
+
location?: string;
|
|
671
|
+
dates?: string;
|
|
672
|
+
budget?: string;
|
|
646
673
|
shareLink?: string;
|
|
674
|
+
onClickEditBtn?: () => void;
|
|
675
|
+
onClickViewBtn?: () => void;
|
|
676
|
+
onClickShareBtn?: () => void;
|
|
677
|
+
hideEdit?: boolean;
|
|
678
|
+
hideShare?: boolean;
|
|
647
679
|
}
|
|
648
680
|
|
|
649
681
|
export declare interface TravelListProps extends default_2.PropsWithChildren {
|
|
650
682
|
items?: TravelListItemProps[];
|
|
683
|
+
hideShare?: boolean;
|
|
684
|
+
hideEdit?: boolean;
|
|
651
685
|
}
|
|
652
686
|
|
|
653
687
|
export declare const TwoColumnDialog: ForwardRefExoticComponent<TwoColumnDialogProps & RefAttributes<HTMLDivElement>>;
|