catchup-library-web 1.0.12 → 1.0.13
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/components/groups/InputGroup.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -3337,7 +3337,7 @@ var InputGroup = ({
|
|
|
3337
3337
|
{
|
|
3338
3338
|
ref: textAreaRef,
|
|
3339
3339
|
disabled,
|
|
3340
|
-
className: `w-full ${useMinHeight ? "min-h-[250px]" : ""} resize-none overflow-hidden py-2 px-4 border ${errorText ? "border-catchup-red shadow-error placeholder:text-catchup-red placeholder:opacity-80" : "border-catchup-gray-100"} placeholder-catchup-gray-200 rounded-catchup-large focus:outline-none focus:border-catchup-blue-400 ${disabled ? "bg-catchup-lighter-gray" : null} focus:shadow-input`,
|
|
3340
|
+
className: `w-full h-[44px] ${useMinHeight ? "min-h-[250px]" : ""} resize-none overflow-hidden py-2 px-4 border ${errorText ? "border-catchup-red shadow-error placeholder:text-catchup-red placeholder:opacity-80" : "border-catchup-gray-100"} placeholder-catchup-gray-200 rounded-catchup-large focus:outline-none focus:border-catchup-blue-400 ${disabled ? "bg-catchup-lighter-gray" : null} focus:shadow-input`,
|
|
3341
3341
|
placeholder: errorText ? errorText : placeholder,
|
|
3342
3342
|
value,
|
|
3343
3343
|
onLoad: (e) => {
|
package/dist/index.mjs
CHANGED
|
@@ -3164,7 +3164,7 @@ var InputGroup = ({
|
|
|
3164
3164
|
{
|
|
3165
3165
|
ref: textAreaRef,
|
|
3166
3166
|
disabled,
|
|
3167
|
-
className: `w-full ${useMinHeight ? "min-h-[250px]" : ""} resize-none overflow-hidden py-2 px-4 border ${errorText ? "border-catchup-red shadow-error placeholder:text-catchup-red placeholder:opacity-80" : "border-catchup-gray-100"} placeholder-catchup-gray-200 rounded-catchup-large focus:outline-none focus:border-catchup-blue-400 ${disabled ? "bg-catchup-lighter-gray" : null} focus:shadow-input`,
|
|
3167
|
+
className: `w-full h-[44px] ${useMinHeight ? "min-h-[250px]" : ""} resize-none overflow-hidden py-2 px-4 border ${errorText ? "border-catchup-red shadow-error placeholder:text-catchup-red placeholder:opacity-80" : "border-catchup-gray-100"} placeholder-catchup-gray-200 rounded-catchup-large focus:outline-none focus:border-catchup-blue-400 ${disabled ? "bg-catchup-lighter-gray" : null} focus:shadow-input`,
|
|
3168
3168
|
placeholder: errorText ? errorText : placeholder,
|
|
3169
3169
|
value,
|
|
3170
3170
|
onLoad: (e) => {
|
package/package.json
CHANGED