@widergy/utilitygo-smart-bill-web 1.10.2 → 1.13.1
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/CHANGELOG.md +28 -0
- package/dist/components/Amount/styles.module.scss +2 -0
- package/dist/components/BillCalculation/components/Glossary/index.js +133 -0
- package/dist/components/BillCalculation/components/Glossary/styles.module.scss +53 -0
- package/dist/components/BillCalculation/index.js +21 -3
- package/dist/components/BillCalculation/styles.module.scss +2 -1
- package/dist/components/BillCalculation/utils.js +16 -2
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Indicator/index.js +8 -11
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Indicator/styles.module.scss +1 -4
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Indicator/utils.js +4 -49
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Legend/index.js +50 -0
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Legend/styles.module.scss +34 -0
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Stages/index.js +65 -0
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Stages/styles.module.scss +88 -0
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/constants.js +6 -37
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/index.js +20 -5
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/styles.module.scss +4 -1
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/utils.js +68 -31
- package/dist/components/RatesDefinition/components/CategoryByConsumption/constants.js +42 -0
- package/dist/components/RatesDefinition/components/CategoryByConsumption/index.js +3 -12
- package/dist/components/RatesDefinition/components/CategoryByConsumption/utils.js +16 -0
- package/dist/shared/constants/aliases.js +9 -4
- package/dist/shared/types/componentsTypes.js +1 -1
- package/dist/shared/types/rateStagesTypes.js +1 -1
- package/dist/utils/hooks.js +5 -76
- package/package.json +2 -1
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/LimitsLine/index.js +0 -23
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/LimitsLine/styles.module.scss +0 -15
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/SubStage/index.js +0 -63
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/SubStage/styles.module.scss +0 -5
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/SubStage/utils.js +0 -14
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/index.js +0 -68
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/styles.module.scss +0 -32
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/index.js +0 -59
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/styles.module.scss +0 -3
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/LegendItem/index.js +0 -80
- package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/LegendItem/styles.module.scss +0 -57
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
@import '../../../../../../../../../../../../scss/variables/_colorsExport.scss';
|
|
2
|
-
|
|
3
|
-
$lines-color: $black;
|
|
4
|
-
|
|
5
|
-
.lateralLines {
|
|
6
|
-
border-left: 1px solid $lines-color;
|
|
7
|
-
border-right: 1px solid $lines-color;
|
|
8
|
-
min-height: 8px;
|
|
9
|
-
width: 100%;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.middleLine {
|
|
13
|
-
border-bottom: 1px solid $lines-color;
|
|
14
|
-
height: 50%;
|
|
15
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
var _react = _interopRequireDefault(require("react"));
|
|
9
|
-
|
|
10
|
-
var _propTypes = require("prop-types");
|
|
11
|
-
|
|
12
|
-
var _smartBillTypes = require("../../../../../../../../../../../../shared/types/smartBillTypes");
|
|
13
|
-
|
|
14
|
-
var _rateStagesTypes = require("../../../../../../../../../../../../shared/types/rateStagesTypes");
|
|
15
|
-
|
|
16
|
-
var _WithContextApi = _interopRequireDefault(require("../../../../../../../../../../../WithContextApi"));
|
|
17
|
-
|
|
18
|
-
var _constants = require("../../../../../../constants");
|
|
19
|
-
|
|
20
|
-
var _aliases = require("../../../../../../../../../../../../shared/constants/aliases");
|
|
21
|
-
|
|
22
|
-
var _utils = require("./utils");
|
|
23
|
-
|
|
24
|
-
var _stylesModule = _interopRequireDefault(require("./styles.module.scss"));
|
|
25
|
-
|
|
26
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
27
|
-
|
|
28
|
-
var SubStage = function SubStage(_ref) {
|
|
29
|
-
var contextApiInfo = _ref.contextApiInfo,
|
|
30
|
-
stage = _ref.stage,
|
|
31
|
-
subStage = _ref.subStage,
|
|
32
|
-
isLast = _ref.isLast,
|
|
33
|
-
isDesktop = _ref.isDesktop,
|
|
34
|
-
index = _ref.index,
|
|
35
|
-
totalSubStages = _ref.totalSubStages;
|
|
36
|
-
var Label = contextApiInfo.Label;
|
|
37
|
-
var getStageColor = contextApiInfo.config.getStageColor;
|
|
38
|
-
var width = isDesktop ? "calc(".concat((0, _utils.getSubStageWidth)(stage, subStage), "%)") : "calc(100% / ".concat(stage.sub_rate_stages.length || 1, ")");
|
|
39
|
-
return /*#__PURE__*/_react.default.createElement("div", {
|
|
40
|
-
style: {
|
|
41
|
-
marginRight: isLast ? _constants.LAST_SUB_STAGE_MARGIN : isDesktop ? _constants.SUB_STAGE_MARGIN_DESKTOP : _constants.SUB_STAGE_MARGIN_MOBILE,
|
|
42
|
-
backgroundColor: subStage.color || getStageColor && getStageColor(index, totalSubStages),
|
|
43
|
-
width: width
|
|
44
|
-
},
|
|
45
|
-
className: _stylesModule.default.container
|
|
46
|
-
}, /*#__PURE__*/_react.default.createElement(Label, {
|
|
47
|
-
alias: _aliases.SUBSTAGE
|
|
48
|
-
}, subStage.name));
|
|
49
|
-
};
|
|
50
|
-
|
|
51
|
-
SubStage.propTypes = {
|
|
52
|
-
contextApiInfo: _smartBillTypes.contextApiInfoTypes,
|
|
53
|
-
stage: _rateStagesTypes.stageType,
|
|
54
|
-
totalSubStages: _propTypes.number,
|
|
55
|
-
index: _propTypes.number,
|
|
56
|
-
subStage: _rateStagesTypes.subStageType,
|
|
57
|
-
isLast: _propTypes.bool,
|
|
58
|
-
isDesktop: _propTypes.bool
|
|
59
|
-
};
|
|
60
|
-
|
|
61
|
-
var _default = (0, _WithContextApi.default)()(SubStage);
|
|
62
|
-
|
|
63
|
-
exports.default = _default;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.getSubStageWidth = void 0;
|
|
7
|
-
|
|
8
|
-
var _utils = require("../../../../../../utils");
|
|
9
|
-
|
|
10
|
-
var getSubStageWidth = function getSubStageWidth(stage, subStage) {
|
|
11
|
-
return (0, _utils.getSubStageRangeWidth)(subStage) / (0, _utils.getStageRangeWidth)(stage) * 100;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
exports.getSubStageWidth = getSubStageWidth;
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
var _react = _interopRequireDefault(require("react"));
|
|
9
|
-
|
|
10
|
-
var _propTypes = require("prop-types");
|
|
11
|
-
|
|
12
|
-
var _rateStagesTypes = require("../../../../../../../../../../shared/types/rateStagesTypes");
|
|
13
|
-
|
|
14
|
-
var _constants = require("../../../../constants");
|
|
15
|
-
|
|
16
|
-
var _LegendItem = _interopRequireDefault(require("../../../LegendItem"));
|
|
17
|
-
|
|
18
|
-
var _LimitsLine = _interopRequireDefault(require("./components/LimitsLine"));
|
|
19
|
-
|
|
20
|
-
var _SubStage = _interopRequireDefault(require("./components/SubStage"));
|
|
21
|
-
|
|
22
|
-
var _stylesModule = _interopRequireDefault(require("./styles.module.scss"));
|
|
23
|
-
|
|
24
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
25
|
-
|
|
26
|
-
var Stage = function Stage(_ref) {
|
|
27
|
-
var stage = _ref.stage,
|
|
28
|
-
isLast = _ref.isLast,
|
|
29
|
-
totalStages = _ref.totalStages,
|
|
30
|
-
totalSubStages = _ref.totalSubStages,
|
|
31
|
-
legendNumber = _ref.legendNumber,
|
|
32
|
-
isDesktop = _ref.isDesktop;
|
|
33
|
-
return /*#__PURE__*/_react.default.createElement("div", {
|
|
34
|
-
style: {
|
|
35
|
-
marginRight: isLast ? _constants.LAST_STAGE_MARGIN : isDesktop ? _constants.STAGE_MARGIN_DESKTOP : _constants.STAGE_MARGIN_MOBILE,
|
|
36
|
-
width: "calc(".concat(100 / totalStages, "%)")
|
|
37
|
-
},
|
|
38
|
-
className: _stylesModule.default.container
|
|
39
|
-
}, totalStages !== 1 && /*#__PURE__*/_react.default.createElement(_LegendItem.default, {
|
|
40
|
-
stage: isDesktop && stage,
|
|
41
|
-
stagesLength: totalStages,
|
|
42
|
-
legendNumber: legendNumber,
|
|
43
|
-
showNumber: !isDesktop
|
|
44
|
-
}), /*#__PURE__*/_react.default.createElement(_LimitsLine.default, null), /*#__PURE__*/_react.default.createElement("div", {
|
|
45
|
-
className: _stylesModule.default.bars
|
|
46
|
-
}, stage.sub_rate_stages.map(function (subStage, index) {
|
|
47
|
-
return /*#__PURE__*/_react.default.createElement(_SubStage.default, {
|
|
48
|
-
key: subStage.category,
|
|
49
|
-
index: subStage.category,
|
|
50
|
-
stage: stage,
|
|
51
|
-
totalSubStages: totalSubStages,
|
|
52
|
-
subStage: subStage,
|
|
53
|
-
isLast: index === stage.sub_rate_stages.length - 1,
|
|
54
|
-
isDesktop: isDesktop
|
|
55
|
-
});
|
|
56
|
-
})));
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
Stage.propTypes = {
|
|
60
|
-
stage: _rateStagesTypes.stageType,
|
|
61
|
-
legendNumber: _propTypes.number,
|
|
62
|
-
isLast: _propTypes.bool,
|
|
63
|
-
totalStages: _propTypes.number,
|
|
64
|
-
totalSubStages: _propTypes.number,
|
|
65
|
-
isDesktop: _propTypes.bool
|
|
66
|
-
};
|
|
67
|
-
var _default = Stage;
|
|
68
|
-
exports.default = _default;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
@import '../../../../../../../../../../scss/variables/_mediaQueries';
|
|
2
|
-
@import '../../../../../../../../../../scss/variables/_colors';
|
|
3
|
-
|
|
4
|
-
$icon-size: 21px;
|
|
5
|
-
|
|
6
|
-
.container {
|
|
7
|
-
align-items: center;
|
|
8
|
-
display: flex;
|
|
9
|
-
flex-flow: column;
|
|
10
|
-
width: 100%;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.header {
|
|
14
|
-
display: flex;
|
|
15
|
-
white-space: nowrap;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.bars {
|
|
19
|
-
display: flex;
|
|
20
|
-
margin: 24px 0;
|
|
21
|
-
min-height: 33px;
|
|
22
|
-
width: 100%;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.icon {
|
|
26
|
-
height: $icon-size;
|
|
27
|
-
width: $icon-size;
|
|
28
|
-
|
|
29
|
-
> g {
|
|
30
|
-
fill: $black;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
var _react = _interopRequireDefault(require("react"));
|
|
9
|
-
|
|
10
|
-
var _propTypes = require("prop-types");
|
|
11
|
-
|
|
12
|
-
var _rateStagesTypes = require("../../../../../../../../shared/types/rateStagesTypes");
|
|
13
|
-
|
|
14
|
-
var _constants = require("../../constants");
|
|
15
|
-
|
|
16
|
-
var _Stage = _interopRequireDefault(require("./components/Stage"));
|
|
17
|
-
|
|
18
|
-
var _stylesModule = _interopRequireDefault(require("./styles.module.scss"));
|
|
19
|
-
|
|
20
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
21
|
-
|
|
22
|
-
var Bars = function Bars(_ref) {
|
|
23
|
-
var rateStages = _ref.rateStages,
|
|
24
|
-
isDesktop = _ref.isDesktop;
|
|
25
|
-
var barsMargin = isDesktop ? _constants.BARS_MARGIN_DESKTOP : _constants.BARS_MARGIN_MOBILE;
|
|
26
|
-
|
|
27
|
-
var accumSubStages = function accumSubStages(count, currStage) {
|
|
28
|
-
var _currStage$sub_rate_s;
|
|
29
|
-
|
|
30
|
-
return count + ((_currStage$sub_rate_s = currStage.sub_rate_stages) === null || _currStage$sub_rate_s === void 0 ? void 0 : _currStage$sub_rate_s.length) || 1;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
var totalSubStages = rateStages.reduce(accumSubStages, 0);
|
|
34
|
-
return /*#__PURE__*/_react.default.createElement("div", {
|
|
35
|
-
style: {
|
|
36
|
-
margin: "0 ".concat(barsMargin),
|
|
37
|
-
width: "calc(100% - 2 * ".concat(barsMargin, ")")
|
|
38
|
-
},
|
|
39
|
-
className: _stylesModule.default.container
|
|
40
|
-
}, rateStages.map(function (stage, index) {
|
|
41
|
-
return /*#__PURE__*/_react.default.createElement(_Stage.default, {
|
|
42
|
-
key: stage.group,
|
|
43
|
-
stage: stage,
|
|
44
|
-
isFirst: index === 0,
|
|
45
|
-
legendNumber: index + 1,
|
|
46
|
-
isLast: index === rateStages.length - 1,
|
|
47
|
-
totalStages: rateStages.length,
|
|
48
|
-
totalSubStages: totalSubStages,
|
|
49
|
-
isDesktop: isDesktop
|
|
50
|
-
});
|
|
51
|
-
}));
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
Bars.propTypes = {
|
|
55
|
-
rateStages: _rateStagesTypes.rateStagesTypes,
|
|
56
|
-
isDesktop: _propTypes.bool
|
|
57
|
-
};
|
|
58
|
-
var _default = Bars;
|
|
59
|
-
exports.default = _default;
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
var _react = _interopRequireDefault(require("react"));
|
|
9
|
-
|
|
10
|
-
var _propTypes = require("prop-types");
|
|
11
|
-
|
|
12
|
-
var _WithContextApi = _interopRequireDefault(require("../../../../../../../WithContextApi"));
|
|
13
|
-
|
|
14
|
-
var _smartBillTypes = require("../../../../../../../../shared/types/smartBillTypes");
|
|
15
|
-
|
|
16
|
-
var _Magnitude = _interopRequireDefault(require("../../../../../../../Magnitude"));
|
|
17
|
-
|
|
18
|
-
var _aliases = require("../../../../../../../../shared/constants/aliases");
|
|
19
|
-
|
|
20
|
-
var _rateStagesTypes = require("../../../../../../../../shared/types/rateStagesTypes");
|
|
21
|
-
|
|
22
|
-
var _stylesModule = _interopRequireDefault(require("./styles.module.scss"));
|
|
23
|
-
|
|
24
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
25
|
-
|
|
26
|
-
var LegendItem = function LegendItem(_ref) {
|
|
27
|
-
var contextApiInfo = _ref.contextApiInfo,
|
|
28
|
-
legendNumber = _ref.legendNumber,
|
|
29
|
-
stage = _ref.stage,
|
|
30
|
-
showNumber = _ref.showNumber,
|
|
31
|
-
stagesLength = _ref.stagesLength;
|
|
32
|
-
var Label = contextApiInfo.Label,
|
|
33
|
-
config = contextApiInfo.config,
|
|
34
|
-
assets = contextApiInfo.assets;
|
|
35
|
-
var texts = config.texts;
|
|
36
|
-
var _texts$ratesDefinitio = texts.ratesDefinition,
|
|
37
|
-
consumptionUpToDesktop = _texts$ratesDefinitio.consumptionUpToDesktop,
|
|
38
|
-
consumptionMoreThanDesktop = _texts$ratesDefinitio.consumptionMoreThanDesktop,
|
|
39
|
-
consumptionStartingFormDesktop = _texts$ratesDefinitio.consumptionStartingFormDesktop;
|
|
40
|
-
|
|
41
|
-
var format = function format(text) {
|
|
42
|
-
return text.toUpperCase();
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
return /*#__PURE__*/_react.default.createElement("div", {
|
|
46
|
-
className: stage ? _stylesModule.default.legendItemContainer : _stylesModule.default.numberItemContainer
|
|
47
|
-
}, showNumber && /*#__PURE__*/_react.default.createElement("div", {
|
|
48
|
-
className: _stylesModule.default.stageNumber
|
|
49
|
-
}, /*#__PURE__*/_react.default.createElement(Label, null, legendNumber)), stage && /*#__PURE__*/_react.default.createElement("div", {
|
|
50
|
-
className: showNumber ? _stylesModule.default.stageDataContainer : _stylesModule.default.noNumberStageDataContainer
|
|
51
|
-
}, /*#__PURE__*/_react.default.createElement(Label, {
|
|
52
|
-
alias: _aliases.STAGE_DETAIL,
|
|
53
|
-
className: _stylesModule.default.header
|
|
54
|
-
}, format(legendNumber === 1 ? consumptionUpToDesktop : legendNumber === stagesLength ? consumptionMoreThanDesktop : consumptionStartingFormDesktop)), /*#__PURE__*/_react.default.createElement(_Magnitude.default, {
|
|
55
|
-
numberAlias: _aliases.RATE_STAGE_MAGNITUDE,
|
|
56
|
-
unitAlias: _aliases.RATE_STAGE_MAGNITUDE,
|
|
57
|
-
value: legendNumber === 1 ? stage.range.at(-1) : stage.range.at(0),
|
|
58
|
-
unit: stage.unit,
|
|
59
|
-
Icon: function Icon() {
|
|
60
|
-
return /*#__PURE__*/_react.default.createElement(assets.EnergyIcon, {
|
|
61
|
-
className: _stylesModule.default.rateStagesEnergyIcon
|
|
62
|
-
});
|
|
63
|
-
},
|
|
64
|
-
classes: {
|
|
65
|
-
container: _stylesModule.default.magnitudeContainer
|
|
66
|
-
}
|
|
67
|
-
})));
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
LegendItem.propTypes = {
|
|
71
|
-
stage: _rateStagesTypes.stageType,
|
|
72
|
-
showNumber: true,
|
|
73
|
-
stagesLength: _propTypes.number,
|
|
74
|
-
contextApiInfo: _smartBillTypes.contextApiInfoTypes,
|
|
75
|
-
legendNumber: _propTypes.number
|
|
76
|
-
};
|
|
77
|
-
|
|
78
|
-
var _default = (0, _WithContextApi.default)()(LegendItem);
|
|
79
|
-
|
|
80
|
-
exports.default = _default;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
@import '../../../../../../../../scss/variables/_colors';
|
|
2
|
-
|
|
3
|
-
$bubble-number-size: 24px;
|
|
4
|
-
|
|
5
|
-
.legendItemContainer {
|
|
6
|
-
align-items: center;
|
|
7
|
-
display: flex;
|
|
8
|
-
gap: 8px;
|
|
9
|
-
justify-content: space-between;
|
|
10
|
-
width: 100%;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.numberItemContainer {
|
|
14
|
-
display: flex;
|
|
15
|
-
justify-content: center;
|
|
16
|
-
padding-bottom: 8px;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.stageDataContainer {
|
|
20
|
-
align-items: center;
|
|
21
|
-
display: flex;
|
|
22
|
-
gap: 16px;
|
|
23
|
-
justify-content: space-between;
|
|
24
|
-
width: 100%;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.noNumberStageDataContainer {
|
|
28
|
-
align-items: center;
|
|
29
|
-
display: flex;
|
|
30
|
-
flex-direction: column;
|
|
31
|
-
gap: 24px;
|
|
32
|
-
padding-bottom: 16px;
|
|
33
|
-
width: 100%;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.magnitudeContainer {
|
|
37
|
-
gap: 8px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.stageNumber {
|
|
41
|
-
align-items: center;
|
|
42
|
-
background-color: $black;
|
|
43
|
-
border-radius: 500px;
|
|
44
|
-
display: flex;
|
|
45
|
-
justify-content: center;
|
|
46
|
-
min-width: $bubble-number-size;
|
|
47
|
-
height: $bubble-number-size;
|
|
48
|
-
width: $bubble-number-size;
|
|
49
|
-
|
|
50
|
-
* {
|
|
51
|
-
color: $white;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.rateStagesEnergyIcon {
|
|
56
|
-
height: 18px;
|
|
57
|
-
}
|