design-system-silkhaus 0.0.88-beta.slider-input.1 → 0.0.88-beta.slider-input.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 +52 -49
- package/dist/index.d.ts +34 -9
- package/dist/index.js +16131 -11579
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -290,8 +290,10 @@ export declare type ListingCardProps = {
|
|
|
290
290
|
tags: TagProps[];
|
|
291
291
|
amenityTags?: TagProps[];
|
|
292
292
|
price: string;
|
|
293
|
+
slashedPrice?: string;
|
|
293
294
|
isMonthlyPrice: boolean;
|
|
294
295
|
totalPrice: string;
|
|
296
|
+
slashedTotalPrice?: string;
|
|
295
297
|
onClick: () => void;
|
|
296
298
|
};
|
|
297
299
|
|
|
@@ -326,15 +328,9 @@ export declare const MobileMultiSelectFilterDropDown: default_2.ForwardRefExotic
|
|
|
326
328
|
|
|
327
329
|
export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
328
330
|
label?: string;
|
|
329
|
-
value?: Array<
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
options: Array<{
|
|
333
|
-
label: string;
|
|
334
|
-
}>;
|
|
335
|
-
onSelectionChange?: (selected: Array<{
|
|
336
|
-
label: string;
|
|
337
|
-
}>) => void;
|
|
331
|
+
value?: Array<Option_2>;
|
|
332
|
+
options: Array<Option_2>;
|
|
333
|
+
onSelectionChange?: (selected: Array<Option_2>) => void;
|
|
338
334
|
placeholder?: string;
|
|
339
335
|
selected?: boolean;
|
|
340
336
|
setCheckBoxValue?: boolean;
|
|
@@ -362,10 +358,39 @@ export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HT
|
|
|
362
358
|
|
|
363
359
|
export declare const MobileTootip: FC<PropsWithChildren<TooltipProps>>;
|
|
364
360
|
|
|
361
|
+
declare interface Option_2 {
|
|
362
|
+
label: string;
|
|
363
|
+
id?: number;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
export declare const PriceRangeSlider: default_2.FC<PriceRangeSliderProps>;
|
|
367
|
+
|
|
368
|
+
export declare interface PriceRangeSliderProps {
|
|
369
|
+
className?: string;
|
|
370
|
+
min?: number;
|
|
371
|
+
max: number;
|
|
372
|
+
step?: number;
|
|
373
|
+
onChange?: (value: [number, number]) => void;
|
|
374
|
+
currency?: string;
|
|
375
|
+
}
|
|
376
|
+
|
|
365
377
|
export declare const QuestionMarkIcon: FC<{
|
|
366
378
|
className?: string;
|
|
367
379
|
}>;
|
|
368
380
|
|
|
381
|
+
export declare const RangeSlider: default_2.FC<RangeSliderProps>;
|
|
382
|
+
|
|
383
|
+
export declare interface RangeSliderProps {
|
|
384
|
+
value?: [number, number];
|
|
385
|
+
onChange?: (value: [number, number]) => void;
|
|
386
|
+
step?: number;
|
|
387
|
+
className?: string;
|
|
388
|
+
disabled?: boolean;
|
|
389
|
+
min?: number;
|
|
390
|
+
max?: number;
|
|
391
|
+
tooltip?: boolean;
|
|
392
|
+
}
|
|
393
|
+
|
|
369
394
|
export declare const RoundedProgressBar: default_2.ForwardRefExoticComponent<RoundedProgressBarProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
370
395
|
|
|
371
396
|
export declare interface RoundedProgressBarProps {
|