@gitlab/ui 105.5.0 → 105.6.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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [105.6.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v105.5.0...v105.6.0) (2024-12-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* migrate GlInputGroupText ([eb12e80](https://gitlab.com/gitlab-org/gitlab-ui/commit/eb12e8089e766bec41744a42b668b12d7138d7da))
|
|
7
|
+
|
|
1
8
|
# [105.5.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v105.4.0...v105.5.0) (2024-12-16)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -1,19 +1,14 @@
|
|
|
1
|
-
import { BInputGroupText } from '../../../../vendor/bootstrap-vue/src/components/input-group/input-group-text';
|
|
2
1
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
3
2
|
|
|
4
3
|
var script = {
|
|
5
|
-
name: 'GlInputGroupText'
|
|
6
|
-
components: {
|
|
7
|
-
BInputGroupText
|
|
8
|
-
},
|
|
9
|
-
inheritAttrs: false
|
|
4
|
+
name: 'GlInputGroupText'
|
|
10
5
|
};
|
|
11
6
|
|
|
12
7
|
/* script */
|
|
13
8
|
const __vue_script__ = script;
|
|
14
9
|
|
|
15
10
|
/* template */
|
|
16
|
-
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('
|
|
11
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"input-group-text"},[_vm._t("default")],2)};
|
|
17
12
|
var __vue_staticRenderFns__ = [];
|
|
18
13
|
|
|
19
14
|
/* style */
|
package/package.json
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
import { BInputGroupText } from '../../../../vendor/bootstrap-vue/src/components/input-group/input-group-text';
|
|
3
|
-
|
|
4
2
|
export default {
|
|
5
3
|
name: 'GlInputGroupText',
|
|
6
|
-
components: {
|
|
7
|
-
BInputGroupText,
|
|
8
|
-
},
|
|
9
|
-
inheritAttrs: false,
|
|
10
4
|
};
|
|
11
5
|
</script>
|
|
12
6
|
|
|
13
7
|
<template>
|
|
14
|
-
<
|
|
8
|
+
<div class="input-group-text">
|
|
15
9
|
<slot></slot>
|
|
16
|
-
</
|
|
10
|
+
</div>
|
|
17
11
|
</template>
|