@gitlab/ui 112.3.3 → 113.0.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,17 @@
|
|
|
1
|
+
# [113.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v112.3.3...v113.0.0) (2025-04-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **GlForm:** remove BForm from GlForm ([5f2e51b](https://gitlab.com/gitlab-org/gitlab-ui/commit/5f2e51b5917c18268b82e51c7e808885ec82b2ae))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* **GlForm:** `id` and `novalidate` should now be passed as
|
|
12
|
+
attributes, not props. `inline` and `validated` props are no
|
|
13
|
+
longer supported.
|
|
14
|
+
|
|
1
15
|
## [112.3.3](https://gitlab.com/gitlab-org/gitlab-ui/compare/v112.3.2...v112.3.3) (2025-04-22)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -1,20 +1,16 @@
|
|
|
1
|
-
import { BForm } from '../../../vendor/bootstrap-vue/src/components/form';
|
|
2
1
|
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
3
2
|
|
|
4
3
|
//
|
|
4
|
+
|
|
5
5
|
var script = {
|
|
6
|
-
name: 'GlForm'
|
|
7
|
-
components: {
|
|
8
|
-
BForm
|
|
9
|
-
},
|
|
10
|
-
inheritAttrs: false
|
|
6
|
+
name: 'GlForm'
|
|
11
7
|
};
|
|
12
8
|
|
|
13
9
|
/* script */
|
|
14
10
|
const __vue_script__ = script;
|
|
15
11
|
|
|
16
12
|
/* template */
|
|
17
|
-
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('
|
|
13
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('form',_vm._g({},_vm.$listeners),[_vm._t("default")],2)};
|
|
18
14
|
var __vue_staticRenderFns__ = [];
|
|
19
15
|
|
|
20
16
|
/* style */
|
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
A wrapper element for `gl-form-*` input elements. Supports `@submit` and `@reset` events
|
|
2
|
-
|
|
1
|
+
A wrapper element for `gl-form-*` input elements. Supports `@submit` and `@reset` events.
|
|
2
|
+
To disable native HTML validation pass the `novalidate` attribute.
|
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
<!-- eslint-disable vue/multi-word-component-names -->
|
|
2
2
|
<script>
|
|
3
|
-
import { BForm } from '../../../vendor/bootstrap-vue/src/components/form';
|
|
4
|
-
|
|
5
3
|
export default {
|
|
6
4
|
name: 'GlForm',
|
|
7
|
-
components: {
|
|
8
|
-
BForm,
|
|
9
|
-
},
|
|
10
|
-
inheritAttrs: false,
|
|
11
5
|
};
|
|
12
6
|
</script>
|
|
13
7
|
<template>
|
|
14
|
-
<
|
|
8
|
+
<form v-on="$listeners">
|
|
15
9
|
<slot></slot>
|
|
16
|
-
</
|
|
10
|
+
</form>
|
|
17
11
|
</template>
|