Skip to content

Releases: mkocansey/bladewind

v2.5.4

17 Mar 19:19
d99cc11
Compare
Choose a tag to compare
  • Added week_starts option to specify first day of the week for Datepicker.

v2.5.3

17 Mar 16:59
63dd374
Compare
Choose a tag to compare
  • Fixed #208
  • Made border_width=2 the default outline button border width.
  • Added ring_width for defining focus ring widths.

v2.5.2

17 Mar 01:45
94f8c69
Compare
Choose a tag to compare
  • Cleaned up dark mode styling for all components
  • Added clearable to the Input component. Allows users to clear text from an input field.
  • Improved the searching through table rows.
  • Added timer to the Verification code component. Counts down to display a 'send verification code again' link.
  • Added two more styles to the Tab component. Choosing a style is done using the style attribute.
  • Cleaned up the Avatar rings.
  • Added href attribute to circular buttons (courtesy @HarriFent ).
  • Cleaned up Notification component design.

v2.5.1

13 Mar 02:55
47b1c5e
Compare
Choose a tag to compare
  • Fixed broken action icons in dynamic tables.
  • Added has_border attribute to the table component.
  • Improved the table row hover effect.
  • Better display of the table component in mobile view.
  • Display a suitable message when there is no dynamic data to display in the table.
  • Added icon and icon_css attributes to the modal component to allow using of custom icons in the modal.
  • Added align_buttons attribute to the modal component to allow for easy positioning of the action buttons.
  • Improved the overall appearance of the modal component.
  • Added minimum and maximum values for numeric input. Example: an input collecting age for adult content should allow a minimum of 16.
  • Fixed icons in notification component

v2.5.0

10 Mar 04:09
31235c8
Compare
Choose a tag to compare

This is the first major release in the year. Let's dive straight in to the updates.

Dropmenu Component

The Dropmenu component got an overdue major overhaul.

  • The component is looking much cleaner
  • You can use any Heroicons icon as the trigger. trigger="bell-icon"
  • You can either trigger the menu on click or mouseover. trigger_on="mouseover"
  • You can define headers and dividers in the menu
  • The menu items can be positioned either to the left or right of the trigger. position="right"
  • Menu items can be confined in a scrollable area if scrollable="true"
  • Icons in the menu can all be right aligned. icon_right="true"
  • It is possible to either close or not close the menu after an item is clicked. hide_after_click="true"

Alert Component

  • Alerts are no longer limited to error, info, warning and success. Alerts can use any of the twelve colours supported in Bladewind.
  • There's a new transparent alert type
  • You can use any Heroics icon as the alert icon.
  • You can use avatars as the alert icon.

Button Component

  • @BeBel42 provided a fix for secondary buttons not utilising the colors.secondary variable defined in the tailwind.config.js.
  • Introduced outline icons

Tag Component

  • introduced tiny tags

Timeline Component

The component got a major overhaul

  • Cleaned up the design
  • Any Heroicons icon can be used as the anchor icon
  • Avatars can be used as the anchor icon
  • Timelines automatically centre themselves in their parent element
  • You can position the timeline to the left or centre

Others

  • Added 3 more colours to the colour palette bringing the colour choices to twelve. The new colours are Violet, Indigo and Fuchsia. All components that support multiple colours have been updated with the new colours.
  • Fixed #187
  • Added a roadmap and contribution guide
  • Redesigned the documentation website

v2.4.5

14 Feb 13:15
6f9a88c
Compare
Choose a tag to compare

This update, courtesy @sorrell, fixes Javascript errors displayed when in strict mode. #183

v2.4.4

22 Dec 16:09
8d9d4d5
Compare
Choose a tag to compare

In this update:

  • It is now possible to filter one select component based on the value selected in another select component. (#165)
  • Tabbing in a modal cycles through the elements in the tab only (#151)

v2.4.3

01 Dec 12:37
286ebec
Compare
Choose a tag to compare

This update fixes #169

v2.4.2

29 Nov 12:27
dc7750e
Compare
Choose a tag to compare

This update reverts to the older version of the modal icons and provides a fix for the action buttons when in Stretched mode.

v2.4.1

28 Nov 15:48
5ac1fe7
Compare
Choose a tag to compare

This update focuses on the Modal component.

  • Introduced a top right close icon on modals. This is not visible by default. You will need to set show_close_icon="true" to make it visible. This close button acts the same way as the Cancel button in the footer of the modal.
  • Added two attributes to make it easier to inject your own custom css into the body and footer of the modals. body_css and footer_css. As usual this accepts any of the TailwindCSS utility classes.
  • Fixed modals not closing when you press the escape key.
  • Unified the modal icons to make all of them rounded. Since the Alert component uses the same icons, the changes affected the icons there too.