@@ -5,8 +5,8 @@ import type { ClickEvent } from '@js/ui/button';
55import type { DOMComponentProperties } from '@ts/core/widget/dom_component' ;
66import DOMComponent from '@ts/core/widget/dom_component' ;
77import type { OptionChanged } from '@ts/core/widget/types' ;
8- import type { Properties as TextAreaOnSteroidsProperties } from '@ts/ui/chat/message_box/chat_text_area' ;
9- import TextAreaOnSteroids from '@ts/ui/chat/message_box/chat_text_area' ;
8+ import type { Properties as ChatTextAreaProperties } from '@ts/ui/chat/message_box/chat_text_area' ;
9+ import ChatTextArea from '@ts/ui/chat/message_box/chat_text_area' ;
1010import EditingPreview from '@ts/ui/chat/message_box/editing_preview' ;
1111
1212import type { EnterKeyEvent , InputEvent } from '../../../../ui/text_area' ;
@@ -46,7 +46,7 @@ export interface Properties extends DOMComponentProperties<MessageBox> {
4646}
4747
4848class MessageBox extends DOMComponent < MessageBox , Properties > {
49- _textArea ! : TextAreaOnSteroids ;
49+ _textArea ! : ChatTextArea ;
5050
5151 _editingPreview ! : EditingPreview | null ;
5252
@@ -136,7 +136,7 @@ class MessageBox extends DOMComponent<MessageBox, Properties> {
136136
137137 this . _textArea = this . _createComponent (
138138 $textArea ,
139- TextAreaOnSteroids ,
139+ ChatTextArea ,
140140 textAreaOptions ,
141141 ) ;
142142
@@ -147,7 +147,7 @@ class MessageBox extends DOMComponent<MessageBox, Properties> {
147147 } ) ;
148148 }
149149
150- _getTextAreaOptions ( ) : TextAreaOnSteroidsProperties {
150+ _getTextAreaOptions ( ) : ChatTextAreaProperties {
151151 const {
152152 activeStateEnabled,
153153 focusStateEnabled,
@@ -167,7 +167,7 @@ class MessageBox extends DOMComponent<MessageBox, Properties> {
167167 } ,
168168 } ;
169169
170- return options as TextAreaOnSteroidsProperties ;
170+ return options as ChatTextAreaProperties ;
171171 }
172172
173173 _createMessageEnteredAction ( ) : void {
0 commit comments