@goodhood-web/ui 1.10.0-development.6 → 1.10.0-development.8
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.d.ts +2 -1
- package/index.js +54 -54
- package/index.mjs +3265 -3203
- package/lib/Icon/icons/24x24/index.d.ts +3 -0
- package/lib/Icon/icons/index.d.ts +3 -0
- package/lib/InputFieldSpecial/InputFieldSpecial.d.ts +4 -0
- package/lib/InputFieldSpecial/InputFieldSpecial.types.d.ts +22 -0
- package/lib/InputFieldSpecial/InputFieldSpecial.utils.d.ts +3 -0
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -113,6 +113,9 @@ declare const IconsMap: {
|
|
|
113
113
|
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
114
114
|
title?: string;
|
|
115
115
|
}>;
|
|
116
|
+
readonly error: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
117
|
+
title?: string;
|
|
118
|
+
}>;
|
|
116
119
|
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
117
120
|
title?: string;
|
|
118
121
|
}>;
|
|
@@ -114,6 +114,9 @@ declare const iconsMap: {
|
|
|
114
114
|
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
115
115
|
title?: string;
|
|
116
116
|
}>;
|
|
117
|
+
readonly error: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
118
|
+
title?: string;
|
|
119
|
+
}>;
|
|
117
120
|
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
118
121
|
title?: string;
|
|
119
122
|
}>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { InputFieldSpecialProps } from './InputFieldSpecial.types';
|
|
2
|
+
|
|
3
|
+
declare const InputFieldSpecial: ({ ariaLabel, disabled, errorMessage, id, maxDigits, name, onChange, placeholder, style, value, }: InputFieldSpecialProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export default InputFieldSpecial;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export interface InputFieldSpecialProps {
|
|
2
|
+
ariaLabel?: string;
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
errorMessage?: string;
|
|
5
|
+
id: string;
|
|
6
|
+
maxDigits?: 'two' | 'three' | 'four';
|
|
7
|
+
name?: string;
|
|
8
|
+
onChange: (id: string, value: number) => void;
|
|
9
|
+
placeholder?: string;
|
|
10
|
+
style?: 'outline' | 'filled';
|
|
11
|
+
value?: number;
|
|
12
|
+
}
|
|
13
|
+
export declare const maxDigitsInputMap: {
|
|
14
|
+
four: number;
|
|
15
|
+
three: number;
|
|
16
|
+
two: number;
|
|
17
|
+
};
|
|
18
|
+
export declare const maxDigitsValueMap: {
|
|
19
|
+
four: number;
|
|
20
|
+
three: number;
|
|
21
|
+
two: number;
|
|
22
|
+
};
|