stp-ui-kit 0.0.52 → 0.0.53
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/stp-ui-kit.es.js +369 -368
- 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 { BaseInputWrapper } from './Input/BaseInputWrapper';
|
|
1
2
|
import { Banner } from './Banner/Banner';
|
|
2
3
|
import { Button } from './Button/Button';
|
|
3
4
|
import { Checkbox } from './Checkbox/Checkbox';
|
|
@@ -23,4 +24,4 @@ import { Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, Tabl
|
|
|
23
24
|
import { Tooltip } from './Tooltip/Tooltip';
|
|
24
25
|
import { TopBar } from './TopBar/TopBar';
|
|
25
26
|
import { Typography } from './Typography/Typography';
|
|
26
|
-
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, };
|
|
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, BaseInputWrapper };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BaseInputWrapper } from './components/Input/BaseInputWrapper';
|
|
1
2
|
import { Banner, Button, Collapse, CourseCollapse, Empty, FormItem, IconButton, message, Modal, ModalAPI, NavigationItem, PageHeader, ProgressLine, SectionHeader, Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, Tooltip, TopBar, Typography } from './components';
|
|
2
3
|
import { Checkbox } from './components/Checkbox/Checkbox';
|
|
3
4
|
import { Dropdown } from './components/Dropdown/Dropdown';
|
|
@@ -7,4 +8,4 @@ import { TextArea } from './components/Input/TextArea';
|
|
|
7
8
|
import { CustomToaster } from './components/Message/CustomToaster';
|
|
8
9
|
import { RadioButton } from './components/RadioButton/RadioButton';
|
|
9
10
|
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, };
|
|
11
|
+
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, BaseInputWrapper };
|