@vicinae/api 0.20.1 → 0.20.3

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.
@@ -56,8 +56,10 @@ interface WithFormRef<T> {
56
56
  ref?: Ref<T>;
57
57
  }
58
58
  interface TextFieldProps extends FormItemProps<string>, WithFormRef<Form.TextField> {
59
+ placeholder?: string;
59
60
  }
60
61
  interface PasswordFieldProps extends FormItemProps<string>, WithFormRef<Form.PasswordField> {
62
+ placeholder?: string;
61
63
  }
62
64
  export declare enum DatePickerType {
63
65
  DateTime = "dateTime",
@@ -84,6 +86,7 @@ interface TagPickerProps extends FormItemProps<string[]>, WithFormRef<Form.TagPi
84
86
  children?: ReactNode;
85
87
  }
86
88
  interface TextAreaProps extends FormItemProps<string>, WithFormRef<Form.TextArea> {
89
+ placeholder?: string;
87
90
  }
88
91
  interface FilePickerProps extends FormItemProps<string[]>, WithFormRef<Form.FilePicker> {
89
92
  allowMultipleSelection?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vicinae/api",
3
- "version": "0.20.1",
3
+ "version": "0.20.3",
4
4
  "description": "TypeScript SDK to build Vicinae extensions",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",