@mw-kit/mw-ui 1.7.45 → 1.7.46
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/components/Calendar/components/Basic/index.d.ts +1 -1
- package/dist/components/Calendar/components/Basic/interfaces.d.ts +2 -1
- package/dist/components/Calendar/components/Basic/styles.d.ts +4 -1
- package/dist/components/Calendar/index.d.ts +1 -1
- package/dist/components/Filters/Filters/components/Submenu/interfaces.d.ts +3 -1
- package/dist/components/Filters/Filters/interfaces.d.ts +3 -0
- package/dist/index.js +98 -69
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +98 -69
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12895,7 +12895,7 @@ var MenuComponent = function MenuComponent(props, ref) {
|
|
|
12895
12895
|
|
|
12896
12896
|
var Menu = React__default.forwardRef(MenuComponent);
|
|
12897
12897
|
|
|
12898
|
-
var _templateObject$9, _templateObject2$9, _templateObject3$9, _templateObject4$7, _templateObject5$6, _templateObject6$5, _templateObject7$5, _templateObject8$4, _templateObject9$4;
|
|
12898
|
+
var _templateObject$9, _templateObject2$9, _templateObject3$9, _templateObject4$7, _templateObject5$6, _templateObject6$5, _templateObject7$5, _templateObject8$4, _templateObject9$4, _templateObject10$4;
|
|
12899
12899
|
var Container$3 = styled__default.div(_templateObject$9 || (_templateObject$9 = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: ", ";\n background-color: ", ";\n position: relative;\n\n ", ";\n"])), function (_ref) {
|
|
12900
12900
|
var theme = _ref.theme;
|
|
12901
12901
|
return theme.spacings.s3;
|
|
@@ -12903,7 +12903,9 @@ var Container$3 = styled__default.div(_templateObject$9 || (_templateObject$9 =
|
|
|
12903
12903
|
var theme = _ref2.theme;
|
|
12904
12904
|
return theme.colors.white;
|
|
12905
12905
|
}, function (_ref3) {
|
|
12906
|
-
var theme = _ref3.theme
|
|
12906
|
+
var theme = _ref3.theme,
|
|
12907
|
+
paddingless = _ref3.$paddingless;
|
|
12908
|
+
if (paddingless) return;
|
|
12907
12909
|
var s3 = theme.spacings.s3;
|
|
12908
12910
|
return styled.css(_templateObject2$9 || (_templateObject2$9 = _taggedTemplateLiteralLoose(["\n padding-top: ", ";\n padding-bottom: ", ";\n :first-child {\n padding-left: ", ";\n }\n :last-child {\n padding-right: ", ";\n }\n "])), s3, s3, s3, s3);
|
|
12909
12911
|
});
|
|
@@ -12929,7 +12931,7 @@ var MonthContainer = styled__default.div(_templateObject6$5 || (_templateObject6
|
|
|
12929
12931
|
var theme = _ref9.theme;
|
|
12930
12932
|
return theme.spacings.s1;
|
|
12931
12933
|
});
|
|
12932
|
-
var
|
|
12934
|
+
var MonthName = styled__default.div(_templateObject7$5 || (_templateObject7$5 = _taggedTemplateLiteralLoose(["\n ", ";\n line-height: ", ";\n color: ", ";\n text-align: center;\n"])), function (_ref10) {
|
|
12933
12935
|
var theme = _ref10.theme;
|
|
12934
12936
|
return theme.useTypography('p');
|
|
12935
12937
|
}, function (_ref11) {
|
|
@@ -12938,15 +12940,16 @@ var MonthBtn = styled__default.div(_templateObject7$5 || (_templateObject7$5 = _
|
|
|
12938
12940
|
}, function (_ref12) {
|
|
12939
12941
|
var theme = _ref12.theme;
|
|
12940
12942
|
return theme.colors.darkBlue;
|
|
12941
|
-
}
|
|
12943
|
+
});
|
|
12944
|
+
var MonthBtn = styled__default.div(_templateObject8$4 || (_templateObject8$4 = _taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: center;\n align-items: center;\n gap: ", ";\n\n ", "\n"])), function (_ref13) {
|
|
12942
12945
|
var theme = _ref13.theme;
|
|
12943
12946
|
return theme.spacings.s1;
|
|
12944
12947
|
}, function (_ref14) {
|
|
12945
12948
|
var onClick = _ref14.onClick;
|
|
12946
12949
|
if (!onClick) return;
|
|
12947
|
-
return styled.css(
|
|
12950
|
+
return styled.css(_templateObject9$4 || (_templateObject9$4 = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n "])));
|
|
12948
12951
|
});
|
|
12949
|
-
var NavBtn = styled__default.button(
|
|
12952
|
+
var NavBtn = styled__default.button(_templateObject10$4 || (_templateObject10$4 = _taggedTemplateLiteralLoose(["\n ", "\n line-height: 14px;\n width: 32px;\n height: 32px;\n box-shadow: none;\n border: none;\n background-color: transparent;\n\n padding: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n\n :disabled {\n visibility: hidden;\n }\n :not(:disabled) {\n cursor: pointer;\n :hover {\n background-color: ", ";\n }\n }\n\n transition-property: background-color;\n transition-timing-function: ease-in-out;\n transition-duration: 0.25s;\n"])), function (_ref15) {
|
|
12950
12953
|
var theme = _ref15.theme;
|
|
12951
12954
|
return theme.useTypography('p');
|
|
12952
12955
|
}, function (_ref16) {
|
|
@@ -13027,8 +13030,9 @@ var types = {
|
|
|
13027
13030
|
|
|
13028
13031
|
var _templateObject$a, _templateObject2$a;
|
|
13029
13032
|
var Container$4 = styled__default.div(_templateObject$a || (_templateObject$a = _taggedTemplateLiteralLoose(["\n color: ", ";\n display: flex;\n align-items: center;\n gap: ", ";\n\n :before {\n content: '';\n display: block;\n border-radius: 100%;\n\n ", ";\n\n background-color: ", ";\n }\n"])), function (_ref) {
|
|
13030
|
-
var
|
|
13031
|
-
|
|
13033
|
+
var theme = _ref.theme,
|
|
13034
|
+
labelColor = _ref.labelColor;
|
|
13035
|
+
return theme.getColor(labelColor);
|
|
13032
13036
|
}, function (_ref2) {
|
|
13033
13037
|
var spacings = _ref2.theme.spacings;
|
|
13034
13038
|
return spacings.s1;
|
|
@@ -13049,7 +13053,7 @@ var Indicator = function Indicator(props) {
|
|
|
13049
13053
|
}, props)));
|
|
13050
13054
|
};
|
|
13051
13055
|
|
|
13052
|
-
var _templateObject$b, _templateObject2$b, _templateObject3$a, _templateObject4$8, _templateObject5$7, _templateObject6$6, _templateObject7$6, _templateObject8$5, _templateObject9$5, _templateObject10$
|
|
13056
|
+
var _templateObject$b, _templateObject2$b, _templateObject3$a, _templateObject4$8, _templateObject5$7, _templateObject6$6, _templateObject7$6, _templateObject8$5, _templateObject9$5, _templateObject10$5, _templateObject11$2, _templateObject12$2, _templateObject13$2;
|
|
13053
13057
|
var Footer = styled__default.div(_templateObject$b || (_templateObject$b = _taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n\n > button:last-child {\n margin-left: auto;\n }\n"])));
|
|
13054
13058
|
var WeekContainer = styled__default.div(_templateObject2$b || (_templateObject2$b = _taggedTemplateLiteralLoose(["\n width: 100%;\n display: flex;\n\n :not(:first-child) {\n border-top: 1px solid ", ";\n }\n\n > * {\n font-family: ", ";\n font-size: ", ";\n line-height: ", ";\n width: 32px;\n height: 32px;\n\n color: ", ";\n box-shadow: none;\n\n display: flex;\n align-items: center;\n justify-content: center;\n text-align: center;\n\n border: 1px solid transparent;\n :not(:last-child) {\n border-right-color: ", ";\n }\n }\n"])), function (_ref) {
|
|
13055
13059
|
var theme = _ref.theme;
|
|
@@ -13074,43 +13078,52 @@ var Header = styled__default.div(_templateObject3$a || (_templateObject3$a = _ta
|
|
|
13074
13078
|
var theme = _ref7.theme;
|
|
13075
13079
|
return theme.getColor('lightestGrey', 40);
|
|
13076
13080
|
}, WeekContainer);
|
|
13077
|
-
var DayContainer = styled__default.button(_templateObject4$8 || (_templateObject4$8 = _taggedTemplateLiteralLoose(["\n position: relative;\n overflow: hidden;\n\n ", ";\n\n
|
|
13081
|
+
var DayContainer = styled__default.button(_templateObject4$8 || (_templateObject4$8 = _taggedTemplateLiteralLoose(["\n position: relative;\n overflow: hidden;\n\n ", ";\n\n ", "\n\n :disabled {\n color: ", ";\n }\n\n &,\n :after {\n transition-property: background-color, color, border-color;\n transition-timing-function: ease-in-out;\n transition-duration: 0.25s;\n }\n\n ", "\n"])), function (_ref8) {
|
|
13078
13082
|
var theme = _ref8.theme,
|
|
13079
|
-
appearance = _ref8.appearance
|
|
13083
|
+
appearance = _ref8.appearance,
|
|
13084
|
+
onClick = _ref8.onClick;
|
|
13085
|
+
|
|
13086
|
+
if (!onClick) {
|
|
13087
|
+
return styled.css(_templateObject5$7 || (_templateObject5$7 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), theme.colors.white);
|
|
13088
|
+
}
|
|
13080
13089
|
|
|
13081
13090
|
var hover = function hover(color) {
|
|
13082
|
-
return styled.css(
|
|
13091
|
+
return styled.css(_templateObject6$6 || (_templateObject6$6 = _taggedTemplateLiteralLoose(["\n :not(:disabled):hover {\n border-color: ", ";\n color: ", ";\n }\n "])), theme.colors[color], theme.colors[color]);
|
|
13083
13092
|
};
|
|
13084
13093
|
|
|
13085
13094
|
if (appearance === 'disabled') {
|
|
13086
|
-
return styled.css(
|
|
13095
|
+
return styled.css(_templateObject7$6 || (_templateObject7$6 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), theme.getColor('greyishBlue', 10));
|
|
13087
13096
|
} else if (appearance === 'highlight') {
|
|
13088
|
-
return styled.css(
|
|
13097
|
+
return styled.css(_templateObject8$5 || (_templateObject8$5 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n ", "\n "])), theme.getColor('blue', 30), hover('blue'));
|
|
13089
13098
|
} else if (appearance === 'active') {
|
|
13090
|
-
return styled.css(
|
|
13099
|
+
return styled.css(_templateObject9$5 || (_templateObject9$5 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n color: ", ";\n :not(:last-child) {\n border-right-color: ", ";\n }\n ", "\n "])), theme.colors.blue, theme.colors.white, function (_ref9) {
|
|
13091
13100
|
var theme = _ref9.theme;
|
|
13092
13101
|
return theme.colors.blue;
|
|
13093
13102
|
}, hover('white'));
|
|
13094
13103
|
}
|
|
13095
13104
|
|
|
13096
|
-
return styled.css(
|
|
13105
|
+
return styled.css(_templateObject10$5 || (_templateObject10$5 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n ", "\n "])), theme.colors.white, hover('blue'));
|
|
13097
13106
|
}, function (_ref10) {
|
|
13098
|
-
var
|
|
13099
|
-
return
|
|
13107
|
+
var onClick = _ref10.onClick;
|
|
13108
|
+
if (!onClick) return;
|
|
13109
|
+
return styled.css(_templateObject11$2 || (_templateObject11$2 = _taggedTemplateLiteralLoose(["\n :not(:disabled) {\n cursor: pointer;\n }\n "])));
|
|
13100
13110
|
}, function (_ref11) {
|
|
13101
|
-
var
|
|
13102
|
-
|
|
13103
|
-
|
|
13111
|
+
var theme = _ref11.theme;
|
|
13112
|
+
return theme.colors.silver;
|
|
13113
|
+
}, function (_ref12) {
|
|
13114
|
+
var appearance = _ref12.appearance,
|
|
13115
|
+
today = _ref12.today,
|
|
13116
|
+
theme = _ref12.theme;
|
|
13104
13117
|
|
|
13105
13118
|
if (today !== 1) {
|
|
13106
13119
|
return;
|
|
13107
13120
|
}
|
|
13108
13121
|
|
|
13109
|
-
return styled.css(
|
|
13122
|
+
return styled.css(_templateObject12$2 || (_templateObject12$2 = _taggedTemplateLiteralLoose(["\n :after {\n content: '';\n position: absolute;\n top: -60%;\n right: -60%;\n width: 100%;\n height: 100%;\n background-color: ", ";\n transform: rotate(45deg);\n }\n "])), theme.colors[appearance === 'active' ? 'white' : 'blue']);
|
|
13110
13123
|
});
|
|
13111
13124
|
var DayIndicator = styled__default(Indicator).attrs({
|
|
13112
13125
|
size: 'mini'
|
|
13113
|
-
})(
|
|
13126
|
+
})(_templateObject13$2 || (_templateObject13$2 = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: calc(", " - 1px);\n left: calc(50% - (", " / 2) + 1px);\n"])), sizes.mini, sizes.mini);
|
|
13114
13127
|
|
|
13115
13128
|
var getCalendar = function getCalendar(d) {
|
|
13116
13129
|
var date = new Date(d.getTime());
|
|
@@ -13398,6 +13411,9 @@ var Main = React__default.forwardRef(function (props, ref) {
|
|
|
13398
13411
|
});
|
|
13399
13412
|
};
|
|
13400
13413
|
|
|
13414
|
+
React.useEffect(function () {
|
|
13415
|
+
setCalendar(getInitialCalendar(initialMonth, min, max));
|
|
13416
|
+
}, [initialMonth === null || initialMonth === void 0 ? void 0 : initialMonth.toISOString(), min === null || min === void 0 ? void 0 : min.toISOString(), max === null || max === void 0 ? void 0 : max.toISOString()]);
|
|
13401
13417
|
React.useEffect(function () {
|
|
13402
13418
|
var _ref2 = [calendar.weeks[0], calendar.weeks[calendar.weeks.length - 1]],
|
|
13403
13419
|
first = _ref2[0],
|
|
@@ -13457,22 +13473,29 @@ var Main = React__default.forwardRef(function (props, ref) {
|
|
|
13457
13473
|
};
|
|
13458
13474
|
|
|
13459
13475
|
return React__default.createElement(Container$3, {
|
|
13460
|
-
ref: ref
|
|
13476
|
+
ref: ref,
|
|
13477
|
+
"$paddingless": props.paddingless
|
|
13461
13478
|
}, props.label && React__default.createElement(LabelContainer, null, props.label), React__default.createElement(CalendarContainer, null, React__default.createElement(Header, null, React__default.createElement(MonthContainer, null, getPrev(), React__default.createElement("div", {
|
|
13462
13479
|
ref: useOnClickOut(function () {
|
|
13463
13480
|
return setSelectOpen(false);
|
|
13464
13481
|
})
|
|
13465
|
-
},
|
|
13466
|
-
|
|
13467
|
-
return
|
|
13468
|
-
return !prev;
|
|
13469
|
-
});
|
|
13482
|
+
}, function () {
|
|
13483
|
+
if (min !== undefined && max !== undefined && min.getFullYear() === max.getFullYear() && min.getMonth() === max.getMonth()) {
|
|
13484
|
+
return React__default.createElement(MonthName, null, months[calendar.month], " ", calendar.year);
|
|
13470
13485
|
}
|
|
13471
|
-
|
|
13472
|
-
|
|
13473
|
-
|
|
13474
|
-
|
|
13475
|
-
|
|
13486
|
+
|
|
13487
|
+
return React__default.createElement(MonthBtn, {
|
|
13488
|
+
onClick: function onClick() {
|
|
13489
|
+
return setSelectOpen(function (prev) {
|
|
13490
|
+
return !prev;
|
|
13491
|
+
});
|
|
13492
|
+
}
|
|
13493
|
+
}, React__default.createElement(MonthName, null, months[calendar.month], " ", calendar.year), React__default.createElement(Icon, {
|
|
13494
|
+
type: 'semantic',
|
|
13495
|
+
icon: selectOpen ? 'caret up' : 'caret down',
|
|
13496
|
+
width: '14px'
|
|
13497
|
+
}));
|
|
13498
|
+
}(), React__default.createElement(MonthPicker, {
|
|
13476
13499
|
open: selectOpen,
|
|
13477
13500
|
close: function close() {
|
|
13478
13501
|
return setSelectOpen(false);
|
|
@@ -13531,7 +13554,7 @@ var Main = React__default.forwardRef(function (props, ref) {
|
|
|
13531
13554
|
Main.displayName = 'Main';
|
|
13532
13555
|
|
|
13533
13556
|
var BasicCalendar = React__default.forwardRef(function (props, ref) {
|
|
13534
|
-
var containerProps = filterObject(props, ['initialMonth', 'max', 'min', 'getDay', 'calendar', 'absolute', 'onChangeMonth']);
|
|
13557
|
+
var containerProps = filterObject(props, ['initialMonth', 'max', 'min', 'getDay', 'calendar', 'absolute', 'onChangeMonth', 'paddingless']);
|
|
13535
13558
|
return 'absolute' in props ? React__default.createElement(AbsoluteContainer$1, Object.assign({
|
|
13536
13559
|
axis: 'y',
|
|
13537
13560
|
maxHeight: maxHeight
|
|
@@ -13681,7 +13704,7 @@ var getTimeProps = function getTimeProps(time, value) {
|
|
|
13681
13704
|
});
|
|
13682
13705
|
};
|
|
13683
13706
|
|
|
13684
|
-
var _templateObject$e, _templateObject2$c, _templateObject3$b, _templateObject4$9, _templateObject5$8, _templateObject6$7, _templateObject7$7, _templateObject8$6, _templateObject9$6, _templateObject10$
|
|
13707
|
+
var _templateObject$e, _templateObject2$c, _templateObject3$b, _templateObject4$9, _templateObject5$8, _templateObject6$7, _templateObject7$7, _templateObject8$6, _templateObject9$6, _templateObject10$6, _templateObject11$3, _templateObject12$3;
|
|
13685
13708
|
var Button = styled__default.button(_templateObject$e || (_templateObject$e = _taggedTemplateLiteralLoose(["\n padding: 0\n ", ";\n font-family: 'Lato', sans-serif;\n font-weight: ", ";\n border-radius: 4px;\n position: relative;\n user-select: none;\n\n ", ";\n\n ", ";\n\n color: ", ";\n\n :disabled {\n ", "\n }\n\n :hover {\n cursor: ", ";\n\n ", "\n }\n\n :active {\n ", ";\n }\n\n ", "\n"])), function (_ref) {
|
|
13686
13709
|
var theme = _ref.theme,
|
|
13687
13710
|
appearance = _ref.appearance;
|
|
@@ -13753,14 +13776,14 @@ var Button = styled__default.button(_templateObject$e || (_templateObject$e = _t
|
|
|
13753
13776
|
}
|
|
13754
13777
|
|
|
13755
13778
|
if (['link', 'borderless'].includes(appearance)) {
|
|
13756
|
-
return styled.css(_templateObject10$
|
|
13779
|
+
return styled.css(_templateObject10$6 || (_templateObject10$6 = _taggedTemplateLiteralLoose(["\n color: ", ";\n "])), theme.getColor('blue', 50));
|
|
13757
13780
|
}
|
|
13758
13781
|
|
|
13759
13782
|
return styled.css(_templateObject11$3 || (_templateObject11$3 = _taggedTemplateLiteralLoose(["\n color: ", ";\n "])), theme.getColor(color || 'blue'));
|
|
13760
13783
|
}, function (_ref10) {
|
|
13761
13784
|
var loading = _ref10.loading;
|
|
13762
13785
|
if (!loading) return;
|
|
13763
|
-
return styled.css(_templateObject12$
|
|
13786
|
+
return styled.css(_templateObject12$3 || (_templateObject12$3 = _taggedTemplateLiteralLoose(["\n pointer-events: none;\n "])));
|
|
13764
13787
|
});
|
|
13765
13788
|
|
|
13766
13789
|
var _excluded = ["children", "content"];
|
|
@@ -15549,7 +15572,7 @@ var Switch = function Switch(props) {
|
|
|
15549
15572
|
})), React__default.createElement("span", null), label.after && React__default.createElement(LabelContainer$3, null, label.after));
|
|
15550
15573
|
};
|
|
15551
15574
|
|
|
15552
|
-
var _templateObject$q, _templateObject2$m, _templateObject3$i, _templateObject4$d, _templateObject5$b, _templateObject6$a, _templateObject7$a, _templateObject8$8, _templateObject9$8, _templateObject10$
|
|
15575
|
+
var _templateObject$q, _templateObject2$m, _templateObject3$i, _templateObject4$d, _templateObject5$b, _templateObject6$a, _templateObject7$a, _templateObject8$8, _templateObject9$8, _templateObject10$7, _templateObject11$4, _templateObject12$4, _templateObject13$3, _templateObject14$2, _templateObject15$2, _templateObject16$2, _templateObject17$2, _templateObject18$2, _templateObject19$1, _templateObject20$1;
|
|
15553
15576
|
var bullet = styled.css(_templateObject$q || (_templateObject$q = _taggedTemplateLiteralLoose(["\n appearance: none;\n width: ", ";\n height: ", ";\n border-radius: 100%;\n border-width: 1px;\n border-style: solid;\n background-color: ", ";\n box-shadow: 0px 1px 3px ", ";\n"])), function (_ref) {
|
|
15554
15577
|
var theme = _ref.theme;
|
|
15555
15578
|
return theme.spacings.s4;
|
|
@@ -15609,7 +15632,7 @@ var Label$5 = styled__default.label(_templateObject7$a || (_templateObject7$a =
|
|
|
15609
15632
|
var required = _ref17.required;
|
|
15610
15633
|
return required && styled.css(_templateObject9$8 || (_templateObject9$8 = _taggedTemplateLiteralLoose(["\n :after {\n content: ' *';\n }\n "])));
|
|
15611
15634
|
}, NavBar);
|
|
15612
|
-
var InputContainer$1 = styled__default.div(_templateObject10$
|
|
15635
|
+
var InputContainer$1 = styled__default.div(_templateObject10$7 || (_templateObject10$7 = _taggedTemplateLiteralLoose(["\n flex: 1;\n display: flex;\n gap: 6px;\n\n > div {\n position: relative;\n }\n\n ", "\n"])), function (_ref18) {
|
|
15613
15636
|
var theme = _ref18.theme,
|
|
15614
15637
|
invalid = _ref18.invalid;
|
|
15615
15638
|
|
|
@@ -15617,9 +15640,9 @@ var InputContainer$1 = styled__default.div(_templateObject10$6 || (_templateObje
|
|
|
15617
15640
|
return styled.css(_templateObject11$4 || (_templateObject11$4 = _taggedTemplateLiteralLoose(["\n ", " > span {\n background-color: ", ";\n }\n\n ", " {\n /** firefox */\n ::-moz-range-thumb {\n border-color: ", ";\n }\n /** ie */\n ::-ms-thumb {\n border-color: ", ";\n }\n /** chrome */\n ::-webkit-slider-thumb {\n border-color: ", ";\n }\n }\n "])), SelectedArea, theme.colors.blue, Input$2, theme.colors.lightestGrey, theme.colors.lightestGrey, theme.colors.lightestGrey);
|
|
15618
15641
|
}
|
|
15619
15642
|
|
|
15620
|
-
return styled.css(_templateObject12$
|
|
15643
|
+
return styled.css(_templateObject12$4 || (_templateObject12$4 = _taggedTemplateLiteralLoose(["\n ", " > span {\n background-color: ", ";\n }\n\n ", " {\n /** firefox */\n ::-moz-range-thumb {\n border-color: ", ";\n }\n /** ie */\n ::-ms-thumb {\n border-color: ", ";\n }\n /** chrome */\n ::-webkit-slider-thumb {\n border-color: ", ";\n }\n }\n "])), SelectedArea, theme.colors.warningRed, Input$2, theme.colors.warningRed, theme.colors.warningRed, theme.colors.warningRed);
|
|
15621
15644
|
});
|
|
15622
|
-
var MinMaxLabelContainer = styled__default.div(_templateObject13$
|
|
15645
|
+
var MinMaxLabelContainer = styled__default.div(_templateObject13$3 || (_templateObject13$3 = _taggedTemplateLiteralLoose(["\n display: flex;\n padding-bottom: 2px;\n"])));
|
|
15623
15646
|
var LabelsContainer = styled__default.div(_templateObject14$2 || (_templateObject14$2 = _taggedTemplateLiteralLoose(["\n display: flex;\n gap: 7px;\n\n ", "\n"])), function (_ref19) {
|
|
15624
15647
|
var position = _ref19.position;
|
|
15625
15648
|
|
|
@@ -16110,7 +16133,7 @@ var parse = function parse(value) {
|
|
|
16110
16133
|
});
|
|
16111
16134
|
};
|
|
16112
16135
|
|
|
16113
|
-
var _templateObject$s, _templateObject2$o, _templateObject3$k, _templateObject4$f, _templateObject5$d, _templateObject6$c, _templateObject7$c, _templateObject8$9, _templateObject9$9, _templateObject10$
|
|
16136
|
+
var _templateObject$s, _templateObject2$o, _templateObject3$k, _templateObject4$f, _templateObject5$d, _templateObject6$c, _templateObject7$c, _templateObject8$9, _templateObject9$9, _templateObject10$8, _templateObject11$5, _templateObject12$5;
|
|
16114
16137
|
var RelativeContainer$5 = styled__default.div(_templateObject$s || (_templateObject$s = _taggedTemplateLiteralLoose(["\n position: relative;\n user-select: none;\n min-width: 220px;\n\n > input,\n > label > input {\n color: transparent;\n background-color: transparent;\n width: 1px;\n height: 1px;\n position: absolute;\n left: 0;\n bottom: 0;\n border: 0;\n padding: 0;\n overflow: hidden;\n outline: none;\n box-shadow: none;\n }\n"])));
|
|
16115
16138
|
var LabelContainer$6 = styled__default.div(_templateObject2$o || (_templateObject2$o = _taggedTemplateLiteralLoose(["\n ", "\n line-height: 17px;\n flex: 1;\n\n :first-child {\n text-align: left;\n }\n :not(:first-child) {\n text-align: center;\n }\n\n ", "\n\n ", ";\n"])), function (_ref) {
|
|
16116
16139
|
var theme = _ref.theme;
|
|
@@ -16158,7 +16181,7 @@ var Container$6 = styled__default.div(_templateObject5$d || (_templateObject5$d
|
|
|
16158
16181
|
var Button$4 = styled__default.button(_templateObject9$9 || (_templateObject9$9 = _taggedTemplateLiteralLoose(["\n display: flex;\n background-color: transparent;\n border: none;\n padding: 0;\n box-shadow: none;\n\n ", ";\n"])), function (_ref11) {
|
|
16159
16182
|
var onClick = _ref11.onClick;
|
|
16160
16183
|
if (!onClick) return;
|
|
16161
|
-
return styled.css(_templateObject10$
|
|
16184
|
+
return styled.css(_templateObject10$8 || (_templateObject10$8 = _taggedTemplateLiteralLoose(["\n :not(:disabled) {\n cursor: pointer;\n }\n "])));
|
|
16162
16185
|
});
|
|
16163
16186
|
var LabelText$1 = styled__default.label(_templateObject11$5 || (_templateObject11$5 = _taggedTemplateLiteralLoose(["\n display: inline-block;\n margin-bottom: ", ";\n\n ", "\n"])), function (_ref12) {
|
|
16164
16187
|
var theme = _ref12.theme;
|
|
@@ -16166,7 +16189,7 @@ var LabelText$1 = styled__default.label(_templateObject11$5 || (_templateObject1
|
|
|
16166
16189
|
}, function (_ref13) {
|
|
16167
16190
|
var required = _ref13.required;
|
|
16168
16191
|
if (!required) return;
|
|
16169
|
-
return styled.css(_templateObject12$
|
|
16192
|
+
return styled.css(_templateObject12$5 || (_templateObject12$5 = _taggedTemplateLiteralLoose(["\n :after {\n content: ' *';\n }\n "])));
|
|
16170
16193
|
});
|
|
16171
16194
|
|
|
16172
16195
|
var Component$1 = React__default.forwardRef(function (props, ref) {
|
|
@@ -17207,7 +17230,7 @@ var AppliedFilters = Object.assign(function (props) {
|
|
|
17207
17230
|
Menu: AppliedFiltersMenu
|
|
17208
17231
|
});
|
|
17209
17232
|
|
|
17210
|
-
var _templateObject$A, _templateObject2$t, _templateObject3$o, _templateObject4$h, _templateObject5$e, _templateObject6$d, _templateObject7$d, _templateObject8$a, _templateObject9$a, _templateObject10$
|
|
17233
|
+
var _templateObject$A, _templateObject2$t, _templateObject3$o, _templateObject4$h, _templateObject5$e, _templateObject6$d, _templateObject7$d, _templateObject8$a, _templateObject9$a, _templateObject10$9;
|
|
17211
17234
|
var Container$9 = styled__default.div(_templateObject$A || (_templateObject$A = _taggedTemplateLiteralLoose(["\n width: 100%;\n background: #fff;\n border: 1px solid #d4d4d5;\n border-radius: 4px;\n border-left-width: 5px;\n padding: 14px;\n ", "\n ", "\n ", "\n ", "\n\n ", "\n ", "\n ", "\n\n ", "\n ", "\n"])), function (props) {
|
|
17212
17235
|
return props.size === 'mini' && styled.css(_templateObject2$t || (_templateObject2$t = _taggedTemplateLiteralLoose(["\n width: 394px;\n height: 99px;\n "])));
|
|
17213
17236
|
}, function (props) {
|
|
@@ -17225,7 +17248,7 @@ var Container$9 = styled__default.div(_templateObject$A || (_templateObject$A =
|
|
|
17225
17248
|
}, function (props) {
|
|
17226
17249
|
return props.borderType === 'danger' && styled.css(_templateObject9$a || (_templateObject9$a = _taggedTemplateLiteralLoose(["\n border-left-color: #e23851;\n "])));
|
|
17227
17250
|
}, function (props) {
|
|
17228
|
-
return props.borderType === 'none' && styled.css(_templateObject10$
|
|
17251
|
+
return props.borderType === 'none' && styled.css(_templateObject10$9 || (_templateObject10$9 = _taggedTemplateLiteralLoose(["\n border: 1px solid #d4d4d5;\n "])));
|
|
17229
17252
|
});
|
|
17230
17253
|
|
|
17231
17254
|
var _excluded$1 = ["children"];
|
|
@@ -17397,7 +17420,8 @@ var getInstance = function getInstance(props) {
|
|
|
17397
17420
|
var Submenu = function Submenu(props) {
|
|
17398
17421
|
var item = props.item,
|
|
17399
17422
|
close = props.close,
|
|
17400
|
-
setAppliedFilters = props.setAppliedFilters
|
|
17423
|
+
setAppliedFilters = props.setAppliedFilters,
|
|
17424
|
+
closeParent = props.closeParent;
|
|
17401
17425
|
|
|
17402
17426
|
var _getInstance = getInstance(props),
|
|
17403
17427
|
open = _getInstance.open,
|
|
@@ -17501,6 +17525,7 @@ var Submenu = function Submenu(props) {
|
|
|
17501
17525
|
});
|
|
17502
17526
|
return newState;
|
|
17503
17527
|
});
|
|
17528
|
+
!item.keepOpen && closeParent();
|
|
17504
17529
|
} : undefined;
|
|
17505
17530
|
|
|
17506
17531
|
var optionsParser = function optionsParser(option) {
|
|
@@ -17518,7 +17543,7 @@ var Submenu = function Submenu(props) {
|
|
|
17518
17543
|
});
|
|
17519
17544
|
};
|
|
17520
17545
|
|
|
17521
|
-
return React__default.createElement(Menu, {
|
|
17546
|
+
return React__default.createElement(Menu, Object.assign({
|
|
17522
17547
|
open: open,
|
|
17523
17548
|
axis: 'x',
|
|
17524
17549
|
options: options.map(optionsParser),
|
|
@@ -17556,7 +17581,7 @@ var Submenu = function Submenu(props) {
|
|
|
17556
17581
|
width: {}
|
|
17557
17582
|
}
|
|
17558
17583
|
}
|
|
17559
|
-
});
|
|
17584
|
+
}, props.containerProps || {}));
|
|
17560
17585
|
};
|
|
17561
17586
|
|
|
17562
17587
|
var FiltersMenu = function FiltersMenu(props) {
|
|
@@ -17612,14 +17637,17 @@ var FiltersMenu = function FiltersMenu(props) {
|
|
|
17612
17637
|
close: function close() {
|
|
17613
17638
|
return setActive(-1);
|
|
17614
17639
|
},
|
|
17615
|
-
|
|
17640
|
+
closeParent: close,
|
|
17641
|
+
setAppliedFilters: props.setAppliedFilters,
|
|
17642
|
+
containerProps: props.subContainerProps
|
|
17616
17643
|
}));
|
|
17617
17644
|
};
|
|
17618
17645
|
|
|
17619
17646
|
var Filters = Object.assign(function (props) {
|
|
17620
17647
|
var items = props.items,
|
|
17621
17648
|
setAppliedFilters = props.setAppliedFilters,
|
|
17622
|
-
containerProps = props.containerProps
|
|
17649
|
+
containerProps = props.containerProps,
|
|
17650
|
+
subContainerProps = props.subContainerProps;
|
|
17623
17651
|
var buttonProps = filterObject(props, ['items', 'setAppliedFilters']);
|
|
17624
17652
|
return React__default.createElement(Button$5, Object.assign({}, buttonProps, {
|
|
17625
17653
|
getContent: function getContent(open, close) {
|
|
@@ -17628,7 +17656,8 @@ var Filters = Object.assign(function (props) {
|
|
|
17628
17656
|
close: close,
|
|
17629
17657
|
setAppliedFilters: setAppliedFilters,
|
|
17630
17658
|
items: items,
|
|
17631
|
-
containerProps: containerProps
|
|
17659
|
+
containerProps: containerProps,
|
|
17660
|
+
subContainerProps: subContainerProps
|
|
17632
17661
|
}));
|
|
17633
17662
|
}
|
|
17634
17663
|
}), "Filtros");
|
|
@@ -17643,7 +17672,7 @@ var useContext$2 = function useContext() {
|
|
|
17643
17672
|
return React__default.useContext(Provider$2);
|
|
17644
17673
|
};
|
|
17645
17674
|
|
|
17646
|
-
var _templateObject$D, _templateObject2$u, _templateObject3$p, _templateObject4$i, _templateObject5$f, _templateObject6$e, _templateObject7$e, _templateObject8$b, _templateObject9$b, _templateObject10$
|
|
17675
|
+
var _templateObject$D, _templateObject2$u, _templateObject3$p, _templateObject4$i, _templateObject5$f, _templateObject6$e, _templateObject7$e, _templateObject8$b, _templateObject9$b, _templateObject10$a, _templateObject11$6, _templateObject12$6, _templateObject13$4, _templateObject14$3, _templateObject15$3;
|
|
17647
17676
|
var aligns = {
|
|
17648
17677
|
self: {
|
|
17649
17678
|
horizontal: {
|
|
@@ -17726,7 +17755,7 @@ var Col = styled__default.div(_templateObject$D || (_templateObject$D = _taggedT
|
|
|
17726
17755
|
|
|
17727
17756
|
if (align.text !== undefined) {
|
|
17728
17757
|
var _v4 = align.text;
|
|
17729
|
-
styles.push(styled.css(_templateObject10$
|
|
17758
|
+
styles.push(styled.css(_templateObject10$a || (_templateObject10$a = _taggedTemplateLiteralLoose(["\n text-align: ", ";\n "])), _v4));
|
|
17730
17759
|
}
|
|
17731
17760
|
|
|
17732
17761
|
return styles;
|
|
@@ -17740,13 +17769,13 @@ var Col = styled__default.div(_templateObject$D || (_templateObject$D = _taggedT
|
|
|
17740
17769
|
theme = _ref6.theme;
|
|
17741
17770
|
if (fontColor === undefined) return;
|
|
17742
17771
|
var c = Array.isArray(fontColor) ? theme.getColor.apply(theme, fontColor) : theme.colors[fontColor];
|
|
17743
|
-
return styled.css(_templateObject12$
|
|
17772
|
+
return styled.css(_templateObject12$6 || (_templateObject12$6 = _taggedTemplateLiteralLoose(["\n color: ", ";\n "])), c);
|
|
17744
17773
|
}, function (_ref7) {
|
|
17745
17774
|
var backgroundColor = _ref7.backgroundColor,
|
|
17746
17775
|
theme = _ref7.theme;
|
|
17747
17776
|
if (backgroundColor === undefined) return;
|
|
17748
17777
|
var c = Array.isArray(backgroundColor) ? theme.getColor.apply(theme, backgroundColor) : theme.colors[backgroundColor];
|
|
17749
|
-
return styled.css(_templateObject13$
|
|
17778
|
+
return styled.css(_templateObject13$4 || (_templateObject13$4 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), c);
|
|
17750
17779
|
}, function (_ref8) {
|
|
17751
17780
|
var hover = _ref8.hover,
|
|
17752
17781
|
theme = _ref8.theme;
|
|
@@ -17802,7 +17831,7 @@ var Grid$1 = function Grid$1(props) {
|
|
|
17802
17831
|
}, React__default.createElement(Grid, Object.assign({}, gridProps)));
|
|
17803
17832
|
};
|
|
17804
17833
|
|
|
17805
|
-
var _templateObject$F, _templateObject2$w, _templateObject3$r, _templateObject4$j, _templateObject5$g, _templateObject6$f, _templateObject7$f, _templateObject8$c, _templateObject9$c, _templateObject10$
|
|
17834
|
+
var _templateObject$F, _templateObject2$w, _templateObject3$r, _templateObject4$j, _templateObject5$g, _templateObject6$f, _templateObject7$f, _templateObject8$c, _templateObject9$c, _templateObject10$b;
|
|
17806
17835
|
var horizontalAligns = {
|
|
17807
17836
|
around: 'space-around',
|
|
17808
17837
|
between: 'space-between',
|
|
@@ -17877,7 +17906,7 @@ var Row = styled__default.div(_templateObject$F || (_templateObject$F = _taggedT
|
|
|
17877
17906
|
if (!hover) return;
|
|
17878
17907
|
var h = hover === true ? ['lightGrey', 50] : hover;
|
|
17879
17908
|
var c = Array.isArray(h) ? theme.getColor.apply(theme, h) : theme.colors[h];
|
|
17880
|
-
return styled.css(_templateObject10$
|
|
17909
|
+
return styled.css(_templateObject10$b || (_templateObject10$b = _taggedTemplateLiteralLoose(["\n :hover {\n background-color: ", ";\n }\n "])), c);
|
|
17881
17910
|
});
|
|
17882
17911
|
|
|
17883
17912
|
var Row$1 = function Row$1(props) {
|
|
@@ -17930,7 +17959,7 @@ var widths = {
|
|
|
17930
17959
|
default: '642.5px'
|
|
17931
17960
|
};
|
|
17932
17961
|
|
|
17933
|
-
var _templateObject$G, _templateObject2$x, _templateObject3$s, _templateObject4$k, _templateObject5$h, _templateObject6$g, _templateObject7$g, _templateObject8$d, _templateObject9$d, _templateObject10$
|
|
17962
|
+
var _templateObject$G, _templateObject2$x, _templateObject3$s, _templateObject4$k, _templateObject5$h, _templateObject6$g, _templateObject7$g, _templateObject8$d, _templateObject9$d, _templateObject10$c;
|
|
17934
17963
|
var Background = styled__default.div(_templateObject$G || (_templateObject$G = _taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: center;\n align-items: center;\n position: fixed;\n top: 0;\n left: 0;\n width: 100vw;\n height: 100vh;\n backdrop-filter: blur(3px);\n background-color: ", ";\n"])), function (_ref) {
|
|
17935
17964
|
var theme = _ref.theme;
|
|
17936
17965
|
return theme.getColor('black', 25);
|
|
@@ -17963,7 +17992,7 @@ var Container$b = styled__default.div(_templateObject9$d || (_templateObject9$d
|
|
|
17963
17992
|
customSize = _ref6.customSize,
|
|
17964
17993
|
color = _ref6.color,
|
|
17965
17994
|
inverted = _ref6.inverted;
|
|
17966
|
-
return styled.css(_templateObject10$
|
|
17995
|
+
return styled.css(_templateObject10$c || (_templateObject10$c = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n box-shadow: 0 0 21px 7px ", ";\n\n width: ", ";\n\n height: ", ";\n\n ", " {\n background-color: ", ";\n color: ", ";\n }\n "])), theme.colors.white, theme.getColor('black', 15), size === 'custom' && customSize ? customSize.width || 'auto' : widths[size], size === 'custom' && customSize ? customSize.height || 'auto' : heights[size], Header$5, inverted ? theme.isDarkColor(color) : theme.colors[color], inverted ? theme.colors[color] : theme.isDarkColor(color));
|
|
17967
17996
|
});
|
|
17968
17997
|
|
|
17969
17998
|
var _excluded$2 = ["children"];
|
|
@@ -18160,7 +18189,7 @@ var Modal$1 = Object.assign(Modal, {
|
|
|
18160
18189
|
Audit: Audit
|
|
18161
18190
|
});
|
|
18162
18191
|
|
|
18163
|
-
var _templateObject$K, _templateObject2$y, _templateObject3$t, _templateObject4$l, _templateObject5$i, _templateObject6$h, _templateObject7$h, _templateObject8$e, _templateObject9$e, _templateObject10$
|
|
18192
|
+
var _templateObject$K, _templateObject2$y, _templateObject3$t, _templateObject4$l, _templateObject5$i, _templateObject6$h, _templateObject7$h, _templateObject8$e, _templateObject9$e, _templateObject10$d, _templateObject11$7;
|
|
18164
18193
|
var Container$c = styled__default.div(_templateObject$K || (_templateObject$K = _taggedTemplateLiteralLoose(["\n width: 100%;\n height: 300px;\n position: absolute;\n padding: 14px;\n"])));
|
|
18165
18194
|
var Header$6 = styled__default.div(_templateObject2$y || (_templateObject2$y = _taggedTemplateLiteralLoose(["\n display: flex;\n"])));
|
|
18166
18195
|
var HeaderImage = styled__default.div(_templateObject3$t || (_templateObject3$t = _taggedTemplateLiteralLoose(["\n width: 43px;\n height: 44px;\n background-color: #ebebeb;\n"])));
|
|
@@ -18175,7 +18204,7 @@ var HeaderLine = styled__default.div(_templateObject6$h || (_templateObject6$h =
|
|
|
18175
18204
|
}, function (props) {
|
|
18176
18205
|
return props.size === 'medium' && styled.css(_templateObject9$e || (_templateObject9$e = _taggedTemplateLiteralLoose(["\n width: 45%;\n "])));
|
|
18177
18206
|
}, function (props) {
|
|
18178
|
-
return props.size === 'large' && styled.css(_templateObject10$
|
|
18207
|
+
return props.size === 'large' && styled.css(_templateObject10$d || (_templateObject10$d = _taggedTemplateLiteralLoose(["\n width: 75%;\n "])));
|
|
18179
18208
|
});
|
|
18180
18209
|
var MainLine = styled__default(HeaderLine)(_templateObject11$7 || (_templateObject11$7 = _taggedTemplateLiteralLoose(["\n margin-bottom: 14px;\n margin-left: 0;\n"])));
|
|
18181
18210
|
|
|
@@ -18446,7 +18475,7 @@ var Template6 = function Template6(props) {
|
|
|
18446
18475
|
})));
|
|
18447
18476
|
};
|
|
18448
18477
|
|
|
18449
|
-
var _templateObject$R, _templateObject2$F, _templateObject3$A, _templateObject4$r, _templateObject5$o, _templateObject6$m, _templateObject7$m, _templateObject8$j, _templateObject9$h, _templateObject10$
|
|
18478
|
+
var _templateObject$R, _templateObject2$F, _templateObject3$A, _templateObject4$r, _templateObject5$o, _templateObject6$m, _templateObject7$m, _templateObject8$j, _templateObject9$h, _templateObject10$e;
|
|
18450
18479
|
var Container$i = styled__default.div(_templateObject$R || (_templateObject$R = _taggedTemplateLiteralLoose(["\n width: 395px;\n height: 110px;\n display: flex;\n flex-direction: column;\n align-items: center;\n background: #f5f5f5 0% 0% no-repeat padding-box;\n"])));
|
|
18451
18480
|
var Header$9 = styled__default.div(_templateObject2$F || (_templateObject2$F = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 14px;\n width: 100%;\n"])));
|
|
18452
18481
|
var HeaderLine$6 = styled__default.div(_templateObject3$A || (_templateObject3$A = _taggedTemplateLiteralLoose(["\n height: ", ";\n background-color: #ebebeb;\n margin-left: 7px;\n\n & + div {\n margin-top: 14px;\n }\n\n ", "\n ", "\n\n ", "\n\n ", "\n"])), function (props) {
|
|
@@ -18468,7 +18497,7 @@ var CustomLine$3 = styled__default(HeaderLine$6)(_templateObject8$j || (_templat
|
|
|
18468
18497
|
return props.color;
|
|
18469
18498
|
});
|
|
18470
18499
|
var Main$2 = styled__default.div(_templateObject9$h || (_templateObject9$h = _taggedTemplateLiteralLoose(["\n margin: 10px 0;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-evenly;\n"])));
|
|
18471
|
-
var Circle$1 = styled__default.div(_templateObject10$
|
|
18500
|
+
var Circle$1 = styled__default.div(_templateObject10$e || (_templateObject10$e = _taggedTemplateLiteralLoose(["\n width: 30px;\n height: 30px;\n background-color: #ebebeb;\n border-radius: 50%;\n margin: 0 16px;\n"])));
|
|
18472
18501
|
|
|
18473
18502
|
var Template7 = function Template7(props) {
|
|
18474
18503
|
if (!props.loading) return React__default.createElement(React__default.Fragment, null);
|
|
@@ -18523,7 +18552,7 @@ var Template8 = function Template8(props) {
|
|
|
18523
18552
|
})));
|
|
18524
18553
|
};
|
|
18525
18554
|
|
|
18526
|
-
var _templateObject$T, _templateObject2$H, _templateObject3$C, _templateObject4$t, _templateObject5$q, _templateObject6$o, _templateObject7$o, _templateObject8$l, _templateObject9$j, _templateObject10$
|
|
18555
|
+
var _templateObject$T, _templateObject2$H, _templateObject3$C, _templateObject4$t, _templateObject5$q, _templateObject6$o, _templateObject7$o, _templateObject8$l, _templateObject9$j, _templateObject10$f;
|
|
18527
18556
|
var Container$k = styled__default.div(_templateObject$T || (_templateObject$T = _taggedTemplateLiteralLoose(["\n width: 395px;\n height: 245px;\n display: flex;\n flex-direction: column;\n align-items: center;\n background: #f5f5f5 0% 0% no-repeat padding-box;\n"])));
|
|
18528
18557
|
var Header$b = styled__default.div(_templateObject2$H || (_templateObject2$H = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 14px;\n width: 100%;\n"])));
|
|
18529
18558
|
var HeaderLine$8 = styled__default.div(_templateObject3$C || (_templateObject3$C = _taggedTemplateLiteralLoose(["\n height: ", ";\n background-color: #ebebeb;\n margin-left: 7px;\n\n & + div {\n margin-top: 7px;\n }\n\n ", "\n ", "\n\n ", "\n\n ", "\n"])), function (props) {
|
|
@@ -18545,7 +18574,7 @@ var CustomLine$5 = styled__default(HeaderLine$8)(_templateObject8$l || (_templat
|
|
|
18545
18574
|
return props.color;
|
|
18546
18575
|
});
|
|
18547
18576
|
var Main$4 = styled__default.div(_templateObject9$j || (_templateObject9$j = _taggedTemplateLiteralLoose(["\n padding: 14px;\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n"])));
|
|
18548
|
-
var Circle$2 = styled__default.div(_templateObject10$
|
|
18577
|
+
var Circle$2 = styled__default.div(_templateObject10$f || (_templateObject10$f = _taggedTemplateLiteralLoose(["\n width: 128px;\n height: 128px;\n background-color: #ebebeb;\n border-radius: 50%;\n"])));
|
|
18549
18578
|
|
|
18550
18579
|
var Template8$1 = function Template8(props) {
|
|
18551
18580
|
if (!props.loading) return React__default.createElement(React__default.Fragment, null);
|
|
@@ -18562,7 +18591,7 @@ var Template8$1 = function Template8(props) {
|
|
|
18562
18591
|
})), React__default.createElement(Main$4, null, React__default.createElement(Circle$2, null)));
|
|
18563
18592
|
};
|
|
18564
18593
|
|
|
18565
|
-
var _templateObject$U, _templateObject2$I, _templateObject3$D, _templateObject4$u, _templateObject5$r, _templateObject6$p, _templateObject7$p, _templateObject8$m, _templateObject9$k, _templateObject10$
|
|
18594
|
+
var _templateObject$U, _templateObject2$I, _templateObject3$D, _templateObject4$u, _templateObject5$r, _templateObject6$p, _templateObject7$p, _templateObject8$m, _templateObject9$k, _templateObject10$g, _templateObject11$8;
|
|
18566
18595
|
var Container$l = styled__default.div(_templateObject$U || (_templateObject$U = _taggedTemplateLiteralLoose(["\n width: 395px;\n height: 245px;\n display: flex;\n flex-direction: column;\n align-items: center;\n background: #f5f5f5 0% 0% no-repeat padding-box;\n"])));
|
|
18567
18596
|
var Header$c = styled__default.div(_templateObject2$I || (_templateObject2$I = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 14px;\n width: 100%;\n"])));
|
|
18568
18597
|
var HeaderLine$9 = styled__default.div(_templateObject3$D || (_templateObject3$D = _taggedTemplateLiteralLoose(["\n height: ", ";\n background-color: #ebebeb;\n margin-left: 7px;\n\n & + div {\n margin-top: 7px;\n }\n\n ", "\n ", "\n\n ", "\n\n ", "\n"])), function (props) {
|
|
@@ -18584,7 +18613,7 @@ var CustomLine$6 = styled__default(HeaderLine$9)(_templateObject8$m || (_templat
|
|
|
18584
18613
|
return props.color;
|
|
18585
18614
|
});
|
|
18586
18615
|
var GraphLine = styled__default(CustomLine$6)(_templateObject9$k || (_templateObject9$k = _taggedTemplateLiteralLoose(["\n margin: 0 7px;\n"])));
|
|
18587
|
-
var Main$5 = styled__default.div(_templateObject10$
|
|
18616
|
+
var Main$5 = styled__default.div(_templateObject10$g || (_templateObject10$g = _taggedTemplateLiteralLoose(["\n flex: 1;\n padding: 0 7px 72px 7px;\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: flex-end;\n justify-content: center;\n"])));
|
|
18588
18617
|
var Circle$3 = styled__default.div(_templateObject11$8 || (_templateObject11$8 = _taggedTemplateLiteralLoose(["\n width: 128px;\n height: 128px;\n background-color: #ebebeb;\n border-radius: 50%;\n"])));
|
|
18589
18618
|
|
|
18590
18619
|
var Template10 = function Template10(props) {
|