diff --git a/components/lib/inputmask/BaseInputMask.vue b/components/lib/inputmask/BaseInputMask.vue new file mode 100644 index 000000000..e873f616f --- /dev/null +++ b/components/lib/inputmask/BaseInputMask.vue @@ -0,0 +1,57 @@ + diff --git a/components/lib/inputmask/InputMask.d.ts b/components/lib/inputmask/InputMask.d.ts index fdb65de4e..c95e8ad0f 100755 --- a/components/lib/inputmask/InputMask.d.ts +++ b/components/lib/inputmask/InputMask.d.ts @@ -66,6 +66,11 @@ export interface InputMaskProps { * @type {InputMaskPassThroughOptions} */ pt?: InputMaskPassThroughOptions; + /** + * When enabled, it removes component related styles in the core. + * @defaultValue false + */ + unstyled?: boolean; } export interface InputMaskSlots {} diff --git a/components/lib/inputmask/InputMask.vue b/components/lib/inputmask/InputMask.vue index 930b887a5..f2adc8c4a 100755 --- a/components/lib/inputmask/InputMask.vue +++ b/components/lib/inputmask/InputMask.vue @@ -1,38 +1,15 @@