@odigos/ui-kit 0.0.122 → 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.
- package/CHANGELOG.md +20 -0
- package/lib/chunks/ui-components-898f30d4.js +1655 -0
- package/lib/chunks/vendor-f206ac21.js +1 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/loading-text/index.d.ts +1 -1
- package/lib/components/scroll-y/index.d.ts +8 -0
- package/lib/components/styled.d.ts +1 -0
- package/lib/components/v2.js +1 -1
- package/lib/components.js +1 -1
- package/lib/constants.js +1 -1
- package/lib/containers/data-flow/column/add.d.ts +8 -0
- package/lib/containers/data-flow/column/base.d.ts +20 -0
- package/lib/containers/data-flow/column/frame.d.ts +11 -0
- package/lib/containers/data-flow/column/head.d.ts +10 -0
- package/lib/containers/data-flow/column/index.d.ts +13 -0
- package/lib/containers/data-flow/index.d.ts +2 -2
- package/lib/containers.js +194 -106
- package/lib/functions.js +1 -1
- package/lib/hooks.js +1 -1
- package/lib/icons.js +1 -1
- package/lib/snippets/react-flow/index.d.ts +0 -10
- package/lib/snippets.js +1 -1
- package/lib/store.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types.js +1 -1
- package/lib/visuals.js +1 -1
- package/package.json +16 -15
- package/lib/chunks/ui-components-444f70da.js +0 -1755
- package/lib/chunks/vendor-1dea551d.js +0 -1
- package/lib/containers/data-flow/helpers/build-action-nodes.d.ts +0 -17
- package/lib/containers/data-flow/helpers/build-destination-nodes.d.ts +0 -17
- package/lib/containers/data-flow/helpers/build-edges.d.ts +0 -12
- package/lib/containers/data-flow/helpers/build-other-nodes.d.ts +0 -8
- package/lib/containers/data-flow/helpers/build-rule-nodes.d.ts +0 -17
- package/lib/containers/data-flow/helpers/build-source-nodes.d.ts +0 -18
- package/lib/containers/data-flow/helpers/get-node-positions.d.ts +0 -11
- package/lib/snippets/react-flow/edges/labeled-edge.d.ts +0 -10
- package/lib/snippets/react-flow/node-config.d.ts +0 -6
- package/lib/snippets/react-flow/nodes/add-node.d.ts +0 -11
- package/lib/snippets/react-flow/nodes/base-node.d.ts +0 -21
- package/lib/snippets/react-flow/nodes/edged-node.d.ts +0 -9
- package/lib/snippets/react-flow/nodes/frame-node.d.ts +0 -9
- package/lib/snippets/react-flow/nodes/header-node.d.ts +0 -14
- package/lib/snippets/react-flow/nodes/odi-logo-node.d.ts +0 -5
- package/lib/snippets/react-flow/nodes/scroll-node.d.ts +0 -15
- package/lib/snippets/react-flow/nodes/skeleton-node.d.ts +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
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
|
+
|
|
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)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* source selection logic ([#463](https://github.com/odigos-io/ui-kit/issues/463)) ([6e519c5](https://github.com/odigos-io/ui-kit/commit/6e519c5a381920ee447457815377ed9ca3619495))
|
|
22
|
+
|
|
3
23
|
## [0.0.122](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.121...ui-kit-v0.0.122) (2025-11-10)
|
|
4
24
|
|
|
5
25
|
|