@pie-players/pie-section-player-tools-session-debugger 0.3.20 → 0.3.21

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.
@@ -344,7 +344,15 @@
344
344
  <div class="pie-section-player-tools-session-debugger__card-title">
345
345
  Item Sessions Snapshot
346
346
  </div>
347
- <pre class="pie-section-player-tools-session-debugger__card-pre">{JSON.stringify(sessionPanelSnapshot, null, 2)}</pre>
347
+ <div
348
+ class="pie-section-player-tools-session-debugger__card-region"
349
+ role="textbox"
350
+ aria-readonly="true"
351
+ tabindex="0"
352
+ aria-label="Section session snapshot JSON"
353
+ >
354
+ <pre class="pie-section-player-tools-session-debugger__card-pre">{JSON.stringify(sessionPanelSnapshot, null, 2)}</pre>
355
+ </div>
348
356
  </div>
349
357
  {/if}
350
358
  </div>
@@ -356,4 +364,10 @@
356
364
  height: 1rem;
357
365
  }
358
366
 
367
+ .pie-section-player-tools-session-debugger__card-region:focus-visible {
368
+ outline: 2px solid var(--color-primary, #2563eb);
369
+ outline-offset: 2px;
370
+ border-radius: 0.5rem;
371
+ }
372
+
359
373
  </style>