@aivenio/aquarium 1.60.0 → 1.60.1

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, 28 Feb 2024 10:58:11 GMT
3
+ // Generated on Wed, 28 Feb 2024 12:35:26 GMT
4
4
 
5
5
  $border-radius-none: 0px !default;
6
6
  $border-radius-sm: 0.125rem !default;
@@ -5,7 +5,7 @@ export declare type CheckboxProps = Omit<React.DetailedHTMLProps<React.InputHTML
5
5
  value?: string;
6
6
  indeterminate?: boolean;
7
7
  };
8
- export declare const Checkbox: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "name" | "type" | "value" | "id"> & {
8
+ export declare const Checkbox: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "name" | "id" | "type" | "value"> & {
9
9
  id?: string | undefined;
10
10
  name?: string | undefined;
11
11
  value?: string | undefined;
@@ -4,7 +4,7 @@ export declare type RadioButtonProps = Omit<React.DetailedHTMLProps<React.InputH
4
4
  name?: string;
5
5
  value: string;
6
6
  };
7
- export declare const RadioButton: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "name" | "type" | "value" | "id"> & {
7
+ export declare const RadioButton: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "name" | "id" | "type" | "value"> & {
8
8
  id?: string | undefined;
9
9
  name?: string | undefined;
10
10
  value: string;
@@ -4,7 +4,7 @@ export declare type SwitchProps = Omit<React.DetailedHTMLProps<React.InputHTMLAt
4
4
  name?: string;
5
5
  value?: string;
6
6
  };
7
- export declare const Switch: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "name" | "type" | "value" | "id"> & {
7
+ export declare const Switch: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "name" | "id" | "type" | "value"> & {
8
8
  id?: string | undefined;
9
9
  name?: string | undefined;
10
10
  value?: string | undefined;
@@ -26,11 +26,11 @@ declare type Props = {
26
26
  };
27
27
  export declare type BoxProps<C extends React.ElementType = 'div'> = ElementProps<C> & Props & TailwindifyProps<Props>;
28
28
  export declare const Box: {
29
- <C extends React.ElementType<any, keyof React.JSX.IntrinsicElements> = "div">({ style, color, borderColor, borderRadius, borderWidth, justifyContent, justifySelf, alignContent, alignItems, alignSelf, flexDirection, flexWrap, flex, grow, shrink, display, padding, paddingX, paddingY, paddingTop, paddingRight, paddingBottom, paddingLeft, margin, marginX, marginY, marginTop, marginRight, marginBottom, marginLeft, backgroundColor, width, height, maxWidth, maxHeight, minWidth, minHeight, gap, colGap, rowGap, ...rest }: BoxProps<C>): JSX.Element;
29
+ <C extends React.ElementType<any> = "div">({ style, color, borderColor, borderRadius, borderWidth, justifyContent, justifySelf, alignContent, alignItems, alignSelf, flexDirection, flexWrap, flex, grow, shrink, display, padding, paddingX, paddingY, paddingTop, paddingRight, paddingBottom, paddingLeft, margin, marginX, marginY, marginTop, marginRight, marginBottom, marginLeft, backgroundColor, width, height, maxWidth, maxHeight, minWidth, minHeight, gap, colGap, rowGap, ...rest }: BoxProps<C>): JSX.Element;
30
30
  Flex: {
31
- <C_1 extends React.ElementType<any, keyof React.JSX.IntrinsicElements> = "div">(props: BoxProps<C_1>): React.JSX.Element;
31
+ <C_1 extends React.ElementType<any> = "div">(props: BoxProps<C_1>): React.JSX.Element;
32
32
  displayName: string;
33
33
  };
34
34
  };
35
- export declare const BorderBox: React.ComponentType<BoxProps<React.ElementType<any, keyof React.JSX.IntrinsicElements>>>;
35
+ export declare const BorderBox: React.ComponentType<BoxProps<React.ElementType<any>>>;
36
36
  export {};
@@ -14,7 +14,7 @@ export declare type DefaultButtonProps = BaseActionType & {
14
14
  };
15
15
  declare type ButtonComponentProps<ElementType extends React.ElementType = 'button', Props = unknown> = DefaultButtonProps & Omit<React.ComponentPropsWithoutRef<ElementType>, keyof (DefaultButtonProps & Props)> & Props;
16
16
  declare type ButtonComponent<ElementType extends React.ElementType = 'button', Props = unknown, T extends HTMLElement = HTMLButtonElement> = React.ForwardRefExoticComponent<React.PropsWithoutRef<ButtonComponentProps<ElementType, Props>> & React.RefAttributes<T>>;
17
- export declare const asButton: <ElementType extends React.ElementType<any, keyof React.JSX.IntrinsicElements> = "button", Props = unknown, T extends HTMLElement = HTMLButtonElement>(Component: React.ElementType<any, keyof React.JSX.IntrinsicElements>, isDropdownButton?: boolean) => ButtonComponent<ElementType, Props, T>;
17
+ export declare const asButton: <ElementType extends React.ElementType<any> = "button", Props = unknown, T extends HTMLElement = HTMLButtonElement>(Component: React.ElementType<any>, isDropdownButton?: boolean) => ButtonComponent<ElementType, Props, T>;
18
18
  declare type ComposedButtonProps = {
19
19
  Primary: typeof PrimaryButton;
20
20
  Secondary: typeof SecondaryButton;
@@ -6,5 +6,5 @@ declare type PolymorphicComponentProps<C extends React.ElementType, Props = unkn
6
6
  component?: C;
7
7
  }>;
8
8
  export declare type ElementProps<C extends React.ElementType = 'div'> = PolymorphicComponentProps<C>;
9
- export declare const Element: <C extends React.ElementType<any, keyof React.JSX.IntrinsicElements> = "div">({ component, ...rest }: ElementProps<C>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
9
+ export declare const Element: <C extends React.ElementType<any> = "div">({ component, ...rest }: ElementProps<C>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
10
10
  export {};