Skip to content

Commit 489b7fc

Browse files
author
pipeline
committed
v16.4.42 is released
1 parent aec1662 commit 489b7fc

File tree

169 files changed

+886
-440
lines changed

Some content is hidden

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

169 files changed

+886
-440
lines changed

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

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

components/buttons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-buttons",
3-
"version": "16.2.41",
3+
"version": "16.4.40",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
## [Unreleased]
44

5+
## 16.4.42 (2018-12-10)
6+
7+
### Calendar
8+
9+
#### New Features
10+
11+
- Added the Islamic calendar support.
12+
13+
### DatePicker
14+
15+
#### New Features
16+
17+
- Added the Islamic DatePicker support.
18+
19+
### DateTimePicker
20+
21+
#### New Features
22+
23+
- Added the Islamic DateTimePicker support.
24+
525
## 16.4.40-beta (2018-12-10)
626

727
### DatePicker

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

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

components/calendars/dist/ej2-vue-calendars.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/calendars/dist/es6/ej2-vue-calendars.es2015.js

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

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

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

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

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

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

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

components/calendars/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-calendars",
3-
"version": "16.2.41",
3+
"version": "16.4.40",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/src/calendar/calendar.component.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ComponentBase, EJComponentDecorator } from '@syncfusion/ej2-vue-base';
44
import { Calendar } from '@syncfusion/ej2-calendars';
55

66

7-
export const properties: string[] = ['depth', 'enablePersistence', 'enableRtl', 'firstDayOfWeek', 'isMultiSelection', 'locale', 'max', 'min', 'showTodayButton', 'start', 'value', 'values', 'weekNumber', 'change', 'created', 'destroyed', 'navigated', 'renderDayCell'];
7+
export const properties: string[] = ['calendarMode', 'depth', 'enablePersistence', 'enableRtl', 'firstDayOfWeek', 'isMultiSelection', 'locale', 'max', 'min', 'showTodayButton', 'start', 'value', 'values', 'weekNumber', 'change', 'created', 'destroyed', 'navigated', 'renderDayCell'];
88
export const modelProps: string[] = ['value', 'values'];
99

1010
/**
@@ -25,7 +25,7 @@ export class CalendarComponent extends ComponentBase {
2525
public propKeys: string[] = properties;
2626
public models: string[] = modelProps;
2727
public hasChildDirective: boolean = false;
28-
protected hasInjectedModules: boolean = false;
28+
protected hasInjectedModules: boolean = true;
2929
public tagMapper: { [key: string]: Object } = {};
3030
public tagNameMapper: Object = {};
3131

@@ -98,6 +98,10 @@ export class CalendarComponent extends ComponentBase {
9898
public removeDate(dates: Object | Object[]): void {
9999
return this.ej2Instances.removeDate(dates);
100100
}
101+
102+
public requiredModules(): undefined {
103+
return this.ej2Instances.requiredModules();
104+
}
101105
}
102106

103107
export const CalendarPlugin = {

components/calendars/src/datepicker/datepicker.component.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ComponentBase, EJComponentDecorator } from '@syncfusion/ej2-vue-base';
44
import { DatePicker } from '@syncfusion/ej2-calendars';
55

66

7-
export const properties: string[] = ['allowEdit', 'cssClass', 'depth', 'enablePersistence', 'enableRtl', 'enabled', 'firstDayOfWeek', 'floatLabelType', 'format', 'isMultiSelection', 'locale', 'max', 'min', 'placeholder', 'readonly', 'showClearButton', 'showTodayButton', 'start', 'strictMode', 'value', 'values', 'weekNumber', 'width', 'zIndex', 'blur', 'change', 'close', 'created', 'destroyed', 'focus', 'navigated', 'open', 'renderDayCell'];
7+
export const properties: string[] = ['allowEdit', 'calendarMode', 'cssClass', 'depth', 'enablePersistence', 'enableRtl', 'enabled', 'firstDayOfWeek', 'floatLabelType', 'format', 'isMultiSelection', 'locale', 'max', 'min', 'placeholder', 'readonly', 'showClearButton', 'showTodayButton', 'start', 'strictMode', 'value', 'values', 'weekNumber', 'width', 'zIndex', 'blur', 'change', 'close', 'created', 'destroyed', 'focus', 'navigated', 'open', 'renderDayCell'];
88
export const modelProps: string[] = ['value'];
99

1010
/**
@@ -25,7 +25,7 @@ export class DatePickerComponent extends ComponentBase {
2525
public propKeys: string[] = properties;
2626
public models: string[] = modelProps;
2727
public hasChildDirective: boolean = false;
28-
protected hasInjectedModules: boolean = false;
28+
protected hasInjectedModules: boolean = true;
2929
public tagMapper: { [key: string]: Object } = {};
3030
public tagNameMapper: Object = {};
3131

@@ -111,6 +111,10 @@ export class DatePickerComponent extends ComponentBase {
111111
return this.ej2Instances.removeDate(dates);
112112
}
113113

114+
public requiredModules(): undefined {
115+
return this.ej2Instances.requiredModules();
116+
}
117+
114118
public show(type?: null | string, e?: Object | Object | Object): void {
115119
return this.ej2Instances.show(type, e);
116120
}

0 commit comments

Comments
 (0)