@aivenio/aquarium 1.67.0-rc1 → 1.67.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.
Files changed (30) hide show
  1. package/dist/_variables.scss +2 -2
  2. package/dist/src/atoms/Checkbox/Checkbox.d.ts +1 -1
  3. package/dist/src/atoms/RadioButton/RadioButton.d.ts +1 -1
  4. package/dist/src/atoms/Switch/Switch.d.ts +1 -1
  5. package/dist/src/molecules/Banner/Banner.d.ts +1 -1
  6. package/dist/src/molecules/Button/Button.d.ts +9 -9
  7. package/dist/tsconfig.module.tsbuildinfo +1 -1
  8. package/package.json +2 -2
  9. package/dist/tailwind/tailwind.backgroundColor.d.ts +0 -43
  10. package/dist/tailwind/tailwind.backgroundColor.js +0 -44
  11. package/dist/tailwind/tailwind.borderColor.d.ts +0 -44
  12. package/dist/tailwind/tailwind.borderColor.js +0 -32
  13. package/dist/tailwind/tailwind.borderRadius.d.ts +0 -1
  14. package/dist/tailwind/tailwind.borderRadius.js +0 -5
  15. package/dist/tailwind/tailwind.colors.d.ts +0 -102
  16. package/dist/tailwind/tailwind.colors.js +0 -106
  17. package/dist/tailwind/tailwind.elevations.d.ts +0 -8
  18. package/dist/tailwind/tailwind.elevations.js +0 -9
  19. package/dist/tailwind/tailwind.margin.d.ts +0 -22
  20. package/dist/tailwind/tailwind.margin.js +0 -23
  21. package/dist/tailwind/tailwind.spacing.d.ts +0 -21
  22. package/dist/tailwind/tailwind.spacing.js +0 -22
  23. package/dist/tailwind/tailwind.textColor.d.ts +0 -56
  24. package/dist/tailwind/tailwind.textColor.js +0 -39
  25. package/dist/tailwind/tailwind.typography.d.ts +0 -14
  26. package/dist/tailwind/tailwind.typography.js +0 -15
  27. package/dist/tailwind/textColor.d.ts +0 -219
  28. package/dist/tailwind/textColor.js +0 -651
  29. package/dist/tailwind/typography.d.ts +0 -219
  30. package/dist/tailwind/typography.js +0 -651
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Wed, 22 May 2024 07:31:01 GMT
3
+ // Generated on Wed, 22 May 2024 13:00:37 GMT
4
4
 
5
5
  $border-radius-none: 0px !default;
6
6
  $border-radius-sm: 0.125rem !default;
@@ -242,4 +242,4 @@ $text-color-warning-intense: var(--aquarium-colors-warning-100) !default;
242
242
  $text-color-danger-inactive: var(--aquarium-colors-error-10) !default;
243
243
  $text-color-danger-muted: var(--aquarium-colors-error-20) !default;
244
244
  $text-color-danger-default: var(--aquarium-colors-error-50) !default;
