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.
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta213",
3
+ "version": "2.0.0-beta214",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",