@stenajs-webui/forms 21.5.0 → 21.7.0
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/dist/components/ui/text-input/TextInput.d.ts +1 -0
- package/dist/index.es.js +315 -306
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
|
@@ -40,6 +40,7 @@ export interface TextInputProps extends FullOnChangeProps<string, ChangeEvent<HT
|
|
|
40
40
|
/** onMove callback, triggered when user tries to move outside of field using arrow keys, tab or shift+tab. */
|
|
41
41
|
onMove?: (direction: MoveDirection) => void;
|
|
42
42
|
borderRadiusVariant?: TextInputBorderVariant;
|
|
43
|
+
alwaysShowPlaceholder?: boolean;
|
|
43
44
|
}
|
|
44
45
|
export declare const TextInput: React.FC<TextInputProps>;
|
|
45
46
|
export {};
|