Skip to content

Releases: open-pioneer/trails-core-packages

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Patch Changes

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Minor Changes

  • e3802fb: Introduce NumberParserService for parsing strings to numbers in the application's current locale.
  • ac39468: Introducing an error screen that is shown in case of hard errors on app start.

Patch Changes

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Patch Changes

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Patch Changes

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Patch Changes

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Minor Changes

  • e4ba048: Introduce new convenience methods on the NotificationService in addition to the existing notify() method:

    const notifier = ...; // injected
    notifier.success(/* ... */)
    notifier.info(/* ... */)
    notifier.warning(/* ... */)
    notifier.error(/* ... */)

Patch Changes

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Patch Changes

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Patch Changes

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Patch Changes

@open-pioneer/[email protected]

05 Dec 15:12
46550b3
Compare
Choose a tag to compare

Minor Changes

  • e3802fb: Introduce the NumberParser class for parsing strings in a specified locale.

    import { NumberParser } from "@open-pioneer/core";
    
    const parser = new NumberParser("de-DE");
    const number = parser.parse("1.234,56");

Patch Changes