@goodhood-web/ui 3.0.0-development.3 → 3.0.0-development.30
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 -2
- package/index.js +79 -79
- package/index.mjs +6186 -6069
- package/lib/Atoms/Badges/Badge/Badge.d.ts +1 -1
- package/lib/Atoms/Badges/Badge/Badge.types.d.ts +1 -0
- package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.d.ts +1 -1
- package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.types.d.ts +1 -1
- package/lib/Atoms/Badges/LabelPill/LabelPill.types.d.ts +1 -1
- package/lib/Atoms/Badges/Sticker/Sticker.types.d.ts +1 -1
- package/lib/Atoms/Buttons/Button/Button.types.d.ts +2 -0
- package/lib/Atoms/Buttons/IconButton/IconButton.types.d.ts +6 -2
- package/lib/Atoms/Buttons/IconButton/utils.d.ts +2 -2
- package/lib/Atoms/Buttons/TextButton/TextButton.types.d.ts +1 -1
- package/lib/Atoms/Buttons/Tiles/FeedTile/FeedTile.d.ts +1 -1
- package/lib/Atoms/Buttons/Tiles/FeedTile/FeedTile.types.d.ts +1 -0
- package/lib/Atoms/Buttons/Tiles/MenuTile/MenuTile.d.ts +1 -1
- package/lib/Atoms/Buttons/Tiles/MenuTile/MenuTile.type.d.ts +1 -0
- package/lib/Atoms/Content/AvatarWithPlaceholder/AvatarWithPlaceholder.d.ts +3 -0
- package/lib/Atoms/Content/AvatarWithPlaceholder/AvatarWithPlaceholder.types.d.ts +16 -0
- package/lib/Atoms/Content/PlaceholderThumbnail/PlaceholderThumbnail.d.ts +1 -1
- package/lib/Atoms/Content/PlaceholderThumbnail/PlaceholderThumbnail.type.d.ts +2 -0
- package/lib/Atoms/Content/PoiAvatar/PoiAvatar.d.ts +3 -0
- package/lib/Atoms/Content/PoiAvatar/PoiAvatar.type.d.ts +6 -0
- package/lib/Atoms/Content/Thumbnail/Thumbnail.type.d.ts +1 -1
- package/lib/Atoms/Content/ThumbnailWrapper/ThumbnailWrapper.d.ts +2 -2
- package/lib/Atoms/Content/ThumbnailWrapper/ThumbnailWrapper.types.d.ts +9 -1
- package/lib/Atoms/Selectables/SelectablePill/SelectablePill.d.ts +1 -1
- package/lib/Atoms/Selectables/SelectablePill/SelectablePill.types.d.ts +3 -2
- package/lib/Base/Icon/icons/index.d.ts +36 -0
- package/lib/Base/Icon/icons/outline/16x16/index.d.ts +12 -0
- package/lib/Base/Icon/icons/outline/24x24/index.d.ts +18 -0
- package/lib/Base/Icon/icons/outline/32x32/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/index.d.ts +36 -0
- package/lib/Molecules/Card/Card.d.ts +1 -1
- package/lib/Molecules/Card/Card.types.d.ts +10 -2
- package/lib/Molecules/Card/CardHeader/CardHeader.types.d.ts +1 -1
- package/lib/Molecules/ListItems/Neighbour/Neighbour.d.ts +1 -1
- package/lib/Molecules/ListItems/Neighbour/Neighbour.types.d.ts +1 -0
- package/lib/Molecules/Navigation/MenuItem/MenuItem.d.ts +1 -1
- package/lib/Molecules/Navigation/MenuItem/MenuItem.types.d.ts +1 -0
- package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +3 -3
- package/lib/Molecules/Notices/Notice/Notice.d.ts +2 -2
- package/lib/Molecules/Notices/Notice/Notice.types.d.ts +60 -12
- package/lib/Molecules/Notices/Snackbar/Snackbar.d.ts +1 -1
- package/lib/Molecules/Notices/Snackbar/Snackbar.types.d.ts +2 -0
- package/lib/Organisms/Modals/Popup/Popup.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/_functions.scss +5 -0
- package/lib/Atoms/Content/GroupAvatar/GroupAvatar.d.ts +0 -3
- package/lib/Atoms/Content/GroupAvatar/GroupAvatar.types.d.ts +0 -10
- package/lib/Molecules/Notices/Notice/InfoNotice/InfoNotice.d.ts +0 -3
- package/lib/Molecules/Notices/Notice/WarningNotice/WarningNotice.d.ts +0 -3
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as SnackbarProps } from './Snackbar.types';
|
|
2
|
-
declare const Snackbar: ({ dismissable, isOpen, leftIconLarge, leftIconSmall, onClick, onClose, rightIconLarge, rightIconSmall, textButton, textLabel, }: SnackbarProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const Snackbar: ({ color, dismissable, isOpen, leftIconLarge, leftIconSmall, onClick, onClose, rightIconLarge, rightIconSmall, textButton, textLabel, }: SnackbarProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Snackbar;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { TextButtonProps } from '../../../Atoms/Buttons/TextButton/TextButton.types';
|
|
1
2
|
import { Icon24, Icon32 } from '../../../Base/Icon/Icon.types';
|
|
2
3
|
export default interface SnackbarProps {
|
|
4
|
+
color?: TextButtonProps['color'];
|
|
3
5
|
dismissable?: boolean;
|
|
4
6
|
isOpen: boolean;
|
|
5
7
|
leftIconLarge?: Icon32;
|