All Versions
57
Latest Version
Avg Release Cycle
10 days
Latest Release
559 days ago

Changelog History
Page 4

  • v0.11.0 Changes

    February 15, 2022
    • 0๏ธโƒฃ Heroicons.Solid icons size defaults to "w-5 h-5" as recommended in their docs
    • โšก๏ธ Form inputs no longer show errors before they have been touched by the user. To get this to work, I had to remove the error classes off the inputs themselves, so they no longer turn red on error by default. However, you can turn this back on by adding these rules to your app.css file (we will update the install docs with this):
    label.has-error:not(.phx-no-feedback) {
      @apply !text-red-900 dark:!text-red-200;
    }
    
    textarea.has-error:not(.phx-no-feedback), input.has-error:not(.phx-no-feedback), select.has-error:not(.phx-no-feedback) {
      @apply !border-red-500 focus:!border-red-500 !text-red-900 !placeholder-red-700 !bg-red-50 dark:!text-red-100 dark:!placeholder-red-300 dark:!bg-red-900;
    }
    
    input[type=file_input].has-error:not(.phx-no-feedback) {
      @apply !border-red-500 !rounded-md focus:!border-red-500 !text-red-900 !placeholder-red-700 !bg-red-50 file:!border-none dark:!border-none dark:!bg-[#160B0B] dark:text-red-400;
    }
    
    input[type=checkbox].has-error:not(.phx-no-feedback) {
      @apply !border-red-500 !text-red-900 dark:!text-red-200;
    }
    
    input[type=radio].has-error:not(.phx-no-feedback) {
      @apply !border-red-500;
    }
    
  • v0.10.8 Changes

    February 15, 2022
    • ๐Ÿ›  Fixed <.link> emitting white spaces
  • v0.10.7 Changes

    February 14, 2022
    • ๐Ÿ›  Fixed white button background
  • v0.10.6 Changes

    February 14, 2022
    • โœ‚ Removed pure_white button shadow variant and fixed white bg for shadow
  • v0.10.5 Changes

    February 11, 2022
    • ๐Ÿ›  Fixed Heroicons sometimes failing
  • v0.10.4 Changes

    February 10, 2022
    • ๐Ÿ›  Fixed card_media not working properly on Safari
  • v0.10.3 Changes

    February 03, 2022
    • โž• Added <.card_footer> for content you would like fixed to the bottom of a card
    • Added category_color_class to <.card_content> so that you can customize category colors
  • v0.10.2 Changes

    January 29, 2022
    • <.h1>, <.h2> etc now turn into those underlying html elements (h1, h2 etc)
    • <.card_media> utilises Tailwinds aspect-ratio classes
    • ๐Ÿ›  Fix <.card> class assigns appearing twice
  • v0.10.1 Changes

    January 26, 2022
    • Buttons can now take custom classes
  • v0.10.0 Changes

    January 26, 2022
    • [BREAKING CHANGE] Rename alert property "state" to "color"
    • โž• Add checkbox_group form field type
    • ๐Ÿ›  Fix z-index issue with dropdown
    • โšก๏ธ Update Alert colors
    • โž• Add icons to badges