design-system-silkhaus 2.0.0 → 2.1.0-beta.travel-list.2
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 +47 -47
- package/dist/index.d.ts +42 -0
- package/dist/index.js +11129 -10602
- package/dist/style.css +1 -1
- package/package.json +2 -1
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,12 +410,20 @@ 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';
|
|
410
420
|
}
|
|
411
421
|
export { Option_2 as Option }
|
|
412
422
|
|
|
423
|
+
export declare const PencilIcon: FC<{
|
|
424
|
+
className?: string;
|
|
425
|
+
}>;
|
|
426
|
+
|
|
413
427
|
export declare const PriceRangeSlider: default_2.FC<PriceRangeSliderProps>;
|
|
414
428
|
|
|
415
429
|
export declare interface PriceRangeSliderProps {
|
|
@@ -522,6 +536,10 @@ declare type TagProps = {
|
|
|
522
536
|
label: string;
|
|
523
537
|
};
|
|
524
538
|
|
|
539
|
+
export declare const ThreeDotsCircleIcon: FC<{
|
|
540
|
+
className?: string;
|
|
541
|
+
}>;
|
|
542
|
+
|
|
525
543
|
export declare const Timer: default_2.ForwardRefExoticComponent<TimerProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
526
544
|
|
|
527
545
|
export declare interface TimerProps {
|
|
@@ -530,6 +548,12 @@ export declare interface TimerProps {
|
|
|
530
548
|
outerDivClass?: string;
|
|
531
549
|
}
|
|
532
550
|
|
|
551
|
+
export declare const toast: typeof toast_2;
|
|
552
|
+
|
|
553
|
+
export declare const ToastContainer: FC<ToastContainerProps>;
|
|
554
|
+
|
|
555
|
+
export declare type ToastContainerProps = ToastContainerProps_2;
|
|
556
|
+
|
|
533
557
|
export declare const ToggleCard: default_2.ForwardRefExoticComponent<ToggleCardProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
534
558
|
|
|
535
559
|
export declare interface ToggleCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -608,6 +632,24 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
|
|
|
608
632
|
buttonText: string;
|
|
609
633
|
}
|
|
610
634
|
|
|
635
|
+
export declare const TravelList: default_2.ForwardRefExoticComponent<TravelListProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
636
|
+
|
|
637
|
+
export declare const TravelListItem: default_2.ForwardRefExoticComponent<TravelListItemProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
638
|
+
|
|
639
|
+
export declare interface TravelListItemProps {
|
|
640
|
+
title?: string;
|
|
641
|
+
count?: number;
|
|
642
|
+
startDate?: string;
|
|
643
|
+
endDate?: string;
|
|
644
|
+
minBudget?: number;
|
|
645
|
+
maxBudget?: number;
|
|
646
|
+
shareLink?: string;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
export declare interface TravelListProps extends default_2.PropsWithChildren {
|
|
650
|
+
items?: TravelListItemProps[];
|
|
651
|
+
}
|
|
652
|
+
|
|
611
653
|
export declare const TwoColumnDialog: ForwardRefExoticComponent<TwoColumnDialogProps & RefAttributes<HTMLDivElement>>;
|
|
612
654
|
|
|
613
655
|
export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElement> {
|