design-system-silkhaus 2.2.0-beta.travel-list.7 → 2.2.0-beta.travel-list.9

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.d.ts CHANGED
@@ -214,6 +214,10 @@ export declare const ChevronRightRegularIcon: FC<{
214
214
  className?: string;
215
215
  }>;
216
216
 
217
+ export declare const ClipboardIcon: FC<{
218
+ className?: string;
219
+ }>;
220
+
217
221
  export declare const ClipboardSolidIcon: FC<{
218
222
  className?: string;
219
223
  }>;
@@ -387,6 +391,10 @@ export declare interface LongTermBannerProps {
387
391
  className?: string;
388
392
  }
389
393
 
394
+ export declare const MagnifyGlassIcon: FC<{
395
+ className?: string;
396
+ }>;
397
+
390
398
  export declare const MobileFilterMenu: ForwardRefExoticComponent<MobileFilterMenuProps & RefAttributes<HTMLDivElement>>;
391
399
 
392
400
  export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivElement> {
@@ -413,7 +421,11 @@ export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttrib
413
421
  placeholder?: string;
414
422
  selected?: boolean;
415
423
  setCheckBoxValue?: boolean;
424
+ /**
425
+ * @deprecated use `icon` instead to pass a react node
426
+ */
416
427
  dropdownIcon?: string;
428
+ icon?: React.ReactNode;
417
429
  error?: string;
418
430
  noDataError?: string;
419
431
  }
@@ -433,7 +445,11 @@ export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HT
433
445
  }) => void;
434
446
  placeholder?: string;
435
447
  selected?: boolean;
448
+ /**
449
+ * @deprecated use `icon` instead to pass a react node
450
+ */
436
451
  dropdownIcon?: string;
452
+ icon?: React.ReactNode;
437
453
  error?: string;
438
454
  noDataError?: string;
439
455
  }
@@ -444,10 +460,6 @@ export declare const MoonIcon: FC<{
444
460
  className?: string;
445
461
  }>;
446
462
 
447
- export declare const NoDataIcon: FC<{
448
- className?: string;
449
- }>;
450
-
451
463
  declare interface Option_2 {
452
464
  label: string;
453
465
  id?: number | 'All';