@odigos/ui-kit 0.0.73 → 0.0.75
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/CHANGELOG.md +14 -0
- package/lib/containers.js +2 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.75](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.74...ui-kit-v0.0.75) (2025-08-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* crash when opening libraries in source drawer ([#294](https://github.com/odigos-io/ui-kit/issues/294)) ([f24fc55](https://github.com/odigos-io/ui-kit/commit/f24fc5572fdda0fbdf6e16049ef18f4249c7ca63))
|
|
9
|
+
|
|
10
|
+
## [0.0.74](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.73...ui-kit-v0.0.74) (2025-08-06)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* bump ([#292](https://github.com/odigos-io/ui-kit/issues/292)) ([e8ba38a](https://github.com/odigos-io/ui-kit/commit/e8ba38a15468f1058ec047c0c594367a3113dece))
|
|
16
|
+
|
|
3
17
|
## [0.0.73](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.72...ui-kit-v0.0.73) (2025-08-06)
|
|
4
18
|
|
|
5
19
|
|
package/lib/containers.js
CHANGED
|
@@ -4301,7 +4301,7 @@ const Libraries = ({ source, fetchSourceLibraries }) => {
|
|
|
4301
4301
|
},
|
|
4302
4302
|
}).then(({ data }) => {
|
|
4303
4303
|
if (data?.instrumentationInstanceComponents) {
|
|
4304
|
-
setLibraries(data.instrumentationInstanceComponents);
|
|
4304
|
+
setLibraries(deepClone(data.instrumentationInstanceComponents).sort((a, b) => a.name.localeCompare(b.name)));
|
|
4305
4305
|
}
|
|
4306
4306
|
else {
|
|
4307
4307
|
setFailed(true);
|
|
@@ -4315,9 +4315,7 @@ const Libraries = ({ source, fetchSourceLibraries }) => {
|
|
|
4315
4315
|
return (React.createElement(FlexColumn, { "$gap": 12 }, failed ? (React.createElement(CenterThis, null,
|
|
4316
4316
|
React.createElement(NoDataFound, { subTitle: 'Could not fetch libraries for this source' }))) : !libraries?.length ? (React.createElement(CenterThis, { "$gap": 12 },
|
|
4317
4317
|
React.createElement(NoDataFound, { title: 'No libraries found', subTitle: '' }),
|
|
4318
|
-
React.createElement(NotificationNote, { type: StatusType.Warning, message: 'This feature is in early development, and has very limited support' }))) : (React.createElement(DataCard, { title: 'Instrumented Libraries' }, libraries
|
|
4319
|
-
.sort((a, b) => a.name.localeCompare(b.name))
|
|
4320
|
-
.map(({ name, nonIdentifyingAttributes }, i) => (React.createElement(Fragment, { key: `library-${name}` },
|
|
4318
|
+
React.createElement(NotificationNote, { type: StatusType.Warning, message: 'This feature is in early development, and has very limited support' }))) : (React.createElement(DataCard, { title: 'Instrumented Libraries' }, libraries.map(({ name, nonIdentifyingAttributes }, i) => (React.createElement(Fragment, { key: `library-${name}` },
|
|
4321
4319
|
React.createElement(Row, null,
|
|
4322
4320
|
React.createElement(Text, { size: 12, color: theme.text.grey }, name),
|
|
4323
4321
|
React.createElement(FlexRow, { "$gap": 4 }, nonIdentifyingAttributes.map(({ key, value }) => {
|