Skip to content

Commit

Permalink
Add an InputMaskBase description
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanTsukanov committed Mar 15, 2024
1 parent c6dfce4 commit fb2aacd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/mask/mask_base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ import { Base } from "../base";
import { JsonObject, Serializer, property } from "../jsonobject";
import { IInputMask, IMaskedInputResult, ITextInputParams } from "./mask_utils";

/**
* A base class for classes that implement input masks:
*
* - [`InputMaskNumeric`](https://surveyjs.io/form-library/documentation/inputmasknumeric)
* - [`InputMaskCurrency`](https://surveyjs.io/form-library/documentation/inputmaskcurrency)
* - [`InputMaskDateTime`](https://surveyjs.io/form-library/documentation/inputmaskdatetime)
* - [`InputMaskPattern`](https://surveyjs.io/form-library/documentation/inputmaskpattern)
*/
export class InputMaskBase extends Base implements IInputMask {
/**
* Specifies whether to store the question value with an applied mask in survey results.
Expand Down

0 comments on commit fb2aacd

Please sign in to comment.