design-system-silkhaus 2.2.0-beta.travel-list.7 → 2.2.0-beta.travel-list.8
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 +38 -38
- package/dist/index.d.ts +12 -0
- package/dist/index.js +7439 -7411
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -387,6 +387,10 @@ export declare interface LongTermBannerProps {
|
|
|
387
387
|
className?: string;
|
|
388
388
|
}
|
|
389
389
|
|
|
390
|
+
export declare const MagnifyGlassIcon: FC<{
|
|
391
|
+
className?: string;
|
|
392
|
+
}>;
|
|
393
|
+
|
|
390
394
|
export declare const MobileFilterMenu: ForwardRefExoticComponent<MobileFilterMenuProps & RefAttributes<HTMLDivElement>>;
|
|
391
395
|
|
|
392
396
|
export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -413,7 +417,11 @@ export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttrib
|
|
|
413
417
|
placeholder?: string;
|
|
414
418
|
selected?: boolean;
|
|
415
419
|
setCheckBoxValue?: boolean;
|
|
420
|
+
/**
|
|
421
|
+
* @deprecated use `icon` instead to pass a react node
|
|
422
|
+
*/
|
|
416
423
|
dropdownIcon?: string;
|
|
424
|
+
icon?: React.ReactNode;
|
|
417
425
|
error?: string;
|
|
418
426
|
noDataError?: string;
|
|
419
427
|
}
|
|
@@ -433,7 +441,11 @@ export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HT
|
|
|
433
441
|
}) => void;
|
|
434
442
|
placeholder?: string;
|
|
435
443
|
selected?: boolean;
|
|
444
|
+
/**
|
|
445
|
+
* @deprecated use `icon` instead to pass a react node
|
|
446
|
+
*/
|
|
436
447
|
dropdownIcon?: string;
|
|
448
|
+
icon?: React.ReactNode;
|
|
437
449
|
error?: string;
|
|
438
450
|
noDataError?: string;
|
|
439
451
|
}
|