Skip to content

Releases: boris-jenicek/ngx-awesome-popup

3.2.0

22 Oct 21:56
Compare
Choose a tag to compare

Added

  • custom buttons: disable / enable
    example:
    this.dialogBelonging.buttons[1].disable();
    this.dialogBelonging.buttons[1].enable();
  • custom buttons: hide / show
    example:
    this.dialogBelonging.buttons[1].hide();
    this.dialogBelonging.buttons[1].show();

3.1.4

22 Oct 20:34
Compare
Choose a tag to compare

Fixed:

  • Global config issue #35

3.1.3

17 Jan 22:34
Compare
Choose a tag to compare

Minor fixes

3.1.2

17 Jan 22:24
Compare
Choose a tag to compare

Minor fixes

3.1.1

17 Jan 16:46
Compare
Choose a tag to compare

Refactored:

  • compiled with Ivy compiler

Added

  • service to evoke Toast (simplification)
  • service to evoke Confirmation box (simplification)

Full Changelog: 3.0.1...3.1.1

3.0.1

28 Dec 21:31
Compare
Choose a tag to compare

Fixed:

  • Animation warning on chrome
  • Escape key closing functionality on dialog module
  • Minor fixes

Refactored:

  • Animations are made more smooth

Added

  • Fadeout animation

Full file Changelog: 3.0.0...3.0.1

3.0.0

23 Dec 00:01
Compare
Choose a tag to compare

Fixed:

  • Toast notification fails when appearing animation is set to disabled #25

Breaking change:

(new!) Mandatory from version 3.0.0 is to include theme styles in a project.

There are 2 options to include the theme in your project

  1. Add library css into your angular.json under the styles array:

"styles": ["node_modules/@costlydeveloper/ngx-awesome-popup/styles/theme.css"]

  1. Import theme SCSS to your root SCSS style file styles.scss:

@import "node_modules/@costlydeveloper/ngx-awesome-popup/styles/theme";

To ensure maximal adaptability and speed there is no longer any css in the package bundle. It needs to be included in the project separately as in the example above or made your own style. Feel free to clone scss folder from our Github repo directly to your project, use it as the template for your styles.

RELEASED FEATURES:

2.2.0

24 Nov 21:29
Compare
Choose a tag to compare

Added:

API for custom styling, it can be used as global config as well as applied to any individual popup.
take a look at CustomStyles property at the following Documentation:

Fixed:

  • toast disappears on mouse hover (thanks to @Li-Yuanyuan) #19
  • full-screen dialog option, on some mobile devices.

2.1.2

16 Nov 09:46
Compare
Choose a tag to compare

-minor fixes

2.1.1

16 Nov 07:40
Compare
Choose a tag to compare

-minor fixes