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.
@@ -5282,6 +5282,8 @@ var PasswordEditor = function PasswordEditor(props) {
5282
5282
  var id = props.id,
5283
5283
  _props$label = props.label,
5284
5284
  label = _props$label === void 0 ? "Change Password" : _props$label,
5285
+ _props$lang = props.lang,
5286
+ lang = _props$lang === void 0 ? "ES" : _props$lang,
5285
5287
  _props$labelPosition = props.labelPosition,
5286
5288
  labelPosition = _props$labelPosition === void 0 ? "left" : _props$labelPosition,
5287
5289
  className = props.className,
@@ -5299,6 +5301,7 @@ var PasswordEditor = function PasswordEditor(props) {
5299
5301
 
5300
5302
  var openDialog = function openDialog() {
5301
5303
  site.openDialog( /*#__PURE__*/React.createElement(ChangePasswordDialog, {
5304
+ lang: lang,
5302
5305
  label: label,
5303
5306
  onOK: onOK,
5304
5307
  onClose: onClose
@@ -5315,6 +5318,7 @@ var PasswordEditor = function PasswordEditor(props) {
5315
5318
  readOnly: true
5316
5319
  }), /*#__PURE__*/React.createElement(Icon, {
5317
5320
  icon: "edit",
5321
+ clickable: true,
5318
5322
  action: openDialog,
5319
5323
  size: "small"
5320
5324
  }));