187 lines
4.7 KiB
TypeScript
Executable File
187 lines
4.7 KiB
TypeScript
Executable File
/**
|
|
*
|
|
* InputMask component is used to enter input in a certain format such as numeric, date, currency, email and phone.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/inputmask/)
|
|
*
|
|
* @module inputmask
|
|
*
|
|
*/
|
|
import { ComponentHooks } from '../basecomponent';
|
|
import { PassThroughOptions } from '../passthrough';
|
|
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
|
|
|
export declare type InputMaskPassThroughOptionType = InputMaskPassThroughAttributes | ((options: InputMaskPassThroughMethodOptions) => InputMaskPassThroughAttributes | string) | string | null | undefined;
|
|
|
|
/**
|
|
* Custom passthrough(pt) option method.
|
|
*/
|
|
export interface InputMaskPassThroughMethodOptions {
|
|
/**
|
|
* Defines instance.
|
|
*/
|
|
instance: any;
|
|
/**
|
|
* Defines valid properties.
|
|
*/
|
|
props: InputMaskProps;
|
|
/**
|
|
* Defines current options.
|
|
*/
|
|
context: InputMaskContext;
|
|
/**
|
|
* Defines passthrough(pt) options in global config.
|
|
*/
|
|
global: object | undefined;
|
|
}
|
|
|
|
/**
|
|
* Custom passthrough(pt) options.
|
|
* @see {@link InputMaskProps.pt}
|
|
*/
|
|
export interface InputMaskPassThroughOptions {
|
|
/**
|
|
* Used to pass attributes to the root's DOM element.
|
|
*/
|
|
root?: InputMaskPassThroughOptionType;
|
|
/**
|
|
* Used to manage all lifecycle hooks
|
|
* @see {@link BaseComponent.ComponentHooks}
|
|
*/
|
|
hooks?: ComponentHooks;
|
|
}
|
|
|
|
/**
|
|
* Custom passthrough attributes for each DOM elements
|
|
*/
|
|
export interface InputMaskPassThroughAttributes {
|
|
[key: string]: any;
|
|
}
|
|
|
|
/**
|
|
* Defines current options in InputMask component.
|
|
*/
|
|
export interface InputMaskContext {
|
|
/**
|
|
* Current filled state of the component as a boolean.
|
|
* @defaultValue false
|
|
*/
|
|
filled: boolean;
|
|
/**
|
|
* Current disabled state of the component as a boolean.
|
|
* @defaultValue false
|
|
*/
|
|
disabled: boolean;
|
|
}
|
|
|
|
/**
|
|
* Defines valid properties in InputMask component.
|
|
*/
|
|
export interface InputMaskProps {
|
|
/**
|
|
* Value of the component.
|
|
*/
|
|
modelValue?: string | undefined;
|
|
/**
|
|
* Placeholder character in mask, default is underscore.
|
|
* @defaultValue _
|
|
*/
|
|
slotChar?: string | undefined;
|
|
/**
|
|
* Mask pattern.
|
|
*/
|
|
mask?: string | undefined;
|
|
/**
|
|
* Clears the incomplete value on blur.
|
|
* @defaultValue true
|
|
*/
|
|
autoClear?: boolean | undefined;
|
|
/**
|
|
* Defines if model sets the raw unmasked value to bound value or the formatted mask value.
|
|
* @defaultValue false
|
|
*/
|
|
unmask?: boolean | undefined;
|
|
/**
|
|
* Whether the items are clickable or not.
|
|
* @defaultValue false
|
|
*/
|
|
readonly?: boolean | undefined;
|
|
/**
|
|
* Used to pass attributes to DOM elements inside the component.
|
|
* @type {InputMaskPassThroughOptions}
|
|
*/
|
|
pt?: PassThrough<InputMaskPassThroughOptions>;
|
|
/**
|
|
* Used to configure passthrough(pt) options of the component.
|
|
* @type {PassThroughOptions}
|
|
*/
|
|
ptOptions?: PassThroughOptions;
|
|
/**
|
|
* When enabled, it removes component related styles in the core.
|
|
* @defaultValue false
|
|
*/
|
|
unstyled?: boolean;
|
|
}
|
|
|
|
/**
|
|
* Defines valid slots in InputMask component.
|
|
*/
|
|
export interface InputMaskSlots {}
|
|
|
|
/**
|
|
* Defines valid emits in InputMask component.
|
|
*/
|
|
export interface InputMaskEmits {
|
|
/**
|
|
* Emitted when the value changes.
|
|
* @param {string} value - New value.
|
|
*/
|
|
'update:modelValue'(value: string): void;
|
|
/**
|
|
* Callback to invoke when the component receives focus.
|
|
*/
|
|
focus(event: Event): void;
|
|
/**
|
|
* Callback to invoke when the component loses focus.
|
|
*/
|
|
blur(event: Event): void;
|
|
/**
|
|
* Callback to invoke when a key is pressed.
|
|
*/
|
|
keydown(event: Event): void;
|
|
/**
|
|
* Callback to invoke when a key that produces a character value is pressed down.
|
|
*/
|
|
keypress: (event: Event) => void;
|
|
/**
|
|
* Callback to invoke when the user has initiated a 'paste' action through the browser's user interface.
|
|
*/
|
|
paste: (event: Event) => void;
|
|
/**
|
|
* Callback to invoke when the mask is completed.
|
|
*/
|
|
complete: (event: Event) => void;
|
|
}
|
|
|
|
/**
|
|
* **PrimeVue - InputMask**
|
|
*
|
|
* _InputMask component is used to enter input in a certain format such as numeric, date, currency, email and phone._
|
|
*
|
|
* [Live Demo](https://www.primevue.org/inputmask/)
|
|
* --- ---
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
|
*
|
|
* @group Component
|
|
*
|
|
*/
|
|
declare class InputMask extends ClassComponent<InputMaskProps, InputMaskSlots, InputMaskEmits> {}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface GlobalComponents {
|
|
InputMask: GlobalComponentConstructor<InputMask>;
|
|
}
|
|
}
|
|
|
|
export default InputMask;
|