[web-shared]: timestamp tooltips, toast adapter, loading skeletons, and encrypted data detection#1381
Merged
karthikscale3 merged 59 commits intomainfrom Mar 13, 2026
Merged
Conversation
VaguelySerious
approved these changes
Mar 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes:
Timestamp tooltips — Added a new
TimestampTooltipcomponent that shows UTC time, local time, and relative time ("3 hours ago") on hover for all timestamp fields in the event list and entity detail sidebar. Wrapped the event list view and detail panel withTimestampTooltipProvider.Toast adapter abstraction — Replaced direct
sonnertoast imports with auseToasthook backed by aToastContext. This lets host apps (e.g. vercel-site with Geist) supply their own toast implementation viaToastProvider, while falling back to sonner by default. ExportsToastAdapter,ToastProvider, anduseToastfrom the package index.Improved loading skeletons — Rewrote the
RowsSkeletonand header skeleton in the event list to match the actual column layout (gutter, chevron, time, event type, name, correlation ID, event ID) instead of generic placeholders. Increased skeleton row count from 8 to 16.Encrypted data detection for lazy-loaded events — The decrypt button now also appears when expanded event rows contain encrypted markers in their lazily-loaded
eventData, not just inline data. Uses a stickyonEncryptedDataDetectedcallback fromEventRowto the parent.Expanded event type support in sidebar — Added
step_retrying,run_failed,wait_created, andwait_completedto the set of event types that show expandable data in the sidebar events list.