245
- $text-color-danger-intense: var(--aquarium-colors-error-80) !default;
245
+ $text-color-danger-intense: var(--aquarium-colors-error-80) !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>, "id" | "name" | "type" | "ref" | "value"> & {
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>, "id" | "name" | "type" | "ref" | "value"> & {
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>, "id" | "name" | "type" | "ref" | "value"> & {
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;
@@ -53,7 +53,7 @@ export declare type BannerProps = {
53
53
  * @returns React.ReactElement
54
54
  */
55
55
  export declare const Banner: React.FC<React.PropsWithChildren<BannerProps>>;
56
- export declare const OneLineBanner: React.FC<React.PropsWithChildren<Omit<BannerProps, "title" | "layout"> & {
56
+ export declare const OneLineBanner: React.FC<React.PropsWithChildren<Omit<BannerProps, "layout" | "title"> & {
57
57
  title?: string | undefined;
58
58
  }>>;
59
59
  export {};
@@ -44,7 +44,7 @@ export declare const PrimaryButton: React.ForwardRefExoticComponent<Omit<Omit<Ba
44
44
  */
45
45
  UNSAFE_className?: string | undefined;
46
46
  'aria-label'?: string | undefined;
47
- } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "aria-label" | "dense" | "kind" | keyof BaseActionType | "fullWidth" | "loading" | "UNSAFE_className"> & React.RefAttributes<HTMLButtonElement>, "kind">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
47
+ } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "dense" | "kind" | "aria-label" | "loading" | "UNSAFE_className" | keyof BaseActionType | "fullWidth"> & React.RefAttributes<HTMLButtonElement>, "kind">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
48
48
  /**
49
49
  * @deprecated Use `<Button.Secondary>` instead
50
50
  */
@@ -58,7 +58,7 @@ export declare const SecondaryButton: React.ForwardRefExoticComponent<Omit<Omit<
58
58
  */
59
59
  UNSAFE_className?: string | undefined;
60
60
  'aria-label'?: string | undefined;
61
- } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "aria-label" | "dense" | "kind" | keyof BaseActionType | "fullWidth" | "loading" | "UNSAFE_className"> & React.RefAttributes<HTMLButtonElement>, "kind">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
61
+ } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "dense" | "kind" | "aria-label" | "loading" | "UNSAFE_className" | keyof BaseActionType | "fullWidth"> & React.RefAttributes<HTMLButtonElement>, "kind">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
62
62
  /**
63
63
  * @deprecated Use `<Button.Ghost>` instead
64
64
  */
@@ -72,7 +72,7 @@ export declare const GhostButton: React.ForwardRefExoticComponent<Omit<Omit<Base
72
72
  */
73
73
  UNSAFE_className?: string | undefined;
74
74
  'aria-label'?: string | undefined;
75
- } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "aria-label" | "dense" | "kind" | keyof BaseActionType | "fullWidth" | "loading" | "UNSAFE_className"> & React.RefAttributes<HTMLButtonElement>, "kind">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
75
+ } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "dense" | "kind" | "aria-label" | "loading" | "UNSAFE_className" | keyof BaseActionType | "fullWidth"> & React.RefAttributes<HTMLButtonElement>, "kind">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
76
76
  /**
77
77
  * @deprecated Use `<Button.SecondaryGhost>` instead
78
78
  */
@@ -86,7 +86,7 @@ export declare const SecondaryGhostButton: React.ForwardRefExoticComponent<Omit<
86
86
  */
87
87
  UNSAFE_className?: string | undefined;
88
88
  'aria-label'?: string | undefined;
89
- } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "aria-label" | "dense" | "kind" | keyof BaseActionType | "fullWidth" | "loading" | "UNSAFE_className"> & React.RefAttributes<HTMLButtonElement>, "kind">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
89
+ } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "dense" | "kind" | "aria-label" | "loading" | "UNSAFE_className" | keyof BaseActionType | "fullWidth"> & React.RefAttributes<HTMLButtonElement>, "kind">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
90
90
  /**
91
91
  * @deprecated Use `<Button.Text>` instead
92
92
  */
@@ -100,7 +100,7 @@ export declare const TextButton: React.ForwardRefExoticComponent<Omit<Omit<BaseA
100
100
  */
101
101
  UNSAFE_className?: string | undefined;
102
102
  'aria-label'?: string | undefined;
103
- } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "aria-label" | "dense" | "kind" | keyof BaseActionType | "fullWidth" | "loading" | "UNSAFE_className"> & React.RefAttributes<HTMLButtonElement>, "icon" | "dense" | "kind" | "iconPlacement" | "fullWidth" | "loading">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
103
+ } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "dense" | "kind" | "aria-label" | "loading" | "UNSAFE_className" | keyof BaseActionType | "fullWidth"> & React.RefAttributes<HTMLButtonElement>, "dense" | "icon" | "kind" | "loading" | "iconPlacement" | "fullWidth">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
104
104
  /**
105
105
  * @deprecated Use `<Button.Icon>` instead
106
106
  */
@@ -114,7 +114,7 @@ export declare const IconButton: React.ForwardRefExoticComponent<Omit<Omit<BaseA
114
114
  */
115
115
  UNSAFE_className?: string | undefined;
