sag_components 2.0.0-beta226 → 2.0.0-beta227
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 +2 -1
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/types/components/Input/Input.d.ts +2 -1
- package/dist/types/components/Input/Input.stories.d.ts +133 -122
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -35848,6 +35848,7 @@ const Input$2 = _ref => {
|
|
|
35848
35848
|
size,
|
|
35849
35849
|
selectedValue,
|
|
35850
35850
|
placeHolder,
|
|
35851
|
+
inputType = "text",
|
|
35851
35852
|
onChange,
|
|
35852
35853
|
onClick,
|
|
35853
35854
|
onBlur,
|
|
@@ -36013,7 +36014,7 @@ const Input$2 = _ref => {
|
|
|
36013
36014
|
}, "*")), /*#__PURE__*/React__default["default"].createElement(InputElement, {
|
|
36014
36015
|
className: multiline ? "StyledTextarea" : "StyledInput",
|
|
36015
36016
|
ref: inputRef,
|
|
36016
|
-
type: password && !showPassword ? "password" :
|
|
36017
|
+
type: password && !showPassword ? "password" : inputType,
|
|
36017
36018
|
value: inputValue,
|
|
36018
36019
|
onChange: handleInputChange,
|
|
36019
36020
|
onClick: handleLabelClick,
|