@gitlab/ui 87.1.0 → 87.1.2
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 +14 -0
- package/dist/components/experimental/duo/chat/duo_chat.js +5 -2
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/tokens_table.js +64 -5
- package/package.json +4 -4
- package/src/components/base/badge/badge.scss +4 -4
- package/src/components/experimental/duo/chat/duo_chat.vue +3 -0
- package/src/tokens/tokens_table.vue +99 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [87.1.2](https://gitlab.com/gitlab-org/gitlab-ui/compare/v87.1.1...v87.1.2) (2024-07-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add cancel case to isStreaming state ([86e84bd](https://gitlab.com/gitlab-org/gitlab-ui/commit/86e84bd5db5782f603d0ca252420db792477bcd1))
|
|
7
|
+
|
|
8
|
+
## [87.1.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v87.1.0...v87.1.1) (2024-07-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **GlBadge:** fix layout in normal flow ([1986f31](https://gitlab.com/gitlab-org/gitlab-ui/commit/1986f31dfb69d1cf872e771d348772c69600545d))
|
|
14
|
+
|
|
1
15
|
# [87.1.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v87.0.0...v87.1.0) (2024-07-24)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -232,8 +232,11 @@ var script = {
|
|
|
232
232
|
return ((_this$lastMessage = this.lastMessage) === null || _this$lastMessage === void 0 ? void 0 : _this$lastMessage.content) === CHAT_RESET_MESSAGE;
|
|
233
233
|
},
|
|
234
234
|
isStreaming() {
|
|
235
|
-
var _this$lastMessage2, _this$
|
|
236
|
-
|
|
235
|
+
var _this$lastMessage2, _this$lastMessage3, _this$lastMessage3$ch, _this$lastMessage4, _this$lastMessage5;
|
|
236
|
+
if (this.canceledRequestIds.includes((_this$lastMessage2 = this.lastMessage) === null || _this$lastMessage2 === void 0 ? void 0 : _this$lastMessage2.requestId)) {
|
|
237
|
+
return false;
|
|
238
|
+
}
|
|
239
|
+
return Boolean(((_this$lastMessage3 = this.lastMessage) === null || _this$lastMessage3 === void 0 ? void 0 : (_this$lastMessage3$ch = _this$lastMessage3.chunks) === null || _this$lastMessage3$ch === void 0 ? void 0 : _this$lastMessage3$ch.length) > 0 && !((_this$lastMessage4 = this.lastMessage) !== null && _this$lastMessage4 !== void 0 && _this$lastMessage4.content) || typeof ((_this$lastMessage5 = this.lastMessage) === null || _this$lastMessage5 === void 0 ? void 0 : _this$lastMessage5.chunkId) === 'number');
|
|
237
240
|
},
|
|
238
241
|
filteredSlashCommands() {
|
|
239
242
|
const caseInsensitivePrompt = this.prompt.toLowerCase();
|