Hi Tonathiu,
Greetings from Syncfusion Support.
Query 1: Is there a way we can use an static library instead of (npm install cldr-data --save)? So we can import this externally.
We have validated your reported scenario at our side and let you know that, there is no way to use an library file instead of (npm install cldr-data --save). But we can include and use the required library files inside the project like the below code snippet
import * as numberingSystems from './localization/supplemental/numberingSystems.json';
import * as gregorian from './localization/main/ta/ca-gregorian.json';
import * as numbers from './localization/main/ta/numbers.json';
import * as timeZoneNames from './localization/main/ta/timeZoneNames.json'; |
Query 2: same question above but for any Syncfusion component and without CDN. We want to keep the control of the versions statically in our server.
We can maintain the components version statically through the package.json like the below code snippet.
"dependencies": {
"@syncfusion/ej2-vue-buttons": "*",
"@syncfusion/ej2-vue-calendars": "*",
"@syncfusion/ej2-vue-dropdowns": "*",
"@syncfusion/ej2-vue-navigations": "*",
"@syncfusion/ej2-vue-schedule": "*"
}, |
Kindy try the above sample and let us know if you need further assistance.
Regards,
Balasubramanian S