@aivenio/aquarium 1.26.0-rc1 → 1.26.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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Wed, 21 Jun 2023 05:16:31 GMT
3
+ // Generated on Wed, 21 Jun 2023 13:23:46 GMT
4
4
 
5
5
  $border-radius-none: 0px !default;
6
6
  $border-radius-sm: 0.125rem !default;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Wed, 21 Jun 2023 05:16:32 GMT
3
+ // Generated on Wed, 21 Jun 2023 13:23:47 GMT
4
4
 
5
5
  $border-radius-none: 0px;
6
6
  $border-radius-sm: 0.125rem;
@@ -6,12 +6,12 @@ export declare type OptionGroup<T extends OptionType | string> = {
6
6
  label: string;
7
7
  options: T[];
8
8
  };
9
- declare type OptionRendererItemProps = Record<string, unknown> & {
9
+ export declare type OptionRendererItemProps = Record<string, unknown> & {
10
10
  disabled: boolean;
11
11
  highlighted: boolean;
12
12
  value: string;
13
13
  };
14
- declare type OptionRendererStateProps<T extends OptionType | string> = {
14
+ export declare type OptionRendererStateProps<T extends OptionType | string> = {
15
15
  selectedItem: T | null;
16
16
  closeMenu: () => void;
17
17
  selectOption: (opt: T) => void;