@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.
- package/.devcontainer/README.md +26 -0
- package/.devcontainer/devcontainer.json +19 -0
- package/CHANGELOG.md +14 -0
- package/lib/chunks/ui-components-7cef5b2b.js +1604 -0
- package/lib/components/status/index.d.ts +2 -1
- package/lib/components/text/index.d.ts +1 -0
- package/lib/components.js +1 -1
- package/lib/constants.js +1 -1
- package/lib/containers/source-drawer/odigos-health/index.d.ts +6 -0
- package/lib/containers.js +103 -103
- package/lib/functions/get-status-type-from-odigos-health/index.d.ts +2 -0
- package/lib/functions/index.d.ts +1 -0
- package/lib/functions.js +1 -1
- package/lib/hooks.js +1 -1
- package/lib/icons.js +1 -1
- package/lib/snippets.js +1 -1
- package/lib/store.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types/instrumentation-rules/index.d.ts +1 -0
- package/lib/types/sources/index.d.ts +17 -0
- package/lib/types.js +1 -1
- package/package.json +1 -1
- package/lib/chunks/ui-components-6977d7a8.js +0 -1604
|
@@ -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
|
|