@foris/avocado-suite 0.33.1 → 0.33.3

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,5 +1,5 @@
1
1
  import { FC } from 'react';
2
- interface DividerProps {
2
+ export interface DividerProps {
3
3
  /** Overwrite className */
4
4
  className?: string;
5
5
  /** Disabled state */
@@ -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
@@ -52,8 +52,10 @@ export { Weekly, WeeklyGroup, Accordion, Box, Breadcrumbs, Button, Card, CardNot
52
52
  export type { ButtonProps } from './components/button/Button';
53
53
  export type { BreadcrumbItem } from './components/breadcrumbs/Breadcrumbs';
54
54
  export type { CardNotificationProps } from './components/card-notification/CardNotification';
55
+ export type { DividerProps } from './components/divider/Divider';
55
56
  export type { HeadingProps } from './components/heading/Heading';
56
57
  export type { MenuItem } from './types/menu.types';
58
+ export type { RoundButtonProps } from './components/round-button/RoundButton';
57
59
  export type { SelectProps } from './components/select/Select';
58
60
  export type { TextFieldProps } from './components/text-field/TextField';
59
61
  export type { TextProps } from './components/text/Text';
@@ -38,7 +38,7 @@ export interface TableColumn {
38
38
  /**
39
39
  * Accessor for the column data.
40
40
  */
41
- accesor?: string;
41
+ accessor?: string;
42
42
  /**
43
43
  * Options specific to desktop view for the column.
44
44
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foris/avocado-suite",
3
- "version": "0.33.1",
3
+ "version": "0.33.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -26,8 +26,8 @@
26
26
  "react-select-async-paginate": "0.7.3",
27
27
  "react-toastify": "9.0.3",
28
28
  "zustand": "4.5.4",
29
- "@foris/avocado-core": "0.10.0",
30
- "@foris/avocado-icons": "1.14.0"
29
+ "@foris/avocado-icons": "1.14.0",
30
+ "@foris/avocado-core": "0.10.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@testing-library/jest-dom": "6.4.0",