Skip to content

v3.2.0

Compare
Choose a tag to compare
@furcan furcan released this 07 Nov 19:47
· 33 commits to main since this release
  • Added: Notiflix.Confirm.* module: The .prompt() method has been added. (#42)

    • Notiflix.Confirm.prompt() method works similarly as window.prompt(). The client doesn't have to type a correct answer to the input element to proceed unlike the Notiflix.Confirm.ask() method. The client answer passes to the callback functions as a parameter and this parameter is always a string.
  • Added: Notiflix.Loading.* module: The customSvgCode option has been added for Notiflix.Loading.custom(); method. The default is null. A text-based (string) SVG icon can be set to this option. Single quotation marks should be avoided.

  • Fixed: index.d.ts: IConfirmOptions interface: zindex property type has been fixed.

  • Removed: index.d.ts: Following types have been removed:

    • TNotiflixCallback
    • TNotifyCallbackOrOptions
    • TReportCallbackOrOptions
    • TLoadingMessageOrOptions
    • TBlockMessageOrOptions
    • TBlockSelectorOrHTMLElements
  • Added: index.d.ts: Namespaces, Functions, and Interfaces: Comments have been added for IntelliSense.

  • Changed: Code Review/Refactor.