diff --git a/types/ComboBox/ComboBox.svelte.d.ts b/types/ComboBox/ComboBox.svelte.d.ts index c0e87c63..d2e2fa4d 100644 --- a/types/ComboBox/ComboBox.svelte.d.ts +++ b/types/ComboBox/ComboBox.svelte.d.ts @@ -121,16 +121,9 @@ export interface ComboBoxProps id: import("../ListBox/ListBoxMenuIcon.svelte").ListBoxMenuIconTranslationId ) => string; - /** - * Override the menu label based on the open state. - * Defaults to "Open menu" and "Close menu" - * @default undefined - */ - translateWithIdMenu?: (id: any) => string; - /** * Override the label of the clear button when the input has a selection. - * Defaults to "Clear selected item" + * Defaults to "Clear selected item" since a combo box can only have on selection. * @default undefined */ translateWithIdInput?: (id: "clearSelection") => string; diff --git a/types/MultiSelect/MultiSelect.svelte.d.ts b/types/MultiSelect/MultiSelect.svelte.d.ts index 46eef893..ca45f2ec 100644 --- a/types/MultiSelect/MultiSelect.svelte.d.ts +++ b/types/MultiSelect/MultiSelect.svelte.d.ts @@ -131,12 +131,6 @@ export interface MultiSelectProps id: import("../ListBox/ListBoxMenuIcon.svelte").ListBoxMenuIconTranslationId ) => string; - /** - * Override the default translation ids for the menu - * @default undefined - */ - translateWithIdMenu?: (id: any) => string; - /** * Override the label of the clear button when the input has a selection. * Defaults to "Clear selected item" and "Clear all items"