@foris/avocado-suite 0.19.1 → 0.20.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/avocado-suite.es.js +3465 -3404
- package/dist/avocado-suite.umd.js +105 -105
- package/dist/components/card-notification/CardNotification.d.ts +7 -13
- package/dist/components/loading/Loading.d.ts +11 -0
- package/dist/components/loading/Loading.test.d.ts +0 -0
- package/dist/components/loading/components/spinner/Spinner.d.ts +2 -0
- package/dist/index.d.ts +2 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
@@ -1,5 +1,4 @@
|
|
1
|
-
import { ReactElement } from 'react';
|
2
|
-
import { FC } from 'react';
|
1
|
+
import type { FC, ReactElement, ReactNode } from 'react';
|
3
2
|
declare enum NotificationState {
|
4
3
|
Warning = "warning",
|
5
4
|
Error = "error",
|
@@ -7,21 +6,16 @@ declare enum NotificationState {
|
|
7
6
|
Success = "success"
|
8
7
|
}
|
9
8
|
interface CardNotificationProps {
|
10
|
-
/**
|
11
|
-
|
12
|
-
/** Outlined variant */
|
13
|
-
outlined?: boolean;
|
9
|
+
/** Content card notification */
|
10
|
+
children?: ReactNode | string;
|
14
11
|
/** Overwrite className */
|
15
12
|
className?: string;
|
13
|
+
/** Outlined variant */
|
14
|
+
outlined?: boolean;
|
15
|
+
/** State or variant of the notification */
|
16
|
+
state: `${NotificationState}`;
|
16
17
|
/** Title of the notification */
|
17
18
|
title: ReactElement | string;
|
18
|
-
/** Description of the notification */
|
19
|
-
description?: ReactElement | string;
|
20
|
-
/** Action of the notification */
|
21
|
-
action?: {
|
22
|
-
text: string;
|
23
|
-
onClick: () => void;
|
24
|
-
};
|
25
19
|
}
|
26
20
|
declare const CardNotification: FC<CardNotificationProps>;
|
27
21
|
export default CardNotification;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import type { FC } from 'react';
|
2
|
+
interface LoadingProps {
|
3
|
+
/** Overwrite className */
|
4
|
+
className?: string;
|
5
|
+
/** Description of the loading */
|
6
|
+
description?: string;
|
7
|
+
/** Title of the loading */
|
8
|
+
title?: string;
|
9
|
+
}
|
10
|
+
declare const Loading: FC<LoadingProps>;
|
11
|
+
export default Loading;
|
File without changes
|
package/dist/index.d.ts
CHANGED
@@ -18,6 +18,7 @@ import DonutLegend from './components/donut/donut-legend/DonutLegend';
|
|
18
18
|
import DropdownButton from './components/dropdown-button/DropdownButton';
|
19
19
|
import Heading from './components/heading/Heading';
|
20
20
|
import Link from './components/link/Link';
|
21
|
+
import Loading from './components/loading/Loading';
|
21
22
|
import Menu from './components/menu/Menu';
|
22
23
|
import Pager from './components/pager/Pager';
|
23
24
|
import Pill from './components/Pill/Pill';
|
@@ -38,7 +39,7 @@ import TextField from './components/text-field/TextField';
|
|
38
39
|
import Timer from './components/timer/Timer';
|
39
40
|
import Toaster from './components/toaster/Toaster';
|
40
41
|
import Tooltip from './components/tooltip/Tooltip';
|
41
|
-
export { Box, Breadcrumbs, Button, Card, CardNotification, Checkbox, DataTable, DatePicker, Divider, Donut, DonutLabels, DonutLegend, DropdownButton, Heading, Link, Menu, Pager, Pill, Processing, ProgressBar, RadioButton, RoundButton, Select, SelectPagination, SkeletonBase, SkeletonCircle, Stepper, Switch, Tabs, Tag, Text, TextField, ThemeProvider, ThemeStore, Timer, Toaster, Tooltip, };
|
42
|
+
export { Box, Breadcrumbs, Button, Card, CardNotification, Checkbox, DataTable, DatePicker, Divider, Donut, DonutLabels, DonutLegend, DropdownButton, Heading, Link, Loading, Menu, Pager, Pill, Processing, ProgressBar, RadioButton, RoundButton, Select, SelectPagination, SkeletonBase, SkeletonCircle, Stepper, Switch, Tabs, Tag, Text, TextField, ThemeProvider, ThemeStore, Timer, Toaster, Tooltip, };
|
42
43
|
/**
|
43
44
|
* Types
|
44
45
|
*/
|