diff --git a/components/lib/cascadeselect/BaseCascadeSelect.vue b/components/lib/cascadeselect/BaseCascadeSelect.vue new file mode 100644 index 000000000..4d2938aed --- /dev/null +++ b/components/lib/cascadeselect/BaseCascadeSelect.vue @@ -0,0 +1 @@ + flex-shrink: 0; diff --git a/components/lib/inputtext/BaseInputText.vue b/components/lib/inputtext/BaseInputText.vue new file mode 100644 index 000000000..edce7469d --- /dev/null +++ b/components/lib/inputtext/BaseInputText.vue @@ -0,0 +1,139 @@ + diff --git a/components/lib/inputtext/InputText.d.ts b/components/lib/inputtext/InputText.d.ts index 65afbd458..853995c84 100755 --- a/components/lib/inputtext/InputText.d.ts +++ b/components/lib/inputtext/InputText.d.ts @@ -43,6 +43,11 @@ export interface InputTextProps extends InputHTMLAttributes { * @type {InputTextPassThroughOptions} */ pt?: InputTextPassThroughOptions; + /** + * When enabled, it removes component related styles in the core. + * @defaultValue false + */ + unstyled?: boolean; } /** diff --git a/components/lib/inputtext/InputText.vue b/components/lib/inputtext/InputText.vue index d15a15b4c..353d7df84 100755 --- a/components/lib/inputtext/InputText.vue +++ b/components/lib/inputtext/InputText.vue @@ -1,17 +1,14 @@