@goodhood-web/ui 4.11.0-development.1 → 4.11.0-development.3
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 +2 -1
- package/index.js +34 -34
- package/index.mjs +3349 -3337
- package/lib/Atoms/PageLoadingSpinner/PageLoadingSpinner.d.ts +2 -0
- package/lib/Molecules/Selections/RadioButtonCluster/RadioButtonCluster.types.d.ts +3 -2
- package/lib/Molecules/Selections/SwitcherToggle/SwitcherToggle.d.ts +1 -1
- package/lib/Molecules/Selections/SwitcherToggle/SwitcherToggle.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ import { default as LogoBadgeSpacious } from './lib/Atoms/Logos/logo_badge/spaci
|
|
|
56
56
|
import { default as LogoTextHorizontal } from './lib/Atoms/Logos/logo_text/horizontal.svg?react';
|
|
57
57
|
import { default as LogoTextVertical } from './lib/Atoms/Logos/logo_text/vertical.svg?react';
|
|
58
58
|
import { default as NotificationBubble } from './lib/Atoms/NotificationBubble/NotificationBubble';
|
|
59
|
+
import { default as PageLoadingSpinner } from './lib/Atoms/PageLoadingSpinner/PageLoadingSpinner';
|
|
59
60
|
import { default as CarouselIndicator } from './lib/Atoms/Progress/CarouselIndicator/CarouselIndicator';
|
|
60
61
|
import { default as ProgressBar } from './lib/Atoms/Progress/ProgressBar/ProgressBar';
|
|
61
62
|
import { default as SelectablePill } from './lib/Atoms/Selectables/SelectablePill/SelectablePill';
|
|
@@ -91,4 +92,4 @@ import { default as Modal } from './lib/Organisms/Modals/Modal/Modal';
|
|
|
91
92
|
import { default as Popup } from './lib/Organisms/Modals/Popup/Popup';
|
|
92
93
|
import { default as Sheet } from './lib/Organisms/Modals/Sheet/Sheet';
|
|
93
94
|
export * from './lib/Base/Typography';
|
|
94
|
-
export { Accordion, AccordionItem, ActionBar, AvatarWithPlaceholder, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, RadioButtonSpecial, ButtonGoogleSSO, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CarouselIndicator, CarouselNavigation, CheckboxInput, ContentCreatorTile, CopyLinkButton, DateTimeInput, Divider, DropdownButton, DropdownCard, DropdownHeader, DropdownItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, FlagIcon, Form, GalleryPlaceholder, Icon, IconButton, Image, InputDetails, InputFieldSpecial, LabelPill, Legend, List, ListItem, ListItemCluster, Loader, LogoBadgeCompact, LogoBadgeSpacious, LogoTextHorizontal, LogoTextVertical, Markdown, MenuItem, MenuTile, Modal, NavBar, NavigationTab, NavItem, Neighbour, Notice, NotificationBubble, NotificationListItem, OverlayButton, PlaceholderThumbnail, PoiAvatar, Popup, PopupItem, PostCard, ProgressBar, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, SocialIcon, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Tooltip, useCopyToClipboard, UserAvatar, UserAvatarCluster, VisualContent, };
|
|
95
|
+
export { Accordion, AccordionItem, ActionBar, AvatarWithPlaceholder, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, RadioButtonSpecial, ButtonGoogleSSO, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CarouselIndicator, CarouselNavigation, CheckboxInput, ContentCreatorTile, CopyLinkButton, DateTimeInput, Divider, DropdownButton, DropdownCard, DropdownHeader, DropdownItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, FlagIcon, Form, GalleryPlaceholder, Icon, IconButton, Image, InputDetails, InputFieldSpecial, LabelPill, Legend, List, ListItem, ListItemCluster, Loader, LogoBadgeCompact, LogoBadgeSpacious, LogoTextHorizontal, LogoTextVertical, Markdown, MenuItem, MenuTile, Modal, NavBar, NavigationTab, NavItem, Neighbour, Notice, NotificationBubble, NotificationListItem, OverlayButton, PlaceholderThumbnail, PoiAvatar, Popup, PopupItem, PostCard, ProgressBar, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, SocialIcon, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Tooltip, useCopyToClipboard, UserAvatar, UserAvatarCluster, VisualContent, PageLoadingSpinner, };
|