tek-wallet 0.0.262 → 0.0.264
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.
|
@@ -108,18 +108,21 @@ var AmountGroupAndChart = function (props) {
|
|
|
108
108
|
transition: "all 500ms ease-in-out",
|
|
109
109
|
transform: !expandAreaChart ? "translateY(-100%)" : "none",
|
|
110
110
|
my: theme.mixins.customMargin.m3,
|
|
111
|
-
} }) }) }), (0, jsx_runtime_1.jsx)(
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
111
|
+
} }) }) }), (0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { style: {
|
|
112
|
+
position: "absolute",
|
|
113
|
+
bottom: 0,
|
|
114
|
+
}, initial: "hidden", animate: expandAreaChart ? "visible" : "hidden", variants: variants, transition: {
|
|
115
|
+
opacity: {
|
|
116
|
+
duration: expandAreaChart ? 0.5 : 0.25,
|
|
117
|
+
ease: "linear",
|
|
118
|
+
delay: expandAreaChart ? 0.5 : 0,
|
|
119
|
+
},
|
|
120
|
+
left: {
|
|
121
|
+
duration: expandAreaChart ? 0.5 : 0.25,
|
|
122
|
+
ease: "linear",
|
|
123
|
+
delay: expandAreaChart ? 0.3 : 0,
|
|
124
|
+
},
|
|
125
|
+
}, children: (0, jsx_runtime_1.jsx)(TimeFilter_1.default, { hideAll: true, initialValue: defaultTimeRange, onChange: handleChangeTimeRange }) })] }), (0, jsx_runtime_1.jsx)(Icon_1.default, { sx: {
|
|
123
126
|
alignSelf: "center",
|
|
124
127
|
transition: "all 0.5s ease-in-out",
|
|
125
128
|
cursor: "pointer",
|
|
@@ -54,6 +54,10 @@ var Formatter = function (_a) {
|
|
|
54
54
|
backgroundColor: "background.black64",
|
|
55
55
|
borderRadius: theme.mixins.theBorderRadius.r12,
|
|
56
56
|
padding: "".concat(theme.mixins.customPadding.p8, " ").concat(theme.mixins.customPadding.p12),
|
|
57
|
+
color: "text.white",
|
|
58
|
+
fontSize: "1.2em",
|
|
59
|
+
fontWeight: theme.typography.fontWeight400,
|
|
60
|
+
lineHeight: theme.typography.leading100,
|
|
57
61
|
},
|
|
58
62
|
}, trigger: (0, jsx_runtime_1.jsx)(material_1.Box, { sx: __assign({ whiteSpace: "nowrap" }, sx), children: numberDisplay === 0 && !allowShowZero ? ("--") : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [lessThan && ((0, jsx_runtime_1.jsx)(material_1.Box, { component: "span", sx: {
|
|
59
63
|
position: "relative",
|