@gitlab/ui 105.0.0 → 105.0.1

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.0.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v105.0.0...v105.0.1) (2024-12-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **GlFormCheckbox:** checked state with non-boolean value ([eb28dd3](https://gitlab.com/gitlab-org/gitlab-ui/commit/eb28dd37fcfb934a9e1c820b4ce09fd51d781d49)), closes [/gitlab.com/gitlab-org/gitlab-ui/-/merge_requests/4863#note_2236852320](https://gitlab.com//gitlab.com/gitlab-org/gitlab-ui/-/merge_requests/4863/issues/note_2236852320)
7
+
1
8
  # [105.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v104.2.0...v105.0.0) (2024-12-05)
2
9
 
3
10
 
@@ -190,10 +190,6 @@ const formRadioCheckMixin = extend({
190
190
  const $content = this.normalizeSlot();
191
191
  const $input = h('input', {
192
192
  class: ['custom-control-input', this.stateClass],
193
- directives: [{
194
- name: 'model',
195
- value: this.computedLocalChecked
196
- }],
197
193
  attrs: this.computedAttrs,
198
194
  domProps: {
199
195
  value: this.value,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "105.0.0",
3
+ "version": "105.0.1",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -192,7 +192,6 @@ export const formRadioCheckMixin = extend({
192
192
 
193
193
  const $input = h('input', {
194
194
  class: ['custom-control-input', this.stateClass],
195
- directives: [{ name: 'model', value: this.computedLocalChecked }],
196
195
  attrs: this.computedAttrs,
197
196
  domProps: {
198
197
  value: this.value,