ui-kit-ck-consultant 0.5.275 → 0.5.277

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.
@@ -357,6 +357,7 @@ var FormInput = /*#__PURE__*/function (_React$Component) {
357
357
  }, "*") : '') : '', /*#__PURE__*/React.createElement("div", {
358
358
  className: style$2.form_input_container_icon
359
359
  }, /*#__PURE__*/React.createElement("div", null, this.props.children), /*#__PURE__*/React.createElement("input", {
360
+ autoFocus: this.props.autoFocus,
360
361
  style: this.props.styleInput,
361
362
  className: style$2.form_input_icon,
362
363
  type: this.props.type,
@@ -381,6 +382,7 @@ var FormInput = /*#__PURE__*/function (_React$Component) {
381
382
  }, this.props.title, ' ', this.props.required ? /*#__PURE__*/React.createElement("span", {
382
383
  className: "red"
383
384
  }, "*") : '') : '', /*#__PURE__*/React.createElement("input", {
385
+ autoFocus: this.props.autoFocus,
384
386
  style: this.props.styleInput,
385
387
  className: style$2.form_input,
386
388
  type: this.props.type,
@@ -425,6 +427,7 @@ var FormTextarea = /*#__PURE__*/function (_React$Component) {
425
427
  }, this.props.title ? /*#__PURE__*/React.createElement("span", null, this.props.title, ' ', this.props.required ? /*#__PURE__*/React.createElement("span", {
426
428
  className: "red"
427
429
  }, "*") : '') : '', /*#__PURE__*/React.createElement("textarea", {
430
+ autoFocus: this.props.autoFocus,
428
431
  spellCheck: true,
429
432
  lang: 'fr',
430
433
  onKeyDown: !this.props.noResize ? this.handleKeyDown : null,