code7-leia 0.1.154 → 0.1.155
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/code7-leia.cjs.development.js +2 -2
- package/dist/code7-leia.cjs.development.js.map +1 -1
- package/dist/code7-leia.cjs.production.min.js +1 -1
- package/dist/code7-leia.cjs.production.min.js.map +1 -1
- package/dist/code7-leia.esm.js +2 -2
- package/dist/code7-leia.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/MultiSelect/styles.tsx +1 -1
- package/src/components/Select/index.tsx +1 -1
|
@@ -964,7 +964,7 @@ EmptyState.defaultProps = {
|
|
|
964
964
|
var _templateObject$7, _templateObject2$5, _templateObject3$4, _templateObject4$1, _templateObject5$1;
|
|
965
965
|
var MultiSelectWrapper = /*#__PURE__*/styled__default.div(_templateObject$7 || (_templateObject$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n height: 45px;\n"])));
|
|
966
966
|
var SelectBox = /*#__PURE__*/styled__default.div(_templateObject2$5 || (_templateObject2$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n\n select {\n width: 100%;\n font-weight: bold;\n height: 45px;\n border-radius: 4px;\n }\n"])));
|
|
967
|
-
var OverSelect = /*#__PURE__*/styled__default.div(_templateObject3$4 || (_templateObject3$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n\n input {\n height:
|
|
967
|
+
var OverSelect = /*#__PURE__*/styled__default.div(_templateObject3$4 || (_templateObject3$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n\n input {\n height: 43px;\n width: 95%;\n border: none;\n margin: 1px;\n\n &:focus {\n outline: none;\n box-shadow: 0 0 0 3px #6690ff;\n }\n }\n"])));
|
|
968
968
|
var Checkboxes = /*#__PURE__*/styled__default.div(_templateObject4$1 || (_templateObject4$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: none;\n background: white;\n position: absolute;\n width: 95%;\n z-index: 10;\n\n label {\n padding: 10px 5px;\n }\n"])));
|
|
969
969
|
var CheckboxLabel = /*#__PURE__*/styled__default.label(_templateObject5$1 || (_templateObject5$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: block;\n\n &:hover {\n background-color: #6690ff;\n }\n"])));
|
|
970
970
|
|
|
@@ -1629,7 +1629,7 @@ var CustomSelect = function CustomSelect(_ref) {
|
|
|
1629
1629
|
key: option.value,
|
|
1630
1630
|
style: {
|
|
1631
1631
|
background: option.value === selectedValue ? '#a0b7f5' : undefined,
|
|
1632
|
-
color: option.value === selectedValue ? 'white' :
|
|
1632
|
+
color: option.value === selectedValue ? 'white' : undefined
|
|
1633
1633
|
},
|
|
1634
1634
|
className: "option",
|
|
1635
1635
|
onClick: function onClick() {
|