Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/dist/shinychat.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/dist/shinychat.css.map

Large diffs are not rendered by default.

186 changes: 96 additions & 90 deletions js/dist/shinychat.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions js/dist/shinychat.js.map

Large diffs are not rendered by default.

79 changes: 63 additions & 16 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"watch-fast": "npx nodemon --exec 'npm run build-fast' --ext '*' --ignore dist/ --ignore esbuild-metadata.json"
},
"dependencies": {
"@floating-ui/react": "^0.27.20",
"@tiptap/core": "^3.26.0",
"@tiptap/extension-document": "^3.26.0",
"@tiptap/extension-hard-break": "^3.26.0",
Expand Down Expand Up @@ -53,6 +54,7 @@
"@eslint/js": "^9.27.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^22.15.21",
Expand Down
8 changes: 8 additions & 0 deletions js/src/chat/Aside.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// <shiny-aside> is a data carrier consumed by <shiny-aside-group>
// (see rehypeGroupAsides). If one ever reaches the React tree ungrouped —
// e.g. content that bypassed the markdown pipeline's grouping pass — it
// renders nothing instead of showing a stray custom element. Also used as
// the defensive fallback for standalone web-activity carriers.
export function Aside(): null {
return null
}
Loading
Loading