Skip to content

Commit 0be8bbe

Browse files
author
pipeline
committed
v18.3.40 is released
1 parent ee6d7f1 commit 0be8bbe

File tree

97 files changed

+404
-80
lines changed

Some content is hidden

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

97 files changed

+404
-80
lines changed

components/barcodegenerator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-barcode-generator",
3-
"version": "18.2.44",
3+
"version": "18.3.35",
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. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 18.3.40 (2020-10-13)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `F158454` - Resolved the peer dependency warning issues.
12+
- `I285745` - Resolved the StartDate returns null issue in vue.
13+
514
## 17.4.47 (2020-02-05)
615

716
### 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

+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.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

+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.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-4
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ function EJcomponentFactory(Component, options) {
231231
(options.props || (options.props = {}))[prop] = {};
232232
(options.watch || (options.watch = {}))[prop] = function (newVal) {
233233
this.ej2Instances[prop] = newVal;
234-
if (this.dataBind) {
234+
if (this.dataBind && (options.name !== 'DateRangePickerComponent')) {
235235
this.dataBind();
236236
}
237237
};
@@ -364,7 +364,5 @@ exports.compile = compile;
364364
return exports;
365365

366366
});
367-
sfBlazor.libs.push("vuebase")
368-
sfBlazor.loadDependencies(["vue","base"], () => {
367+
369368
sf.vuebase = sf.vuebase({});
370-
});

0 commit comments

Comments
 (0)