github vaadin/flow 8.0.0.alpha2
Vaadin Flow 8.0.0.alpha2

latest releases: 24.4.0.beta2, 24.3.10, 24.4.0.beta1...
pre-release3 years ago

Vaadin Flow 8.0.0.alpha2

Changes in Flow from 8.0.0.alpha1

  • Breaking Changes:

    • Generate nullable TS types for Java types by default. PR:10754. Ticket:8849

      Given a Java class as

      public class Contact {
           private String name = "";
          private Company company;
      }

      the generated TypeScipt properties would be nullable by default, like

       export default interface Contact {
           company?: Company;
           name?: string;
       }

      instead of non-nullable by default, as in previous versions

      export default interface Contact {
          company: Company;
          name: string;
      }
  • New Features:

  • Fixes:

    • Enable use of external css using @import. PR:10953. Ticket:10228

      Add fix for using an external CSS file by having the @import url(...) in a CSS file. Also supports imports with media queries.

    • Use defined version for devDependencies.. PR:10955

    • Binding nullable fields with combo-box throws when clearing. PR:10954

    • Lit imports. PR:10945

      Use imports as recommended and exported by Lit. Files are imported with .js extension (except for package-level import).

  • ⧉ All changes

Don't miss a new flow release

NewReleases is sending notifications on new releases.