@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.
- package/index.js +37 -37
- package/index.mjs +2182 -2159
- package/lib/Atoms/Content/Thumbnail/Thumbnail.d.ts +1 -1
- package/lib/Atoms/Content/Thumbnail/Thumbnail.type.d.ts +2 -0
- package/lib/Atoms/Divider/Divider.types.d.ts +1 -1
- package/lib/Atoms/Inputs/TextAreaInput/TextAreaInput.d.ts +1 -1
- package/lib/Atoms/Inputs/TextInput/TextInput.d.ts +1 -1
- package/lib/Atoms/Inputs/TextInput/TextInput.types.d.ts +1 -0
- package/lib/Base/Icon/icons/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/32x32/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/index.d.ts +6 -0
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -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,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;
|
|
@@ -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;
|