@gitlab/ui 66.33.0 → 66.35.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 CHANGED
@@ -1,3 +1,17 @@
1
+ # [66.35.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v66.34.0...v66.35.0) (2023-10-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * **DisclosureDropdown:** Add startOpened prop ([4896b9c](https://gitlab.com/gitlab-org/gitlab-ui/commit/4896b9c3a6f9075a76fa71ea275f2153de111249))
7
+
8
+ # [66.34.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v66.33.0...v66.34.0) (2023-10-18)
9
+
10
+
11
+ ### Features
12
+
13
+ * **css:** added gl-z-index-999 utility ([f297430](https://gitlab.com/gitlab-org/gitlab-ui/commit/f2974305522a9a3e2b9d00a4590df332826817e6))
14
+
1
15
  # [66.33.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v66.32.1...v66.33.0) (2023-10-17)
2
16
 
3
17
 
@@ -198,6 +198,14 @@ var script = {
198
198
  required: false,
199
199
  default: POSITION_ABSOLUTE,
200
200
  validator: strategy => [POSITION_ABSOLUTE, POSITION_FIXED].includes(strategy)
201
+ },
202
+ /**
203
+ * Opens dropdown on render
204
+ */
205
+ startOpened: {
206
+ type: Boolean,
207
+ required: false,
208
+ default: false
201
209
  }
202
210
  },
203
211
  data() {
@@ -218,6 +226,11 @@ var script = {
218
226
  return Boolean(this.$scopedSlots.toggle);
219
227
  }
220
228
  },
229
+ mounted() {
230
+ if (this.startOpened) {
231
+ this.open();
232
+ }
233
+ },
221
234
  methods: {
222
235
  open() {
223
236
  this.$refs.baseDropdown.open();
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 17 Oct 2023 12:41:31 GMT
3
+ * Generated on Fri, 20 Oct 2023 08:03:38 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 17 Oct 2023 12:41:31 GMT
3
+ * Generated on Fri, 20 Oct 2023 08:03:38 GMT
4
4
  */
5
5
 
6
6
  :root.gl-dark {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 17 Oct 2023 12:41:31 GMT
3
+ * Generated on Fri, 20 Oct 2023 08:03:38 GMT
4
4
  */
5
5
 
6
6
  export const BLACK = "#fff";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 17 Oct 2023 12:41:31 GMT
3
+ * Generated on Fri, 20 Oct 2023 08:03:38 GMT
4
4
  */
5
5
 
6
6
  export const BLACK = "#000";
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 17 Oct 2023 12:41:31 GMT
3
+ // Generated on Fri, 20 Oct 2023 08:03:38 GMT
4
4
 
5
5
  $red-950: #fff4f3;
6
6
  $red-900: #fcf1ef;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 17 Oct 2023 12:41:31 GMT
3
+ // Generated on Fri, 20 Oct 2023 08:03:38 GMT
4
4
 
5
5
  $gl-line-height-52: 3.25rem;
6
6
  $gl-line-height-44: 2.75rem;