All Versions
88
Latest Version
Avg Release Cycle
18 days
Latest Release
-

Changelog History
Page 3

  • v0.9.2 Changes

    August 21, 2020

    ๐Ÿ†• New features

    • โž• Add group-label and group-options prop to autocomplete and taginput
    • โž• Add support to vnode array on programmatic component using message prop
    • โž• Add defaultTooltipDelay constructor option
    • โž• Add contextmenu event to tooltip triggers
    • โž• Add alt, src-fallback and error prop to image (thanks @service-paradis)
    • โž• Add append staticClass to tooltip when append-to-body

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix #2759 overlay on table when loading
    • ๐Ÿ›  Fix #2767 restore v-html on programmatic component (dialog, snackbar, toast, modal, loading, notification)
    • ๐Ÿ›  Fix #2773 remove select-arrow-color in order to use Bulma input-arrow sass variable
    • ๐Ÿ›  Fix #2774 datepicker weekday names by locale
    • ๐Ÿ›  Fix #2778 tooltip using append-to-body and always (thanks @jacenre)
    • ๐Ÿ›  Fix #2783 unclickable content on tooltip
    • ๐Ÿ›  Fix #2789 space on menu-item
    • ๐Ÿ›  Fix #2791 right margin on number input (thanks @user501254)
    • ๐Ÿ›  Fix taginput default height in order to be compliant with Bulma 0.8.x breaking changes
  • v0.9.1 Changes

    August 18, 2020

    ๐Ÿ†• New features

    • โž• Add is-expanded class to menu item (thanks @btkostner)

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix #2750 internal html to vdom using programmatic components
    • ๐Ÿ›  Fix #2751 table props index value
    • ๐Ÿ›  Fix #2752 incorrect base css
    • ๐Ÿ›  Fix #2753 field type when addons
    • ๐Ÿ›  Fix #2761 close tooltip when delay
    • ๐Ÿ›  Fix indeterminate watcher in progress (thanks @service-paradis)
  • v0.9.0 Changes

    August 16, 2020

    ๐Ÿ’ฅ Breaking changes

    Vue.js 2.6+ is now the minimum required version

    Bulma 0.8.0 and 0.9.0

    Table , new default slot and table column syntax

    From

    \<b-table :data="myData"\>\<template slot-scope="props"\>\<b-table-column field="name" label="Name"\> {{ props.row.name }} \</b-table-column\>\<b-table-column field="age" numeric label="Age"\> {{ props.row.age }} \</b-table-column\>\</template\>\</b-table\>
    

    To

    \<b-table :data="myData"\>\<b-table-column field="name" label="Name" v-slot="props"\> {{ props.row.name }} \</b-table-column\>\<b-table-column field="age" label="Age"\>\<template v-slot:default="props"\> {{ props.row.age }} \</template\>\</b-table-column\>\</b-table\>
    

    โž• Add triggers prop and remove hoverable prop to dropdown

    โž• Add placeholder option to number inputs removing default value 0 (thanks @rcoundon)

    ๐Ÿ‘‰ Show check-all checkbox when table cards

    Refacor carousel and carousel list and removing config prop too (thanks @Tofandel)

    โž• Add position prop and default alignment to skeleton (thanks @EmmanuelVlad)

    Replace is-active with active prop to navbar

    0๏ธโƒฃ Replace default value of defaultDatepickerYearsRange constructor option from [-100, 3] to [-100, 10]

    ๐Ÿ— Build with condense option to avoid leading/trailing whitespaces

    SVG:

    • $icon-svg-width: auto !default;

    - $icon-svg-height: auto !default;

    Internationalization , Buefy is now using Intl package to format dates and numbers A prop named locale which accept a BCP 47 language tag have been added to some components. The default value for this prop is undefined which will use the browser locale. It can affect the following components:

    • Progress:
      • Intl is used to format the displayed value
    • Rate
      • Intl is used to format the displayed score
    • Datepicker and Datetimepicker:
      • Intl is used to get month names
      • Intl is used to get week day names
      • Intl is used to format the displayed date(s)
      • Intl is used to parse the given date when editable
    • Timepicker, Clockpicker and Datetimepicker
      • Intl is used to get separators
      • Intl is used to format the displayed time

      - Intl is used to parse the given date when editable

    ๐Ÿ”ง Configuration

    • defaultTrapFocus is now true. It can affect the following components:
      • Datepicker
      • Dialog
      • Dropdown
      • Modal
    • defaultLocale
      • Default value is undefined, which means it will use the user browser locale
      • It accept a string with a BCP 47 language tag, or an array of such strings (see Unicode BCP 47 locale identifier).
    • monthNames
      • Default value is now undefined. It will use the given locale (default to browser locale) to get localized month names
    • dayNames

      - Default value is now undefined. It will use the given locale (default to browser locale) to get localized day names

    ๐Ÿ‘‰ Use KeyboardEvent.key instead of keyCode. It can affect the following component:

    • Taginput:
      • remove-on-keys default is now ["Backspace"] instead of [8]
      • confirm-key-codes is now called confirm-keys and the default is [",", "Enter"] instead of [13, 188]

    ๐Ÿ†• New features

    • ๐Ÿ†• New component: Image , see docs
    • ๐Ÿ”€ .sync deprecated (except of table), use v-model but you can use .sync until next breaking version
    • 0๏ธโƒฃ #1953 Add promise support to dialog using defaultPromiseProgrammatically constructor options
    • #2553 Add trigger slot to datepicker, timepicker and datetimepicker
    • #2568 Hide content message when empty slot
    • 0๏ธโƒฃ #2577 Add defaultStatusIcon constructor option and status-icon prop to field
    • โž• Add icon-size prop to menu item (thanks @cyberShaw)
    • โž• Add debounce-search prop to table (thanks @Sc0ra)
    • โž• Add reset-on-meridian-change to timepicker (thanks @taverasady)
    • โž• Add close-icon to tag (thanks @kaangokdemir)
    • โž• Add close-type to tag input (thanks @kaangokdemir)
    • โž• Add header-class prop to tab item and step item (thanks @Tofandel)
    • โž• Add exponential prop to number input (thanks @Tofandel)
    • โž• Add defaultTabsType and defaultTabsExpanded constructor options (thanks @wrabit)
    • ๐Ÿ‘Œ Improve handle events for customElement components (thanks @vvkk77)
    • ๐Ÿ”จ Refactor components (table, tabs, steps, carousel, etc) using provide/inject

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix XSS on programmatic components
    • ๐Ÿ›  Fix #1226 and #2658 using message with fields addons and groups
    • ๐Ÿ›  Fix #2196 carousel v-model sync using arrow navigation buttons (thanks @Tofandel)
    • ๐Ÿ›  Fix #2518 set Autocomplete focus on clear
    • ๐Ÿ›  Fix #2584 default table sort when backend
    • ๐Ÿ›  Fix #2591 carousel does not continue to slide even pause-hover is false (thanks @Tofandel)
    • ๐Ÿ›  Fix #2599 disabled select and input have different colors
    • ๐Ÿ›  Fix #2608 taginput wrong value when allow-duplicates is false (thanks @nithesh247)
    • ๐Ÿ›  Fix #2631 table with sticky searchable column
    • ๐Ÿ›  Fix #2647 progress bar truncate whole number zeroes
    • ๐Ÿ›  Fix #2683 datepicker lost focus using arrow keys
    • ๐Ÿ›  Fix #2684 timepicker hour check using unselectable-dates
    • ๐Ÿ›  Fix #2639 datepicker clone before formatter
    • ๐Ÿ›  Fix #2706 number input steps (thanks @rcoundon)
    • ๐Ÿ›  Fix #2707 autocomplete index error using arrow keys
    • ๐Ÿ›  Fix #2725 open autocomplete when focused
    • ๐Ÿ›  Fix #2732 upload emit input when same file
    • ๐Ÿ›  Fix #2738 regex check when searchable table
    • ๐Ÿ‘Œ Improve datepicker a11y on older browsers (#2641)
  • v0.8.20 Changes

    May 25, 2020

    ๐Ÿ†• New features

    • โž• Add close-on-confirm prop to dialog (thanks @kaangokdemir)
    • โž• Add bulma-css-vars extension to docs (thanks @wtho)

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix typo activeStep variable (thanks @speedpro)
    • ๐Ÿ›  Fix #2518 open autocomplete on clearable icon when open-on-focus
  • v0.8.19 Changes

    May 17, 2020

    ๐Ÿ†• New features

    • โž• Add value prop to tabs-item and steps-item
    • โž• Add size prop to skeleton
    • โž• Add passive-type prop for switch (thanks @kaangokdemir)
    • #2507 icon-right get higher priority than status icon on input
    • #2513 add cursor pointer to pickers when not editable

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix #2499 remove prevent click on carousel slide
    • ๐Ÿ›  Fix #2501 set type when vertical on steps (thanks @service-paradis)
    • ๐Ÿ›  Fix #2503 searchable table column slot
    • ๐Ÿ›  Fix #2504 display on skeletons (thanks @EmmanuelVlad)
    • ๐Ÿ›  Fix #2509 keep table search filtering when data are updated (thanks @VictorCazanave)
    • ๐Ÿ›  Fix #2514 radio-button and checkbox-button style

    Thanks @roy20021 for vetur tags script !

  • v0.8.18 Changes

    May 10, 2020

    ๐Ÿ†• New features

    • โž• Add message slot to field
    • โž• Add scrollable and max-height to dropdown (thanks @franciscoh017)
    • โž• Add rounded prop to skeleton
    • โž• Add mobile-mode prop and $steps-mobile-max-width SCSS variable to step
    • โž• Add expand-on-hover-fixed prop to sidebar
    • โž• Add expanded prop to upload (thanks @kaangokdemir)
    • โž• Add close-type prop to tag (thanks @kaangokdemir)
    • โž• Add defaultTabsAnimated constructor options
    • #2474 Add icon-click event to autcomplete
    • #2487 Add native event as second parameter of select event on autocomplete

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix security (XSS) on message field
    • ๐Ÿ›  Fix taginput shallow copy in watcher (thanks @lunfel)
    • ๐Ÿ›  Fix #2456 double message when field horizontal and multiple fields
    • ๐Ÿ›  Fix #2459 checkbox, radio, switch group on mobile
    • ๐Ÿ›  Fix #2469 keep sort during search
    • ๐Ÿ›  Fix #2485 datepicker and timepicker default shadow when not editable
    • ๐Ÿ›  Fix #2489 dropdown item padding on mobile when has-link
    • ๐Ÿ›  Fix #2493 clean hovered on select option (autocomplete and taginput)
  • v0.8.17 Changes

    April 25, 2020

    ๐Ÿ†• New features

    • โž• Add types to ConfigProgrammatic

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix #2438 create modal content only when is active
  • v0.8.16 Changes

    April 22, 2020

    ๐Ÿ†• New features

    • ๐Ÿ†• New component: Skeleton , see docs
    • โž• Add destroy-on-hide prop to modal
    • โž• Add searchable slot to table (thanks @service-paradis)
    • โž• Add icon-right prop to autocomplete
    • โž• Add vertical and rounded props to steps (thanks @service-paradis)
    • โž• Add step prop to step item (thanks @service-paradis)
    • โž• Add card-layout prop to table
    • โž• Add is-row-selectable prop to table

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix icon type to account for colors that are hyphenated (thanks @BrauBeast)
    • ๐Ÿ›  Fix width of options menu when autocomplete on taginput
    • ๐Ÿ›  Fix #2156 focus on tag remove
    • ๐Ÿ›  Fix #2211 check only one tab selected at once (thanks @service-paradis)
    • ๐Ÿ›  Fix #2328, #2358 slider resize (thanks @service-paradis)
    • ๐Ÿ›  Fix #2364 close sidebar when is not overlay
    • ๐Ÿ›  Fix #2371 clean hovered after select
    • ๐Ÿ›  Fix #2381 label-position when position is right
    • ๐Ÿ›  Fix #2425 reactive data on carousel list
  • v0.8.15 Changes

    March 31, 2020

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix check whitelist on fixed sidebar
    • ๐Ÿ›  Fix static sidebar on press esc key
  • v0.8.14 Changes

    March 31, 2020

    ๐Ÿ†• New features

    • ๐Ÿ†• New component: Sidebar , see docs
    • โž• Add append-to-body prop to dropdown, autocomplete, datepicker, timepicker and datetimepicker
    • โž• Add dropdown-position prop to dropdown
    • โž• Add collapsible prop to navbar dropdown

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fix switch elastic animation for non-rounded (thanks @service-paradis)
    • ๐Ÿ›  Fix #1666 native validation on datepicker
    • ๐Ÿ›  Fix #2317 default icon prev and next (thanks @service-paradis)
    • ๐Ÿ›  Fix #2325 native validation on autocomplete
    • ๐Ÿ›  Fix #2336 animation on tabs when vertical (top - bottom)