design-system-silkhaus 2.1.0-beta.travel-list.1 → 2.1.0-beta.travel-list.3
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 +45 -5
- package/dist/index.js +4501 -4223
- 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>>;
|
|
@@ -420,6 +424,14 @@ declare interface Option_2 {
|
|
|
420
424
|
}
|
|
421
425
|
export { Option_2 as Option }
|
|
422
426
|
|
|
427
|
+
export declare const PencilIcon: FC<{
|
|
428
|
+
className?: string;
|
|
429
|
+
}>;
|
|
430
|
+
|
|
431
|
+
export declare const PreviewIcon: FC<{
|
|
432
|
+
className?: string;
|
|
433
|
+
}>;
|
|
434
|
+
|
|
423
435
|
export declare const PriceRangeSlider: default_2.FC<PriceRangeSliderProps>;
|
|
424
436
|
|
|
425
437
|
export declare interface PriceRangeSliderProps {
|
|
@@ -480,6 +492,26 @@ export declare const RulerRegularIcon: FC<{
|
|
|
480
492
|
|
|
481
493
|
export declare type ScreenSize = 'mobile' | 'tablet' | 'desktop';
|
|
482
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
|
+
|
|
483
515
|
export declare const SlickImageCarousel: default_2.ForwardRefExoticComponent<SlickImageCarouselProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
484
516
|
|
|
485
517
|
export declare type SlickImageCarouselProps = {
|
|
@@ -532,6 +564,10 @@ declare type TagProps = {
|
|
|
532
564
|
label: string;
|
|
533
565
|
};
|
|
534
566
|
|
|
567
|
+
export declare const ThreeDotsCircleIcon: FC<{
|
|
568
|
+
className?: string;
|
|
569
|
+
}>;
|
|
570
|
+
|
|
535
571
|
export declare const Timer: default_2.ForwardRefExoticComponent<TimerProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
536
572
|
|
|
537
573
|
export declare interface TimerProps {
|
|
@@ -630,12 +666,16 @@ export declare const TravelListItem: default_2.ForwardRefExoticComponent<TravelL
|
|
|
630
666
|
|
|
631
667
|
export declare interface TravelListItemProps {
|
|
632
668
|
title?: string;
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
maxBudget?: number;
|
|
669
|
+
homeCount?: number;
|
|
670
|
+
location?: string;
|
|
671
|
+
dates?: string;
|
|
672
|
+
budget?: string;
|
|
638
673
|
shareLink?: string;
|
|
674
|
+
onClickEditBtn?: () => void;
|
|
675
|
+
onClickViewBtn?: () => void;
|
|
676
|
+
onClickShareBtn?: () => void;
|
|
677
|
+
hideEdit?: boolean;
|
|
678
|
+
hideShare?: boolean;
|
|
639
679
|
}
|
|
640
680
|
|
|
641
681
|
export declare interface TravelListProps extends default_2.PropsWithChildren {
|