- Add Korean translations [Cheon Park]
- Allow toolbars to be cleared when defining toolbar blocks
toolbar(:primary).clear!
# or
toolbar(:primary, clear: true) do |t|
t.button ...
end
- Add support for dropdowns within toolbar buttons
toolbar(:primary) do |t|
# Buttons and links render a split button dropdown (primary button plus toggle)
t.button "Button" do |d|
d.header "Dropdown Header"
d.link "Dropdown Link", "#"
d.divider
end
t.link "Button link", "#" do |d|
d.link "Dropdown Link", "#"
end
# Dropdowns render an integrated button dropdown (primary button triggers the dropdown)
t.dropdown "Dropdown" do |d|
d.link "Dropdown Link", "#"
end
end
- Add support for dynamically defined scopes
scopes do
Tag.all do |tag|
scope tag.name, -> { Post.tagged(tag) }
end
end
- Allow navigation
menu
blocks to access controller methods
- Add
config.favicon
to set favicon within admin
- Disable browser autocompletion on password fields
- Updated styles for dropups, dropdown groups and select group headers
- Allow
id
and data
attributes to be passed to panel
helper
- Fix i18n of confirmation popovers
- Fix error when
:en
locale is unavailable
- Fix inline JS when Content Security Policy is enabled
- Fix select form helper when choices passed as a string