design-system-silkhaus 1.2.0-beta.travel-list.1 → 1.2.0-beta.weekly-cleaning.5
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 +37 -37
- package/dist/index.d.ts +37 -30
- package/dist/index.js +5085 -5093
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -126,6 +126,32 @@ export declare interface ButtonProps extends default_2.ButtonHTMLAttributes<HTML
|
|
|
126
126
|
disabled?: true | false;
|
|
127
127
|
startIcon?: default_2.ReactNode;
|
|
128
128
|
endIcon?: default_2.ReactNode;
|
|
129
|
+
selected?: boolean;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export declare const ButtonsGroupSelector: default_2.ForwardRefExoticComponent<ButtonsGroupSelectorProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
133
|
+
|
|
134
|
+
export declare interface ButtonsGroupSelectorProps extends HTMLAttributes<HTMLDivElement> {
|
|
135
|
+
label?: string;
|
|
136
|
+
value?: Array<{
|
|
137
|
+
label: string;
|
|
138
|
+
value: string;
|
|
139
|
+
}>;
|
|
140
|
+
options: Array<{
|
|
141
|
+
label: string;
|
|
142
|
+
value: string;
|
|
143
|
+
}>;
|
|
144
|
+
onSelectionChange?: (selected: Array<{
|
|
145
|
+
label: string;
|
|
146
|
+
value: string;
|
|
147
|
+
}>) => void;
|
|
148
|
+
placeholder?: string;
|
|
149
|
+
selected?: boolean;
|
|
150
|
+
isMultiSelect?: boolean;
|
|
151
|
+
noDataError?: string;
|
|
152
|
+
minWidthButton?: string;
|
|
153
|
+
buttonWidth?: string;
|
|
154
|
+
minSelectionError?: string;
|
|
129
155
|
}
|
|
130
156
|
|
|
131
157
|
export declare const Card: React_2.ForwardRefExoticComponent<CardProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -245,10 +271,6 @@ export declare const HandCursorTapIcon: FC<{
|
|
|
245
271
|
className?: string;
|
|
246
272
|
}>;
|
|
247
273
|
|
|
248
|
-
export declare const HomeIcon: FC<{
|
|
249
|
-
className?: string;
|
|
250
|
-
}>;
|
|
251
|
-
|
|
252
274
|
export declare const HouseRegularIcon: FC<{
|
|
253
275
|
className?: string;
|
|
254
276
|
}>;
|
|
@@ -314,10 +336,6 @@ export declare type ListingCardProps = {
|
|
|
314
336
|
onClick: () => void;
|
|
315
337
|
};
|
|
316
338
|
|
|
317
|
-
export declare const LocationIcon: FC<{
|
|
318
|
-
className?: string;
|
|
319
|
-
}>;
|
|
320
|
-
|
|
321
339
|
export declare const LongTermBanner: default_2.ForwardRefExoticComponent<LongTermBannerProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
322
340
|
|
|
323
341
|
export declare interface LongTermBannerProps {
|
|
@@ -386,10 +404,6 @@ export declare const MoonIcon: FC<{
|
|
|
386
404
|
className?: string;
|
|
387
405
|
}>;
|
|
388
406
|
|
|
389
|
-
export declare const NoDataIcon: FC<{
|
|
390
|
-
className?: string;
|
|
391
|
-
}>;
|
|
392
|
-
|
|
393
407
|
declare interface Option_2 {
|
|
394
408
|
label: string;
|
|
395
409
|
id?: number | 'All';
|
|
@@ -516,6 +530,17 @@ export declare interface TimerProps {
|
|
|
516
530
|
outerDivClass?: string;
|
|
517
531
|
}
|
|
518
532
|
|
|
533
|
+
export declare const ToggleCard: default_2.ForwardRefExoticComponent<ToggleCardProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
534
|
+
|
|
535
|
+
export declare interface ToggleCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
536
|
+
cardImg?: string;
|
|
537
|
+
onSelectionChange: (event: default_2.ChangeEvent<HTMLInputElement>) => void;
|
|
538
|
+
heading?: string;
|
|
539
|
+
enabled: boolean;
|
|
540
|
+
subHeading?: string;
|
|
541
|
+
htmlId?: string;
|
|
542
|
+
}
|
|
543
|
+
|
|
519
544
|
/**
|
|
520
545
|
* A tooltip component that display a floating tooltip with the `content` on hover of the `trigger` element for desktop
|
|
521
546
|
* and for mobile it displays a popover with the `content` on click of the `trigger` element
|
|
@@ -583,24 +608,6 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
|
|
|
583
608
|
buttonText: string;
|
|
584
609
|
}
|
|
585
610
|
|
|
586
|
-
export declare const TravelList: default_2.ForwardRefExoticComponent<TravelListProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
587
|
-
|
|
588
|
-
export declare const TravelListItem: default_2.ForwardRefExoticComponent<TravelListItemProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
589
|
-
|
|
590
|
-
export declare interface TravelListItemProps {
|
|
591
|
-
title?: string;
|
|
592
|
-
count?: number;
|
|
593
|
-
startDate?: string;
|
|
594
|
-
endDate?: string;
|
|
595
|
-
minBudget?: number;
|
|
596
|
-
maxBudget?: number;
|
|
597
|
-
shareLink?: string;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
export declare interface TravelListProps extends default_2.PropsWithChildren {
|
|
601
|
-
items?: TravelListItemProps[];
|
|
602
|
-
}
|
|
603
|
-
|
|
604
611
|
export declare const TwoColumnDialog: ForwardRefExoticComponent<TwoColumnDialogProps & RefAttributes<HTMLDivElement>>;
|
|
605
612
|
|
|
606
613
|
export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElement> {
|