Skip to content

Commit ee6d7f1

Browse files
author
pipeline
committed
v18.3.35 is released
1 parent 84f9afe commit ee6d7f1

File tree

151 files changed

+1009
-485
lines changed

Some content is hidden

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

151 files changed

+1009
-485
lines changed

components/barcodegenerator/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 18.3.35 (2020-10-01)
6+
7+
### Barcode
8+
9+
#### Bug Fixes
10+
11+
- `#278404` - "Ean-13 barcode not rendering" issue has been fixed.
12+
513
## 18.1.43 (2020-04-07)
614

715
### Barcode

components/base/CHANGELOG.md

-29
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,6 @@
22

33
## [Unreleased]
44

5-
## 18.2.59 (2020-09-21)
6-
7-
- `I231451` - Resolved the issue in child directives with no content or empty attributes.
8-
- `I287706` - Resolved script error while changing value in test environment.
9-
10-
## 18.2.57 (2020-09-08)
11-
12-
### Common
13-
14-
#### Bug Fixes
15-
16-
- `I287706` - Resolved script error while changing value in test environment.
17-
18-
## 18.2.45 (2020-07-14)
19-
20-
### Common
21-
22-
#### Bug Fixes
23-
24-
- `I262885` - Resolved the memory leak issue.
25-
26-
## 18.2.44 (2020-07-07)
27-
28-
### Common
29-
30-
#### Bug Fixes
31-
32-
- Resolved property change called after a certain timeout issue,
33-
345
## 17.4.47 (2020-02-05)
356

367
### Common

components/base/dist/ej2-vue-base.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/ej2-vue-base.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-vue-base.es2015.js

+2-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-vue-base.es2015.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-vue-base.es5.js

+2-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-vue-base.es5.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/global/blazor/vuebase.js

+2-9
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ var ComponentBase = /** @class */ (function (_super) {
164164
var ret = {};
165165
if (tagDirective.componentOptions) {
166166
var dirTag = tagDirective.componentOptions.tag;
167-
if (typeof tagKey === 'string' && dirTag === tagKey && tagDirective.data) {
168-
ret = tagDirective.data.attrs ? this.getCamelCaseProps(tagDirective.data.attrs) : this.getCamelCaseProps(tagDirective.data);
167+
if (typeof tagKey === 'string' && dirTag === tagKey && tagDirective.data && tagDirective.data.attrs) {
168+
ret = this.getCamelCaseProps(tagDirective.data.attrs);
169169
}
170170
else if (typeof tagKey === 'object') {
171171
if (tagDirective.componentOptions.children && (Object.keys(tagKey).indexOf(dirTag) !== -1)) {
@@ -345,13 +345,6 @@ function compile(templateElement, helper) {
345345
returnEle = ele.childNodes;
346346
sf.base.detach(ele);
347347
}
348-
else {
349-
var templateVue = new Vue(tempObj.template);
350-
templateVue.$data.data = sf.base.extend(tempObj.data, data);
351-
templateVue.$mount('#' + id);
352-
returnEle = ele.childNodes;
353-
sf.base.detach(ele);
354-
}
355348
return returnEle || [];
356349
};
357350
}

0 commit comments

Comments
 (0)