dlr-eoc / ukis-frontend-libraries

A collection of angular ui-components, services, interfaces... to help you create geospatial mapping applications for the web.
Apache License 2.0
17 stars 4 forks source link

Fix core UI schematics #211

Closed boeckMt closed 6 months ago

boeckMt commented 6 months ago

PR Checklist

Please check if your PR fulfills the following requirements:

PR Type

What kind of change does this PR introduce?

What is the current behavior?

The @dlr-eoc/core-ui package used a version of parse5-html-rewriting-stream' which exports the module asdefault. This caused an undefined import onconst { RewritingStream } = await loadEsmModule('parse5-html-rewriting-stream')`

[Module: null prototype] {
  default: [class RewritingStream extends SAXParser]
}

What is the new behavior?

This was fixed by a newer version (v7) of `parse5-html-rewriting-stream',

[Module: null prototype] {
  RewritingStream: [class RewritingStream extends SAXParser]
}

So the import works correctly.


Does this PR introduce a breaking change?

Other information

Is it part of one/more packages and which?