odaptos_design_system 1.4.179 → 1.4.180
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/Textarea/Textarea.d.ts +1 -2
- package/dist/odaptos_design_system.cjs.development.js +0 -2
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +0 -2
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Textarea/Textarea.tsx +1 -4
|
@@ -12,7 +12,6 @@ interface TextareaProps {
|
|
|
12
12
|
onChange: (event: any) => void;
|
|
13
13
|
onBlur?: (event: any) => void;
|
|
14
14
|
id?: string;
|
|
15
|
-
rows?: number;
|
|
16
15
|
error?: boolean;
|
|
17
16
|
maxCharacters: number;
|
|
18
17
|
errorText?: string;
|
|
@@ -20,5 +19,5 @@ interface TextareaProps {
|
|
|
20
19
|
disabled?: boolean;
|
|
21
20
|
}
|
|
22
21
|
/** Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=738-6407&mode=dev */
|
|
23
|
-
export declare const Textarea: ({ name, label, className, id, onChange, onBlur, placeholder, value,
|
|
22
|
+
export declare const Textarea: ({ name, label, className, id, onChange, onBlur, placeholder, value, maxCharacters, topLabel, topLabelWeight, topLabelSize, errorText, helperText, error, disabled, required, }: TextareaProps) => React.JSX.Element;
|
|
24
23
|
export {};
|
|
@@ -12543,7 +12543,6 @@ const Textarea = ({
|
|
|
12543
12543
|
onBlur,
|
|
12544
12544
|
placeholder,
|
|
12545
12545
|
value,
|
|
12546
|
-
rows,
|
|
12547
12546
|
maxCharacters,
|
|
12548
12547
|
topLabel,
|
|
12549
12548
|
topLabelWeight,
|
|
@@ -12572,7 +12571,6 @@ const Textarea = ({
|
|
|
12572
12571
|
variant: "outlined",
|
|
12573
12572
|
multiline: true,
|
|
12574
12573
|
label: label,
|
|
12575
|
-
rows: rows ? rows : 4,
|
|
12576
12574
|
placeholder: placeholder,
|
|
12577
12575
|
className: className,
|
|
12578
12576
|
id: id,
|