From 317a9f04e4948aea249479cd9ed1f45265b69cd1 Mon Sep 17 00:00:00 2001 From: Kikuo Emoto Date: Mon, 25 Mar 2024 13:23:36 +0900 Subject: [PATCH 1/4] feat(lib): add compat-fallthrough prop to Numberinput - `Numberinput` introduces a new prop `compat-fallthrough` which determines if the `class`, `style`, and `id` attributes are applied to the root `
` element or the underlying `` component. Since Vue 3 changed the fallthrough behavior, `Numberinput` became incompatible with that of Buefy for Vue 2. The default value of this prop is determined by the `defaultCompatFallthrough` config option that is `true` by default (compatible with Buefy for Vue 2). --- .../src/components/numberinput/Numberinput.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/packages/buefy-next/src/components/numberinput/Numberinput.vue b/packages/buefy-next/src/components/numberinput/Numberinput.vue index 90e447b50..88ca532c1 100644 --- a/packages/buefy-next/src/components/numberinput/Numberinput.vue +++ b/packages/buefy-next/src/components/numberinput/Numberinput.vue @@ -1,5 +1,9 @@