@goodhood-web/ui 3.3.0-development.21 → 3.3.0-development.23

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 { ThumbnailCircularProps, ThumbnailSquareProps } from './Thumbnail.type';
2
- declare const Thumbnail: ({ alt, children, className, isPlaceholder, shape, size, src, }: ThumbnailCircularProps | ThumbnailSquareProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const Thumbnail: ({ alt, children, className, isPlaceholder, outline, shape, size, src, }: ThumbnailCircularProps | ThumbnailSquareProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default Thumbnail;
@@ -11,10 +11,12 @@ export declare const squareSizes: readonly ["24", "32", "40", "48", "56", "64",
11
11
  export type TCircularSize = (typeof circularSizes)[number];
12
12
  export type TSquareSize = (typeof squareSizes)[number];
13
13
  export interface ThumbnailCircularProps extends ThumbnailProps {
14
+ outline?: never;
14
15
  shape: 'circular';
15
16
  size: TCircularSize;
16
17
  }
17
18
  export interface ThumbnailSquareProps extends ThumbnailProps {
19
+ outline?: 'none' | 'highlight';
18
20
  shape: 'square';
19
21
  size: TSquareSize;
20
22
  }
@@ -1,4 +1,4 @@
1
- type OffsetType = 0 | 8 | 16;
1
+ type OffsetType = 0 | 8 | 12 | 16;
2
2
  export interface DividerProps {
3
3
  offsetLeft?: OffsetType;
4
4
  offsetRight?: OffsetType;
@@ -1,3 +1,3 @@
1
1
  import { TextAreaInputProps } from './TextAreaInput.types';
2
- declare const TextAreaInput: ({ ariaDescribedby, attachment, charLimit, colorScheme, errorText, hintText, id, label, name, ref, showInputHints, size, ...props }: TextAreaInputProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const TextAreaInput: ({ ariaDescribedby, attachment, charLimit, colorScheme, errorText, hintText, id, label, limitCharInput, name, ref, showInputHints, size, ...props }: TextAreaInputProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default TextAreaInput;
@@ -1,3 +1,3 @@
1
1
  import { TextInputProps } from './TextInput.types';
2
- declare const TextInput: ({ ariaDescribedby, ariaExpanded, charLimit, colorScheme, errorText, hintText, icon, iconButton, id, inputFieldType, label, name, onClick, onKeyDown, readonly, ref, role, showInputHints, size, ...props }: TextInputProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const TextInput: ({ ariaDescribedby, ariaExpanded, charLimit, colorScheme, errorText, hintText, icon, iconButton, id, inputFieldType, label, limitCharInput, name, onClick, onKeyDown, readonly, ref, role, showInputHints, size, ...props }: TextInputProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default TextInput;
@@ -11,6 +11,7 @@ export interface CommonTextInputProps extends UseInputParameters {
11
11
  hintText?: string;
12
12
  id: string;
13
13
  label: string;
14
+ limitCharInput?: boolean;
14
15
  name?: string;
15
16
  onKeyDown?: KeyboardEventHandler;
16
17
  readonly?: boolean;
@@ -667,6 +667,12 @@ declare const iconsMap: {
667
667
  desc?: string;
668
668
  descId?: string;
669
669
  }>;
670
+ readonly cursor_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
671
+ title?: string;
672
+ titleId?: string;
673
+ desc?: string;
674
+ descId?: string;
675
+ }>;
670
676
  readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
671
677
  title?: string;
672
678
  titleId?: string;
@@ -173,6 +173,12 @@ declare const IconsMap: {
173
173
  desc?: string;
174
174
  descId?: string;
175
175
  }>;
176
+ readonly cursor_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
177
+ title?: string;
178
+ titleId?: string;
179
+ desc?: string;
180
+ descId?: string;
181
+ }>;
176
182
  readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
177
183
  title?: string;
178
184
  titleId?: string;
@@ -580,6 +580,12 @@ declare const iconsMap: {
580
580
  desc?: string;
581
581
  descId?: string;
582
582
  }>;
583
+ readonly cursor_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
584
+ title?: string;
585
+ titleId?: string;
586
+ desc?: string;
587
+ descId?: string;
588
+ }>;
583
589
  readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
584
590
  title?: string;
585
591
  titleId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "3.3.0-development.21",
3
+ "version": "3.3.0-development.23",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",