design-system-silkhaus 2.6.3 → 2.8.0
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 +40 -40
- package/dist/index.d.ts +49 -0
- package/dist/index.js +8253 -8058
- package/dist/style.css +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -338,6 +338,10 @@ export declare type DialogV2Props = {
|
|
|
338
338
|
|
|
339
339
|
export declare const DUE_TODAY = "due_today";
|
|
340
340
|
|
|
341
|
+
export declare const FileIcon: FC<{
|
|
342
|
+
className?: string;
|
|
343
|
+
}>;
|
|
344
|
+
|
|
341
345
|
export declare const FilterIcon: FC<{
|
|
342
346
|
className?: string;
|
|
343
347
|
}>;
|
|
@@ -369,6 +373,14 @@ export declare const HandCursorTapIcon: FC<{
|
|
|
369
373
|
className?: string;
|
|
370
374
|
}>;
|
|
371
375
|
|
|
376
|
+
export declare const HelperText: FC<HelperTextProps>;
|
|
377
|
+
|
|
378
|
+
export declare interface HelperTextProps {
|
|
379
|
+
error?: boolean;
|
|
380
|
+
text?: string;
|
|
381
|
+
className?: string;
|
|
382
|
+
}
|
|
383
|
+
|
|
372
384
|
export declare const HouseRegularIcon: FC<{
|
|
373
385
|
className?: string;
|
|
374
386
|
}>;
|
|
@@ -438,6 +450,15 @@ declare interface KeyMapping<SourceKey extends keyof PaymentRadioInputProps, Des
|
|
|
438
450
|
destinationKey: DestinationKey;
|
|
439
451
|
}
|
|
440
452
|
|
|
453
|
+
export declare const Label: FC<LabelProps>;
|
|
454
|
+
|
|
455
|
+
export declare type LabelProps = {
|
|
456
|
+
label: string;
|
|
457
|
+
required?: boolean;
|
|
458
|
+
error?: boolean;
|
|
459
|
+
className?: string;
|
|
460
|
+
};
|
|
461
|
+
|
|
441
462
|
export declare const ListingCard: default_2.ForwardRefExoticComponent<ListingCardProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
442
463
|
|
|
443
464
|
export declare type ListingCardProps = {
|
|
@@ -461,6 +482,10 @@ export declare type ListingCardProps = {
|
|
|
461
482
|
className?: string;
|
|
462
483
|
};
|
|
463
484
|
|
|
485
|
+
export declare const LoadingIcon: FC<{
|
|
486
|
+
className?: string;
|
|
487
|
+
}>;
|
|
488
|
+
|
|
464
489
|
export declare const LocationIcon: FC<{
|
|
465
490
|
className?: string;
|
|
466
491
|
}>;
|
|
@@ -770,12 +795,19 @@ export declare interface ScrollbarProps extends Props {
|
|
|
770
795
|
|
|
771
796
|
export declare const SECURITY_DEPOSIT_REFUND = "security_deposit_refund";
|
|
772
797
|
|
|
798
|
+
export declare const Select: FC<SelectProps>;
|
|
799
|
+
|
|
773
800
|
export declare enum SelectionStateEnum {
|
|
774
801
|
None = "none",
|
|
775
802
|
Selected = "selected",
|
|
776
803
|
Added = "added"
|
|
777
804
|
}
|
|
778
805
|
|
|
806
|
+
export declare type SelectOption = {
|
|
807
|
+
label: ReactNode;
|
|
808
|
+
value: string;
|
|
809
|
+
};
|
|
810
|
+
|
|
779
811
|
export declare const SelectPopover: ForwardRefExoticComponent<SelectPopoverProps & RefAttributes<HTMLDivElement>>;
|
|
780
812
|
|
|
781
813
|
export declare interface SelectPopoverProps {
|
|
@@ -792,6 +824,19 @@ export declare interface SelectPopoverProps {
|
|
|
792
824
|
handleClose?: () => void;
|
|
793
825
|
}
|
|
794
826
|
|
|
827
|
+
export declare type SelectProps = {
|
|
828
|
+
label?: string;
|
|
829
|
+
options: Array<SelectOption>;
|
|
830
|
+
value?: string;
|
|
831
|
+
onChange: (value: string) => void;
|
|
832
|
+
error?: boolean;
|
|
833
|
+
className?: string;
|
|
834
|
+
required?: boolean;
|
|
835
|
+
placeholder?: string;
|
|
836
|
+
helperText?: string;
|
|
837
|
+
disabled?: boolean;
|
|
838
|
+
};
|
|
839
|
+
|
|
795
840
|
export declare const ShareIcon: FC<{
|
|
796
841
|
className?: string;
|
|
797
842
|
}>;
|
|
@@ -1017,6 +1062,10 @@ export declare interface TravelListProps extends default_2.PropsWithChildren {
|
|
|
1017
1062
|
hideEdit?: boolean;
|
|
1018
1063
|
}
|
|
1019
1064
|
|
|
1065
|
+
export declare const TriangleDownIcon: FC<{
|
|
1066
|
+
className?: string;
|
|
1067
|
+
}>;
|
|
1068
|
+
|
|
1020
1069
|
export declare const TwoColumnDialog: ForwardRefExoticComponent<TwoColumnDialogProps & RefAttributes<HTMLDivElement>>;
|
|
1021
1070
|
|
|
1022
1071
|
export declare interface TwoColumnDialogProps extends HTMLAttributes<HTMLDivElement> {
|