@syncfusion/ej2-buttons
Advanced tools
Comparing version 23.1.36 to 23.1.39
@@ -9,2 +9,10 @@ # Changelog | ||
- `#I505814` - The issue with "Script error thrown in CheckBox While using the change event in React" has been resolved. | ||
## 23.1.36 (2023-09-15) | ||
### Checkbox | ||
#### Bug Fixes | ||
- `#I483250` - The issue with "CheckBox not working in IE 11" has been resolved. | ||
@@ -11,0 +19,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 23.1.36 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
* version : 23.1.39 | ||
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved. | ||
* Use of this code is subject to the terms of our license. | ||
@@ -6,0 +6,0 @@ * A copy of the current license can be obtained at any time by e-mailing |
{ | ||
"_from": "@syncfusion/ej2-buttons@*", | ||
"_id": "@syncfusion/ej2-buttons@18.64.0", | ||
"_id": "@syncfusion/ej2-buttons@23.1.36", | ||
"_inBundle": false, | ||
"_integrity": "sha512-shI90VRRpuzOH1HM8f2r5n9PFIrZ0o02LpaSzbqGsrzRNRrMGQaSDZ5hjmAoXHWjDOFi9ssNpPUnaNVRI2pVdw==", | ||
"_integrity": "sha512-jHITeqLp9bu7RsoNYxyhDWNkrcKXhR6dH2kNn5999C2ueUyEvDTJCxsZvIcDbTsz+1P7G8cUSv2R0nIBdwYYRw==", | ||
"_location": "/@syncfusion/ej2-buttons", | ||
@@ -47,4 +47,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-buttons/-/ej2-buttons-18.64.0.tgz", | ||
"_shasum": "06174470d3a964551315e6e75534ab37a8b7be53", | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-buttons/-/ej2-buttons-23.1.36.tgz", | ||
"_shasum": "4ef765ae304d62f30621cf7fb8bb15ef27dcb064", | ||
"_spec": "@syncfusion/ej2-buttons@*", | ||
@@ -60,3 +60,3 @@ "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~23.1.36" | ||
"@syncfusion/ej2-base": "~23.1.38" | ||
}, | ||
@@ -107,4 +107,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "23.1.36", | ||
"version": "23.1.39", | ||
"sideEffects": false | ||
} |
@@ -71,4 +71,6 @@ var __extends = (this && this.__extends) || (function () { | ||
if (state === 'check') { | ||
frameSpan.classList.remove(INDETERMINATE); | ||
frameSpan.classList.add(CHECK); | ||
if (frameSpan) { | ||
frameSpan.classList.remove(INDETERMINATE); | ||
frameSpan.classList.add(CHECK); | ||
} | ||
if (rippleSpan) { | ||
@@ -89,3 +91,5 @@ rippleSpan.classList.remove(RIPPLEINDETERMINATE); | ||
else if (state === 'uncheck') { | ||
removeClass([frameSpan], [CHECK, INDETERMINATE]); | ||
if (frameSpan) { | ||
removeClass([frameSpan], [CHECK, INDETERMINATE]); | ||
} | ||
if (rippleSpan) { | ||
@@ -105,4 +109,6 @@ removeClass([rippleSpan], [RIPPLECHECK, RIPPLEINDETERMINATE]); | ||
else { | ||
frameSpan.classList.remove(CHECK); | ||
frameSpan.classList.add(INDETERMINATE); | ||
if (frameSpan) { | ||
frameSpan.classList.remove(CHECK); | ||
frameSpan.classList.add(INDETERMINATE); | ||
} | ||
if (rippleSpan) { | ||
@@ -109,0 +115,0 @@ rippleSpan.classList.remove(RIPPLECHECK); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10024545
208905