katopz
7b055b6b9a
fix: prop.type not accept integer
2025-03-31 18:29:09 +09:00
Pulkit Sharma
65fc6d0490
prettier-fix, add contribution guidelines
2025-03-29 23:31:46 +05:30
Pulkit Sharma
834eb0c934
add Sidebar tests
2025-03-29 22:31:57 +05:30
Pulkit Sharma
9e1186f5ac
Document configuration in Readme and add TSDoc for the same.
2025-03-29 09:40:13 +05:30
Pulkit Sharma
81c0ef29ab
Merge branch 'main' into main
2025-03-29 09:11:01 +05:30
Cliff Hall
240c67037c
Merge branch 'main' into feat/json-view-component
2025-03-28 17:32:41 -04:00
Shinya Fujino
d2e211a597
Update Sidebar component icons to use 'text-foreground' for better visibility
2025-03-28 22:13:31 +09:00
Shinya Fujino
827d867aae
Merge branch 'main' into patch-1
2025-03-28 21:01:22 +09:00
cgoing
8180b0bd6f
refactor: JsonEditor
2025-03-28 15:16:17 +09:00
cgoing
18ca6e28a7
Use <pre> tag inside JsonView component for consistency
2025-03-27 12:55:36 +09:00
cgoing
2d252a389c
Remove escapeUnicode function from ToolsTab.tsx
2025-03-27 11:42:39 +09:00
cgoing
e6f5da8383
Improve JsonView component styling and change to use JsonView in PromptsTab
2025-03-27 10:49:37 +09:00
choi sung keun
fcc06ab556
Merge branch 'main' into feat/json-view-component
2025-03-26 00:11:57 +09:00
cgoing
03c1ba3092
Change JsonView default initialExpandDepth from 2 to 3
2025-03-26 00:11:07 +09:00
cgoing
2588f3aeb3
Change tooltip title from Korean to English
2025-03-26 00:02:10 +09:00
Pulkit Sharma
0e667acf7d
Merge branch 'main' into main
2025-03-25 12:31:01 +05:30
choi sung keun
8e9e5facaf
Merge branch 'main' into feat/json-view-component
2025-03-25 09:45:01 +09:00
Ola Hungerford
25f5bb7620
Merge branch 'main' into add-ui-tests
2025-03-24 12:01:41 -07:00
Mark Anthony Cianfrani
30e7a4d7b7
Merge branch 'main' into main
2025-03-24 12:59:13 -04:00
cgoing
d204dd6e7e
feat: json view component - dark color
2025-03-25 01:56:53 +09:00
Mark Anthony Cianfrani
f2f209dbd3
fix(sidebar): maintain order when changing values
2025-03-24 12:56:41 -04:00
cgoing
f0b28d4760
feat: json view component
2025-03-25 01:48:29 +09:00
Ola Hungerford
65a0d46816
Fix formatting
2025-03-24 09:47:34 -07:00
Ola Hungerford
951db44bad
Merge branch 'add-ui-tests' of https://github.com/olaservo/inspector into add-ui-tests
2025-03-24 09:43:52 -07:00
Ola Hungerford
379486b5ea
Add failing test for pull/206
2025-03-24 09:43:48 -07:00
Ola Hungerford
40213bb1ed
Merge branch 'main' into add-ui-tests
2025-03-24 09:30:35 -07:00
Ola Hungerford
f8b7b88a25
Merge pull request #198 from nathanArseneau/error-when-switching-Tools-without-changing-value
...
fix: set default value for input fields in ToolsTab component
2025-03-24 09:29:05 -07:00
Ola Hungerford
b7fa23676a
Fix formatting
2025-03-24 09:27:51 -07:00
Ola Hungerford
a7f25153c4
Add failing ToolsTab test that should get fixed with pull/198
2025-03-24 09:18:58 -07:00
Ola Hungerford
fa3e2867c9
Fix formatting
2025-03-24 09:07:53 -07:00
Ola Hungerford
5735f2347a
Add tests related to issues/187 to confirm fixed
2025-03-24 08:52:45 -07:00
Ola Hungerford
cab1ed3dd8
Add some json form tests and handle css in ui tests
2025-03-24 08:28:28 -07:00
Ola Hungerford
61e229a552
Add sidebar tests
2025-03-23 13:35:24 -07:00
Pulkit Sharma
484e2820bc
Merge branch 'main' into main
2025-03-23 11:08:55 +05:30
Abdelkader Boudih
af44efb236
chore: extract utils escapeUnicode
2025-03-22 16:25:33 +00:00
Pulkit Sharma
4a23585066
Add support in UI to configure request timeout
2025-03-22 21:18:38 +05:30
Abdelkader Boudih
3488bdb613
feat: Add utility function to escape Unicode characters in tool results
2025-03-21 22:21:26 +00:00
Cliff Hall
c726c53b00
Merge branch 'main' into add-log-level-setting
2025-03-21 11:06:31 -04:00
Shinya Fujino
ce81fb976b
Restructure link buttons in sidebar to respect theme
2025-03-20 22:18:44 +09:00
Nathan Arseneau
029e482e05
fix: set default value for input fields in ToolsTab component
2025-03-19 20:15:14 -04:00
Ola Hungerford
cae7c76358
Fix formatting
2025-03-16 15:31:49 -07:00
Ola Hungerford
50a65d0c7a
Use generateDefaultValue for object and array defaults
2025-03-16 15:29:59 -07:00
Ola Hungerford
e1b015e40d
Add comments explaining extra parsing logic
2025-03-16 15:28:07 -07:00
cliffhall
5104952239
Add log level setting in UI
...
* This fixes #188
* In App.tsx
- import LoggingLevel from sdk
- add [logLevel, setLogLevel] useState with value of type LoggingLevel initialized to "debug"
- add useEffect that stores the new logLevel in localStorage as "logLevel"
- added sendLogLevelRequest function that takes a level argument of type LoggingLevel and sends the appropriate request. It calls setLogLevel when done, to update the local UI
- pass logLevel and sendLogLevelRequest to Sidebar component as props
* In Sidebar.tsx
- Import LoggingLevel and LoggingLevelSchema from sdk
- add props and prop types for logLevel and sendLogLevelRequest and loggingSupported
- add Select component populated with the enum values of LoggingLevelSchema, shown only if loggingSupported is true and connectionStatus is "connected"
*
2025-03-15 16:37:10 -04:00
Ola Hungerford
1f214deeab
Merge branch 'main' into handle-empty-json-fields
2025-03-13 06:17:18 -07:00
leoshimo
e5ee00bf89
fix: add dark mode support to SamplingTab JSON display ( #181 )
2025-03-11 12:59:28 -07:00
Justin Spahr-Summers
15bbb7502b
Merge pull request #175 from avi1mizrahi/main
...
Add Bearer Token Support
2025-03-11 10:50:51 +00:00
Avi Mizrahi
dbd616905c
Support bearer token
2025-03-10 17:50:12 +02:00
Ola Hungerford
1ff410ca3d
Merge branch 'main' into handle-empty-json-fields
2025-03-10 05:46:57 -07:00
Cliff Hall
35a0f4611a
Merge branch 'main' into add-subscribe-to-resource
2025-03-08 15:35:54 -05:00