Skip to content

Commit ce9c576

Browse files
author
pipeline
committed
v17.3.9-beta is released
1 parent bb72e26 commit ce9c576

File tree

1,417 files changed

+217833
-58242
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,417 files changed

+217833
-58242
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
### Modular architecture
1919
All components have been built as modules to enable selective referencing, so only the components and features you need are included in your application.
2020
### Built for performance
21-
Performance is critical for delivering a good user experience. We ensure that all our JS components are designed and built to achieve the best performance possible.
21+
Performance is critical for delivering a good user experience. We ensure that all our components are designed and built to achieve the best performance possible.
2222
### Responsive and touch friendly
2323
All Essential JS 2 controls are touch friendly and render adaptively based on the device they are on to provide optimal usage experience on phones, tablets and desktops.
2424
### Stunning built-in themes
@@ -106,7 +106,7 @@
106106
* Viewer
107107
* [PDF Viewer](https://www.syncfusion.com/javascript-ui-controls/js-pdf-viewer?utm_medium=listing&utm_source=npm&utm_campaign=ej2-common-npm) - [*Live demo*](https://ej2.syncfusion.com/demos/#/material/pdfviewer/default.html)
108108

109-
## Supported JavaScript UI Frameworks
109+
## Supported Frameworks
110110
* [Angular](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=npm&utm_campaign=ej2-common-npm)
111111
* [React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=npm&utm_campaign=ej2-common-npm)
112112
* [Vue.js](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=npm&utm_campaign=ej2-common-npm)

controls/barcodegenerator/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-barcode-generator",
3-
"version": "17.2.47",
3+
"version": "17.2.48",
44
"description": "Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/base/dist/ej2-base.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/ej2-base.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-base.es2015.js

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-base.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-base.es5.js

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-base.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/global/ej2-base.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/global/ej2-base.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "17.2.47",
3+
"version": "17.2.49",
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/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ export * from './touch-model';
2424
export * from './template-engine';
2525
export * from './util';
2626
export * from './dom';
27-
export * from './observer';
27+
export * from './observer';

controls/base/src/intl/date-formatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,4 +250,4 @@ export class DateFormat {
250250
);
251251

252252
}
253-
}
253+
}

controls/base/src/observer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import { isNullOrUndefined, getValue, extend } from './util';
32
/**
43
* Observer is used to perform event handling based the object.

controls/base/src/template-engine.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ export interface ITemplateEngine {
3232
export function compile(templateString: string, helper?: Object): (data: Object | JSON, component?: any, propName?: any) => NodeList {
3333
let compiler: Function = engineObj.compile(templateString, helper);
3434
//tslint:disable-next-line
35-
return (data: Object, component?: any, propName?: any, templateId?: any, isStringTemplate?: boolean, index?: number): NodeList => {
35+
return (data: Object, component?: any, propName?: any, templateId?: any,
36+
isStringTemplate?: boolean, index?: number, isSvg?: boolean): NodeList => {
3637
let result: object = compiler(data, component, propName);
3738
let blazor: string = 'Blazor'; let blazorTemplateId: string = 'BlazorTemplateId';
3839
if (window && window[blazor] && !isStringTemplate) {
@@ -56,9 +57,12 @@ export function compile(templateString: string, helper?: Object): (data: Object
5657
blazorTemplates[templateId].push(data);
5758
}
5859
// tslint:disable-next-line:no-any
59-
return propName === 'rowTemplate' ? [createElement('tr', { id: blazorId, className: 'e-blazor-template' })] as any :
60+
return isSvg ? [createElement('g', { id: blazorId, className: 'e-blazor-template' })] as any :
6061
// tslint:disable-next-line:no-any
61-
[createElement('div', { id: blazorId, className: 'e-blazor-template' })] as any;
62+
propName === 'rowTemplate' ? [createElement('tr', { id: blazorId, className: 'e-blazor-template' })] as any :
63+
// tslint:disable-next-line:no-any
64+
[createElement('div', { id: blazorId, className: 'e-blazor-template' })] as any;
65+
6266

6367
}
6468
if (typeof result === 'string') {

controls/buttons/dist/ej2-buttons.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/ej2-buttons.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es2015.js

Lines changed: 36 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es5.js

Lines changed: 36 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/es6/ej2-buttons.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/global/ej2-buttons.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/dist/global/ej2-buttons.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/buttons/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-buttons",
3-
"version": "17.2.47",
3+
"version": "17.2.48",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/buttons/spec/switch.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,6 @@ describe('Switch', () => {
327327
specSwitch = new Switch({}, '#ngswitch');
328328
expect(specSwitch.element.parentElement.tagName).toEqual('EJS-SWITCH');
329329
expect(specSwitch.element.parentElement.children[0].tagName).toEqual('INPUT');
330-
specSwitch.element.click();
331330
specSwitch.destroy();
332331
expect((document.getElementById('ngswitch')).tagName).toBe('EJS-SWITCH');
333332
specSwitch = new Switch({}, document.body.appendChild(createElement('input')) as HTMLInputElement);

0 commit comments

Comments
 (0)