@odigos/ui-kit 0.0.123 → 0.0.124

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/lib/chunks/ui-components-898f30d4.js +1655 -0
  3. package/lib/chunks/vendor-f206ac21.js +1 -0
  4. package/lib/components/index.d.ts +1 -0
  5. package/lib/components/loading-text/index.d.ts +1 -1
  6. package/lib/components/scroll-y/index.d.ts +8 -0
  7. package/lib/components/styled.d.ts +1 -0
  8. package/lib/components/v2.js +1 -1
  9. package/lib/components.js +1 -1
  10. package/lib/constants.js +1 -1
  11. package/lib/containers/data-flow/column/add.d.ts +8 -0
  12. package/lib/containers/data-flow/column/base.d.ts +20 -0
  13. package/lib/containers/data-flow/column/frame.d.ts +11 -0
  14. package/lib/containers/data-flow/column/head.d.ts +10 -0
  15. package/lib/containers/data-flow/column/index.d.ts +13 -0
  16. package/lib/containers/data-flow/index.d.ts +2 -2
  17. package/lib/containers.js +194 -106
  18. package/lib/functions.js +1 -1
  19. package/lib/hooks.js +1 -1
  20. package/lib/icons.js +1 -1
  21. package/lib/snippets/react-flow/index.d.ts +0 -10
  22. package/lib/snippets.js +1 -1
  23. package/lib/store.js +1 -1
  24. package/lib/theme.js +1 -1
  25. package/lib/types.js +1 -1
  26. package/lib/visuals.js +1 -1
  27. package/package.json +2 -1
  28. package/lib/chunks/ui-components-16ba4841.js +0 -1755
  29. package/lib/chunks/vendor-1dea551d.js +0 -1
  30. package/lib/containers/data-flow/helpers/build-action-nodes.d.ts +0 -17
  31. package/lib/containers/data-flow/helpers/build-destination-nodes.d.ts +0 -17
  32. package/lib/containers/data-flow/helpers/build-edges.d.ts +0 -12
  33. package/lib/containers/data-flow/helpers/build-other-nodes.d.ts +0 -8
  34. package/lib/containers/data-flow/helpers/build-rule-nodes.d.ts +0 -17
  35. package/lib/containers/data-flow/helpers/build-source-nodes.d.ts +0 -18
  36. package/lib/containers/data-flow/helpers/get-node-positions.d.ts +0 -11
  37. package/lib/snippets/react-flow/edges/labeled-edge.d.ts +0 -10
  38. package/lib/snippets/react-flow/node-config.d.ts +0 -6
  39. package/lib/snippets/react-flow/nodes/add-node.d.ts +0 -11
  40. package/lib/snippets/react-flow/nodes/base-node.d.ts +0 -21
  41. package/lib/snippets/react-flow/nodes/edged-node.d.ts +0 -9
  42. package/lib/snippets/react-flow/nodes/frame-node.d.ts +0 -9
  43. package/lib/snippets/react-flow/nodes/header-node.d.ts +0 -14
  44. package/lib/snippets/react-flow/nodes/odi-logo-node.d.ts +0 -5
  45. package/lib/snippets/react-flow/nodes/scroll-node.d.ts +0 -15
  46. package/lib/snippets/react-flow/nodes/skeleton-node.d.ts +0 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.124](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.123...ui-kit-v0.0.124) (2025-11-17)
4
+
5
+
6
+ ### Features
7
+
8
+ * add ScrollY component for vertical scrolling and enhance overview performance ([#467](https://github.com/odigos-io/ui-kit/issues/467)) ([10a02c2](https://github.com/odigos-io/ui-kit/commit/10a02c22c6bbe8af07751166f13bcf4c8eb08087))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * performance by removing hidden nodes ([#465](https://github.com/odigos-io/ui-kit/issues/465)) ([31d2bcb](https://github.com/odigos-io/ui-kit/commit/31d2bcb3b211839ddb85f9d54615c15501208b06))
14
+ * update source selection logic to conditionally include filtered sources based on search text ([#468](https://github.com/odigos-io/ui-kit/issues/468)) ([236a450](https://github.com/odigos-io/ui-kit/commit/236a4508c9f4768a310d6dc56f4cf2c3dd37f674))
15
+
3
16
  ## [0.0.123](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.122...ui-kit-v0.0.123) (2025-11-16)
4
17
 
5
18