Skip to content

Commit 1418b81

Browse files
authored
ci: fix next releases due to failing type test (#6683)
**Related Issue:** #5644 ## Summary Component methods need to be private if they are using a 3rd party package like lodash. Otherwise the package's types are included in dist and we would need to move the package's types from devDeps to deps.
1 parent 1a4041d commit 1418b81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/text-area/text-area.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ export class TextArea
437437

438438
// height and width are set to auto here to avoid overlapping on to neighboring elements in the layout when user starts resizing.
439439
// throttle is used to avoid flashing of textarea when user resizes.
440-
setHeightAndWidthToAuto = throttle(
440+
private setHeightAndWidthToAuto = throttle(
441441
(): void => {
442442
if (this.resize === "vertical" || this.resize === "both") {
443443
this.el.style.height = "auto";

0 commit comments

Comments
 (0)