ywana-core8 0.0.784 → 0.0.785

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.cjs CHANGED
@@ -5290,6 +5290,8 @@ var PasswordEditor = function PasswordEditor(props) {
5290
5290
  var id = props.id,
5291
5291
  _props$label = props.label,
5292
5292
  label = _props$label === void 0 ? "Change Password" : _props$label,
5293
+ _props$lang = props.lang,
5294
+ lang = _props$lang === void 0 ? "ES" : _props$lang,
5293
5295
  _props$labelPosition = props.labelPosition,
5294
5296
  labelPosition = _props$labelPosition === void 0 ? "left" : _props$labelPosition,
5295
5297
  className = props.className,
@@ -5307,6 +5309,7 @@ var PasswordEditor = function PasswordEditor(props) {
5307
5309
 
5308
5310
  var openDialog = function openDialog() {
5309
5311
  site.openDialog( /*#__PURE__*/React__default["default"].createElement(ChangePasswordDialog, {
5312
+ lang: lang,
5310
5313
  label: label,
5311
5314
  onOK: onOK,
5312
5315
  onClose: onClose
@@ -5323,6 +5326,7 @@ var PasswordEditor = function PasswordEditor(props) {
5323
5326
  readOnly: true
5324
5327
  }), /*#__PURE__*/React__default["default"].createElement(Icon, {
5325
5328
  icon: "edit",
5329
+ clickable: true,
5326
5330
  action: openDialog,
5327
5331
  size: "small"
5328
5332
  }));