Skip to content

Releases: AtB-AS/planner-web

v2.25.0

29 Aug 13:43
4a66c68
Compare
Choose a tag to compare

What's changed

New features

Maintenance

Full Changelog: v2.24.0...v2.25.0

v2.24.0

26 Aug 11:31
7d9896d
Compare
Choose a tag to compare

What's changed

New features

Full Changelog: v2.23.0...v2.24.0

v2.23.0

22 Aug 10:26
9080d01
Compare
Choose a tag to compare

What's changed

New features

Bug fixes

Full Changelog: v2.22.0...v2.23.0

v2.22.0

07 Aug 06:16
11f12cd
Compare
Choose a tag to compare

What's changed

New features

  • feat: changes time and date input to react-aria (#317) @mikaelbr

Bug fixes

Full Changelog: v2.21.2...v2.22.0

v2.21.2

02 Aug 07:11
54a9684
Compare
Choose a tag to compare

What's changed

Bug fixes

Full Changelog: v2.21.1...v2.21.2

v2.21.1

02 Aug 06:47
11535e2
Compare
Choose a tag to compare

What's changed

Bug fixes

Maintenance

Full Changelog: v2.21.0...v2.21.1

v2.21.0

27 Jun 08:11
c9d7bc3
Compare
Choose a tag to compare

What's changed

New features

Bug fixes

Full Changelog: v2.20.2...v2.21.0

v2.20.2

11 Jun 10:36
9250257
Compare
Choose a tag to compare

What's changed

Bug fixes

Technical chores

Full Changelog: v2.20.1...v2.20.2

v2.20.1

05 Jun 13:55
1a037c6
Compare
Choose a tag to compare

What's changed

Full Changelog: v2.20.0...v2.20.1

v2.20.0

05 Jun 12:17
0b8b54e
Compare
Choose a tag to compare

What's changed

New features in Widget

  • feat: extend widget with optional single column layout (#296) @jonasbrunvoll
  • feat: adds the option to use an inherited font in the widget (#295) @mikaelbr

Example use of new features:

<script>
  // Ensure that url base is same origin as the page where
  // widget is loaded and the travel planner API
  const widget = window.PlannerWeb.createWidget({
    urlBase: 'https://reiseplanlegger.example.no/',
    language: 'nn', // supports 'nb', 'nn' and 'en'

    // Optional options
    outputOverrideOptions: {
      // Inherit font from page website.
      // By default it uses Roboto as the hosted planner web solution.
      inheritFont: false,
      // Use single column design of widget layout
      singleColumnLayout: false,
    },
  });

  // After loading JS and CSS file it can be initialized
  // using the following code:
  widget.init();
</script>

Chores

Other changes that is not yet visible in the UI

Full Changelog: v2.19.0...v2.20.0