@gitlab/ui 64.21.2 → 64.22.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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 19 Jul 2023 12:51:04 GMT
3
+ * Generated on Thu, 20 Jul 2023 05:29:58 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 19 Jul 2023 12:51:04 GMT
3
+ * Generated on Thu, 20 Jul 2023 05:29:58 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 19 Jul 2023 12:51:04 GMT
3
+ * Generated on Thu, 20 Jul 2023 05:29:58 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 Wed, 19 Jul 2023 12:51:04 GMT
3
+ * Generated on Thu, 20 Jul 2023 05:29:58 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 Wed, 19 Jul 2023 12:51:04 GMT
3
+ // Generated on Thu, 20 Jul 2023 05:29:58 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 Wed, 19 Jul 2023 12:51:04 GMT
3
+ // Generated on Thu, 20 Jul 2023 05:29:58 GMT
4
4
 
5
5
  $brand-gray-05: #2b2838 !default;
6
6
  $brand-gray-04: #45424d !default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "64.21.2",
3
+ "version": "64.22.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -0,0 +1,6 @@
1
+ .gl-input-group-text {
2
+ @include gl-bg-gray-10;
3
+ @include gl-h-7;
4
+ @include gl-font-base;
5
+ @include gl-text-gray-900;
6
+ }
@@ -6,4 +6,9 @@ describe('GlInputGroupText', () => {
6
6
  const wrapper = shallowMount(GlInputGroupText);
7
7
  expect(wrapper).toBeInstanceOf(Object);
8
8
  });
9
+
10
+ it('applies gl-input-group-text class', () => {
11
+ const wrapper = shallowMount(GlInputGroupText);
12
+ expect(wrapper.classes('gl-input-group-text')).toBe(true);
13
+ });
9
14
  });
@@ -11,7 +11,7 @@ export default {
11
11
  </script>
12
12
 
13
13
  <template>
14
- <b-input-group-text v-bind="$attrs" v-on="$listeners">
14
+ <b-input-group-text v-bind="$attrs" class="gl-input-group-text" v-on="$listeners">
15
15
  <slot></slot>
16
16
  </b-input-group-text>
17
17
  </template>
@@ -44,6 +44,7 @@
44
44
  @import '../components/base/form/form_select/form_select';
45
45
  @import '../components/base/form/form_textarea/form_textarea';
46
46
  @import '../components/base/form/form_combobox/form_combobox';
47
+ @import '../components/base/form/input_group_text/input_group_text';
47
48
  @import '../components/base/icon/icon';
48
49
  @import '../components/base/infinite_scroll/infinite_scroll';
49
50
  @import '../components/base/label/label';