@widergy/utilitygo-smart-bill-web 1.10.0 → 1.12.0

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.
Files changed (141) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/components/Advice/index.js +6 -10
  3. package/dist/components/Amount/index.js +21 -26
  4. package/dist/components/Amount/utils.js +5 -1
  5. package/dist/components/Banner/index.js +6 -10
  6. package/dist/components/BarChart/constants.js +3 -3
  7. package/dist/components/BarChart/index.js +25 -28
  8. package/dist/components/BarChart/utils.js +15 -15
  9. package/dist/components/BillCalculation/components/ConceptCard/index.js +48 -47
  10. package/dist/components/BillCalculation/constants.js +1 -1
  11. package/dist/components/BillCalculation/index.js +54 -44
  12. package/dist/components/BillCalculation/utils.js +14 -17
  13. package/dist/components/BillSummary/components/BilledConcepts/components/Concept/index.js +25 -26
  14. package/dist/components/BillSummary/components/BilledConcepts/components/PieChartContainer/constants.js +9 -3
  15. package/dist/components/BillSummary/components/BilledConcepts/components/PieChartContainer/index.js +31 -34
  16. package/dist/components/BillSummary/components/BilledConcepts/components/PieChartContainer/styles.module.scss +2 -2
  17. package/dist/components/BillSummary/components/BilledConcepts/constants.js +14 -12
  18. package/dist/components/BillSummary/components/BilledConcepts/index.js +49 -31
  19. package/dist/components/BillSummary/components/BilledConcepts/utils.js +76 -44
  20. package/dist/components/BillSummary/index.js +78 -76
  21. package/dist/components/ConsumptionComparison/components/ComparisonTable/components/DataLine/index.js +8 -8
  22. package/dist/components/ConsumptionComparison/components/ComparisonTable/components/Season/index.js +12 -17
  23. package/dist/components/ConsumptionComparison/components/ComparisonTable/components/Season/utils.js +1 -1
  24. package/dist/components/ConsumptionComparison/components/ComparisonTable/constants.js +135 -148
  25. package/dist/components/ConsumptionComparison/components/ComparisonTable/index.js +14 -16
  26. package/dist/components/ConsumptionComparison/components/ComparisonTable/utils.js +94 -89
  27. package/dist/components/ConsumptionComparison/components/ConsumptionAdvice/index.js +11 -21
  28. package/dist/components/ConsumptionComparison/components/ConsumptionAdvice/utils.js +1 -1
  29. package/dist/components/ConsumptionComparison/components/PercentageComparison/index.js +16 -21
  30. package/dist/components/ConsumptionComparison/components/PercentageComparison/utils.js +9 -13
  31. package/dist/components/ConsumptionComparison/index.js +56 -42
  32. package/dist/components/ConsumptionEnergyDetails/components/ConsumptionEnergyComparison/index.js +26 -30
  33. package/dist/components/ConsumptionEnergyDetails/components/ConsumptionInDaysLabel/index.js +13 -18
  34. package/dist/components/ConsumptionEnergyDetails/components/EnergyTotalConsumption/index.js +15 -17
  35. package/dist/components/ConsumptionEnergyDetails/components/PercentageComparison/index.js +17 -21
  36. package/dist/components/ConsumptionEnergyDetails/components/PercentageComparison/utils.js +1 -1
  37. package/dist/components/ConsumptionEnergyDetails/index.js +47 -51
  38. package/dist/components/ConsumptionIncluded/components/TimelineRow/components/Card/index.js +65 -66
  39. package/dist/components/ConsumptionIncluded/components/TimelineRow/components/Card/utils.js +13 -11
  40. package/dist/components/ConsumptionIncluded/components/TimelineRow/components/HeaderConsumption/index.js +19 -22
  41. package/dist/components/ConsumptionIncluded/components/TimelineRow/components/HeaderSettlement/index.js +10 -16
  42. package/dist/components/ConsumptionIncluded/components/TimelineRow/index.js +39 -43
  43. package/dist/components/ConsumptionIncluded/index.js +36 -34
  44. package/dist/components/ConsumptionIncluded/utils.js +33 -29
  45. package/dist/components/ConsumptionPeriod/components/ConsumptionSummary/components/ReadingRow/index.js +10 -14
  46. package/dist/components/ConsumptionPeriod/components/ConsumptionSummary/index.js +22 -25
  47. package/dist/components/ConsumptionPeriod/components/HistoryGraph/index.js +34 -18
  48. package/dist/components/ConsumptionPeriod/components/Reading/index.js +34 -37
  49. package/dist/components/ConsumptionPeriod/index.js +8 -12
  50. package/dist/components/ConsumptionPeriod/utils.js +15 -13
  51. package/dist/components/Date/index.js +9 -12
  52. package/dist/components/DebtState/index.js +8 -14
  53. package/dist/components/IconAndDetails/index.js +17 -19
  54. package/dist/components/Magnitude/index.js +12 -15
  55. package/dist/components/Magnitude/utils.js +8 -2
  56. package/dist/components/MainBillData/components/BillAlert/components/BillParticularConditions/index.js +16 -20
  57. package/dist/components/MainBillData/components/BillAlert/index.js +45 -28
  58. package/dist/components/MainBillData/components/BillBody/components/ClientData/index.js +11 -19
  59. package/dist/components/MainBillData/components/BillBody/components/Consumption/index.js +11 -14
  60. package/dist/components/MainBillData/components/BillBody/components/Consumption/utils.js +3 -1
  61. package/dist/components/MainBillData/components/BillBody/components/ReadingDetails/index.js +15 -23
  62. package/dist/components/MainBillData/components/BillBody/components/ReadingDetails/utils.js +1 -1
  63. package/dist/components/MainBillData/components/BillBody/index.js +50 -45
  64. package/dist/components/MainBillData/components/BillHeader/components/TypeAndNumber/index.js +9 -15
  65. package/dist/components/MainBillData/components/BillHeader/index.js +26 -29
  66. package/dist/components/MainBillData/index.js +5 -7
  67. package/dist/components/MainBillData/theme.js +9 -7
  68. package/dist/components/MainBillData/utils.js +5 -1
  69. package/dist/components/Period/index.js +47 -55
  70. package/dist/components/PowerProgresBar/components/PowerConsumption/index.js +11 -15
  71. package/dist/components/PowerProgresBar/index.js +36 -36
  72. package/dist/components/RateAndCategory/index.js +31 -30
  73. package/dist/components/RatesDefinition/components/BillRate/components/RatePrices/index.js +13 -20
  74. package/dist/components/RatesDefinition/components/BillRate/index.js +14 -24
  75. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/Category/index.js +9 -14
  76. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Indicator/components/IndicatorLabel/index.js +21 -26
  77. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Indicator/index.js +13 -19
  78. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Indicator/styles.module.scss +1 -4
  79. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Indicator/utils.js +13 -56
  80. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Legend/index.js +50 -0
  81. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Legend/styles.module.scss +34 -0
  82. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Stages/index.js +65 -0
  83. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Stages/styles.module.scss +88 -0
  84. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/constants.js +6 -37
  85. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/index.js +51 -16
  86. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/styles.module.scss +4 -1
  87. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/utils.js +68 -23
  88. package/dist/components/RatesDefinition/components/CategoryByConsumption/constants.js +42 -0
  89. package/dist/components/RatesDefinition/components/CategoryByConsumption/index.js +45 -36
  90. package/dist/components/RatesDefinition/components/CategoryByConsumption/utils.js +16 -0
  91. package/dist/components/RatesDefinition/components/PurchasedRate/index.js +13 -19
  92. package/dist/components/RatesDefinition/index.js +15 -20
  93. package/dist/components/SmartBillProvider/index.js +47 -12
  94. package/dist/components/StyledAmount/constants.js +1 -1
  95. package/dist/components/StyledAmount/index.js +35 -19
  96. package/dist/components/WithContextApi/index.js +27 -16
  97. package/dist/components/WithContextApi/layout.js +2 -2
  98. package/dist/components/WithSeason/index.js +9 -5
  99. package/dist/constants/deviceSizes.js +17 -27
  100. package/dist/constants/seasons.js +2 -2
  101. package/dist/index.js +16 -14
  102. package/dist/shared/Context/index.js +3 -5
  103. package/dist/shared/constants/aliases.js +550 -683
  104. package/dist/shared/constants/components.js +2 -1
  105. package/dist/shared/constants/consumptions.js +4 -4
  106. package/dist/shared/constants/periodicities.js +1 -1
  107. package/dist/shared/constants/rates.js +1 -1
  108. package/dist/shared/constants/readings.js +2 -2
  109. package/dist/shared/constants/seasons.js +2 -2
  110. package/dist/shared/constants/stagesGraph.js +4 -4
  111. package/dist/shared/types/assetsTypes.js +1 -1
  112. package/dist/shared/types/billDataTypes.js +4 -4
  113. package/dist/shared/types/componentsTypes.js +13 -18
  114. package/dist/shared/types/formattersTypes.js +1 -1
  115. package/dist/shared/types/rateStagesTypes.js +4 -4
  116. package/dist/shared/types/smartBillTypes.js +10 -5
  117. package/dist/shared/types/textsTypes.js +1 -1
  118. package/dist/shared/utils/billCalculation.js +9 -9
  119. package/dist/shared/utils/consumptions.js +62 -28
  120. package/dist/shared/utils/context.js +8 -7
  121. package/dist/shared/utils/expirations.js +5 -1
  122. package/dist/shared/utils/periods.js +20 -14
  123. package/dist/shared/utils/rates.js +5 -1
  124. package/dist/shared/utils/readings.js +10 -2
  125. package/dist/shared/utils/season.js +5 -1
  126. package/dist/shared/utils/stagesGraph.js +15 -11
  127. package/dist/utils/hooks.js +5 -37
  128. package/dist/utils.js +8 -4
  129. package/package.json +2 -2
  130. package/dist/components/BillSummary/components/BilledConcepts/components/PieChartContainer/utils.js +0 -27
  131. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/LimitsLine/index.js +0 -21
  132. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/LimitsLine/styles.module.scss +0 -15
  133. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/SubStage/index.js +0 -69
  134. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/SubStage/styles.module.scss +0 -5
  135. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/components/SubStage/utils.js +0 -12
  136. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/index.js +0 -68
  137. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/components/Stage/styles.module.scss +0 -32
  138. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/index.js +0 -59
  139. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/Bars/styles.module.scss +0 -3
  140. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/LegendItem/index.js +0 -83
  141. package/dist/components/RatesDefinition/components/CategoryByConsumption/components/RateStagesGraph/components/LegendItem/styles.module.scss +0 -57
