@gitlab/ui 67.3.1 → 67.3.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.
- package/CHANGELOG.md +14 -0
- package/README.md +2 -2
- package/dist/components/experimental/duo/chat/duo_chat.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/charts/line/line.md +1 -1
- package/src/components/charts/sparkline/sparkline.md +1 -1
- package/src/components/experimental/duo/chat/duo_chat.scss +7 -0
- package/src/components/experimental/duo/chat/duo_chat.vue +2 -2
package/dist/tokens/js/tokens.js
CHANGED
package/package.json
CHANGED
|
@@ -2,6 +2,6 @@ This is a basic line chart.
|
|
|
2
2
|
|
|
3
3
|
### Implementation Details
|
|
4
4
|
|
|
5
|
-
This component wraps the
|
|
5
|
+
This component wraps the GitLab UI `chart` component, which in turn wraps the ECharts component.
|
|
6
6
|
|
|
7
7
|
See the [chart](./?path=/story/charts-chart--default) component for more info.
|
|
@@ -3,6 +3,6 @@ This is a basic sparkline chart.
|
|
|
3
3
|
|
|
4
4
|
### Implementation Details
|
|
5
5
|
|
|
6
|
-
This component wraps the
|
|
6
|
+
This component wraps the GitLab UI `chart` component, which in turn wraps the ECharts component.
|
|
7
7
|
|
|
8
8
|
See the [chart](./?path=/story/charts-chart--default) component for more info.
|
|
@@ -225,7 +225,7 @@ export default {
|
|
|
225
225
|
v-if="!isHidden"
|
|
226
226
|
id="chat-component"
|
|
227
227
|
ref="drawer"
|
|
228
|
-
class="markdown-code-block gl-drawer gl-drawer-default gl-max-h-full gl-bottom-0 gl-shadow-none gl-border-l gl-border-t duo-chat
|
|
228
|
+
class="markdown-code-block gl-drawer gl-drawer-default gl-max-h-full gl-bottom-0 gl-shadow-none gl-border-l gl-border-t duo-chat"
|
|
229
229
|
role="complementary"
|
|
230
230
|
data-testid="chat-component"
|
|
231
231
|
@scroll="handleScrollingTrottled"
|
|
@@ -322,7 +322,7 @@ export default {
|
|
|
322
322
|
</template>
|
|
323
323
|
</transition-group>
|
|
324
324
|
<transition name="loader">
|
|
325
|
-
<gl-duo-chat-loader v-if="isLoading" :tool-name="toolName" />
|
|
325
|
+
<gl-duo-chat-loader v-if="isLoading" :tool-name="toolName" class="gl-px-0!" />
|
|
326
326
|
</transition>
|
|
327
327
|
</section>
|
|
328
328
|
</div>
|