@gitlab/ui 65.3.0 → 65.4.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.
- package/CHANGELOG.md +19 -0
- package/dist/components/base/form/input_group_text/input_group_text.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +2 -2
- package/src/components/base/form/form_input/form_input.scss +1 -1
- package/src/components/base/form/input_group_text/input_group_text.spec.js +0 -5
- package/src/components/base/form/input_group_text/input_group_text.vue +1 -1
- package/src/scss/components.scss +0 -1
- package/src/scss/utilities.scss +12 -0
- package/src/scss/utility-mixins/flex.scss +6 -0
- package/src/components/base/form/input_group_text/input_group_text.scss +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "65.
|
|
3
|
+
"version": "65.4.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"babel-loader": "^8.0.5",
|
|
119
119
|
"babel-plugin-require-context-hook": "^1.0.0",
|
|
120
120
|
"bootstrap": "4.6.2",
|
|
121
|
-
"cypress": "12.17.
|
|
121
|
+
"cypress": "12.17.4",
|
|
122
122
|
"dompurify": "^2.4.7",
|
|
123
123
|
"emoji-regex": "^10.0.0",
|
|
124
124
|
"eslint": "8.47.0",
|
|
@@ -6,9 +6,4 @@ 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
|
-
});
|
|
14
9
|
});
|
package/src/scss/components.scss
CHANGED
|
@@ -44,7 +44,6 @@
|
|
|
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';
|
|
48
47
|
@import '../components/base/icon/icon';
|
|
49
48
|
@import '../components/base/infinite_scroll/infinite_scroll';
|
|
50
49
|
@import '../components/base/label/label';
|
package/src/scss/utilities.scss
CHANGED
|
@@ -3803,6 +3803,18 @@
|
|
|
3803
3803
|
justify-content: flex-start !important;
|
|
3804
3804
|
}
|
|
3805
3805
|
|
|
3806
|
+
.gl-sm-justify-content-start {
|
|
3807
|
+
@include gl-media-breakpoint-up(sm) {
|
|
3808
|
+
justify-content: flex-start;
|
|
3809
|
+
}
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
.gl-sm-justify-content-start\! {
|
|
3813
|
+
@include gl-media-breakpoint-up(sm) {
|
|
3814
|
+
justify-content: flex-start !important;
|
|
3815
|
+
}
|
|
3816
|
+
}
|
|
3817
|
+
|
|
3806
3818
|
.gl-md-justify-content-start {
|
|
3807
3819
|
@include gl-media-breakpoint-up(md) {
|
|
3808
3820
|
justify-content: flex-start;
|
|
@@ -291,6 +291,12 @@
|
|
|
291
291
|
justify-content: flex-start;
|
|
292
292
|
}
|
|
293
293
|
|
|
294
|
+
@mixin gl-sm-justify-content-start {
|
|
295
|
+
@include gl-media-breakpoint-up(sm) {
|
|
296
|
+
@include gl-justify-content-start;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
294
300
|
@mixin gl-md-justify-content-start {
|
|
295
301
|
@include gl-media-breakpoint-up(md) {
|
|
296
302
|
@include gl-justify-content-start;
|