design-system-silkhaus 2.3.0-beta.travel-list.22 → 2.3.0-beta.travel-list.23
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 +27 -27
- package/dist/index.d.ts +6 -5
- package/dist/index.js +564 -530
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export declare const AlertDialog: default_2.ForwardRefExoticComponent<AlertDialo
|
|
|
52
52
|
export declare interface AlertDialogProps {
|
|
53
53
|
outerDivClassName?: string;
|
|
54
54
|
banner?: string;
|
|
55
|
-
title:
|
|
55
|
+
title: ReactNode;
|
|
56
56
|
description?: string;
|
|
57
57
|
disablePrimaryBtn: boolean;
|
|
58
58
|
showPrimaryBtn: boolean;
|
|
@@ -416,6 +416,7 @@ export declare type ListingCardProps = {
|
|
|
416
416
|
onClick: () => void;
|
|
417
417
|
selectable?: boolean;
|
|
418
418
|
selectionState?: SelectionStateEnum;
|
|
419
|
+
onViewListingClick?: () => void;
|
|
419
420
|
};
|
|
420
421
|
|
|
421
422
|
export declare const LocationIcon: FC<{
|
|
@@ -504,6 +505,10 @@ export declare const MoonIcon: FC<{
|
|
|
504
505
|
className?: string;
|
|
505
506
|
}>;
|
|
506
507
|
|
|
508
|
+
export declare const OpenNewIcon: FC<{
|
|
509
|
+
className?: string;
|
|
510
|
+
}>;
|
|
511
|
+
|
|
507
512
|
declare interface Option_2 {
|
|
508
513
|
label: string;
|
|
509
514
|
id?: number | 'All';
|
|
@@ -627,10 +632,6 @@ export declare interface SelectPopoverProps {
|
|
|
627
632
|
handleClose?: () => void;
|
|
628
633
|
}
|
|
629
634
|
|
|
630
|
-
export declare const SendIcon: FC<{
|
|
631
|
-
className?: string;
|
|
632
|
-
}>;
|
|
633
|
-
|
|
634
635
|
export declare const ShareIcon: FC<{
|
|
635
636
|
className?: string;
|
|
636
637
|
}>;
|