@odigos/ui-kit 0.0.129 → 0.0.131
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-c940a3cc.js +2024 -0
- package/lib/chunks/vendor-55cc654c.js +1 -0
- package/lib/components/_v2/badge/index.d.ts +10 -0
- package/lib/components/_v2/button/index.d.ts +2 -1
- package/lib/components/_v2/cards/data-card/index.d.ts +12 -0
- package/lib/components/_v2/cards/index.d.ts +4 -0
- package/lib/components/_v2/cards/section-card/index.d.ts +24 -0
- package/lib/components/_v2/cards/status-card/index.d.ts +9 -0
- package/lib/components/_v2/cards/text-card/index.d.ts +12 -0
- package/lib/components/_v2/drawer/header/index.d.ts +9 -0
- package/lib/components/_v2/drawer/index.d.ts +9 -0
- package/lib/components/_v2/header/index.d.ts +7 -0
- package/lib/components/_v2/icon-button/index.d.ts +14 -0
- package/lib/components/_v2/index.d.ts +8 -0
- package/lib/components/_v2/navbar/index.d.ts +12 -0
- package/lib/components/_v2/segment/index.d.ts +3 -1
- package/lib/components/_v2/table/index.d.ts +25 -0
- package/lib/components/_v2/tag/index.d.ts +9 -0
- package/lib/components/_v2/typography/index.d.ts +4 -8
- package/lib/components/code/index.d.ts +2 -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/_v2/index.d.ts +1 -0
- package/lib/containers/_v2/pipeline-collectors/general-info/index.d.ts +8 -0
- package/lib/containers/_v2/pipeline-collectors/general-info/yaml-drawer/index.d.ts +9 -0
- package/lib/containers/_v2/pipeline-collectors/helpers/get-general-badge.d.ts +5 -0
- package/lib/containers/_v2/pipeline-collectors/helpers/get-general-status-card.d.ts +4 -0
- package/lib/containers/_v2/pipeline-collectors/helpers/get-general-text-cards.d.ts +4 -0
- package/lib/containers/_v2/pipeline-collectors/helpers/get-general-title.d.ts +2 -0
- package/lib/containers/_v2/pipeline-collectors/helpers/index.d.ts +4 -0
- package/lib/containers/_v2/pipeline-collectors/index.d.ts +11 -0
- package/lib/containers/_v2/pipeline-collectors/pods-info/index.d.ts +9 -0
- package/lib/containers/_v2/pipeline-collectors/pods-info/pod-drawer/index.d.ts +9 -0
- package/lib/containers/_v2/pipeline-collectors/toolbar/index.d.ts +17 -0
- package/lib/containers/v2.js +15 -0
- package/lib/containers.js +24 -24
- package/lib/functions/generate-id/index.d.ts +1 -0
- package/lib/functions/get-status-color/index.d.ts +2 -2
- package/lib/functions/get-status-from-pod-status/index.d.ts +2 -0
- package/lib/functions/get-status-icon/index.d.ts +2 -2
- package/lib/functions/index.d.ts +2 -0
- package/lib/functions.js +1 -1
- package/lib/hooks/index.d.ts +1 -0
- package/lib/hooks/useInfiniteScroll.d.ts +10 -0
- package/lib/hooks/useTimeAgo.d.ts +4 -3
- package/lib/hooks.js +1 -1
- package/lib/icons/arrows/arrow-down-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-down-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-left-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-left-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-right-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-right-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-up-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-up-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-down-circle-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-down-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-down-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-left-circle-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-left-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-left-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-right-circle-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-right-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-right-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-up-circle-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-up-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-up-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/index.d.ts +20 -0
- package/lib/icons/common/home-icon/index.d.ts +1 -1
- package/lib/icons/index.d.ts +1 -0
- package/lib/icons.js +1 -1
- package/lib/mock-data/index.d.ts +1 -0
- package/lib/mock-data/pipeline-collectors/index.d.ts +6 -0
- package/lib/snippets.js +1 -1
- package/lib/store.js +1 -1
- package/lib/theme/animations/index.d.ts +4 -0
- package/lib/theme/palletes/index.d.ts +5 -1
- package/lib/theme.js +1 -1
- package/lib/types/common/index.d.ts +7 -2
- package/lib/types/index.d.ts +1 -0
- package/lib/types/pipeline-collectors/index.d.ts +102 -0
- package/lib/types.js +1 -1
- package/lib/visuals.js +1 -1
- package/package.json +17 -19
- package/lib/chunks/ui-components-a3c3ae8b.js +0 -1770
- package/lib/chunks/vendor-f206ac21.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.131](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.130...ui-kit-v0.0.131) (2025-12-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* implement YAML drawer and enhance general info component with YAML display ([#488](https://github.com/odigos-io/ui-kit/issues/488)) ([9365630](https://github.com/odigos-io/ui-kit/commit/9365630fa02a85887f39cd30dfd9fc1db719e722))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* pods icon in table ([#490](https://github.com/odigos-io/ui-kit/issues/490)) ([1119317](https://github.com/odigos-io/ui-kit/commit/111931757aff39dc7f1afc8717a73a95656e537b))
|
|
14
|
+
|
|
15
|
+
## [0.0.130](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.129...ui-kit-v0.0.130) (2025-12-03)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* add drawer for on click pod in table rows ([#487](https://github.com/odigos-io/ui-kit/issues/487)) ([193b4ac](https://github.com/odigos-io/ui-kit/commit/193b4ac7e9b6849caa622e065cd7712291ff8045))
|
|
21
|
+
* create new design for pipeline page ([#483](https://github.com/odigos-io/ui-kit/issues/483)) ([913b46c](https://github.com/odigos-io/ui-kit/commit/913b46ca09752921b3892bdf0ecd9d40652ef20d))
|
|
22
|
+
|
|
3
23
|
## [0.0.129](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.128...ui-kit-v0.0.129) (2025-11-27)
|
|
4
24
|
|
|
5
25
|
|