design-system-silkhaus 0.0.86-beta.1 → 0.0.86-beta.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 +29 -29
- package/dist/index.d.ts +54 -0
- package/dist/index.js +7024 -6801
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -208,6 +208,60 @@ export declare interface LongTermBannerProps {
|
|
|
208
208
|
className?: string;
|
|
209
209
|
}
|
|
210
210
|
|
|
211
|
+
export declare const MobileFilterMenu: default_2.ForwardRefExoticComponent<MobileFilterMenuProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
212
|
+
|
|
213
|
+
export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivElement> {
|
|
214
|
+
show: boolean;
|
|
215
|
+
handleClose?: () => void;
|
|
216
|
+
staticBackdrop?: boolean;
|
|
217
|
+
filterHeader?: string;
|
|
218
|
+
filterDescription?: string;
|
|
219
|
+
closeIcon?: string;
|
|
220
|
+
animation?: 'slideDown' | 'slideUp' | 'fadeIn' | 'none';
|
|
221
|
+
isSecondary?: boolean;
|
|
222
|
+
backgroundImage?: string;
|
|
223
|
+
marginTop?: string;
|
|
224
|
+
maxWidth?: string;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export declare const MobileMultiSelectFilterDropDown: default_2.ForwardRefExoticComponent<MobileMultiSelectFilterDropDownProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
228
|
+
|
|
229
|
+
export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
230
|
+
label?: string;
|
|
231
|
+
value?: Array<{
|
|
232
|
+
label: string;
|
|
233
|
+
}>;
|
|
234
|
+
options: Array<{
|
|
235
|
+
label: string;
|
|
236
|
+
}>;
|
|
237
|
+
onSelectionChange?: (selected: Array<{
|
|
238
|
+
label: string;
|
|
239
|
+
}>) => void;
|
|
240
|
+
placeholder?: string;
|
|
241
|
+
selected?: boolean;
|
|
242
|
+
setCheckBoxValue?: boolean;
|
|
243
|
+
dropdownIcon?: string;
|
|
244
|
+
error?: string;
|
|
245
|
+
noDataError?: string;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
export declare const MobileSelectCardDropDown: default_2.ForwardRefExoticComponent<MobileSelectCardDropDownProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
249
|
+
|
|
250
|
+
export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
251
|
+
label?: string;
|
|
252
|
+
value?: string;
|
|
253
|
+
options: {
|
|
254
|
+
imgUrl: string;
|
|
255
|
+
label: string;
|
|
256
|
+
}[];
|
|
257
|
+
onSelectionChange?: (selected: unknown) => void;
|
|
258
|
+
placeholder?: string;
|
|
259
|
+
selected?: boolean;
|
|
260
|
+
dropdownIcon?: string;
|
|
261
|
+
error?: string;
|
|
262
|
+
noDataError?: string;
|
|
263
|
+
}
|
|
264
|
+
|
|
211
265
|
export declare const RoundedProgressBar: default_2.ForwardRefExoticComponent<RoundedProgressBarProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
212
266
|
|
|
213
267
|
export declare interface RoundedProgressBarProps {
|