form-simple-item.d.ts 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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 DxoFormSimpleItem extends NestedOption {
  16. colSpan: number;
  17. cssClass: string;
  18. dataField: string;
  19. editorOptions: any;
  20. editorType: string;
  21. helpText: string;
  22. isRequired: boolean;
  23. itemType: string;
  24. label: {
  25. alignment?: string;
  26. location?: string;
  27. showColon?: boolean;
  28. text?: string;
  29. visible?: boolean;
  30. };
  31. name: string;
  32. template: any;
  33. validationRules: Array<DevExpress.ui.RequiredRule | DevExpress.ui.NumericRule | DevExpress.ui.RangeRule | DevExpress.ui.StringLengthRule | DevExpress.ui.CustomRule | DevExpress.ui.CompareRule | DevExpress.ui.PatternRule | DevExpress.ui.EmailRule>;
  34. visible: boolean;
  35. visibleIndex: number;
  36. }