@syncfusion/ej2-base 31.2.5 → 31.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/syncfusion-license.js +1 -1
- package/dist/ej2-base.min.js +2 -2
- package/dist/ej2-base.umd.min.js +2 -2
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +2 -0
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +2 -0
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +2 -2
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/validate-lic.js +2 -0
|
@@ -7092,9 +7092,11 @@ function convertToChar(cArr) {
|
|
|
7092
7092
|
* @returns {void}
|
|
7093
7093
|
*/
|
|
7094
7094
|
function registerLicense(key) {
|
|
7095
|
+
key = window.syncfusionLicenseKey ? window.syncfusionLicenseKey : key;
|
|
7095
7096
|
licenseValidator = new LicenseValidator(key);
|
|
7096
7097
|
}
|
|
7097
7098
|
const validateLicense = (component, key) => {
|
|
7099
|
+
key = window.syncfusionLicenseKey ? window.syncfusionLicenseKey : key;
|
|
7098
7100
|
if (key) {
|
|
7099
7101
|
registerLicense(key);
|
|
7100
7102
|
}
|