@true-engineering/true-react-common-ui-kit 4.0.0-alpha7 → 4.0.0-alpha9

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.
@@ -8422,10 +8422,14 @@
8422
8422
  onClick === null || onClick === void 0 ? void 0 : onClick(event);
8423
8423
  }
8424
8424
  };
8425
+ var filteredItems = items.filter(function(param2) {
8426
+ var isHidden = param2.isHidden;
8427
+ return !isHidden;
8428
+ });
8425
8429
  return /* @__PURE__ */ jsx("div", _object_spread_props$R(_object_spread$$({
8426
8430
  className: classes.root
8427
8431
  }, trueReactPlatformHelpers.addDataTestId(testId), addDataAttributes(data)), {
8428
- children: items.map(function(item, i) {
8432
+ children: filteredItems.map(function(item, i) {
8429
8433
  var itemProps = _object_spread_props$R(_object_spread$$({
8430
8434
  testId: trueReactPlatformHelpers.getTestId(testId, "item-".concat(i))
8431
8435
  }, item), {
@@ -9897,14 +9901,14 @@
9897
9901
  boxSizing: "border-box",
9898
9902
  zIndex: 0
9899
9903
  },
9900
- invalid: {
9901
- zIndex: Z_INDEX$1.CONTROL_INVALID
9902
- },
9903
9904
  disabled: {},
9904
9905
  focused: {
9905
9906
  position: "relative",
9906
9907
  zIndex: Z_INDEX$1.CONTROL_FOCUS
9907
9908
  },
9909
+ invalid: {
9910
+ zIndex: Z_INDEX$1.CONTROL_INVALID
9911
+ },
9908
9912
  withValue: {},
9909
9913
  loading: {},
9910
9914
  minContent: {
@@ -32436,6 +32440,7 @@
32436
32440
  exports2.ScrollIntoViewIfNeeded = ScrollIntoViewIfNeeded;
32437
32441
  exports2.SearchInput = SearchInput;
32438
32442
  exports2.Select = Select;
32443
+ exports2.SelectList = SelectList;
32439
32444
  exports2.Selector = Selector;
32440
32445
  exports2.Skeleton = Skeleton;
32441
32446
  exports2.SmartInput = SmartInput;