@widergy/utilitygo-smart-bill-web 3.14.0 → 3.14.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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.14.1](https://github.com/widergy/UtilityGO-Smart-Bill-Web/compare/v3.14.0...v3.14.1) (2025-10-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [CX-1278] smartbill fab widy fixes ([#66](https://github.com/widergy/UtilityGO-Smart-Bill-Web/issues/66)) ([a6e8af0](https://github.com/widergy/UtilityGO-Smart-Bill-Web/commit/a6e8af091d91e0328a409044c049cc2f27e62c61))
|
|
7
|
+
|
|
1
8
|
# [3.14.0](https://github.com/widergy/UtilityGO-Smart-Bill-Web/compare/v3.13.1...v3.14.0) (2025-10-07)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -52,7 +52,8 @@ const SmartBillSummary = _ref => {
|
|
|
52
52
|
notEnoughBillsErrorType,
|
|
53
53
|
smartBillAIAnswer = {},
|
|
54
54
|
smartBillAIAnswerError,
|
|
55
|
-
smartBillAIAnswerLoading
|
|
55
|
+
smartBillAIAnswerLoading,
|
|
56
|
+
widyEnabled
|
|
56
57
|
} = constants;
|
|
57
58
|
const {
|
|
58
59
|
getGlossaryData,
|
|
@@ -176,12 +177,15 @@ const SmartBillSummary = _ref => {
|
|
|
176
177
|
placement: 'left'
|
|
177
178
|
}
|
|
178
179
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
179
|
-
className: `${_stylesModule.default.AIFloatButton} smartbill-ai-float-button`
|
|
180
|
+
className: `${widyEnabled ? _stylesModule.default.AIFloatButtonWidy : _stylesModule.default.AIFloatButton} smartbill-ai-float-button`
|
|
180
181
|
}, /*#__PURE__*/_react.default.createElement(_energyUi.UTTouchableWithoutFeedback, {
|
|
181
182
|
onClick: openAIPanel
|
|
182
|
-
}, /*#__PURE__*/_react.default.createElement("img", {
|
|
183
|
+
}, widyEnabled ? /*#__PURE__*/_react.default.createElement("img", {
|
|
183
184
|
alt: "widy",
|
|
184
185
|
src: widyFab
|
|
186
|
+
}) : /*#__PURE__*/_react.default.createElement(_energyUi.UTIcon, {
|
|
187
|
+
colorTheme: "negative",
|
|
188
|
+
name: "EnergyIconChatSparkFilled"
|
|
185
189
|
})))), /*#__PURE__*/_react.default.createElement(_AIPanel.default, {
|
|
186
190
|
aiQuestionsList: aiQuestionsList,
|
|
187
191
|
aiQuestionsListError: aiQuestionsListError,
|
|
@@ -53,6 +53,20 @@ $tab-height: 48px;
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.AIFloatButton {
|
|
56
|
+
div {
|
|
57
|
+
align-items: center;
|
|
58
|
+
background-color: var(--actionAccent04);
|
|
59
|
+
border-radius: 100px;
|
|
60
|
+
bottom: 32px;
|
|
61
|
+
display: flex;
|
|
62
|
+
justify-content: center;
|
|
63
|
+
padding: 16px;
|
|
64
|
+
position: fixed;
|
|
65
|
+
right: 32px;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.AIFloatButtonWidy {
|
|
56
70
|
align-items: center;
|
|
57
71
|
bottom: 20px;
|
|
58
72
|
display: flex;
|