robin-component 1.0.78 → 1.0.80
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 +39 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/index.js +8 -8
- package/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -50,4 +50,42 @@ declare namespace DropdownSelect {
|
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
declare function TextInput({ value, onChange, placeholder, style, type, disabled, id, name, maxLength, onFocus, onBlur, ...rest }: {
|
|
54
|
+
[x: string]: any;
|
|
55
|
+
value: any;
|
|
56
|
+
onChange: any;
|
|
57
|
+
placeholder: any;
|
|
58
|
+
style: any;
|
|
59
|
+
type?: string | undefined;
|
|
60
|
+
disabled: any;
|
|
61
|
+
id: any;
|
|
62
|
+
name: any;
|
|
63
|
+
maxLength: any;
|
|
64
|
+
onFocus: any;
|
|
65
|
+
onBlur: any;
|
|
66
|
+
}): React.JSX.Element;
|
|
67
|
+
declare namespace TextInput {
|
|
68
|
+
namespace propTypes {
|
|
69
|
+
let value: PropTypes.Requireable<string>;
|
|
70
|
+
let onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
71
|
+
let placeholder: PropTypes.Requireable<string>;
|
|
72
|
+
let style: PropTypes.Requireable<object>;
|
|
73
|
+
let type: PropTypes.Requireable<string>;
|
|
74
|
+
let disabled: PropTypes.Requireable<boolean>;
|
|
75
|
+
let id: PropTypes.Requireable<string>;
|
|
76
|
+
let name: PropTypes.Requireable<string>;
|
|
77
|
+
let maxLength: PropTypes.Requireable<number>;
|
|
78
|
+
let onFocus: PropTypes.Requireable<(...args: any[]) => any>;
|
|
79
|
+
let onBlur: PropTypes.Requireable<(...args: any[]) => any>;
|
|
80
|
+
}
|
|
81
|
+
namespace defaultProps {
|
|
82
|
+
let placeholder_1: string;
|
|
83
|
+
export { placeholder_1 as placeholder };
|
|
84
|
+
let type_1: string;
|
|
85
|
+
export { type_1 as type };
|
|
86
|
+
let disabled_1: boolean;
|
|
87
|
+
export { disabled_1 as disabled };
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export { DropdownSelect, FlexiTable, TextInput, VerticalButton as default };
|