0.8.1 (2023-04-10)
Features
- BAlert: add closeVariant prop (bd0c9e2)
- BFormRadio & BFormCheckbox: external controls through v-model when in a group will cause parentData to update on their changes (9a8139f)
- BReadcrumbItemObject: uses RouteLocationRaw for 'to' (9a8139f)
- export directive vBModal fixes #1005 (7aa0abd)
Bug Fixes
- $attrs explicit inheritance on single root components fixes #1010 (0de3a7c)
- BFormCheckbox & BFormRadio: size & buttonVariant is initially undefined, but has a default in class usage -- this allows for you to use parentData & also overwrite parentData when you want one specific to have size/buttonVariant fixes #1012 (590a9fd)
- BFormRadio & BFormCheckbox: nextTick the change emit... This was being emitted before the emit update, causing odd behavior fixes #1011 (590a9fd)
- BFormRadioGroup: set default modelValue to null. Fixes #1003 (1e196fd)
- BFormTags: shouldRemoveOnDelete being set in onMounted cb, causing a false value in between the time of being onMounted, and after the onMounted cb finishes (590a9fd)
- BModal: buttonVariants with incorrect type as ColorVariant, when they should be ButtonVariant (bd0c9e2)
- BModal: isActive default value is modelValue, rather than false -> (then onMounted) is set to modelValue --- elimintating a 'waiting issue' of being set to false, then onMounted set to it's correct value (590a9fd)
- BModal: set focus when initial modelValue is true (590a9fd)
- BOffcanvas: focus not being applied at correct times -- should be focused after the animation, (during the animation, it would not apply focus) (590a9fd)
- BOffcanvas: isActive being set in onMounted cb, as to be in the wrong state in between onMounted and the finishing of the onMounted cb (590a9fd)
- circumvent 'activeValue' on group items and replace it with direct modelValue updates fixes #1009 (1e196fd)
- expose BTable refresh method (cb10d72)
- precision typo (37351cf)
- remove onUnmounted methods from group items fixes #1007 (1e196fd)
- useFormCheck/getClasses: class form-control-{size} getting incorrectly applied when value is a button fixes #857 (e8219f2)
- useFormCheck/getGroupClasses: don't apply btn-group-vertical when not buttons (4cdad44)
Reverts
- BFormSelect: don't change BFormSelect just yet. (a21156b)