@foris/avocado-suite 0.8.0 → 0.9.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.
@@ -0,0 +1,2 @@
1
+ declare const Processing: () => JSX.Element;
2
+ export default Processing;
@@ -0,0 +1,15 @@
1
+ import { FC } from 'react';
2
+ interface SkeletonBaseProps {
3
+ /** Overwrite className */
4
+ className?: string;
5
+ /** Set the height of skeleton */
6
+ height?: string | number;
7
+ /** Set a max-width */
8
+ maxWidth?: string | number;
9
+ /** Set radius to skeleton */
10
+ radius?: string | number;
11
+ /** Set the width of skeleton */
12
+ width?: string | number;
13
+ }
14
+ declare const SkeletonBase: FC<SkeletonBaseProps>;
15
+ export default SkeletonBase;
@@ -0,0 +1,9 @@
1
+ import { FC } from 'react';
2
+ interface SkeletonCircleProps {
3
+ /** Overwrite className */
4
+ className?: string;
5
+ /** Set the size of skeleton circle */
6
+ size: number;
7
+ }
8
+ declare const SkeletonCircle: FC<SkeletonCircleProps>;
9
+ export default SkeletonCircle;
@@ -7,16 +7,19 @@ import Checkbox from './components/checkbox/Checkbox';
7
7
  import Divider from './components/divider/Divider';
8
8
  import Heading from './components/heading/Heading';
9
9
  import Link from './components/link/Link';
10
+ import Menu from './components/menu/Menu';
10
11
  import Pager from './components/pager/Pager';
12
+ import Processing from './components/processing/Processing';
11
13
  import RadioButton from './components/radio-button/RadioButton';
12
14
  import RoundButton from './components/round-button/RoundButton';
13
15
  import Select from './components/select/Select';
14
16
  import SelectPagination from './components/select-pagination/SelectPagination';
17
+ import SkeletonBase from './components/skeleton-base/SkeletonBase';
18
+ import SkeletonCircle from './components/skeleton-circle/SkeletonCircle';
15
19
  import Stepper from './components/stepper/Stepper';
16
20
  import Tag from './components/tag/Tag';
17
21
  import Text from './components/text/Text';
18
22
  import TextField from './components/text-field/TextField';
19
23
  import Timer from './components/timer/Timer';
20
24
  import Tooltip from './components/tooltip/Tooltip';
21
- import Menu from './components/menu/Menu';
22
- export { Box, Breadcrumbs, Button, Card, Checkbox, Divider, Heading, Link, Pager, RadioButton, RoundButton, Select, SelectPagination, Stepper, Tag, Text, TextField, ThemeProvider, Timer, Tooltip, Menu };
25
+ export { Box, Breadcrumbs, Button, Card, Checkbox, Divider, Heading, Link, Menu, Pager, Processing, RadioButton, RoundButton, Select, SelectPagination, SkeletonBase, SkeletonCircle, Stepper, Tag, Text, TextField, ThemeProvider, Timer, Tooltip, };