@neoptocom/neopto-ui 1.3.0 → 1.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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/Textarea.tsx +1 -1
package/dist/index.cjs
CHANGED
|
@@ -301,7 +301,7 @@ var Textarea = React3__namespace.forwardRef(
|
|
|
301
301
|
ref,
|
|
302
302
|
disabled,
|
|
303
303
|
className: [
|
|
304
|
-
"w-full bg-transparent outline-none transition-colors
|
|
304
|
+
"w-full bg-transparent outline-none transition-colors",
|
|
305
305
|
isInline ? "" : "min-h-[96px] px-4 py-3 rounded-3xl",
|
|
306
306
|
"font-['Poppins'] text-sm placeholder:text-[var(--muted-fg)]",
|
|
307
307
|
!isInline && "border",
|
package/dist/index.js
CHANGED
|
@@ -280,7 +280,7 @@ var Textarea = React3.forwardRef(
|
|
|
280
280
|
ref,
|
|
281
281
|
disabled,
|
|
282
282
|
className: [
|
|
283
|
-
"w-full bg-transparent outline-none transition-colors
|
|
283
|
+
"w-full bg-transparent outline-none transition-colors",
|
|
284
284
|
isInline ? "" : "min-h-[96px] px-4 py-3 rounded-3xl",
|
|
285
285
|
"font-['Poppins'] text-sm placeholder:text-[var(--muted-fg)]",
|
|
286
286
|
!isInline && "border",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neoptocom/neopto-ui",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A modern React component library built with Tailwind CSS v4 and TypeScript. Features dark mode, design tokens, and comprehensive Storybook documentation. Requires Tailwind v4+.",
|
|
6
6
|
"keywords": [
|
|
@@ -14,7 +14,7 @@ export const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
|
|
|
14
14
|
ref={ref}
|
|
15
15
|
disabled={disabled}
|
|
16
16
|
className={[
|
|
17
|
-
"w-full bg-transparent outline-none transition-colors
|
|
17
|
+
"w-full bg-transparent outline-none transition-colors",
|
|
18
18
|
isInline ? "" : "min-h-[96px] px-4 py-3 rounded-3xl",
|
|
19
19
|
"font-['Poppins'] text-sm placeholder:text-[var(--muted-fg)]",
|
|
20
20
|
!isInline && "border",
|