@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/CHANGELOG.md +7 -0
- package/dist/components/base/keyset_pagination/keyset_pagination.js +1 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
- package/src/components/base/form/form_input_group/form_input_group.scss +19 -0
- package/src/components/base/keyset_pagination/keyset_pagination.vue +1 -1
- package/src/scss/bootstrap_vue.scss +0 -1
- package/src/scss/components.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/_form-checkbox-group.scss +0 -1
- package/src/vendor/bootstrap-vue/src/components/form-radio/_form-radio-group.scss +0 -2
- package/src/vendor/bootstrap-vue/src/components/index.scss +0 -1
- package/src/vendor/bootstrap-vue/src/components/input-group/_input-group.scss +0 -29
- package/src/vendor/bootstrap-vue/src/components/input-group/index.scss +0 -1
package/package.json
CHANGED
|
@@ -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';
|
package/src/scss/components.scss
CHANGED
|
@@ -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,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";
|