diff --git a/package.json b/package.json index 3b221df5..f5a4b3d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@qoretechnologies/reqore", - "version": "0.41.0", + "version": "0.41.1", "description": "ReQore is a highly theme-able and modular UI library for React", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/components/Input/index.tsx b/src/components/Input/index.tsx index 0af9b70e..2b741b69 100644 --- a/src/components/Input/index.tsx +++ b/src/components/Input/index.tsx @@ -39,7 +39,7 @@ export interface IReqoreInputProps IWithReqoreEffect, IWithReqoreTooltip { autoFocus?: boolean; - + placeholder?: string; width?: number; size?: TSizes; minimal?: boolean; diff --git a/src/components/Textarea/index.tsx b/src/components/Textarea/index.tsx index 06806e82..6af10da5 100644 --- a/src/components/Textarea/index.tsx +++ b/src/components/Textarea/index.tsx @@ -41,6 +41,7 @@ export interface IReqoreTextareaProps IReqoreIntent, IWithReqoreEffect { autoFocus?: boolean; + placeholder?: string; width?: number; height?: number; scaleWithContent?: boolean;