@foris/avocado-suite 0.31.0 → 0.32.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.
@@ -6,6 +6,10 @@ interface LoadingProps {
6
6
  description?: string;
7
7
  /** Title of the loading */
8
8
  title?: string;
9
+ /** Size of the loading */
10
+ size?: 'sm' | 'lg';
11
+ /** Whether the loading is inline */
12
+ inline?: boolean;
9
13
  }
10
14
  declare const Loading: FC<LoadingProps>;
11
15
  export default Loading;
@@ -1,2 +1,6 @@
1
- declare const Spinner: () => JSX.Element;
1
+ import type { FC } from 'react';
2
+ interface SpinnerProps {
3
+ size?: 'sm' | 'lg';
4
+ }
5
+ declare const Spinner: FC<SpinnerProps>;
2
6
  export default Spinner;
package/dist/index.d.ts CHANGED
@@ -55,4 +55,5 @@ export type { BreadcrumbItem } from './components/breadcrumbs/Breadcrumbs';
55
55
  export type { CardNotificationProps } from './components/card-notification/CardNotification';
56
56
  export type { HeadingProps } from './components/heading/Heading';
57
57
  export type { TextProps } from './components/text/Text';
58
+ export type { TextFieldProps } from './components/text-field/TextField';
58
59
  export * from './types/table.types';