Hidden input renaming for PT

This commit is contained in:
Tuğçe Küçükoğlu 2023-05-10 11:18:51 +03:00
parent 1103bcdfbc
commit d2125fd726
4 changed files with 10 additions and 10 deletions

View file

@ -34,13 +34,13 @@ export interface InputSwitchPassThroughOptions {
*/
slider?: InputSwitchPassThroughOptionType;
/**
* Uses to pass attributes to the hidden accessible DOM element.
* Uses to pass attributes to the hidden input wrapper's DOM element.
*/
hiddenAccessible?: InputSwitchPassThroughOptionType;
hiddenInputWrapper?: InputSwitchPassThroughOptionType;
/**
* Uses to pass attributes to the input aria's DOM element.
* Uses to pass attributes to the hidden input's DOM element.
*/
inputAria?: InputSwitchPassThroughOptionType;
hiddenInput?: InputSwitchPassThroughOptionType;
}
/**