Skip to content

v0.8.0

Compare
Choose a tag to compare
@edcarroll edcarroll released this 04 Jun 02:50
· 453 commits to master since this release

The component you've all been waiting for has finally arrived - ng2-semantic-ui now supports modals. Head over to the docs for a guide on how to implement them.

The next few releases before hitting 1.0.0 are going to be about ensuring consistency between components & improving documentation, however there is room for further feature updates - watch this space.

  • Modal (new component) (closes #78)
    • Supports creating modals from both templates & existing components
      • This allows for 'one off' modals, as well as creating generic modals such as an accept / reject dialog
    • Supports automatically opening modals (for modals as routes)
    • Fully supports semantic UI styling, e.g. size, close buttons, full screen, transitions etc
    • Modals exit with approve or deny events, and can be fully controlled from component's code
  • Popup
    • Added popupDelay setting, controls delay between popup triggered & popup shown
    • Added popupOptions setting, allows batch configuration of a single popup
    • Added ability to set popup defaults globally, using SuiPopupConfig service
  • Collapse
    • Fixed issue where height would not auto adjust on screen resize (closes #81)
  • Accordion
    • Added transition setting, specifies the transition applied to panel content when opening & closing
  • Dimmer
    • Fixed issue where dimmer would not honour custom transition durations
  • Transition
    • Updated to Renderer2 to avoid deprecation warnings with future Angular builds (thanks to @piotrn1)
      • All references to Renderer when extending SuiTransition must be replaced with Renderer2 BREAKING