116
116
  'aria-label'?: string | undefined;
117
- } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "aria-label" | "dense" | "kind" | keyof BaseActionType | "fullWidth" | "loading" | "UNSAFE_className"> & React.RefAttributes<HTMLButtonElement>, "kind" | "iconPlacement" | "fullWidth" | "loading">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
117
+ } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "dense" | "kind" | "aria-label" | "loading" | "UNSAFE_className" | keyof BaseActionType | "fullWidth"> & React.RefAttributes<HTMLButtonElement>, "kind" | "loading" | "iconPlacement" | "fullWidth">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
118
118
  export declare type ExternalLinkButtonProps = ButtonComponentProps<'a', Partial<React.AnchorHTMLAttributes<HTMLAnchorElement>>>;
119
119
  /**
120
120
  * @deprecated Use `<Button.ExternalLink>` instead
@@ -144,7 +144,7 @@ export declare const PrimaryDropdownButton: React.ForwardRefExoticComponent<Base
144
144
  */
145
145
  UNSAFE_className?: string | undefined;
146
146
  'aria-label'?: string | undefined;
147
- } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "aria-label" | "onFocus" | "onClick" | "dense" | "kind" | keyof BaseActionType | "fullWidth" | "loading" | "UNSAFE_className"> & Pick<React.ButtonHTMLAttributes<HTMLButtonElement>, "onFocus" | "onClick"> & React.RefAttributes<HTMLButtonElement>>;
147
+ } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "dense" | "kind" | "aria-label" | "onFocus" | "onClick" | "loading" | "UNSAFE_className" | keyof BaseActionType | "fullWidth"> & Pick<React.ButtonHTMLAttributes<HTMLButtonElement>, "onFocus" | "onClick"> & React.RefAttributes<HTMLButtonElement>>;
148
148
  export declare type SecondaryDropdownButtonProps = PrimaryDropdownButtonProps;
149
149
  /**
150
150
  * @deprecated Use `<Button.SecondaryDropdown>` instead
@@ -159,7 +159,7 @@ export declare const SecondaryDropdownButton: React.ForwardRefExoticComponent<Ba
159
159
  */
160
160
  UNSAFE_className?: string | undefined;
161
161
  'aria-label'?: string | undefined;
162
- } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "aria-label" | "onFocus" | "onClick" | "dense" | "kind" | keyof BaseActionType | "fullWidth" | "loading" | "UNSAFE_className"> & Pick<React.ButtonHTMLAttributes<HTMLButtonElement>, "onFocus" | "onClick"> & React.RefAttributes<HTMLButtonElement>>;
162
+ } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "dense" | "kind" | "aria-label" | "onFocus" | "onClick" | "loading" | "UNSAFE_className" | keyof BaseActionType | "fullWidth"> & Pick<React.ButtonHTMLAttributes<HTMLButtonElement>, "onFocus" | "onClick"> & React.RefAttributes<HTMLButtonElement>>;
163
163
  declare const GhostDropdownButton: React.ForwardRefExoticComponent<BaseActionType & {
164
164
  kind?: ButtonKind | undefined;
165
165
  fullWidth?: boolean | undefined;
@@ -170,5 +170,5 @@ declare const GhostDropdownButton: React.ForwardRefExoticComponent<BaseActionTyp
170
170
  */
171
171
  UNSAFE_className?: string | undefined;
172
172
  'aria-label'?: string | undefined;
173
- } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "aria-label" | "onFocus" | "onClick" | "dense" | "kind" | keyof BaseActionType | "fullWidth" | "loading" | "UNSAFE_className"> & Pick<React.ButtonHTMLAttributes<HTMLButtonElement>, "onFocus" | "onClick"> & React.RefAttributes<HTMLButtonElement>>;
173
+ } & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "dense" | "kind" | "aria-label" | "onFocus" | "onClick" | "loading" | "UNSAFE_className" | keyof BaseActionType | "fullWidth"> & Pick<React.ButtonHTMLAttributes<HTMLButtonElement>, "onFocus" | "onClick"> & React.RefAttributes<HTMLButtonElement>>;
174
174
  export {};