@configuratorware/configurator-admingui 1.35.7 → 1.35.8

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.
@@ -151,7 +151,7 @@ var TemplateList = /*#__PURE__*/function (_Component) {
151
151
 
152
152
  _defineProperty(_assertThisInitialized(_this), "onSearchChange", (0, _InputHelpers.delay)(function (data) {
153
153
  _lodash["default"].isFunction(_this.props.onSearchChange) && _this.props.onSearchChange(data);
154
- }));
154
+ }, 500));
155
155
 
156
156
  _defineProperty(_assertThisInitialized(_this), "renderAddItemButton", function () {
157
157
  return _this.props.onAddItem && /*#__PURE__*/_react["default"].createElement(AddItemButton, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@configuratorware/configurator-admingui",
3
- "version": "1.35.7",
3
+ "version": "1.35.8",
4
4
  "license": "UNLICENSED",
5
5
  "private": false,
6
6
  "dependencies": {
@@ -29,7 +29,7 @@
29
29
  "react-redux-i18n": "^1.9.3",
30
30
  "react-router": "^3.2.6",
31
31
  "react-sortable-hoc": "^1.11.0",
32
- "redhotmagma-visualization": "1.35.7",
32
+ "redhotmagma-visualization": "1.35.8",
33
33
  "redux": "^4.1.0",
34
34
  "redux-logger": "^3.0.6",
35
35
  "redux-persist": "^5.10.0",
@@ -114,7 +114,7 @@ export default class TemplateList extends Component {
114
114
 
115
115
  onSearchChange = delay(data => {
116
116
  _.isFunction(this.props.onSearchChange) && this.props.onSearchChange(data);
117
- });
117
+ }, 500);
118
118
 
119
119
  renderAddItemButton = () => this.props.onAddItem && <AddItemButton onClick={this.props.onAddItem} />;
120
120