ywana-core8 0.0.406 → 0.0.409

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.
File without changes
package/dist/index.cjs CHANGED
@@ -173,7 +173,7 @@ var Icon = function Icon(_ref) {
173
173
  event.preventDefault();
174
174
  }
175
175
 
176
- if (action) action(event);
176
+ if (action && !disabled) action(event);
177
177
  }
178
178
 
179
179
  var style = disabled ? "disabled" : clickable ? "clickable" : "";
@@ -4155,7 +4155,7 @@ var StringEditor = function StringEditor(_ref6) {
4155
4155
  label: label,
4156
4156
  onChange: change,
4157
4157
  readOnly: !editable,
4158
- options: options
4158
+ options: buildOptions()
4159
4159
  });
4160
4160
 
4161
4161
  default:
@@ -5768,11 +5768,9 @@ var TableFilters = function TableFilters(props) {
5768
5768
  if (fs[key].filter === false) delete fs[key];
5769
5769
  }
5770
5770
  }
5771
- }
5771
+ } //Object.values(filterSchema).forEach(field => field.section = null)
5772
+
5772
5773
 
5773
- Object.values(filterSchema).forEach(function (field) {
5774
- return field.section = null;
5775
- });
5776
5774
  delete filterSchema.flows;
5777
5775
  return filterSchema;
5778
5776
  }, [schema]);