[PR #63] [MERGED] Playground Cleanup #318

Closed
opened 2026-02-16 00:20:08 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langserve/pull/63
Author: @dqbd
Created: 10/19/2023
Status: Merged
Merged: 10/19/2023
Merged by: @nfcampos

Base: mainHead: dqbd/playground-cleanup


📝 Commits (9)

  • 4cc290b Add chevron, fix broken dark mode for specific situations
  • 70b662b Fix weird tint, add autoresizable textarea
  • 278fabf Add autosizing everywhere
  • 0cfd84b Further cleanup
  • a5105aa Vertical align top
  • 41dd69a Fix duplicated component
  • 7b9c4cd Lint
  • 0f3ea6c Merge branch 'main' into dqbd/playground-cleanup
  • 0ade9e6 Build files

📊 Changes

19 files changed (+3157 additions, -5400 deletions)

View changed files

langserve/playground/dist/assets/index-5008c8a8.css (+1 -0)
langserve/playground/dist/assets/index-6fa73533.js (+247 -0)
langserve/playground/dist/assets/index-90195623.js (+0 -247)
langserve/playground/dist/assets/index-d21c8113.css (+0 -1)
📝 langserve/playground/dist/index.html (+2 -2)
📝 langserve/playground/package.json (+2 -0)
📝 langserve/playground/src/App.tsx (+19 -173)
langserve/playground/src/assets/ChevronRight.svg (+6 -0)
langserve/playground/src/components/AutosizeTextarea.tsx (+51 -0)
📝 langserve/playground/src/components/CustomArrayControlRenderer.tsx (+2 -2)
📝 langserve/playground/src/components/CustomArrayControlRenderer/DeleteDialog.tsx (+9 -9)
📝 langserve/playground/src/components/CustomArrayControlRenderer/MaterialTableControl.tsx (+21 -5)
📝 langserve/playground/src/components/CustomArrayControlRenderer/NoBorderTableCell.tsx (+0 -0)
📝 langserve/playground/src/components/CustomArrayControlRenderer/TableToolbar.tsx (+2 -2)
📝 langserve/playground/src/components/CustomArrayControlRenderer/ValidationIcon.tsx (+0 -0)
📝 langserve/playground/src/components/CustomTextAreaCell.tsx (+5 -6)
📝 langserve/playground/src/components/JsonTextAreaCell.tsx (+6 -8)
langserve/playground/src/utils/cn.ts (+7 -0)
📝 langserve/playground/yarn.lock (+2777 -4945)

📄 Description

  • Autoexpanding textareas
  • Add missing chevrons
  • Align dark mode styles, spacing for nested JSON

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langserve/pull/63 **Author:** [@dqbd](https://github.com/dqbd) **Created:** 10/19/2023 **Status:** ✅ Merged **Merged:** 10/19/2023 **Merged by:** [@nfcampos](https://github.com/nfcampos) **Base:** `main` ← **Head:** `dqbd/playground-cleanup` --- ### 📝 Commits (9) - [`4cc290b`](https://github.com/langchain-ai/langserve/commit/4cc290bd860a82d0c9177bc0799697512e850c66) Add chevron, fix broken dark mode for specific situations - [`70b662b`](https://github.com/langchain-ai/langserve/commit/70b662b99b8d5e0bf8cd19d2edaf42b9af1fbc80) Fix weird tint, add autoresizable textarea - [`278fabf`](https://github.com/langchain-ai/langserve/commit/278fabf455b181b9caa1f33420d54cde281801de) Add autosizing everywhere - [`0cfd84b`](https://github.com/langchain-ai/langserve/commit/0cfd84b5fcf1ea98c24f42114c35a33b012aa057) Further cleanup - [`a5105aa`](https://github.com/langchain-ai/langserve/commit/a5105aad9f1c21436d58044e2dce9aa9baceb5d5) Vertical align top - [`41dd69a`](https://github.com/langchain-ai/langserve/commit/41dd69a53d33bf4feba867318777f7bfbcfce2a4) Fix duplicated component - [`7b9c4cd`](https://github.com/langchain-ai/langserve/commit/7b9c4cd0cb06e7d171ce1c4da816678aa7237084) Lint - [`0f3ea6c`](https://github.com/langchain-ai/langserve/commit/0f3ea6cfa7edd5a8463eee35a950517eddfa7961) Merge branch 'main' into dqbd/playground-cleanup - [`0ade9e6`](https://github.com/langchain-ai/langserve/commit/0ade9e6cbb840cee33b60b34649362bec283734c) Build files ### 📊 Changes **19 files changed** (+3157 additions, -5400 deletions) <details> <summary>View changed files</summary> ➕ `langserve/playground/dist/assets/index-5008c8a8.css` (+1 -0) ➕ `langserve/playground/dist/assets/index-6fa73533.js` (+247 -0) ➖ `langserve/playground/dist/assets/index-90195623.js` (+0 -247) ➖ `langserve/playground/dist/assets/index-d21c8113.css` (+0 -1) 📝 `langserve/playground/dist/index.html` (+2 -2) 📝 `langserve/playground/package.json` (+2 -0) 📝 `langserve/playground/src/App.tsx` (+19 -173) ➕ `langserve/playground/src/assets/ChevronRight.svg` (+6 -0) ➕ `langserve/playground/src/components/AutosizeTextarea.tsx` (+51 -0) 📝 `langserve/playground/src/components/CustomArrayControlRenderer.tsx` (+2 -2) 📝 `langserve/playground/src/components/CustomArrayControlRenderer/DeleteDialog.tsx` (+9 -9) 📝 `langserve/playground/src/components/CustomArrayControlRenderer/MaterialTableControl.tsx` (+21 -5) 📝 `langserve/playground/src/components/CustomArrayControlRenderer/NoBorderTableCell.tsx` (+0 -0) 📝 `langserve/playground/src/components/CustomArrayControlRenderer/TableToolbar.tsx` (+2 -2) 📝 `langserve/playground/src/components/CustomArrayControlRenderer/ValidationIcon.tsx` (+0 -0) 📝 `langserve/playground/src/components/CustomTextAreaCell.tsx` (+5 -6) 📝 `langserve/playground/src/components/JsonTextAreaCell.tsx` (+6 -8) ➕ `langserve/playground/src/utils/cn.ts` (+7 -0) 📝 `langserve/playground/yarn.lock` (+2777 -4945) </details> ### 📄 Description - Autoexpanding textareas - Add missing chevrons - Align dark mode styles, spacing for nested JSON --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 00:20:08 -05:00
yindo closed this issue 2026-02-16 00:20:08 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langserve#318