@gitlab/ui 67.5.0 → 67.5.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 +7 -0
- package/dist/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.js +1 -2
- 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/dist/utility_classes.css.map +1 -1
- package/package.json +2 -2
- package/scss_to_js/scss_variables.js +146 -146
- package/scss_to_js/scss_variables.json +1278 -1278
- package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.vue +1 -2
- package/src/scss/storybook.scss +1 -1
- package/src/scss/storybook_dark_mode.scss +0 -1
- package/src/scss/tokens.scss +2 -0
- package/src/scss/variables.scss +1 -185
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [67.5.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v67.5.0...v67.5.1) (2023-11-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **GlDuoChatMessage:** Use nextTick from component instance ([4e39ab6](https://gitlab.com/gitlab-org/gitlab-ui/commit/4e39ab6ec0a9c9e162f4342030b67b257c2b09e4))
|
|
7
|
+
|
|
1
8
|
# [67.5.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v67.4.0...v67.5.0) (2023-11-02)
|
|
2
9
|
|
|
3
10
|
|
package/dist/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { nextTick } from 'vue';
|
|
2
1
|
import GlDuoUserFeedback from '../../../user_feedback/user_feedback';
|
|
3
2
|
import { SafeHtmlDirective } from '../../../../../../directives/safe_html/safe_html';
|
|
4
3
|
import { MESSAGE_MODEL_ROLES } from '../../constants';
|
|
@@ -76,7 +75,7 @@ var script = {
|
|
|
76
75
|
},
|
|
77
76
|
methods: {
|
|
78
77
|
async hydrateContentWithGFM() {
|
|
79
|
-
await nextTick();
|
|
78
|
+
await this.$nextTick();
|
|
80
79
|
this.renderGFM(this.$refs.content);
|
|
81
80
|
},
|
|
82
81
|
async messageUpdateHandler() {
|