@goodhood-web/ui 3.3.0-development.21 → 3.3.0-development.22
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 +33 -33
- package/index.mjs +1675 -1653
- 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/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;
|