@gitlab/ui 112.2.1 → 112.2.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": "112.2.1",
3
+ "version": "112.2.2",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -0,0 +1,19 @@
1
+ .input-group {
2
+ > .input-group-prepend > .btn-group,
3
+ > .input-group-append:not(:last-child) > .btn-group,
4
+ > .input-group-append:last-child > .btn-group:not(:last-child):not(.dropdown-toggle) {
5
+ > .btn {
6
+ border-top-right-radius: 0;
7
+ border-bottom-right-radius: 0;
8
+ }
9
+ }
10
+
11
+ > .input-group-append > .btn-group,
12
+ > .input-group-prepend:not(:first-child) > .btn-group,
13
+ > .input-group-prepend:first-child > .btn-group:not(:first-child) {
14
+ > .btn {
15
+ border-top-left-radius: 0;
16
+ border-bottom-left-radius: 0;
17
+ }
18
+ }
19
+ }
@@ -116,7 +116,7 @@ export default {
116
116
 
117
117
  <template>
118
118
  <nav v-if="isVisible" class="gl-pagination" :aria-label="navigationLabel">
119
- <gl-button-group class="gl-keyset-pagination" v-bind="$attrs" v-on="$listeners">
119
+ <gl-button-group class="gl-keyset-pagination gl-gap-3" v-bind="$attrs" v-on="$listeners">
120
120
  <gl-button
121
121
  :href="prevButtonLink"
122
122
  :disabled="disabled || !hasPreviousPage"
@@ -10,7 +10,6 @@ $bv-enable-popover-variants: false;
10
10
  @import '../vendor/bootstrap-vue/src/components/form-checkbox/index.scss';
11
11
  @import '../vendor/bootstrap-vue/src/components/form-input/index.scss';
12
12
  @import '../vendor/bootstrap-vue/src/components/form-radio/index.scss';
13
- @import '../vendor/bootstrap-vue/src/components/input-group/index.scss';
14
13
  @import '../vendor/bootstrap-vue/src/components/modal/index.scss';
15
14
  @import '../vendor/bootstrap-vue/src/components/popover/index.scss';
16
15
  @import '../vendor/bootstrap-vue/src/components/table/index.scss';
@@ -35,6 +35,7 @@
35
35
  @import '../components/base/filtered_search/filtered_search_token_segment';
36
36
  @import '../components/base/form/form_date/form_date';
37
37
  @import '../components/base/form/form_input/form_input';
38
+ @import '../components/base/form/form_input_group/form_input_group';
38
39
  @import '../components/base/form/form_checkbox/form_checkbox';
39
40
  @import '../components/base/form/form_group/form_group';
40
41
  @import '../components/base/form/form_radio/form_radio';
@@ -1,2 +1 @@
1
1
  @import "../../utilities";
2
- @import "../input-group/index";
@@ -1,3 +1 @@
1
1
  @import "../../utilities";
2
- // Needed when radio-groups are inside an input group
3
- @import "../input-group/index";
@@ -2,7 +2,6 @@
2
2
  @import "form-checkbox/index";
3
3
  @import "form-input/index";
4
4
  @import "form-radio/index";
5
- @import "input-group/index";
6
5
  @import "modal/index";
7
6
  @import "popover/index";
8
7
  @import "table/index";
@@ -1,29 +0,0 @@
1
- $bv-input-group-dropdown-patched: false !default;
2
-
3
- // Make sure to include these style definitions only once
4
- @if $bv-input-group-dropdown-patched == false {
5
- $bv-input-group-dropdown-patched: true;
6
-
7
- // Workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/1560
8
- // Workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/2114 */
9
- // Based on: `~bootstrap/scss/_input-group.scss`
10
- .input-group {
11
- > .input-group-prepend > .btn-group,
12
- > .input-group-append:not(:last-child) > .btn-group,
13
- > .input-group-append:last-child > .btn-group:not(:last-child):not(.dropdown-toggle) {
14
- > .btn {
15
- border-top-right-radius: 0;
16
- border-bottom-right-radius: 0;
17
- }
18
- }
19
-
20
- > .input-group-append > .btn-group,
21
- > .input-group-prepend:not(:first-child) > .btn-group,
22
- > .input-group-prepend:first-child > .btn-group:not(:first-child) {
23
- > .btn {
24
- border-top-left-radius: 0;
25
- border-bottom-left-radius: 0;
26
- }
27
- }
28
- }
29
- }
@@ -1 +0,0 @@
1
- @import "input-group";