@goodhood-web/ui 3.5.0-development.1 → 3.5.0-development.3
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 +15 -15
- package/index.mjs +545 -546
- package/lib/Atoms/Inputs/TextAreaInput/TextAreaInput.d.ts +1 -1
- package/lib/Atoms/Inputs/TextInput/TextInput.types.d.ts +0 -1
- package/lib/Molecules/Navigation/MenuItem/MenuItem.d.ts +1 -1
- package/lib/Molecules/Navigation/MenuItem/MenuItem.types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { TextAreaInputProps } from './TextAreaInput.types';
|
|
2
|
-
declare const TextAreaInput: ({ ariaDescribedby, attachment, charLimit, colorScheme, errorText, hintText, id, label, limitCharInput, name, ref,
|
|
2
|
+
declare const TextAreaInput: ({ ariaDescribedby, attachment, charLimit, colorScheme, errorText, hintText, id, label, limitCharInput, name, ref, size, ...props }: TextAreaInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default TextAreaInput;
|
|
@@ -24,7 +24,6 @@ export interface CommonTextInputProps extends UseInputParameters {
|
|
|
24
24
|
progressBar?: React.ReactNode;
|
|
25
25
|
readonly?: boolean;
|
|
26
26
|
role?: 'combobox';
|
|
27
|
-
showInputHints?: boolean;
|
|
28
27
|
wrapperClassName?: string;
|
|
29
28
|
}
|
|
30
29
|
export interface TextInputProps extends CommonTextInputProps {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { MenuItemProps } from './MenuItem.types';
|
|
2
|
-
declare const MenuItem: ({ className: passedClassName, compact, descriptionText, href, isSelected, labelPillClassName, labelPillText, leftIcon, onClick, rightIcon, role, text, }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const MenuItem: ({ className: passedClassName, compact, descriptionText, href, isSelected, labelPillClassName, labelPillSize, labelPillText, leftIcon, onClick, rightIcon, role, text, }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MenuItem;
|