@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.
Files changed (53) hide show
  1. package/index.d.ts +3 -2
  2. package/index.js +79 -79
  3. package/index.mjs +6186 -6069
  4. package/lib/Atoms/Badges/Badge/Badge.d.ts +1 -1
  5. package/lib/Atoms/Badges/Badge/Badge.types.d.ts +1 -0
  6. package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.d.ts +1 -1
  7. package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.types.d.ts +1 -1
  8. package/lib/Atoms/Badges/LabelPill/LabelPill.types.d.ts +1 -1
  9. package/lib/Atoms/Badges/Sticker/Sticker.types.d.ts +1 -1
  10. package/lib/Atoms/Buttons/Button/Button.types.d.ts +2 -0
  11. package/lib/Atoms/Buttons/IconButton/IconButton.types.d.ts +6 -2
  12. package/lib/Atoms/Buttons/IconButton/utils.d.ts +2 -2
  13. package/lib/Atoms/Buttons/TextButton/TextButton.types.d.ts +1 -1
  14. package/lib/Atoms/Buttons/Tiles/FeedTile/FeedTile.d.ts +1 -1
  15. package/lib/Atoms/Buttons/Tiles/FeedTile/FeedTile.types.d.ts +1 -0
  16. package/lib/Atoms/Buttons/Tiles/MenuTile/MenuTile.d.ts +1 -1
  17. package/lib/Atoms/Buttons/Tiles/MenuTile/MenuTile.type.d.ts +1 -0
  18. package/lib/Atoms/Content/AvatarWithPlaceholder/AvatarWithPlaceholder.d.ts +3 -0
  19. package/lib/Atoms/Content/AvatarWithPlaceholder/AvatarWithPlaceholder.types.d.ts +16 -0
  20. package/lib/Atoms/Content/PlaceholderThumbnail/PlaceholderThumbnail.d.ts +1 -1
  21. package/lib/Atoms/Content/PlaceholderThumbnail/PlaceholderThumbnail.type.d.ts +2 -0
  22. package/lib/Atoms/Content/PoiAvatar/PoiAvatar.d.ts +3 -0
  23. package/lib/Atoms/Content/PoiAvatar/PoiAvatar.type.d.ts +6 -0
  24. package/lib/Atoms/Content/Thumbnail/Thumbnail.type.d.ts +1 -1
  25. package/lib/Atoms/Content/ThumbnailWrapper/ThumbnailWrapper.d.ts +2 -2
  26. package/lib/Atoms/Content/ThumbnailWrapper/ThumbnailWrapper.types.d.ts +9 -1
  27. package/lib/Atoms/Selectables/SelectablePill/SelectablePill.d.ts +1 -1
  28. package/lib/Atoms/Selectables/SelectablePill/SelectablePill.types.d.ts +3 -2
  29. package/lib/Base/Icon/icons/index.d.ts +36 -0
  30. package/lib/Base/Icon/icons/outline/16x16/index.d.ts +12 -0
  31. package/lib/Base/Icon/icons/outline/24x24/index.d.ts +18 -0
  32. package/lib/Base/Icon/icons/outline/32x32/index.d.ts +6 -0
  33. package/lib/Base/Icon/icons/outline/index.d.ts +36 -0
  34. package/lib/Molecules/Card/Card.d.ts +1 -1
  35. package/lib/Molecules/Card/Card.types.d.ts +10 -2
  36. package/lib/Molecules/Card/CardHeader/CardHeader.types.d.ts +1 -1
  37. package/lib/Molecules/ListItems/Neighbour/Neighbour.d.ts +1 -1
  38. package/lib/Molecules/ListItems/Neighbour/Neighbour.types.d.ts +1 -0
  39. package/lib/Molecules/Navigation/MenuItem/MenuItem.d.ts +1 -1
  40. package/lib/Molecules/Navigation/MenuItem/MenuItem.types.d.ts +1 -0
  41. package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +3 -3
  42. package/lib/Molecules/Notices/Notice/Notice.d.ts +2 -2
  43. package/lib/Molecules/Notices/Notice/Notice.types.d.ts +60 -12
  44. package/lib/Molecules/Notices/Snackbar/Snackbar.d.ts +1 -1
  45. package/lib/Molecules/Notices/Snackbar/Snackbar.types.d.ts +2 -0
  46. package/lib/Organisms/Modals/Popup/Popup.types.d.ts +1 -0
  47. package/package.json +1 -1
  48. package/style.css +1 -1
  49. package/styles/_functions.scss +5 -0
  50. package/lib/Atoms/Content/GroupAvatar/GroupAvatar.d.ts +0 -3
  51. package/lib/Atoms/Content/GroupAvatar/GroupAvatar.types.d.ts +0 -10
  52. package/lib/Molecules/Notices/Notice/InfoNotice/InfoNotice.d.ts +0 -3
  53. 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;
@@ -3,6 +3,7 @@ import { ReactNode } from 'react';
3
3
  export interface PopupProps {
4
4
  anchor?: HTMLElement | null;
5
5
  children: ReactNode;
6
+ className?: string;
6
7
  container?: HTMLElement | null;
7
8
  handleClickAway?: () => void;
8
9
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "3.0.0-development.3",
3
+ "version": "3.0.0-development.30",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",