@goodhood-web/ui 1.6.0-development.33 → 1.6.0-development.35
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/index.d.ts +7 -1
- package/index.js +44 -42
- package/index.mjs +3606 -2423
- package/lib/Select/Select.d.ts +1 -1
- package/lib/TextArea/TextArea.d.ts +4 -0
- package/lib/TextArea/TextArea.types.d.ts +12 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { default as Accordion } from './lib/Accordion/Accordion';
|
|
2
2
|
import { default as AccordionItem } from './lib/Accordion/AccordionItem';
|
|
3
|
+
import { default as Badge } from './lib/Badge/Badge';
|
|
4
|
+
import { default as BadgeIcon } from './lib/BadgeIcon/BadgeIcon';
|
|
5
|
+
import { default as BadgeLabel } from './lib/BadgeLabel/BadgeLabel';
|
|
3
6
|
import { default as Button } from './lib/Button/Button';
|
|
4
7
|
import { default as ButtonPrimary } from './lib/ButtonPrimary/ButtonPrimary';
|
|
5
8
|
import { default as Card } from './lib/Card/Card';
|
|
@@ -25,12 +28,15 @@ import { default as PlaceholderThumbnail } from './lib/PlaceholderThumbnail/Plac
|
|
|
25
28
|
import { default as Popup } from './lib/Popup/Popup';
|
|
26
29
|
import { default as RadioButton } from './lib/RadioButton/RadioButton';
|
|
27
30
|
import { default as RadioButtonCluster } from './lib/RadioButtonCluster/RadioButtonCluster';
|
|
31
|
+
import { default as Select } from './lib/Select/Select';
|
|
28
32
|
import { default as Sticker } from './lib/Sticker/Sticker';
|
|
33
|
+
import { default as TextArea } from './lib/TextArea/TextArea';
|
|
29
34
|
import { default as TextButton } from './lib/TextButton/TextButton';
|
|
30
35
|
import { default as TextInput } from './lib/TextInput/TextInput';
|
|
31
36
|
import { default as Thumbnail } from './lib/Thumbnail/Thumbnail';
|
|
37
|
+
import { default as Tile } from './lib/Tile/Tile';
|
|
32
38
|
import { default as Toggle } from './lib/Toggle/Toggle';
|
|
33
39
|
import { default as ToggleInput } from './lib/ToggleInput/ToggleInput';
|
|
34
40
|
import { default as Typography } from './lib/Typography/Typography';
|
|
35
41
|
|
|
36
|
-
export { Accordion, AccordionItem, Button, ButtonPrimary, Card, CardBody, CardHeader, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Modal, NavBar, NavItem, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Sticker, TextButton, TextInput, Thumbnail, Toggle, ToggleInput, Typography, };
|
|
42
|
+
export { Accordion, AccordionItem, Badge, BadgeIcon, BadgeLabel, Button, ButtonPrimary, Card, CardBody, CardHeader, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Modal, NavBar, NavItem, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, Sticker, TextArea, TextButton, TextInput, Thumbnail, Tile, Toggle, ToggleInput, Typography, };
|