tab-panel-options.d.ts 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. import DevExpress from 'devextreme/bundles/dx.all';
  15. export declare abstract class DxoTabPanelOptions extends NestedOption {
  16. accessKey: string;
  17. activeStateEnabled: boolean;
  18. animationEnabled: boolean;
  19. dataSource: DevExpress.data.DataSource | DevExpress.data.DataSourceOptions | string | Array<string | DevExpress.ui.CollectionWidgetItem>;
  20. deferRendering: boolean;
  21. disabled: boolean;
  22. elementAttr: any;
  23. focusStateEnabled: boolean;
  24. height: number | Function | string;
  25. hint: string;
  26. hoverStateEnabled: boolean;
  27. itemHoldTimeout: number;
  28. items: Array<string | any | {
  29. badge?: string;
  30. disabled?: boolean;
  31. html?: string;
  32. icon?: string;
  33. tabTemplate?: any;
  34. template?: any;
  35. text?: string;
  36. title?: string;
  37. }>;
  38. itemTemplate: any;
  39. itemTitleTemplate: any;
  40. loop: boolean;
  41. noDataText: string;
  42. onContentReady: Function;
  43. onDisposing: Function;
  44. onInitialized: Function;
  45. onItemClick: Function | string;
  46. onItemContextMenu: Function;
  47. onItemHold: Function;
  48. onItemRendered: Function;
  49. onOptionChanged: Function;
  50. onSelectionChanged: Function;
  51. onTitleClick: Function | string;
  52. onTitleHold: Function;
  53. onTitleRendered: Function;
  54. repaintChangesOnly: boolean;
  55. rtlEnabled: boolean;
  56. scrollByContent: boolean;
  57. scrollingEnabled: boolean;
  58. selectedIndex: number;
  59. selectedItem: any;
  60. showNavButtons: boolean;
  61. swipeEnabled: boolean;
  62. tabIndex: number;
  63. visible: boolean;
  64. width: number | Function | string;
  65. }