From 3875022414e48ead0913a427d60ed428038fae94 Mon Sep 17 00:00:00 2001 From: Dominic Fellbaum Date: Tue, 6 Feb 2024 18:21:22 +0100 Subject: [PATCH] Remove missed inputProps from InputSwitch --- components/lib/inputswitch/InputSwitch.d.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/components/lib/inputswitch/InputSwitch.d.ts b/components/lib/inputswitch/InputSwitch.d.ts index 8f0a2643c..b0f1b64fc 100755 --- a/components/lib/inputswitch/InputSwitch.d.ts +++ b/components/lib/inputswitch/InputSwitch.d.ts @@ -7,7 +7,6 @@ * @module inputswitch * */ -import { InputHTMLAttributes } from 'vue'; import { ComponentHooks } from '../basecomponent'; import { PassThroughOptions } from '../passthrough'; import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers'; @@ -136,10 +135,6 @@ export interface InputSwitchProps { * Inline style of the input field. */ inputStyle?: object | undefined; - /** - * Used to pass all properties of the HTMLInputElement to the focusable input element inside the component. - */ - inputProps?: InputHTMLAttributes | undefined; /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */