design-system-silkhaus 1.1.0-beta.weekly-cleaning.3 → 1.2.0-beta.weekly-cleaning.4
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 +9 -24
- package/dist/index.cjs +141 -43
- package/dist/index.d.ts +66 -1
- package/dist/index.js +16118 -11241
- package/dist/style.css +1 -1
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -242,6 +242,10 @@ export declare interface DialogProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
242
242
|
open: boolean;
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
+
export declare const FilterIcon: FC<{
|
|
246
|
+
className?: string;
|
|
247
|
+
}>;
|
|
248
|
+
|
|
245
249
|
export declare const Grid: React_2.ForwardRefExoticComponent<GridProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
246
250
|
|
|
247
251
|
export declare interface GridProps extends React_2.HTMLAttributes<HTMLDivElement>, Omit<GridVariantProps, 'optional'> {
|
|
@@ -291,11 +295,26 @@ export declare interface InputProps extends default_2.InputHTMLAttributes<HTMLIn
|
|
|
291
295
|
textarea?: true | false | undefined;
|
|
292
296
|
label?: string | undefined;
|
|
293
297
|
caption?: string | undefined;
|
|
294
|
-
color
|
|
298
|
+
color?: 'primary' | 'success' | 'error' | 'primaryRounded' | 'errorRounded' | 'disabled';
|
|
295
299
|
required?: boolean;
|
|
296
300
|
labelClass?: string | undefined;
|
|
297
301
|
InputDivClass?: string | undefined;
|
|
298
302
|
captionClass?: string | undefined;
|
|
303
|
+
startAdornment?: default_2.ReactNode;
|
|
304
|
+
endAdornment?: default_2.ReactNode;
|
|
305
|
+
min?: number;
|
|
306
|
+
max?: number;
|
|
307
|
+
value?: string | number;
|
|
308
|
+
/**
|
|
309
|
+
* When `true`, only numbers can be entered. Any other input will be ignored
|
|
310
|
+
* When min and max are set, the entered value is set to min when less than min and max when greater than max
|
|
311
|
+
*/
|
|
312
|
+
isNumbersOnly?: boolean;
|
|
313
|
+
/**
|
|
314
|
+
* When `isNumbersOnly` is `true`, entered value might be modified depending on min and max.
|
|
315
|
+
* While `onChange` will you give what the user enters, `onNumberUpdate` will give the final modified value
|
|
316
|
+
*/
|
|
317
|
+
onNumberUpdate?: (val: number | '') => void;
|
|
299
318
|
}
|
|
300
319
|
|
|
301
320
|
export declare const ListingCard: default_2.ForwardRefExoticComponent<ListingCardProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -381,16 +400,58 @@ export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HT
|
|
|
381
400
|
|
|
382
401
|
export declare const MobileTootip: FC<PropsWithChildren<TooltipProps>>;
|
|
383
402
|
|
|
403
|
+
export declare const MoonIcon: FC<{
|
|
404
|
+
className?: string;
|
|
405
|
+
}>;
|
|
406
|
+
|
|
384
407
|
declare interface Option_2 {
|
|
385
408
|
label: string;
|
|
386
409
|
id?: number | 'All';
|
|
387
410
|
}
|
|
388
411
|
export { Option_2 as Option }
|
|
389
412
|
|
|
413
|
+
export declare const PriceRangeSlider: default_2.FC<PriceRangeSliderProps>;
|
|
414
|
+
|
|
415
|
+
export declare interface PriceRangeSliderProps {
|
|
416
|
+
className?: string;
|
|
417
|
+
min?: number;
|
|
418
|
+
max: number;
|
|
419
|
+
step?: number;
|
|
420
|
+
/**
|
|
421
|
+
* This is called everytime the input field value changes
|
|
422
|
+
*/
|
|
423
|
+
onInputChange?: (value: [number | string, number | string]) => void;
|
|
424
|
+
/**
|
|
425
|
+
* This is called when the slider value changes either through the slider
|
|
426
|
+
* or the input fields. This is only called after handling internally for any non numeric characters.
|
|
427
|
+
* Which means the value will either contain a number or empty string.
|
|
428
|
+
*/
|
|
429
|
+
onPriceRangeChange?: (value: [number | '', number | '']) => void;
|
|
430
|
+
currency?: string;
|
|
431
|
+
value?: [number | '', number | ''];
|
|
432
|
+
}
|
|
433
|
+
|
|
390
434
|
export declare const QuestionMarkIcon: FC<{
|
|
391
435
|
className?: string;
|
|
392
436
|
}>;
|
|
393
437
|
|
|
438
|
+
export declare const RangeSlider: default_2.FC<RangeSliderProps>;
|
|
439
|
+
|
|
440
|
+
export declare interface RangeSliderProps {
|
|
441
|
+
value?: [number, number];
|
|
442
|
+
onChange?: (value: [number, number]) => void;
|
|
443
|
+
step?: number;
|
|
444
|
+
className?: string;
|
|
445
|
+
disabled?: boolean;
|
|
446
|
+
min?: number;
|
|
447
|
+
max?: number;
|
|
448
|
+
tooltip?: boolean;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
export declare const RoundedPriceIcon: FC<{
|
|
452
|
+
className?: string;
|
|
453
|
+
}>;
|
|
454
|
+
|
|
394
455
|
export declare const RoundedProgressBar: default_2.ForwardRefExoticComponent<RoundedProgressBarProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
395
456
|
|
|
396
457
|
export declare interface RoundedProgressBarProps {
|
|
@@ -419,6 +480,10 @@ export declare type SlickImageCarouselProps = {
|
|
|
419
480
|
onClick?: () => void;
|
|
420
481
|
};
|
|
421
482
|
|
|
483
|
+
export declare const SotringIcon: FC<{
|
|
484
|
+
className?: string;
|
|
485
|
+
}>;
|
|
486
|
+
|
|
422
487
|
export declare const StarLineIcon: FC<{
|
|
423
488
|
className?: string;
|
|
424
489
|
}>;
|