stp-ui-kit 0.0.70 → 0.0.71
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/components/index.d.ts +5 -1
- package/dist/index.d.ts +2 -10
- package/dist/stp-ui-kit.cjs.js +14 -14
- package/dist/stp-ui-kit.cjs.js.map +1 -1
- package/dist/stp-ui-kit.es.js +550 -520
- package/dist/stp-ui-kit.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Avatar } from './Avatar/Avatar';
|
|
1
2
|
import { Banner } from './Banner/Banner';
|
|
2
3
|
import { Button } from './Button/Button';
|
|
3
4
|
import { Checkbox } from './Checkbox/Checkbox';
|
|
@@ -9,6 +10,8 @@ import { FormItem } from './FormItem/FormItem';
|
|
|
9
10
|
import { IconButton } from './IconButton/IconButton';
|
|
10
11
|
import { InlineError } from './InlineError/InlineError';
|
|
11
12
|
import { Input } from './Input/Input';
|
|
13
|
+
import { TextArea } from './Input/TextArea';
|
|
14
|
+
import { Link } from './Link/Link';
|
|
12
15
|
import { CustomToaster } from './Message/CustomToaster';
|
|
13
16
|
import { message } from './Message/Message';
|
|
14
17
|
import { Modal } from './Modal/Modal';
|
|
@@ -19,9 +22,10 @@ import { ProgressLine } from './ProgressLine/ProgressLine';
|
|
|
19
22
|
import { RadioButton } from './RadioButton/RadioButton';
|
|
20
23
|
import { SectionHeader } from './SectionHeader/SectionHeader';
|
|
21
24
|
import { Select } from './Select/Select';
|
|
25
|
+
import { Spinner } from './Spinner/Spinner';
|
|
22
26
|
import { Cell } from './Table/Cell';
|
|
23
27
|
import { Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow } from './Table/Table';
|
|
24
28
|
import { Tooltip } from './Tooltip/Tooltip';
|
|
25
29
|
import { TopBar } from './TopBar/TopBar';
|
|
26
30
|
import { Typography } from './Typography/Typography';
|
|
27
|
-
export { Banner, Button, Collapse, CourseCollapse, Empty, FormItem, IconButton, Modal, Tooltip, NavigationItem, PageHeader, ProgressLine, SectionHeader, TopBar, Typography, message, CustomToaster, ModalAPI, Table, TableBody, TableHead, TableHeader, TableCaption, TableCell, TableRow, Cell, InlineError, Checkbox, Input, RadioButton, Dropdown, Select, };
|
|
31
|
+
export { Banner, Button, Collapse, CourseCollapse, Empty, FormItem, IconButton, Modal, Tooltip, NavigationItem, PageHeader, ProgressLine, SectionHeader, TopBar, Typography, message, CustomToaster, ModalAPI, Table, TableBody, TableHead, TableHeader, TableCaption, TableCell, TableRow, Cell, InlineError, Checkbox, Input, RadioButton, Dropdown, Select, Spinner, Link, Avatar, TextArea };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
import { Banner, Button, Collapse, CourseCollapse, Empty, FormItem, IconButton, message, Modal, ModalAPI, NavigationItem, PageHeader, ProgressLine, SectionHeader, Select, Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, Tooltip, TopBar, Typography } from './components';
|
|
2
|
-
|
|
3
|
-
import { Dropdown } from './components/Dropdown/Dropdown';
|
|
4
|
-
import { InlineError } from './components/InlineError/InlineError';
|
|
5
|
-
import { Input } from './components/Input/Input';
|
|
6
|
-
import { TextArea } from './components/Input/TextArea';
|
|
7
|
-
import { CustomToaster } from './components/Message/CustomToaster';
|
|
8
|
-
import { RadioButton } from './components/RadioButton/RadioButton';
|
|
9
|
-
import { Cell } from './components/Table/Cell';
|
|
10
|
-
export { Banner, Button, Collapse, CourseCollapse, Empty, FormItem, IconButton, Modal, Tooltip, NavigationItem, PageHeader, ProgressLine, SectionHeader, TopBar, Typography, message, ModalAPI, Table, TableBody, TableHead, TableHeader, TableCaption, TableCell, TableRow, Cell, InlineError, Input, RadioButton, Checkbox, TextArea, CustomToaster, Dropdown, Select, };
|
|
1
|
+
import { Banner, Button, Collapse, CourseCollapse, Empty, FormItem, IconButton, message, Modal, ModalAPI, NavigationItem, PageHeader, ProgressLine, SectionHeader, Select, Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, Tooltip, TopBar, Typography, Avatar, Checkbox, Dropdown, InlineError, Input, TextArea, Link, CustomToaster, RadioButton, Spinner, Cell } from './components';
|
|
2
|
+
export { Banner, Button, Collapse, CourseCollapse, Empty, FormItem, IconButton, Modal, Tooltip, NavigationItem, PageHeader, ProgressLine, SectionHeader, TopBar, Typography, message, ModalAPI, Table, TableBody, TableHead, TableHeader, TableCaption, TableCell, TableRow, Cell, InlineError, Input, RadioButton, Checkbox, TextArea, CustomToaster, Dropdown, Select, Avatar, Link, Spinner, };
|