@foris/avocado-suite 0.33.0 → 0.33.2
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/avocado-suite.es.js +1579 -1572
- package/dist/avocado-suite.umd.js +24 -18
- package/dist/components/round-button/RoundButton.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/types/table.types.d.ts +1 -1
- package/package.json +2 -2
@@ -1,7 +1,7 @@
|
|
1
1
|
import { FC } from 'react';
|
2
2
|
import { ButtonVariant, ButtonSize } from '../button/Button';
|
3
3
|
import { IconTypes } from '../../../../avocado-icons';
|
4
|
-
interface RoundButtonProps extends Partial<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>> {
|
4
|
+
export interface RoundButtonProps extends Partial<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>> {
|
5
5
|
/** Overwrite className */
|
6
6
|
className?: string;
|
7
7
|
/** Disabled state */
|
package/dist/index.d.ts
CHANGED
@@ -54,6 +54,7 @@ export type { BreadcrumbItem } from './components/breadcrumbs/Breadcrumbs';
|
|
54
54
|
export type { CardNotificationProps } from './components/card-notification/CardNotification';
|
55
55
|
export type { HeadingProps } from './components/heading/Heading';
|
56
56
|
export type { MenuItem } from './types/menu.types';
|
57
|
+
export type { RoundButtonProps } from './components/round-button/RoundButton';
|
57
58
|
export type { SelectProps } from './components/select/Select';
|
58
59
|
export type { TextFieldProps } from './components/text-field/TextField';
|
59
60
|
export type { TextProps } from './components/text/Text';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@foris/avocado-suite",
|
3
|
-
"version": "0.33.
|
3
|
+
"version": "0.33.2",
|
4
4
|
"publishConfig": {
|
5
5
|
"access": "public"
|
6
6
|
},
|
@@ -27,7 +27,7 @@
|
|
27
27
|
"react-toastify": "9.0.3",
|
28
28
|
"zustand": "4.5.4",
|
29
29
|
"@foris/avocado-core": "0.10.0",
|
30
|
-
"@foris/avocado-icons": "1.
|
30
|
+
"@foris/avocado-icons": "1.14.0"
|
31
31
|
},
|
32
32
|
"devDependencies": {
|
33
33
|
"@testing-library/jest-dom": "6.4.0",
|