diff --git a/components/lib/autocomplete/AutoComplete.d.ts b/components/lib/autocomplete/AutoComplete.d.ts index 9c8dcac9b..9530c7ec9 100755 --- a/components/lib/autocomplete/AutoComplete.d.ts +++ b/components/lib/autocomplete/AutoComplete.d.ts @@ -9,6 +9,7 @@ */ import { TransitionProps, VNode } from 'vue'; import { ComponentHooks } from '../basecomponent'; +import { ChipPassThroughOptions } from '../chip'; import { InputTextPassThroughOptions } from '../inputtext'; import { PassThroughOptions } from '../passthrough'; import { ClassComponent, DesignToken, GlobalComponentConstructor, HintedString, Nullable, PassThrough } from '../ts-helpers'; @@ -156,9 +157,10 @@ export interface AutoCompletePassThroughOptions { */ token?: AutoCompletePassThroughOptionType; /** - * Used to pass attributes to the token label's DOM element. + * Used to pass attributes to the Chip. + * @see {@link ChipPassThroughOptions} */ - tokenLabel?: AutoCompletePassThroughOptionType; + tokenLabel?: ChipPassThroughOptions; /** * Used to pass attributes to the remove token icon's DOM element. */ diff --git a/components/lib/autocomplete/AutoComplete.vue b/components/lib/autocomplete/AutoComplete.vue index 090a7df33..dd4e47436 100755 --- a/components/lib/autocomplete/AutoComplete.vue +++ b/components/lib/autocomplete/AutoComplete.vue @@ -45,7 +45,7 @@ >
  • - - {{ getOptionLabel(option) }} - - -
  • @@ -182,9 +183,9 @@ diff --git a/components/lib/multiselect/MultiSelect.d.ts b/components/lib/multiselect/MultiSelect.d.ts index e0f60ad35..e4fa398c2 100755 --- a/components/lib/multiselect/MultiSelect.d.ts +++ b/components/lib/multiselect/MultiSelect.d.ts @@ -9,6 +9,7 @@ */ import { TransitionProps, VNode } from 'vue'; import { ComponentHooks } from '../basecomponent'; +import { ChipPassThroughOptions } from '../chip'; import { InputTextPassThroughOptions } from '../inputtext'; import { PassThroughOptions } from '../passthrough'; import { ClassComponent, DesignToken, GlobalComponentConstructor, HintedString, PassThrough } from '../ts-helpers'; @@ -133,9 +134,10 @@ export interface MultiSelectPassThroughOptions { */ token?: MultiSelectPassThroughOptionType; /** - * Used to pass attributes to the token label's DOM element. + * Used to pass attributes to the Chip. + * @see {@link ChipPassThroughOptions} */ - tokenLabel?: MultiSelectPassThroughOptionType; + tokenLabel?: ChipPassThroughOptions; /** * Used to pass attributes to the remove token icon's DOM element. */ diff --git a/components/lib/multiselect/MultiSelect.vue b/components/lib/multiselect/MultiSelect.vue index 93d3c461a..583c306c2 100755 --- a/components/lib/multiselect/MultiSelect.vue +++ b/components/lib/multiselect/MultiSelect.vue @@ -31,12 +31,12 @@