@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
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export * from './arrow-down-icon';
|
|
2
|
+
export * from './arrow-down-square-icon';
|
|
3
|
+
export * from './arrow-left-icon';
|
|
4
|
+
export * from './arrow-left-square-icon';
|
|
5
|
+
export * from './arrow-right-icon';
|
|
6
|
+
export * from './arrow-right-square-icon';
|
|
7
|
+
export * from './arrow-up-icon';
|
|
8
|
+
export * from './arrow-up-square-icon';
|
|
9
|
+
export * from './chevron-down-circle-icon';
|
|
10
|
+
export * from './chevron-down-icon';
|
|
11
|
+
export * from './chevron-down-square-icon';
|
|
12
|
+
export * from './chevron-left-circle-icon';
|
|
13
|
+
export * from './chevron-left-icon';
|
|
14
|
+
export * from './chevron-left-square-icon';
|
|
15
|
+
export * from './chevron-right-circle-icon';
|
|
16
|
+
export * from './chevron-right-icon';
|
|
17
|
+
export * from './chevron-right-square-icon';
|
|
18
|
+
export * from './chevron-up-circle-icon';
|
|
19
|
+
export * from './chevron-up-icon';
|
|
20
|
+
export * from './chevron-up-square-icon';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { SVG } from '
|
|
1
|
+
import type { SVG } from '@/types';
|
|
2
2
|
export declare const HomeIcon: SVG;
|