MySQL documentation states "Names of keys must be double-quoted strings or valid ECMAScript identifiers". As a rule of thumb, if the property contains a hyphen, then the property should have quotes surrounding it.
Searching for "$.order.order-id"
becomes "$.order.\"order-id\""
.
In implementations, custom Form.IO components can be registered in the AppModule
like so:
...
export class AppModule {
constructor(injector: Injector) {
// function to register custom component
registerFormioUploadComponent(injector);
}
}
The use of these custom components is only possible if Form.IO is imported through FormIoModule
from
@valtimo/components
. Additional imports of Form.IO - for example through FormioModule
from @formio/angular
-
breaks the use of these custom components.
Version 18.8.4
of @types/node
leads to errors in implementations. Lock the version to 18.8.3
.
Version 4.14.3
of swagger-ui
leads to errors in implementations. Lock the version to 4.12.0
.