@mw-kit/mw-ui 1.7.8 → 1.7.10
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/components/Main/styles.d.ts +3 -0
- package/dist/components/Calendar/components/Basic/index.d.ts +2 -2
- package/dist/components/Calendar/components/Basic/interfaces.d.ts +8 -2
- package/dist/components/Calendar/components/Interval/components/Main/functions.d.ts +3 -1
- package/dist/components/Calendar/components/Interval/index.d.ts +2 -2
- package/dist/components/Calendar/components/Interval/interfaces.d.ts +10 -5
- package/dist/components/Calendar/components/Single/index.d.ts +3 -3
- package/dist/components/Calendar/components/Single/interfaces.d.ts +8 -5
- package/dist/components/Calendar/components/interfaces.d.ts +3 -3
- package/dist/components/Calendar/index.d.ts +11 -11
- package/dist/components/Calendar/interfaces.d.ts +2 -2
- package/dist/components/Indicator/constants.d.ts +8 -0
- package/dist/components/Indicator/index.d.ts +1 -1
- package/dist/components/Indicator/interfaces.d.ts +8 -5
- package/dist/components/Indicator/styles.d.ts +1 -5
- package/dist/components/Input/components/Date/interfaces.d.ts +2 -1
- package/dist/components/Input/components/DateIntervalPicker/interfaces.d.ts +2 -2
- package/dist/components/Input/components/DatePicker/interfaces.d.ts +2 -1
- package/dist/components/Input/components/DateTime/interfaces.d.ts +2 -1
- package/dist/index.js +549 -416
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +549 -416
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12452,74 +12452,64 @@ var MenuComponent = function MenuComponent(props, ref) {
|
|
|
12452
12452
|
|
|
12453
12453
|
var Menu = React__default.forwardRef(MenuComponent);
|
|
12454
12454
|
|
|
12455
|
-
var
|
|
12456
|
-
|
|
12457
|
-
|
|
12458
|
-
|
|
12455
|
+
var sizes$1 = {
|
|
12456
|
+
medium: '15px',
|
|
12457
|
+
small: '6px',
|
|
12458
|
+
mini: '4px'
|
|
12459
|
+
};
|
|
12460
|
+
var types = {
|
|
12461
|
+
default: 'warningGray',
|
|
12462
|
+
info: 'blue',
|
|
12463
|
+
danger: 'warningRed',
|
|
12464
|
+
success: 'green',
|
|
12465
|
+
warning: 'warningYellow'
|
|
12466
|
+
};
|
|
12467
|
+
|
|
12468
|
+
var _templateObject$9, _templateObject2$7;
|
|
12469
|
+
var Container$4 = styled__default.div(_templateObject$9 || (_templateObject$9 = _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) {
|
|
12470
|
+
var labelColor = _ref.labelColor;
|
|
12471
|
+
return labelColor;
|
|
12459
12472
|
}, function (_ref2) {
|
|
12460
|
-
var
|
|
12461
|
-
return
|
|
12473
|
+
var spacings = _ref2.theme.spacings;
|
|
12474
|
+
return spacings.s1;
|
|
12462
12475
|
}, function (_ref3) {
|
|
12463
|
-
var
|
|
12464
|
-
return
|
|
12465
|
-
|
|
12466
|
-
|
|
12467
|
-
|
|
12468
|
-
|
|
12469
|
-
var props = _ref5.props;
|
|
12470
|
-
return props.type === 'info' && styled.css(_templateObject3$7 || (_templateObject3$7 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), function (_ref6) {
|
|
12471
|
-
var theme = _ref6.theme;
|
|
12472
|
-
return theme.colors.blue;
|
|
12473
|
-
});
|
|
12474
|
-
}, function (_ref7) {
|
|
12475
|
-
var props = _ref7.props;
|
|
12476
|
-
return props.type === 'danger' && styled.css(_templateObject4$6 || (_templateObject4$6 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), function (_ref8) {
|
|
12477
|
-
var theme = _ref8.theme;
|
|
12478
|
-
return theme.colors.warningRed;
|
|
12479
|
-
});
|
|
12480
|
-
}, function (_ref9) {
|
|
12481
|
-
var props = _ref9.props;
|
|
12482
|
-
return props.type === 'success' && styled.css(_templateObject5$5 || (_templateObject5$5 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), function (_ref10) {
|
|
12483
|
-
var theme = _ref10.theme;
|
|
12484
|
-
return theme.colors.green;
|
|
12485
|
-
});
|
|
12486
|
-
}, function (_ref11) {
|
|
12487
|
-
var props = _ref11.props;
|
|
12488
|
-
return props.type === 'warning' && styled.css(_templateObject6$3 || (_templateObject6$3 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), function (_ref12) {
|
|
12489
|
-
var theme = _ref12.theme;
|
|
12490
|
-
return theme.colors.warningYellow;
|
|
12491
|
-
});
|
|
12492
|
-
}, function (props) {
|
|
12493
|
-
return props.props.labelColor;
|
|
12476
|
+
var size = _ref3.size;
|
|
12477
|
+
return styled.css(_templateObject2$7 || (_templateObject2$7 = _taggedTemplateLiteralLoose(["\n width: ", ";\n height: ", ";\n "])), sizes$1[size], sizes$1[size]);
|
|
12478
|
+
}, function (_ref4) {
|
|
12479
|
+
var colors = _ref4.theme.colors,
|
|
12480
|
+
type = _ref4.type;
|
|
12481
|
+
return colors[types[type]];
|
|
12494
12482
|
});
|
|
12495
12483
|
|
|
12496
12484
|
var Indicator = function Indicator(props) {
|
|
12497
|
-
return React__default.createElement(Container$4, {
|
|
12498
|
-
|
|
12499
|
-
|
|
12485
|
+
return React__default.createElement(Container$4, Object.assign({}, _extends({
|
|
12486
|
+
size: 'small',
|
|
12487
|
+
type: 'default',
|
|
12488
|
+
labelColor: 'darkBlue'
|
|
12489
|
+
}, props)));
|
|
12500
12490
|
};
|
|
12501
12491
|
|
|
12502
|
-
var _templateObject$a, _templateObject2$8, _templateObject3$
|
|
12492
|
+
var _templateObject$a, _templateObject2$8, _templateObject3$7, _templateObject4$6, _templateObject5$5, _templateObject6$3, _templateObject7$3;
|
|
12503
12493
|
var Container$5 = styled__default.div(_templateObject$a || (_templateObject$a = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n align-items: center;\n\n span {\n display: inline-block;\n margin-left: 7px;\n color: #000000cc;\n }\n"])));
|
|
12504
12494
|
var Progress = styled__default.div(_templateObject2$8 || (_templateObject2$8 = _taggedTemplateLiteralLoose(["\n width: 64px;\n height: 12px;\n border: 1px solid #e4e4e4;\n div {\n width: ", ";\n max-width: 64px;\n height: 100%;\n ", "\n\n ", "\n ", "\n ", "\n ", "\n }\n"])), function (props) {
|
|
12505
12495
|
return props.value + "%";
|
|
12506
12496
|
}, function (props) {
|
|
12507
|
-
return props.type === 'default' && styled.css(_templateObject3$
|
|
12497
|
+
return props.type === 'default' && styled.css(_templateObject3$7 || (_templateObject3$7 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), function (_ref) {
|
|
12508
12498
|
var theme = _ref.theme;
|
|
12509
12499
|
return theme.colors.warningGray;
|
|
12510
12500
|
});
|
|
12511
12501
|
}, function (props) {
|
|
12512
|
-
return props.type === 'info' && styled.css(_templateObject4$
|
|
12502
|
+
return props.type === 'info' && styled.css(_templateObject4$6 || (_templateObject4$6 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), function (_ref2) {
|
|
12513
12503
|
var theme = _ref2.theme;
|
|
12514
12504
|
return theme.colors.blue;
|
|
12515
12505
|
});
|
|
12516
12506
|
}, function (props) {
|
|
12517
|
-
return props.type === 'danger' && styled.css(_templateObject5$
|
|
12507
|
+
return props.type === 'danger' && styled.css(_templateObject5$5 || (_templateObject5$5 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), function (_ref3) {
|
|
12518
12508
|
var theme = _ref3.theme;
|
|
12519
12509
|
return theme.colors.warningRed;
|
|
12520
12510
|
});
|
|
12521
12511
|
}, function (props) {
|
|
12522
|
-
return props.type === 'success' && styled.css(_templateObject6$
|
|
12512
|
+
return props.type === 'success' && styled.css(_templateObject6$3 || (_templateObject6$3 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), function (_ref4) {
|
|
12523
12513
|
var theme = _ref4.theme;
|
|
12524
12514
|
return theme.colors.green;
|
|
12525
12515
|
});
|
|
@@ -12569,21 +12559,21 @@ function SvgClose(props) {
|
|
|
12569
12559
|
})));
|
|
12570
12560
|
}
|
|
12571
12561
|
|
|
12572
|
-
var _templateObject$b, _templateObject2$9, _templateObject3$
|
|
12562
|
+
var _templateObject$b, _templateObject2$9, _templateObject3$8, _templateObject4$7, _templateObject5$6, _templateObject6$4;
|
|
12573
12563
|
var Container$6 = styled__default.div(_templateObject$b || (_templateObject$b = _taggedTemplateLiteralLoose(["\n display: block;\n border-bottom-style: solid;\n\n ", "\n"])), function (_ref) {
|
|
12574
12564
|
var theme = _ref.theme,
|
|
12575
12565
|
internal = _ref.internal;
|
|
12576
12566
|
return styled.css(_templateObject2$9 || (_templateObject2$9 = _taggedTemplateLiteralLoose(["\n margin-bottom: ", ";\n border-bottom-width: ", ";\n border-bottom-color: ", ";\n "])), theme.spacings.s2, internal ? '1px' : '2px', internal ? theme.getColor('lightestGrey', 50) : theme.colors.blue);
|
|
12577
12567
|
});
|
|
12578
|
-
var Tabs = styled__default.ul(_templateObject3$
|
|
12568
|
+
var Tabs = styled__default.ul(_templateObject3$8 || (_templateObject3$8 = _taggedTemplateLiteralLoose(["\n user-select: none;\n list-style: none;\n display: inline-flex;\n gap: 1px;\n padding: 0;\n margin: 0;\n\n ", "\n"])), function (_ref2) {
|
|
12579
12569
|
var theme = _ref2.theme,
|
|
12580
12570
|
internal = _ref2.internal;
|
|
12581
|
-
return styled.css(_templateObject4$
|
|
12571
|
+
return styled.css(_templateObject4$7 || (_templateObject4$7 = _taggedTemplateLiteralLoose(["\n height: ", ";\n box-shadow: 0 0 10px 0 ", ";\n "])), internal ? '41px' : '49px', theme.getColor('black', 10));
|
|
12582
12572
|
});
|
|
12583
|
-
var Tab = styled__default.li(_templateObject5$
|
|
12573
|
+
var Tab = styled__default.li(_templateObject5$6 || (_templateObject5$6 = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: space-between;\n border-radius: 4px 4px 0 0;\n\n svg {\n transform: scale(calc(18 / 24));\n stroke-width: 2px;\n }\n\n ", "\n"])), function (_ref3) {
|
|
12584
12574
|
var theme = _ref3.theme,
|
|
12585
12575
|
active = _ref3.active;
|
|
12586
|
-
return styled.css(_templateObject6$
|
|
12576
|
+
return styled.css(_templateObject6$4 || (_templateObject6$4 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n padding: 0 ", ";\n gap: ", ";\n\n span {\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n\n color: ", ";\n }\n\n svg {\n stroke: ", ";\n\n &:hover {\n stroke: ", ";\n }\n }\n "])), theme.colors[active ? 'blue' : 'white'], theme.spacings.s2, theme.spacings.s2, theme.typographies.h2.fontFamily, theme.typographies.h2.fontSize, theme.typographies.h2.fontWeight, theme.colors[active ? 'white' : 'darkBlue'], theme.colors[active ? 'white' : 'darkBlue'], theme.colors.red);
|
|
12587
12577
|
});
|
|
12588
12578
|
|
|
12589
12579
|
var Tabs$1 = function Tabs$1(props) {
|
|
@@ -12672,14 +12662,14 @@ var getMask = function getMask(mask) {
|
|
|
12672
12662
|
};
|
|
12673
12663
|
};
|
|
12674
12664
|
|
|
12675
|
-
var _templateObject$c, _templateObject2$a, _templateObject3$
|
|
12665
|
+
var _templateObject$c, _templateObject2$a, _templateObject3$9, _templateObject4$8, _templateObject5$7, _templateObject6$5, _templateObject7$4, _templateObject8$3, _templateObject9$3, _templateObject10$2, _templateObject11$1, _templateObject12$1, _templateObject13$1, _templateObject14$1, _templateObject15;
|
|
12676
12666
|
var IconContainer = styled__default.button(_templateObject$c || (_templateObject$c = _taggedTemplateLiteralLoose(["\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: center;\n height: 17px;\n\n background-color: transparent;\n border: none;\n box-shadow: none;\n padding: 0;\n\n ", "\n"])), function (_ref) {
|
|
12677
12667
|
var onClick = _ref.onClick,
|
|
12678
12668
|
disabled = _ref.disabled;
|
|
12679
12669
|
if (!onClick || disabled) return;
|
|
12680
12670
|
return styled.css(_templateObject2$a || (_templateObject2$a = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n "])));
|
|
12681
12671
|
});
|
|
12682
|
-
var Input = styled__default.input(_templateObject3$
|
|
12672
|
+
var Input = styled__default.input(_templateObject3$9 || (_templateObject3$9 = _taggedTemplateLiteralLoose(["\n ", ";\n\n color: ", ";\n\n line-height: 17px;\n\n ::placeholder {\n color: ", ";\n\n line-height: 17px;\n\n ", "\n }\n\n display: block;\n width: ", ";\n box-sizing: border-box;\n\n ", ";\n\n border-width: 1px;\n border-style: solid;\n border-color: ", ";\n border-radius: 4px;\n\n ", ";\n\n box-shadow: none;\n outline: none;\n\n ", "\n\n ", "\n"])), function (_ref2) {
|
|
12683
12673
|
var theme = _ref2.theme;
|
|
12684
12674
|
return theme.useTypography('p');
|
|
12685
12675
|
}, function (_ref3) {
|
|
@@ -12694,13 +12684,13 @@ var Input = styled__default.input(_templateObject3$a || (_templateObject3$a = _t
|
|
|
12694
12684
|
var placeholder = _ref5.placeholder;
|
|
12695
12685
|
|
|
12696
12686
|
if (placeholder !== '••••••••') {
|
|
12697
|
-
return styled.css(_templateObject4$
|
|
12687
|
+
return styled.css(_templateObject4$8 || (_templateObject4$8 = _taggedTemplateLiteralLoose(["\n ", ";\n opacity: 1;\n "])), function (_ref6) {
|
|
12698
12688
|
var theme = _ref6.theme;
|
|
12699
12689
|
return theme.useTypography('p');
|
|
12700
12690
|
});
|
|
12701
12691
|
}
|
|
12702
12692
|
|
|
12703
|
-
return styled.css(_templateObject5$
|
|
12693
|
+
return styled.css(_templateObject5$7 || (_templateObject5$7 = _taggedTemplateLiteralLoose(["\n opacity: 0.5;\n font-size: 14px;\n letter-spacing: 0px;\n "])));
|
|
12704
12694
|
}, function (_ref7) {
|
|
12705
12695
|
var width = _ref7.width;
|
|
12706
12696
|
return width || '100%';
|
|
@@ -12708,7 +12698,7 @@ var Input = styled__default.input(_templateObject3$a || (_templateObject3$a = _t
|
|
|
12708
12698
|
var theme = _ref8.theme,
|
|
12709
12699
|
paddingless = _ref8.paddingless;
|
|
12710
12700
|
if (paddingless) return;
|
|
12711
|
-
return styled.css(_templateObject6$
|
|
12701
|
+
return styled.css(_templateObject6$5 || (_templateObject6$5 = _taggedTemplateLiteralLoose(["\n padding: ", " ", ";\n "])), theme.spacings.s2, theme.spacings.s3);
|
|
12712
12702
|
}, function (_ref9) {
|
|
12713
12703
|
var theme = _ref9.theme,
|
|
12714
12704
|
invalid = _ref9.invalid,
|
|
@@ -12927,7 +12917,7 @@ var Input$1 = React__default.forwardRef(function (props, ref) {
|
|
|
12927
12917
|
});
|
|
12928
12918
|
Input$1.displayName = 'Input';
|
|
12929
12919
|
|
|
12930
|
-
var _templateObject$d, _templateObject2$b, _templateObject3$
|
|
12920
|
+
var _templateObject$d, _templateObject2$b, _templateObject3$a, _templateObject4$9, _templateObject5$8, _templateObject6$6, _templateObject7$5;
|
|
12931
12921
|
var width = '17px';
|
|
12932
12922
|
var Checkmark = styled__default.span(_templateObject$d || (_templateObject$d = _taggedTemplateLiteralLoose(["\n position: absolute;\n top: 0px;\n left: 0;\n height: ", ";\n width: ", ";\n background-color: ", ";\n\n border-style: solid;\n border-color: ", ";\n border-width: 1px;\n border-radius: 4px;\n\n transition-property: border-color;\n transition-duration: 0.25s;\n transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);\n\n :after {\n content: '';\n position: absolute;\n\n left: 50%;\n top: 50%;\n height: 0;\n width: 0;\n\n border-style: solid;\n border-color: ", ";\n border-width: 0;\n transform: rotate(45deg);\n\n transition-property: width height border-width top left;\n transition-duration: 0.25s;\n transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);\n }\n"])), width, width, function (_ref) {
|
|
12933
12923
|
var theme = _ref.theme;
|
|
@@ -12985,15 +12975,15 @@ var Label$1 = styled__default.label(_templateObject2$b || (_templateObject2$b =
|
|
|
12985
12975
|
}
|
|
12986
12976
|
}
|
|
12987
12977
|
|
|
12988
|
-
return styled.css(_templateObject3$
|
|
12978
|
+
return styled.css(_templateObject3$a || (_templateObject3$a = _taggedTemplateLiteralLoose(["\n padding-top: ", ";\n padding-left: ", ";\n padding-right: ", ";\n padding-bottom: ", ";\n "])), _padding.top, _padding.left, _padding.right, _padding.bottom);
|
|
12989
12979
|
}, function (_ref6) {
|
|
12990
12980
|
var disabled = _ref6.disabled;
|
|
12991
12981
|
|
|
12992
12982
|
if (!disabled) {
|
|
12993
|
-
return styled.css(_templateObject4$
|
|
12983
|
+
return styled.css(_templateObject4$9 || (_templateObject4$9 = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n "])));
|
|
12994
12984
|
}
|
|
12995
12985
|
|
|
12996
|
-
return styled.css(_templateObject5$
|
|
12986
|
+
return styled.css(_templateObject5$8 || (_templateObject5$8 = _taggedTemplateLiteralLoose(["\n opacity: 0.5;\n "])));
|
|
12997
12987
|
}, width, function (_ref7) {
|
|
12998
12988
|
var theme = _ref7.theme;
|
|
12999
12989
|
return theme.spacings.s1;
|
|
@@ -13003,7 +12993,7 @@ var Label$1 = styled__default.label(_templateObject2$b || (_templateObject2$b =
|
|
|
13003
12993
|
}, function (_ref9) {
|
|
13004
12994
|
var required = _ref9.required;
|
|
13005
12995
|
if (!required) return;
|
|
13006
|
-
return styled.css(_templateObject6$
|
|
12996
|
+
return styled.css(_templateObject6$6 || (_templateObject6$6 = _taggedTemplateLiteralLoose(["\n :after {\n content: ' *';\n }\n "])));
|
|
13007
12997
|
}, Checkmark, function (_ref10) {
|
|
13008
12998
|
var theme = _ref10.theme;
|
|
13009
12999
|
return theme.colors.iceWhite;
|
|
@@ -13067,8 +13057,8 @@ var inputTimeWidth = {
|
|
|
13067
13057
|
withoutSeconds: '66px'
|
|
13068
13058
|
};
|
|
13069
13059
|
|
|
13070
|
-
var _templateObject$e, _templateObject2$c, _templateObject3$
|
|
13071
|
-
var Container$7 = styled__default.div(_templateObject$e || (_templateObject$e = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: ", ";\n background-color: ", ";\n\n ", ";\n"])), function (_ref) {
|
|
13060
|
+
var _templateObject$e, _templateObject2$c, _templateObject3$b, _templateObject4$a, _templateObject5$9, _templateObject6$7, _templateObject7$6, _templateObject8$4, _templateObject9$4;
|
|
13061
|
+
var Container$7 = styled__default.div(_templateObject$e || (_templateObject$e = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: ", ";\n background-color: ", ";\n position: relative;\n\n ", ";\n"])), function (_ref) {
|
|
13072
13062
|
var theme = _ref.theme;
|
|
13073
13063
|
return theme.spacings.s3;
|
|
13074
13064
|
}, function (_ref2) {
|
|
@@ -13079,22 +13069,22 @@ var Container$7 = styled__default.div(_templateObject$e || (_templateObject$e =
|
|
|
13079
13069
|
var s3 = theme.spacings.s3;
|
|
13080
13070
|
return styled.css(_templateObject2$c || (_templateObject2$c = _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);
|
|
13081
13071
|
});
|
|
13082
|
-
var LabelContainer = styled__default.div(_templateObject3$
|
|
13072
|
+
var LabelContainer = styled__default.div(_templateObject3$b || (_templateObject3$b = _taggedTemplateLiteralLoose(["\n ", ";\n line-height: ", ";\n"])), function (_ref4) {
|
|
13083
13073
|
var theme = _ref4.theme;
|
|
13084
13074
|
return theme.useTypography('p');
|
|
13085
13075
|
}, function (_ref5) {
|
|
13086
13076
|
var theme = _ref5.theme;
|
|
13087
13077
|
return theme.spacings.s3;
|
|
13088
13078
|
});
|
|
13089
|
-
var CalendarContainer = styled__default.div(_templateObject4$
|
|
13079
|
+
var CalendarContainer = styled__default.div(_templateObject4$a || (_templateObject4$a = _taggedTemplateLiteralLoose(["\n border: 1px solid ", ";\n"])), function (_ref6) {
|
|
13090
13080
|
var theme = _ref6.theme;
|
|
13091
13081
|
return theme.colors.lightestGrey;
|
|
13092
13082
|
});
|
|
13093
|
-
var AbsoluteContainer$1 = styled__default(AbsoluteContainer)(_templateObject5$
|
|
13083
|
+
var AbsoluteContainer$1 = styled__default(AbsoluteContainer)(_templateObject5$9 || (_templateObject5$9 = _taggedTemplateLiteralLoose(["\n > ", " {\n padding: ", ";\n }\n"])), Container$7, function (_ref7) {
|
|
13094
13084
|
var theme = _ref7.theme;
|
|
13095
13085
|
return theme.spacings.s3 + " " + theme.spacings.s3 + " " + theme.spacings.s1 + " " + theme.spacings.s3;
|
|
13096
13086
|
});
|
|
13097
|
-
var MonthContainer = styled__default.div(_templateObject6$
|
|
13087
|
+
var MonthContainer = styled__default.div(_templateObject6$7 || (_templateObject6$7 = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n gap: ", ";\n > div {\n margin: ", " 0;\n flex: 1;\n position: relative;\n }\n"])), function (_ref8) {
|
|
13098
13088
|
var theme = _ref8.theme;
|
|
13099
13089
|
return theme.spacings.s1;
|
|
13100
13090
|
}, function (_ref9) {
|
|
@@ -13185,7 +13175,7 @@ var MonthPicker = function MonthPicker(props) {
|
|
|
13185
13175
|
}));
|
|
13186
13176
|
};
|
|
13187
13177
|
|
|
13188
|
-
var _templateObject$f, _templateObject2$d, _templateObject3$
|
|
13178
|
+
var _templateObject$f, _templateObject2$d, _templateObject3$c, _templateObject4$b, _templateObject5$a, _templateObject6$8, _templateObject7$7, _templateObject8$5, _templateObject9$5, _templateObject10$3, _templateObject11$2;
|
|
13189
13179
|
var Footer = styled__default.div(_templateObject$f || (_templateObject$f = _taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n\n > button:last-child {\n margin-left: auto;\n }\n"])));
|
|
13190
13180
|
var WeekContainer = styled__default.div(_templateObject2$d || (_templateObject2$d = _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) {
|
|
13191
13181
|
var theme = _ref.theme;
|
|
@@ -13206,20 +13196,20 @@ var WeekContainer = styled__default.div(_templateObject2$d || (_templateObject2$
|
|
|
13206
13196
|
var theme = _ref6.theme;
|
|
13207
13197
|
return theme.colors.lightestGrey;
|
|
13208
13198
|
});
|
|
13209
|
-
var Header = styled__default.div(_templateObject3$
|
|
13199
|
+
var Header = styled__default.div(_templateObject3$c || (_templateObject3$c = _taggedTemplateLiteralLoose(["\n width: 100%;\n\n background-color: ", ";\n font-weight: bolder;\n\n > ", " {\n border-top: none;\n > * {\n border-right-color: transparent;\n }\n }\n"])), function (_ref7) {
|
|
13210
13200
|
var theme = _ref7.theme;
|
|
13211
13201
|
return theme.getColor('lightestGrey', 40);
|
|
13212
13202
|
}, WeekContainer);
|
|
13213
|
-
var DayContainer = styled__default.button(_templateObject4$
|
|
13203
|
+
var DayContainer = styled__default.button(_templateObject4$b || (_templateObject4$b = _taggedTemplateLiteralLoose(["\n position: relative;\n overflow: hidden;\n\n ", ";\n\n :disabled {\n color: ", ";\n }\n\n :not(:disabled) {\n cursor: pointer;\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) {
|
|
13214
13204
|
var theme = _ref8.theme,
|
|
13215
13205
|
appearance = _ref8.appearance;
|
|
13216
13206
|
|
|
13217
13207
|
var hover = function hover(color) {
|
|
13218
|
-
return styled.css(_templateObject5$
|
|
13208
|
+
return styled.css(_templateObject5$a || (_templateObject5$a = _taggedTemplateLiteralLoose(["\n :not(:disabled):hover {\n border-color: ", ";\n color: ", ";\n }\n "])), theme.colors[color], theme.colors[color]);
|
|
13219
13209
|
};
|
|
13220
13210
|
|
|
13221
13211
|
if (appearance === 'disabled') {
|
|
13222
|
-
return styled.css(_templateObject6$
|
|
13212
|
+
return styled.css(_templateObject6$8 || (_templateObject6$8 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), theme.getColor('greyishBlue', 10));
|
|
13223
13213
|
} else if (appearance === 'highlight') {
|
|
13224
13214
|
return styled.css(_templateObject7$7 || (_templateObject7$7 = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n ", "\n "])), theme.getColor('blue', 30), hover('blue'));
|
|
13225
13215
|
} else if (appearance === 'active') {
|
|
@@ -13244,6 +13234,9 @@ var DayContainer = styled__default.button(_templateObject4$c || (_templateObject
|
|
|
13244
13234
|
|
|
13245
13235
|
return styled.css(_templateObject10$3 || (_templateObject10$3 = _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']);
|
|
13246
13236
|
});
|
|
13237
|
+
var DayIndicator = styled__default(Indicator).attrs({
|
|
13238
|
+
size: 'mini'
|
|
13239
|
+
})(_templateObject11$2 || (_templateObject11$2 = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: calc(", " - 1px);\n left: calc(50% - (", " / 2) + 1px);\n"])), sizes$1.mini, sizes$1.mini);
|
|
13247
13240
|
|
|
13248
13241
|
var getCalendar = function getCalendar(d) {
|
|
13249
13242
|
var date = new Date(d.getTime());
|
|
@@ -13352,7 +13345,7 @@ var getTimeFromDate = function getTimeFromDate(date) {
|
|
|
13352
13345
|
};
|
|
13353
13346
|
var isInvalid = function isInvalid(value, time, timeOptions, min, max) {
|
|
13354
13347
|
if (!value) {
|
|
13355
|
-
return
|
|
13348
|
+
return false;
|
|
13356
13349
|
}
|
|
13357
13350
|
|
|
13358
13351
|
if (timeOptions) {
|
|
@@ -13376,6 +13369,78 @@ var getInitialCalendar = function getInitialCalendar(date, min, max) {
|
|
|
13376
13369
|
return getCalendar(date && !isNaN(date.getTime()) && isDateBetween(date, min, max) ? date : getMiddle(min, max));
|
|
13377
13370
|
};
|
|
13378
13371
|
|
|
13372
|
+
var theme = {
|
|
13373
|
+
sizes: sizes,
|
|
13374
|
+
fontSizes: fontSizes
|
|
13375
|
+
};
|
|
13376
|
+
|
|
13377
|
+
var theme$1 = {
|
|
13378
|
+
button: theme
|
|
13379
|
+
};
|
|
13380
|
+
|
|
13381
|
+
var _templateObject$g;
|
|
13382
|
+
var FontStyles = styled.createGlobalStyle(_templateObject$g || (_templateObject$g = _taggedTemplateLiteralLoose(["\n"])));
|
|
13383
|
+
|
|
13384
|
+
var Globals = function Globals() {
|
|
13385
|
+
return React__default.createElement(React__default.Fragment, null, React__default.createElement(FontStyles, null));
|
|
13386
|
+
};
|
|
13387
|
+
|
|
13388
|
+
var _templateObject$h;
|
|
13389
|
+
|
|
13390
|
+
var getColor$1 = function getColor(color, opacity) {
|
|
13391
|
+
if (opacity === void 0) {
|
|
13392
|
+
opacity = 100;
|
|
13393
|
+
}
|
|
13394
|
+
|
|
13395
|
+
return "" + colors[color] + opacities[opacity];
|
|
13396
|
+
};
|
|
13397
|
+
|
|
13398
|
+
var useTypography = function useTypography(typography, options) {
|
|
13399
|
+
if (options === void 0) {
|
|
13400
|
+
options = {};
|
|
13401
|
+
}
|
|
13402
|
+
|
|
13403
|
+
var _typographies$typogra = typographies[typography],
|
|
13404
|
+
fontFamily = _typographies$typogra.fontFamily,
|
|
13405
|
+
fontWeight = _typographies$typogra.fontWeight,
|
|
13406
|
+
fontSize = _typographies$typogra.fontSize;
|
|
13407
|
+
return styled.css(_templateObject$h || (_templateObject$h = _taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-weight: ", ";\n font-size: ", ";\n "])), fontFamily, options.fontWeight || fontWeight, fontSize);
|
|
13408
|
+
};
|
|
13409
|
+
|
|
13410
|
+
var isDarkColor = function isDarkColor(color, ifDark, ifLight) {
|
|
13411
|
+
if (ifDark === void 0) {
|
|
13412
|
+
ifDark = 'white';
|
|
13413
|
+
}
|
|
13414
|
+
|
|
13415
|
+
if (ifLight === void 0) {
|
|
13416
|
+
ifLight = 'black';
|
|
13417
|
+
}
|
|
13418
|
+
|
|
13419
|
+
var hex = theme$2.colors[color].replace('#', '');
|
|
13420
|
+
var red = parseInt(hex.substring(0, 2), 16);
|
|
13421
|
+
var green = parseInt(hex.substring(2, 4), 16);
|
|
13422
|
+
var blue = parseInt(hex.substring(4, 6), 16);
|
|
13423
|
+
var luminosity = (red * 299 + green * 587 + blue * 114) / 1000;
|
|
13424
|
+
return luminosity <= 128 ? ifDark : ifLight;
|
|
13425
|
+
};
|
|
13426
|
+
|
|
13427
|
+
var theme$2 = {
|
|
13428
|
+
colors: colors,
|
|
13429
|
+
fonts: fonts,
|
|
13430
|
+
spacings: spacings,
|
|
13431
|
+
typographies: typographies,
|
|
13432
|
+
getColor: getColor$1,
|
|
13433
|
+
useTypography: useTypography,
|
|
13434
|
+
isDarkColor: isDarkColor,
|
|
13435
|
+
components: theme$1
|
|
13436
|
+
};
|
|
13437
|
+
|
|
13438
|
+
var ThemeProvider = function ThemeProvider(props) {
|
|
13439
|
+
return React__default.createElement(styled.ThemeProvider, {
|
|
13440
|
+
theme: theme$2
|
|
13441
|
+
}, React__default.createElement(Globals, null), props.children);
|
|
13442
|
+
};
|
|
13443
|
+
|
|
13379
13444
|
var Main = React__default.forwardRef(function (props, ref) {
|
|
13380
13445
|
var getDay = props.getDay,
|
|
13381
13446
|
initialMonth = props.initialMonth;
|
|
@@ -13384,6 +13449,27 @@ var Main = React__default.forwardRef(function (props, ref) {
|
|
|
13384
13449
|
selectOpen = _useState[0],
|
|
13385
13450
|
setSelectOpen = _useState[1];
|
|
13386
13451
|
|
|
13452
|
+
var _useState2 = React.useState(false),
|
|
13453
|
+
loading = _useState2[0],
|
|
13454
|
+
setLoading = _useState2[1];
|
|
13455
|
+
|
|
13456
|
+
var onChangeMonth = function () {
|
|
13457
|
+
var onChangeMonth = props.onChangeMonth;
|
|
13458
|
+
if (!onChangeMonth) return function () {
|
|
13459
|
+
return Promise.resolve();
|
|
13460
|
+
};
|
|
13461
|
+
return function () {
|
|
13462
|
+
try {
|
|
13463
|
+
setLoading(true);
|
|
13464
|
+
return Promise.resolve(onChangeMonth.apply(void 0, arguments)).then(function () {
|
|
13465
|
+
setLoading(false);
|
|
13466
|
+
});
|
|
13467
|
+
} catch (e) {
|
|
13468
|
+
return Promise.reject(e);
|
|
13469
|
+
}
|
|
13470
|
+
};
|
|
13471
|
+
}();
|
|
13472
|
+
|
|
13387
13473
|
var min = props.min ? function () {
|
|
13388
13474
|
var date = new Date(props.min);
|
|
13389
13475
|
date.setHours(0, 0, 0, 0);
|
|
@@ -13397,7 +13483,24 @@ var Main = React__default.forwardRef(function (props, ref) {
|
|
|
13397
13483
|
|
|
13398
13484
|
var _ref = props.calendar || React.useState(getInitialCalendar(initialMonth, min, max)),
|
|
13399
13485
|
calendar = _ref[0],
|
|
13400
|
-
|
|
13486
|
+
_setCalendar = _ref[1];
|
|
13487
|
+
|
|
13488
|
+
var setCalendar = function setCalendar(value) {
|
|
13489
|
+
_setCalendar(function (prev) {
|
|
13490
|
+
var newv = typeof value === 'function' ? value(prev) : value;
|
|
13491
|
+
return newv.month === prev.month && newv.year === prev.year ? prev : newv;
|
|
13492
|
+
});
|
|
13493
|
+
};
|
|
13494
|
+
|
|
13495
|
+
React.useEffect(function () {
|
|
13496
|
+
var _ref2 = [calendar.weeks[0], calendar.weeks[calendar.weeks.length - 1]],
|
|
13497
|
+
first = _ref2[0],
|
|
13498
|
+
last = _ref2[1];
|
|
13499
|
+
onChangeMonth(_extends({}, calendar, {
|
|
13500
|
+
firstDay: first[0],
|
|
13501
|
+
lastDay: last[last.length - 1]
|
|
13502
|
+
}));
|
|
13503
|
+
}, [calendar]);
|
|
13401
13504
|
|
|
13402
13505
|
var changeMonth = function changeMonth(add) {
|
|
13403
13506
|
setCalendar(function (prev) {
|
|
@@ -13410,11 +13513,11 @@ var Main = React__default.forwardRef(function (props, ref) {
|
|
|
13410
13513
|
};
|
|
13411
13514
|
|
|
13412
13515
|
var getPrev = function getPrev() {
|
|
13413
|
-
var
|
|
13516
|
+
var _ref3 = min !== undefined && (calendar.year < min.getFullYear() || calendar.year === min.getFullYear() && calendar.month <= min.getMonth()) ? [true] : [undefined, function () {
|
|
13414
13517
|
return changeMonth(-1);
|
|
13415
13518
|
}],
|
|
13416
|
-
disabled =
|
|
13417
|
-
onClick =
|
|
13519
|
+
disabled = _ref3[0],
|
|
13520
|
+
onClick = _ref3[1];
|
|
13418
13521
|
|
|
13419
13522
|
return React__default.createElement(NavBtn, {
|
|
13420
13523
|
type: 'button',
|
|
@@ -13429,11 +13532,11 @@ var Main = React__default.forwardRef(function (props, ref) {
|
|
|
13429
13532
|
};
|
|
13430
13533
|
|
|
13431
13534
|
var getNext = function getNext() {
|
|
13432
|
-
var
|
|
13535
|
+
var _ref4 = max !== undefined && (calendar.year > max.getFullYear() || calendar.year === max.getFullYear() && calendar.month >= max.getMonth()) ? [true] : [undefined, function () {
|
|
13433
13536
|
return changeMonth(1);
|
|
13434
13537
|
}],
|
|
13435
|
-
disabled =
|
|
13436
|
-
onClick =
|
|
13538
|
+
disabled = _ref4[0],
|
|
13539
|
+
onClick = _ref4[1];
|
|
13437
13540
|
|
|
13438
13541
|
return React__default.createElement(NavBtn, {
|
|
13439
13542
|
type: 'button',
|
|
@@ -13496,11 +13599,11 @@ var Main = React__default.forwardRef(function (props, ref) {
|
|
|
13496
13599
|
var month = date.getMonth();
|
|
13497
13600
|
var appearance = month !== calendar.month || max && date > max || min && date < min ? 'disabled' : details.appearance;
|
|
13498
13601
|
|
|
13499
|
-
var
|
|
13500
|
-
disabled =
|
|
13501
|
-
onClick =
|
|
13502
|
-
onMouseOver =
|
|
13503
|
-
onMouseOut =
|
|
13602
|
+
var _ref5 = appearance === 'disabled' ? [true, undefined] : [undefined, details.onClick, details.onMouseOver, details.onMouseOut],
|
|
13603
|
+
disabled = _ref5[0],
|
|
13604
|
+
onClick = _ref5[1],
|
|
13605
|
+
onMouseOver = _ref5[2],
|
|
13606
|
+
onMouseOut = _ref5[3];
|
|
13504
13607
|
|
|
13505
13608
|
return React__default.createElement(DayContainer, {
|
|
13506
13609
|
key: index,
|
|
@@ -13511,14 +13614,18 @@ var Main = React__default.forwardRef(function (props, ref) {
|
|
|
13511
13614
|
disabled: disabled,
|
|
13512
13615
|
appearance: appearance,
|
|
13513
13616
|
today: dateCompare(new Date(), date, 'eq', false) ? 1 : 0
|
|
13514
|
-
}, day
|
|
13617
|
+
}, day, details.indicator && React__default.createElement(DayIndicator, {
|
|
13618
|
+
type: details.indicator
|
|
13619
|
+
}));
|
|
13515
13620
|
}));
|
|
13516
|
-
})), props.children && React__default.createElement(Footer, null, props.children)
|
|
13621
|
+
})), props.children && React__default.createElement(Footer, null, props.children), loading && React__default.createElement(Loader, {
|
|
13622
|
+
filled: theme$2.getColor('white', 95)
|
|
13623
|
+
}));
|
|
13517
13624
|
});
|
|
13518
13625
|
Main.displayName = 'Main';
|
|
13519
13626
|
|
|
13520
13627
|
var BasicCalendar = React__default.forwardRef(function (props, ref) {
|
|
13521
|
-
var containerProps = filterObject(props, ['initialMonth', 'max', 'min', 'getDay', 'calendar', 'absolute']);
|
|
13628
|
+
var containerProps = filterObject(props, ['initialMonth', 'max', 'min', 'getDay', 'calendar', 'absolute', 'onChangeMonth']);
|
|
13522
13629
|
return 'absolute' in props ? React__default.createElement(AbsoluteContainer$1, Object.assign({
|
|
13523
13630
|
axis: 'y',
|
|
13524
13631
|
maxHeight: maxHeight
|
|
@@ -13660,12 +13767,19 @@ var getCalendar2 = function getCalendar2(calendar1) {
|
|
|
13660
13767
|
date.setHours(0, 0, 0, 0);
|
|
13661
13768
|
return getCalendar(date);
|
|
13662
13769
|
};
|
|
13770
|
+
var getTimeProps = function getTimeProps(time, value) {
|
|
13771
|
+
if (time === true) return [{}, {}];
|
|
13772
|
+
if (!time) return [undefined, undefined];
|
|
13773
|
+
return time.map(function (e, i) {
|
|
13774
|
+
return typeof e === 'function' ? e(value[i]) : e;
|
|
13775
|
+
});
|
|
13776
|
+
};
|
|
13663
13777
|
|
|
13664
|
-
var _templateObject$
|
|
13665
|
-
var SubmitButton = styled__default(Button$1)(_templateObject$
|
|
13778
|
+
var _templateObject$i;
|
|
13779
|
+
var SubmitButton = styled__default(Button$1)(_templateObject$i || (_templateObject$i = _taggedTemplateLiteralLoose(["\n width: 105px;\n"])));
|
|
13666
13780
|
|
|
13667
|
-
var _templateObject$
|
|
13668
|
-
var CalendarsContainer = styled__default.div(_templateObject$
|
|
13781
|
+
var _templateObject$j, _templateObject2$e;
|
|
13782
|
+
var CalendarsContainer = styled__default.div(_templateObject$j || (_templateObject$j = _taggedTemplateLiteralLoose(["\n display: flex;\n gap: ", ";\n background-color: ", ";\n"])), function (_ref) {
|
|
13669
13783
|
var theme = _ref.theme;
|
|
13670
13784
|
return theme.spacings.s3;
|
|
13671
13785
|
}, function (_ref2) {
|
|
@@ -13702,18 +13816,32 @@ var Main$1 = React__default.forwardRef(function (props, ref) {
|
|
|
13702
13816
|
|
|
13703
13817
|
var _useState2 = React.useState(getInitialCalendar(value[0] || initialMonth, min, max)),
|
|
13704
13818
|
calendar1 = _useState2[0],
|
|
13705
|
-
|
|
13819
|
+
_setCalendar1 = _useState2[1];
|
|
13820
|
+
|
|
13821
|
+
var setCalendar1 = function setCalendar1(value) {
|
|
13822
|
+
_setCalendar1(function (prev) {
|
|
13823
|
+
var newv = typeof value === 'function' ? value(prev) : value;
|
|
13824
|
+
return newv.month === prev.month && newv.year === prev.year ? prev : newv;
|
|
13825
|
+
});
|
|
13826
|
+
};
|
|
13706
13827
|
|
|
13707
13828
|
var _useState3 = React.useState(getCalendar2(calendar1)),
|
|
13708
13829
|
calendar2 = _useState3[0],
|
|
13709
|
-
|
|
13830
|
+
_setCalendar2 = _useState3[1];
|
|
13831
|
+
|
|
13832
|
+
var setCalendar2 = function setCalendar2(value) {
|
|
13833
|
+
_setCalendar2(function (prev) {
|
|
13834
|
+
var newv = typeof value === 'function' ? value(prev) : value;
|
|
13835
|
+
return newv.month === prev.month && newv.year === prev.year ? prev : newv;
|
|
13836
|
+
});
|
|
13837
|
+
};
|
|
13710
13838
|
|
|
13711
13839
|
var _useState4 = React.useState(null),
|
|
13712
13840
|
hoverDay = _useState4[0],
|
|
13713
13841
|
setHoverDay = _useState4[1];
|
|
13714
13842
|
|
|
13715
13843
|
React.useEffect(function () {
|
|
13716
|
-
var timeProps = props.time
|
|
13844
|
+
var timeProps = getTimeProps(props.time, value);
|
|
13717
13845
|
setHoverDay(null);
|
|
13718
13846
|
|
|
13719
13847
|
if (value[0]) {
|
|
@@ -13730,34 +13858,18 @@ var Main$1 = React__default.forwardRef(function (props, ref) {
|
|
|
13730
13858
|
}
|
|
13731
13859
|
|
|
13732
13860
|
setInvalid(value.map(function (v, i) {
|
|
13733
|
-
return isInvalid(v, time[i], timeProps
|
|
13861
|
+
return isInvalid(v, time[i], timeProps[i], min, max);
|
|
13734
13862
|
}));
|
|
13735
13863
|
}, [value, time, props.time]);
|
|
13736
|
-
var onSubmit = {
|
|
13737
|
-
disabled: invalid.some(function (v) {
|
|
13738
|
-
return v;
|
|
13739
|
-
}),
|
|
13740
|
-
onClick: function onClick() {}
|
|
13741
|
-
};
|
|
13742
13864
|
|
|
13743
|
-
|
|
13744
|
-
|
|
13745
|
-
|
|
13746
|
-
onClick = _props$onSubmit.onClick;
|
|
13747
|
-
|
|
13748
|
-
if (disabled) {
|
|
13749
|
-
onSubmit.disabled = true;
|
|
13750
|
-
}
|
|
13865
|
+
var _getDay = props.getDay || function () {
|
|
13866
|
+
return {};
|
|
13867
|
+
};
|
|
13751
13868
|
|
|
13752
|
-
|
|
13753
|
-
|
|
13754
|
-
onClick([value[0] ? getFullDate(value[0], time[0]) : null, value[1] ? getFullDate(value[1], time[1], true) : null]);
|
|
13755
|
-
};
|
|
13756
|
-
}
|
|
13757
|
-
}
|
|
13869
|
+
var _getDay2 = function getDay(day, side) {
|
|
13870
|
+
var dayProps = _getDay(day, side);
|
|
13758
13871
|
|
|
13759
|
-
|
|
13760
|
-
var onClick = function onClick() {
|
|
13872
|
+
var _onClick2 = function onClick() {
|
|
13761
13873
|
var newValue = [].concat(value);
|
|
13762
13874
|
|
|
13763
13875
|
if (!newValue[0]) {
|
|
@@ -13779,9 +13891,9 @@ var Main$1 = React__default.forwardRef(function (props, ref) {
|
|
|
13779
13891
|
return setHoverDay(day);
|
|
13780
13892
|
}, function () {
|
|
13781
13893
|
return setHoverDay(null);
|
|
13782
|
-
}] : [],
|
|
13783
|
-
|
|
13784
|
-
|
|
13894
|
+
}] : [function () {}, function () {}],
|
|
13895
|
+
_onMouseOver2 = _ref3[0],
|
|
13896
|
+
_onMouseOut2 = _ref3[1];
|
|
13785
13897
|
|
|
13786
13898
|
var appearance = function () {
|
|
13787
13899
|
if (value.some(function (v) {
|
|
@@ -13797,21 +13909,73 @@ var Main$1 = React__default.forwardRef(function (props, ref) {
|
|
|
13797
13909
|
return undefined;
|
|
13798
13910
|
}();
|
|
13799
13911
|
|
|
13800
|
-
|
|
13801
|
-
|
|
13802
|
-
|
|
13803
|
-
|
|
13804
|
-
|
|
13805
|
-
|
|
13912
|
+
var _map = ['onClick', 'onMouseOver', 'onMouseOut'].map(function (c) {
|
|
13913
|
+
return dayProps[c] || function () {};
|
|
13914
|
+
}),
|
|
13915
|
+
_onClick = _map[0],
|
|
13916
|
+
_onMouseOver = _map[1],
|
|
13917
|
+
_onMouseOut = _map[2];
|
|
13918
|
+
|
|
13919
|
+
return _extends({}, dayProps, {
|
|
13920
|
+
appearance: appearance || dayProps.appearance,
|
|
13921
|
+
onClick: function onClick(e) {
|
|
13922
|
+
_onClick(e);
|
|
13923
|
+
|
|
13924
|
+
_onClick2();
|
|
13925
|
+
},
|
|
13926
|
+
onMouseOver: function onMouseOver(e) {
|
|
13927
|
+
_onMouseOver(e);
|
|
13928
|
+
|
|
13929
|
+
_onMouseOver2();
|
|
13930
|
+
},
|
|
13931
|
+
onMouseOut: function onMouseOut(e) {
|
|
13932
|
+
_onMouseOut(e);
|
|
13933
|
+
|
|
13934
|
+
_onMouseOut2();
|
|
13935
|
+
}
|
|
13936
|
+
});
|
|
13806
13937
|
};
|
|
13807
13938
|
|
|
13808
|
-
var calendarProps = filterObject(props, ['initialValue', 'value', 'time', 'onSubmit', 'invalid', 'initialMonth', 'max', 'min']);
|
|
13939
|
+
var calendarProps = filterObject(props, ['initialValue', 'value', 'time', 'onSubmit', 'invalid', 'initialMonth', 'max', 'min', 'getDay']);
|
|
13940
|
+
var timeInvalid = !time.some(function (t) {
|
|
13941
|
+
return t.length > 0;
|
|
13942
|
+
}) ? [false, false] : time.map(function (t) {
|
|
13943
|
+
return t.length === 0;
|
|
13944
|
+
});
|
|
13945
|
+
var onSubmit = {
|
|
13946
|
+
disabled: value.some(function (v) {
|
|
13947
|
+
return v === null;
|
|
13948
|
+
}) || invalid.some(function (v) {
|
|
13949
|
+
return v;
|
|
13950
|
+
}) || timeInvalid.some(function (v) {
|
|
13951
|
+
return v;
|
|
13952
|
+
}),
|
|
13953
|
+
onClick: function onClick() {}
|
|
13954
|
+
};
|
|
13955
|
+
|
|
13956
|
+
if (props.onSubmit) {
|
|
13957
|
+
var _props$onSubmit = props.onSubmit,
|
|
13958
|
+
disabled = _props$onSubmit.disabled,
|
|
13959
|
+
onClick = _props$onSubmit.onClick;
|
|
13960
|
+
|
|
13961
|
+
if (disabled) {
|
|
13962
|
+
onSubmit.disabled = true;
|
|
13963
|
+
}
|
|
13964
|
+
|
|
13965
|
+
if (!onSubmit.disabled) {
|
|
13966
|
+
onSubmit.onClick = function () {
|
|
13967
|
+
onClick([value[0] ? getFullDate(value[0], time[0]) : null, value[1] ? getFullDate(value[1], time[1], true) : null]);
|
|
13968
|
+
};
|
|
13969
|
+
}
|
|
13970
|
+
}
|
|
13971
|
+
|
|
13809
13972
|
var middle = new Date();
|
|
13810
13973
|
middle.setFullYear(calendar1.year);
|
|
13811
13974
|
middle.setMonth(calendar1.month + 1);
|
|
13812
13975
|
middle.setDate(1);
|
|
13813
13976
|
middle.setHours(0, 0, 0, 0);
|
|
13814
|
-
var inputs =
|
|
13977
|
+
var inputs = getTimeProps(props.time, value).map(function (timeProps, index) {
|
|
13978
|
+
if (!timeProps) return undefined;
|
|
13815
13979
|
var width = timeProps.seconds ? 'withSeconds' : 'withoutSeconds';
|
|
13816
13980
|
return React__default.createElement(Time, Object.assign({
|
|
13817
13981
|
key: index
|
|
@@ -13825,13 +13989,26 @@ var Main$1 = React__default.forwardRef(function (props, ref) {
|
|
|
13825
13989
|
return n;
|
|
13826
13990
|
});
|
|
13827
13991
|
},
|
|
13828
|
-
invalid:
|
|
13992
|
+
invalid: value[index] !== null && invalid[index] || timeInvalid[index],
|
|
13829
13993
|
width: inputTimeWidth[width]
|
|
13830
13994
|
}));
|
|
13831
|
-
})
|
|
13995
|
+
});
|
|
13996
|
+
|
|
13997
|
+
var _onChangeMonth = props.onChangeMonth || function () {
|
|
13998
|
+
return Promise.resolve();
|
|
13999
|
+
};
|
|
14000
|
+
|
|
13832
14001
|
return React__default.createElement(CalendarsContainer, null, React__default.createElement(BasicCalendar, Object.assign({}, calendarProps, {
|
|
13833
|
-
getDay: getDay
|
|
13834
|
-
|
|
14002
|
+
getDay: function getDay(c) {
|
|
14003
|
+
return _getDay2(c, 'left');
|
|
14004
|
+
},
|
|
14005
|
+
onChangeMonth: function (c) {
|
|
14006
|
+
try {
|
|
14007
|
+
return Promise.resolve(_onChangeMonth(c, 'left'));
|
|
14008
|
+
} catch (e) {
|
|
14009
|
+
return Promise.reject(e);
|
|
14010
|
+
}
|
|
14011
|
+
},
|
|
13835
14012
|
ref: ref,
|
|
13836
14013
|
label: React__default.createElement(LabelContainer$1, null, React__default.createElement("b", null, "Inicio:"), ' ', value[0] ? dateToIsoString(value[0]) : '––/––/––––'),
|
|
13837
14014
|
calendar: [calendar1, function (v) {
|
|
@@ -13844,8 +14021,16 @@ var Main$1 = React__default.forwardRef(function (props, ref) {
|
|
|
13844
14021
|
min: min,
|
|
13845
14022
|
max: max
|
|
13846
14023
|
}), inputs[0]), React__default.createElement(BasicCalendar, Object.assign({}, calendarProps, {
|
|
13847
|
-
getDay: getDay
|
|
13848
|
-
|
|
14024
|
+
getDay: function getDay(c) {
|
|
14025
|
+
return _getDay2(c, 'right');
|
|
14026
|
+
},
|
|
14027
|
+
onChangeMonth: function (c) {
|
|
14028
|
+
try {
|
|
14029
|
+
return Promise.resolve(_onChangeMonth(c, 'right'));
|
|
14030
|
+
} catch (e) {
|
|
14031
|
+
return Promise.reject(e);
|
|
14032
|
+
}
|
|
14033
|
+
},
|
|
13849
14034
|
ref: ref,
|
|
13850
14035
|
label: React__default.createElement(LabelContainer$1, null, React__default.createElement("b", null, "Fim:"), " ", value[1] ? dateToIsoString(value[1]) : '––/––/––––'),
|
|
13851
14036
|
calendar: [calendar2, setCalendar2],
|
|
@@ -13859,7 +14044,7 @@ var Main$1 = React__default.forwardRef(function (props, ref) {
|
|
|
13859
14044
|
Main$1.displayName = 'Main';
|
|
13860
14045
|
|
|
13861
14046
|
var CalendarInterval = React__default.forwardRef(function (props, ref) {
|
|
13862
|
-
var containerProps = filterObject(props, ['initialMonth', 'max', 'min', 'initialValue', 'value', 'time', 'onSubmit', 'invalid', 'absolute']);
|
|
14047
|
+
var containerProps = filterObject(props, ['initialMonth', 'max', 'min', 'initialValue', 'value', 'time', 'onSubmit', 'invalid', 'absolute', 'getDay', 'onChangeMonth']);
|
|
13863
14048
|
var mainProps = filterObject(props, ['absolute']);
|
|
13864
14049
|
return props.absolute ? React__default.createElement(AbsoluteContainer, Object.assign({
|
|
13865
14050
|
axis: 'y',
|
|
@@ -13874,12 +14059,17 @@ var SingleCalendar = React__default.forwardRef(function (props, ref) {
|
|
|
13874
14059
|
var initialValue = props.initialValue,
|
|
13875
14060
|
min = props.min,
|
|
13876
14061
|
max = props.max;
|
|
13877
|
-
var timeProps = props.time === true ? {} : props.time;
|
|
13878
14062
|
|
|
13879
14063
|
var _ref = props.value || React.useState(initialValue && !isNaN(initialValue.getTime()) && isDateBetween(initialValue, min, max) ? initialValue : null),
|
|
13880
14064
|
value = _ref[0],
|
|
13881
14065
|
setValue = _ref[1];
|
|
13882
14066
|
|
|
14067
|
+
var timeProps = function () {
|
|
14068
|
+
if (props.time === true) return {};
|
|
14069
|
+
if (typeof props.time === 'function') return props.time(value);
|
|
14070
|
+
return props.time;
|
|
14071
|
+
}();
|
|
14072
|
+
|
|
13883
14073
|
var _ref2 = props.invalid || React.useState(false),
|
|
13884
14074
|
invalid = _ref2[0],
|
|
13885
14075
|
setInvalid = _ref2[1];
|
|
@@ -13891,8 +14081,37 @@ var SingleCalendar = React__default.forwardRef(function (props, ref) {
|
|
|
13891
14081
|
React.useEffect(function () {
|
|
13892
14082
|
setInvalid(isInvalid(value, time, timeProps, min, max));
|
|
13893
14083
|
}, [value, time, timeProps]);
|
|
14084
|
+
|
|
14085
|
+
var _getDay = props.getDay || function () {
|
|
14086
|
+
return {};
|
|
14087
|
+
};
|
|
14088
|
+
|
|
14089
|
+
var getDay = function getDay(day) {
|
|
14090
|
+
var dayProps = _getDay(day);
|
|
14091
|
+
|
|
14092
|
+
var active = value && dateCompare(value, day, 'eq', false);
|
|
14093
|
+
|
|
14094
|
+
var _onClick = dayProps.onClick || function () {};
|
|
14095
|
+
|
|
14096
|
+
var _onClick2 = active ? function () {
|
|
14097
|
+
return setValue(null);
|
|
14098
|
+
} : function () {
|
|
14099
|
+
return setValue(new Date(day));
|
|
14100
|
+
};
|
|
14101
|
+
|
|
14102
|
+
return _extends({}, dayProps, {
|
|
14103
|
+
appearance: active ? 'active' : dayProps.appearance,
|
|
14104
|
+
onClick: function onClick(e) {
|
|
14105
|
+
_onClick(e);
|
|
14106
|
+
|
|
14107
|
+
_onClick2();
|
|
14108
|
+
}
|
|
14109
|
+
});
|
|
14110
|
+
};
|
|
14111
|
+
|
|
14112
|
+
var calendarProps = filterObject(props, ['value', 'time', 'onSubmit', 'invalid', 'getDay']);
|
|
13894
14113
|
var onSubmit = {
|
|
13895
|
-
disabled: invalid,
|
|
14114
|
+
disabled: value === null || invalid,
|
|
13896
14115
|
onClick: function onClick() {}
|
|
13897
14116
|
};
|
|
13898
14117
|
|
|
@@ -13910,20 +14129,6 @@ var SingleCalendar = React__default.forwardRef(function (props, ref) {
|
|
|
13910
14129
|
};
|
|
13911
14130
|
}
|
|
13912
14131
|
|
|
13913
|
-
var getDay = function getDay(day) {
|
|
13914
|
-
var active = value && dateCompare(value, day, 'eq', false);
|
|
13915
|
-
var onClick = active ? function () {
|
|
13916
|
-
return setValue(null);
|
|
13917
|
-
} : function () {
|
|
13918
|
-
return setValue(new Date(day));
|
|
13919
|
-
};
|
|
13920
|
-
return {
|
|
13921
|
-
appearance: active ? 'active' : undefined,
|
|
13922
|
-
onClick: onClick
|
|
13923
|
-
};
|
|
13924
|
-
};
|
|
13925
|
-
|
|
13926
|
-
var calendarProps = filterObject(props, ['value', 'time', 'onSubmit', 'invalid']);
|
|
13927
14132
|
return React__default.createElement(BasicCalendar, Object.assign({}, calendarProps, {
|
|
13928
14133
|
getDay: getDay
|
|
13929
14134
|
}, {
|
|
@@ -13933,7 +14138,7 @@ var SingleCalendar = React__default.forwardRef(function (props, ref) {
|
|
|
13933
14138
|
type: 'time',
|
|
13934
14139
|
value: time,
|
|
13935
14140
|
setValue: setTime,
|
|
13936
|
-
invalid:
|
|
14141
|
+
invalid: value !== null && invalid,
|
|
13937
14142
|
width: inputTimeWidth[timeProps.seconds ? 'withSeconds' : 'withoutSeconds']
|
|
13938
14143
|
})), props.onSubmit && React__default.createElement(SubmitButton, Object.assign({}, onSubmit, {
|
|
13939
14144
|
type: 'button',
|
|
@@ -13943,7 +14148,7 @@ var SingleCalendar = React__default.forwardRef(function (props, ref) {
|
|
|
13943
14148
|
SingleCalendar.displayName = 'SingleCalendar';
|
|
13944
14149
|
|
|
13945
14150
|
var CalendarSingle = React__default.forwardRef(function (props, ref) {
|
|
13946
|
-
var containerProps = filterObject(props, ['initialMonth', 'max', 'min', 'initialValue', 'value', 'time', 'onSubmit', 'invalid', 'absolute']);
|
|
14151
|
+
var containerProps = filterObject(props, ['initialMonth', 'max', 'min', 'initialValue', 'value', 'time', 'onSubmit', 'invalid', 'absolute', 'getDay', 'onChangeMonth']);
|
|
13947
14152
|
var mainProps = filterObject(props, ['absolute']);
|
|
13948
14153
|
return props.absolute ? React__default.createElement(AbsoluteContainer, Object.assign({
|
|
13949
14154
|
axis: 'y',
|
|
@@ -13982,8 +14187,8 @@ Calendar.displayName = 'Input';
|
|
|
13982
14187
|
|
|
13983
14188
|
var JSDate = Date;
|
|
13984
14189
|
|
|
13985
|
-
var _templateObject$
|
|
13986
|
-
var RelativeContainer$1 = styled__default.div(_templateObject$
|
|
14190
|
+
var _templateObject$k;
|
|
14191
|
+
var RelativeContainer$1 = styled__default.div(_templateObject$k || (_templateObject$k = _taggedTemplateLiteralLoose(["\n position: relative;\n"])));
|
|
13987
14192
|
|
|
13988
14193
|
var isLeapYear = function isLeapYear(year) {
|
|
13989
14194
|
if (year % 4 !== 0) return false;else if (year % 100 !== 0) return true;else if (year % 400 !== 0) return false;else return true;
|
|
@@ -14112,7 +14317,7 @@ var Date$1 = React__default.forwardRef(function (props, ref) {
|
|
|
14112
14317
|
onKeyDown: onKeyDown,
|
|
14113
14318
|
icon: icon,
|
|
14114
14319
|
ref: ref
|
|
14115
|
-
})), React__default.createElement(Calendar, {
|
|
14320
|
+
})), React__default.createElement(Calendar, Object.assign({}, typeof picker === 'object' ? picker : {}, {
|
|
14116
14321
|
type: 'single',
|
|
14117
14322
|
absolute: true,
|
|
14118
14323
|
open: open,
|
|
@@ -14130,7 +14335,7 @@ var Date$1 = React__default.forwardRef(function (props, ref) {
|
|
|
14130
14335
|
references: {
|
|
14131
14336
|
bottom: '35px'
|
|
14132
14337
|
}
|
|
14133
|
-
}));
|
|
14338
|
+
})));
|
|
14134
14339
|
});
|
|
14135
14340
|
Date$1.displayName = 'Date';
|
|
14136
14341
|
|
|
@@ -14139,8 +14344,8 @@ var useContext = function useContext() {
|
|
|
14139
14344
|
return React__default.useContext(Provider);
|
|
14140
14345
|
};
|
|
14141
14346
|
|
|
14142
|
-
var _templateObject$
|
|
14143
|
-
var HeaderContainer = styled__default.div(_templateObject$
|
|
14347
|
+
var _templateObject$l, _templateObject2$f;
|
|
14348
|
+
var HeaderContainer = styled__default.div(_templateObject$l || (_templateObject$l = _taggedTemplateLiteralLoose(["\n ", "\n"])), function (_ref) {
|
|
14144
14349
|
var theme = _ref.theme;
|
|
14145
14350
|
return styled.css(_templateObject2$f || (_templateObject2$f = _taggedTemplateLiteralLoose(["\n padding: ", " calc(", " * 0.75)\n ", " ", ";\n "])), theme.spacings.s3, theme.spacings.s3, theme.spacings.s1, theme.spacings.s3);
|
|
14146
14351
|
});
|
|
@@ -14269,12 +14474,12 @@ var Footer$1 = function Footer() {
|
|
|
14269
14474
|
});
|
|
14270
14475
|
};
|
|
14271
14476
|
|
|
14272
|
-
var _templateObject$
|
|
14273
|
-
var HeaderContainer$1 = styled__default.div(_templateObject$
|
|
14477
|
+
var _templateObject$m, _templateObject2$g, _templateObject3$d;
|
|
14478
|
+
var HeaderContainer$1 = styled__default.div(_templateObject$m || (_templateObject$m = _taggedTemplateLiteralLoose(["\n ", "\n"])), function (_ref) {
|
|
14274
14479
|
var theme = _ref.theme;
|
|
14275
14480
|
return styled.css(_templateObject2$g || (_templateObject2$g = _taggedTemplateLiteralLoose(["\n padding: ", " calc(", " * 0.75)\n ", " ", ";\n "])), theme.spacings.s3, theme.spacings.s3, theme.spacings.s1, theme.spacings.s3);
|
|
14276
14481
|
});
|
|
14277
|
-
var SelectAllContainer = styled__default.div(_templateObject3$
|
|
14482
|
+
var SelectAllContainer = styled__default.div(_templateObject3$d || (_templateObject3$d = _taggedTemplateLiteralLoose(["\n margin-bottom: ", ";\n display: flex;\n justify-content: space-between;\n"])), function (_ref2) {
|
|
14278
14483
|
var theme = _ref2.theme;
|
|
14279
14484
|
return theme.spacings.s1;
|
|
14280
14485
|
});
|
|
@@ -14464,8 +14669,8 @@ var useSelectMultiple = function useSelectMultiple(props) {
|
|
|
14464
14669
|
return returnData;
|
|
14465
14670
|
};
|
|
14466
14671
|
|
|
14467
|
-
var _templateObject$
|
|
14468
|
-
var RelativeContainer$2 = styled__default.div(_templateObject$
|
|
14672
|
+
var _templateObject$n;
|
|
14673
|
+
var RelativeContainer$2 = styled__default.div(_templateObject$n || (_templateObject$n = _taggedTemplateLiteralLoose(["\n position: relative;\n"])));
|
|
14469
14674
|
|
|
14470
14675
|
var Select = React__default.forwardRef(function (props, ref) {
|
|
14471
14676
|
var position = props.position,
|
|
@@ -14694,7 +14899,7 @@ Password.displayName = 'Password';
|
|
|
14694
14899
|
|
|
14695
14900
|
var flags = 'data:image/png;base64,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';
|
|
14696
14901
|
|
|
14697
|
-
var _templateObject$
|
|
14902
|
+
var _templateObject$o, _templateObject2$h;
|
|
14698
14903
|
var coordinates = {
|
|
14699
14904
|
ar: {
|
|
14700
14905
|
s1: '0px 0px',
|
|
@@ -14769,7 +14974,7 @@ var coordinates = {
|
|
|
14769
14974
|
s6: '0px 0px'
|
|
14770
14975
|
}
|
|
14771
14976
|
};
|
|
14772
|
-
var Flag = styled__default.div(_templateObject$
|
|
14977
|
+
var Flag = styled__default.div(_templateObject$o || (_templateObject$o = _taggedTemplateLiteralLoose(["\n background-image: url(", ");\n background-size: auto 100%;\n\n ", "\n"])), flags, function (_ref) {
|
|
14773
14978
|
var iso = _ref.iso,
|
|
14774
14979
|
width = _ref.width,
|
|
14775
14980
|
theme = _ref.theme;
|
|
@@ -14878,10 +15083,10 @@ var countries = {
|
|
|
14878
15083
|
}
|
|
14879
15084
|
};
|
|
14880
15085
|
|
|
14881
|
-
var _templateObject$
|
|
14882
|
-
var IconContainer$1 = styled__default.div(_templateObject$
|
|
15086
|
+
var _templateObject$p, _templateObject2$i, _templateObject3$e;
|
|
15087
|
+
var IconContainer$1 = styled__default.div(_templateObject$p || (_templateObject$p = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n\n > i.icon {\n margin-top: -1px;\n }\n"])));
|
|
14883
15088
|
var RelativeContainer$3 = styled__default.div(_templateObject2$i || (_templateObject2$i = _taggedTemplateLiteralLoose(["\n position: relative;\n"])));
|
|
14884
|
-
var Label$2 = styled__default.div(_templateObject3$
|
|
15089
|
+
var Label$2 = styled__default.div(_templateObject3$e || (_templateObject3$e = _taggedTemplateLiteralLoose(["\n ", "\n\n color: ", ";\n\n display: flex;\n gap: ", ";\n\n > span {\n color: ", ";\n }\n"])), function (_ref) {
|
|
14885
15090
|
var theme = _ref.theme;
|
|
14886
15091
|
return theme.useTypography('p');
|
|
14887
15092
|
}, function (_ref2) {
|
|
@@ -15056,8 +15261,8 @@ var Phone = Object.assign(Component, {
|
|
|
15056
15261
|
getPhoneDetails: getPhoneDetails
|
|
15057
15262
|
});
|
|
15058
15263
|
|
|
15059
|
-
var _templateObject$
|
|
15060
|
-
var RelativeContainer$4 = styled__default.div(_templateObject$
|
|
15264
|
+
var _templateObject$q, _templateObject2$j, _templateObject3$f, _templateObject4$c, _templateObject5$b, _templateObject6$9, _templateObject7$8, _templateObject8$6, _templateObject9$6;
|
|
15265
|
+
var RelativeContainer$4 = styled__default.div(_templateObject$q || (_templateObject$q = _taggedTemplateLiteralLoose(["\n position: relative;\n\n input {\n color: transparent;\n }\n"])));
|
|
15061
15266
|
var LabelContainer$2 = styled__default.div(_templateObject2$j || (_templateObject2$j = _taggedTemplateLiteralLoose(["\n ", "\n line-height: ", ";\n"])), function (_ref) {
|
|
15062
15267
|
var theme = _ref.theme;
|
|
15063
15268
|
return theme.useTypography('p');
|
|
@@ -15065,21 +15270,21 @@ var LabelContainer$2 = styled__default.div(_templateObject2$j || (_templateObjec
|
|
|
15065
15270
|
var theme = _ref2.theme;
|
|
15066
15271
|
return theme.spacings.s3;
|
|
15067
15272
|
});
|
|
15068
|
-
var Container$8 = styled__default.div(_templateObject3$
|
|
15273
|
+
var Container$8 = styled__default.div(_templateObject3$f || (_templateObject3$f = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: 1px;\n left: 1px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n border-radius: 4px;\n\n ", "\n\n ", "\n\n ", "\n"])), function (_ref3) {
|
|
15069
15274
|
var theme = _ref3.theme,
|
|
15070
15275
|
iconWidth = _ref3.iconWidth,
|
|
15071
15276
|
paddingless = _ref3.paddingless;
|
|
15072
15277
|
|
|
15073
15278
|
if (paddingless) {
|
|
15074
|
-
return styled.css(_templateObject4$
|
|
15279
|
+
return styled.css(_templateObject4$c || (_templateObject4$c = _taggedTemplateLiteralLoose(["\n width: calc(100% - 2px - ", ");\n height: 19px;\n "])), iconWidth);
|
|
15075
15280
|
}
|
|
15076
15281
|
|
|
15077
|
-
return styled.css(_templateObject5$
|
|
15282
|
+
return styled.css(_templateObject5$b || (_templateObject5$b = _taggedTemplateLiteralLoose(["\n width: calc(100% - 2px - ", " - ", ");\n height: 33px;\n padding: ", " 0 ", " ", ";\n "])), iconWidth, theme.spacings.s3, theme.spacings.s2, theme.spacings.s2, theme.spacings.s3);
|
|
15078
15283
|
}, function (_ref4) {
|
|
15079
15284
|
var invalid = _ref4.invalid,
|
|
15080
15285
|
theme = _ref4.theme;
|
|
15081
15286
|
if (!invalid) return;
|
|
15082
|
-
return styled.css(_templateObject6$
|
|
15287
|
+
return styled.css(_templateObject6$9 || (_templateObject6$9 = _taggedTemplateLiteralLoose(["\n color: ", ";\n "])), theme.colors.warningRed);
|
|
15083
15288
|
}, function (_ref5) {
|
|
15084
15289
|
var disabled = _ref5.disabled;
|
|
15085
15290
|
if (!disabled) return;
|
|
@@ -15182,7 +15387,7 @@ var DatePicker = React__default.forwardRef(function (props, ref) {
|
|
|
15182
15387
|
icon: 'chevron_right',
|
|
15183
15388
|
color: props.invalid ? 'warningRed' : 'grey',
|
|
15184
15389
|
strokeWidth: '3px'
|
|
15185
|
-
}))), React__default.createElement(Calendar, {
|
|
15390
|
+
}))), React__default.createElement(Calendar, Object.assign({}, typeof picker === 'object' ? picker : {}, {
|
|
15186
15391
|
type: 'single',
|
|
15187
15392
|
absolute: true,
|
|
15188
15393
|
open: open,
|
|
@@ -15199,12 +15404,12 @@ var DatePicker = React__default.forwardRef(function (props, ref) {
|
|
|
15199
15404
|
references: {
|
|
15200
15405
|
bottom: '35px'
|
|
15201
15406
|
}
|
|
15202
|
-
}));
|
|
15407
|
+
})));
|
|
15203
15408
|
});
|
|
15204
15409
|
DatePicker.displayName = 'DatePicker';
|
|
15205
15410
|
|
|
15206
|
-
var _templateObject$
|
|
15207
|
-
var LabelContainer$3 = styled__default.div(_templateObject$
|
|
15411
|
+
var _templateObject$r, _templateObject2$k, _templateObject3$g, _templateObject4$d, _templateObject5$c, _templateObject6$a, _templateObject7$9;
|
|
15412
|
+
var LabelContainer$3 = styled__default.div(_templateObject$r || (_templateObject$r = _taggedTemplateLiteralLoose(["\n ", "\n line-height: 14px;\n display: flex;\n align-items: center;\n"])), function (_ref) {
|
|
15208
15413
|
var theme = _ref.theme;
|
|
15209
15414
|
return theme.useTypography('p');
|
|
15210
15415
|
});
|
|
@@ -15215,19 +15420,19 @@ var Label$3 = styled__default.label(_templateObject2$k || (_templateObject2$k =
|
|
|
15215
15420
|
var disabled = _ref3.disabled;
|
|
15216
15421
|
|
|
15217
15422
|
if (!disabled) {
|
|
15218
|
-
return styled.css(_templateObject3$
|
|
15423
|
+
return styled.css(_templateObject3$g || (_templateObject3$g = _taggedTemplateLiteralLoose(["\n > span {\n cursor: pointer;\n }\n "])));
|
|
15219
15424
|
}
|
|
15220
15425
|
|
|
15221
|
-
return styled.css(_templateObject4$
|
|
15426
|
+
return styled.css(_templateObject4$d || (_templateObject4$d = _taggedTemplateLiteralLoose(["\n opacity: 0.5;\n "])));
|
|
15222
15427
|
}, function (_ref4) {
|
|
15223
15428
|
var required = _ref4.required;
|
|
15224
15429
|
if (!required) return;
|
|
15225
|
-
return styled.css(_templateObject5$
|
|
15430
|
+
return styled.css(_templateObject5$c || (_templateObject5$c = _taggedTemplateLiteralLoose(["\n > ", " {\n :after {\n content: '*';\n }\n }\n "])), LabelContainer$3);
|
|
15226
15431
|
}, function (_ref5) {
|
|
15227
15432
|
var invalid = _ref5.invalid;
|
|
15228
15433
|
|
|
15229
15434
|
if (!invalid) {
|
|
15230
|
-
return styled.css(_templateObject6$
|
|
15435
|
+
return styled.css(_templateObject6$a || (_templateObject6$a = _taggedTemplateLiteralLoose(["\n > span:before {\n border-color: ", ";\n }\n > input:checked + span {\n background-color: ", ";\n }\n "])), function (_ref6) {
|
|
15231
15436
|
var theme = _ref6.theme;
|
|
15232
15437
|
return theme.colors.lightGrey;
|
|
15233
15438
|
}, function (_ref7) {
|
|
@@ -15281,8 +15486,8 @@ var Switch = function Switch(props) {
|
|
|
15281
15486
|
})), React__default.createElement("span", null), label && React__default.createElement(LabelContainer$3, null, label));
|
|
15282
15487
|
};
|
|
15283
15488
|
|
|
15284
|
-
var _templateObject$
|
|
15285
|
-
var bullet = styled.css(_templateObject$
|
|
15489
|
+
var _templateObject$s, _templateObject2$l, _templateObject3$h, _templateObject4$e, _templateObject5$d, _templateObject6$b, _templateObject7$a, _templateObject8$7, _templateObject9$7, _templateObject10$4, _templateObject11$3, _templateObject12$2, _templateObject13$2, _templateObject14$2, _templateObject15$1, _templateObject16;
|
|
15490
|
+
var bullet = styled.css(_templateObject$s || (_templateObject$s = _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) {
|
|
15286
15491
|
var theme = _ref.theme;
|
|
15287
15492
|
return theme.spacings.s4;
|
|
15288
15493
|
}, function (_ref2) {
|
|
@@ -15296,7 +15501,7 @@ var bullet = styled.css(_templateObject$q || (_templateObject$q = _taggedTemplat
|
|
|
15296
15501
|
return theme.getColor('black', 10);
|
|
15297
15502
|
});
|
|
15298
15503
|
var Input$2 = styled__default.input(_templateObject2$l || (_templateObject2$l = _taggedTemplateLiteralLoose(["\n appearance: none;\n width: 100%;\n height: 10px;\n background-color: transparent;\n outline: none;\n position: relative;\n z-index: 3;\n margin: 0;\n\n :not(:disabled) {\n cursor: pointer;\n }\n\n /** firefox */\n ::-moz-range-thumb {\n ", "\n }\n /** ie */\n ::-ms-thumb {\n ", "\n }\n /** chrome */\n ::-webkit-slider-thumb {\n ", "\n }\n"])), bullet, bullet, bullet);
|
|
15299
|
-
var Label$4 = styled__default.label(_templateObject3$
|
|
15504
|
+
var Label$4 = styled__default.label(_templateObject3$h || (_templateObject3$h = _taggedTemplateLiteralLoose(["\n ", ";\n line-height: 19px;\n\n width: ", ";\n box-sizing: border-box;\n display: block;\n position: relative;\n\n ", "\n\n > div:first-child {\n display: inline-block;\n margin-bottom: ", ";\n\n ", "\n }\n"])), function (_ref5) {
|
|
15300
15505
|
var theme = _ref5.theme;
|
|
15301
15506
|
return theme.useTypography('p');
|
|
15302
15507
|
}, function (_ref6) {
|
|
@@ -15305,16 +15510,16 @@ var Label$4 = styled__default.label(_templateObject3$i || (_templateObject3$i =
|
|
|
15305
15510
|
}, function (_ref7) {
|
|
15306
15511
|
var disabled = _ref7.disabled;
|
|
15307
15512
|
if (!disabled) return;
|
|
15308
|
-
return styled.css(_templateObject4$
|
|
15513
|
+
return styled.css(_templateObject4$e || (_templateObject4$e = _taggedTemplateLiteralLoose(["\n opacity: 0.5;\n "])));
|
|
15309
15514
|
}, function (_ref8) {
|
|
15310
15515
|
var theme = _ref8.theme;
|
|
15311
15516
|
return theme.spacings.s1;
|
|
15312
15517
|
}, function (_ref9) {
|
|
15313
15518
|
var required = _ref9.required;
|
|
15314
15519
|
if (!required) return;
|
|
15315
|
-
return styled.css(_templateObject5$
|
|
15520
|
+
return styled.css(_templateObject5$d || (_templateObject5$d = _taggedTemplateLiteralLoose(["\n :after {\n content: ' *';\n }\n "])));
|
|
15316
15521
|
});
|
|
15317
|
-
var InputContainer = styled__default.div(_templateObject6$
|
|
15522
|
+
var InputContainer = styled__default.div(_templateObject6$b || (_templateObject6$b = _taggedTemplateLiteralLoose(["\n flex: 1;\n display: flex;\n gap: 6px;\n\n > div {\n position: relative;\n }\n\n ", "\n"])), function (_ref10) {
|
|
15318
15523
|
var theme = _ref10.theme,
|
|
15319
15524
|
invalid = _ref10.invalid;
|
|
15320
15525
|
|
|
@@ -15329,7 +15534,7 @@ var LabelsContainer = styled__default.div(_templateObject10$4 || (_templateObjec
|
|
|
15329
15534
|
var position = _ref11.position;
|
|
15330
15535
|
|
|
15331
15536
|
if (position === 'bottom') {
|
|
15332
|
-
return styled.css(_templateObject11$
|
|
15537
|
+
return styled.css(_templateObject11$3 || (_templateObject11$3 = _taggedTemplateLiteralLoose(["\n ", " {\n flex-direction: column-reverse;\n }\n\n ", " {\n :after {\n bottom: calc(100% + 10.5px);\n }\n }\n\n ", " {\n align-items: start;\n }\n "])), InputContainer, Marker, MinMaxLabelContainer);
|
|
15333
15538
|
}
|
|
15334
15539
|
|
|
15335
15540
|
return styled.css(_templateObject12$2 || (_templateObject12$2 = _taggedTemplateLiteralLoose(["\n ", " {\n flex-direction: column;\n }\n\n ", " {\n :after {\n top: calc(100% + 8px);\n }\n }\n\n ", " {\n align-items: end;\n }\n "])), InputContainer, Marker, MinMaxLabelContainer);
|
|
@@ -15500,8 +15705,8 @@ var Range = React__default.forwardRef(function (props, ref) {
|
|
|
15500
15705
|
});
|
|
15501
15706
|
Range.displayName = 'input';
|
|
15502
15707
|
|
|
15503
|
-
var _templateObject$
|
|
15504
|
-
var LabelContainer$4 = styled__default.div(_templateObject$
|
|
15708
|
+
var _templateObject$t, _templateObject2$m, _templateObject3$i, _templateObject4$f, _templateObject5$e, _templateObject6$c, _templateObject7$b;
|
|
15709
|
+
var LabelContainer$4 = styled__default.div(_templateObject$t || (_templateObject$t = _taggedTemplateLiteralLoose(["\n ", "\n display: flex;\n align-items: center;\n"])), function (_ref) {
|
|
15505
15710
|
var theme = _ref.theme;
|
|
15506
15711
|
return theme.useTypography('p');
|
|
15507
15712
|
});
|
|
@@ -15512,19 +15717,19 @@ var Label$5 = styled__default.label(_templateObject2$m || (_templateObject2$m =
|
|
|
15512
15717
|
var disabled = _ref3.disabled;
|
|
15513
15718
|
|
|
15514
15719
|
if (!disabled) {
|
|
15515
|
-
return styled.css(_templateObject3$
|
|
15720
|
+
return styled.css(_templateObject3$i || (_templateObject3$i = _taggedTemplateLiteralLoose(["\n > span {\n cursor: pointer;\n }\n "])));
|
|
15516
15721
|
}
|
|
15517
15722
|
|
|
15518
|
-
return styled.css(_templateObject4$
|
|
15723
|
+
return styled.css(_templateObject4$f || (_templateObject4$f = _taggedTemplateLiteralLoose(["\n opacity: 0.5;\n "])));
|
|
15519
15724
|
}, function (_ref4) {
|
|
15520
15725
|
var required = _ref4.required;
|
|
15521
15726
|
if (!required) return;
|
|
15522
|
-
return styled.css(_templateObject5$
|
|
15727
|
+
return styled.css(_templateObject5$e || (_templateObject5$e = _taggedTemplateLiteralLoose(["\n > ", " {\n :after {\n content: ' *';\n }\n }\n "])), LabelContainer$4);
|
|
15523
15728
|
}, function (_ref5) {
|
|
15524
15729
|
var invalid = _ref5.invalid;
|
|
15525
15730
|
|
|
15526
15731
|
if (!invalid) {
|
|
15527
|
-
return styled.css(_templateObject6$
|
|
15732
|
+
return styled.css(_templateObject6$c || (_templateObject6$c = _taggedTemplateLiteralLoose(["\n > span {\n border-color: ", ";\n :before {\n background-color: ", ";\n }\n }\n "])), function (_ref6) {
|
|
15528
15733
|
var theme = _ref6.theme;
|
|
15529
15734
|
return theme.colors.blue;
|
|
15530
15735
|
}, function (_ref7) {
|
|
@@ -15743,17 +15948,17 @@ var parse = function parse(value) {
|
|
|
15743
15948
|
});
|
|
15744
15949
|
};
|
|
15745
15950
|
|
|
15746
|
-
var _templateObject$
|
|
15747
|
-
var RelativeContainer$5 = styled__default.div(_templateObject$
|
|
15951
|
+
var _templateObject$u, _templateObject2$n, _templateObject3$j, _templateObject4$g, _templateObject5$f, _templateObject6$d, _templateObject7$c, _templateObject8$8, _templateObject9$8, _templateObject10$5, _templateObject11$4;
|
|
15952
|
+
var RelativeContainer$5 = styled__default.div(_templateObject$u || (_templateObject$u = _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"])));
|
|
15748
15953
|
var LabelContainer$5 = styled__default.div(_templateObject2$n || (_templateObject2$n = _taggedTemplateLiteralLoose(["\n ", "\n line-height: 17px;\n flex: 1;\n text-align: center;\n\n ", ";\n"])), function (_ref) {
|
|
15749
15954
|
var theme = _ref.theme;
|
|
15750
15955
|
return theme.useTypography('p');
|
|
15751
15956
|
}, function (_ref2) {
|
|
15752
15957
|
var onClick = _ref2.onClick;
|
|
15753
15958
|
if (!onClick) return;
|
|
15754
|
-
return styled.css(_templateObject3$
|
|
15959
|
+
return styled.css(_templateObject3$j || (_templateObject3$j = _taggedTemplateLiteralLoose(["\n :not(:disabled) {\n cursor: pointer;\n }\n "])));
|
|
15755
15960
|
});
|
|
15756
|
-
var Container$9 = styled__default.div(_templateObject4$
|
|
15961
|
+
var Container$9 = styled__default.div(_templateObject4$g || (_templateObject4$g = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n border-radius: 4px;\n white-space: nowrap;\n gap: ", ";\n border-width: 1px;\n border-style: solid;\n border-color: ", ";\n\n width: 100%;\n\n ", ";\n\n ", "\n\n ", "\n"])), function (_ref3) {
|
|
15757
15962
|
var theme = _ref3.theme;
|
|
15758
15963
|
return theme.spacings.s1;
|
|
15759
15964
|
}, function (_ref4) {
|
|
@@ -15770,12 +15975,12 @@ var Container$9 = styled__default.div(_templateObject4$h || (_templateObject4$h
|
|
|
15770
15975
|
bgColor = _ref6[0],
|
|
15771
15976
|
color = _ref6[1];
|
|
15772
15977
|
|
|
15773
|
-
return styled.css(_templateObject5$
|
|
15978
|
+
return styled.css(_templateObject5$f || (_templateObject5$f = _taggedTemplateLiteralLoose(["\n color: ", ";\n background-color: ", ";\n /** google chrome blue background */\n -webkit-box-shadow: 0 0 0px 1000px ", " inset !important;\n "])), color, bgColor, bgColor);
|
|
15774
15979
|
}, function (_ref7) {
|
|
15775
15980
|
var theme = _ref7.theme,
|
|
15776
15981
|
paddingless = _ref7.paddingless;
|
|
15777
15982
|
if (paddingless) return;
|
|
15778
|
-
return styled.css(_templateObject6$
|
|
15983
|
+
return styled.css(_templateObject6$d || (_templateObject6$d = _taggedTemplateLiteralLoose(["\n padding: ", " ", " ", "\n ", ";\n "])), theme.spacings.s2, theme.spacings.s1, theme.spacings.s2, theme.spacings.s3);
|
|
15779
15984
|
}, function (_ref8) {
|
|
15780
15985
|
var disabled = _ref8.disabled;
|
|
15781
15986
|
if (!disabled) return;
|
|
@@ -15792,7 +15997,7 @@ var LabelText$1 = styled__default.label(_templateObject10$5 || (_templateObject1
|
|
|
15792
15997
|
}, function (_ref11) {
|
|
15793
15998
|
var required = _ref11.required;
|
|
15794
15999
|
if (!required) return;
|
|
15795
|
-
return styled.css(_templateObject11$
|
|
16000
|
+
return styled.css(_templateObject11$4 || (_templateObject11$4 = _taggedTemplateLiteralLoose(["\n :after {\n content: ' *';\n }\n "])));
|
|
15796
16001
|
});
|
|
15797
16002
|
|
|
15798
16003
|
var Component$1 = React__default.forwardRef(function (props, ref) {
|
|
@@ -15839,7 +16044,7 @@ var Component$1 = React__default.forwardRef(function (props, ref) {
|
|
|
15839
16044
|
var newIntervalType = identify(value);
|
|
15840
16045
|
setIntervalType(newIntervalType);
|
|
15841
16046
|
}, [props.value, props.min, props.max]);
|
|
15842
|
-
var inputProps = filterObject(props, ['label', 'invalid', 'required', 'disabled', 'width', 'borderless', 'paddingless', 'type', 'value', 'setValue', 'getLabel', 'max', 'min', 'only']);
|
|
16047
|
+
var inputProps = filterObject(props, ['label', 'invalid', 'required', 'disabled', 'width', 'borderless', 'paddingless', 'type', 'value', 'setValue', 'getLabel', 'max', 'min', 'only', 'calendar']);
|
|
15843
16048
|
|
|
15844
16049
|
var getArrowProps = function getArrowProps(key) {
|
|
15845
16050
|
if (value.some(function (v) {
|
|
@@ -15971,7 +16176,7 @@ var Component$1 = React__default.forwardRef(function (props, ref) {
|
|
|
15971
16176
|
width: '165px',
|
|
15972
16177
|
itemSpacing: 's3',
|
|
15973
16178
|
bordered: true
|
|
15974
|
-
}), React__default.createElement(Calendar, {
|
|
16179
|
+
}), React__default.createElement(Calendar, Object.assign({}, props.calendar || {}, {
|
|
15975
16180
|
type: 'interval',
|
|
15976
16181
|
absolute: true,
|
|
15977
16182
|
open: open === 'calendar',
|
|
@@ -15989,9 +16194,8 @@ var Component$1 = React__default.forwardRef(function (props, ref) {
|
|
|
15989
16194
|
max: props.max,
|
|
15990
16195
|
references: {
|
|
15991
16196
|
bottom: '35px'
|
|
15992
|
-
}
|
|
15993
|
-
|
|
15994
|
-
}));
|
|
16197
|
+
}
|
|
16198
|
+
})));
|
|
15995
16199
|
});
|
|
15996
16200
|
Component$1.displayName = 'DatePicker';
|
|
15997
16201
|
|
|
@@ -16008,8 +16212,8 @@ var DatePicker$1 = Object.assign(Component$1, {
|
|
|
16008
16212
|
useDefaultDateIntervalState: useDefaultDateIntervalState
|
|
16009
16213
|
});
|
|
16010
16214
|
|
|
16011
|
-
var _templateObject$
|
|
16012
|
-
var Input$3 = styled__default.input(_templateObject$
|
|
16215
|
+
var _templateObject$v;
|
|
16216
|
+
var Input$3 = styled__default.input(_templateObject$v || (_templateObject$v = _taggedTemplateLiteralLoose(["\n ", ";\n\n color: ", ";\n\n line-height: 17px;\n\n ::placeholder {\n color: ", ";\n\n line-height: 17px;\n ", ";\n opacity: 1;\n }\n\n display: block;\n box-sizing: border-box;\n flex: 1;\n min-width: ", ";\n\n padding: calc(", " / 2) 0;\n\n box-shadow: none;\n outline: none;\n border: 1px solid transparent;\n"])), function (_ref) {
|
|
16013
16217
|
var theme = _ref.theme;
|
|
16014
16218
|
return theme.useTypography('p');
|
|
16015
16219
|
}, function (_ref2) {
|
|
@@ -16072,8 +16276,8 @@ var Input$4 = React__default.forwardRef(function (props, ref) {
|
|
|
16072
16276
|
});
|
|
16073
16277
|
Input$4.displayName = 'Input';
|
|
16074
16278
|
|
|
16075
|
-
var _templateObject$
|
|
16076
|
-
var Label$6 = styled__default.div(_templateObject$
|
|
16279
|
+
var _templateObject$w, _templateObject2$o;
|
|
16280
|
+
var Label$6 = styled__default.div(_templateObject$w || (_templateObject$w = _taggedTemplateLiteralLoose(["\n display: inline-block;\n margin-bottom: ", ";\n\n ", "\n"])), function (_ref) {
|
|
16077
16281
|
var theme = _ref.theme;
|
|
16078
16282
|
return theme.spacings.s1;
|
|
16079
16283
|
}, function (_ref2) {
|
|
@@ -16086,8 +16290,8 @@ var Label$7 = function Label(props) {
|
|
|
16086
16290
|
return props.children ? React__default.createElement(Label$6, Object.assign({}, props)) : null;
|
|
16087
16291
|
};
|
|
16088
16292
|
|
|
16089
|
-
var _templateObject$
|
|
16090
|
-
var Tag = styled__default.div(_templateObject$
|
|
16293
|
+
var _templateObject$x;
|
|
16294
|
+
var Tag = styled__default.div(_templateObject$x || (_templateObject$x = _taggedTemplateLiteralLoose(["\n ", "\n line-height: 17px;\n\n background-color: ", ";\n color: ", ";\n padding: calc(", " / 2);\n\n border-style: solid;\n border-width: 1px;\n border-color: ", ";\n display: flex;\n align-items: center;\n gap: ", ";\n\n > div:last-child {\n cursor: pointer;\n }\n"])), function (_ref) {
|
|
16091
16295
|
var theme = _ref.theme;
|
|
16092
16296
|
return theme.useTypography('p');
|
|
16093
16297
|
}, function (_ref2) {
|
|
@@ -16120,8 +16324,8 @@ var Tag$1 = function Tag$1(props) {
|
|
|
16120
16324
|
})));
|
|
16121
16325
|
};
|
|
16122
16326
|
|
|
16123
|
-
var _templateObject$
|
|
16124
|
-
var Label$8 = styled__default.label(_templateObject$
|
|
16327
|
+
var _templateObject$y, _templateObject2$p, _templateObject3$k;
|
|
16328
|
+
var Label$8 = styled__default.label(_templateObject$y || (_templateObject$y = _taggedTemplateLiteralLoose(["\n ", ";\n\n color: ", ";\n\n width: ", ";\n box-sizing: border-box;\n position: relative;\n display: block;\n\n ", "\n"])), function (_ref) {
|
|
16125
16329
|
var theme = _ref.theme;
|
|
16126
16330
|
return theme.useTypography('p');
|
|
16127
16331
|
}, function (_ref2) {
|
|
@@ -16135,7 +16339,7 @@ var Label$8 = styled__default.label(_templateObject$w || (_templateObject$w = _t
|
|
|
16135
16339
|
if (!disabled) return;
|
|
16136
16340
|
return styled.css(_templateObject2$p || (_templateObject2$p = _taggedTemplateLiteralLoose(["\n opacity: 0.5;\n "])));
|
|
16137
16341
|
});
|
|
16138
|
-
var TagContainer = styled__default.div(_templateObject3$
|
|
16342
|
+
var TagContainer = styled__default.div(_templateObject3$k || (_templateObject3$k = _taggedTemplateLiteralLoose(["\n border-width: 1px;\n border-style: solid;\n border-color: ", ";\n border-radius: 4px;\n display: flex;\n flex-wrap: wrap;\n gap: calc(", " / 2);\n padding: ", ";\n"])), function (_ref5) {
|
|
16139
16343
|
var theme = _ref5.theme,
|
|
16140
16344
|
invalid = _ref5.invalid;
|
|
16141
16345
|
return theme.colors[invalid ? 'warningRed' : 'lightGrey'];
|
|
@@ -16215,8 +16419,8 @@ var Tags = React__default.forwardRef(function (props, ref) {
|
|
|
16215
16419
|
});
|
|
16216
16420
|
Tags.displayName = 'Tags';
|
|
16217
16421
|
|
|
16218
|
-
var _templateObject$
|
|
16219
|
-
var RelativeContainer$6 = styled__default.div(_templateObject$
|
|
16422
|
+
var _templateObject$z;
|
|
16423
|
+
var RelativeContainer$6 = styled__default.div(_templateObject$z || (_templateObject$z = _taggedTemplateLiteralLoose(["\n position: relative;\n"])));
|
|
16220
16424
|
|
|
16221
16425
|
var isLeapYear$1 = function isLeapYear(year) {
|
|
16222
16426
|
if (year % 4 !== 0) return false;else if (year % 100 !== 0) return true;else if (year % 400 !== 0) return false;else return true;
|
|
@@ -16482,7 +16686,11 @@ var DateTime = React__default.forwardRef(function (props, ref) {
|
|
|
16482
16686
|
onKeyDown: onKeyDown,
|
|
16483
16687
|
icon: icon,
|
|
16484
16688
|
ref: ref
|
|
16485
|
-
})), React__default.createElement(Calendar, {
|
|
16689
|
+
})), React__default.createElement(Calendar, Object.assign({
|
|
16690
|
+
time: {
|
|
16691
|
+
seconds: props.seconds
|
|
16692
|
+
}
|
|
16693
|
+
}, typeof picker === 'object' ? picker : {}, {
|
|
16486
16694
|
type: 'single',
|
|
16487
16695
|
absolute: true,
|
|
16488
16696
|
open: open,
|
|
@@ -16498,11 +16706,8 @@ var DateTime = React__default.forwardRef(function (props, ref) {
|
|
|
16498
16706
|
max: max,
|
|
16499
16707
|
references: {
|
|
16500
16708
|
bottom: '35px'
|
|
16501
|
-
},
|
|
16502
|
-
time: {
|
|
16503
|
-
seconds: props.seconds
|
|
16504
16709
|
}
|
|
16505
|
-
}));
|
|
16710
|
+
})));
|
|
16506
16711
|
});
|
|
16507
16712
|
DateTime.displayName = 'DateTime';
|
|
16508
16713
|
|
|
@@ -16648,24 +16853,24 @@ var widths = {
|
|
|
16648
16853
|
default: '642.5px'
|
|
16649
16854
|
};
|
|
16650
16855
|
|
|
16651
|
-
var _templateObject$
|
|
16652
|
-
var Background = styled__default.div(_templateObject$
|
|
16856
|
+
var _templateObject$A, _templateObject2$q, _templateObject3$l, _templateObject4$h, _templateObject5$g, _templateObject6$e, _templateObject7$d, _templateObject8$9, _templateObject9$9, _templateObject10$6;
|
|
16857
|
+
var Background = styled__default.div(_templateObject$A || (_templateObject$A = _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) {
|
|
16653
16858
|
var theme = _ref.theme;
|
|
16654
16859
|
return theme.getColor('black', 25);
|
|
16655
16860
|
});
|
|
16656
16861
|
var Content = styled__default.div(_templateObject2$q || (_templateObject2$q = _taggedTemplateLiteralLoose(["\n flex: 1;\n position: relative;\n"])));
|
|
16657
|
-
var Header$3 = styled__default.div(_templateObject3$
|
|
16862
|
+
var Header$3 = styled__default.div(_templateObject3$l || (_templateObject3$l = _taggedTemplateLiteralLoose(["\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n\n ", "\n"])), function (_ref2) {
|
|
16658
16863
|
var _ref2$theme = _ref2.theme,
|
|
16659
16864
|
colors = _ref2$theme.colors,
|
|
16660
16865
|
spacings = _ref2$theme.spacings,
|
|
16661
16866
|
useTypography = _ref2$theme.useTypography;
|
|
16662
|
-
return styled.css(_templateObject4$
|
|
16867
|
+
return styled.css(_templateObject4$h || (_templateObject4$h = _taggedTemplateLiteralLoose(["\n border-bottom: 1px solid ", ";\n padding: ", ";\n\n ", "\n "])), colors.lightestGrey, spacings.s4, useTypography('h1'));
|
|
16663
16868
|
});
|
|
16664
|
-
var Footer$2 = styled__default.div(_templateObject5$
|
|
16869
|
+
var Footer$2 = styled__default.div(_templateObject5$g || (_templateObject5$g = _taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n\n ", "\n"])), function (_ref3) {
|
|
16665
16870
|
var _ref3$theme = _ref3.theme,
|
|
16666
16871
|
spacings = _ref3$theme.spacings,
|
|
16667
16872
|
colors = _ref3$theme.colors;
|
|
16668
|
-
return styled.css(_templateObject6$
|
|
16873
|
+
return styled.css(_templateObject6$e || (_templateObject6$e = _taggedTemplateLiteralLoose(["\n border-top: 1px solid ", ";\n padding: ", ";\n "])), colors.lightestGrey, spacings.s3);
|
|
16669
16874
|
});
|
|
16670
16875
|
var FooterMessage = styled__default.div(_templateObject7$d || (_templateObject7$d = _taggedTemplateLiteralLoose(["\n max-width: 75%;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n\n span {\n font-size: 14px;\n color: ", ";\n }\n"])), function (_ref4) {
|
|
16671
16876
|
var theme = _ref4.theme;
|
|
@@ -16757,8 +16962,8 @@ var Modal = function Modal(props) {
|
|
|
16757
16962
|
}))))));
|
|
16758
16963
|
};
|
|
16759
16964
|
|
|
16760
|
-
var _templateObject$
|
|
16761
|
-
var Content$1 = styled__default.div(_templateObject$
|
|
16965
|
+
var _templateObject$B;
|
|
16966
|
+
var Content$1 = styled__default.div(_templateObject$B || (_templateObject$B = _taggedTemplateLiteralLoose(["\n padding: ", ";\n"])), function (_ref) {
|
|
16762
16967
|
var theme = _ref.theme;
|
|
16763
16968
|
return theme.spacings.s5 + " " + theme.spacings.s4;
|
|
16764
16969
|
});
|
|
@@ -16795,8 +17000,8 @@ var ConfirmDelete = function ConfirmDelete(props) {
|
|
|
16795
17000
|
}, React__default.createElement(Content$1, null, children || content));
|
|
16796
17001
|
};
|
|
16797
17002
|
|
|
16798
|
-
var _templateObject$
|
|
16799
|
-
var Content$2 = styled__default.div(_templateObject$
|
|
17003
|
+
var _templateObject$C;
|
|
17004
|
+
var Content$2 = styled__default.div(_templateObject$C || (_templateObject$C = _taggedTemplateLiteralLoose(["\n padding: ", ";\n"])), function (_ref) {
|
|
16800
17005
|
var theme = _ref.theme;
|
|
16801
17006
|
return theme.spacings.s5 + " " + theme.spacings.s4;
|
|
16802
17007
|
});
|
|
@@ -16836,8 +17041,8 @@ var ConfirmSuccess = function ConfirmSuccess(props) {
|
|
|
16836
17041
|
}, React__default.createElement(Content$2, null, children || content));
|
|
16837
17042
|
};
|
|
16838
17043
|
|
|
16839
|
-
var _templateObject$
|
|
16840
|
-
var Content$3 = styled__default.div(_templateObject$
|
|
17044
|
+
var _templateObject$D;
|
|
17045
|
+
var Content$3 = styled__default.div(_templateObject$D || (_templateObject$D = _taggedTemplateLiteralLoose(["\n padding: ", ";\n"])), function (_ref) {
|
|
16841
17046
|
var theme = _ref.theme;
|
|
16842
17047
|
return theme.spacings.s5 + " " + theme.spacings.s4;
|
|
16843
17048
|
});
|
|
@@ -16878,17 +17083,17 @@ var Modal$1 = Object.assign(Modal, {
|
|
|
16878
17083
|
Audit: Audit
|
|
16879
17084
|
});
|
|
16880
17085
|
|
|
16881
|
-
var _templateObject$
|
|
16882
|
-
var Container$b = styled__default.div(_templateObject$
|
|
17086
|
+
var _templateObject$E, _templateObject2$r, _templateObject3$m, _templateObject4$i, _templateObject5$h, _templateObject6$f, _templateObject7$e, _templateObject8$a, _templateObject9$a, _templateObject10$7;
|
|
17087
|
+
var Container$b = styled__default.div(_templateObject$E || (_templateObject$E = _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) {
|
|
16883
17088
|
return props.size === 'mini' && styled.css(_templateObject2$r || (_templateObject2$r = _taggedTemplateLiteralLoose(["\n width: 394px;\n height: 99px;\n "])));
|
|
16884
17089
|
}, function (props) {
|
|
16885
|
-
return props.size === 'small' && styled.css(_templateObject3$
|
|
17090
|
+
return props.size === 'small' && styled.css(_templateObject3$m || (_templateObject3$m = _taggedTemplateLiteralLoose(["\n width: 394px;\n height: 131px;\n "])));
|
|
16886
17091
|
}, function (props) {
|
|
16887
|
-
return props.size === 'medium' && styled.css(_templateObject4$
|
|
17092
|
+
return props.size === 'medium' && styled.css(_templateObject4$i || (_templateObject4$i = _taggedTemplateLiteralLoose(["\n width: 394px;\n "])));
|
|
16888
17093
|
}, function (props) {
|
|
16889
|
-
return props.size === 'big' && styled.css(_templateObject5$
|
|
17094
|
+
return props.size === 'big' && styled.css(_templateObject5$h || (_templateObject5$h = _taggedTemplateLiteralLoose(["\n width: 414px;\n height: 324px;\n "])));
|
|
16890
17095
|
}, function (props) {
|
|
16891
|
-
return props.borderType === 'info' && styled.css(_templateObject6$
|
|
17096
|
+
return props.borderType === 'info' && styled.css(_templateObject6$f || (_templateObject6$f = _taggedTemplateLiteralLoose(["\n border-left-color: #4d6dbe;\n "])));
|
|
16892
17097
|
}, function (props) {
|
|
16893
17098
|
return props.borderType === 'success' && styled.css(_templateObject7$e || (_templateObject7$e = _taggedTemplateLiteralLoose(["\n border-left-color: #66bb6a;\n "])));
|
|
16894
17099
|
}, function (props) {
|
|
@@ -16908,18 +17113,18 @@ var Card = function Card(_ref) {
|
|
|
16908
17113
|
return React__default.createElement(Container$b, Object.assign({}, rest), children);
|
|
16909
17114
|
};
|
|
16910
17115
|
|
|
16911
|
-
var _templateObject$
|
|
16912
|
-
var Container$c = styled__default.div(_templateObject$
|
|
17116
|
+
var _templateObject$F, _templateObject2$s, _templateObject3$n, _templateObject4$j, _templateObject5$i, _templateObject6$g;
|
|
17117
|
+
var Container$c = styled__default.div(_templateObject$F || (_templateObject$F = _taggedTemplateLiteralLoose(["\n border-radius: 4px;\n width: ", ";\n height: 88px;\n border: 1px solid transparent;\n position: relative;\n\n ", "\n\n ", "\n\n ", "\n\n svg {\n cursor: pointer;\n position: absolute;\n top: 14px;\n right: 14px;\n width: 13px;\n height: 13px;\n }\n"])), function (props) {
|
|
16913
17118
|
return props.size === 'large' ? '837px' : '460px';
|
|
16914
17119
|
}, function (props) {
|
|
16915
17120
|
return props.color === 'success' && styled.css(_templateObject2$s || (_templateObject2$s = _taggedTemplateLiteralLoose(["\n background-color: #fcfff5;\n opacity: 1;\n border-color: #a8c599;\n h4 {\n color: #1e561f;\n }\n p {\n color: #1e561fcc;\n }\n "])));
|
|
16916
17121
|
}, function (props) {
|
|
16917
|
-
return props.color === 'error' && styled.css(_templateObject3$
|
|
17122
|
+
return props.color === 'error' && styled.css(_templateObject3$n || (_templateObject3$n = _taggedTemplateLiteralLoose(["\n background-color: #fff6f6;\n opacity: 1;\n border-color: #973937;\n h4 {\n color: #973937;\n }\n p {\n color: #973937;\n }\n "])));
|
|
16918
17123
|
}, function (props) {
|
|
16919
|
-
return props.color === 'warning' && styled.css(_templateObject4$
|
|
17124
|
+
return props.color === 'warning' && styled.css(_templateObject4$j || (_templateObject4$j = _taggedTemplateLiteralLoose(["\n background-color: #fffaf3;\n opacity: 1;\n border-color: #ccbea0;\n h4 {\n color: #7a4d05;\n }\n p {\n color: #7a4d05cc;\n }\n "])));
|
|
16920
17125
|
});
|
|
16921
|
-
var IconContainer$2 = styled__default.div(_templateObject5$
|
|
16922
|
-
var IconContent = styled__default.div(_templateObject6$
|
|
17126
|
+
var IconContainer$2 = styled__default.div(_templateObject5$i || (_templateObject5$i = _taggedTemplateLiteralLoose(["\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: flex-end;\n padding: 14px 14px 0 0;\n margin: 0;\n"])));
|
|
17127
|
+
var IconContent = styled__default.div(_templateObject6$g || (_templateObject6$g = _taggedTemplateLiteralLoose(["\n width: 100%;\n padding: 13px 0 21px 28px;\n display: flex;\n flex: 1;\n flex-direction: column;\n\n h4 {\n margin-bottom: 7px;\n font-size: 18p;\n }\n p {\n margin: 0;\n font-size: 14px;\n max-width: 380px;\n }\n"])));
|
|
16923
17128
|
|
|
16924
17129
|
var Toast = function Toast(props) {
|
|
16925
17130
|
return React__default.createElement(Container$c, Object.assign({}, props), React__default.createElement(IconContainer$2, null, React__default.createElement(Icon, {
|
|
@@ -16931,13 +17136,13 @@ var Toast = function Toast(props) {
|
|
|
16931
17136
|
})), React__default.createElement(IconContent, null, React__default.createElement("h4", null, props.title), React__default.createElement("p", null, " ", props.description)));
|
|
16932
17137
|
};
|
|
16933
17138
|
|
|
16934
|
-
var _templateObject$
|
|
16935
|
-
var Container$d = styled__default.div(_templateObject$
|
|
17139
|
+
var _templateObject$G, _templateObject2$t, _templateObject3$o, _templateObject4$k, _templateObject5$j, _templateObject6$h, _templateObject7$f, _templateObject8$b, _templateObject9$b, _templateObject10$8, _templateObject11$5;
|
|
17140
|
+
var Container$d = styled__default.div(_templateObject$G || (_templateObject$G = _taggedTemplateLiteralLoose(["\n width: 100%;\n height: 300px;\n position: absolute;\n padding: 14px;\n"])));
|
|
16936
17141
|
var Header$4 = styled__default.div(_templateObject2$t || (_templateObject2$t = _taggedTemplateLiteralLoose(["\n display: flex;\n"])));
|
|
16937
|
-
var HeaderImage = styled__default.div(_templateObject3$
|
|
16938
|
-
var HeaderContent = styled__default.div(_templateObject4$
|
|
16939
|
-
var MainContent = styled__default.div(_templateObject5$
|
|
16940
|
-
var HeaderLine = styled__default.div(_templateObject6$
|
|
17142
|
+
var HeaderImage = styled__default.div(_templateObject3$o || (_templateObject3$o = _taggedTemplateLiteralLoose(["\n width: 43px;\n height: 44px;\n background-color: #ebebeb;\n"])));
|
|
17143
|
+
var HeaderContent = styled__default.div(_templateObject4$k || (_templateObject4$k = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n flex: 1;\n"])));
|
|
17144
|
+
var MainContent = styled__default.div(_templateObject5$j || (_templateObject5$j = _taggedTemplateLiteralLoose(["\n margin-top: 8px;\n"])));
|
|
17145
|
+
var HeaderLine = styled__default.div(_templateObject6$h || (_templateObject6$h = _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) {
|
|
16941
17146
|
return props.height;
|
|
16942
17147
|
}, function (props) {
|
|
16943
17148
|
return props.size === 'mini' && styled.css(_templateObject7$f || (_templateObject7$f = _taggedTemplateLiteralLoose(["\n width: 15%;\n "])));
|
|
@@ -16948,7 +17153,7 @@ var HeaderLine = styled__default.div(_templateObject6$i || (_templateObject6$i =
|
|
|
16948
17153
|
}, function (props) {
|
|
16949
17154
|
return props.size === 'large' && styled.css(_templateObject10$8 || (_templateObject10$8 = _taggedTemplateLiteralLoose(["\n width: 75%;\n "])));
|
|
16950
17155
|
});
|
|
16951
|
-
var MainLine = styled__default(HeaderLine)(_templateObject11$
|
|
17156
|
+
var MainLine = styled__default(HeaderLine)(_templateObject11$5 || (_templateObject11$5 = _taggedTemplateLiteralLoose(["\n margin-bottom: 14px;\n margin-left: 0;\n"])));
|
|
16952
17157
|
|
|
16953
17158
|
var Template1 = function Template1(props) {
|
|
16954
17159
|
if (!props.loading) return React__default.createElement(React__default.Fragment, null);
|
|
@@ -16983,26 +17188,26 @@ var Template1 = function Template1(props) {
|
|
|
16983
17188
|
})));
|
|
16984
17189
|
};
|
|
16985
17190
|
|
|
16986
|
-
var _templateObject$
|
|
16987
|
-
var HeaderLine$1 = styled__default.div(_templateObject$
|
|
17191
|
+
var _templateObject$H, _templateObject2$u, _templateObject3$p, _templateObject4$l, _templateObject5$k;
|
|
17192
|
+
var HeaderLine$1 = styled__default.div(_templateObject$H || (_templateObject$H = _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) {
|
|
16988
17193
|
return props.height;
|
|
16989
17194
|
}, function (props) {
|
|
16990
17195
|
return props.size === 'mini' && styled.css(_templateObject2$u || (_templateObject2$u = _taggedTemplateLiteralLoose(["\n width: 15%;\n "])));
|
|
16991
17196
|
}, function (props) {
|
|
16992
|
-
return props.size === 'small' && styled.css(_templateObject3$
|
|
17197
|
+
return props.size === 'small' && styled.css(_templateObject3$p || (_templateObject3$p = _taggedTemplateLiteralLoose(["\n width: 25%;\n "])));
|
|
16993
17198
|
}, function (props) {
|
|
16994
|
-
return props.size === 'medium' && styled.css(_templateObject4$
|
|
17199
|
+
return props.size === 'medium' && styled.css(_templateObject4$l || (_templateObject4$l = _taggedTemplateLiteralLoose(["\n width: 45%;\n "])));
|
|
16995
17200
|
}, function (props) {
|
|
16996
|
-
return props.size === 'large' && styled.css(_templateObject5$
|
|
17201
|
+
return props.size === 'large' && styled.css(_templateObject5$k || (_templateObject5$k = _taggedTemplateLiteralLoose(["\n width: 75%;\n "])));
|
|
16997
17202
|
});
|
|
16998
17203
|
|
|
16999
|
-
var _templateObject$
|
|
17000
|
-
var Container$e = styled__default.div(_templateObject$
|
|
17204
|
+
var _templateObject$I, _templateObject2$v, _templateObject3$q, _templateObject4$m, _templateObject5$l, _templateObject6$i, _templateObject7$g, _templateObject8$c;
|
|
17205
|
+
var Container$e = styled__default.div(_templateObject$I || (_templateObject$I = _taggedTemplateLiteralLoose(["\n width: 100%;\n max-height: 100%;\n position: absolute;\n padding: 14px;\n"])));
|
|
17001
17206
|
var Template2Container = styled__default(Container$e)(_templateObject2$v || (_templateObject2$v = _taggedTemplateLiteralLoose(["\n background: #fff;\n border: 2px solid #ebebeb;\n"])));
|
|
17002
|
-
var Header$5 = styled__default.div(_templateObject3$
|
|
17003
|
-
var HeaderImage$1 = styled__default.div(_templateObject4$
|
|
17004
|
-
var HeaderContent$1 = styled__default.div(_templateObject5$
|
|
17005
|
-
var MainContent$1 = styled__default.div(_templateObject6$
|
|
17207
|
+
var Header$5 = styled__default.div(_templateObject3$q || (_templateObject3$q = _taggedTemplateLiteralLoose(["\n display: flex;\n"])));
|
|
17208
|
+
var HeaderImage$1 = styled__default.div(_templateObject4$m || (_templateObject4$m = _taggedTemplateLiteralLoose(["\n width: 43px;\n height: 44px;\n background-color: #ebebeb;\n"])));
|
|
17209
|
+
var HeaderContent$1 = styled__default.div(_templateObject5$l || (_templateObject5$l = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n flex: 1;\n"])));
|
|
17210
|
+
var MainContent$1 = styled__default.div(_templateObject6$i || (_templateObject6$i = _taggedTemplateLiteralLoose(["\n margin-top: 8px;\n"])));
|
|
17006
17211
|
var MainLine$1 = styled__default(HeaderLine$1)(_templateObject7$g || (_templateObject7$g = _taggedTemplateLiteralLoose(["\n margin-bottom: 14px;\n margin-left: 0;\n"])));
|
|
17007
17212
|
var HeaderLine$2 = styled__default(HeaderLine$1)(_templateObject8$c || (_templateObject8$c = _taggedTemplateLiteralLoose([""])));
|
|
17008
17213
|
|
|
@@ -17027,10 +17232,10 @@ var Template2 = function Template2(props) {
|
|
|
17027
17232
|
})));
|
|
17028
17233
|
};
|
|
17029
17234
|
|
|
17030
|
-
var _templateObject$
|
|
17031
|
-
var Container$f = styled__default.div(_templateObject$
|
|
17235
|
+
var _templateObject$J, _templateObject2$w, _templateObject3$r;
|
|
17236
|
+
var Container$f = styled__default.div(_templateObject$J || (_templateObject$J = _taggedTemplateLiteralLoose(["\n width: 100%;\n max-height: 100%;\n position: absolute;\n padding: 14px;\n"])));
|
|
17032
17237
|
var Template3Container = styled__default(Container$f)(_templateObject2$w || (_templateObject2$w = _taggedTemplateLiteralLoose([""])));
|
|
17033
|
-
var Template3Line = styled__default(HeaderLine$1)(_templateObject3$
|
|
17238
|
+
var Template3Line = styled__default(HeaderLine$1)(_templateObject3$r || (_templateObject3$r = _taggedTemplateLiteralLoose(["\n background-color: #dadada;\n height: ", ";\n"])), function (props) {
|
|
17034
17239
|
return props.height;
|
|
17035
17240
|
});
|
|
17036
17241
|
|
|
@@ -17059,18 +17264,18 @@ var Template3 = function Template3(props) {
|
|
|
17059
17264
|
}));
|
|
17060
17265
|
};
|
|
17061
17266
|
|
|
17062
|
-
var _templateObject$
|
|
17063
|
-
var Container$g = styled__default.div(_templateObject$
|
|
17267
|
+
var _templateObject$K, _templateObject2$x, _templateObject3$s, _templateObject4$n, _templateObject5$m, _templateObject6$j, _templateObject7$h, _templateObject8$d;
|
|
17268
|
+
var Container$g = styled__default.div(_templateObject$K || (_templateObject$K = _taggedTemplateLiteralLoose(["\n width: 100%;\n max-height: 100%;\n position: absolute;\n padding: 14px;\n"])));
|
|
17064
17269
|
var HeaderLine$3 = styled__default.div(_templateObject2$x || (_templateObject2$x = _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) {
|
|
17065
17270
|
return props.height;
|
|
17066
17271
|
}, function (props) {
|
|
17067
|
-
return props.size === 'mini' && styled.css(_templateObject3$
|
|
17272
|
+
return props.size === 'mini' && styled.css(_templateObject3$s || (_templateObject3$s = _taggedTemplateLiteralLoose(["\n width: 15%;\n "])));
|
|
17068
17273
|
}, function (props) {
|
|
17069
|
-
return props.size === 'small' && styled.css(_templateObject4$
|
|
17274
|
+
return props.size === 'small' && styled.css(_templateObject4$n || (_templateObject4$n = _taggedTemplateLiteralLoose(["\n width: 25%;\n "])));
|
|
17070
17275
|
}, function (props) {
|
|
17071
|
-
return props.size === 'medium' && styled.css(_templateObject5$
|
|
17276
|
+
return props.size === 'medium' && styled.css(_templateObject5$m || (_templateObject5$m = _taggedTemplateLiteralLoose(["\n width: 45%;\n "])));
|
|
17072
17277
|
}, function (props) {
|
|
17073
|
-
return props.size === 'large' && styled.css(_templateObject6$
|
|
17278
|
+
return props.size === 'large' && styled.css(_templateObject6$j || (_templateObject6$j = _taggedTemplateLiteralLoose(["\n width: 75%;\n "])));
|
|
17074
17279
|
});
|
|
17075
17280
|
var Template4Container = styled__default(Container$g)(_templateObject7$h || (_templateObject7$h = _taggedTemplateLiteralLoose(["\n border: 1px solid #e6e6e7;\n border-radius: 4px;\n"])));
|
|
17076
17281
|
var CustomLine = styled__default(HeaderLine$3)(_templateObject8$d || (_templateObject8$d = _taggedTemplateLiteralLoose(["\n width: ", ";\n height: ", ";\n background-color: ", ";\n"])), function (props) {
|
|
@@ -17126,17 +17331,17 @@ var Template4 = function Template4(props) {
|
|
|
17126
17331
|
}));
|
|
17127
17332
|
};
|
|
17128
17333
|
|
|
17129
|
-
var _templateObject$
|
|
17130
|
-
var Container$h = styled__default.div(_templateObject$
|
|
17334
|
+
var _templateObject$L, _templateObject2$y, _templateObject3$t, _templateObject4$o, _templateObject5$n, _templateObject6$k, _templateObject7$i, _templateObject8$e, _templateObject9$c;
|
|
17335
|
+
var Container$h = styled__default.div(_templateObject$L || (_templateObject$L = _taggedTemplateLiteralLoose(["\n position: absolute;\n width: 746px;\n height: 169px;\n border: 1px solid #e6e6e7;\n border-radius: 4px;\n padding: 14px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n"])));
|
|
17131
17336
|
var Circle = styled__default.div(_templateObject2$y || (_templateObject2$y = _taggedTemplateLiteralLoose(["\n width: 141px;\n height: 141px;\n background-color: #dddedf;\n border-radius: 50%;\n"])));
|
|
17132
|
-
var HeaderLine$4 = styled__default.div(_templateObject3$
|
|
17337
|
+
var HeaderLine$4 = styled__default.div(_templateObject3$t || (_templateObject3$t = _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) {
|
|
17133
17338
|
return props.height;
|
|
17134
17339
|
}, function (props) {
|
|
17135
|
-
return props.size === 'mini' && styled.css(_templateObject4$
|
|
17340
|
+
return props.size === 'mini' && styled.css(_templateObject4$o || (_templateObject4$o = _taggedTemplateLiteralLoose(["\n width: 15%;\n "])));
|
|
17136
17341
|
}, function (props) {
|
|
17137
|
-
return props.size === 'small' && styled.css(_templateObject5$
|
|
17342
|
+
return props.size === 'small' && styled.css(_templateObject5$n || (_templateObject5$n = _taggedTemplateLiteralLoose(["\n width: 25%;\n "])));
|
|
17138
17343
|
}, function (props) {
|
|
17139
|
-
return props.size === 'medium' && styled.css(_templateObject6$
|
|
17344
|
+
return props.size === 'medium' && styled.css(_templateObject6$k || (_templateObject6$k = _taggedTemplateLiteralLoose(["\n width: 45%;\n "])));
|
|
17140
17345
|
}, function (props) {
|
|
17141
17346
|
return props.size === 'large' && styled.css(_templateObject7$i || (_templateObject7$i = _taggedTemplateLiteralLoose(["\n width: 75%;\n "])));
|
|
17142
17347
|
});
|
|
@@ -17174,16 +17379,16 @@ var Template5 = function Template5(props) {
|
|
|
17174
17379
|
})));
|
|
17175
17380
|
};
|
|
17176
17381
|
|
|
17177
|
-
var _templateObject$
|
|
17178
|
-
var Container$i = styled__default.div(_templateObject$
|
|
17382
|
+
var _templateObject$M, _templateObject2$z, _templateObject3$u, _templateObject4$p, _templateObject5$o, _templateObject6$l, _templateObject7$j, _templateObject8$f, _templateObject9$d;
|
|
17383
|
+
var Container$i = styled__default.div(_templateObject$M || (_templateObject$M = _taggedTemplateLiteralLoose(["\n width: 395px;\n\n display: flex;\n align-items: center;\n justify-content: space-between;\n background-color: #f5f5f5;\n"])));
|
|
17179
17384
|
var Header$6 = styled__default.div(_templateObject2$z || (_templateObject2$z = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 14px;\n"])));
|
|
17180
|
-
var Footer$3 = styled__default.div(_templateObject3$
|
|
17181
|
-
var HeaderLine$5 = styled__default.div(_templateObject4$
|
|
17385
|
+
var Footer$3 = styled__default.div(_templateObject3$u || (_templateObject3$u = _taggedTemplateLiteralLoose(["\n width: 100%;\n border-top: 1px solid #b1b1b3;\n height: 50px;\n"])));
|
|
17386
|
+
var HeaderLine$5 = styled__default.div(_templateObject4$p || (_templateObject4$p = _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) {
|
|
17182
17387
|
return props.height;
|
|
17183
17388
|
}, function (props) {
|
|
17184
|
-
return props.size === 'mini' && styled.css(_templateObject5$
|
|
17389
|
+
return props.size === 'mini' && styled.css(_templateObject5$o || (_templateObject5$o = _taggedTemplateLiteralLoose(["\n width: 15%;\n "])));
|
|
17185
17390
|
}, function (props) {
|
|
17186
|
-
return props.size === 'small' && styled.css(_templateObject6$
|
|
17391
|
+
return props.size === 'small' && styled.css(_templateObject6$l || (_templateObject6$l = _taggedTemplateLiteralLoose(["\n width: 25%;\n "])));
|
|
17187
17392
|
}, function (props) {
|
|
17188
17393
|
return props.size === 'medium' && styled.css(_templateObject7$j || (_templateObject7$j = _taggedTemplateLiteralLoose(["\n width: 45%;\n "])));
|
|
17189
17394
|
}, function (props) {
|
|
@@ -17217,17 +17422,17 @@ var Template6 = function Template6(props) {
|
|
|
17217
17422
|
})));
|
|
17218
17423
|
};
|
|
17219
17424
|
|
|
17220
|
-
var _templateObject$
|
|
17221
|
-
var Container$j = styled__default.div(_templateObject$
|
|
17425
|
+
var _templateObject$N, _templateObject2$A, _templateObject3$v, _templateObject4$q, _templateObject5$p, _templateObject6$m, _templateObject7$k, _templateObject8$g, _templateObject9$e, _templateObject10$9;
|
|
17426
|
+
var Container$j = styled__default.div(_templateObject$N || (_templateObject$N = _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"])));
|
|
17222
17427
|
var Header$7 = styled__default.div(_templateObject2$A || (_templateObject2$A = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 14px;\n width: 100%;\n"])));
|
|
17223
|
-
var HeaderLine$6 = styled__default.div(_templateObject3$
|
|
17428
|
+
var HeaderLine$6 = styled__default.div(_templateObject3$v || (_templateObject3$v = _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) {
|
|
17224
17429
|
return props.height;
|
|
17225
17430
|
}, function (props) {
|
|
17226
|
-
return props.size === 'mini' && styled.css(_templateObject4$
|
|
17431
|
+
return props.size === 'mini' && styled.css(_templateObject4$q || (_templateObject4$q = _taggedTemplateLiteralLoose(["\n width: 15%;\n "])));
|
|
17227
17432
|
}, function (props) {
|
|
17228
|
-
return props.size === 'small' && styled.css(_templateObject5$
|
|
17433
|
+
return props.size === 'small' && styled.css(_templateObject5$p || (_templateObject5$p = _taggedTemplateLiteralLoose(["\n width: 25%;\n "])));
|
|
17229
17434
|
}, function (props) {
|
|
17230
|
-
return props.size === 'medium' && styled.css(_templateObject6$
|
|
17435
|
+
return props.size === 'medium' && styled.css(_templateObject6$m || (_templateObject6$m = _taggedTemplateLiteralLoose(["\n width: 45%;\n "])));
|
|
17231
17436
|
}, function (props) {
|
|
17232
17437
|
return props.size === 'large' && styled.css(_templateObject7$k || (_templateObject7$k = _taggedTemplateLiteralLoose(["\n width: 75%;\n "])));
|
|
17233
17438
|
});
|
|
@@ -17251,17 +17456,17 @@ var Template7 = function Template7(props) {
|
|
|
17251
17456
|
})), React__default.createElement(Main$2, null, React__default.createElement(Circle$1, null), React__default.createElement(Circle$1, null), React__default.createElement(Circle$1, null), React__default.createElement(Circle$1, null), React__default.createElement(Circle$1, null)));
|
|
17252
17457
|
};
|
|
17253
17458
|
|
|
17254
|
-
var _templateObject$
|
|
17255
|
-
var Container$k = styled__default.div(_templateObject$
|
|
17459
|
+
var _templateObject$O, _templateObject2$B, _templateObject3$w, _templateObject4$r, _templateObject5$q, _templateObject6$n, _templateObject7$l, _templateObject8$h, _templateObject9$f;
|
|
17460
|
+
var Container$k = styled__default.div(_templateObject$O || (_templateObject$O = _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"])));
|
|
17256
17461
|
var Header$8 = styled__default.div(_templateObject2$B || (_templateObject2$B = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 14px;\n width: 100%;\n"])));
|
|
17257
|
-
var HeaderLine$7 = styled__default.div(_templateObject3$
|
|
17462
|
+
var HeaderLine$7 = styled__default.div(_templateObject3$w || (_templateObject3$w = _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) {
|
|
17258
17463
|
return props.height;
|
|
17259
17464
|
}, function (props) {
|
|
17260
|
-
return props.size === 'mini' && styled.css(_templateObject4$
|
|
17465
|
+
return props.size === 'mini' && styled.css(_templateObject4$r || (_templateObject4$r = _taggedTemplateLiteralLoose(["\n width: 15%;\n "])));
|
|
17261
17466
|
}, function (props) {
|
|
17262
|
-
return props.size === 'small' && styled.css(_templateObject5$
|
|
17467
|
+
return props.size === 'small' && styled.css(_templateObject5$q || (_templateObject5$q = _taggedTemplateLiteralLoose(["\n width: 25%;\n "])));
|
|
17263
17468
|
}, function (props) {
|
|
17264
|
-
return props.size === 'medium' && styled.css(_templateObject6$
|
|
17469
|
+
return props.size === 'medium' && styled.css(_templateObject6$n || (_templateObject6$n = _taggedTemplateLiteralLoose(["\n width: 45%;\n "])));
|
|
17265
17470
|
}, function (props) {
|
|
17266
17471
|
return props.size === 'large' && styled.css(_templateObject7$l || (_templateObject7$l = _taggedTemplateLiteralLoose(["\n width: 75%;\n "])));
|
|
17267
17472
|
});
|
|
@@ -17294,17 +17499,17 @@ var Template8 = function Template8(props) {
|
|
|
17294
17499
|
})));
|
|
17295
17500
|
};
|
|
17296
17501
|
|
|
17297
|
-
var _templateObject$
|
|
17298
|
-
var Container$l = styled__default.div(_templateObject$
|
|
17502
|
+
var _templateObject$P, _templateObject2$C, _templateObject3$x, _templateObject4$s, _templateObject5$r, _templateObject6$o, _templateObject7$m, _templateObject8$i, _templateObject9$g, _templateObject10$a;
|
|
17503
|
+
var Container$l = styled__default.div(_templateObject$P || (_templateObject$P = _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"])));
|
|
17299
17504
|
var Header$9 = styled__default.div(_templateObject2$C || (_templateObject2$C = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 14px;\n width: 100%;\n"])));
|
|
17300
|
-
var HeaderLine$8 = styled__default.div(_templateObject3$
|
|
17505
|
+
var HeaderLine$8 = styled__default.div(_templateObject3$x || (_templateObject3$x = _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) {
|
|
17301
17506
|
return props.height;
|
|
17302
17507
|
}, function (props) {
|
|
17303
|
-
return props.size === 'mini' && styled.css(_templateObject4$
|
|
17508
|
+
return props.size === 'mini' && styled.css(_templateObject4$s || (_templateObject4$s = _taggedTemplateLiteralLoose(["\n width: 15%;\n "])));
|
|
17304
17509
|
}, function (props) {
|
|
17305
|
-
return props.size === 'small' && styled.css(_templateObject5$
|
|
17510
|
+
return props.size === 'small' && styled.css(_templateObject5$r || (_templateObject5$r = _taggedTemplateLiteralLoose(["\n width: 25%;\n "])));
|
|
17306
17511
|
}, function (props) {
|
|
17307
|
-
return props.size === 'medium' && styled.css(_templateObject6$
|
|
17512
|
+
return props.size === 'medium' && styled.css(_templateObject6$o || (_templateObject6$o = _taggedTemplateLiteralLoose(["\n width: 45%;\n "])));
|
|
17308
17513
|
}, function (props) {
|
|
17309
17514
|
return props.size === 'large' && styled.css(_templateObject7$m || (_templateObject7$m = _taggedTemplateLiteralLoose(["\n width: 75%;\n "])));
|
|
17310
17515
|
});
|
|
@@ -17333,17 +17538,17 @@ var Template8$1 = function Template8(props) {
|
|
|
17333
17538
|
})), React__default.createElement(Main$4, null, React__default.createElement(Circle$2, null)));
|
|
17334
17539
|
};
|
|
17335
17540
|
|
|
17336
|
-
var _templateObject$
|
|
17337
|
-
var Container$m = styled__default.div(_templateObject$
|
|
17541
|
+
var _templateObject$Q, _templateObject2$D, _templateObject3$y, _templateObject4$t, _templateObject5$s, _templateObject6$p, _templateObject7$n, _templateObject8$j, _templateObject9$h, _templateObject10$b, _templateObject11$6;
|
|
17542
|
+
var Container$m = styled__default.div(_templateObject$Q || (_templateObject$Q = _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"])));
|
|
17338
17543
|
var Header$a = styled__default.div(_templateObject2$D || (_templateObject2$D = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 14px;\n width: 100%;\n"])));
|
|
17339
|
-
var HeaderLine$9 = styled__default.div(_templateObject3$
|
|
17544
|
+
var HeaderLine$9 = styled__default.div(_templateObject3$y || (_templateObject3$y = _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) {
|
|
17340
17545
|
return props.height;
|
|
17341
17546
|
}, function (props) {
|
|
17342
|
-
return props.size === 'mini' && styled.css(_templateObject4$
|
|
17547
|
+
return props.size === 'mini' && styled.css(_templateObject4$t || (_templateObject4$t = _taggedTemplateLiteralLoose(["\n width: 15%;\n "])));
|
|
17343
17548
|
}, function (props) {
|
|
17344
|
-
return props.size === 'small' && styled.css(_templateObject5$
|
|
17549
|
+
return props.size === 'small' && styled.css(_templateObject5$s || (_templateObject5$s = _taggedTemplateLiteralLoose(["\n width: 25%;\n "])));
|
|
17345
17550
|
}, function (props) {
|
|
17346
|
-
return props.size === 'medium' && styled.css(_templateObject6$
|
|
17551
|
+
return props.size === 'medium' && styled.css(_templateObject6$p || (_templateObject6$p = _taggedTemplateLiteralLoose(["\n width: 45%;\n "])));
|
|
17347
17552
|
}, function (props) {
|
|
17348
17553
|
return props.size === 'large' && styled.css(_templateObject7$n || (_templateObject7$n = _taggedTemplateLiteralLoose(["\n width: 75%;\n "])));
|
|
17349
17554
|
});
|
|
@@ -17356,7 +17561,7 @@ var CustomLine$6 = styled__default(HeaderLine$9)(_templateObject8$j || (_templat
|
|
|
17356
17561
|
});
|
|
17357
17562
|
var GraphLine = styled__default(CustomLine$6)(_templateObject9$h || (_templateObject9$h = _taggedTemplateLiteralLoose(["\n margin: 0 7px;\n"])));
|
|
17358
17563
|
var Main$5 = styled__default.div(_templateObject10$b || (_templateObject10$b = _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"])));
|
|
17359
|
-
var Circle$3 = styled__default.div(_templateObject11$
|
|
17564
|
+
var Circle$3 = styled__default.div(_templateObject11$6 || (_templateObject11$6 = _taggedTemplateLiteralLoose(["\n width: 128px;\n height: 128px;\n background-color: #ebebeb;\n border-radius: 50%;\n"])));
|
|
17360
17565
|
|
|
17361
17566
|
var Template10 = function Template10(props) {
|
|
17362
17567
|
if (!props.loading) return React__default.createElement(React__default.Fragment, null);
|
|
@@ -17477,8 +17682,8 @@ var Placeholder = function Placeholder(props) {
|
|
|
17477
17682
|
}
|
|
17478
17683
|
};
|
|
17479
17684
|
|
|
17480
|
-
var _templateObject$
|
|
17481
|
-
var Image = styled__default.img(_templateObject$
|
|
17685
|
+
var _templateObject$R, _templateObject2$E, _templateObject3$z, _templateObject4$u, _templateObject5$t;
|
|
17686
|
+
var Image = styled__default.img(_templateObject$R || (_templateObject$R = _taggedTemplateLiteralLoose(["\n max-width: 100%;\n max-height: 100%;\n"])));
|
|
17482
17687
|
var Container$n = styled__default.div(_templateObject2$E || (_templateObject2$E = _taggedTemplateLiteralLoose(["\n position: relative;\n display: inline-flex;\n\n &,\n ", " {\n width: ", ";\n\n height: ", ";\n }\n"])), Image, function (_ref) {
|
|
17483
17688
|
var width = _ref.width;
|
|
17484
17689
|
|
|
@@ -17506,15 +17711,15 @@ var Container$n = styled__default.div(_templateObject2$E || (_templateObject2$E
|
|
|
17506
17711
|
return 'auto';
|
|
17507
17712
|
}
|
|
17508
17713
|
});
|
|
17509
|
-
var Dimmer = styled__default.div(_templateObject3$
|
|
17714
|
+
var Dimmer = styled__default.div(_templateObject3$z || (_templateObject3$z = _taggedTemplateLiteralLoose(["\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background-color: ", ";\n opacity: 0;\n display: flex;\n justify-content: center;\n align-items: center;\n transition: opacity 0.5s;\n cursor: pointer;\n\n :hover {\n opacity: 1;\n }\n"])), function (_ref3) {
|
|
17510
17715
|
var theme = _ref3.theme;
|
|
17511
17716
|
return theme.getColor('greyishBlue', 50);
|
|
17512
17717
|
});
|
|
17513
|
-
var Button$5 = styled__default(Button$1)(_templateObject4$
|
|
17718
|
+
var Button$5 = styled__default(Button$1)(_templateObject4$u || (_templateObject4$u = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n"])), function (_ref4) {
|
|
17514
17719
|
var theme = _ref4.theme;
|
|
17515
17720
|
return theme.getColor('white', 50);
|
|
17516
17721
|
});
|
|
17517
|
-
var ModalContent = styled__default.div(_templateObject5$
|
|
17722
|
+
var ModalContent = styled__default.div(_templateObject5$t || (_templateObject5$t = _taggedTemplateLiteralLoose(["\n position: absolute;\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n\n img {\n max-height: 100%;\n max-width: 100%;\n }\n"])));
|
|
17518
17723
|
|
|
17519
17724
|
var _excluded$3 = ["src", "defaultClickOptions"];
|
|
17520
17725
|
|
|
@@ -17550,8 +17755,8 @@ var Zoom = function Zoom(props) {
|
|
|
17550
17755
|
}))));
|
|
17551
17756
|
};
|
|
17552
17757
|
|
|
17553
|
-
var _templateObject$
|
|
17554
|
-
var Container$o = styled__default.div(_templateObject$
|
|
17758
|
+
var _templateObject$S, _templateObject2$F, _templateObject3$A;
|
|
17759
|
+
var Container$o = styled__default.div(_templateObject$S || (_templateObject$S = _taggedTemplateLiteralLoose(["\n display: flex;\n gap: ", ";\n align-items: center;\n color: ", ";\n\n ", "\n"])), function (_ref) {
|
|
17555
17760
|
var theme = _ref.theme;
|
|
17556
17761
|
return theme.spacings.s4;
|
|
17557
17762
|
}, function (_ref2) {
|
|
@@ -17564,7 +17769,7 @@ var Container$o = styled__default.div(_templateObject$Q || (_templateObject$Q =
|
|
|
17564
17769
|
return styled.css(_templateObject2$F || (_templateObject2$F = _taggedTemplateLiteralLoose(["\n opacity: 0.3;\n pointer-events: none;\n "])));
|
|
17565
17770
|
}
|
|
17566
17771
|
|
|
17567
|
-
return styled.css(_templateObject3$
|
|
17772
|
+
return styled.css(_templateObject3$A || (_templateObject3$A = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n "])));
|
|
17568
17773
|
});
|
|
17569
17774
|
|
|
17570
17775
|
var Button$6 = function Button(props) {
|
|
@@ -17594,8 +17799,8 @@ var Button$6 = function Button(props) {
|
|
|
17594
17799
|
})), getContent(open, close));
|
|
17595
17800
|
};
|
|
17596
17801
|
|
|
17597
|
-
var _templateObject$
|
|
17598
|
-
var Container$p = styled__default.div(_templateObject$
|
|
17802
|
+
var _templateObject$T;
|
|
17803
|
+
var Container$p = styled__default.div(_templateObject$T || (_templateObject$T = _taggedTemplateLiteralLoose(["\n padding: ", ";\n\n display: flex;\n flex-direction: column;\n gap: ", ";\n\n > div:nth-child(1) {\n ", "\n color: ", ";\n }\n"])), function (_ref) {
|
|
17599
17804
|
var _ref$theme$spacings = _ref.theme.spacings,
|
|
17600
17805
|
s1 = _ref$theme$spacings.s1,
|
|
17601
17806
|
s3 = _ref$theme$spacings.s3;
|
|
@@ -17658,8 +17863,8 @@ var Header$b = function Header(props) {
|
|
|
17658
17863
|
}));
|
|
17659
17864
|
};
|
|
17660
17865
|
|
|
17661
|
-
var _templateObject$
|
|
17662
|
-
var EmptyMessage = styled__default.div(_templateObject$
|
|
17866
|
+
var _templateObject$U;
|
|
17867
|
+
var EmptyMessage = styled__default.div(_templateObject$U || (_templateObject$U = _taggedTemplateLiteralLoose(["\n padding: 0 20px;\n color: ", ";\n text-align: center;\n margin: auto;\n width: 100%;\n"])), function (_ref) {
|
|
17663
17868
|
var lightGrey = _ref.theme.colors.lightGrey;
|
|
17664
17869
|
return lightGrey;
|
|
17665
17870
|
});
|
|
@@ -17989,8 +18194,8 @@ var Filters = Object.assign(function (props) {
|
|
|
17989
18194
|
Menu: FiltersMenu
|
|
17990
18195
|
});
|
|
17991
18196
|
|
|
17992
|
-
var _templateObject$
|
|
17993
|
-
var Container$q = styled__default(AbsoluteContainer)(_templateObject$
|
|
18197
|
+
var _templateObject$V, _templateObject2$G, _templateObject3$B, _templateObject4$v;
|
|
18198
|
+
var Container$q = styled__default(AbsoluteContainer)(_templateObject$V || (_templateObject$V = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n\n > div {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n\n > div {\n padding: ", ";\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n }\n }\n"])), function (_ref) {
|
|
17994
18199
|
var theme = _ref.theme;
|
|
17995
18200
|
return theme.colors.white;
|
|
17996
18201
|
}, function (_ref2) {
|
|
@@ -18004,7 +18209,7 @@ var Header$c = styled__default.div(_templateObject2$G || (_templateObject2$G = _
|
|
|
18004
18209
|
var s3 = _ref4.theme.spacings.s3;
|
|
18005
18210
|
return "0 " + s3 + " " + s3 + " 0";
|
|
18006
18211
|
});
|
|
18007
|
-
var Title = styled__default.div(_templateObject3$
|
|
18212
|
+
var Title = styled__default.div(_templateObject3$B || (_templateObject3$B = _taggedTemplateLiteralLoose(["\n ", "\n color: ", ";\n"])), function (_ref5) {
|
|
18008
18213
|
var useTypography = _ref5.theme.useTypography;
|
|
18009
18214
|
return useTypography('p', {
|
|
18010
18215
|
fontWeight: 'bold'
|
|
@@ -18013,7 +18218,7 @@ var Title = styled__default.div(_templateObject3$C || (_templateObject3$C = _tag
|
|
|
18013
18218
|
var getColor = _ref6.theme.getColor;
|
|
18014
18219
|
return getColor('greyishBlue', 50);
|
|
18015
18220
|
});
|
|
18016
|
-
var Item = styled__default.div(_templateObject4$
|
|
18221
|
+
var Item = styled__default.div(_templateObject4$v || (_templateObject4$v = _taggedTemplateLiteralLoose(["\n padding: ", ";\n display: flex;\n align-items: center;\n\n :not(:last-child) {\n border-bottom: 1px solid\n ", ";\n }\n\n > div:nth-child(1) {\n flex: 1;\n\n > div:nth-child(1) {\n ", "\n color: ", ";\n }\n > div:nth-child(2) {\n ", "\n }\n }\n > div:nth-child(2) {\n display: flex;\n align-items: center;\n cursor: pointer;\n }\n"])), function (_ref7) {
|
|
18017
18222
|
var s1 = _ref7.theme.spacings.s1;
|
|
18018
18223
|
return s1 + " " + s1 + " " + s1 + " 0";
|
|
18019
18224
|
}, function (_ref8) {
|
|
@@ -18151,7 +18356,7 @@ var useContext$2 = function useContext() {
|
|
|
18151
18356
|
return React__default.useContext(Provider$2);
|
|
18152
18357
|
};
|
|
18153
18358
|
|
|
18154
|
-
var _templateObject$
|
|
18359
|
+
var _templateObject$W, _templateObject2$H, _templateObject3$C, _templateObject4$w, _templateObject5$u, _templateObject6$q, _templateObject7$o, _templateObject8$k, _templateObject9$i, _templateObject10$c, _templateObject11$7, _templateObject12$3, _templateObject13$3, _templateObject14$3, _templateObject15$2;
|
|
18155
18360
|
var aligns = {
|
|
18156
18361
|
self: {
|
|
18157
18362
|
horizontal: {
|
|
@@ -18180,17 +18385,17 @@ var aligns = {
|
|
|
18180
18385
|
}
|
|
18181
18386
|
}
|
|
18182
18387
|
};
|
|
18183
|
-
var Col = styled__default.div(_templateObject$
|
|
18388
|
+
var Col = styled__default.div(_templateObject$W || (_templateObject$W = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-wrap: wrap;\n position: relative;\n\n ", "\n\n padding: ", ";\n\n ", "\n\n ", "\n\n ", "\n\n ", ";\n\n ", ";\n\n ", "\n\n ", "\n"])), function (_ref) {
|
|
18184
18389
|
var width = _ref.width;
|
|
18185
18390
|
|
|
18186
18391
|
if (width === undefined) {
|
|
18187
18392
|
return styled.css(_templateObject2$H || (_templateObject2$H = _taggedTemplateLiteralLoose(["\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n width: 100%;\n "])));
|
|
18188
18393
|
} else if (width === 'auto') {
|
|
18189
|
-
return styled.css(_templateObject3$
|
|
18394
|
+
return styled.css(_templateObject3$C || (_templateObject3$C = _taggedTemplateLiteralLoose(["\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n "])));
|
|
18190
18395
|
}
|
|
18191
18396
|
|
|
18192
18397
|
var w = parseFloat(width) * 100 / 12;
|
|
18193
|
-
return styled.css(_templateObject4$
|
|
18398
|
+
return styled.css(_templateObject4$w || (_templateObject4$w = _taggedTemplateLiteralLoose(["\n flex: 0 0 ", "%;\n max-width: ", "%;\n width: 100%;\n "])), w, w);
|
|
18194
18399
|
}, function (_ref2) {
|
|
18195
18400
|
var spacing = _ref2.spacing;
|
|
18196
18401
|
var padding = getSpacings(spacing === undefined ? 's1' : spacing);
|
|
@@ -18198,7 +18403,7 @@ var Col = styled__default.div(_templateObject$U || (_templateObject$U = _taggedT
|
|
|
18198
18403
|
}, function (_ref3) {
|
|
18199
18404
|
var spacingAround = _ref3.spacingAround;
|
|
18200
18405
|
if (spacingAround) return;
|
|
18201
|
-
return styled.css(_templateObject5$
|
|
18406
|
+
return styled.css(_templateObject5$u || (_templateObject5$u = _taggedTemplateLiteralLoose(["\n :first-child {\n padding-left: 0;\n }\n :last-child {\n padding-right: 0;\n }\n "])));
|
|
18202
18407
|
}, function (_ref4) {
|
|
18203
18408
|
var align = _ref4.align;
|
|
18204
18409
|
if (align === undefined) return;
|
|
@@ -18208,7 +18413,7 @@ var Col = styled__default.div(_templateObject$U || (_templateObject$U = _taggedT
|
|
|
18208
18413
|
if (align.self.horizontal !== undefined) {
|
|
18209
18414
|
var v = align.self.horizontal;
|
|
18210
18415
|
var a = aligns.self.horizontal;
|
|
18211
|
-
styles.push(styled.css(_templateObject6$
|
|
18416
|
+
styles.push(styled.css(_templateObject6$q || (_templateObject6$q = _taggedTemplateLiteralLoose(["\n justify-self: ", ";\n "])), a[v]));
|
|
18212
18417
|
}
|
|
18213
18418
|
|
|
18214
18419
|
if (align.self.vertical !== undefined) {
|
|
@@ -18242,7 +18447,7 @@ var Col = styled__default.div(_templateObject$U || (_templateObject$U = _taggedT
|
|
|
18242
18447
|
var bordered = _ref5.bordered,
|
|
18243
18448
|
lightestGrey = _ref5.theme.colors.lightestGrey;
|
|
18244
18449
|
if (!bordered) return;
|
|
18245
|
-
return styled.css(_templateObject11$
|
|
18450
|
+
return styled.css(_templateObject11$7 || (_templateObject11$7 = _taggedTemplateLiteralLoose(["\n :not(:last-child) {\n border-right: 1px solid ", ";\n }\n "])), lightestGrey);
|
|
18246
18451
|
}, function (_ref6) {
|
|
18247
18452
|
var fontColor = _ref6.fontColor,
|
|
18248
18453
|
theme = _ref6.theme;
|
|
@@ -18285,8 +18490,8 @@ var useContext$3 = function useContext() {
|
|
|
18285
18490
|
return React__default.useContext(Provider$3);
|
|
18286
18491
|
};
|
|
18287
18492
|
|
|
18288
|
-
var _templateObject$
|
|
18289
|
-
var Grid = styled__default.div(_templateObject$
|
|
18493
|
+
var _templateObject$X, _templateObject2$I, _templateObject3$D;
|
|
18494
|
+
var Grid = styled__default.div(_templateObject$X || (_templateObject$X = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n\n ", "\n\n ", "\n"])), function (_ref) {
|
|
18290
18495
|
var spacing = _ref.spacing;
|
|
18291
18496
|
if (spacing === undefined) return;
|
|
18292
18497
|
var padding = getSpacings(spacing);
|
|
@@ -18295,7 +18500,7 @@ var Grid = styled__default.div(_templateObject$V || (_templateObject$V = _tagged
|
|
|
18295
18500
|
var borderless = _ref2.borderless,
|
|
18296
18501
|
lightestGrey = _ref2.theme.colors.lightestGrey;
|
|
18297
18502
|
if (borderless) return;
|
|
18298
|
-
return styled.css(_templateObject3$
|
|
18503
|
+
return styled.css(_templateObject3$D || (_templateObject3$D = _taggedTemplateLiteralLoose(["\n border: 1px solid ", ";\n "])), lightestGrey);
|
|
18299
18504
|
});
|
|
18300
18505
|
|
|
18301
18506
|
var Grid$1 = function Grid$1(props) {
|
|
@@ -18310,7 +18515,7 @@ var Grid$1 = function Grid$1(props) {
|
|
|
18310
18515
|
}, React__default.createElement(Grid, Object.assign({}, gridProps)));
|
|
18311
18516
|
};
|
|
18312
18517
|
|
|
18313
|
-
var _templateObject$
|
|
18518
|
+
var _templateObject$Y, _templateObject2$J, _templateObject3$E, _templateObject4$x, _templateObject5$v, _templateObject6$r, _templateObject7$p, _templateObject8$l, _templateObject9$j, _templateObject10$d;
|
|
18314
18519
|
var horizontalAligns = {
|
|
18315
18520
|
around: 'space-around',
|
|
18316
18521
|
between: 'space-between',
|
|
@@ -18323,7 +18528,7 @@ var verticalAligns = {
|
|
|
18323
18528
|
top: 'start',
|
|
18324
18529
|
bottom: 'end'
|
|
18325
18530
|
};
|
|
18326
|
-
var Row = styled__default.div(_templateObject$
|
|
18531
|
+
var Row = styled__default.div(_templateObject$Y || (_templateObject$Y = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n\n ", "\n\n ", "\n\n ", "\n\n ", "\n\n ", "\n\n color: ", ";\n\n ", "\n\n ", "\n"])), function (_ref) {
|
|
18327
18532
|
var spacing = _ref.spacing;
|
|
18328
18533
|
if (spacing === undefined) return;
|
|
18329
18534
|
var padding = getSpacings(spacing);
|
|
@@ -18331,15 +18536,15 @@ var Row = styled__default.div(_templateObject$W || (_templateObject$W = _taggedT
|
|
|
18331
18536
|
}, function (_ref2) {
|
|
18332
18537
|
var spacingAround = _ref2.spacingAround;
|
|
18333
18538
|
if (spacingAround) return;
|
|
18334
|
-
return styled.css(_templateObject3$
|
|
18539
|
+
return styled.css(_templateObject3$E || (_templateObject3$E = _taggedTemplateLiteralLoose(["\n :first-child {\n padding-top: 0;\n }\n :last-child {\n padding-bottom: 0;\n }\n "])));
|
|
18335
18540
|
}, function (_ref3) {
|
|
18336
18541
|
var horizontalAlign = _ref3.horizontalAlign;
|
|
18337
18542
|
if (horizontalAlign === undefined) return;
|
|
18338
|
-
return styled.css(_templateObject4$
|
|
18543
|
+
return styled.css(_templateObject4$x || (_templateObject4$x = _taggedTemplateLiteralLoose(["\n justify-content: ", ";\n "])), horizontalAligns[horizontalAlign]);
|
|
18339
18544
|
}, function (_ref4) {
|
|
18340
18545
|
var verticalAlign = _ref4.verticalAlign;
|
|
18341
18546
|
if (verticalAlign === undefined) return;
|
|
18342
|
-
return styled.css(_templateObject5$
|
|
18547
|
+
return styled.css(_templateObject5$v || (_templateObject5$v = _taggedTemplateLiteralLoose(["\n align-items: ", ";\n "])), verticalAligns[verticalAlign]);
|
|
18343
18548
|
}, function (_ref5) {
|
|
18344
18549
|
var striped = _ref5.striped,
|
|
18345
18550
|
backgroundColor = _ref5.backgroundColor,
|
|
@@ -18347,7 +18552,7 @@ var Row = styled__default.div(_templateObject$W || (_templateObject$W = _taggedT
|
|
|
18347
18552
|
|
|
18348
18553
|
if (backgroundColor !== undefined) {
|
|
18349
18554
|
var c = Array.isArray(backgroundColor) ? theme.getColor.apply(theme, backgroundColor) : theme.colors[backgroundColor];
|
|
18350
|
-
return styled.css(_templateObject6$
|
|
18555
|
+
return styled.css(_templateObject6$r || (_templateObject6$r = _taggedTemplateLiteralLoose(["\n background-color: ", ";\n "])), c);
|
|
18351
18556
|
}
|
|
18352
18557
|
|
|
18353
18558
|
if (striped === undefined) {
|
|
@@ -18406,78 +18611,6 @@ var Grid$2 = Object.assign(Grid$1, {
|
|
|
18406
18611
|
Col: Col$1
|
|
18407
18612
|
});
|
|
18408
18613
|
|
|
18409
|
-
var theme = {
|
|
18410
|
-
sizes: sizes,
|
|
18411
|
-
fontSizes: fontSizes
|
|
18412
|
-
};
|
|
18413
|
-
|
|
18414
|
-
var theme$1 = {
|
|
18415
|
-
button: theme
|
|
18416
|
-
};
|
|
18417
|
-
|
|
18418
|
-
var _templateObject$X;
|
|
18419
|
-
var FontStyles = styled.createGlobalStyle(_templateObject$X || (_templateObject$X = _taggedTemplateLiteralLoose(["\n"])));
|
|
18420
|
-
|
|
18421
|
-
var Globals = function Globals() {
|
|
18422
|
-
return React__default.createElement(React__default.Fragment, null, React__default.createElement(FontStyles, null));
|
|
18423
|
-
};
|
|
18424
|
-
|
|
18425
|
-
var _templateObject$Y;
|
|
18426
|
-
|
|
18427
|
-
var getColor$1 = function getColor(color, opacity) {
|
|
18428
|
-
if (opacity === void 0) {
|
|
18429
|
-
opacity = 100;
|
|
18430
|
-
}
|
|
18431
|
-
|
|
18432
|
-
return "" + colors[color] + opacities[opacity];
|
|
18433
|
-
};
|
|
18434
|
-
|
|
18435
|
-
var useTypography = function useTypography(typography, options) {
|
|
18436
|
-
if (options === void 0) {
|
|
18437
|
-
options = {};
|
|
18438
|
-
}
|
|
18439
|
-
|
|
18440
|
-
var _typographies$typogra = typographies[typography],
|
|
18441
|
-
fontFamily = _typographies$typogra.fontFamily,
|
|
18442
|
-
fontWeight = _typographies$typogra.fontWeight,
|
|
18443
|
-
fontSize = _typographies$typogra.fontSize;
|
|
18444
|
-
return styled.css(_templateObject$Y || (_templateObject$Y = _taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-weight: ", ";\n font-size: ", ";\n "])), fontFamily, options.fontWeight || fontWeight, fontSize);
|
|
18445
|
-
};
|
|
18446
|
-
|
|
18447
|
-
var isDarkColor = function isDarkColor(color, ifDark, ifLight) {
|
|
18448
|
-
if (ifDark === void 0) {
|
|
18449
|
-
ifDark = 'white';
|
|
18450
|
-
}
|
|
18451
|
-
|
|
18452
|
-
if (ifLight === void 0) {
|
|
18453
|
-
ifLight = 'black';
|
|
18454
|
-
}
|
|
18455
|
-
|
|
18456
|
-
var hex = theme$2.colors[color].replace('#', '');
|
|
18457
|
-
var red = parseInt(hex.substring(0, 2), 16);
|
|
18458
|
-
var green = parseInt(hex.substring(2, 4), 16);
|
|
18459
|
-
var blue = parseInt(hex.substring(4, 6), 16);
|
|
18460
|
-
var luminosity = (red * 299 + green * 587 + blue * 114) / 1000;
|
|
18461
|
-
return luminosity <= 128 ? ifDark : ifLight;
|
|
18462
|
-
};
|
|
18463
|
-
|
|
18464
|
-
var theme$2 = {
|
|
18465
|
-
colors: colors,
|
|
18466
|
-
fonts: fonts,
|
|
18467
|
-
spacings: spacings,
|
|
18468
|
-
typographies: typographies,
|
|
18469
|
-
getColor: getColor$1,
|
|
18470
|
-
useTypography: useTypography,
|
|
18471
|
-
isDarkColor: isDarkColor,
|
|
18472
|
-
components: theme$1
|
|
18473
|
-
};
|
|
18474
|
-
|
|
18475
|
-
var ThemeProvider = function ThemeProvider(props) {
|
|
18476
|
-
return React__default.createElement(styled.ThemeProvider, {
|
|
18477
|
-
theme: theme$2
|
|
18478
|
-
}, React__default.createElement(Globals, null), props.children);
|
|
18479
|
-
};
|
|
18480
|
-
|
|
18481
18614
|
Object.keys(semanticUiReact).forEach(function (k) {
|
|
18482
18615
|
if (k !== 'default') Object.defineProperty(exports, k, {
|
|
18483
18616
|
enumerable: true,
|