Skip to content

Commit f886452

Browse files
author
pipeline
committed
v16.4.52 is released
1 parent 13a1e27 commit f886452

File tree

2,107 files changed

+151082
-90094
lines changed

Some content is hidden

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

2,107 files changed

+151082
-90094
lines changed

controls/base/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,22 @@
22

33
## [Unreleased]
44

5-
## 17.1.1-beta (2019-01-22)
5+
## 16.4.52 (2019-02-05)
66

77
### Common
88

99
#### Bug Fixes
1010

1111
- Fixed `e-control` class removed after control refresh issue.
1212

13+
## 16.3.30 (2018-10-31)
14+
15+
### Common
16+
17+
#### Bug Fixes
18+
19+
- Fixed `exporting issue` while complex field value is null.
20+
1321
## 16.3.29 (2018-10-31)
1422

1523
### Common

controls/base/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,5 @@ Check the license detail [here](https://github.com/syncfusion/ej2-base/blob/mast
9999

100100
Check the changelog [here](https://ej2.syncfusion.com/documentation/release-notes?utm_source=npm&utm_campaign=ej2-base)
101101

102-
© Copyright 2018 Syncfusion, Inc. All Rights Reserved.
102+
© Copyright 2019 Syncfusion, Inc. All Rights Reserved.
103103
The Syncfusion Essential Studio license and copyright applies to this distribution.

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: 0 additions & 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.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: 0 additions & 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.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.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": "16.3.29",
3+
"version": "16.4.47",
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/module-loader.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,21 @@
44
import { createInstance, setValue, getValue, deleteObject } from './util';
55
const MODULE_SUFFIX: string = 'Module';
66

7+
/**
8+
* Interface for module declaration.
9+
*/
710
export interface ModuleDeclaration {
11+
/**
12+
* Specifies the args for module declaration.
13+
*/
814
args: Object[];
15+
/**
16+
* Specifies the member for module declaration.
17+
*/
918
member: string;
19+
/**
20+
* Specifies whether it is a property or not.
21+
*/
1022
isProperty?: boolean;
1123
}
1224
export interface IParent {

0 commit comments

Comments
 (0)