\n \u003C/template>\n \u003Ctemplate #increment>\n \u003CUButton\n :loading=\"loadingInc\"\n variant=\"link\"\n icon=\"i-lucide-plus\"\n @click=\"loadingInc = true\"\n :ui=\"{\n base: 'text-gray-500 hover:text-[var(--ui-color-primary-500)] disabled:text-gray-500 cursor-pointer',\n }\"\n />\n \u003C/template>\n \u003C/UInputNumber>\n````\n\nbest,\ngregor\n\n### Additional context\n\n_No response_",[3179,3180],{"name":3138,"color":3139},{"name":3141,"color":3142},3159,"closed","option to disable on press behaviour for increment/decrement for inputNumber component","2025-05-14T15:41:35Z","https://github.com/nuxt/ui/issues/3159",0.713859,{"description":3188,"labels":3189,"number":3199,"owner":3147,"repository":3148,"state":3182,"title":3200,"updated_at":3201,"url":3202,"score":3203},"### Description\n\nI tried to change the button hover background color but it didn't work:\n`ui({\n ui: {\n button: {\n compoundVariants: [\n {\n color: 'success',\n variant: 'solid',\n class: 'hover:bg-[var(--ui-color-secondary-500)]',\n },\n ],\n },\n },\n }),`",[3190,3193,3194,3197],{"name":3191,"color":3192},"question","d876e3",{"name":3141,"color":3142},{"name":3195,"color":3196},"closed-by-bot","ededed",{"name":3198,"color":3196},"stale",3217,"change default button opacity on hover","2025-08-20T02:09:29Z","https://github.com/nuxt/ui/issues/3217",0.76654047,{"description":3205,"labels":3206,"number":3212,"owner":3147,"repository":3148,"state":3182,"title":3213,"updated_at":3214,"url":3215,"score":3216},"### Environment\n\nhttps://ui.nuxt.com/components/input-number#step\n\n### Is this bug related to Nuxt or Vue?\n\nVue\n\n### Version\n\nv3.1.3\n\n### Reproduction\n\n1. If `step = 2` and I manually set the `value = 3`, the input automatically adjusts the value to `4` (nearest multiple of 2).\n2. If I change the `step = 3` and manually set the `value = 5`, the input automatically adjusts it to `6` (nearest multiple of 3).\n\n### Description\n\nhttps://ui.nuxt.com/components/input-number#step\n\n1. The step should only control the step size when increasing or decreasing the value.\n2. If I set the `value = 3` with `step = 2`, the increments should go as `3, 5, 7, 9, ...` and decrements should go as `3, 1, -1, -3, ...`\n3. The component should not force the value to the nearest multiple of the step.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3207,3210,3211],{"name":3208,"color":3209},"bug","d73a4a",{"name":3141,"color":3142},{"name":3144,"color":3145},4323,"UInputNumber Step - Step should define increment/decrement value, not force multiples","2025-06-25T07:43:40Z","https://github.com/nuxt/ui/issues/4323",0.7705714,{"description":3218,"labels":3219,"number":3223,"owner":3147,"repository":3148,"state":3182,"title":3224,"updated_at":3225,"url":3226,"score":3227},"### Description\n\nAt the moment InputNumber does not react in any way to the presence of ButtonGroup.\n\n\n\n### Additional context\n\n_No response_",[3220,3221,3222],{"name":3138,"color":3139},{"name":3141,"color":3142},{"name":3144,"color":3145},4155,"InputNumber ButtonGroup support","2025-05-15T12:30:59Z","https://github.com/nuxt/ui/issues/4155",0.77254826,{"description":3229,"labels":3230,"number":3236,"owner":3147,"repository":3148,"state":3182,"title":3237,"updated_at":3238,"url":3239,"score":3240},"### Description\n\nA toggle button would be very useful. The closest thing we have is radio group or checkbox group. \nInspired by:\n[VBtnToggle](https://vuetifyjs.com/en/components/button-groups/)\n[VChipGroup](https://vuetifyjs.com/en/components/chip-groups/#usage)\n\nSimilar functionality could be achieved on RadioGroup by making unchecking possible (so null values are selectable)\nAND/OR\nBy adding a v-model to the button component, and model-active variants (so you can change the color, varient, icon, etc when checked). The model would be either a Boolean or an array of values similar to Vuetify.\n\n### Additional context\n\n_No response_",[3231,3234,3235],{"name":3232,"color":3233},"duplicate","cfd3d7",{"name":3138,"color":3139},{"name":3141,"color":3142},4246,"[Button] Toggle / V-Model","2025-05-28T17:19:55Z","https://github.com/nuxt/ui/issues/4246",0.77791476,{"description":3242,"labels":3243,"number":3246,"owner":3147,"repository":3148,"state":3182,"title":3247,"updated_at":3248,"url":3249,"score":3250},"### Description\n\nAfter updating to 3.1.0 \"TableColumn\" cant be imported from @nuxt/ui\nonly from @nuxt/ui/runtime/components/Table.vue.js\n\n",[3244,3245],{"name":3191,"color":3192},{"name":3141,"color":3142},3980,"Bug? TableColumn import type from @nuxt/ui not possible?","2025-04-25T09:44:12Z","https://github.com/nuxt/ui/issues/3980",0.78565544,{"description":3252,"labels":3253,"number":3257,"owner":3147,"repository":3148,"state":3182,"title":3258,"updated_at":3259,"url":3260,"score":3261},"### Description\n\nCurrently, the `formBus (provided via formBusInjectionKey) ` allows child components to trigger validation through events like 'input', 'blur', and 'change'. However, there is no built-in way to clear validation errors for a specific field using `formBus` alone.\n\nIn some cases — such as when a custom component (e.g., a date picker) modifies the value programmatically — we need to:\n\nClear the existing validation error of a field.\n\nRe-validate that field via the bus.\n\nRight now, clearing errors requires access to the `formRef` and calling `.clear(fieldName)`, which is not always possible from deeply nested or abstracted components.\n\n### Additional context\n\nAdd support for a new formBus event type: 'clear', which removes validation errors for a specific field.\n\nExample:\n```\nformBus?.emit({\n type: 'clear',\n name: 'from'\n})\n```\n\nBenefits: \n\n- Enables more flexible field-level error handling.\n- Makes it easier to integrate with custom components.\n- Keeps logic decoupled and avoids requiring formRef in nested components.",[3254,3255,3256],{"name":3138,"color":3139},{"name":3141,"color":3142},{"name":3144,"color":3145},4648,"Support clearing specific field errors via `formBus`","2025-08-04T14:19:18Z","https://github.com/nuxt/ui/issues/4648",0.7858431,["Reactive",3263],{},["Set"],["ShallowReactive",3266],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f7OZ8euJXTNKUoAlNQZNlKY4mjFpe_xd9bBLVNSa-2cU":-1},"/nuxt/ui/4411"]