@goodhood-web/ui 3.0.0-development.62 → 3.0.0-development.64

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.
@@ -1,3 +1,3 @@
1
1
  import { SelectablePillProps } from './SelectablePill.types';
2
- declare const SelectablePill: ({ disabled, icon, iconSize, id, isSelected, label, onToggleChange, orientation, popular, style, value, variant, }: SelectablePillProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const SelectablePill: ({ className, disabled, icon, iconSize, id, isSelected, label, onToggleChange, orientation, popular, style, value, variant, }: SelectablePillProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default SelectablePill;
@@ -1,5 +1,6 @@
1
1
  import { Icon24, Icon32 } from '../../../Base/Icon/Icon.types';
2
2
  export interface SelectablePillProps {
3
+ className?: string;
3
4
  disabled?: boolean;
4
5
  icon?: Icon24 | Icon32;
5
6
  iconSize?: '24' | '32';
@@ -1,3 +1,3 @@
1
1
  import { MarkdownProps } from './Markdown.types';
2
- declare function Markdown({ className, elementTag, inline, text, }: MarkdownProps): import("react/jsx-runtime").JSX.Element;
2
+ declare function Markdown({ className, elementTag, inline, isExternalLinksIcon, text, }: MarkdownProps): import("react/jsx-runtime").JSX.Element;
3
3
  export default Markdown;
@@ -3,5 +3,6 @@ export type MarkdownProps = {
3
3
  className?: string;
4
4
  elementTag?: AllowedHTMLElements;
5
5
  inline?: boolean;
6
+ isExternalLinksIcon?: boolean;
6
7
  text: string;
7
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "3.0.0-development.62",
3
+ "version": "3.0.0-development.64",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",