Hi All,
I'm trying to apply one of the default themes in my Angular 13.2.0 Web App using the following surveyjs library version:
Code"survey-angular-ui": "^1.9.110",
"survey-core": "^1.9.110",
"survey-pdf": "^1.9.110",
from the documentation I read that it is enough to set these imports in the component that hosts the library instance but it seems that it is not enough:
Codeimport { Model } from 'survey-core';
import "survey-core/themes/doubleborder-light"; // { DoubleBorderLight }
This is my styles part of the angular.json file:
Code"styles": [
{
"input": "src/custom-theme.scss"
},
"src/styles.css",
"node_modules/survey-core/defaultV2.min.css"
],
Simply the library continue to use the default standard theme, whatever I try to set in the import. I also tried in Incognito Window to check if it was a cache problem but nothing.
Many thanks in advance for your help.
Paolo