sag_components 2.0.0-beta226 → 2.0.0-beta228

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.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" : "text",
36017
+ type: password && !showPassword ? "password" : inputType,
36017
36018
  value: inputValue,
36018
36019
  onChange: handleInputChange,
36019
36020
  onClick: handleLabelClick,
@@ -40571,7 +40572,7 @@ const TableBody = /*#__PURE__*/React$1.forwardRef(({
40571
40572
  style: {
40572
40573
  color: isDefine ? "#8B8989" : "inherit"
40573
40574
  }
40574
- }, value ?? "Define"), /*#__PURE__*/React__default["default"].createElement(PencilButton, {
40575
+ }, value ? `$${value}` : "Define"), /*#__PURE__*/React__default["default"].createElement(PencilButton, {
40575
40576
  onClick: e => {
40576
40577
  e.stopPropagation();
40577
40578
  handleEditableClick(row, column.key, value, rowIndex);