Skip to content

Commit 05bc454

Browse files
author
pipeline
committed
v20.4.48 is released
1 parent c565462 commit 05bc454

File tree

1,573 files changed

+22963
-6655
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,573 files changed

+22963
-6655
lines changed

controls/base/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 20.4.48 (2023-02-01)
6+
7+
### Dashboard Layout
8+
9+
#### Bug Fixes
10+
11+
- `#I423971` - Provided cancel option in Drag Start and Drag Stop events of the Dashboard Layout component.
12+
13+
### Common
14+
15+
#### Bug Fixes
16+
17+
- `#I424071` - The issue with the "Tooltip component throws a script error when setting content as '${}'" has been resolved.
18+
519
## 20.4.44 (2023-01-18)
620

721
### Common

controls/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-base",
3-
"version": "20.4.42",
3+
"version": "20.4.44",
44
"description": "A common package of Essential JS 2 base libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/base/src/draggable.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,10 @@ export interface DragEventArgs {
159159
* Specifies the current target element.
160160
*/
161161
target?: HTMLElement;
162+
/**
163+
* 'true' if the drag or drop action is to be prevented; otherwise false.
164+
*/
165+
cancel?: boolean;
162166
}
163167

164168
/**

controls/base/src/template.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,9 @@ function evalExp(str: string, nameSpace: string, helper?: Object, ignorePrefix?:
217217
cnt = '"+' + NameSpaceForspecialChar(cnt, (localKeys.indexOf(cnt) === -1), nameSpace, localKeys) + '"]+"';
218218
} else {
219219
// evaluate normal expression
220-
cnt = '"+' + addNameSpace(
220+
cnt = cnt !== '' ? '"+' + addNameSpace(
221221
cnt.replace(/,/gi, '+' + nameSpace + '.'),
222-
(localKeys.indexOf(cnt) === -1), nameSpace, localKeys, ignorePrefix) + '+"';
222+
(localKeys.indexOf(cnt) === -1), nameSpace, localKeys, ignorePrefix) + '+"' : ' ';
223223
}
224224
}
225225
return cnt;

controls/base/src/validate-lic.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ class LicenseValidator {
1818
public platform: RegExp = /JavaScript|ASPNET|ASPNETCORE|ASPNETMVC|FileFormats/i;
1919
private errors: IErrorType = {
2020
noLicense: '<span>This application was built using a trial version of Syncfusion Essential Studio.' +
21-
' You should include the valid license key to remove the license validation message permanently.</span>',
21+
' To remove the license validation message permanently, a valid license key must be included.</span>',
2222
trailExpired: '<span>This application was built using a trial version of Syncfusion Essential Studio.' +
23-
' You should include the valid license key to remove the license validation message permanently.</span>',
23+
' To remove the license validation message permanently, a valid license key must be included.</span>',
2424
versionMismatched: '<span>The included Syncfusion license key is invalid.</span>',
2525
platformMismatched: '<span>The included Syncfusion license key is invalid.</span>',
2626
invalidKey: '<span>The included Syncfusion license key is invalid.</span>'

controls/base/themestudio/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ latest: "bootstrap5"
3838

3939
![fluent](images/fluent.png)
4040

41-
2. **gulp compile-themes**, gulp task will get all scss files from dist folder and then generated with respective css files for our themes.
41+
2. **gulp styles-compile**, gulp task will get all scss files from dist folder and then generated with respective css files for our themes.
4242

4343
3. Then we can use this generated css files in our demos and check the styles for our components. To check the samples run the **gulp test-samples** gulp task to run the local samples.
4444

controls/base/themestudio/styles/buttons/check-box/_layout.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,10 @@
192192
}
193193
}
194194

195+
.e-checkbox-wrapper[readonly] {
196+
pointer-events: none;
197+
}
198+
195199
.e-small .e-checkbox-wrapper,
196200
.e-small.e-checkbox-wrapper,
197201
.e-small .e-css.e-checkbox-wrapper,

controls/base/themestudio/styles/dropdowns/multi-select/_bootstrap-dark-definition.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ $ddl-sel-chip-close-mobile-left: 17px !default;
8888
$ddl-chip-sel-mobile-close-height: 40px !default;
8989
$ddl-chip-sel-mobile-close-margin: 0 0 0 0 !default;
9090
$ddl-input-text-indent: 6px !default;
91+
$ddl-input-placeholder-padding: 0 0 0 12px !default;
9192
$ddl-rtl-chip-sel-close-left: -10px !default;
9293
$ddl-popup-active-focus-bg-color: $brand-primary !default;
9394
$ddl-popup-active-focus-font-color: $brand-primary-font !default;

controls/base/themestudio/styles/dropdowns/multi-select/_bootstrap-definition.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ $ddl-sel-chip-close-mobile-left: 17px !default;
8787
$ddl-chip-sel-mobile-close-height: 40px !default;
8888
$ddl-chip-sel-mobile-close-margin: 0 0 0 0 !default;
8989
$ddl-input-text-indent: 6px !default;
90+
$ddl-input-placeholder-padding: 0 0 0 12px !default;
9091
$ddl-rtl-chip-sel-close-left: -10px !default;
9192
$ddl-popup-active-focus-bg-color: $brand-primary !default;
9293
$ddl-popup-active-focus-font-color: $brand-primary-font !default;

controls/base/themestudio/styles/dropdowns/multi-select/_bootstrap4-definition.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ $ddl-sel-chip-close-mobile-left: 17px !default;
9090
$ddl-chip-sel-mobile-close-height: 40px !default;
9191
$ddl-chip-sel-mobile-close-margin: 0 0 0 0 !default;
9292
$ddl-input-text-indent: 6px !default;
93+
$ddl-input-placeholder-padding: 0 0 0 8px !default;
9394
$ddl-rtl-chip-sel-close-left: -10px !default;
9495
$ddl-popup-active-focus-bg-color: $primary !default;
9596
$ddl-popup-active-focus-font-color: $primary-font !default;

0 commit comments

Comments
 (0)