package/dist/index.js CHANGED
@@ -1,79 +1,81 @@
1
1
  "use strict";
2
2
 
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
6
8
  exports.Aliases = void 0;
7
9
  Object.defineProperty(exports, "BillCalculation", {
8
10
  enumerable: true,
9
- get: function () {
11
+ get: function get() {
10
12
  return _BillCalculation.default;
11
13
  }
12
14
  });
13
15
  Object.defineProperty(exports, "BillSummary", {
14
16
  enumerable: true,
15
- get: function () {
17
+ get: function get() {
16
18
  return _BillSummary.default;
17
19
  }
18
20
  });
19
21
  Object.defineProperty(exports, "ColorAliases", {
20
22
  enumerable: true,
21
- get: function () {
23
+ get: function get() {
22
24
  return Aliases.COLORS;
23
25
  }
24
26
  });
25
27
  exports.ComponentNames = void 0;
26
28
  Object.defineProperty(exports, "ConsumptionComparison", {
27
29
  enumerable: true,
28
- get: function () {
30
+ get: function get() {
29
31
  return _ConsumptionComparison.default;
30
32
  }
31
33
  });
32
34
  Object.defineProperty(exports, "ConsumptionIncluded", {
33
35
  enumerable: true,
34
- get: function () {
36
+ get: function get() {
35
37
  return _ConsumptionIncluded.default;
36
38
  }
37
39
  });
38
40
  Object.defineProperty(exports, "ConsumptionPeriod", {
39
41
  enumerable: true,
40
- get: function () {
42
+ get: function get() {
41
43
  return _ConsumptionPeriod.default;
42
44
  }
43
45
  });
44
46
  Object.defineProperty(exports, "DefaultLabelProps", {
45
47
  enumerable: true,
46
- get: function () {
48
+ get: function get() {
47
49
  return Aliases.DEFAULT_PROPS;
48
50
  }
49
51
  });
50
52
  Object.defineProperty(exports, "MainBillData", {
51
53
  enumerable: true,
52
- get: function () {
54
+ get: function get() {
53
55
  return _MainBillData.default;
54
56
  }
55
57
  });
56
58
  Object.defineProperty(exports, "RatesDefinition", {
57
59
  enumerable: true,
58
- get: function () {
60
+ get: function get() {
59
61
  return _RatesDefinition.default;
60
62
  }
61
63
  });
62
64
  Object.defineProperty(exports, "SmartBillProvider", {
63
65
  enumerable: true,
64
- get: function () {
66
+ get: function get() {
65
67
  return _SmartBillProvider.default;
66
68
  }
67
69
  });
68
70
  Object.defineProperty(exports, "billDataTypes", {
69
71
  enumerable: true,
70
- get: function () {
72
+ get: function get() {
71
73
  return _billDataTypes.billDataTypes;
72
74
  }
73
75
  });
74
76
  Object.defineProperty(exports, "rateStagesTypes", {
75
77
  enumerable: true,
76
- get: function () {
78
+ get: function get() {
77
79
  return _rateStagesTypes.rateStagesTypes;
78
80
  }
79
81
  });
@@ -106,8 +108,8 @@ var _billDataTypes = require("./shared/types/billDataTypes");
106
108
 
107
109
  var _rateStagesTypes = require("./shared/types/rateStagesTypes");
108
110
 
109
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
111
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
110
112
 
111
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
113
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
112
114
 
113
115
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -9,11 +9,9 @@ var _react = _interopRequireDefault(require("react"));
9
9
 
10
10
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
11
 
12
- const ContextApi = /*#__PURE__*/_react.default.createContext({});
12
+ var ContextApi = /*#__PURE__*/_react.default.createContext({});
13
13
 
14
- const {
15
- Provider: SmartBillProvider,
16
- Consumer: SmartBillConsumer
17
- } = ContextApi;
14
+ var SmartBillProvider = ContextApi.Provider,
15
+ SmartBillConsumer = ContextApi.Consumer;
18
16
  exports.SmartBillConsumer = SmartBillConsumer;
19
17
  exports.SmartBillProvider = SmartBillProvider;