rds-ui-system 2.28.0 → 2.30.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.
@@ -9,5 +9,6 @@ export interface FilterChipProps extends ButtonHTMLAttributes<HTMLButtonElement>
9
9
  variant?: FilterChipVariant;
10
10
  onClick?: MouseEventHandler<HTMLButtonElement>;
11
11
  className?: string;
12
+ hideIcon?: boolean;
12
13
  }
13
14
  export declare const FilterChip: import('react').ForwardRefExoticComponent<FilterChipProps & import('react').RefAttributes<HTMLButtonElement>>;
@@ -12,5 +12,6 @@ export interface ModalProps extends ButtonHTMLAttributes<HTMLButtonElement> {
12
12
  onClick?: () => void;
13
13
  className?: string;
14
14
  headline?: string;
15
+ open: boolean;
15
16
  }
16
17
  export declare const Modal: import('react').ForwardRefExoticComponent<ModalProps & import('react').RefAttributes<HTMLDivElement>>;
@@ -25,5 +25,6 @@ export interface MultiSelectProps extends HTMLAttributes<HTMLDivElement> {
25
25
  className?: string;
26
26
  clearSearchValue?: boolean;
27
27
  onSearchEnter?: () => void;
28
+ classNameChips?: string;
28
29
  }
29
30
  export declare const MultiSelect: import('react').ForwardRefExoticComponent<MultiSelectProps & import('react').RefAttributes<HTMLDivElement>>;