@goodhood-web/ui 1.5.0-development.1 → 1.5.0-development.2
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 +32 -31
- package/index.js +11 -11
- package/index.mjs +78 -76
- package/lib/Accordion/Accordion.d.ts +1 -0
- package/lib/Accordion/Accordion.types.d.ts +1 -0
- package/lib/Accordion/AccordionItem.d.ts +1 -0
- package/lib/Accordion/AccordionItem.types.d.ts +1 -0
- package/lib/BaseButton/BaseButton.d.ts +2 -1
- package/lib/Button/Button.d.ts +1 -0
- package/lib/Button/Button.types.d.ts +2 -1
- package/lib/ButtonPrimary/ButtonPrimary.d.ts +1 -0
- package/lib/ButtonPrimary/ButtonPrimary.types.d.ts +2 -1
- package/lib/Card/Card.d.ts +1 -0
- package/lib/Card/Card.types.d.ts +3 -2
- package/lib/Card/CardBody/CardBody.d.ts +1 -0
- package/lib/Card/CardBody/CardBody.types.d.ts +1 -0
- package/lib/Card/CardHeader/CardHeader.d.ts +2 -1
- package/lib/Card/CardHeader/CardHeader.type.d.ts +6 -4
- package/lib/Divider/Divider.d.ts +1 -0
- package/lib/Fieldset/Fieldset.d.ts +1 -0
- package/lib/Fieldset/Fieldset.types.d.ts +1 -0
- package/lib/Form/Form.d.ts +1 -0
- package/lib/Form/Form.types.d.ts +1 -0
- package/lib/Icon/Icon.d.ts +2 -1
- package/lib/Icon/Icon.types.d.ts +3 -2
- package/lib/Icon/icons/24x24/index.d.ts +42 -42
- package/lib/Icon/icons/32x32/index.d.ts +88 -88
- package/lib/Icon/icons/index.d.ts +130 -130
- package/lib/IconButton/IconButton.d.ts +2 -1
- package/lib/IconButton/IconButton.types.d.ts +3 -1
- package/lib/Image/Image.d.ts +1 -0
- package/lib/LabelPill/LabelPill.d.ts +1 -0
- package/lib/Legend/Legend.d.ts +1 -0
- package/lib/MenuItem/MenuItem.d.ts +1 -0
- package/lib/MenuItem/MenuItem.types.d.ts +2 -1
- package/lib/Modal/Backdrop/Backdrop.d.ts +2 -1
- package/lib/Modal/Modal.d.ts +1 -0
- package/lib/Modal/Modal.types.d.ts +3 -2
- package/lib/NavBar/NavBar.d.ts +1 -0
- package/lib/NavBar/NavBar.types.d.ts +1 -0
- package/lib/NavBar/NavItem/NavItem.d.ts +1 -0
- package/lib/NavBar/NavItem/NavItem.types.d.ts +2 -1
- package/lib/NotificationBubble/NotificationBubble.d.ts +1 -0
- package/lib/NotificationBubble/NotificationBubble.types.d.ts +1 -0
- package/lib/PlaceholderThumbnail/PlaceholderThumbnail.d.ts +1 -0
- package/lib/PlaceholderThumbnail/PlaceholderThumbnail.type.d.ts +1 -1
- package/lib/Popup/Popup.d.ts +1 -0
- package/lib/Popup/Popup.types.d.ts +2 -1
- package/lib/TextButton/TextButton.d.ts +1 -0
- package/lib/TextButton/TextButton.types.d.ts +4 -3
- package/lib/TextInput/TextInput.d.ts +1 -0
- package/lib/TextInput/TextInput.types.d.ts +2 -1
- package/lib/Thumbnail/Thumbnail.d.ts +1 -0
- package/lib/Thumbnail/Thumbnail.type.d.ts +1 -0
- package/lib/Toggle/Toggle.d.ts +1 -0
- package/lib/Toggle/Toggle.types.d.ts +1 -0
- package/lib/ToggleInput/ToggleInput.d.ts +1 -0
- package/lib/ToggleInput/ToggleInput.types.d.ts +2 -1
- package/lib/Typography/Typography.d.ts +1 -0
- package/lib/Typography/Typography.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/utils/index.d.ts +1 -0
package/index.d.ts
CHANGED
|
@@ -1,32 +1,33 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import Legend from './lib/Legend/Legend';
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import
|
|
1
|
+
import { default as Typography } from './lib/Typography/Typography';
|
|
2
|
+
import { default as ToggleInput } from './lib/ToggleInput/ToggleInput';
|
|
3
|
+
import { default as Toggle } from './lib/Toggle/Toggle';
|
|
4
|
+
import { default as Thumbnail } from './lib/Thumbnail/Thumbnail';
|
|
5
|
+
import { default as TextInput } from './lib/TextInput/TextInput';
|
|
6
|
+
import { default as TextButton } from './lib/TextButton/TextButton';
|
|
7
|
+
import { default as Popup } from './lib/Popup/Popup';
|
|
8
|
+
import { default as PlaceholderThumbnail } from './lib/PlaceholderThumbnail/PlaceholderThumbnail';
|
|
9
|
+
import { default as NotificationBubble } from './lib/NotificationBubble/NotificationBubble';
|
|
10
|
+
import { default as NavItem } from './lib/NavBar/NavItem/NavItem';
|
|
11
|
+
import { default as NavBar } from './lib/NavBar/NavBar';
|
|
12
|
+
import { default as Modal } from './lib/Modal/Modal';
|
|
13
|
+
import { default as MenuItem } from './lib/MenuItem/MenuItem';
|
|
14
|
+
import { default as Markdown } from './lib/Markdown/Markdown';
|
|
15
|
+
import { default as Loader } from './lib/Loader/Loader';
|
|
16
|
+
import { default as Legend } from './lib/Legend/Legend';
|
|
17
|
+
import { default as LabelPill } from './lib/LabelPill/LabelPill';
|
|
18
|
+
import { default as Image } from './lib/Image/Image';
|
|
19
|
+
import { default as IconButton } from './lib/IconButton/IconButton';
|
|
20
|
+
import { default as Icon } from './lib/Icon/Icon';
|
|
21
|
+
import { default as Form } from './lib/Form/Form';
|
|
22
|
+
import { default as Fieldset } from './lib/Fieldset/Fieldset';
|
|
23
|
+
import { default as Divider } from './lib/Divider/Divider';
|
|
24
|
+
import { default as CardHeader } from './lib/Card/CardHeader/CardHeader';
|
|
25
|
+
import { default as CardBody } from './lib/Card/CardBody/CardBody';
|
|
26
|
+
import { default as Card } from './lib/Card/Card';
|
|
27
|
+
import { default as ButtonPrimary } from './lib/ButtonPrimary/ButtonPrimary';
|
|
28
|
+
import { default as Button } from './lib/Button/Button';
|
|
29
|
+
import { default as BaseButton } from './lib/BaseButton/BaseButton';
|
|
30
|
+
import { default as AccordionItem } from './lib/Accordion/AccordionItem';
|
|
31
|
+
import { default as Accordion } from './lib/Accordion/Accordion';
|
|
32
|
+
|
|
32
33
|
export { Accordion, AccordionItem, BaseButton, Button, ButtonPrimary, Card, CardBody, CardHeader, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Modal, NavBar, NavItem, NotificationBubble, PlaceholderThumbnail, Popup, TextButton, TextInput, Thumbnail, Toggle, ToggleInput, Typography, };
|