Skip to content

0.3.0

Choose a tag to compare

@jcwillox jcwillox released this 31 Jul 14:36

Changes

  • Added a repeat option to the hold_action (closes #8)

  • Added tooltips to buttons, this will be inferred from the action/entity but can be overridden or disabled using the tooltip option (closes #17)

  • Added a base_config option, you can now specify a base config that will be deep-merged with each buttons config. Buttons can override the base config (closes #5)

  • Added the ability to embed paper-buttons-row inside other enitity-rows (docs)

  • base_style and base_state_styles are now deprecated as their functionality has been replaced by base_config. They will be removed in 0.4.0

# example (deprecated)
base_style:
  button:
    border-radius: 10px
    font-size: 16px

# should become
base_config:
  style:
    button:
      border-radius: 10px
      font-size: 16px

Fixes

  • The action handler is now embedded inside Paper Button Row (fixes #16, #18)

All changes
  • Update docs (491b4a7)
  • Add repeat option (a79623d)
  • Embed action-handler within the plugin (5185a2e)
  • Add ability to embed within other entity rows (711896c)
  • Add tooltips (8433bc3)
  • Add base_config option (5d69cec)