@gitlab/ui 91.1.1 → 91.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "91.1.1",
3
+ "version": "91.1.2",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -50,7 +50,7 @@ See: https://gitlab.com/gitlab-org/gitlab/issues/30055
50
50
 
51
51
  &.is-invalid:not(:disabled) {
52
52
  box-shadow: inset 0 0 0 $gl-border-size-1 var(--gl-control-border-color-error);
53
-
53
+
54
54
  &:hover {
55
55
  box-shadow: inset 0 0 0 $gl-border-size-1 var(--gl-control-border-color-error);
56
56
  }
@@ -65,6 +65,8 @@ See: https://gitlab.com/gitlab-org/gitlab/issues/30055
65
65
  // References wrapping div because select can't have pseudo elements reliably
66
66
  .gl-form-select-wrapper {
67
67
  position: relative;
68
+ display: inline-block;
69
+ width: 100%;
68
70
 
69
71
  &::after {
70
72
  content: "";
@@ -47,12 +47,12 @@ export default {
47
47
  };
48
48
  </script>
49
49
  <template>
50
- <div class="gl-form-select-wrapper" :class="cssClasses">
50
+ <span class="gl-form-select-wrapper" :class="cssClasses">
51
51
  <b-form-select class="gl-form-select" v-bind="$attrs" v-on="$listeners">
52
52
  <!-- eslint-disable-next-line @gitlab/vue-prefer-dollar-scopedslots -->
53
53
  <template v-for="slot in Object.keys($slots)" #[slot]>
54
54
  <slot :name="slot"></slot>
55
55
  </template>
56
56
  </b-form-select>
57
- </div>
57
+ </span>
58
58
  </template>