Skip to content

Commit 5dfdd2d

Browse files
authored
Merge branch '7.2.x' into mvenkov/autoscrollstrategy-outisde-ngzone
2 parents d514ecd + 910f67c commit 5dfdd2d

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

projects/igniteui-angular/src/lib/core/displayDensity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { InjectionToken, Input, Output, EventEmitter, DoCheck } from '@angular/c
44
/**
55
* Defines the posible values of the components' display density.
66
*/
7-
export const enum DisplayDensity {
7+
export enum DisplayDensity {
88
comfortable = 'comfortable',
99
cosy = 'cosy',
1010
compact = 'compact'

projects/igniteui-angular/src/lib/core/enums.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* This enumeration is used to configure whether the date/time picker has an editable input with drop down
33
* or is readonly - the date/time is selected only through a dialog.
44
*/
5-
export const enum InteractionMode {
5+
export enum InteractionMode {
66
DropDown = 'dropdown',
77
Dialog = 'dialog'
88
}

projects/igniteui-angular/src/lib/date-picker/date-picker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export interface IFormatOptions {
105105
* 'longDate': equivalent to 'MMMM d, y' (June 15, 2015).
106106
* 'fullDate': equivalent to 'EEEE, MMMM d, y' (Monday, June 15, 2015).
107107
*/
108-
export const enum PredefinedFormatOptions {
108+
export enum PredefinedFormatOptions {
109109
ShortDate = 'shortDate',
110110
MediumDate = 'mediumDate',
111111
LongDate = 'longDate',

projects/igniteui-angular/src/public_api.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,5 @@ export { CancelableEventArgs, CancelableBrowserEventArgs } from './lib/core/util
9393
export { changei18n, getCurrentResourceStrings, IResourceStrings } from './lib/core/i18n/resources';
9494
export { IGridResourceStrings } from './lib/core/i18n/grid-resources';
9595
export { ITimePickerResourceStrings } from './lib/core/i18n/time-picker-resources';
96-
export * from './lib/date-picker/date-picker.utils';
9796
export { InteractionMode } from './lib/core/enums';
9897

0 commit comments

Comments
 (0)