@odigos/ui-kit 0.0.73 → 0.0.74

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.74](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.73...ui-kit-v0.0.74) (2025-08-06)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * bump ([#292](https://github.com/odigos-io/ui-kit/issues/292)) ([e8ba38a](https://github.com/odigos-io/ui-kit/commit/e8ba38a15468f1058ec047c0c594367a3113dece))
9
+
3
10
  ## [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
11
 
5
12
 
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(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 }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odigos/ui-kit",
3
- "version": "0.0.73",
3
+ "version": "0.0.74",
4
4
  "author": "Odigos",
5
5
  "repository": {
6
6
  "type": "git",