@lanaco/lnc-react-ui 2.1.4 → 2.1.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.
- package/lib/index.esm.js +258 -215
- package/lib/index.js +258 -215
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -4616,7 +4616,7 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
4616
4616
|
}
|
|
4617
4617
|
}
|
|
4618
4618
|
|
|
4619
|
-
var _templateObject$
|
|
4619
|
+
var _templateObject$p;
|
|
4620
4620
|
|
|
4621
4621
|
var getCheckboxCss = function getCheckboxCss(props) {
|
|
4622
4622
|
var left, top, width, height, checkWidth, checkHeight, margin, marginLeft, padingLeft, paddingTop;
|
|
@@ -4661,7 +4661,7 @@ var getCheckboxCss = function getCheckboxCss(props) {
|
|
|
4661
4661
|
height = "1.6875rem";
|
|
4662
4662
|
}
|
|
4663
4663
|
|
|
4664
|
-
return css(_templateObject$
|
|
4664
|
+
return css(_templateObject$p || (_templateObject$p = _taggedTemplateLiteral__default['default'](["\n .c-", "-container {\n font-family: ", ";\n display: inline-block;\n position: relative;\n padding: 0.25rem;\n padding-left: ", ";\n ", "\n cursor: pointer;\n font-size: ", ";\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n margin: ", ";\n margin-left: ", ";\n cursor: pointer;\n }\n\n /* Hide the browser's default checkbox */\n .c-", "-container input {\n position: absolute;\n opacity: 0;\n cursor: pointer;\n height: 0;\n width: 0;\n }\n\n /* Create a custom checkbox */\n .c-", "-checkmark {\n position: absolute;\n top: 0;\n left: 0;\n height: ", ";\n width: ", ";\n background-color: #eee;\n border: 0.0625rem solid ", ";\n border-radius: 2px;\n transition: all 200ms ease;\n }\n\n /* On mouse-over, add a grey background color */\n .c-", "-container:hover input ~ .c-", "-checkmark {\n cursor: pointer;\n }\n\n .c-", "-container:hover input:disabled ~ .c-", "-checkmark {\n background-color: ", ";\n cursor: default;\n }\n\n .c-", "-container input:disabled ~ .c-", "-checkmark {\n background-color: ", ";\n }\n\n /* When the checkbox is checked, add a blue background */\n .c-", "-container input:checked ~ .c-", "-checkmark {\n background-color: ", ";\n }\n\n .c-", "-container input:checked:disabled ~ .c-", "-checkmark {\n background-color: ", ";\n border: 0.0625rem solid ", ";\n cursor: default;\n }\n\n /* Create the checkmark/indicator (hidden when not checked) */\n .c-", "-checkmark:after {\n content: \"\";\n position: absolute;\n display: none;\n }\n\n /* Show the checkmark when checked */\n .c-", "-container input:checked ~ .c-", "-checkmark:after {\n display: block;\n }\n\n /* Style the checkmark/indicator */\n .c-", "-container .c-", "-checkmark:after {\n left: ", ";\n top: ", ";\n width: ", ";\n height: ", ";\n border: solid white;\n border-width: 0 0.21875rem 0.21875rem 0;\n -webkit-transform: rotate(35deg);\n -ms-transform: rotate(35deg);\n transform: rotate(35deg);\n }\n "])), props.id, props.theme.typography.fontFamily, padingLeft, paddingTop, props.theme.typography[props.size].fontSize, margin, marginLeft, props.id, props.id, height, width, props.theme.palette[props.color].main, props.id, props.id, props.id, props.id, props.theme.palette.gray[900], props.id, props.id, props.theme.palette.gray[900], props.id, props.id, props.theme.palette[props.color].main, props.id, props.id, props.theme.palette.gray[900], props.theme.palette.gray.textLight, props.id, props.id, props.id, props.id, props.id, left, top, checkWidth, checkHeight);
|
|
4665
4665
|
};
|
|
4666
4666
|
|
|
4667
4667
|
var CheckBox = function CheckBox(props) {
|
|
@@ -4716,7 +4716,7 @@ CheckBox.propTypes = {
|
|
|
4716
4716
|
color: PropTypes__default['default'].oneOf(["primary", "secondary", "success", "error", "warning", "gray"])
|
|
4717
4717
|
};
|
|
4718
4718
|
|
|
4719
|
-
var _templateObject$
|
|
4719
|
+
var _templateObject$o, _templateObject2$j, _templateObject3$e;
|
|
4720
4720
|
|
|
4721
4721
|
var getLabelAndTextProps = function getLabelAndTextProps() {
|
|
4722
4722
|
return {
|
|
@@ -4787,14 +4787,14 @@ var Label = newStyled.label(function (props) {
|
|
|
4787
4787
|
}
|
|
4788
4788
|
};
|
|
4789
4789
|
});
|
|
4790
|
-
var Text$2 = newStyled.label(_templateObject$
|
|
4790
|
+
var Text$2 = newStyled.label(_templateObject$o || (_templateObject$o = _taggedTemplateLiteral__default['default'](["\n position: relative;\n font-family: ", ";\n font-size: ", ";\n top: ", ";\n"])), function (props) {
|
|
4791
4791
|
return props.theme.typography.fontFamily;
|
|
4792
4792
|
}, function (props) {
|
|
4793
4793
|
return props.theme.typography[props.size].fontSize;
|
|
4794
4794
|
}, function (props) {
|
|
4795
4795
|
return getLabelAndTextProps()[props.size].top;
|
|
4796
4796
|
});
|
|
4797
|
-
var Input$4 = newStyled.input(_templateObject2$
|
|
4797
|
+
var Input$4 = newStyled.input(_templateObject2$j || (_templateObject2$j = _taggedTemplateLiteral__default['default'](["\n &:checked + span {\n background-color: ", ";\n }\n\n &:focus + span {\n box-shadow: 0 0 0.0625rem\n ", ";\n }\n\n &:checked + span:before {\n transform: translateX(90%);\n }\n\n &:checked:disabled + span {\n }\n\n &:checked:disabled + span:before {\n backround-color: red;\n }\n\n &:disabled + span {\n position: absolute;\n cursor: pointer;\n top: ", ";\n left: ", ";\n right: 0;\n bottom: 0;\n background-color: ", ";\n -webkit-transition: 0.4s;\n transition: 0.4s;\n height: ", ";\n width: ", ";\n border: 0.0625rem solid ", ";\n border-radius: 0.125rem;\n }\n\n &:disabled + span:before {\n position: absolute;\n content: \"\";\n height: ", ";\n width: ", ";\n left: 0.0625rem;\n top: -0.125rem;\n background-color: ", ";\n -webkit-transition: 0.4s;\n transition: 0.4s;\n border: 0.0625rem solid ", ";\n border-radius: 0.125rem;\n }\n\n &:checked:disabled + span:before {\n position: absolute;\n content: \"\";\n height: ", ";\n width: ", ";\n left: 0.0625rem;\n top: -0.125rem;\n background-color: ", ";\n -webkit-transition: 0.4s;\n transition: 0.4s;\n border: 0.0625rem solid ", ";\n border-radius: 0.125rem;\n }\n"])), function (props) {
|
|
4798
4798
|
return props.theme.palette[props.color].main;
|
|
4799
4799
|
}, function (props) {
|
|
4800
4800
|
return props.theme.palette[props.color].main;
|
|
@@ -4827,7 +4827,7 @@ var Input$4 = newStyled.input(_templateObject2$i || (_templateObject2$i = _tagge
|
|
|
4827
4827
|
}, function (props) {
|
|
4828
4828
|
return props.theme.palette.gray[1000];
|
|
4829
4829
|
});
|
|
4830
|
-
var Span$2 = newStyled.span(_templateObject3$
|
|
4830
|
+
var Span$2 = newStyled.span(_templateObject3$e || (_templateObject3$e = _taggedTemplateLiteral__default['default'](["\n position: absolute;\n cursor: pointer;\n top: ", ";\n left: ", ";\n right: 0;\n bottom: 0;\n background-color: ", ";\n -webkit-transition: 0.4s;\n transition: 0.4s;\n height: ", ";\n width: ", ";\n border: 0.0625rem solid ", ";\n border-radius: 0.125rem;\n\n &:before {\n position: absolute;\n content: \"\";\n height: ", ";\n width: ", ";\n left: 0.0625rem;\n top: -0.125rem;\n background-color: white;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n border: 0.0625rem solid ", ";\n border-radius: 0.125rem;\n }\n"])), function (props) {
|
|
4831
4831
|
return getSpanProps()[props.size].top;
|
|
4832
4832
|
}, function (props) {
|
|
4833
4833
|
return getSpanProps()[props.size].left;
|
|
@@ -6554,12 +6554,12 @@ SwitchTransition.defaultProps = {
|
|
|
6554
6554
|
};
|
|
6555
6555
|
var SwitchTransition$1 = SwitchTransition;
|
|
6556
6556
|
|
|
6557
|
-
var _templateObject$
|
|
6558
|
-
var Container$k = newStyled.div(_templateObject$
|
|
6557
|
+
var _templateObject$n, _templateObject2$i, _templateObject3$d, _templateObject4$b, _templateObject5$b, _templateObject6$9, _templateObject7$7, _templateObject8$7, _templateObject9$7, _templateObject10$7, _templateObject11$5, _templateObject12$5, _templateObject13$3;
|
|
6558
|
+
var Container$k = newStyled.div(_templateObject$n || (_templateObject$n = _taggedTemplateLiteral__default['default'](["\n display: flex;\n flex-direction: column;\n box-sizing: border-box;\n box-shadow: 0 0 6px #bebebe;\n border-radius: 0.175rem;\n padding: 8px;\n width: ", ";\n\n font-family: ", ";\n"])), function (props) {
|
|
6559
6559
|
return props.width && props.width !== "" ? props.width : "fit-content";
|
|
6560
6560
|
}, theme.typography.fontFamily);
|
|
6561
|
-
var Table$1 = newStyled.div(_templateObject2$
|
|
6562
|
-
var Body = newStyled.div(_templateObject3$
|
|
6561
|
+
var Table$1 = newStyled.div(_templateObject2$i || (_templateObject2$i = _taggedTemplateLiteral__default['default'](["\n display: flex;\n flex-direction: column;\n border: 1.7px solid #80808060;\n background-color: whitesmoke;\n border-radius: 0.175rem;\n"])));
|
|
6562
|
+
var Body = newStyled.div(_templateObject3$d || (_templateObject3$d = _taggedTemplateLiteral__default['default'](["\n display: flex;\n flex-direction: column;\n &::-webkit-scrollbar {\n background: white;\n height: 0;\n width: 0;\n }\n overflow: auto;\n height: ", ";\n"])), function (props) {
|
|
6563
6563
|
return props.height && props.height !== "" ? props.height : "auto";
|
|
6564
6564
|
});
|
|
6565
6565
|
var Row = newStyled.div(_templateObject4$b || (_templateObject4$b = _taggedTemplateLiteral__default['default'](["\n display: flex;\n flex-direction: row;\n cursor: pointer;\n transition: all 250ms ease;\n background-color: white;\n\n &:hover {\n background-color: whitesmoke;\n }\n"])));
|
|
@@ -6576,9 +6576,9 @@ var ColumnTitle = newStyled.div(_templateObject8$7 || (_templateObject8$7 = _tag
|
|
|
6576
6576
|
var HeaderColumnTitle = newStyled.div(_templateObject9$7 || (_templateObject9$7 = _taggedTemplateLiteral__default['default'](["\n padding: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n padding-left: 8px;\n padding-right: 8px;\n font-size: calc(\n ", " + 3px\n );\n"])), function (props) {
|
|
6577
6577
|
return props.theme.typography[props.size].fontSize;
|
|
6578
6578
|
});
|
|
6579
|
-
var FooterRow = newStyled.div(_templateObject10$
|
|
6580
|
-
var ButtonContainer$3 = newStyled.div(_templateObject11$
|
|
6581
|
-
var PageNumber = newStyled.div(_templateObject12$
|
|
6579
|
+
var FooterRow = newStyled.div(_templateObject10$7 || (_templateObject10$7 = _taggedTemplateLiteral__default['default'](["\n display: flex;\n // flex-direction: row;\n align-items: center;\n justify-content: center;\n flex-wrap: wrap;\n\n border: 1.7px solid #80808060;\n background-color: whitesmoke;\n border-radius: 0.175rem;\n padding: 3px;\n\n margin-top: 8px;\n"])));
|
|
6580
|
+
var ButtonContainer$3 = newStyled.div(_templateObject11$5 || (_templateObject11$5 = _taggedTemplateLiteral__default['default'](["\n margin: 3px;\n"])));
|
|
6581
|
+
var PageNumber = newStyled.div(_templateObject12$5 || (_templateObject12$5 = _taggedTemplateLiteral__default['default'](["\n font-size: calc(\n ", " + 3px\n );\n margin: 3px 5px;\n"])), function (props) {
|
|
6582
6582
|
return props.theme.typography[props.size].fontSize;
|
|
6583
6583
|
}); //=======================================================================
|
|
6584
6584
|
|
|
@@ -6638,7 +6638,7 @@ var CheckboxLookup = function CheckboxLookup(props) {
|
|
|
6638
6638
|
return /*#__PURE__*/React__default['default'].createElement(Container$k, _extends__default['default']({}, themeProps, {
|
|
6639
6639
|
className: className
|
|
6640
6640
|
}), /*#__PURE__*/React__default['default'].createElement(Global, {
|
|
6641
|
-
styles: css(_templateObject13$
|
|
6641
|
+
styles: css(_templateObject13$3 || (_templateObject13$3 = _taggedTemplateLiteral__default['default'](["\n .item-enter {\n opacity: 0;\n }\n\n .item-enter-active {\n transition: all 0.4s ease-in;\n opacity: 1;\n }\n\n .item-exit {\n }\n\n .item-exit-active {\n opacity: 0;\n transition: opacity 400ms ease-out;\n }\n "])))
|
|
6642
6642
|
}), /*#__PURE__*/React__default['default'].createElement(Table$1, null, /*#__PURE__*/React__default['default'].createElement(HeaderRow, null, /*#__PURE__*/React__default['default'].createElement(HeaderColumnCheck, {
|
|
6643
6643
|
check: style === "regular"
|
|
6644
6644
|
}, style === "regular" ? /*#__PURE__*/React__default['default'].createElement(CheckBox, {
|
|
@@ -22511,7 +22511,7 @@ var DateInput = function DateInput(props) {
|
|
|
22511
22511
|
React.useEffect(function () {
|
|
22512
22512
|
var timeOutId = setTimeout(function () {
|
|
22513
22513
|
return handleDelayedOnChange();
|
|
22514
|
-
},
|
|
22514
|
+
}, 350);
|
|
22515
22515
|
return function () {
|
|
22516
22516
|
return clearTimeout(timeOutId);
|
|
22517
22517
|
};
|
|
@@ -22691,13 +22691,13 @@ DropDown.propTypes = {
|
|
|
22691
22691
|
|
|
22692
22692
|
var _excluded = ["duration", "delay", "children"];
|
|
22693
22693
|
|
|
22694
|
-
var _templateObject$
|
|
22694
|
+
var _templateObject$m, _templateObject2$h;
|
|
22695
22695
|
|
|
22696
22696
|
function ownKeys$3(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
22697
22697
|
|
|
22698
22698
|
function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$3(Object(source), true).forEach(function (key) { _defineProperty__default['default'](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$3(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
22699
|
-
var fadeIn = keyframes$2(_templateObject$
|
|
22700
|
-
var Wrapper$2 = newStyled.div(_templateObject2$
|
|
22699
|
+
var fadeIn = keyframes$2(_templateObject$m || (_templateObject$m = _taggedTemplateLiteral__default['default'](["\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n"])));
|
|
22700
|
+
var Wrapper$2 = newStyled.div(_templateObject2$h || (_templateObject2$h = _taggedTemplateLiteral__default['default'](["\n @media (prefers-reduced-motion: no-preference) {\n animation-name: ", ";\n animation-fill-mode: backwards;\n }\n"])), fadeIn);
|
|
22701
22701
|
|
|
22702
22702
|
var FadeIn = function FadeIn(_ref) {
|
|
22703
22703
|
var _ref$duration = _ref.duration,
|
|
@@ -22715,7 +22715,7 @@ var FadeIn = function FadeIn(_ref) {
|
|
|
22715
22715
|
}), children);
|
|
22716
22716
|
};
|
|
22717
22717
|
|
|
22718
|
-
var _templateObject$
|
|
22718
|
+
var _templateObject$l, _templateObject2$g, _templateObject3$c, _templateObject4$a, _templateObject5$a, _templateObject6$8, _templateObject7$6, _templateObject8$6, _templateObject9$6, _templateObject10$6, _DropdownLookup$propT;
|
|
22719
22719
|
|
|
22720
22720
|
var paddingBySize$a = function paddingBySize(size) {
|
|
22721
22721
|
if (size === "small") return "0.325rem 0.375rem";
|
|
@@ -22729,8 +22729,8 @@ var heightBySize$b = function heightBySize(size) {
|
|
|
22729
22729
|
if (size === "large") return "2.25rem";
|
|
22730
22730
|
};
|
|
22731
22731
|
|
|
22732
|
-
var spin$2 = keyframes$2(_templateObject$
|
|
22733
|
-
var Container$i = newStyled.div(_templateObject2$
|
|
22732
|
+
var spin$2 = keyframes$2(_templateObject$l || (_templateObject$l = _taggedTemplateLiteral__default['default'](["\n 100% {\n transform: rotate(360deg);\n }\n\n 0% {\n transform: rotate(0deg);\n }\n"])));
|
|
22733
|
+
var Container$i = newStyled.div(_templateObject2$g || (_templateObject2$g = _taggedTemplateLiteral__default['default'](["\n display: inline-block;\n position: relative;\n margin: 0;\n padding: 0;\n width: 100%;\n border-bottom: 0.125rem solid\n ", ";\n min-height: ", ";\n max-height: ", ";\n transition: all 250ms ease;\n border-radius: 0.125rem;\n background-color: ", ";\n"])), function (props) {
|
|
22734
22734
|
return props.disabled ? props.theme.palette.gray[900] : props.theme.palette[props.color].main;
|
|
22735
22735
|
}, function (props) {
|
|
22736
22736
|
return heightBySize$b(props.size);
|
|
@@ -22739,7 +22739,7 @@ var Container$i = newStyled.div(_templateObject2$f || (_templateObject2$f = _tag
|
|
|
22739
22739
|
}, function (props) {
|
|
22740
22740
|
return props.disabled ? props.theme.palette.gray[200] : props.theme.palette[props.color].lighter;
|
|
22741
22741
|
});
|
|
22742
|
-
var Inner$4 = newStyled.div(_templateObject3$
|
|
22742
|
+
var Inner$4 = newStyled.div(_templateObject3$c || (_templateObject3$c = _taggedTemplateLiteral__default['default'](["\n display: flex;\n"])));
|
|
22743
22743
|
var InputContainer$2 = newStyled.div(_templateObject4$a || (_templateObject4$a = _taggedTemplateLiteral__default['default'](["\n flex-grow: 1;\n box-sizing: border-box;\n display: flex;\n align-items: center;\n justify-content: center;\n"])));
|
|
22744
22744
|
var ButtonContainer$2 = newStyled.div(_templateObject5$a || (_templateObject5$a = _taggedTemplateLiteral__default['default'](["\n margin-left: auto;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: all 250ms ease;\n color: ", ";\n padding: 0 0.1875rem;\n cursor: ", ";\n"])), function (props) {
|
|
22745
22745
|
return props.disabled ? props.theme.palette.gray.textLight : props.theme.palette[props.color].main;
|
|
@@ -22766,7 +22766,7 @@ var Input$3 = newStyled.input(_templateObject8$6 || (_templateObject8$6 = _tagge
|
|
|
22766
22766
|
var Content$5 = newStyled.div(_templateObject9$6 || (_templateObject9$6 = _taggedTemplateLiteral__default['default'](["\n display: flex;\n position: absolute;\n background-color: white;\n z-index: 1;\n margin-top: 0.0625rem;\n padding: 0.1875rem;\n width: calc(100% - 0.625rem);\n border-radius: 0.15625rem;\n box-shadow: 0 0 0.375rem #bebebe;\n border: 0.125rem solid ", ";\n flex-direction: column;\n transition: all 250ms ease;\n"])), function (props) {
|
|
22767
22767
|
return props.theme.palette[props.color].main;
|
|
22768
22768
|
});
|
|
22769
|
-
var ContentItem$2 = newStyled.div(_templateObject10$
|
|
22769
|
+
var ContentItem$2 = newStyled.div(_templateObject10$6 || (_templateObject10$6 = _taggedTemplateLiteral__default['default'](["\n font-family: ", ";\n font-size: ", ";\n padding: 0.375rem;\n cursor: pointer;\n background-color: ", ";\n color: ", ";\n\n &:hover {\n background-color: whitesmoke;\n color: ", ";\n }\n"])), function (props) {
|
|
22770
22770
|
return props.theme.typography.fontFamily;
|
|
22771
22771
|
}, function (props) {
|
|
22772
22772
|
return props.theme.typography[props.size].fontSize;
|
|
@@ -23016,7 +23016,7 @@ DropdownLookup.propTypes = (_DropdownLookup$propT = {
|
|
|
23016
23016
|
onChange: PropTypes__default['default'].func
|
|
23017
23017
|
}, _defineProperty__default['default'](_DropdownLookup$propT, "load", PropTypes__default['default'].func), _defineProperty__default['default'](_DropdownLookup$propT, "clear", PropTypes__default['default'].func), _defineProperty__default['default'](_DropdownLookup$propT, "className", PropTypes__default['default'].string), _defineProperty__default['default'](_DropdownLookup$propT, "initialValue", PropTypes__default['default'].object), _defineProperty__default['default'](_DropdownLookup$propT, "notItemsFoundText", PropTypes__default['default'].string), _defineProperty__default['default'](_DropdownLookup$propT, "size", PropTypes__default['default'].oneOf(["small", "medium", "large"])), _defineProperty__default['default'](_DropdownLookup$propT, "color", PropTypes__default['default'].oneOf(["primary", "secondary", "success", "error", "warning", "gray"])), _DropdownLookup$propT);
|
|
23018
23018
|
|
|
23019
|
-
var _templateObject$
|
|
23019
|
+
var _templateObject$k;
|
|
23020
23020
|
|
|
23021
23021
|
var getPadding = function getPadding(size) {
|
|
23022
23022
|
if (size === "small") return "0.4125rem 0.34375rem";
|
|
@@ -23030,7 +23030,7 @@ var heightBySize$a = function heightBySize(size) {
|
|
|
23030
23030
|
if (size === "large") return "max-height: 2.375rem; min-height: 2.375rem;";
|
|
23031
23031
|
};
|
|
23032
23032
|
|
|
23033
|
-
var Span$1 = newStyled.span(_templateObject$
|
|
23033
|
+
var Span$1 = newStyled.span(_templateObject$k || (_templateObject$k = _taggedTemplateLiteral__default['default'](["\n display: inline-block;\n box-sizing: border-box;\n background-color: inherit;\n font-size: ", ";\n padding: ", ";\n color: ", ";\n ", "\n"])), function (props) {
|
|
23034
23034
|
return props.theme.typography[props.size].fontSize;
|
|
23035
23035
|
}, function (props) {
|
|
23036
23036
|
return getPadding(props.size);
|
|
@@ -23483,13 +23483,12 @@ var TextArea = /*#__PURE__*/React__default['default'].forwardRef(function (props
|
|
|
23483
23483
|
onChange(id, val);
|
|
23484
23484
|
};
|
|
23485
23485
|
|
|
23486
|
-
return /*#__PURE__*/React__default['default'].createElement(StyledTextInput$1,
|
|
23486
|
+
return /*#__PURE__*/React__default['default'].createElement(StyledTextInput$1, {
|
|
23487
23487
|
theme: theme,
|
|
23488
23488
|
size: size,
|
|
23489
23489
|
color: color,
|
|
23490
23490
|
onChange: handleOnChange,
|
|
23491
23491
|
onPaste: handleOnChange,
|
|
23492
|
-
onBlur: handleOnBlur,
|
|
23493
23492
|
className: className,
|
|
23494
23493
|
disabled: disabled,
|
|
23495
23494
|
value: val,
|
|
@@ -23501,11 +23500,13 @@ var TextArea = /*#__PURE__*/React__default['default'].forwardRef(function (props
|
|
|
23501
23500
|
onInput: function onInput(e) {
|
|
23502
23501
|
e.target.style.whiteSpace = "inherit";
|
|
23503
23502
|
e.target.style.height = "".concat(e.target.scrollHeight, "px");
|
|
23503
|
+
},
|
|
23504
|
+
onBlur: function onBlur(e) {
|
|
23505
|
+
e.target.style.height = heightBySize$7(size);
|
|
23506
|
+
e.target.style.whiteSpace = "nowrap";
|
|
23507
|
+
handleOnBlur(e);
|
|
23504
23508
|
}
|
|
23505
|
-
}
|
|
23506
|
-
e.target.style.height = heightBySize$7(size);
|
|
23507
|
-
e.target.style.whiteSpace = "nowrap";
|
|
23508
|
-
}));
|
|
23509
|
+
});
|
|
23509
23510
|
});
|
|
23510
23511
|
TextArea.defaultProps = {
|
|
23511
23512
|
id: "",
|
|
@@ -31356,11 +31357,11 @@ var AnimatePresence = function (_a) {
|
|
|
31356
31357
|
: childrenToRender.map(function (child) { return React.cloneElement(child); })));
|
|
31357
31358
|
};
|
|
31358
31359
|
|
|
31359
|
-
var _templateObject$
|
|
31360
|
-
var Overlay = newStyled(motion.div)(_templateObject$
|
|
31360
|
+
var _templateObject$j, _templateObject2$f;
|
|
31361
|
+
var Overlay = newStyled(motion.div)(_templateObject$j || (_templateObject$j = _taggedTemplateLiteral__default['default'](["\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: rgba(0, 0, 0, 0.3);\n z-index: ", ";\n"])), function (props) {
|
|
31361
31362
|
return props.zIndex;
|
|
31362
31363
|
});
|
|
31363
|
-
var ModalContainer = newStyled(motion.div)(_templateObject2$
|
|
31364
|
+
var ModalContainer = newStyled(motion.div)(_templateObject2$f || (_templateObject2$f = _taggedTemplateLiteral__default['default'](["\n width: 50%;\n background-color: white;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: ", ";\n border-radius: 0.2rem;\n background: white;\n z-index: ", ";\n"])), function (props) {
|
|
31364
31365
|
return props.width;
|
|
31365
31366
|
}, function (props) {
|
|
31366
31367
|
return props.zIndex;
|
|
@@ -31426,19 +31427,7 @@ function Modal$1(props) {
|
|
|
31426
31427
|
|
|
31427
31428
|
var onClickOutsideModal = function onClickOutsideModal(event) {
|
|
31428
31429
|
if (event.target !== event.currentTarget) return;
|
|
31429
|
-
if (clickOutsideToClose || !showHeader) onClose();
|
|
31430
|
-
};
|
|
31431
|
-
|
|
31432
|
-
var modalVariant = {
|
|
31433
|
-
initial: {
|
|
31434
|
-
opacity: 0
|
|
31435
|
-
},
|
|
31436
|
-
isOpen: {
|
|
31437
|
-
opacity: 1
|
|
31438
|
-
},
|
|
31439
|
-
exit: {
|
|
31440
|
-
opacity: 0
|
|
31441
|
-
}
|
|
31430
|
+
if (clickOutsideToClose || !showHeader) onClose(event);
|
|
31442
31431
|
};
|
|
31443
31432
|
var containerVariant = {
|
|
31444
31433
|
initial: {
|
|
@@ -31454,14 +31443,10 @@ function Modal$1(props) {
|
|
|
31454
31443
|
top: "-50%"
|
|
31455
31444
|
}
|
|
31456
31445
|
};
|
|
31457
|
-
return /*#__PURE__*/React__default['default'].createElement(
|
|
31458
|
-
initial: "initial",
|
|
31459
|
-
animate: "isOpen",
|
|
31460
|
-
exit: "exit",
|
|
31461
|
-
variants: modalVariant,
|
|
31446
|
+
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, open && /*#__PURE__*/React__default['default'].createElement(Overlay, _extends__default['default']({}, themeProps, {
|
|
31462
31447
|
onClick: onClickOutsideModal,
|
|
31463
31448
|
className: className
|
|
31464
|
-
}), /*#__PURE__*/React__default['default'].createElement(ModalContainer, _extends__default['default']({}, themeProps, {
|
|
31449
|
+
}), /*#__PURE__*/React__default['default'].createElement(AnimatePresence, null, /*#__PURE__*/React__default['default'].createElement(ModalContainer, _extends__default['default']({}, themeProps, {
|
|
31465
31450
|
initial: "initial",
|
|
31466
31451
|
animate: "isOpen",
|
|
31467
31452
|
exit: "exit",
|
|
@@ -31469,9 +31454,11 @@ function Modal$1(props) {
|
|
|
31469
31454
|
}), showHeader && /*#__PURE__*/React__default['default'].createElement(Header$1, themeProps, /*#__PURE__*/React__default['default'].createElement(Title$1, themeProps, header), /*#__PURE__*/React__default['default'].createElement(CloseButton$1, themeProps, /*#__PURE__*/React__default['default'].createElement(Button$1, _extends__default['default']({}, themeProps, {
|
|
31470
31455
|
icon: "times",
|
|
31471
31456
|
iconStyle: "solid",
|
|
31472
|
-
onClick:
|
|
31457
|
+
onClick: function onClick(e) {
|
|
31458
|
+
return onClose(e);
|
|
31459
|
+
},
|
|
31473
31460
|
color: basic ? "transparent" : themeProps.color
|
|
31474
|
-
})))), /*#__PURE__*/React__default['default'].createElement(Content$4, themeProps, children))));
|
|
31461
|
+
})))), /*#__PURE__*/React__default['default'].createElement(Content$4, themeProps, children)))));
|
|
31475
31462
|
}
|
|
31476
31463
|
|
|
31477
31464
|
Modal$1.defaultProps = {
|
|
@@ -31677,26 +31664,52 @@ var css_248z$6 = ".styles-module_dropbtn__3BuA0 {\n font-size: var(--base-addit
|
|
|
31677
31664
|
var styles$1 = {"dropbtn":"styles-module_dropbtn__3BuA0","disabled":"styles-module_disabled__3pCU6","dropdownContent":"styles-module_dropdownContent__2g5rN","dropdown":"styles-module_dropdown__zPTAO","linkInnerSpan":"styles-module_linkInnerSpan__2Gjny","linkIconSpan":"styles-module_linkIconSpan__1IQ0O","iconSpan":"styles-module_iconSpan__2IYf9","mymove":"styles-module_mymove__2DflL"};
|
|
31678
31665
|
styleInject(css_248z$6);
|
|
31679
31666
|
|
|
31667
|
+
var _templateObject$i, _templateObject2$e, _templateObject3$b;
|
|
31668
|
+
|
|
31669
|
+
var Dropdown = newStyled.div(_templateObject$i || (_templateObject$i = _taggedTemplateLiteral__default['default'](["\n display: ", ";\n position: absolute;\n background-color: white;\n min-width: 160px;\n border-radius: 3.5px;\n box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);\n z-index: 1;\n"])), function (props) {
|
|
31670
|
+
return props.show ? "block" : "none";
|
|
31671
|
+
});
|
|
31672
|
+
var ItemWrapper$2 = newStyled.div(_templateObject2$e || (_templateObject2$e = _taggedTemplateLiteral__default['default'](["\n padding: 2px;\n"])));
|
|
31673
|
+
var Item$4 = newStyled.a(_templateObject3$b || (_templateObject3$b = _taggedTemplateLiteral__default['default'](["\n background-color: white;\n color: ", ";\n padding: 6px 6px;\n text-decoration: none;\n display: block;\n font-size: 12px;\n padding: 2px;\n\n &:hover {\n background-color: whitesmoke;\n color: ", ";\n }\n"])), theme.palette.primary.main, theme.palette.primary.light); //============================================================
|
|
31674
|
+
|
|
31680
31675
|
var DropdownMenu = function DropdownMenu(props) {
|
|
31681
31676
|
var _props$actionData = props.actionData,
|
|
31682
31677
|
actionData = _props$actionData === void 0 ? function () {} : _props$actionData,
|
|
31683
31678
|
_props$items = props.items,
|
|
31684
31679
|
items = _props$items === void 0 ? [] : _props$items;
|
|
31685
|
-
|
|
31686
|
-
|
|
31687
|
-
|
|
31688
|
-
|
|
31689
|
-
|
|
31690
|
-
|
|
31691
|
-
|
|
31692
|
-
|
|
31693
|
-
|
|
31694
|
-
|
|
31695
|
-
|
|
31680
|
+
|
|
31681
|
+
var _useState = React.useState(false),
|
|
31682
|
+
_useState2 = _slicedToArray__default['default'](_useState, 2),
|
|
31683
|
+
show = _useState2[0],
|
|
31684
|
+
setShow = _useState2[1];
|
|
31685
|
+
|
|
31686
|
+
var onHover = function onHover() {
|
|
31687
|
+
if (props.disabled !== true) setShow(true);
|
|
31688
|
+
};
|
|
31689
|
+
|
|
31690
|
+
var onBlur = function onBlur() {
|
|
31691
|
+
setShow(false);
|
|
31692
|
+
};
|
|
31693
|
+
|
|
31694
|
+
return /*#__PURE__*/React__default['default'].createElement("div", null, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
31695
|
+
onMouseOver: onHover,
|
|
31696
|
+
onMouseOut: onBlur
|
|
31697
|
+
}, /*#__PURE__*/React__default['default'].createElement(Button$1, {
|
|
31698
|
+
disabled: props.disabled,
|
|
31699
|
+
onClick: onHover,
|
|
31700
|
+
icon: "bars",
|
|
31701
|
+
inverted: true
|
|
31702
|
+
})), /*#__PURE__*/React__default['default'].createElement(Dropdown, {
|
|
31703
|
+
show: show
|
|
31696
31704
|
}, items.map(function (x, i) {
|
|
31697
|
-
return /*#__PURE__*/React__default['default'].createElement(
|
|
31705
|
+
return /*#__PURE__*/React__default['default'].createElement(ItemWrapper$2, {
|
|
31698
31706
|
key: i,
|
|
31707
|
+
onMouseOver: onHover,
|
|
31708
|
+
onMouseOut: onBlur
|
|
31709
|
+
}, /*#__PURE__*/React__default['default'].createElement(Item$4, {
|
|
31699
31710
|
href: "#",
|
|
31711
|
+
onMouseOver: onHover,
|
|
31712
|
+
onMouseOut: onBlur,
|
|
31700
31713
|
onClick: function onClick(e) {
|
|
31701
31714
|
e.preventDefault();
|
|
31702
31715
|
x.action(actionData);
|
|
@@ -31706,8 +31719,8 @@ var DropdownMenu = function DropdownMenu(props) {
|
|
|
31706
31719
|
}, /*#__PURE__*/React__default['default'].createElement("span", {
|
|
31707
31720
|
className: styles$1.linkIconSpan
|
|
31708
31721
|
}, /*#__PURE__*/React__default['default'].createElement(Icon$1, {
|
|
31709
|
-
|
|
31710
|
-
})), x.name));
|
|
31722
|
+
icon: x.icon
|
|
31723
|
+
})), x.name)));
|
|
31711
31724
|
})));
|
|
31712
31725
|
};
|
|
31713
31726
|
|
|
@@ -49051,7 +49064,7 @@ var lodash = {exports: {}};
|
|
|
49051
49064
|
}.call(commonjsGlobal));
|
|
49052
49065
|
}(lodash, lodash.exports));
|
|
49053
49066
|
|
|
49054
|
-
var TableSelectionType
|
|
49067
|
+
var TableSelectionType = {
|
|
49055
49068
|
SINGLE: "single",
|
|
49056
49069
|
MULTIPLE: "multiple"
|
|
49057
49070
|
};
|
|
@@ -49301,27 +49314,27 @@ Pagination.propTypes = {
|
|
|
49301
49314
|
color: PropTypes__default['default'].oneOf(["primary", "secondary", "success", "error", "warning", "gray"])
|
|
49302
49315
|
};
|
|
49303
49316
|
|
|
49304
|
-
var _templateObject$f, _templateObject2$b, _templateObject3$9, _templateObject4$8, _templateObject5$8, _templateObject6$6, _templateObject7$5, _templateObject8$5, _templateObject9$5, _templateObject10$
|
|
49305
|
-
var Container$d = newStyled.div(_templateObject$f || (_templateObject$f = _taggedTemplateLiteral__default['default'](["\n
|
|
49306
|
-
var Wrapper$1 = newStyled.div(_templateObject2$b || (_templateObject2$b = _taggedTemplateLiteral__default['default']([""])));
|
|
49317
|
+
var _templateObject$f, _templateObject2$b, _templateObject3$9, _templateObject4$8, _templateObject5$8, _templateObject6$6, _templateObject7$5, _templateObject8$5, _templateObject9$5, _templateObject10$5, _templateObject11$4, _templateObject12$4;
|
|
49318
|
+
var Container$d = newStyled.div(_templateObject$f || (_templateObject$f = _taggedTemplateLiteral__default['default'](["\n border-radius: 3px;\n font-size: ", ";\n font-family: ", ";\n"])), theme.typography.small.fontSize, theme.typography.fontFamily);
|
|
49319
|
+
var Wrapper$1 = newStyled.div(_templateObject2$b || (_templateObject2$b = _taggedTemplateLiteral__default['default'](["\n display: block;\n overflow-x: auto;\n white-space: nowrap;\n"])));
|
|
49307
49320
|
var TableTable$1 = newStyled.table(_templateObject3$9 || (_templateObject3$9 = _taggedTemplateLiteral__default['default'](["\n border-collapse: collapse;\n width: 100%;\n"])));
|
|
49308
|
-
var TableHead$1 = newStyled.thead(_templateObject4$8 || (_templateObject4$8 = _taggedTemplateLiteral__default['default'](["\n
|
|
49321
|
+
var TableHead$1 = newStyled.thead(_templateObject4$8 || (_templateObject4$8 = _taggedTemplateLiteral__default['default'](["\n color: ", ";\n border-top: 1px solid #80808025;\n"])), theme.palette.primary.textDark);
|
|
49309
49322
|
var TableHeadRow$1 = newStyled.tr(_templateObject5$8 || (_templateObject5$8 = _taggedTemplateLiteral__default['default'](["\n border-bottom: 1px solid #80808025;\n"])));
|
|
49310
|
-
var TableHeadCell$1 = newStyled.th(_templateObject6$6 || (_templateObject6$6 = _taggedTemplateLiteral__default['default'](["\n text-align: left;\n transition: all 250ms ease;\n font-weight: 900;\n\n ", "\n\n &:first-of-type {\n border-radius: 3px 0 0 0;\n }\n\n &:last-of-type {\n border-radius: 0 3px 0 0;\n }\n\n &:hover {\n // background-color: ", ";\n background-color: whitesmoke;\n cursor: pointer;\n }\n"])), function (props) {
|
|
49323
|
+
var TableHeadCell$1 = newStyled.th(_templateObject6$6 || (_templateObject6$6 = _taggedTemplateLiteral__default['default'](["\n text-align: left;\n transition: all 250ms ease;\n font-weight: 900;\n font-size: 13px;\n\n ", "\n\n &:first-of-type {\n border-radius: 3px 0 0 0;\n }\n\n &:last-of-type {\n border-radius: 0 3px 0 0;\n }\n\n &:hover {\n // background-color: ", ";\n background-color: whitesmoke;\n cursor: pointer;\n }\n"])), function (props) {
|
|
49311
49324
|
return props.selectionCell === true ? "width: 27px; padding: 1px 1px 1px 6px;" : "padding: 5px 5px 5px 6px;";
|
|
49312
49325
|
}, theme.palette.primary.light);
|
|
49313
|
-
var HeaderInnerCell = newStyled.div(_templateObject7$5 || (_templateObject7$5 = _taggedTemplateLiteral__default['default'](["\n display: flex;\n flex-direction: row;\n align-items: center;\n // justify-content: center;\n\n & i {\n color: black;\n }\n"])));
|
|
49314
|
-
var HeaderCellText = newStyled.span(_templateObject8$5 || (_templateObject8$5 = _taggedTemplateLiteral__default['default'](["\n color: black;\n"])));
|
|
49315
|
-
var HeaderCellIcon = newStyled.span(_templateObject9$5 || (_templateObject9$5 = _taggedTemplateLiteral__default['default'](["\n color: black;\n margin-left: auto;\n\n & i {\n color: ", ";\n }\n"])), function (props) {
|
|
49326
|
+
var HeaderInnerCell$1 = newStyled.div(_templateObject7$5 || (_templateObject7$5 = _taggedTemplateLiteral__default['default'](["\n display: flex;\n flex-direction: row;\n align-items: center;\n // justify-content: center;\n\n & i {\n color: black;\n }\n"])));
|
|
49327
|
+
var HeaderCellText$1 = newStyled.span(_templateObject8$5 || (_templateObject8$5 = _taggedTemplateLiteral__default['default'](["\n color: black;\n"])));
|
|
49328
|
+
var HeaderCellIcon$1 = newStyled.span(_templateObject9$5 || (_templateObject9$5 = _taggedTemplateLiteral__default['default'](["\n color: black;\n margin-left: auto;\n\n & i {\n color: ", ";\n }\n"])), function (props) {
|
|
49316
49329
|
return props.sort ? "transparent" : "black";
|
|
49317
49330
|
});
|
|
49318
|
-
var TableBody$1 = newStyled.tbody(_templateObject10$
|
|
49319
|
-
var TableBodyRow$1 = newStyled.tr(_templateObject11$
|
|
49331
|
+
var TableBody$1 = newStyled.tbody(_templateObject10$5 || (_templateObject10$5 = _taggedTemplateLiteral__default['default']([""])));
|
|
49332
|
+
var TableBodyRow$1 = newStyled.tr(_templateObject11$4 || (_templateObject11$4 = _taggedTemplateLiteral__default['default'](["\n border-bottom: 1px solid transparent;\n border-top: 1px solid transparent;\n\n ", "\n\n ", "\n"])), function (props) {
|
|
49320
49333
|
if (props.selectedRow !== true) return "\n &:hover {\n & > td {\n // border-bottom: 1px solid ".concat(theme.palette.primary.light, ";\n // border-top: 1px solid ").concat(theme.palette.primary.light, ";\n background-color: whitesmoke;\n }\n \n cursor: pointer;\n }");else return "";
|
|
49321
49334
|
}, function (props) {
|
|
49322
49335
|
if (props.selectedRow === true) return "\n background-color: ".concat(theme.palette.primary.lighter, ";\n cursor: pointer;\n \n & > td {\n // border-bottom: 1px solid ").concat(theme.palette.primary.light, ";\n // border-top: 1px solid ").concat(theme.palette.primary.light, ";\n }\n ");else return "";
|
|
49323
49336
|
});
|
|
49324
|
-
var TableBodyCell$1 = newStyled.td(_templateObject12$
|
|
49337
|
+
var TableBodyCell$1 = newStyled.td(_templateObject12$4 || (_templateObject12$4 = _taggedTemplateLiteral__default['default'](["\n padding: ", ";\n"])), function (props) {
|
|
49325
49338
|
return props.selectionCell === true ? "1px 1px 1px 6px" : "5px 5px 5px 10px";
|
|
49326
49339
|
});
|
|
49327
49340
|
|
|
@@ -49491,7 +49504,9 @@ var TableView = function TableView(props) {
|
|
|
49491
49504
|
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement(TableBodyRow$1, {
|
|
49492
49505
|
selectedRow: rowSelected,
|
|
49493
49506
|
key: i
|
|
49494
|
-
}, renderSelectionCell(dataItem, rowSelected, i), Columns.
|
|
49507
|
+
}, renderSelectionCell(dataItem, rowSelected, i), Columns.filter(function (x) {
|
|
49508
|
+
return x.hide !== true;
|
|
49509
|
+
}).map(function (col, j) {
|
|
49495
49510
|
return renderBodyCell(dataItem, col, i, j);
|
|
49496
49511
|
})));
|
|
49497
49512
|
}; // const renderCell = (rowData, def, key) => {
|
|
@@ -49523,20 +49538,13 @@ var TableView = function TableView(props) {
|
|
|
49523
49538
|
var onClick = !isFunction(def.specialRender) ? function () {
|
|
49524
49539
|
ChangeToFormView(dataItem);
|
|
49525
49540
|
} : function () {};
|
|
49526
|
-
if (!EnableFormView) onClick = function onClick() {};
|
|
49527
|
-
|
|
49528
|
-
|
|
49529
|
-
|
|
49530
|
-
|
|
49531
|
-
onClick = function onClick() {
|
|
49532
|
-
return handleOnSelection(dataItem, {
|
|
49533
|
-
target: {
|
|
49534
|
-
checked: !checked
|
|
49535
|
-
}
|
|
49536
|
-
});
|
|
49537
|
-
};
|
|
49538
|
-
}
|
|
49541
|
+
if (!EnableFormView) onClick = function onClick() {}; // if (!EnableFormView && EnableSelection) {
|
|
49542
|
+
// var checked = isItemInArray(dataItem, SelectedData, SelectionIndicator);
|
|
49543
|
+
// onClick = () =>
|
|
49544
|
+
// handleOnSelection(dataItem, { target: { checked: !checked } });
|
|
49545
|
+
// }
|
|
49539
49546
|
|
|
49547
|
+
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType.SINGLE) onClick = function onClick() {};
|
|
49540
49548
|
var cellData = def.isObject === true ? dataItem[def.accessor][def.objectAccessor] : dataItem[def.accessor];
|
|
49541
49549
|
return /*#__PURE__*/React__default['default'].createElement(TableBodyCell$1, {
|
|
49542
49550
|
key: tabIndex,
|
|
@@ -49545,7 +49553,7 @@ var TableView = function TableView(props) {
|
|
|
49545
49553
|
};
|
|
49546
49554
|
|
|
49547
49555
|
var renderSelectionCell = function renderSelectionCell(dataItem, selected, rowIndex) {
|
|
49548
|
-
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType
|
|
49556
|
+
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType.SINGLE) return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
49549
49557
|
return /*#__PURE__*/React__default['default'].createElement(TableBodyCell$1, {
|
|
49550
49558
|
selectionCell: true,
|
|
49551
49559
|
key: -1
|
|
@@ -49636,7 +49644,7 @@ var TableView = function TableView(props) {
|
|
|
49636
49644
|
return /*#__PURE__*/React__default['default'].createElement(TableHeadCell$1, {
|
|
49637
49645
|
key: i,
|
|
49638
49646
|
onClick: IsLoading || hideOrdering ? function () {} : headerClick
|
|
49639
|
-
}, /*#__PURE__*/React__default['default'].createElement(HeaderInnerCell, null, /*#__PURE__*/React__default['default'].createElement(HeaderCellText, null, def.displayName), !hideOrdering && /*#__PURE__*/React__default['default'].createElement(HeaderCellIcon, {
|
|
49647
|
+
}, /*#__PURE__*/React__default['default'].createElement(HeaderInnerCell$1, null, /*#__PURE__*/React__default['default'].createElement(HeaderCellText$1, null, def.displayName), !hideOrdering && /*#__PURE__*/React__default['default'].createElement(HeaderCellIcon$1, {
|
|
49640
49648
|
sort: orderingIconClass === "sort"
|
|
49641
49649
|
}, /*#__PURE__*/React__default['default'].createElement(Icon$1, {
|
|
49642
49650
|
color: "white",
|
|
@@ -49645,13 +49653,13 @@ var TableView = function TableView(props) {
|
|
|
49645
49653
|
};
|
|
49646
49654
|
|
|
49647
49655
|
var renderSelectAllHeaderCell = function renderSelectAllHeaderCell() {
|
|
49648
|
-
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType
|
|
49656
|
+
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType.SINGLE) return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
49649
49657
|
if (SelectedEntirePage && Localization.DeselectAll) ;
|
|
49650
49658
|
if (!SelectedEntirePage && Localization.SelectAll) ;
|
|
49651
49659
|
return /*#__PURE__*/React__default['default'].createElement(TableHeadCell$1, {
|
|
49652
49660
|
selectionCell: true,
|
|
49653
49661
|
key: -1
|
|
49654
|
-
}, SelectionType === TableSelectionType
|
|
49662
|
+
}, SelectionType === TableSelectionType.MULTIPLE && /*#__PURE__*/React__default['default'].createElement(CheckBox, {
|
|
49655
49663
|
checked: SelectedEntirePage,
|
|
49656
49664
|
onChange: function onChange() {
|
|
49657
49665
|
return handleSelectAll(!SelectedEntirePage);
|
|
@@ -49662,7 +49670,9 @@ var TableView = function TableView(props) {
|
|
|
49662
49670
|
|
|
49663
49671
|
return /*#__PURE__*/React__default['default'].createElement(Container$d, null, /*#__PURE__*/React__default['default'].createElement(Wrapper$1, null, /*#__PURE__*/React__default['default'].createElement(TableTable$1, {
|
|
49664
49672
|
cellSpacing: 0
|
|
49665
|
-
}, /*#__PURE__*/React__default['default'].createElement(TableHead$1, null, /*#__PURE__*/React__default['default'].createElement(TableHeadRow$1, null, renderSelectAllHeaderCell(), Columns.
|
|
49673
|
+
}, /*#__PURE__*/React__default['default'].createElement(TableHead$1, null, /*#__PURE__*/React__default['default'].createElement(TableHeadRow$1, null, renderSelectAllHeaderCell(), Columns.filter(function (x) {
|
|
49674
|
+
return x.hide !== true;
|
|
49675
|
+
}).map(function (col, i) {
|
|
49666
49676
|
return renderHeaderCell(col, i);
|
|
49667
49677
|
}))), /*#__PURE__*/React__default['default'].createElement(TableBody$1, null, renderBody())))); // return (
|
|
49668
49678
|
// <div>
|
|
@@ -49725,7 +49735,7 @@ Spinner.propTypes = {
|
|
|
49725
49735
|
var css_248z$4 = ".fade1-enter {\n opacity: 0;\n}\n.fade1-exit {\n opacity: 1;\n}\n.fade1-enter-active {\n opacity: 1;\n}\n.fade1-exit-active {\n opacity: 0;\n}\n.fade1-enter-active,\n.fade1-exit-active {\n transition: opacity 330ms;\n}\n\n.fade2-enter {\n opacity: 0;\n}\n.fade2-exit {\n opacity: 1;\n}\n.fade2-enter-active {\n opacity: 1;\n}\n.fade2-exit-active {\n opacity: 0;\n}\n.fade2-enter-active,\n.fade2-exit-active {\n transition: opacity 330ms;\n}\n";
|
|
49726
49736
|
styleInject(css_248z$4);
|
|
49727
49737
|
|
|
49728
|
-
var _templateObject$d, _templateObject2$9, _templateObject3$8, _templateObject4$7, _templateObject5$7, _templateObject6$5, _templateObject7$4, _templateObject8$4, _templateObject9$4, _templateObject10$
|
|
49738
|
+
var _templateObject$d, _templateObject2$9, _templateObject3$8, _templateObject4$7, _templateObject5$7, _templateObject6$5, _templateObject7$4, _templateObject8$4, _templateObject9$4, _templateObject10$4, _templateObject11$3, _templateObject12$3, _templateObject13$2;
|
|
49729
49739
|
|
|
49730
49740
|
function ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
49731
49741
|
|
|
@@ -49755,7 +49765,9 @@ var getBorderSyle$1 = function getBorderSyle(borderStyle, read, theme, color) {
|
|
|
49755
49765
|
return css;
|
|
49756
49766
|
};
|
|
49757
49767
|
|
|
49758
|
-
var Container$c = newStyled.div(_templateObject$d || (_templateObject$d = _taggedTemplateLiteral__default['default'](["\n box-shadow:
|
|
49768
|
+
var Container$c = newStyled.div(_templateObject$d || (_templateObject$d = _taggedTemplateLiteral__default['default'](["\n box-shadow: ", ";\n border-radius: 3px;\n padding: 0 4px;\n"])), function (props) {
|
|
49769
|
+
return props.shadow === false ? "0" : "0 0 12px #bebebe";
|
|
49770
|
+
});
|
|
49759
49771
|
var TableContainer$1 = newStyled.div(_templateObject2$9 || (_templateObject2$9 = _taggedTemplateLiteral__default['default'](["\n font-family: var(--font-base-ubuntu);\n display: flex;\n justify-content: space-between;\n flex-direction: column;\n"])));
|
|
49760
49772
|
var PaginationContainer$1 = newStyled.div(_templateObject3$8 || (_templateObject3$8 = _taggedTemplateLiteral__default['default'](["\n border-top: 1px solid #80808025;\n"])));
|
|
49761
49773
|
var FormContainer$2 = newStyled.div(_templateObject4$7 || (_templateObject4$7 = _taggedTemplateLiteral__default['default'](["\n height: 100%;\n overflow-y: auto;\n max-height: calc(100vh - 120px);\n border-radius: 3px;\n\n ", "\n"])), function (props) {
|
|
@@ -49766,9 +49778,10 @@ var FlexItem$1 = newStyled.div(_templateObject6$5 || (_templateObject6$5 = _tagg
|
|
|
49766
49778
|
newStyled.div(_templateObject7$4 || (_templateObject7$4 = _taggedTemplateLiteral__default['default'](["\n margin-top: 5px;\n padding: 8px;\n border: 2px solid rgba(255, 0, 0, 0.725);\n background-color: rgba(252, 79, 79, 0.104);\n font-size: 11px;\n"])));
|
|
49767
49779
|
newStyled.div(_templateObject8$4 || (_templateObject8$4 = _taggedTemplateLiteral__default['default'](["\n color: rgb(180, 3, 3);\n"])));
|
|
49768
49780
|
var LoaderContainer$1 = newStyled.div(_templateObject9$4 || (_templateObject9$4 = _taggedTemplateLiteral__default['default'](["\n position: absolute;\n top: 0px;\n right: 0px;\n width: 100%;\n height: 100%;\n background-color: #eceaea;\n z-index: 10000000;\n opacity: 0.2;\n filter: alpha(opacity=20);\n"])));
|
|
49769
|
-
var LoaderContainerTransparent$1 = newStyled.div(_templateObject10$
|
|
49770
|
-
var Loader$1 = newStyled.div(_templateObject11$
|
|
49771
|
-
var DivRelative$1 = newStyled.div(_templateObject12$
|
|
49781
|
+
var LoaderContainerTransparent$1 = newStyled.div(_templateObject10$4 || (_templateObject10$4 = _taggedTemplateLiteral__default['default'](["\n position: absolute;\n top: 0px;\n right: 0px;\n width: 100%;\n height: 100%;\n background-color: transparent;\n z-index: 10000000;\n"])));
|
|
49782
|
+
var Loader$1 = newStyled.div(_templateObject11$3 || (_templateObject11$3 = _taggedTemplateLiteral__default['default'](["\n position: absolute;\n top: 48%;\n left: 47%;\n"])));
|
|
49783
|
+
var DivRelative$1 = newStyled.div(_templateObject12$3 || (_templateObject12$3 = _taggedTemplateLiteral__default['default'](["\n position: relative;\n"])));
|
|
49784
|
+
var FilteringContainer = newStyled.div(_templateObject13$2 || (_templateObject13$2 = _taggedTemplateLiteral__default['default'](["\n width: 100%;\n"])));
|
|
49772
49785
|
|
|
49773
49786
|
var DataView = function DataView(props) {
|
|
49774
49787
|
var emptyFunc = function emptyFunc() {};
|
|
@@ -49787,7 +49800,9 @@ var DataView = function DataView(props) {
|
|
|
49787
49800
|
Table = _ref.Table,
|
|
49788
49801
|
Form = _ref.Form;
|
|
49789
49802
|
|
|
49790
|
-
var _props$
|
|
49803
|
+
var _props$Shadow = props.Shadow,
|
|
49804
|
+
Shadow = _props$Shadow === void 0 ? true : _props$Shadow,
|
|
49805
|
+
_props$ChangeToFormVi = props.ChangeToFormView,
|
|
49791
49806
|
ChangeToFormView = _props$ChangeToFormVi === void 0 ? emptyFunc : _props$ChangeToFormVi,
|
|
49792
49807
|
_props$ChangeToTableV = props.ChangeToTableView,
|
|
49793
49808
|
ChangeToTableView = _props$ChangeToTableV === void 0 ? emptyFunc : _props$ChangeToTableV,
|
|
@@ -49802,9 +49817,12 @@ var DataView = function DataView(props) {
|
|
|
49802
49817
|
_props$OnSelectAll = props.OnSelectAll,
|
|
49803
49818
|
OnSelectAll = _props$OnSelectAll === void 0 ? emptyFunc : _props$OnSelectAll,
|
|
49804
49819
|
_props$FormView = props.FormView,
|
|
49805
|
-
FormView = _props$FormView === void 0 ? emptyFunc : _props$FormView
|
|
49806
|
-
props.FilteringView
|
|
49807
|
-
|
|
49820
|
+
FormView = _props$FormView === void 0 ? emptyFunc : _props$FormView,
|
|
49821
|
+
_props$FilteringView = props.FilteringView,
|
|
49822
|
+
FilteringView = _props$FilteringView === void 0 ? function () {
|
|
49823
|
+
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
49824
|
+
} : _props$FilteringView,
|
|
49825
|
+
_props$OnHeaderClick = props.OnHeaderClick,
|
|
49808
49826
|
OnHeaderClick = _props$OnHeaderClick === void 0 ? emptyFunc : _props$OnHeaderClick,
|
|
49809
49827
|
_props$OnRefresh = props.OnRefresh,
|
|
49810
49828
|
OnRefresh = _props$OnRefresh === void 0 ? emptyFunc : _props$OnRefresh,
|
|
@@ -49975,13 +49993,26 @@ var DataView = function DataView(props) {
|
|
|
49975
49993
|
}
|
|
49976
49994
|
},
|
|
49977
49995
|
disabled: Table.SelectedData.length === 0,
|
|
49978
|
-
icon: "
|
|
49996
|
+
icon: "arrow-circle-down",
|
|
49997
|
+
inverted: true
|
|
49979
49998
|
}));
|
|
49980
49999
|
}
|
|
49981
50000
|
|
|
49982
50001
|
return false;
|
|
49983
50002
|
};
|
|
49984
50003
|
|
|
50004
|
+
var renderContextMenu = function renderContextMenu() {
|
|
50005
|
+
if (Options.EnableActions && General.CurrentView === ViewType.TABLE_VIEW && Table.Actions && Table.Actions.length > 0) {
|
|
50006
|
+
return /*#__PURE__*/React__default['default'].createElement(FlexItem$1, null, /*#__PURE__*/React__default['default'].createElement(DropdownMenu, {
|
|
50007
|
+
disabled: freezeLoading([Table.SelectedData.length === 0]),
|
|
50008
|
+
items: Table.Actions || [],
|
|
50009
|
+
label: Localization.Actions,
|
|
50010
|
+
actionData: Table.SelectedData,
|
|
50011
|
+
downDoubleIconClassName: Icons.DownDouble
|
|
50012
|
+
}));
|
|
50013
|
+
} else return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
50014
|
+
};
|
|
50015
|
+
|
|
49985
50016
|
var renderRefreshButton = function renderRefreshButton() {
|
|
49986
50017
|
if (General.CurrentView !== ViewType.TABLE_VIEW || !General.DataFromBackend) return false;
|
|
49987
50018
|
return /*#__PURE__*/React__default['default'].createElement(FlexItem$1, null, /*#__PURE__*/React__default['default'].createElement(Button$1, {
|
|
@@ -50072,6 +50103,11 @@ var DataView = function DataView(props) {
|
|
|
50072
50103
|
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement(LoaderContainer$1, null), /*#__PURE__*/React__default['default'].createElement(LoaderContainerTransparent$1, null, /*#__PURE__*/React__default['default'].createElement(Loader$1, null, Table.Data.length > 2 ? /*#__PURE__*/React__default['default'].createElement(Spinner, null) : /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null))));
|
|
50073
50104
|
};
|
|
50074
50105
|
|
|
50106
|
+
var renderFiltering = function renderFiltering() {
|
|
50107
|
+
if (!Options.EnableFilters || General.CurrentView === ViewType.FORM_VIEW) return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
50108
|
+
return /*#__PURE__*/React__default['default'].createElement(FilteringContainer, null, FilteringView());
|
|
50109
|
+
};
|
|
50110
|
+
|
|
50075
50111
|
var renderFormViewMovement = function renderFormViewMovement() {
|
|
50076
50112
|
if (!Options.EnableFormViewMovement || Form.Mode === "ADD" || General.CurrentView === "TableView") return false;
|
|
50077
50113
|
return /*#__PURE__*/React__default['default'].createElement(FormViewMovement, {
|
|
@@ -50088,8 +50124,9 @@ var DataView = function DataView(props) {
|
|
|
50088
50124
|
var x4 = Options.EnableFormViewMovement && Form !== null && General.CurrentView === "FormView" && Form.Mode !== "ADD" ? true : false;
|
|
50089
50125
|
var x5 = Options.ReadOnly || !Options.EnableSwitchReadOnlyMode || Form === null || Form === undefined || General.CurrentView !== "FormView" ? false : true;
|
|
50090
50126
|
var x6 = General.CurrentView !== "TableView" ? false : true;
|
|
50091
|
-
var x7 = General.IsLookup && Table.SelectionType ===
|
|
50092
|
-
|
|
50127
|
+
var x7 = General.IsLookup && Table.SelectionType === "multiple" ? true : false;
|
|
50128
|
+
var x8 = Options.EnableActions && General.CurrentView === ViewType.TABLE_VIEW && Table.Actions && Table.Actions.length > 0;
|
|
50129
|
+
if (x1 || x2 || x3 || x4 || x5 || x6 || x7 || x8) return /*#__PURE__*/React__default['default'].createElement(HeaderContainer$1, null, renderChangeToTableView(), renderDeleteSelectedButton(), renderGoToAddButton(), renderFormViewMovement(), renderSwitchToEditModeButton(), renderRefreshButton(), renderLookupTakeValues(), renderContextMenu());
|
|
50093
50130
|
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
50094
50131
|
};
|
|
50095
50132
|
|
|
@@ -50141,7 +50178,9 @@ var DataView = function DataView(props) {
|
|
|
50141
50178
|
|
|
50142
50179
|
var renderComponent = function renderComponent() {
|
|
50143
50180
|
var key = General.CurrentView !== "TableView" && General.DataFromBackend;
|
|
50144
|
-
return /*#__PURE__*/React__default['default'].createElement(Container$c,
|
|
50181
|
+
return /*#__PURE__*/React__default['default'].createElement(Container$c, _extends__default['default']({}, themeProps, {
|
|
50182
|
+
shadow: Shadow
|
|
50183
|
+
}), renderFiltering(), renderHeader(), /*#__PURE__*/React__default['default'].createElement(SwitchTransition$1, {
|
|
50145
50184
|
mode: "out-in"
|
|
50146
50185
|
}, /*#__PURE__*/React__default['default'].createElement(CSSTransition$1, {
|
|
50147
50186
|
key: key,
|
|
@@ -50157,26 +50196,7 @@ var DataView = function DataView(props) {
|
|
|
50157
50196
|
node.addEventListener("transitionend", done, false);
|
|
50158
50197
|
},
|
|
50159
50198
|
classNames: "fade2"
|
|
50160
|
-
}, renderPagination())))
|
|
50161
|
-
// <div className={styles.flexContainer}>
|
|
50162
|
-
// <div className={styles.flexInnerContainer}>
|
|
50163
|
-
// {renderChangeToTableView()}
|
|
50164
|
-
// {renderSwitchToEditModeButton()}
|
|
50165
|
-
// {renderGoToAddButton()}
|
|
50166
|
-
// {renderDeleteSelectedButton()}
|
|
50167
|
-
// {renderDeleteConfirmationBox()}
|
|
50168
|
-
// {renderAddWithCopyButton()}
|
|
50169
|
-
// {renderLookupTakeValues()}
|
|
50170
|
-
// {renderRefreshButton()}
|
|
50171
|
-
// {renderContextMenu()}
|
|
50172
|
-
// </div>
|
|
50173
|
-
// <div className={styles.filterContainerHolder}>
|
|
50174
|
-
// {renderFiltering()}
|
|
50175
|
-
// </div>
|
|
50176
|
-
// </div>
|
|
50177
|
-
// <div className={mergeCSS([styles.view])}>{renderView()}</div>
|
|
50178
|
-
// </div>
|
|
50179
|
-
;
|
|
50199
|
+
}, renderPagination())));
|
|
50180
50200
|
};
|
|
50181
50201
|
|
|
50182
50202
|
return renderComponent();
|
|
@@ -50304,23 +50324,31 @@ FormMovement.propTypes = {
|
|
|
50304
50324
|
var css_248z$3 = "@charset \"UTF-8\";\n@import \"https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap\";\n\n:root {\n /* BASE COLORS */\n --color-base-blue: #00537a;\n --color-base-blue-darker: #003b57;\n --color-base-blue-lighter: #006999;\n --color-base-gray: #a2a5ab;\n --color-base-gray-darker: #777a80;\n --color-base-gray-lighter: #dee1e6;\n --color-base-gray-lightest: #f0f2f7;\n --color-base-green: #2a963c;\n --color-base-green-darker: #21732f;\n --color-base-green-ligher: #3eb051;\n --color-base-red: #e0223e;\n --color-base-red-darker: #e3566b;\n --color-base-red-ligher: #9c1f32;\n --color-base-dirty-white: #fcfcfc;\n --color-base-white: white;\n --color-base-backgroud: #dceff5;\n\n /* BASE FONTS */\n --font-base-ubuntu: \"Ubuntu\", sans-serif;\n --font-size-base: 14px;\n\n /* DISABLED */\n --disabled-bg-color: #dedede;\n --disabled-text-color: #666666;\n\n /* TRANSITIONS */\n --transition-base-duration: 220ms;\n}\n\n.styles-module_baseContainer__38IbG {\n display: flex;\n flex-direction: column;\n justify-content: center;\n padding: 1px;\n background-color: inherit;\n background: inherit;\n color: inherit;\n width: max-content;\n font-family: var(--font-base-ubuntu);\n}\n\n.styles-module_baseContainerWithSideLabel__2emzZ {\n width: min-content;\n display: flex;\n flex-direction: row;\n justify-content: center;\n padding: 1px;\n background-color: inherit;\n background: inherit;\n color: inherit;\n width: max-content;\n font-family: var(--font-base-ubuntu);\n}\n\n.styles-module_baseContainerWithSideLabel__2emzZ .styles-module_baseLabel__2rgVW {\n width: auto;\n}\n\n.styles-module_baseLabel__2rgVW {\n font-size: 0.8em;\n font-weight: 400;\n color: var(--color-base-gray-darker);\n width: 100%;\n display: flex;\n justify-content: left;\n align-items: flex-end;\n height: 1em;\n min-height: 1em;\n}\n\n.styles-module_baseInputHolder__3VF0D {\n border: 0px;\n height: 2em;\n min-height: 2em;\n width: 100%;\n}\n\n.styles-module_baseInputHolder__3VF0D > div {\n min-height: 100%;\n}\n\n.styles-module_baseInputHolder__3VF0D > div > div {\n min-height: 100%;\n}\n\n.styles-module_baseErrorText__M44G8 {\n font-size: 0.8em;\n font-weight: 400;\n color: var(--color-base-red);\n width: 100%;\n display: flex;\n justify-content: left;\n align-items: flex-start;\n height: 1em;\n min-height: 1em;\n}\n\n/*----------------- ICONS AND FONTS ------------------------*/\n\n.styles-module_lnc__16g9S {\n font-family: \"lnclines\";\n font-size: 12px;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.styles-module_ubuntuFont__ybxMw {\n font-family: var(--font-base-ubuntu);\n}\n\n.styles-module_lnc_anchor__1mOUZ:before {\n content: \"\\61\";\n}\n.styles-module_lnc_armchair__1ya1K:before {\n content: \"\\62\";\n}\n.styles-module_lnc_arrow_contract__g0Nfy:before {\n content: \"\\63\";\n}\n.styles-module_lnc_arrow_down__3vJHh:before {\n content: \"\\64\";\n}\n.styles-module_lnc_arrow_down_up__35ACC:before {\n content: \"\\65\";\n}\n.styles-module_lnc_arrow_expand__wPIqf:before {\n content: \"\\66\";\n}\n.styles-module_lnc_arrow_left___DGbf:before {\n content: \"\\67\";\n}\n.styles-module_lnc_arrow_left_right__1PiwM:before {\n content: \"\\68\";\n}\n.styles-module_lnc_arrow_right__1buc1:before {\n content: \"\\69\";\n}\n.styles-module_lnc_arrow_right_left__A_6hC:before {\n content: \"\\6a\";\n}\n.styles-module_lnc_arrow_up__27fzF:before {\n content: \"\\6b\";\n}\n.styles-module_lnc_arrow_up_down__3XdKK:before {\n content: \"\\6c\";\n}\n.styles-module_lnc_arrow_x__2PHh1:before {\n content: \"\\6d\";\n}\n.styles-module_lnc_arrow_y__2IWUO:before {\n content: \"\\6e\";\n}\n.styles-module_lnc_at__2SfkV:before {\n content: \"\\6f\";\n}\n.styles-module_lnc_badge__1ar9m:before {\n content: \"\\70\";\n}\n.styles-module_lnc_battery_empty__2UtUR:before {\n content: \"\\71\";\n}\n.styles-module_lnc_battery_full__3iSFV:before {\n content: \"\\72\";\n}\n.styles-module_lnc_battery_halfempty__HJsq8:before {\n content: \"\\73\";\n}\n.styles-module_lnc_battery_halffull__34JQt:before {\n content: \"\\74\";\n}\n.styles-module_lnc_bed__2Bv8u:before {\n content: \"\\75\";\n}\n.styles-module_lnc_bell__3-99o:before {\n content: \"\\76\";\n}\n.styles-module_lnc_bill__2WK08:before {\n content: \"\\77\";\n}\n.styles-module_lnc_book__2uUqR:before {\n content: \"\\78\";\n}\n.styles-module_lnc_bookmark__3xtMI:before {\n content: \"\\79\";\n}\n.styles-module_lnc_box__1GQ6r:before {\n content: \"\\7a\";\n}\n.styles-module_lnc_box2__1mgu3:before {\n content: \"\\41\";\n}\n.styles-module_lnc_briefcase__1WEOE:before {\n content: \"\\42\";\n}\n.styles-module_lnc_brightness__2b3sQ:before {\n content: \"\\43\";\n}\n.styles-module_lnc_broom__lxEs9:before {\n content: \"\\44\";\n}\n.styles-module_lnc_browser__11uX3:before {\n content: \"\\45\";\n}\n.styles-module_lnc_browser_software__3WUtv:before {\n content: \"\\46\";\n}\n.styles-module_lnc_brush__6mPfK:before {\n content: \"\\47\";\n}\n.styles-module_lnc_bubble__19XCr:before {\n content: \"\\48\";\n}\n.styles-module_lnc_bubble_check__3EDz2:before {\n content: \"\\49\";\n}\n.styles-module_lnc_bubble_dots__3UiH_:before {\n content: \"\\4a\";\n}\n.styles-module_lnc_bubbles__3IArb:before {\n content: \"\\4b\";\n}\n.styles-module_lnc_building__2xoeI:before {\n content: \"\\4c\";\n}\n.styles-module_lnc_bulb__o7i2f:before {\n content: \"\\4d\";\n}\n.styles-module_lnc_calculations__1xUSk:before {\n content: \"\\4e\";\n}\n.styles-module_lnc_calendar__3FtsF:before {\n content: \"\\4f\";\n}\n.styles-module_lnc_cctv__3RxxA:before {\n content: \"\\50\";\n}\n.styles-module_lnc_chart__1vxPE:before {\n content: \"\\51\";\n}\n.styles-module_lnc_chart_down__3lKSV:before {\n content: \"\\52\";\n}\n.styles-module_lnc_chart_pie__-pJZV:before {\n content: \"\\53\";\n}\n.styles-module_lnc_chart_up__1ZO5x:before {\n content: \"\\54\";\n}\n.styles-module_lnc_check__1RPUp:before {\n content: \"\\55\";\n}\n.styles-module_lnc_checkbox__2Dzv0:before {\n content: \"\\56\";\n}\n.styles-module_lnc_clock__1_sBx:before {\n content: \"\\57\";\n}\n.styles-module_lnc_clone__3EVg8:before {\n content: \"\\58\";\n}\n.styles-module_lnc_cloud__3G0gK:before {\n content: \"\\59\";\n}\n.styles-module_lnc_cloud_download__3wjl3:before {\n content: \"\\5a\";\n}\n.styles-module_lnc_cloud_no__2_RSN:before {\n content: \"\\30\";\n}\n.styles-module_lnc_cloud_upload__UtjX8:before {\n content: \"\\31\";\n}\n.styles-module_lnc_code__83D7f:before {\n content: \"\\32\";\n}\n.styles-module_lnc_coffe__3lvps:before {\n content: \"\\33\";\n}\n.styles-module_lnc_cog__1cfYg:before {\n content: \"\\34\";\n}\n.styles-module_lnc_comparation__15_VM:before {\n content: \"\\35\";\n}\n.styles-module_lnc_contract__3vyx2:before {\n content: \"\\36\";\n}\n.styles-module_lnc_cpu__1ASGP:before {\n content: \"\\37\";\n}\n.styles-module_lnc_creditcard__2wdg_:before {\n content: \"\\38\";\n}\n.styles-module_lnc_cursor__1keXd:before {\n content: \"\\39\";\n}\n.styles-module_lnc_cut__3n_2y:before {\n content: \"\\21\";\n}\n.styles-module_lnc_dashboard__3nW31:before {\n content: \"\\22\";\n}\n.styles-module_lnc_database__2n8Gb:before {\n content: \"\\23\";\n}\n.styles-module_lnc_down__2C-R7:before {\n content: \"\\24\";\n}\n.styles-module_lnc_download__3W4eN:before {\n content: \"\\25\";\n}\n.styles-module_lnc_download2__FQJRc:before {\n content: \"\\26\";\n}\n.styles-module_lnc_drop__prcFy:before {\n content: \"\\27\";\n}\n.styles-module_lnc_earth__2kk6C:before {\n content: \"\\28\";\n}\n.styles-module_lnc_equal__1idc4:before {\n content: \"\\29\";\n}\n.styles-module_lnc_eraser__140Tm:before {\n content: \"\\2a\";\n}\n.styles-module_lnc_exchange__1F8Xe:before {\n content: \"\\2b\";\n}\n.styles-module_lnc_exchange2__TK1ey:before {\n content: \"\\2c\";\n}\n.styles-module_lnc_expand__SuCNT:before {\n content: \"\\2d\";\n}\n.styles-module_lnc_eyedropper__ztoSi:before {\n content: \"\\2e\";\n}\n.styles-module_lnc_file__1qiUG:before {\n content: \"\\2f\";\n}\n.styles-module_lnc_file_broken__1fRaz:before {\n content: \"\\3a\";\n}\n.styles-module_lnc_file_check__1Afkt:before {\n content: \"\\3b\";\n}\n.styles-module_lnc_file_download__B7cX-:before {\n content: \"\\3c\";\n}\n.styles-module_lnc_file_image__2li0v:before {\n content: \"\\3d\";\n}\n.styles-module_lnc_file_minus__2GUoy:before {\n content: \"\\3e\";\n}\n.styles-module_lnc_file_plus__1tiZy:before {\n content: \"\\3f\";\n}\n.styles-module_lnc_file_text__NwM9m:before {\n content: \"\\40\";\n}\n.styles-module_lnc_file_upload__1IwPA:before {\n content: \"\\5b\";\n}\n.styles-module_lnc_file_warning__2e102:before {\n content: \"\\5d\";\n}\n.styles-module_lnc_file_x__BSBn1:before {\n content: \"\\5e\";\n}\n.styles-module_lnc_filter__1gYeq:before {\n content: \"\\5f\";\n}\n.styles-module_lnc_fingerprint__L3_2j:before {\n content: \"\\60\";\n}\n.styles-module_lnc_flag__3FTpw:before {\n content: \"\\7b\";\n}\n.styles-module_lnc_flashdrive__11xkO:before {\n content: \"\\7c\";\n}\n.styles-module_lnc_folder__1mArN:before {\n content: \"\\7d\";\n}\n.styles-module_lnc_fragile__a_RLx:before {\n content: \"\\7e\";\n}\n.styles-module_lnc_glass__wBAnb:before {\n content: \"\\5c\";\n}\n.styles-module_lnc_grid__1B2cs:before {\n content: \"\\e000\";\n}\n.styles-module_lnc_grid_masonery__6vAwP:before {\n content: \"\\e001\";\n}\n.styles-module_lnc_harddrive__3HecB:before {\n content: \"\\e002\";\n}\n.styles-module_lnc_headphones__1IRid:before {\n content: \"\\e003\";\n}\n.styles-module_lnc_heart__30_Dc:before {\n content: \"\\e004\";\n}\n.styles-module_lnc_home__1LWG5:before {\n content: \"\\e005\";\n}\n.styles-module_lnc_image__3XWmh:before {\n content: \"\\e006\";\n}\n.styles-module_lnc_in__IuJWj:before {\n content: \"\\e007\";\n}\n.styles-module_lnc_inbox__E74SS:before {\n content: \"\\e008\";\n}\n.styles-module_lnc_infinity__1RvvQ:before {\n content: \"\\e009\";\n}\n.styles-module_lnc_info__z95Ob:before {\n content: \"\\e00a\";\n}\n.styles-module_lnc_injection__2IsuK:before {\n content: \"\\e00b\";\n}\n.styles-module_lnc_internet__cxoEO:before {\n content: \"\\e00c\";\n}\n.styles-module_lnc_internet2__3LMdv:before {\n content: \"\\e00d\";\n}\n.styles-module_lnc_intersect__39vbH:before {\n content: \"\\e00e\";\n}\n.styles-module_lnc_key__2y70L:before {\n content: \"\\e00f\";\n}\n.styles-module_lnc_laptop__34gQU:before {\n content: \"\\e010\";\n}\n.styles-module_lnc_layers__36j1J:before {\n content: \"\\e011\";\n}\n.styles-module_lnc_layout__3Nu0-:before {\n content: \"\\e012\";\n}\n.styles-module_lnc_leaf__TnTjW:before {\n content: \"\\e013\";\n}\n.styles-module_lnc_left__10F5v:before {\n content: \"\\e014\";\n}\n.styles-module_lnc_lifering__2xRtL:before {\n content: \"\\e015\";\n}\n.styles-module_lnc_link__1L7Lq:before {\n content: \"\\e016\";\n}\n.styles-module_lnc_list__3cGnx:before {\n content: \"\\e017\";\n}\n.styles-module_lnc_list2__1g9i8:before {\n content: \"\\e018\";\n}\n.styles-module_lnc_location__2K1vc:before {\n content: \"\\e019\";\n}\n.styles-module_lnc_lock_off__1pwfe:before {\n content: \"\\e01a\";\n}\n.styles-module_lnc_lock_on__R7CsM:before {\n content: \"\\e01b\";\n}\n.styles-module_lnc_magnet__1xUko:before {\n content: \"\\e01c\";\n}\n.styles-module_lnc_mail__1-4Wq:before {\n content: \"\\e01d\";\n}\n.styles-module_lnc_map__2G6fo:before {\n content: \"\\e01e\";\n}\n.styles-module_lnc_megaphone__1U1Tj:before {\n content: \"\\e01f\";\n}\n.styles-module_lnc_microphone__1NMns:before {\n content: \"\\e020\";\n}\n.styles-module_lnc_microphone_no__2RWUY:before {\n content: \"\\e021\";\n}\n.styles-module_lnc_microscope__2AQCZ:before {\n content: \"\\e022\";\n}\n.styles-module_lnc_minus__28NzW:before {\n content: \"\\e023\";\n}\n.styles-module_lnc_mobile__3U8Lo:before {\n content: \"\\e024\";\n}\n.styles-module_lnc_monitor__1FYh4:before {\n content: \"\\e025\";\n}\n.styles-module_lnc_move__2cnG4:before {\n content: \"\\e026\";\n}\n.styles-module_lnc_move2__2-1c-:before {\n content: \"\\e027\";\n}\n.styles-module_lnc_network__1MijV:before {\n content: \"\\e028\";\n}\n.styles-module_lnc_onoff__1ZOVJ:before {\n content: \"\\e029\";\n}\n.styles-module_lnc_out___Zvj0:before {\n content: \"\\e02a\";\n}\n.styles-module_lnc_pause__2GVgP:before {\n content: \"\\e02b\";\n}\n.styles-module_lnc_pencil__2agKN:before {\n content: \"\\e02c\";\n}\n.styles-module_lnc_pencil_ruler__24nqS:before {\n content: \"\\e02d\";\n}\n.styles-module_lnc_peper_plane__1qFRM:before {\n content: \"\\e02e\";\n}\n.styles-module_lnc_peperclip__13DaN:before {\n content: \"\\e02f\";\n}\n.styles-module_lnc_phone__19YBI:before {\n content: \"\\e030\";\n}\n.styles-module_lnc_phone_ringing__a3Kv8:before {\n content: \"\\e031\";\n}\n.styles-module_lnc_photo__18Q1V:before {\n content: \"\\e032\";\n}\n.styles-module_lnc_photo_no__3oatk:before {\n content: \"\\e033\";\n}\n.styles-module_lnc_pin__3lM5Z:before {\n content: \"\\e034\";\n}\n.styles-module_lnc_plaster__2vI3i:before {\n content: \"\\e035\";\n}\n.styles-module_lnc_play__1OC8v:before {\n content: \"\\e036\";\n}\n.styles-module_lnc_plus__1c00f:before {\n content: \"\\e037\";\n}\n.styles-module_lnc_power_cable__Kxpjn:before {\n content: \"\\e038\";\n}\n.styles-module_lnc_presentation__34sFZ:before {\n content: \"\\e039\";\n}\n.styles-module_lnc_printer__CTvDs:before {\n content: \"\\e03a\";\n}\n.styles-module_lnc_question__Fx68o:before {\n content: \"\\e03b\";\n}\n.styles-module_lnc_redo__128IY:before {\n content: \"\\e03c\";\n}\n.styles-module_lnc_refresh__MrGzd:before {\n content: \"\\e03d\";\n}\n.styles-module_lnc_reload__9QGWt:before {\n content: \"\\e03e\";\n}\n.styles-module_lnc_repeat__2zF-q:before {\n content: \"\\e03f\";\n}\n.styles-module_lnc_replace__2NrlU:before {\n content: \"\\e040\";\n}\n.styles-module_lnc_right__1Tjn9:before {\n content: \"\\e041\";\n}\n.styles-module_lnc_rocket__2IgNF:before {\n content: \"\\e042\";\n}\n.styles-module_lnc_router__3Lmyt:before {\n content: \"\\e043\";\n}\n.styles-module_lnc_ruler__1zJy4:before {\n content: \"\\e044\";\n}\n.styles-module_lnc_safety__ODng_:before {\n content: \"\\e045\";\n}\n.styles-module_lnc_search__3fsCd:before {\n content: \"\\e047\";\n}\n.styles-module_lnc_settings__aYSqN:before {\n content: \"\\e048\";\n}\n.styles-module_lnc_settings2__1QxU2:before {\n content: \"\\e049\";\n}\n.styles-module_lnc_share__u6ngi:before {\n content: \"\\e04a\";\n}\n.styles-module_lnc_shield_check__2EWRM:before {\n content: \"\\e04b\";\n}\n.styles-module_lnc_shop_basket__26vEs:before {\n content: \"\\e04c\";\n}\n.styles-module_lnc_shop_cart__3N0Nv:before {\n content: \"\\e04d\";\n}\n.styles-module_lnc_shop_cart2__1TlL0:before {\n content: \"\\e04e\";\n}\n.styles-module_lnc_shuffle__vZLlv:before {\n content: \"\\e04f\";\n}\n.styles-module_lnc_slash__2YK_q:before {\n content: \"\\e050\";\n}\n.styles-module_lnc_spanner__129hA:before {\n content: \"\\e051\";\n}\n.styles-module_lnc_speaker__19oJH:before {\n content: \"\\e052\";\n}\n.styles-module_lnc_speaker_minus__BLI9-:before {\n content: \"\\e053\";\n}\n.styles-module_lnc_speaker_plus__1QtrR:before {\n content: \"\\e054\";\n}\n.styles-module_lnc_speaker_x__1VIfZ:before {\n content: \"\\e055\";\n}\n.styles-module_lnc_star__3kpNQ:before {\n content: \"\\e056\";\n}\n.styles-module_lnc_stop__tNiYb:before {\n content: \"\\e057\";\n}\n.styles-module_lnc_tag__2Fv-2:before {\n content: \"\\e059\";\n}\n.styles-module_lnc_target__VrxN8:before {\n content: \"\\e05a\";\n}\n.styles-module_lnc_trash__3cF6w:before {\n content: \"\\e05b\";\n}\n.styles-module_lnc_trolley__3OvXo:before {\n content: \"\\e05c\";\n}\n.styles-module_lnc_undo__1tJoX:before {\n content: \"\\e05d\";\n}\n.styles-module_lnc_up__3eKPI:before {\n content: \"\\e05e\";\n}\n.styles-module_lnc_upload__3gwmX:before {\n content: \"\\e05f\";\n}\n.styles-module_lnc_upload2__3hTP1:before {\n content: \"\\e060\";\n}\n.styles-module_lnc_user__1942u:before {\n content: \"\\e061\";\n}\n.styles-module_lnc_user2__21L0B:before {\n content: \"\\e062\";\n}\n.styles-module_lnc_user3__12PJt:before {\n content: \"\\e063\";\n}\n.styles-module_lnc_users__uUh5y:before {\n content: \"\\e064\";\n}\n.styles-module_lnc_video_player__eTudW:before {\n content: \"\\e065\";\n}\n.styles-module_lnc_wallet__NWMof:before {\n content: \"\\e066\";\n}\n.styles-module_lnc_warning__1XnCh:before {\n content: \"\\e067\";\n}\n.styles-module_lnc_wheelchair__-fneh:before {\n content: \"\\e068\";\n}\n.styles-module_lnc_wifi__1PB6c:before {\n content: \"\\e069\";\n}\n.styles-module_lnc_x__2NqwY:before {\n content: \"\\e06a\";\n}\n.styles-module_lnc_zoom_in__2p5NL:before {\n content: \"\\e06b\";\n}\n.styles-module_lnc_zoom_out__3-N8X:before {\n content: \"\\e06c\";\n}\n.styles-module_lnc_firewall__1T-xo:before {\n content: \"\\e06d\";\n}\n.styles-module_lnc_down_double__eQn46:before {\n content: \"\\e046\";\n}\n.styles-module_lnc_file_search__2NdXs:before {\n content: \"\\e06e\";\n}\n.styles-module_lnc_filter2__25zUC:before {\n content: \"\\e06f\";\n}\n.styles-module_lnc_flash__2spoO:before {\n content: \"\\e070\";\n}\n.styles-module_lnc_left_double__lGlAL:before {\n content: \"\\e071\";\n}\n.styles-module_lnc_right_double__2LGrY:before {\n content: \"\\e072\";\n}\n.styles-module_lnc_save__1es4N:before {\n content: \"\\e073\";\n}\n.styles-module_lnc_save_plus__3mggy:before {\n content: \"\\e074\";\n}\n.styles-module_lnc_server__npXWA:before {\n content: \"\\e075\";\n}\n.styles-module_lnc_table__Wz3bc:before {\n content: \"\\e076\";\n}\n.styles-module_lnc_table2__11-XY:before {\n content: \"\\e077\";\n}\n.styles-module_lnc_time_back__3_jgl:before {\n content: \"\\e078\";\n}\n.styles-module_lnc_time_forward__3ttuV:before {\n content: \"\\e079\";\n}\n.styles-module_lnc_up_double__2McTh:before {\n content: \"\\e07a\";\n}\n.styles-module_lnc_align_center__1lFF1:before {\n content: \"\\e058\";\n}\n.styles-module_lnc_align_left__2EEHH:before {\n content: \"\\e07b\";\n}\n.styles-module_lnc_align_right__wdwMo:before {\n content: \"\\e07c\";\n}\n.styles-module_lnc_car__2O1gg:before {\n content: \"\\e07d\";\n}\n.styles-module_lnc_cashregister__29tQ6:before {\n content: \"\\e07e\";\n}\n.styles-module_lnc_file_excel__1vcQh:before {\n content: \"\\e07f\";\n}\n.styles-module_lnc_file_pdf__2t9O1:before {\n content: \"\\e080\";\n}\n.styles-module_lnc_file_word__2DGwd:before {\n content: \"\\e081\";\n}\n.styles-module_lnc_puzzle__2C4g9:before {\n content: \"\\e082\";\n}\n.styles-module_lnc_rotate_vertical__NlAcx:before {\n content: \"\\e083\";\n}\n.styles-module_lnc_rotate_horizontal__1A2w-:before {\n content: \"\\e084\";\n}\n.styles-module_lnc_sum__10wqe:before {\n content: \"\\e085\";\n}\n.styles-module_lnc_usb__12ZHW:before {\n content: \"\\e086\";\n}\n.styles-module_lnc_checklist__2Sfo3:before {\n content: \"\\e087\";\n}\n.styles-module_lnc_checklist2__3UhHY:before {\n content: \"\\e088\";\n}\n.styles-module_lnc_concentrate__umSCo:before {\n content: \"\\e089\";\n}\n.styles-module_lnc_cutlery__13cgD:before {\n content: \"\\e08a\";\n}\n.styles-module_lnc_exchange3__3AZld:before {\n content: \"\\e08b\";\n}\n.styles-module_lnc_graduate_cap__1ByaN:before {\n content: \"\\e08c\";\n}\n.styles-module_lnc_id__2geFo:before {\n content: \"\\e08d\";\n}\n.styles-module_lnc_printer_check__3iWO0:before {\n content: \"\\e08e\";\n}\n.styles-module_lnc_slide_left__1lNSO:before {\n content: \"\\e08f\";\n}\n.styles-module_lnc_slide_right__2Kkpl:before {\n content: \"\\e090\";\n}\n.styles-module_lnc_user_switch__2Hki4:before {\n content: \"\\e091\";\n}\n.styles-module_lnc_aggregate__1b8Xb:before {\n content: \"\\e092\";\n}\n.styles-module_lnc_backspace__2SgjG:before {\n content: \"\\e093\";\n}\n.styles-module_lnc_code2__1EbMZ:before {\n content: \"\\e094\";\n}\n.styles-module_lnc_edit__3BwLt:before {\n content: \"\\e095\";\n}\n.styles-module_lnc_handshake__k9t7X:before {\n content: \"\\e096\";\n}\n.styles-module_lnc_input__1BsI_:before {\n content: \"\\e097\";\n}\n.styles-module_lnc_intersect2__D0t4N:before {\n content: \"\\e098\";\n}\n.styles-module_lnc_logo_dropbox__1bBky:before {\n content: \"\\e099\";\n}\n.styles-module_lnc_logo_facebook__2LFx7:before {\n content: \"\\e09a\";\n}\n.styles-module_lnc_logo_gdrive__lm2Xx:before {\n content: \"\\e09b\";\n}\n.styles-module_lnc_logo_hangouts__3mBpc:before {\n content: \"\\e09c\";\n}\n.styles-module_lnc_logo_instagram__1yoE_:before {\n content: \"\\e09d\";\n}\n.styles-module_lnc_logo_linkedin___bnn1:before {\n content: \"\\e09e\";\n}\n.styles-module_lnc_logo_messenger__22UXJ:before {\n content: \"\\e09f\";\n}\n.styles-module_lnc_logo_paypal__1ctNm:before {\n content: \"\\e0a0\";\n}\n.styles-module_lnc_logo_pinterest__2WBvf:before {\n content: \"\\e0a1\";\n}\n.styles-module_lnc_logo_playstore__2dNKy:before {\n content: \"\\e0a2\";\n}\n.styles-module_lnc_logo_skype__4zqs0:before {\n content: \"\\e0a3\";\n}\n.styles-module_lnc_logo_twitter__2qNGG:before {\n content: \"\\e0a4\";\n}\n.styles-module_lnc_logo_viber__a0Vu8:before {\n content: \"\\e0a5\";\n}\n.styles-module_lnc_logo_whatsapp__1pRGX:before {\n content: \"\\e0a6\";\n}\n.styles-module_lnc_logo_youtube__2rBKz:before {\n content: \"\\e0a7\";\n}\n.styles-module_lnc_measure__7wXpY:before {\n content: \"\\e0a8\";\n}\n.styles-module_lnc_percent__3qmzf:before {\n content: \"\\e0a9\";\n}\n.styles-module_lnc_scan_barcode__2BfUT:before {\n content: \"\\e0aa\";\n}\n.styles-module_lnc_scan_number__20DM5:before {\n content: \"\\e0ab\";\n}\n.styles-module_lnc_scan_qr__2TG1C:before {\n content: \"\\e0ac\";\n}\n.styles-module_lnc_user_speaker__2XqGz:before {\n content: \"\\e0ad\";\n}\n.styles-module_lnc_users_connected__2gVEp:before {\n content: \"\\e0ae\";\n}\n.styles-module_lnc_dots__iFPx7:before {\n content: \"\\e0af\";\n}\n.styles-module_lnc_grid_plus__13nKs:before {\n content: \"\\e0b0\";\n}\n.styles-module_lnc_sort_vertical__27lK1:before {\n content: \"\\e0b1\";\n}\n.styles-module_lnc_sort_horizontal__NCpoS:before {\n content: \"\\e0b2\";\n}\n.styles-module_lnc_grid_minus__YaD5A:before {\n content: \"\\e0b3\";\n}\n.styles-module_lnc_calendar_check__Xk2zp:before {\n content: \"\\e0b4\";\n}\n.styles-module_lnc_calendar_minus__1WJp0:before {\n content: \"\\e0b5\";\n}\n.styles-module_lnc_calendar_plus__3dmG_:before {\n content: \"\\e0b6\";\n}\n.styles-module_lnc_calendar_x__MI4zD:before {\n content: \"\\e0b7\";\n}\n.styles-module_lnc_eye__3StZy:before {\n content: \"\\e0b8\";\n}\n.styles-module_lnc_eye_no__3YiHU:before {\n content: \"\\e0b9\";\n}\n";
|
|
50305
50325
|
styleInject(css_248z$3);
|
|
50306
50326
|
|
|
50307
|
-
var _templateObject$b, _templateObject2$8, _templateObject3$7, _templateObject4$6, _templateObject5$6, _templateObject6$4, _templateObject7$3, _templateObject8$3, _templateObject9$3;
|
|
50308
|
-
var Container$b = newStyled.div(_templateObject$b || (_templateObject$b = _taggedTemplateLiteral__default['default'](["\n border
|
|
50327
|
+
var _templateObject$b, _templateObject2$8, _templateObject3$7, _templateObject4$6, _templateObject5$6, _templateObject6$4, _templateObject7$3, _templateObject8$3, _templateObject9$3, _templateObject10$3, _templateObject11$2, _templateObject12$2, _templateObject13$1;
|
|
50328
|
+
var Container$b = newStyled.div(_templateObject$b || (_templateObject$b = _taggedTemplateLiteral__default['default'](["\n border-radius: 3px;\n font-size: ", ";\n font-family: ", ";\n"])), theme.typography.small.fontSize, theme.typography.fontFamily);
|
|
50309
50329
|
var Wrapper = newStyled.div(_templateObject2$8 || (_templateObject2$8 = _taggedTemplateLiteral__default['default']([""])));
|
|
50310
50330
|
var TableTable = newStyled.table(_templateObject3$7 || (_templateObject3$7 = _taggedTemplateLiteral__default['default'](["\n border-collapse: collapse;\n width: 100%;\n"])));
|
|
50311
|
-
var TableHead = newStyled.thead(_templateObject4$6 || (_templateObject4$6 = _taggedTemplateLiteral__default['default'](["\n
|
|
50312
|
-
var TableHeadRow = newStyled.tr(_templateObject5$6 || (_templateObject5$6 = _taggedTemplateLiteral__default['default']([""])));
|
|
50313
|
-
var TableHeadCell = newStyled.th(_templateObject6$4 || (_templateObject6$4 = _taggedTemplateLiteral__default['default'](["\n text-align: left;\n transition: all 250ms ease;\n\n ", "\n\n &:first-of-type {\n border-radius: 3px 0 0 0;\n }\n\n &:last-of-type {\n border-radius: 0 3px 0 0;\n }\n\n &:hover {\n background-color: ", ";\n cursor: pointer;\n }\n"])), function (props) {
|
|
50331
|
+
var TableHead = newStyled.thead(_templateObject4$6 || (_templateObject4$6 = _taggedTemplateLiteral__default['default'](["\n color: ", ";\n border-top: 1px solid #80808025;\n"])), theme.palette.primary.textDark);
|
|
50332
|
+
var TableHeadRow = newStyled.tr(_templateObject5$6 || (_templateObject5$6 = _taggedTemplateLiteral__default['default'](["\n border-bottom: 1px solid #80808025;\n"])));
|
|
50333
|
+
var TableHeadCell = newStyled.th(_templateObject6$4 || (_templateObject6$4 = _taggedTemplateLiteral__default['default'](["\n text-align: left;\n transition: all 250ms ease;\n font-weight: 900;\n\n ", "\n\n &:first-of-type {\n border-radius: 3px 0 0 0;\n }\n\n &:last-of-type {\n border-radius: 0 3px 0 0;\n }\n\n &:hover {\n // background-color: ", ";\n background-color: #f0f0f0;\n cursor: pointer;\n }\n"])), function (props) {
|
|
50314
50334
|
return props.selectionCell === true ? "width: 27px; padding: 1px 1px 1px 6px;" : "padding: 5px 5px 5px 6px;";
|
|
50315
50335
|
}, theme.palette.primary.light);
|
|
50316
|
-
var
|
|
50317
|
-
var
|
|
50318
|
-
|
|
50336
|
+
var HeaderInnerCell = newStyled.div(_templateObject7$3 || (_templateObject7$3 = _taggedTemplateLiteral__default['default'](["\n display: flex;\n flex-direction: row;\n align-items: center;\n // justify-content: center;\n\n & i {\n color: black;\n }\n"])));
|
|
50337
|
+
var HeaderCellText = newStyled.span(_templateObject8$3 || (_templateObject8$3 = _taggedTemplateLiteral__default['default'](["\n color: black;\n"])));
|
|
50338
|
+
var HeaderCellIcon = newStyled.span(_templateObject9$3 || (_templateObject9$3 = _taggedTemplateLiteral__default['default'](["\n color: black;\n margin-left: auto;\n\n & i {\n color: ", ";\n }\n"])), function (props) {
|
|
50339
|
+
return props.sort ? "transparent" : "black";
|
|
50340
|
+
});
|
|
50341
|
+
var TableBody = newStyled.tbody(_templateObject10$3 || (_templateObject10$3 = _taggedTemplateLiteral__default['default']([""])));
|
|
50342
|
+
var TableBodyRowNested = newStyled.tr(_templateObject11$2 || (_templateObject11$2 = _taggedTemplateLiteral__default['default'](["\n border-bottom: 1px solid transparent;\n border-top: 1px solid transparent;\n background-color: #f7f7f7;\n cursor: normal;\n"])));
|
|
50343
|
+
var TableBodyRow = newStyled.tr(_templateObject12$2 || (_templateObject12$2 = _taggedTemplateLiteral__default['default'](["\n border-bottom: 1px solid transparent;\n border-top: 1px solid transparent;\n background-color: ", ";\n\n ", "\n ", ";\n"])), function (props) {
|
|
50344
|
+
return props.nested ? "#f7f7f7" : "inherit";
|
|
50345
|
+
}, function (props) {
|
|
50346
|
+
if (props.selectedRow !== true) return "\n &:hover {\n & > td {\n background-color: #f0f0f0;\n }\n \n cursor: pointer;\n }";else return "";
|
|
50319
50347
|
}, function (props) {
|
|
50320
|
-
if (props.selectedRow === true) return "\n
|
|
50348
|
+
if (props.selectedRow === true) return "\n background-color: ".concat(theme.palette.primary.lighter, ";\n cursor: pointer;\n ");else return "";
|
|
50321
50349
|
});
|
|
50322
|
-
var TableBodyCell = newStyled.td(
|
|
50323
|
-
return props.selectionCell === true ? "
|
|
50350
|
+
var TableBodyCell = newStyled.td(_templateObject13$1 || (_templateObject13$1 = _taggedTemplateLiteral__default['default'](["\n padding: ", ";\n"])), function (props) {
|
|
50351
|
+
return props.selectionCell === true ? "1px 1px 1px 6px" : "5px 5px 5px 10px";
|
|
50324
50352
|
});
|
|
50325
50353
|
|
|
50326
50354
|
var Table = function Table(props) {
|
|
@@ -50368,8 +50396,13 @@ var Table = function Table(props) {
|
|
|
50368
50396
|
_ref3$EnableOrdering = _ref3.EnableOrdering,
|
|
50369
50397
|
EnableOrdering = _ref3$EnableOrdering === void 0 ? false : _ref3$EnableOrdering,
|
|
50370
50398
|
_ref3$SelectionType = _ref3.SelectionType,
|
|
50371
|
-
SelectionType = _ref3$SelectionType === void 0 ? TableSelectionType
|
|
50372
|
-
|
|
50399
|
+
SelectionType = _ref3$SelectionType === void 0 ? TableSelectionType.SINGLE : _ref3$SelectionType; //======================== STATE ============================================
|
|
50400
|
+
|
|
50401
|
+
|
|
50402
|
+
var _useState = React.useState([]),
|
|
50403
|
+
_useState2 = _slicedToArray__default['default'](_useState, 2),
|
|
50404
|
+
expandedColumns = _useState2[0],
|
|
50405
|
+
setExpandedColumns = _useState2[1]; //======================== METHODS ==========================================
|
|
50373
50406
|
|
|
50374
50407
|
|
|
50375
50408
|
var handleSelectAll = function handleSelectAll() {
|
|
@@ -50389,58 +50422,55 @@ var Table = function Table(props) {
|
|
|
50389
50422
|
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, Data.map(function (dataItem, i) {
|
|
50390
50423
|
return renderBodyRow(dataItem, i);
|
|
50391
50424
|
}));
|
|
50392
|
-
};
|
|
50393
|
-
|
|
50394
|
-
|
|
50395
|
-
|
|
50396
|
-
|
|
50397
|
-
|
|
50398
|
-
|
|
50399
|
-
|
|
50400
|
-
|
|
50401
|
-
|
|
50402
|
-
|
|
50403
|
-
|
|
50404
|
-
|
|
50405
|
-
|
|
50406
|
-
|
|
50407
|
-
|
|
50408
|
-
|
|
50409
|
-
|
|
50410
|
-
|
|
50411
|
-
|
|
50412
|
-
// return dataItem[col.accessor].map((x, i) => {
|
|
50413
|
-
// return (
|
|
50414
|
-
// <tr
|
|
50415
|
-
// key={i + 100}
|
|
50416
|
-
// className={[
|
|
50417
|
-
// style["table-row-group-by-nested"],
|
|
50418
|
-
// style["table-row-odd"],
|
|
50419
|
-
// ].join(" ")}
|
|
50420
|
-
// >
|
|
50421
|
-
// {renderEmptySelectionCell()}
|
|
50422
|
-
// {Columns.map((col, j) => {
|
|
50423
|
-
// return renderBodyCell(x, col, i + 100, j + 100);
|
|
50424
|
-
// })}
|
|
50425
|
-
// </tr>
|
|
50426
|
-
// );
|
|
50427
|
-
// });
|
|
50428
|
-
// }
|
|
50429
|
-
// return <></>;
|
|
50430
|
-
// };
|
|
50425
|
+
};
|
|
50426
|
+
|
|
50427
|
+
var renderEmptySelectionCell = function renderEmptySelectionCell() {
|
|
50428
|
+
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType.SINGLE) return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
50429
|
+
return /*#__PURE__*/React__default['default'].createElement("td", null);
|
|
50430
|
+
};
|
|
50431
|
+
|
|
50432
|
+
var renderGroupBodyRows = function renderGroupBodyRows(col, dataItem) {
|
|
50433
|
+
var nestedArray;
|
|
50434
|
+
if (col) nestedArray = dataItem[col.accessor];
|
|
50435
|
+
|
|
50436
|
+
if (nestedArray) {
|
|
50437
|
+
return dataItem[col.accessor].map(function (x, i) {
|
|
50438
|
+
return /*#__PURE__*/React__default['default'].createElement(TableBodyRowNested, {
|
|
50439
|
+
key: i + 100
|
|
50440
|
+
}, renderEmptySelectionCell(), /*#__PURE__*/React__default['default'].createElement("td", null), Columns.map(function (col, j) {
|
|
50441
|
+
return renderBodyCell(x, col, i + 100, j + 100);
|
|
50442
|
+
}));
|
|
50443
|
+
});
|
|
50444
|
+
}
|
|
50431
50445
|
|
|
50446
|
+
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
50447
|
+
};
|
|
50432
50448
|
|
|
50433
50449
|
var renderBodyRow = function renderBodyRow(dataItem, i) {
|
|
50434
|
-
Columns.find(function (x) {
|
|
50435
|
-
return x.nested;
|
|
50450
|
+
var nested = Columns.find(function (x) {
|
|
50451
|
+
return x.nested === true;
|
|
50436
50452
|
});
|
|
50437
50453
|
var rowSelected = isRowSelected(dataItem);
|
|
50454
|
+
var nestedArray;
|
|
50455
|
+
if (nested) nestedArray = dataItem[nested.accessor];
|
|
50438
50456
|
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement(TableBodyRow, {
|
|
50439
50457
|
selectedRow: rowSelected,
|
|
50440
|
-
key: i
|
|
50441
|
-
|
|
50458
|
+
key: i,
|
|
50459
|
+
onClick: function onClick() {
|
|
50460
|
+
if (expandedColumns.includes(dataItem[SelectionIndicator])) {
|
|
50461
|
+
setExpandedColumns(expandedColumns.filter(function (x) {
|
|
50462
|
+
return x != dataItem[SelectionIndicator];
|
|
50463
|
+
}));
|
|
50464
|
+
} else {
|
|
50465
|
+
setExpandedColumns([].concat(_toConsumableArray__default['default'](expandedColumns), [dataItem[SelectionIndicator]]));
|
|
50466
|
+
}
|
|
50467
|
+
}
|
|
50468
|
+
}, renderSelectionCell(dataItem, rowSelected), nested && nestedArray && nestedArray.length > 0 ? /*#__PURE__*/React__default['default'].createElement("td", null, /*#__PURE__*/React__default['default'].createElement(Icon$1, {
|
|
50469
|
+
color: "primary",
|
|
50470
|
+
icon: expandedColumns.includes(dataItem[SelectionIndicator]) ? "caret-square-down" : "caret-square-right"
|
|
50471
|
+
})) : /*#__PURE__*/React__default['default'].createElement("td", null), Columns.map(function (col, j) {
|
|
50442
50472
|
return renderBodyCell(dataItem, col, i, j);
|
|
50443
|
-
})));
|
|
50473
|
+
})), expandedColumns.includes(dataItem[SelectionIndicator]) && renderGroupBodyRows(nested, dataItem));
|
|
50444
50474
|
};
|
|
50445
50475
|
|
|
50446
50476
|
var renderHeaderCell = function renderHeaderCell(col, i) {
|
|
@@ -50450,21 +50480,23 @@ var Table = function Table(props) {
|
|
|
50450
50480
|
return OnOrder(col.accessor);
|
|
50451
50481
|
};
|
|
50452
50482
|
var orderingIconClass = "sort";
|
|
50453
|
-
if (isOrderByColumn && Ascending) orderingIconClass = "
|
|
50454
|
-
if (isOrderByColumn && Descending) orderingIconClass = "
|
|
50483
|
+
if (isOrderByColumn && Ascending) orderingIconClass = "long-arrow-alt-up";
|
|
50484
|
+
if (isOrderByColumn && Descending) orderingIconClass = "long-arrow-alt-down";
|
|
50455
50485
|
if (isOrderByColumn && !Ascending && !Descending) orderingIconClass = "sort";
|
|
50456
50486
|
if (!isOrderByColumn || Accessor === "") orderingIconClass = "sort";
|
|
50457
50487
|
return /*#__PURE__*/React__default['default'].createElement(TableHeadCell, {
|
|
50458
50488
|
key: i,
|
|
50459
50489
|
onClick: onClick
|
|
50460
|
-
}, /*#__PURE__*/React__default['default'].createElement(
|
|
50490
|
+
}, /*#__PURE__*/React__default['default'].createElement(HeaderInnerCell, null, /*#__PURE__*/React__default['default'].createElement(HeaderCellText, null, " ", col.name), !hideOrdering && /*#__PURE__*/React__default['default'].createElement(HeaderCellIcon, {
|
|
50491
|
+
sort: orderingIconClass === "sort"
|
|
50492
|
+
}, /*#__PURE__*/React__default['default'].createElement(Icon$1, {
|
|
50461
50493
|
color: "white",
|
|
50462
50494
|
icon: orderingIconClass
|
|
50463
|
-
})));
|
|
50495
|
+
}))));
|
|
50464
50496
|
};
|
|
50465
50497
|
|
|
50466
50498
|
var renderSelectionCell = function renderSelectionCell(dataItem, selected) {
|
|
50467
|
-
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType
|
|
50499
|
+
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType.SINGLE) return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null); // console.log(dataItem, selected);
|
|
50468
50500
|
|
|
50469
50501
|
return /*#__PURE__*/React__default['default'].createElement(TableBodyCell, {
|
|
50470
50502
|
selectionCell: true,
|
|
@@ -50489,13 +50521,13 @@ var Table = function Table(props) {
|
|
|
50489
50521
|
};
|
|
50490
50522
|
|
|
50491
50523
|
var renderSelectAllHeaderCell = function renderSelectAllHeaderCell() {
|
|
50492
|
-
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType
|
|
50524
|
+
if (!EnableSelection || ReadOnly || IsLookup && SelectionType === TableSelectionType.SINGLE) return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
50493
50525
|
if (SelectedEntirePage && Localization.DeselectAll) ;
|
|
50494
50526
|
if (!SelectedEntirePage && Localization.SelectAll) ;
|
|
50495
50527
|
return /*#__PURE__*/React__default['default'].createElement(TableHeadCell, {
|
|
50496
50528
|
selectionCell: true,
|
|
50497
50529
|
key: -1
|
|
50498
|
-
}, SelectionType === TableSelectionType
|
|
50530
|
+
}, SelectionType === TableSelectionType.MULTIPLE && /*#__PURE__*/React__default['default'].createElement(CheckBox, {
|
|
50499
50531
|
checked: SelectedEntirePage,
|
|
50500
50532
|
onChange: handleSelectAll
|
|
50501
50533
|
}));
|
|
@@ -50503,7 +50535,11 @@ var Table = function Table(props) {
|
|
|
50503
50535
|
|
|
50504
50536
|
return /*#__PURE__*/React__default['default'].createElement(Container$b, null, /*#__PURE__*/React__default['default'].createElement(Wrapper, null, /*#__PURE__*/React__default['default'].createElement(TableTable, {
|
|
50505
50537
|
cellSpacing: 0
|
|
50506
|
-
}, /*#__PURE__*/React__default['default'].createElement(TableHead, null, /*#__PURE__*/React__default['default'].createElement(TableHeadRow, null, renderSelectAllHeaderCell(),
|
|
50538
|
+
}, /*#__PURE__*/React__default['default'].createElement(TableHead, null, /*#__PURE__*/React__default['default'].createElement(TableHeadRow, null, renderSelectAllHeaderCell(), /*#__PURE__*/React__default['default'].createElement("th", {
|
|
50539
|
+
style: {
|
|
50540
|
+
width: "13px"
|
|
50541
|
+
}
|
|
50542
|
+
}), Columns.map(function (col, i) {
|
|
50507
50543
|
return renderHeaderCell(col, i);
|
|
50508
50544
|
}))), /*#__PURE__*/React__default['default'].createElement(TableBody, null, renderBody()))));
|
|
50509
50545
|
};
|
|
@@ -50853,7 +50889,7 @@ var getDefaultState = function getDefaultState() {
|
|
|
50853
50889
|
SelectedDataIndexes: [],
|
|
50854
50890
|
SelectionIndicator: "id",
|
|
50855
50891
|
SelectedEntirePage: false,
|
|
50856
|
-
SelectionType: TableSelectionType
|
|
50892
|
+
SelectionType: TableSelectionType.MULTIPLE,
|
|
50857
50893
|
Columns: [],
|
|
50858
50894
|
Actions: []
|
|
50859
50895
|
},
|
|
@@ -50897,11 +50933,11 @@ var getBorderSyle = function getBorderSyle(borderStyle, read, theme, color) {
|
|
|
50897
50933
|
|
|
50898
50934
|
var Container$a = newStyled.div(_templateObject$a || (_templateObject$a = _taggedTemplateLiteral__default['default'](["\n box-shadow: 0 0 12px #bebebe;\n borderradius: 3px;\n padding: 4px;\n"])));
|
|
50899
50935
|
var TableContainer = newStyled.div(_templateObject2$7 || (_templateObject2$7 = _taggedTemplateLiteral__default['default'](["\n font-family: var(--font-base-ubuntu);\n display: flex;\n justify-content: space-between;\n flex-direction: column;\n"])));
|
|
50900
|
-
var PaginationContainer = newStyled.div(_templateObject3$6 || (_templateObject3$6 = _taggedTemplateLiteral__default['default'](["\n margin-top: 6px;\n"])));
|
|
50936
|
+
var PaginationContainer = newStyled.div(_templateObject3$6 || (_templateObject3$6 = _taggedTemplateLiteral__default['default'](["\n margin-top: 6px;\n border-top: 1px solid #80808025;\n"])));
|
|
50901
50937
|
var FormContainer$1 = newStyled.div(_templateObject4$5 || (_templateObject4$5 = _taggedTemplateLiteral__default['default'](["\n height: 100%;\n overflow-y: auto;\n max-height: calc(100vh - 120px);\n ", "\n"])), function (props) {
|
|
50902
50938
|
return getBorderSyle(props.borderStyle, props.read, props.theme, props.color);
|
|
50903
50939
|
});
|
|
50904
|
-
var HeaderContainer = newStyled.div(_templateObject5$5 || (_templateObject5$5 = _taggedTemplateLiteral__default['default'](["\n display: flex;\n flex-direction: row;\n justify-content: left;\n align-items: center;\n margin-bottom: 5px;\n\n border
|
|
50940
|
+
var HeaderContainer = newStyled.div(_templateObject5$5 || (_templateObject5$5 = _taggedTemplateLiteral__default['default'](["\n display: flex;\n flex-direction: row;\n justify-content: left;\n align-items: center;\n margin-bottom: 5px;\n\n border-radius: 3px;\n padding: 0px;\n font-size: 12px;\n font-family: \"Ubuntu\";\n"])));
|
|
50905
50941
|
var FlexItem = newStyled.div(_templateObject6$3 || (_templateObject6$3 = _taggedTemplateLiteral__default['default'](["\n padding-left: 3px;\n padding-right: 4px;\n font-size: 1.4em;\n max-height: 40px;\n"])));
|
|
50906
50942
|
var DeveloperMessageContainer = newStyled.div(_templateObject7$2 || (_templateObject7$2 = _taggedTemplateLiteral__default['default'](["\n margin-top: 5px;\n padding: 8px;\n border: 2px solid rgba(255, 0, 0, 0.725);\n background-color: rgba(252, 79, 79, 0.104);\n font-size: 11px;\n"])));
|
|
50907
50943
|
var DeveloperMessage = newStyled.div(_templateObject8$2 || (_templateObject8$2 = _taggedTemplateLiteral__default['default'](["\n color: rgb(180, 3, 3);\n"])));
|
|
@@ -51074,7 +51110,7 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
51074
51110
|
SelectedDataIndexes: [],
|
|
51075
51111
|
SelectionIndicator: "id",
|
|
51076
51112
|
SelectedEntirePage: false,
|
|
51077
|
-
SelectionType: TableSelectionType
|
|
51113
|
+
SelectionType: TableSelectionType.MULTIPLE,
|
|
51078
51114
|
Columns: [],
|
|
51079
51115
|
Actions: []
|
|
51080
51116
|
},
|
|
@@ -51592,13 +51628,13 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
51592
51628
|
selectedData = state.Table.SelectedData.filter(function (x) {
|
|
51593
51629
|
return x[id] !== dataItem[id];
|
|
51594
51630
|
});
|
|
51595
|
-
} else if (state.Table.SelectionType === TableSelectionType
|
|
51631
|
+
} else if (state.Table.SelectionType === TableSelectionType.SINGLE) {
|
|
51596
51632
|
selectedData = [dataItem];
|
|
51597
|
-
} else if (state.Table.SelectionType === TableSelectionType
|
|
51633
|
+
} else if (state.Table.SelectionType === TableSelectionType.MULTIPLE) {
|
|
51598
51634
|
selectedData.push(dataItem);
|
|
51599
51635
|
}
|
|
51600
51636
|
|
|
51601
|
-
if (state.Table.SelectionType === TableSelectionType
|
|
51637
|
+
if (state.Table.SelectionType === TableSelectionType.MULTIPLE) {
|
|
51602
51638
|
var dataGuids = state.Table.Data.map(function (x) {
|
|
51603
51639
|
return x[id];
|
|
51604
51640
|
});
|
|
@@ -51647,9 +51683,9 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
51647
51683
|
if (Form === null && !state.General.IsLookup) return;
|
|
51648
51684
|
var id = state.General.IsLookup ? SelectedData.Identificator : "Guid";
|
|
51649
51685
|
|
|
51650
|
-
if (state.General.IsLookup && state.Table.SelectionType === TableSelectionType
|
|
51686
|
+
if (state.General.IsLookup && state.Table.SelectionType === TableSelectionType.SINGLE) {
|
|
51651
51687
|
OnChange([dataItem]);
|
|
51652
|
-
} else if (state.General.IsLookup && state.Table.SelectionType === TableSelectionType
|
|
51688
|
+
} else if (state.General.IsLookup && state.Table.SelectionType === TableSelectionType.MULTIPLE) {
|
|
51653
51689
|
onSelect(dataItem);
|
|
51654
51690
|
} else {
|
|
51655
51691
|
setState(function (draft) {
|
|
@@ -51947,7 +51983,8 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
51947
51983
|
tooltip: state.Form.Mode === FormMode.READ ? Localization.FormEditMode || "Edit mode" : Localization.FormReadMode || "View mode",
|
|
51948
51984
|
onClick: changeToEditMode,
|
|
51949
51985
|
disabled: freezeLoading(),
|
|
51950
|
-
icon: state.Form.Mode === FormMode.READ ? "edit" : "eye"
|
|
51986
|
+
icon: state.Form.Mode === FormMode.READ ? "edit" : "eye",
|
|
51987
|
+
inverted: true
|
|
51951
51988
|
}));
|
|
51952
51989
|
};
|
|
51953
51990
|
|
|
@@ -51961,7 +51998,8 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
51961
51998
|
tooltip: Localization.Add || "Add",
|
|
51962
51999
|
onClick: goToAdd,
|
|
51963
52000
|
disabled: freezeLoading(),
|
|
51964
|
-
icon: "plus"
|
|
52001
|
+
icon: "plus",
|
|
52002
|
+
inverted: true
|
|
51965
52003
|
}));
|
|
51966
52004
|
}
|
|
51967
52005
|
|
|
@@ -51978,19 +52016,21 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
51978
52016
|
onClick: onRefresh,
|
|
51979
52017
|
disabled: freezeLoading(),
|
|
51980
52018
|
icon: "sync-alt",
|
|
51981
|
-
size: "small"
|
|
52019
|
+
size: "small",
|
|
52020
|
+
inverted: true
|
|
51982
52021
|
}));
|
|
51983
52022
|
};
|
|
51984
52023
|
|
|
51985
52024
|
var renderLookupTakeValues = function renderLookupTakeValues() {
|
|
51986
|
-
if (state.General.IsLookup && state.Table.SelectionType === TableSelectionType
|
|
52025
|
+
if (state.General.IsLookup && state.Table.SelectionType === TableSelectionType.MULTIPLE) {
|
|
51987
52026
|
return /*#__PURE__*/React__default['default'].createElement(FlexItem, null, /*#__PURE__*/React__default['default'].createElement(Button$1, {
|
|
51988
52027
|
tooltip: Localization.TakeValues || "Take values",
|
|
51989
52028
|
onClick: function onClick() {
|
|
51990
52029
|
if (OnChange) OnChange(state.Table.SelectedData);
|
|
51991
52030
|
},
|
|
51992
52031
|
disabled: freezeLoading([state.Table.SelectedData.length === 0]),
|
|
51993
|
-
icon: "check-circle"
|
|
52032
|
+
icon: "check-circle",
|
|
52033
|
+
inverted: true
|
|
51994
52034
|
}));
|
|
51995
52035
|
}
|
|
51996
52036
|
|
|
@@ -52021,7 +52061,8 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
52021
52061
|
onClick: toggleDeleteConfirmationBox,
|
|
52022
52062
|
disabled: freezeLoading([state.Table.SelectedData.length === 0]),
|
|
52023
52063
|
tooltip: Localization.DeleteSelected || "Delete selected",
|
|
52024
|
-
icon: "trash"
|
|
52064
|
+
icon: "trash",
|
|
52065
|
+
inverted: true
|
|
52025
52066
|
}));
|
|
52026
52067
|
};
|
|
52027
52068
|
|
|
@@ -52034,7 +52075,8 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
52034
52075
|
tooltip: Localization.ToTableView || "Table view",
|
|
52035
52076
|
onClick: onSwitchToTableView,
|
|
52036
52077
|
disabled: freezeLoading(),
|
|
52037
|
-
icon: "table"
|
|
52078
|
+
icon: "table",
|
|
52079
|
+
inverted: true
|
|
52038
52080
|
}));
|
|
52039
52081
|
};
|
|
52040
52082
|
|
|
@@ -52063,6 +52105,7 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
52063
52105
|
});
|
|
52064
52106
|
|
|
52065
52107
|
return /*#__PURE__*/React__default['default'].createElement(PaginationContainer, null, /*#__PURE__*/React__default['default'].createElement(Pagination, _extends__default['default']({}, cfg, {
|
|
52108
|
+
inverted: true,
|
|
52066
52109
|
Localization: Localization.Pagination || {}
|
|
52067
52110
|
})));
|
|
52068
52111
|
};
|
|
@@ -52141,7 +52184,7 @@ var Grid = /*#__PURE__*/React__default['default'].forwardRef(function (props, re
|
|
|
52141
52184
|
var x4 = state.Options.EnableFormViewMovement && Form !== null && state.General.CurrentView === "FormView" && state.Form.Mode !== "ADD" ? true : false;
|
|
52142
52185
|
var x5 = state.Options.ReadOnly || !state.Options.EnableSwitchReadOnlyMode || Form === null || Form === undefined || state.General.CurrentView !== "FormView" ? false : true;
|
|
52143
52186
|
var x6 = state.General.CurrentView !== "TableView" || Load === null ? false : true;
|
|
52144
|
-
var x7 = state.General.IsLookup && state.Table.SelectionType === TableSelectionType
|
|
52187
|
+
var x7 = state.General.IsLookup && state.Table.SelectionType === TableSelectionType.MULTIPLE ? true : false;
|
|
52145
52188
|
if (x1 || x2 || x3 || x4 || x5 || x6 || x7) return /*#__PURE__*/React__default['default'].createElement(HeaderContainer, null, renderChangeToTableView(), renderDeleteSelectedButton(), renderGoToAddButton(), renderFormViewMovement(), renderSwitchToEditModeButton(), renderRefreshButton(), renderLookupTakeValues());
|
|
52146
52189
|
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null);
|
|
52147
52190
|
};
|