agInputNumberField.d.ts 580 B

1234567891011121314151617
  1. import { AgInputTextField } from "./agInputTextField";
  2. export declare class AgInputNumberField extends AgInputTextField {
  3. protected className: string;
  4. protected inputType: string;
  5. private precision;
  6. private step;
  7. private min;
  8. private max;
  9. postConstruct(): void;
  10. normalizeValue(value: string): string;
  11. private adjustPrecision;
  12. setMin(min: number | undefined): this;
  13. setMax(max: number | undefined): this;
  14. setPrecision(precision: number): this;
  15. setStep(step?: number): this;
  16. setValue(value: string, silent?: boolean): this;
  17. }