@sentry/junior-dashboard 0.162.0 → 0.163.0
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/junior-dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.163.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"react-router": "^7.18.2",
|
|
35
35
|
"shiki": "4.1.0",
|
|
36
36
|
"zod": "^4.4.3",
|
|
37
|
-
"@sentry/junior
|
|
38
|
-
"@sentry/junior": "0.
|
|
37
|
+
"@sentry/junior": "0.163.0",
|
|
38
|
+
"@sentry/junior-plugin-api": "0.163.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@tailwindcss/cli": "^4.3.0",
|
|
@@ -226,8 +226,15 @@ export const ConversationComposer = memo(function ConversationComposer(
|
|
|
226
226
|
{props.label}
|
|
227
227
|
</label>
|
|
228
228
|
<textarea
|
|
229
|
+
// Chat is technical: ids, paths, code. Keep the keyboard chat-like
|
|
230
|
+
// (Send) and suppress browser IME assist that fights identifiers.
|
|
231
|
+
autoCapitalize="off"
|
|
232
|
+
autoComplete="off"
|
|
233
|
+
autoCorrect="off"
|
|
229
234
|
className="min-h-11 max-h-28 w-full resize-none overflow-y-auto border-0 bg-transparent px-3 py-2.5 font-mono text-sm leading-relaxed text-dashboard-text outline-none placeholder:text-dashboard-text-muted/65 md:min-h-24 md:max-h-none md:resize-y md:overflow-visible md:px-3.5 md:py-3"
|
|
235
|
+
enterKeyHint="send"
|
|
230
236
|
id={id}
|
|
237
|
+
inputMode="text"
|
|
231
238
|
maxLength={32_000}
|
|
232
239
|
onChange={(event) => {
|
|
233
240
|
const text = event.target.value;
|
|
@@ -243,6 +250,7 @@ export const ConversationComposer = memo(function ConversationComposer(
|
|
|
243
250
|
placeholder="Message Junior…"
|
|
244
251
|
ref={textareaRef}
|
|
245
252
|
rows={1}
|
|
253
|
+
spellCheck={false}
|
|
246
254
|
value={message}
|
|
247
255
|
/>
|
|
248
256
|
<div className="flex min-w-0 items-center justify-end gap-3 border-l border-white/[0.07] bg-black/15 px-2 py-1.5 md:justify-between md:border-l-0 md:border-t md:px-3 md:py-2">
|