sag_components 2.0.0-beta213 → 2.0.0-beta214
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/dist/index.d.ts +5 -1
- package/dist/index.esm.js +7 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/types/components/Input/Input.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default Input;
|
|
2
|
-
declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolder, onChange, onClick, onBlur, required, disabled, isDarkerBackground, width, height, error, errorMessage, labelColor, leftIcon, rightIcon, password, leftIconOnClick, rightIconOnClick, multiline, rows, maxLength, regex, }: {
|
|
2
|
+
declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolder, onChange, onClick, onBlur, required, disabled, isDarkerBackground, width, height, error, errorMessage, labelColor, leftIcon, rightIcon, password, leftIconOnClick, rightIconOnClick, multiline, rows, maxLength, regex, onKeyDown, }: {
|
|
3
3
|
label: any;
|
|
4
4
|
labelEmptyValue: any;
|
|
5
5
|
size: any;
|
|
@@ -25,6 +25,7 @@ declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolde
|
|
|
25
25
|
rows?: number;
|
|
26
26
|
maxLength: any;
|
|
27
27
|
regex: any;
|
|
28
|
+
onKeyDown: any;
|
|
28
29
|
}): any;
|
|
29
30
|
declare namespace Input {
|
|
30
31
|
namespace propTypes {
|
|
@@ -51,6 +52,7 @@ declare namespace Input {
|
|
|
51
52
|
const rows: any;
|
|
52
53
|
const maxLength: any;
|
|
53
54
|
const regex: any;
|
|
55
|
+
const onKeyDown: any;
|
|
54
56
|
}
|
|
55
57
|
namespace defaultProps {
|
|
56
58
|
const placeHolder_1: string;
|
|
@@ -97,5 +99,7 @@ declare namespace Input {
|
|
|
97
99
|
export { maxLength_1 as maxLength };
|
|
98
100
|
const regex_1: any;
|
|
99
101
|
export { regex_1 as regex };
|
|
102
|
+
export function onKeyDown_1(): void;
|
|
103
|
+
export { onKeyDown_1 as onKeyDown };
|
|
100
104
|
}
|
|
101
105
|
}
|