@gitlab/ui 67.3.0 → 67.3.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/components/duo_chat_loader/duo_chat_loader.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/package.json +1 -1
- package/src/components/experimental/duo/chat/components/duo_chat_loader/duo_chat_loader.vue +25 -23
- package/src/components/experimental/duo/chat/duo_chat.scss +7 -0
package/dist/tokens/js/tokens.js
CHANGED
package/package.json
CHANGED
|
@@ -62,33 +62,35 @@ export default {
|
|
|
62
62
|
|
|
63
63
|
<template>
|
|
64
64
|
<div class="duo-chat-loader">
|
|
65
|
-
<div class="gl-display-flex gl-align-items-
|
|
65
|
+
<div class="gl-display-flex gl-align-items-flex-start gl-mr-3 gl-pt-3">
|
|
66
66
|
<div class="duo-chat-loader__dot duo-chat-loader__dot--1"></div>
|
|
67
67
|
<div class="duo-chat-loader__dot duo-chat-loader__dot--2"></div>
|
|
68
68
|
<div class="duo-chat-loader__dot duo-chat-loader__dot--3"></div>
|
|
69
69
|
</div>
|
|
70
|
-
<
|
|
71
|
-
<
|
|
72
|
-
<
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
<transition
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
<span
|
|
82
|
-
v-for="(message, index) in $options.i18n.LOADER_LOADING_TRANSITIONS"
|
|
83
|
-
v-show="isCurrentTransition(index)"
|
|
84
|
-
:ref="isCurrentTransition(index) ? 'currentTransition' : ''"
|
|
85
|
-
:key="message"
|
|
86
|
-
:data-testid="isCurrentTransition(index) ? 'current-transition' : ''"
|
|
87
|
-
class="gl-white-space-nowrap"
|
|
88
|
-
>{{ message }}</span
|
|
70
|
+
<div class="gl-line-height-24">
|
|
71
|
+
<gl-sprintf :message="$options.i18n.LOADER_LOADING_MESSAGE">
|
|
72
|
+
<template #tool>
|
|
73
|
+
<strong data-testid="tool">{{ toolName }}</strong>
|
|
74
|
+
</template>
|
|
75
|
+
<template #transition>
|
|
76
|
+
<transition-group
|
|
77
|
+
ref="transition"
|
|
78
|
+
name="text"
|
|
79
|
+
class="transition gl-display-inline-block gl-relative gl-vertical-align-bottom"
|
|
80
|
+
@after-leave="computeTransitionWidth"
|
|
89
81
|
>
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
82
|
+
<span
|
|
83
|
+
v-for="(message, index) in $options.i18n.LOADER_LOADING_TRANSITIONS"
|
|
84
|
+
v-show="isCurrentTransition(index)"
|
|
85
|
+
:ref="isCurrentTransition(index) ? 'currentTransition' : ''"
|
|
86
|
+
:key="message"
|
|
87
|
+
:data-testid="isCurrentTransition(index) ? 'current-transition' : ''"
|
|
88
|
+
class="gl-white-space-nowrap gl-absolute gl-bottom-0 gl-left-0"
|
|
89
|
+
>{{ message }}</span
|
|
90
|
+
>
|
|
91
|
+
</transition-group>
|
|
92
|
+
</template>
|
|
93
|
+
</gl-sprintf>
|
|
94
|
+
</div>
|
|
93
95
|
</div>
|
|
94
96
|
</template>
|