design-system-silkhaus 1.1.0-beta.slider-input.3 → 1.1.0-beta.slider-input.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/README.md +3 -2
- package/dist/index.cjs +46 -67
- package/dist/index.d.ts +47 -10
- package/dist/index.js +20857 -20144
- package/dist/style.css +1 -1
- package/package.json +59 -45
package/dist/index.d.ts
CHANGED
|
@@ -138,7 +138,7 @@ export declare const CardFooter: React_2.ForwardRefExoticComponent<React_2.HTMLA
|
|
|
138
138
|
|
|
139
139
|
export declare const CardHeader: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
|
|
140
140
|
|
|
141
|
-
declare interface CardProps extends React_2.HTMLAttributes<HTMLDivElement>, CardVariantProps {
|
|
141
|
+
export declare interface CardProps extends React_2.HTMLAttributes<HTMLDivElement>, CardVariantProps {
|
|
142
142
|
asChild?: boolean;
|
|
143
143
|
as?: string;
|
|
144
144
|
}
|
|
@@ -151,6 +151,15 @@ declare const cardVariants: (props?: ({
|
|
|
151
151
|
cardType?: "default" | "shadowCard" | null | undefined;
|
|
152
152
|
} & ClassProp) | undefined) => string;
|
|
153
153
|
|
|
154
|
+
export declare const Checkbox: default_2.ForwardRefExoticComponent<CheckboxProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
155
|
+
|
|
156
|
+
export declare interface CheckboxProps extends HTMLAttributes<HTMLDivElement> {
|
|
157
|
+
isChecked: boolean;
|
|
158
|
+
onSelectionChange: () => void;
|
|
159
|
+
label: string;
|
|
160
|
+
onClick?: (e: default_2.MouseEvent) => void;
|
|
161
|
+
}
|
|
162
|
+
|
|
154
163
|
export declare const ChevronLeftRegularIcon: FC<{
|
|
155
164
|
className?: string;
|
|
156
165
|
}>;
|
|
@@ -201,12 +210,16 @@ declare interface DateRangePickerProps {
|
|
|
201
210
|
|
|
202
211
|
export declare const DesktopTooltip: FC<PropsWithChildren<TooltipProps>>;
|
|
203
212
|
|
|
204
|
-
export declare const Dialog:
|
|
213
|
+
export declare const Dialog: ForwardRefExoticComponent<DialogProps & RefAttributes<HTMLDivElement>>;
|
|
205
214
|
|
|
206
215
|
export declare interface DialogProps extends HTMLAttributes<HTMLDivElement> {
|
|
207
216
|
open: boolean;
|
|
208
217
|
}
|
|
209
218
|
|
|
219
|
+
export declare const FilterIcon: FC<{
|
|
220
|
+
className?: string;
|
|
221
|
+
}>;
|
|
222
|
+
|
|
210
223
|
export declare const Grid: React_2.ForwardRefExoticComponent<GridProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
211
224
|
|
|
212
225
|
export declare interface GridProps extends React_2.HTMLAttributes<HTMLDivElement>, Omit<GridVariantProps, 'optional'> {
|
|
@@ -308,7 +321,7 @@ export declare interface LongTermBannerProps {
|
|
|
308
321
|
className?: string;
|
|
309
322
|
}
|
|
310
323
|
|
|
311
|
-
export declare const MobileFilterMenu:
|
|
324
|
+
export declare const MobileFilterMenu: ForwardRefExoticComponent<MobileFilterMenuProps & RefAttributes<HTMLDivElement>>;
|
|
312
325
|
|
|
313
326
|
export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivElement> {
|
|
314
327
|
show: boolean;
|
|
@@ -317,14 +330,14 @@ export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivEle
|
|
|
317
330
|
filterHeader?: string;
|
|
318
331
|
filterDescription?: string;
|
|
319
332
|
closeIcon?: string;
|
|
320
|
-
animation?: 'slideDown' | 'slideUp' | 'fadeIn'
|
|
333
|
+
animation?: 'slideDown' | 'slideUp' | 'fadeIn';
|
|
321
334
|
isSecondary?: boolean;
|
|
322
335
|
backgroundImage?: string;
|
|
323
336
|
marginTop?: string;
|
|
324
337
|
maxWidth?: string;
|
|
325
338
|
}
|
|
326
339
|
|
|
327
|
-
export declare const MobileMultiSelectFilterDropDown:
|
|
340
|
+
export declare const MobileMultiSelectFilterDropDown: ForwardRefExoticComponent<MobileMultiSelectFilterDropDownProps & RefAttributes<HTMLDivElement>>;
|
|
328
341
|
|
|
329
342
|
export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
330
343
|
label?: string;
|
|
@@ -339,7 +352,7 @@ export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttrib
|
|
|
339
352
|
noDataError?: string;
|
|
340
353
|
}
|
|
341
354
|
|
|
342
|
-
export declare const MobileSelectCardDropDown:
|
|
355
|
+
export declare const MobileSelectCardDropDown: ForwardRefExoticComponent<MobileSelectCardDropDownProps & RefAttributes<HTMLDivElement>>;
|
|
343
356
|
|
|
344
357
|
export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
345
358
|
label?: string;
|
|
@@ -348,7 +361,10 @@ export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HT
|
|
|
348
361
|
imgUrl: string;
|
|
349
362
|
label: string;
|
|
350
363
|
}[];
|
|
351
|
-
onSelectionChange?: (selected:
|
|
364
|
+
onSelectionChange?: (selected: {
|
|
365
|
+
imgUrl: string;
|
|
366
|
+
label: string;
|
|
367
|
+
}) => void;
|
|
352
368
|
placeholder?: string;
|
|
353
369
|
selected?: boolean;
|
|
354
370
|
dropdownIcon?: string;
|
|
@@ -358,10 +374,15 @@ export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HT
|
|
|
358
374
|
|
|
359
375
|
export declare const MobileTootip: FC<PropsWithChildren<TooltipProps>>;
|
|
360
376
|
|
|
377
|
+
export declare const MoonIcon: FC<{
|
|
378
|
+
className?: string;
|
|
379
|
+
}>;
|
|
380
|
+
|
|
361
381
|
declare interface Option_2 {
|
|
362
382
|
label: string;
|
|
363
|
-
id?: number;
|
|
383
|
+
id?: number | 'All';
|
|
364
384
|
}
|
|
385
|
+
export { Option_2 as Option }
|
|
365
386
|
|
|
366
387
|
export declare const PriceRangeSlider: default_2.FC<PriceRangeSliderProps>;
|
|
367
388
|
|
|
@@ -401,6 +422,10 @@ export declare interface RangeSliderProps {
|
|
|
401
422
|
tooltip?: boolean;
|
|
402
423
|
}
|
|
403
424
|
|
|
425
|
+
export declare const RoundedPriceIcon: FC<{
|
|
426
|
+
className?: string;
|
|
427
|
+
}>;
|
|
428
|
+
|
|
404
429
|
export declare const RoundedProgressBar: default_2.ForwardRefExoticComponent<RoundedProgressBarProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
405
430
|
|
|
406
431
|
export declare interface RoundedProgressBarProps {
|
|
@@ -417,6 +442,8 @@ export declare const RulerRegularIcon: FC<{
|
|
|
417
442
|
className?: string;
|
|
418
443
|
}>;
|
|
419
444
|
|
|
445
|
+
export declare type ScreenSize = 'mobile' | 'tablet' | 'desktop';
|
|
446
|
+
|
|
420
447
|
export declare const SlickImageCarousel: default_2.ForwardRefExoticComponent<SlickImageCarouselProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
421
448
|
|
|
422
449
|
export declare type SlickImageCarouselProps = {
|
|
@@ -427,6 +454,10 @@ export declare type SlickImageCarouselProps = {
|
|
|
427
454
|
onClick?: () => void;
|
|
428
455
|
};
|
|
429
456
|
|
|
457
|
+
export declare const SotringIcon: FC<{
|
|
458
|
+
className?: string;
|
|
459
|
+
}>;
|
|
460
|
+
|
|
430
461
|
export declare const StarLineIcon: FC<{
|
|
431
462
|
className?: string;
|
|
432
463
|
}>;
|
|
@@ -528,7 +559,7 @@ export declare interface TopNavBarProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
528
559
|
direction?: 'marquee--left' | 'marquee--right' | 'marquee--up' | 'marquee--down';
|
|
529
560
|
}
|
|
530
561
|
|
|
531
|
-
export declare const TopNavContainerMobile:
|
|
562
|
+
export declare const TopNavContainerMobile: ForwardRefExoticComponent<TopNavContainerMobileProps & RefAttributes<HTMLDivElement>>;
|
|
532
563
|
|
|
533
564
|
export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLDivElement> {
|
|
534
565
|
img: string;
|
|
@@ -540,7 +571,7 @@ export declare interface TopNavContainerMobileProps extends HTMLAttributes<HTMLD
|
|
|
540
571
|
buttonText: string;
|
|
541
572
|
}
|
|
542
573
|
|
|
543
|
-
export declare const TwoColumnDialog:
|
|
574
|
+
export declare const TwoColumnDialog: ForwardRefExoticComponent<TwoColumnDialogProps & RefAttributes<HTMLDivElement>>;
|
|
544
575
|
|
|
545
576
|
export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElement> {
|
|
546
577
|
img: string;
|
|
@@ -551,4 +582,10 @@ export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElem
|
|
|
551
582
|
buttonText: string;
|
|
552
583
|
}
|
|
553
584
|
|
|
585
|
+
export declare const useDocumentSize: () => {
|
|
586
|
+
documentWidth: number;
|
|
587
|
+
documentHeight: number;
|
|
588
|
+
screenSize: "mobile" | "tablet" | "desktop";
|
|
589
|
+
};
|
|
590
|
+
|
|
554
591
|
export { }
|