acsi-core 0.1.18 → 0.1.19

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.
@@ -1837,7 +1837,8 @@ var CoreTitleInput = function CoreTitleInput(props) {
1837
1837
  placeholder = _props$placeholder === void 0 ? "Type here" : _props$placeholder,
1838
1838
  error = props.error,
1839
1839
  _props$size = props.size,
1840
- size = _props$size === void 0 ? "h1" : _props$size;
1840
+ size = _props$size === void 0 ? "h1" : _props$size,
1841
+ maxLength = props.maxLength;
1841
1842
  return React.createElement("div", {
1842
1843
  className: "" + styles$c["core-label-input"],
1843
1844
  style: {
@@ -1854,7 +1855,8 @@ var CoreTitleInput = function CoreTitleInput(props) {
1854
1855
  return _onChange(name, e.target.value);
1855
1856
  },
1856
1857
  disabled: disabled,
1857
- placeholder: placeholder
1858
+ placeholder: placeholder,
1859
+ maxLength: maxLength
1858
1860
  }));
1859
1861
  };
1860
1862