@gitlab/ui 86.10.0 → 86.11.0
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/charts/sparkline/sparkline.js +12 -2
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +4 -3
- package/src/components/charts/sparkline/sparkline.vue +10 -1
- package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.scss +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [86.11.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.10.1...v86.11.0) (2024-07-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **GlSparklineChart:** Add `connectNulls` prop ([61d8a7c](https://gitlab.com/gitlab-org/gitlab-ui/commit/61d8a7cb06f64a7f141ab3795a5e02c843a99a52))
|
|
7
|
+
|
|
8
|
+
## [86.10.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.10.0...v86.10.1) (2024-07-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **GlDuoChatMessage:** removed white bg from code snippets ([9a2aff5](https://gitlab.com/gitlab-org/gitlab-ui/commit/9a2aff5148ab79dc50f98c181d27cecb4ed7c1b9))
|
|
14
|
+
|
|
1
15
|
# [86.10.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.9.1...v86.10.0) (2024-07-15)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -78,6 +78,14 @@ var script = {
|
|
|
78
78
|
required: false,
|
|
79
79
|
default: 0,
|
|
80
80
|
validator: x => x >= 0 && x <= 1
|
|
81
|
+
},
|
|
82
|
+
/**
|
|
83
|
+
* Whether to connect the line across null points.
|
|
84
|
+
*/
|
|
85
|
+
connectNulls: {
|
|
86
|
+
type: Boolean,
|
|
87
|
+
required: false,
|
|
88
|
+
default: false
|
|
81
89
|
}
|
|
82
90
|
},
|
|
83
91
|
data() {
|
|
@@ -131,7 +139,8 @@ var script = {
|
|
|
131
139
|
data,
|
|
132
140
|
smooth,
|
|
133
141
|
itemStyle,
|
|
134
|
-
showLastYValue
|
|
142
|
+
showLastYValue,
|
|
143
|
+
connectNulls
|
|
135
144
|
} = this;
|
|
136
145
|
const markPoint = showLastYValue ? {
|
|
137
146
|
symbol: 'circle',
|
|
@@ -156,7 +165,8 @@ var script = {
|
|
|
156
165
|
itemStyle,
|
|
157
166
|
lineStyle: {
|
|
158
167
|
cap: 'round'
|
|
159
|
-
}
|
|
168
|
+
},
|
|
169
|
+
connectNulls
|
|
160
170
|
};
|
|
161
171
|
},
|
|
162
172
|
itemStyle() {
|