From 24e58cb64a2faab74f2561241f4c559431250f3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Fri, 7 Jul 2023 15:57:51 +0300 Subject: [PATCH] MultiSelect hiddenInput pt fix --- components/lib/multiselect/MultiSelect.d.ts | 4 ---- components/lib/multiselect/MultiSelect.vue | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/components/lib/multiselect/MultiSelect.d.ts b/components/lib/multiselect/MultiSelect.d.ts index d8be497b8..66a44543d 100755 --- a/components/lib/multiselect/MultiSelect.d.ts +++ b/components/lib/multiselect/MultiSelect.d.ts @@ -78,10 +78,6 @@ export interface MultiSelectPassThroughOptions { * Uses to pass attributes to the root's DOM element. */ root?: MultiSelectPassThroughOptionType; - /** - * Uses to pass attributes to the input's DOM element. - */ - input?: MultiSelectPassThroughOptionType; /** * Uses to pass attributes to the label container's DOM element. */ diff --git a/components/lib/multiselect/MultiSelect.vue b/components/lib/multiselect/MultiSelect.vue index afa469067..7e498e959 100755 --- a/components/lib/multiselect/MultiSelect.vue +++ b/components/lib/multiselect/MultiSelect.vue @@ -19,7 +19,7 @@ @focus="onFocus" @blur="onBlur" @keydown="onKeyDown" - v-bind="{ ...inputProps, ...ptm('input') }" + v-bind="{ ...inputProps, ...ptm('hiddenInput') }" />