calendar-options.d.ts 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*!
  2. * devextreme-angular
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. *
  8. * This software may be modified and distributed under the terms
  9. * of the MIT license. See the LICENSE file in the root of the project for details.
  10. *
  11. * https://github.com/DevExpress/devextreme-angular
  12. */
  13. import { NestedOption } from '../../../core/nested-option';
  14. export declare abstract class DxoCalendarOptions extends NestedOption {
  15. accessKey: string;
  16. activeStateEnabled: boolean;
  17. cellTemplate: any;
  18. dateSerializationFormat: string;
  19. disabled: boolean;
  20. disabledDates: Function | Array<Date>;
  21. elementAttr: any;
  22. firstDayOfWeek: number | string;
  23. focusStateEnabled: boolean;
  24. height: number | Function | string;
  25. hint: string;
  26. hoverStateEnabled: boolean;
  27. isValid: boolean;
  28. max: Date | number | string;
  29. maxZoomLevel: string;
  30. min: Date | number | string;
  31. minZoomLevel: string;
  32. name: string;
  33. onDisposing: Function;
  34. onInitialized: Function;
  35. onOptionChanged: Function;
  36. onValueChanged: Function;
  37. readOnly: boolean;
  38. rtlEnabled: boolean;
  39. showTodayButton: boolean;
  40. tabIndex: number;
  41. validationError: any;
  42. validationMessageMode: string;
  43. value: Date | number | string;
  44. visible: boolean;
  45. width: number | Function | string;
  46. zoomLevel: string;
  47. }