@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.
- package/README.md +10 -3
- package/dist/components/List/List.d.ts +1 -1
- package/dist/components/List/index.d.ts +2 -1
- package/dist/components/List/types.d.ts +4 -0
- package/dist/components/Select/index.d.ts +1 -1
- package/dist/true-react-common-ui-kit.js +9 -4
- package/dist/true-react-common-ui-kit.js.map +1 -1
- package/dist/true-react-common-ui-kit.umd.cjs +9 -4
- package/dist/true-react-common-ui-kit.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/src/components/ControlWrapper/ControlWrapper.styles.ts +4 -4
- package/src/components/List/List.tsx +5 -2
- package/src/components/List/index.ts +2 -1
- package/src/components/List/types.ts +5 -0
- package/src/components/Select/index.ts +1 -1
|
@@ -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:
|
|
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;
|