button-options.d.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 DxoButtonOptions extends NestedOption {
  15. accessKey: string;
  16. activeStateEnabled: boolean;
  17. disabled: boolean;
  18. elementAttr: any;
  19. focusStateEnabled: boolean;
  20. height: number | Function | string;
  21. hint: string;
  22. hoverStateEnabled: boolean;
  23. icon: string;
  24. onClick: Function;
  25. onContentReady: Function;
  26. onDisposing: Function;
  27. onInitialized: Function;
  28. onOptionChanged: Function;
  29. rtlEnabled: boolean;
  30. stylingMode: string;
  31. tabIndex: number;
  32. template: any;
  33. text: string;
  34. type: string;
  35. useSubmitBehavior: boolean;
  36. validationGroup: string;
  37. visible: boolean;
  38. width: number | Function | string;
  39. }