@odigos/ui-kit 0.0.107 → 0.0.109

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.
@@ -0,0 +1,26 @@
1
+ # Odigos UI Kit - Development Container
2
+
3
+ Development container with Node.js 22, TypeScript, and VS Code extensions pre-configured.
4
+
5
+ ## Quick Start
6
+
7
+ 1. Install [Docker](https://www.docker.com/get-started) and [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
8
+ 2. Open project in VS Code
9
+ 3. Click "Reopen in Container" or use Command Palette: `Dev Containers: Reopen in Container`
10
+
11
+ ## Available Commands
12
+
13
+ ```bash
14
+ yarn dev # Start Storybook (localhost:6006)
15
+ yarn build # Build library
16
+ yarn build:analyze # Build with bundle analysis
17
+ yarn lint # Lint code
18
+ ```
19
+
20
+ ## Troubleshooting
21
+
22
+ - **Container won't start**: Ensure Docker is running, try rebuilding container
23
+ - **Extensions not working**: Reload window via Command Palette
24
+ - **Performance issues**: Node modules use volume caching for better performance
25
+
26
+ Happy coding! 🚀
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "Odigos UI Kit",
3
+ "image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bullseye",
4
+ "customizations": {
5
+ "vscode": {
6
+ "extensions": [
7
+ "ms-vscode.vscode-eslint",
8
+ "styled-components.vscode-styled-components"
9
+ ],
10
+ "settings": {
11
+ "editor.formatOnSave": true,
12
+ "editor.codeActionsOnSave": {
13
+ "source.fixAll.eslint": "explicit"
14
+ }
15
+ }
16
+ }
17
+ },
18
+ "postCreateCommand": "yarn"
19
+ }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.109](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.108...ui-kit-v0.0.109) (2025-09-25)
4
+
5
+
6
+ ### Features
7
+
8
+ * **custom instrumentation:** Symbols support for Custom Instrumentations ([#402](https://github.com/odigos-io/ui-kit/issues/402)) | RUN-150 ([7560c27](https://github.com/odigos-io/ui-kit/commit/7560c27c202faaf435d02e29689baebf29ba6844))
9
+
10
+ ## [0.0.108](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.107...ui-kit-v0.0.108) (2025-09-10)
11
+
12
+
13
+ ### Features
14
+
15
+ * add OdigosHealth component and integrate health status into SourceDrawer ([#391](https://github.com/odigos-io/ui-kit/issues/391)) ([54827dd](https://github.com/odigos-io/ui-kit/commit/54827ddb39971f8878f9924c814c5e95a794d427))
16
+
3
17
  ## [0.0.107](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.106...ui-kit-v0.0.107) (2025-09-08)
4
18
 
5
19