ei-tui 0.9.0 → 0.9.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/package.json
CHANGED
|
@@ -113,6 +113,7 @@ export function MessageList() {
|
|
|
113
113
|
stickyScroll={true}
|
|
114
114
|
stickyStart="bottom"
|
|
115
115
|
viewportCulling={true}
|
|
116
|
+
wrapperOptions={{ paddingRight: 2 }}
|
|
116
117
|
>
|
|
117
118
|
<For each={messagesWithQuotes()}>
|
|
118
119
|
{(message, index) => {
|
|
@@ -159,7 +160,7 @@ export function MessageList() {
|
|
|
159
160
|
attributes={TextAttributes.BOLD}
|
|
160
161
|
content={header()}
|
|
161
162
|
/>
|
|
162
|
-
<box
|
|
163
|
+
<box paddingLeft={2} flexGrow={1}>
|
|
163
164
|
<markdown
|
|
164
165
|
content={displayContent}
|
|
165
166
|
syntaxStyle={solarizedDarkSyntax}
|
|
@@ -143,6 +143,7 @@ export function RoomMessageList() {
|
|
|
143
143
|
stickyScroll={true}
|
|
144
144
|
stickyStart="bottom"
|
|
145
145
|
viewportCulling={true}
|
|
146
|
+
wrapperOptions={{ paddingRight: 2 }}
|
|
146
147
|
>
|
|
147
148
|
<For each={displayMessagesWithQuotes()}>
|
|
148
149
|
{(msg) => {
|
|
@@ -172,10 +173,10 @@ export function RoomMessageList() {
|
|
|
172
173
|
attributes={TextAttributes.BOLD}
|
|
173
174
|
content={header}
|
|
174
175
|
/>
|
|
175
|
-
<box
|
|
176
|
+
<box paddingLeft={2} flexGrow={1} visible={isSilence}>
|
|
176
177
|
<text fg="#586e75" content={silenceText} />
|
|
177
178
|
</box>
|
|
178
|
-
<box
|
|
179
|
+
<box paddingLeft={2} flexGrow={1} visible={!isSilence}>
|
|
179
180
|
<markdown
|
|
180
181
|
content={normalContent}
|
|
181
182
|
syntaxStyle={solarizedDarkSyntax}
|