design-system-silkhaus 1.3.0-beta.toaster.2 → 2.1.0-beta.travel-list.1
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 +37 -4
- package/dist/index.js +7379 -7334
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -128,6 +128,32 @@ export declare interface ButtonProps extends default_2.ButtonHTMLAttributes<HTML
|
|
|
128
128
|
disabled?: true | false;
|
|
129
129
|
startIcon?: default_2.ReactNode;
|
|
130
130
|
endIcon?: default_2.ReactNode;
|
|
131
|
+
selected?: boolean;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export declare const ButtonsGroupSelector: default_2.ForwardRefExoticComponent<ButtonsGroupSelectorProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
135
|
+
|
|
136
|
+
export declare interface ButtonsGroupSelectorProps extends HTMLAttributes<HTMLDivElement> {
|
|
137
|
+
label?: string;
|
|
138
|
+
value?: Array<{
|
|
139
|
+
label: string;
|
|
140
|
+
value: string;
|
|
141
|
+
}>;
|
|
142
|
+
options: Array<{
|
|
143
|
+
label: string;
|
|
144
|
+
value: string;
|
|
145
|
+
}>;
|
|
146
|
+
onSelectionChange?: (selected: Array<{
|
|
147
|
+
label: string;
|
|
148
|
+
value: string;
|
|
149
|
+
}>) => void;
|
|
150
|
+
placeholder?: string;
|
|
151
|
+
selected?: boolean;
|
|
152
|
+
isMultiSelect?: boolean;
|
|
153
|
+
noDataError?: string;
|
|
154
|
+
minWidthButton?: string;
|
|
155
|
+
buttonWidth?: string;
|
|
156
|
+
minSelectionError?: string;
|
|
131
157
|
}
|
|
132
158
|
|
|
133
159
|
export declare const Card: React_2.ForwardRefExoticComponent<CardProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -247,10 +273,6 @@ export declare const HandCursorTapIcon: FC<{
|
|
|
247
273
|
className?: string;
|
|
248
274
|
}>;
|
|
249
275
|
|
|
250
|
-
export declare const HomeIcon: FC<{
|
|
251
|
-
className?: string;
|
|
252
|
-
}>;
|
|
253
|
-
|
|
254
276
|
export declare const HouseRegularIcon: FC<{
|
|
255
277
|
className?: string;
|
|
256
278
|
}>;
|
|
@@ -524,6 +546,17 @@ export declare const ToastContainer: FC<ToastContainerProps>;
|
|
|
524
546
|
|
|
525
547
|
export declare type ToastContainerProps = ToastContainerProps_2;
|
|
526
548
|
|
|
549
|
+
export declare const ToggleCard: default_2.ForwardRefExoticComponent<ToggleCardProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
550
|
+
|
|
551
|
+
export declare interface ToggleCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
552
|
+
cardImg?: string;
|
|
553
|
+
onSelectionChange: (event: default_2.ChangeEvent<HTMLInputElement>) => void;
|
|
554
|
+
heading?: string;
|
|
555
|
+
enabled: boolean;
|
|
556
|
+
subHeading?: string;
|
|
557
|
+
htmlId?: string;
|
|
558
|
+
}
|
|
559
|
+
|
|
527
560
|
/**
|
|
528
561
|
* A tooltip component that display a floating tooltip with the `content` on hover of the `trigger` element for desktop
|
|
529
562
|
* and for mobile it displays a popover with the `content` on click of the `trigger` element
|