evui 3.3.36 → 3.3.39
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/LICENSE +21 -21
- package/README.md +40 -40
- package/dist/evui.common.js +1907 -1832
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +1907 -1832
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/dist/img/{EVUI.7f3588fb.svg → EVUI.b82ee81a.svg} +292 -292
- package/dist/img/{icon_mysql.7ea26d5d.svg → icon_mysql.1085fdc9.svg} +78 -78
- package/dist/img/{icon_oracle.9009b108.svg → icon_oracle.0572d3ee.svg} +13 -13
- package/dist/img/{icon_postgresql.f8fffba9.svg → icon_postgresql.ee12bde8.svg} +58 -58
- package/package.json +61 -61
- package/src/common/emitter.js +20 -20
- package/src/common/utils.debounce.js +223 -223
- package/src/common/utils.js +134 -134
- package/src/common/utils.table.js +78 -78
- package/src/common/utils.throttle.js +83 -83
- package/src/common/utils.tree.js +18 -18
- package/src/components/button/Button.vue +198 -198
- package/src/components/button/index.js +7 -7
- package/src/components/buttonGroup/ButtonGroup.vue +11 -11
- package/src/components/buttonGroup/index.js +7 -7
- package/src/components/calendar/Calendar.vue +661 -661
- package/src/components/calendar/index.js +7 -7
- package/src/components/calendar/uses.js +1272 -1272
- package/src/components/chart/Chart.vue +189 -192
- package/src/components/chart/chart.core.js +870 -870
- package/src/components/chart/element/element.bar.js +524 -524
- package/src/components/chart/element/element.bar.time.js +156 -156
- package/src/components/chart/element/element.heatmap.js +533 -533
- package/src/components/chart/element/element.line.js +339 -339
- package/src/components/chart/element/element.pie.js +197 -197
- package/src/components/chart/element/element.scatter.js +184 -184
- package/src/components/chart/element/element.tip.js +550 -542
- package/src/components/chart/helpers/helpers.canvas.js +265 -265
- package/src/components/chart/helpers/helpers.constant.js +206 -206
- package/src/components/chart/helpers/helpers.util.js +346 -338
- package/src/components/chart/index.js +9 -9
- package/src/components/chart/model/index.js +4 -4
- package/src/components/chart/model/model.series.js +93 -93
- package/src/components/chart/model/model.store.js +977 -967
- package/src/components/chart/plugins/plugins.interaction.js +769 -769
- package/src/components/chart/plugins/plugins.legend.gradient.js +602 -602
- package/src/components/chart/plugins/plugins.legend.js +1155 -1151
- package/src/components/chart/plugins/plugins.pie.js +254 -254
- package/src/components/chart/plugins/plugins.title.js +56 -56
- package/src/components/chart/plugins/plugins.tooltip.js +692 -692
- package/src/components/chart/scale/scale.js +848 -848
- package/src/components/chart/scale/scale.linear.js +38 -38
- package/src/components/chart/scale/scale.logarithmic.js +128 -128
- package/src/components/chart/scale/scale.step.js +336 -336
- package/src/components/chart/scale/scale.time.category.js +277 -277
- package/src/components/chart/scale/scale.time.js +48 -48
- package/src/components/chart/style/chart.scss +312 -312
- package/src/components/chart/uses.js +264 -252
- package/src/components/checkbox/Checkbox.vue +200 -200
- package/src/components/checkbox/index.js +7 -7
- package/src/components/checkboxGroup/CheckboxGroup.vue +44 -44
- package/src/components/checkboxGroup/index.js +7 -7
- package/src/components/contextMenu/ContextMenu.vue +80 -80
- package/src/components/contextMenu/MenuList.vue +149 -149
- package/src/components/contextMenu/index.js +7 -7
- package/src/components/contextMenu/uses.js +203 -203
- package/src/components/datePicker/DatePicker.vue +437 -437
- package/src/components/datePicker/index.js +7 -7
- package/src/components/datePicker/uses.js +419 -419
- package/src/components/grid/Grid.vue +827 -827
- package/src/components/grid/grid.filter.window.vue +493 -493
- package/src/components/grid/grid.pagination.vue +75 -75
- package/src/components/grid/grid.summary.vue +265 -265
- package/src/components/grid/grid.toolbar.vue +26 -26
- package/src/components/grid/index.js +11 -11
- package/src/components/grid/style/grid.scss +263 -263
- package/src/components/grid/uses.js +1002 -1007
- package/src/components/icon/Icon.vue +49 -49
- package/src/components/icon/index.js +8 -8
- package/src/components/inputNumber/InputNumber.vue +212 -212
- package/src/components/inputNumber/index.js +7 -7
- package/src/components/inputNumber/uses.js +217 -217
- package/src/components/loading/Loading.vue +125 -125
- package/src/components/loading/index.js +7 -7
- package/src/components/menu/Menu.vue +68 -68
- package/src/components/menu/MenuItem.vue +187 -187
- package/src/components/menu/index.js +7 -7
- package/src/components/message/Message.vue +223 -223
- package/src/components/message/index.js +31 -31
- package/src/components/messageBox/MessageBox.vue +358 -358
- package/src/components/messageBox/index.js +22 -22
- package/src/components/notification/Notification.vue +316 -316
- package/src/components/notification/index.js +49 -49
- package/src/components/pagination/Pagination.vue +271 -271
- package/src/components/pagination/index.js +7 -7
- package/src/components/pagination/pageButton.vue +30 -30
- package/src/components/progress/Progress.vue +139 -139
- package/src/components/progress/index.js +7 -7
- package/src/components/radio/Radio.vue +159 -159
- package/src/components/radio/index.js +7 -7
- package/src/components/radioGroup/RadioGroup.vue +41 -41
- package/src/components/radioGroup/index.js +7 -7
- package/src/components/scheduler/Scheduler.vue +149 -149
- package/src/components/scheduler/index.js +7 -7
- package/src/components/scheduler/uses.js +183 -183
- package/src/components/select/Select.vue +440 -440
- package/src/components/select/index.js +7 -7
- package/src/components/select/uses.js +270 -270
- package/src/components/slider/Slider.vue +505 -505
- package/src/components/slider/index.js +7 -7
- package/src/components/slider/uses.js +390 -390
- package/src/components/tabPanel/TabPanel.vue +74 -74
- package/src/components/tabPanel/index.js +7 -7
- package/src/components/tabs/Tabs.vue +517 -517
- package/src/components/tabs/index.js +7 -7
- package/src/components/textField/TextField.vue +375 -375
- package/src/components/textField/index.js +7 -7
- package/src/components/timePicker/TimePicker.vue +352 -352
- package/src/components/timePicker/index.js +7 -7
- package/src/components/toggle/Toggle.vue +115 -115
- package/src/components/toggle/index.js +7 -7
- package/src/components/tree/Tree.vue +313 -313
- package/src/components/tree/TreeNode.vue +293 -293
- package/src/components/tree/index.js +7 -7
- package/src/components/treeGrid/TreeGrid.vue +758 -758
- package/src/components/treeGrid/TreeGridNode.vue +275 -275
- package/src/components/treeGrid/index.js +9 -9
- package/src/components/treeGrid/style/treeGrid.scss +261 -261
- package/src/components/treeGrid/treeGrid.toolbar.vue +26 -26
- package/src/components/treeGrid/uses.js +867 -867
- package/src/components/window/Window.vue +329 -329
- package/src/components/window/index.js +7 -7
- package/src/components/window/uses.js +899 -899
- package/src/directives/clickoutside.js +90 -90
- package/src/main.js +116 -116
- package/src/style/components/input.scss +108 -108
- package/src/style/functions.scss +3 -3
- package/src/style/index.scss +6 -6
- package/src/style/lib/fonts/EVUI.svg +292 -292
- package/src/style/lib/icon.css +888 -888
- package/src/style/mixins.scss +94 -94
- package/src/style/themes.scss +67 -67
- package/src/style/variables.scss +22 -22
|
@@ -1,156 +1,156 @@
|
|
|
1
|
-
import Canvas from '../helpers/helpers.canvas';
|
|
2
|
-
import Bar from './element.bar';
|
|
3
|
-
import Util from '../helpers/helpers.util';
|
|
4
|
-
|
|
5
|
-
class TimeBar extends Bar {
|
|
6
|
-
/**
|
|
7
|
-
* Draw series data
|
|
8
|
-
* It shows partial bar item as time goes by.
|
|
9
|
-
* @param {object} param object for drawing series data
|
|
10
|
-
*
|
|
11
|
-
* @returns {undefined}
|
|
12
|
-
*/
|
|
13
|
-
draw(param) {
|
|
14
|
-
if (!this.show) {
|
|
15
|
-
return;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
const ctx = param.ctx;
|
|
19
|
-
const chartRect = param.chartRect;
|
|
20
|
-
const labelOffset = param.labelOffset;
|
|
21
|
-
const axesSteps = param.axesSteps;
|
|
22
|
-
const showIndex = param.showIndex;
|
|
23
|
-
const isHorizontal = param.isHorizontal;
|
|
24
|
-
const thickness = param.thickness;
|
|
25
|
-
const showSeriesCount = param.showSeriesCount;
|
|
26
|
-
|
|
27
|
-
let x;
|
|
28
|
-
let y;
|
|
29
|
-
|
|
30
|
-
const minmaxX = axesSteps.x[this.xAxisIndex];
|
|
31
|
-
const minmaxY = axesSteps.y[this.yAxisIndex];
|
|
32
|
-
|
|
33
|
-
const xArea = chartRect.chartWidth - (labelOffset.left + labelOffset.right);
|
|
34
|
-
const yArea = chartRect.chartHeight - (labelOffset.top + labelOffset.bottom);
|
|
35
|
-
const xsp = chartRect.x1 + labelOffset.left;
|
|
36
|
-
const ysp = chartRect.y2 - labelOffset.bottom;
|
|
37
|
-
const xep = chartRect.x2 - labelOffset.right;
|
|
38
|
-
|
|
39
|
-
const dArea = isHorizontal ? yArea : xArea;
|
|
40
|
-
const cArea = dArea / (this.data.length || 1);
|
|
41
|
-
const cPad = 2;
|
|
42
|
-
|
|
43
|
-
let bArea;
|
|
44
|
-
if (this.isExistGrp) {
|
|
45
|
-
bArea = (cArea - (cPad * 2));
|
|
46
|
-
} else {
|
|
47
|
-
bArea = (cArea - (cPad * 2)) / showSeriesCount;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
const size = Math.ceil(bArea * thickness);
|
|
51
|
-
|
|
52
|
-
let w = isHorizontal ? null : size;
|
|
53
|
-
let subW = isHorizontal ? null : size;
|
|
54
|
-
let h = isHorizontal ? size : null;
|
|
55
|
-
|
|
56
|
-
const bPad = isHorizontal ? (bArea - h) / 2 : (bArea - w) / 2;
|
|
57
|
-
const barSeriesX = this.isExistGrp ? 1 : showIndex + 1;
|
|
58
|
-
|
|
59
|
-
this.size.cat = cArea;
|
|
60
|
-
this.size.bar = bArea;
|
|
61
|
-
this.size.cPad = cPad;
|
|
62
|
-
this.size.bPad = bPad;
|
|
63
|
-
this.size.w = w;
|
|
64
|
-
this.size.ix = barSeriesX;
|
|
65
|
-
this.chartRect = chartRect;
|
|
66
|
-
this.labelOffset = labelOffset;
|
|
67
|
-
this.borderRadius = param.borderRadius;
|
|
68
|
-
|
|
69
|
-
this.data.forEach((item) => {
|
|
70
|
-
ctx.beginPath();
|
|
71
|
-
|
|
72
|
-
if (isHorizontal) {
|
|
73
|
-
x = xsp;
|
|
74
|
-
y = Canvas.calculateY(item.y, minmaxY.graphMin, minmaxY.graphMax, yArea, ysp);
|
|
75
|
-
} else {
|
|
76
|
-
x = Canvas.calculateSubX(item.x, minmaxX.graphMin, minmaxX.graphMax, xArea, xsp);
|
|
77
|
-
if (x < xsp) {
|
|
78
|
-
subW -= xsp - x;
|
|
79
|
-
x = (x + w < xsp) ? null : xsp;
|
|
80
|
-
} else if (x + w > xep) {
|
|
81
|
-
subW -= subW - (xep - x);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
if (x >= xep) {
|
|
85
|
-
x = null;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
if (x !== null) {
|
|
89
|
-
x += Math.ceil(bArea * barSeriesX) - Math.round(w + bPad);
|
|
90
|
-
}
|
|
91
|
-
y = ysp;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
if (isHorizontal) {
|
|
95
|
-
if (item.b) {
|
|
96
|
-
w = Canvas.calculateX(item.x - item.b, minmaxX.graphMin, minmaxX.graphMax, xArea);
|
|
97
|
-
x = Canvas.calculateX(item.b, minmaxX.graphMin, minmaxX.graphMax, xArea, xsp);
|
|
98
|
-
} else {
|
|
99
|
-
w = Canvas.calculateX(item.x, minmaxX.graphMin, minmaxX.graphMax, xArea);
|
|
100
|
-
}
|
|
101
|
-
} else if (item.b) { // vertical stack bar chart
|
|
102
|
-
h = Canvas.calculateY(item.y - item.b, minmaxY.graphMin, minmaxY.graphMax, yArea);
|
|
103
|
-
y = Canvas.calculateY(item.b, minmaxY.graphMin, minmaxY.graphMax, yArea, ysp);
|
|
104
|
-
} else { // vertical bar chart
|
|
105
|
-
h = Canvas.calculateY(item.y, minmaxY.graphMin, minmaxY.graphMax, yArea);
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
if (x !== null && y !== null) {
|
|
109
|
-
const barColor = item.dataColor || this.color;
|
|
110
|
-
const noneDownplayOpacity = barColor.includes('rgba') ? Util.getOpacity(barColor) : 1;
|
|
111
|
-
const opacity = this.state === 'downplay' ? 0.1 : noneDownplayOpacity;
|
|
112
|
-
|
|
113
|
-
if (typeof barColor !== 'string') {
|
|
114
|
-
w = w !== subW ? subW : w;
|
|
115
|
-
|
|
116
|
-
ctx.fillStyle = Canvas.createGradient(
|
|
117
|
-
ctx,
|
|
118
|
-
isHorizontal,
|
|
119
|
-
{ x, y, w, h },
|
|
120
|
-
barColor,
|
|
121
|
-
opacity === 0.1,
|
|
122
|
-
);
|
|
123
|
-
} else {
|
|
124
|
-
ctx.fillStyle = Util.colorStringToRgba(barColor, opacity);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
this.drawBar({
|
|
128
|
-
ctx,
|
|
129
|
-
positions: { x, y, w, h },
|
|
130
|
-
});
|
|
131
|
-
|
|
132
|
-
if (this.showValue.use) {
|
|
133
|
-
this.drawValueLabels({
|
|
134
|
-
context: ctx,
|
|
135
|
-
data: item,
|
|
136
|
-
positions: {
|
|
137
|
-
x,
|
|
138
|
-
y,
|
|
139
|
-
h,
|
|
140
|
-
w,
|
|
141
|
-
},
|
|
142
|
-
isHighlight: false,
|
|
143
|
-
});
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
subW = w;
|
|
147
|
-
|
|
148
|
-
item.xp = x; // eslint-disable-line
|
|
149
|
-
item.yp = y; // eslint-disable-line
|
|
150
|
-
item.w = w; // eslint-disable-line
|
|
151
|
-
item.h = isHorizontal ? -h : h; // eslint-disable-line
|
|
152
|
-
});
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
export default TimeBar;
|
|
1
|
+
import Canvas from '../helpers/helpers.canvas';
|
|
2
|
+
import Bar from './element.bar';
|
|
3
|
+
import Util from '../helpers/helpers.util';
|
|
4
|
+
|
|
5
|
+
class TimeBar extends Bar {
|
|
6
|
+
/**
|
|
7
|
+
* Draw series data
|
|
8
|
+
* It shows partial bar item as time goes by.
|
|
9
|
+
* @param {object} param object for drawing series data
|
|
10
|
+
*
|
|
11
|
+
* @returns {undefined}
|
|
12
|
+
*/
|
|
13
|
+
draw(param) {
|
|
14
|
+
if (!this.show) {
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const ctx = param.ctx;
|
|
19
|
+
const chartRect = param.chartRect;
|
|
20
|
+
const labelOffset = param.labelOffset;
|
|
21
|
+
const axesSteps = param.axesSteps;
|
|
22
|
+
const showIndex = param.showIndex;
|
|
23
|
+
const isHorizontal = param.isHorizontal;
|
|
24
|
+
const thickness = param.thickness;
|
|
25
|
+
const showSeriesCount = param.showSeriesCount;
|
|
26
|
+
|
|
27
|
+
let x;
|
|
28
|
+
let y;
|
|
29
|
+
|
|
30
|
+
const minmaxX = axesSteps.x[this.xAxisIndex];
|
|
31
|
+
const minmaxY = axesSteps.y[this.yAxisIndex];
|
|
32
|
+
|
|
33
|
+
const xArea = chartRect.chartWidth - (labelOffset.left + labelOffset.right);
|
|
34
|
+
const yArea = chartRect.chartHeight - (labelOffset.top + labelOffset.bottom);
|
|
35
|
+
const xsp = chartRect.x1 + labelOffset.left;
|
|
36
|
+
const ysp = chartRect.y2 - labelOffset.bottom;
|
|
37
|
+
const xep = chartRect.x2 - labelOffset.right;
|
|
38
|
+
|
|
39
|
+
const dArea = isHorizontal ? yArea : xArea;
|
|
40
|
+
const cArea = dArea / (this.data.length || 1);
|
|
41
|
+
const cPad = 2;
|
|
42
|
+
|
|
43
|
+
let bArea;
|
|
44
|
+
if (this.isExistGrp) {
|
|
45
|
+
bArea = (cArea - (cPad * 2));
|
|
46
|
+
} else {
|
|
47
|
+
bArea = (cArea - (cPad * 2)) / showSeriesCount;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const size = Math.ceil(bArea * thickness);
|
|
51
|
+
|
|
52
|
+
let w = isHorizontal ? null : size;
|
|
53
|
+
let subW = isHorizontal ? null : size;
|
|
54
|
+
let h = isHorizontal ? size : null;
|
|
55
|
+
|
|
56
|
+
const bPad = isHorizontal ? (bArea - h) / 2 : (bArea - w) / 2;
|
|
57
|
+
const barSeriesX = this.isExistGrp ? 1 : showIndex + 1;
|
|
58
|
+
|
|
59
|
+
this.size.cat = cArea;
|
|
60
|
+
this.size.bar = bArea;
|
|
61
|
+
this.size.cPad = cPad;
|
|
62
|
+
this.size.bPad = bPad;
|
|
63
|
+
this.size.w = w;
|
|
64
|
+
this.size.ix = barSeriesX;
|
|
65
|
+
this.chartRect = chartRect;
|
|
66
|
+
this.labelOffset = labelOffset;
|
|
67
|
+
this.borderRadius = param.borderRadius;
|
|
68
|
+
|
|
69
|
+
this.data.forEach((item) => {
|
|
70
|
+
ctx.beginPath();
|
|
71
|
+
|
|
72
|
+
if (isHorizontal) {
|
|
73
|
+
x = xsp;
|
|
74
|
+
y = Canvas.calculateY(item.y, minmaxY.graphMin, minmaxY.graphMax, yArea, ysp);
|
|
75
|
+
} else {
|
|
76
|
+
x = Canvas.calculateSubX(item.x, minmaxX.graphMin, minmaxX.graphMax, xArea, xsp);
|
|
77
|
+
if (x < xsp) {
|
|
78
|
+
subW -= xsp - x;
|
|
79
|
+
x = (x + w < xsp) ? null : xsp;
|
|
80
|
+
} else if (x + w > xep) {
|
|
81
|
+
subW -= subW - (xep - x);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if (x >= xep) {
|
|
85
|
+
x = null;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
if (x !== null) {
|
|
89
|
+
x += Math.ceil(bArea * barSeriesX) - Math.round(w + bPad);
|
|
90
|
+
}
|
|
91
|
+
y = ysp;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
if (isHorizontal) {
|
|
95
|
+
if (item.b) {
|
|
96
|
+
w = Canvas.calculateX(item.x - item.b, minmaxX.graphMin, minmaxX.graphMax, xArea);
|
|
97
|
+
x = Canvas.calculateX(item.b, minmaxX.graphMin, minmaxX.graphMax, xArea, xsp);
|
|
98
|
+
} else {
|
|
99
|
+
w = Canvas.calculateX(item.x, minmaxX.graphMin, minmaxX.graphMax, xArea);
|
|
100
|
+
}
|
|
101
|
+
} else if (item.b) { // vertical stack bar chart
|
|
102
|
+
h = Canvas.calculateY(item.y - item.b, minmaxY.graphMin, minmaxY.graphMax, yArea);
|
|
103
|
+
y = Canvas.calculateY(item.b, minmaxY.graphMin, minmaxY.graphMax, yArea, ysp);
|
|
104
|
+
} else { // vertical bar chart
|
|
105
|
+
h = Canvas.calculateY(item.y, minmaxY.graphMin, minmaxY.graphMax, yArea);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
if (x !== null && y !== null) {
|
|
109
|
+
const barColor = item.dataColor || this.color;
|
|
110
|
+
const noneDownplayOpacity = barColor.includes('rgba') ? Util.getOpacity(barColor) : 1;
|
|
111
|
+
const opacity = this.state === 'downplay' ? 0.1 : noneDownplayOpacity;
|
|
112
|
+
|
|
113
|
+
if (typeof barColor !== 'string') {
|
|
114
|
+
w = w !== subW ? subW : w;
|
|
115
|
+
|
|
116
|
+
ctx.fillStyle = Canvas.createGradient(
|
|
117
|
+
ctx,
|
|
118
|
+
isHorizontal,
|
|
119
|
+
{ x, y, w, h },
|
|
120
|
+
barColor,
|
|
121
|
+
opacity === 0.1,
|
|
122
|
+
);
|
|
123
|
+
} else {
|
|
124
|
+
ctx.fillStyle = Util.colorStringToRgba(barColor, opacity);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
this.drawBar({
|
|
128
|
+
ctx,
|
|
129
|
+
positions: { x, y, w, h },
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
if (this.showValue.use) {
|
|
133
|
+
this.drawValueLabels({
|
|
134
|
+
context: ctx,
|
|
135
|
+
data: item,
|
|
136
|
+
positions: {
|
|
137
|
+
x,
|
|
138
|
+
y,
|
|
139
|
+
h,
|
|
140
|
+
w,
|
|
141
|
+
},
|
|
142
|
+
isHighlight: false,
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
subW = w;
|
|
147
|
+
|
|
148
|
+
item.xp = x; // eslint-disable-line
|
|
149
|
+
item.yp = y; // eslint-disable-line
|
|
150
|
+
item.w = w; // eslint-disable-line
|
|
151
|
+
item.h = isHorizontal ? -h : h; // eslint-disable-line
|
|
152
|
+
});
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export default TimeBar;
|