@propbinder/mobile-design 0.2.99 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -8560,7 +8560,7 @@ declare class DsMobileHandbookFolderMiniComponent {
|
|
|
8560
8560
|
* ```
|
|
8561
8561
|
*/
|
|
8562
8562
|
declare class DsTextInputComponent implements ControlValueAccessor {
|
|
8563
|
-
type: _angular_core.InputSignal<"
|
|
8563
|
+
type: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "password" | "url">;
|
|
8564
8564
|
label: _angular_core.InputSignal<string>;
|
|
8565
8565
|
placeholder: _angular_core.InputSignal<string>;
|
|
8566
8566
|
disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -8569,7 +8569,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
|
|
|
8569
8569
|
hasError: _angular_core.InputSignal<boolean>;
|
|
8570
8570
|
errorMessage: _angular_core.InputSignal<string>;
|
|
8571
8571
|
autocomplete: _angular_core.InputSignal<string>;
|
|
8572
|
-
inputmode: _angular_core.InputSignal<"
|
|
8572
|
+
inputmode: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "url" | "numeric" | undefined>;
|
|
8573
8573
|
autoClearError: _angular_core.InputSignal<boolean>;
|
|
8574
8574
|
validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
|
|
8575
8575
|
valueChange: _angular_core.OutputEmitterRef<string>;
|