Fix default theme
The default theme currently does not work due to the following error:
Error: lib/common/src/share-data/modal/plain/share-plain-data-modal.component.html:3:2 - error NG8002: Can't bind to 'colorCategory' since it isn't a known property of 'rcc-full-page-modal-style-layout'.
1. If 'rcc-full-page-modal-style-layout' is an Angular component and it has 'colorCategory' input, then verify that it is part of this module.
2. If 'rcc-full-page-modal-style-layout' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
3 [colorCategory]="mode === 'receive' ? 'receive' : 'share'"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lib/common/src/share-data/modal/plain/share-plain-data-modal.component.ts:23:16
23 templateUrl: './share-plain-data-modal.component.html',
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component SharePlainDataModalComponent.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
2 [colorCategory]="category(queryControl)"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lib/features/src/queries/query-view/query-view.component.ts:24:17
24 templateUrl: './query-view.component.html',
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component QueryViewComponent.
** Angular Live Development Server is listening on localhost:4200, open your browser on https://localhost:4200/ **
× Failed to compile.
Edited by Noel Simmel