@goodhood-web/ui 2.1.0-development.3 → 2.1.0-development.5

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 { default as TooltipProps } from './Tooltip.types';
2
- declare const Tooltip: ({ children, className, hasPointer, id, position, text, }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const Tooltip: ({ children, className, hasPointer, id, position, showTooltip, text, }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default Tooltip;
@@ -5,5 +5,6 @@ export default interface TooltipProps {
5
5
  hasPointer?: boolean;
6
6
  id: string;
7
7
  position?: 'top' | 'bottom';
8
+ showTooltip?: boolean;
8
9
  text: string | ReactNode;
9
10
  }
@@ -122,12 +122,6 @@ declare const IconsMap: {
122
122
  readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
123
123
  title?: string;
124
124
  }>;
125
- readonly quotation_left_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
126
- title?: string;
127
- }>;
128
- readonly quotation_right_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
129
- title?: string;
130
- }>;
131
125
  readonly react: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
132
126
  title?: string;
133
127
  }>;
@@ -269,6 +269,12 @@ declare const IconsMap: {
269
269
  readonly qr_code: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
270
270
  title?: string;
271
271
  }>;
272
+ readonly quotation_left_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
273
+ title?: string;
274
+ }>;
275
+ readonly quotation_right_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
276
+ title?: string;
277
+ }>;
272
278
  readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
273
279
  title?: string;
274
280
  }>;
@@ -146,12 +146,6 @@ declare const iconsMap: {
146
146
  readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
147
147
  title?: string;
148
148
  }>;
149
- readonly quotation_left_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
150
- title?: string;
151
- }>;
152
- readonly quotation_right_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
153
- title?: string;
154
- }>;
155
149
  readonly react: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
156
150
  title?: string;
157
151
  }>;
@@ -448,6 +442,12 @@ declare const iconsMap: {
448
442
  readonly qr_code: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
449
443
  title?: string;
450
444
  }>;
445
+ readonly quotation_left_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
446
+ title?: string;
447
+ }>;
448
+ readonly quotation_right_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
449
+ title?: string;
450
+ }>;
451
451
  readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
452
452
  title?: string;
453
453
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "2.1.0-development.3",
3
+ "version": "2.1.0-development.5",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",