design-system-silkhaus 2.1.0-beta.travel-list.10 → 2.1.0-beta.travel-list.13
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 +36 -36
- package/dist/index.d.ts +21 -0
- package/dist/index.js +7865 -7679
- 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 {
|
|
@@ -707,6 +727,7 @@ export declare interface TravelListPropertyItemProps {
|
|
|
707
727
|
imageUrl?: string;
|
|
708
728
|
onOpenLinkClick?: () => void;
|
|
709
729
|
onDeleteBtnClick?: () => void;
|
|
730
|
+
isUnavailable?: boolean;
|
|
710
731
|
}
|
|
711
732
|
|
|
712
733
|
export declare interface TravelListProps extends default_2.PropsWithChildren {
|