@syncfusion/ej2-calendars
Advanced tools
Comparing version 18.4.34 to 18.4.35
@@ -5,2 +5,4 @@ # Changelog | ||
## 18.4.34 (2021-01-12) | ||
### DateTimePicker | ||
@@ -7,0 +9,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 18.4.34 | ||
* version : 18.4.35 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-calendars@*", | ||
"_id": "@syncfusion/ej2-calendars@18.4.31", | ||
"_id": "@syncfusion/ej2-calendars@18.4.34", | ||
"_inBundle": false, | ||
"_integrity": "sha512-BuND76opZEvFh6LzNyoLwfFglTpoWFuDZlVU5XuRQIohgr3xHxL0OvDDs43xab7cQSgJboXT/zmm0PsRmdbi0g==", | ||
"_integrity": "sha512-ZwY1FBtUlgcTVjtG+WYlXO7CvJEZT6ZcMy309xcKM44YPuV8TElIpvWuaPMJyCxb/9MStVgA3DHt5hj0yrKHxQ==", | ||
"_location": "/@syncfusion/ej2-calendars", | ||
@@ -35,4 +35,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-calendars/-/ej2-calendars-18.4.31.tgz", | ||
"_shasum": "eab3c0271f9f16dd05bdd1f83051e67da8b97796", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-calendars/-/ej2-calendars-18.4.34.tgz", | ||
"_shasum": "aee4624ef3208c294f97482dd77eadcb42d3bcb4", | ||
"_spec": "@syncfusion/ej2-calendars@*", | ||
@@ -85,4 +85,4 @@ "_where": "/jenkins/workspace/automation_release_18.4.0.1-WOJ6QVY6EU5ONBWOYGQFKS2VU2UW7E67MOXUPKCE5AX7QQX7M5JQ/packages/included", | ||
"typings": "index.d.ts", | ||
"version": "18.4.34", | ||
"version": "18.4.35", | ||
"sideEffects": false | ||
} |
import { Component, EventHandler, Internationalization, ModuleDeclaration, isBlazor } from '@syncfusion/ej2-base';import { INotifyPropertyChanged, KeyboardEvents, L10n } from '@syncfusion/ej2-base';import { NotifyPropertyChanges, KeyboardEventArgs, BaseEventArgs } from '@syncfusion/ej2-base';import { cldrData, getDefaultDateObject, rippleEffect } from '@syncfusion/ej2-base';import { createElement, removeClass, detach, closest, addClass, attributes } from '@syncfusion/ej2-base';import { getValue, getUniqueID, extend, Browser } from '@syncfusion/ej2-base';import { Property, Event, EmitType, isNullOrUndefined, throwError } from '@syncfusion/ej2-base';import { Islamic, IslamicDateArgs } from './index'; | ||
import {CalendarType,CalendarView,DayHeaderFormats,NavigatedEventArgs,RenderDayCellEventArgs,ChangedEventArgs} from "./calendar"; | ||
import {CalendarType,CalendarView,WeekRule,DayHeaderFormats,NavigatedEventArgs,RenderDayCellEventArgs,ChangedEventArgs} from "./calendar"; | ||
import {ComponentModel} from '@syncfusion/ej2-base'; | ||
@@ -115,2 +115,9 @@ | ||
/** | ||
* Specifies the rule for defining the first week of the year. | ||
* | ||
* @default FirstDay | ||
*/ | ||
weekRule?: WeekRule; | ||
/** | ||
* Specifies whether the today button is to be displayed or not. | ||
@@ -117,0 +124,0 @@ * @default true |
@@ -14,2 +14,6 @@ import { Component, Internationalization, ModuleDeclaration } from '@syncfusion/ej2-base'; | ||
/** | ||
* Specifies the rule for defining the first week of the year. | ||
*/ | ||
export declare type WeekRule = 'FirstDay' | 'FirstFullWeek' | 'FirstFourDayWeek'; | ||
/** | ||
* | ||
@@ -156,2 +160,8 @@ * @private | ||
/** | ||
* Specifies the rule for defining the first week of the year. | ||
* | ||
* @default FirstDay | ||
*/ | ||
weekRule: WeekRule; | ||
/** | ||
* Specifies whether the today button is to be displayed or not. | ||
@@ -158,0 +168,0 @@ * @default true |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
8457395
86429