@goodhood-web/ui 1.8.0-development.12 → 1.8.0-development.13
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 +3 -1
- package/index.js +29 -29
- package/index.mjs +2157 -2079
- package/lib/ButtonSecondary/ButtonSecondary.d.ts +4 -0
- package/lib/ButtonSecondary/ButtonSecondary.types.d.ts +12 -0
- package/lib/ButtonTertiary/ButtonTertiary.d.ts +4 -0
- package/lib/ButtonTertiary/ButtonTertiary.types.d.ts +12 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ import { default as BadgeLabel } from './lib/BadgeLabel/BadgeLabel';
|
|
|
6
6
|
import { default as BottomSheet } from './lib/BottomSheet/BottomSheet';
|
|
7
7
|
import { default as Button } from './lib/Button/Button';
|
|
8
8
|
import { default as ButtonPrimary } from './lib/ButtonPrimary/ButtonPrimary';
|
|
9
|
+
import { default as ButtonSecondary } from './lib/ButtonSecondary/ButtonSecondary';
|
|
10
|
+
import { default as ButtonTertiary } from './lib/ButtonTertiary/ButtonTertiary';
|
|
9
11
|
import { default as Card } from './lib/Card/Card';
|
|
10
12
|
import { default as CardBody } from './lib/Card/CardBody/CardBody';
|
|
11
13
|
import { default as CardHeader } from './lib/Card/CardHeader/CardHeader';
|
|
@@ -47,4 +49,4 @@ import { default as Toggle } from './lib/Toggle/Toggle';
|
|
|
47
49
|
import { default as ToggleInput } from './lib/ToggleInput/ToggleInput';
|
|
48
50
|
import { default as Typography } from './lib/Typography/Typography';
|
|
49
51
|
|
|
50
|
-
export { Accordion, AccordionItem, Badge, BadgeIcon, BadgeLabel, BottomSheet, Button, ButtonPrimary, Card, CardBody, CardHeader, Divider, EmptyState, FeedItemCategory, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Modal, NavBar, NavItem, Notice, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, Sheet, Snackbar, Sticker, TextArea, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Tile, Toggle, ToggleInput, Typography, };
|
|
52
|
+
export { Accordion, AccordionItem, Badge, BadgeIcon, BadgeLabel, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, Divider, EmptyState, FeedItemCategory, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Modal, NavBar, NavItem, Notice, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, Sheet, Snackbar, Sticker, TextArea, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Tile, Toggle, ToggleInput, Typography, };
|