@carbon/ai-chat 1.4.2 → 1.4.3
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.
|
@@ -1265,7 +1265,7 @@ function agentUpdateIsTyping(isTyping) {
|
|
|
1265
1265
|
};
|
|
1266
1266
|
}
|
|
1267
1267
|
|
|
1268
|
-
const VERSION = "1.4.
|
|
1268
|
+
const VERSION = "1.4.2";
|
|
1269
1269
|
|
|
1270
1270
|
const TIME_TO_ENTRANCE_ANIMATION_START = 15e3;
|
|
1271
1271
|
|
|
@@ -4979,9 +4979,8 @@ function createChatInstance({serviceManager}) {
|
|
|
4979
4979
|
store.dispatch(actions.addIsLoadingCounter(-1, message));
|
|
4980
4980
|
} else if (!direction && message) {
|
|
4981
4981
|
store.dispatch(actions.addIsLoadingCounter(0, message));
|
|
4982
|
-
}
|
|
4983
|
-
|
|
4984
|
-
consoleError(`[updateIsMessageLoadingCounter] Invalid direction: ${direction}. Valid values are undefined, "reset", "increase" and "decrease".`);
|
|
4982
|
+
} else if (direction) {
|
|
4983
|
+
consoleError(`[updateIsMessageLoadingCounter] Invalid direction: ${direction}. Valid values are undefined (with loading message), "reset", "increase" and "decrease".`);
|
|
4985
4984
|
}
|
|
4986
4985
|
},
|
|
4987
4986
|
updateIsChatLoadingCounter(direction) {
|