PropertyDescriptionTable.d.ts 1.3 KB

123456789101112131415161718192021222324252627
  1. import {PropertyDescription, PropertyDescriptionInterface, PropertyValue} from './PropertyDescription';
  2. export declare const PropertyDescriptionTable: Map<String, PropertyDescription>;
  3. export declare const width: PropertyValue;
  4. export declare const height: PropertyValue;
  5. export declare const fieldLabel: PropertyValue;
  6. export declare const text: PropertyValue;
  7. export declare const iconCls: PropertyValue;
  8. export declare const borderless: PropertyValue;
  9. export declare const labelAlign: PropertyValue;
  10. export declare const type: PropertyValue;
  11. export declare const labelWidth: PropertyValue;
  12. export declare const gravity: PropertyValue;
  13. export declare const hidden: PropertyValue;
  14. export declare const readonly: PropertyValue;
  15. export declare const disabled: PropertyValue;
  16. export declare const loading: PropertyValue;
  17. export declare const required: PropertyValue;
  18. export declare const value: PropertyValue;
  19. export declare const prompt: PropertyValue;
  20. export declare const validType: PropertyValue;
  21. export declare const metaId: PropertyValue;
  22. export declare const template: PropertyValue;
  23. export declare const tooltip: PropertyValue;
  24. export declare const onClick: PropertyValue;
  25. export declare const YvBase: PropertyDescriptionInterface;
  26. export declare const YvDataSource: PropertyDescriptionInterface;