@gitlab/ui 134.1.2 → 134.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "134.1.2",
3
+ "version": "134.1.3",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -20,6 +20,8 @@
20
20
  }
21
21
 
22
22
  .gl-token-selector-input {
23
- padding-bottom: $gl-spacing-scale-1 + $gl-spacing-scale-2;
24
- padding-top: $gl-spacing-scale-1 + $gl-spacing-scale-2;
23
+ padding-top: $input-padding-y;
24
+ padding-bottom: $input-padding-y;
25
+ padding-left: $input-padding-x-sm;
26
+ padding-right: $input-padding-x-sm;
25
27
  }
@@ -465,7 +465,7 @@ export default {
465
465
  <input
466
466
  ref="textInput"
467
467
  type="text"
468
- class="gl-token-selector-input gl-h-auto gl-w-4/10 gl-grow gl-border-none gl-bg-transparent gl-px-1 gl-font-regular gl-text-base gl-leading-normal gl-text-default gl-outline-none"
468
+ class="gl-token-selector-input gl-h-auto gl-w-4/10 gl-grow gl-border-none gl-bg-transparent gl-font-regular gl-text-base gl-leading-normal gl-text-default gl-outline-none"
469
469
  :value="inputText"
470
470
  :aria-activedescendant="handleAriaActiveDescendent(focusedDropdownItem)"
471
471
  :autocomplete="autocomplete"