trotl-filter 1.0.47 → 1.0.49

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/dist/index.cjs.js CHANGED
@@ -11819,7 +11819,9 @@ const CardSelect = ({
11819
11819
  sk,
11820
11820
  finalMarkers = () => {},
11821
11821
  callbackValues,
11822
- callbackEvent
11822
+ callbackEvent,
11823
+ lines = true,
11824
+ linesColor = "#e6e6e6"
11823
11825
  }) => {
11824
11826
  const [disabled, setDisabled] = React.useState(true);
11825
11827
  const [markers, setMarkers] = React.useState(mk ?? _markers);
@@ -11920,10 +11922,16 @@ const CardSelect = ({
11920
11922
  className: "bodyTeeth-first-row"
11921
11923
  }, markers.slice(0, 16).map(m => renderCard(m))), /*#__PURE__*/React.createElement("div", {
11922
11924
  className: "bodyTeeth-second-row"
11923
- }, markers.slice(16, 32).map(m => renderCard(m))), /*#__PURE__*/React.createElement("div", {
11924
- className: "horizontal-line-h"
11925
- }), /*#__PURE__*/React.createElement("div", {
11926
- className: "vertical-line-v"
11925
+ }, markers.slice(16, 32).map(m => renderCard(m))), lines && /*#__PURE__*/React.createElement("div", {
11926
+ className: "horizontal-line-h",
11927
+ style: {
11928
+ backgroundColor: linesColor
11929
+ }
11930
+ }), lines && /*#__PURE__*/React.createElement("div", {
11931
+ className: "vertical-line-v",
11932
+ style: {
11933
+ backgroundColor: linesColor
11934
+ }
11927
11935
  })));
11928
11936
  };
11929
11937