@odigos/ui-kit 0.0.181 → 0.0.182
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 +14 -0
- package/README.md +16 -12
- package/lib/chunks/ui-components-DPfN8yF_.js +2296 -0
- package/lib/chunks/vendor-ex1Kb_ap.js +1 -0
- package/lib/components/_v2/input/index.d.ts +1 -2
- package/lib/components/_v2/segment/index.d.ts +1 -2
- package/lib/components/_v2/table/styled.d.ts +29 -18
- package/lib/components/selection-button/index.d.ts +1 -1
- package/lib/components/styled.d.ts +46 -60
- package/lib/components/tab-list/index.d.ts +4 -3
- package/lib/components/text/index.d.ts +1 -1
- package/lib/components/v2.js +1 -1
- package/lib/components.js +1 -1
- package/lib/constants.js +1 -1
- package/lib/containers/_v2/central-connections/index.d.ts +1 -2
- package/lib/containers/_v2/central-connections/source-drawer/styled.d.ts +15 -17
- package/lib/containers/data-flow-actions-menu/search/search-results/builder.d.ts +1 -1
- package/lib/containers/data-flow-actions-menu/styled.d.ts +9 -5
- package/lib/containers/source-drawer/describe/index.d.ts +1 -1
- package/lib/containers/source-drawer/odigos-health/index.d.ts +1 -2
- package/lib/containers/v2.js +21 -21
- package/lib/containers.js +122 -122
- package/lib/contexts/odigos-context.d.ts +2 -2
- package/lib/contexts.js +1 -1
- package/lib/functions.js +1 -1
- package/lib/hooks/useActionFormData.d.ts +1 -1
- package/lib/hooks.js +1 -1
- package/lib/icons/auth/okta-icon/index.d.ts +1 -1
- package/lib/icons.js +1 -1
- package/lib/snippets/add-button/index.d.ts +1 -1
- package/lib/snippets.js +1 -1
- package/lib/store.js +1 -1
- package/lib/theme/animations/index.d.ts +28 -22
- package/lib/theme/index.d.ts +3 -12
- package/lib/theme.js +1 -1
- package/lib/types.js +1 -1
- package/lib/visuals.js +1 -1
- package/package.json +25 -24
- package/lib/chunks/ui-components-93edfedb.js +0 -2297
- package/lib/chunks/vendor-0965fadc.js +0 -1
- /package/lib/theme/{palletes → palettes}/index.d.ts +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
|
-
import { type ButtonProps } from '@/components/button';
|
|
3
2
|
import { type TextProps } from '@/components/text';
|
|
3
|
+
import { type ButtonProps } from '@/components/button';
|
|
4
4
|
interface AddButtonProps extends ButtonProps {
|
|
5
5
|
label?: string;
|
|
6
6
|
textProps?: TextProps;
|
package/lib/snippets.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{bD as AddButton,cc as CopyText,c8 as EditButton,c6 as Flow,dg as MapItemNode,dh as NoDataNode,bE as NoteBackToSummary,ce as PodContainer,cl as SourceContainer}from"./chunks/ui-components-DPfN8yF_.js";import"./icons.js";import"./chunks/vendor-ex1Kb_ap.js";import"react";import"react-dom";import"styled-components";import"zustand";import"javascript-time-ago";import"@xyflow/react";import"react-error-boundary";import"lottie-react";import"prism-react-renderer";
|
package/lib/store.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{P as ProgressKeys,
|
|
1
|
+
export{P as ProgressKeys,d8 as useActiveNodeStore,cr as useDarkMode,u as useDataStreamStore,av as useDrawerStore,a5 as useEntityStore,aV as useFilterStore,aI as useModalStore,b_ as useNotificationStore,g as useProgressStore,b8 as useSelectedStore,bA as useSetupStore}from"./chunks/ui-components-DPfN8yF_.js";import"./icons.js";import"./chunks/vendor-ex1Kb_ap.js";import"react";import"react-dom";import"styled-components";import"zustand";import"javascript-time-ago";import"@xyflow/react";import"react-error-boundary";import"lottie-react";import"prism-react-renderer";
|
|
@@ -1,26 +1,32 @@
|
|
|
1
|
-
|
|
1
|
+
import { keyframes } from 'styled-components';
|
|
2
|
+
type Keyframes = ReturnType<typeof keyframes>;
|
|
3
|
+
interface SlideAnimations {
|
|
2
4
|
in: {
|
|
3
|
-
left:
|
|
4
|
-
right:
|
|
5
|
-
top:
|
|
6
|
-
bottom:
|
|
7
|
-
center:
|
|
5
|
+
left: Keyframes;
|
|
6
|
+
right: Keyframes;
|
|
7
|
+
top: Keyframes;
|
|
8
|
+
bottom: Keyframes;
|
|
9
|
+
center: Keyframes;
|
|
8
10
|
};
|
|
9
11
|
out: {
|
|
10
|
-
left:
|
|
11
|
-
right:
|
|
12
|
-
top:
|
|
13
|
-
bottom:
|
|
14
|
-
center:
|
|
12
|
+
left: Keyframes;
|
|
13
|
+
right: Keyframes;
|
|
14
|
+
top: Keyframes;
|
|
15
|
+
bottom: Keyframes;
|
|
16
|
+
center: Keyframes;
|
|
15
17
|
};
|
|
16
|
-
}
|
|
17
|
-
export declare const
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
export declare const
|
|
23
|
-
export declare const
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
18
|
+
}
|
|
19
|
+
export declare const slide: SlideAnimations;
|
|
20
|
+
interface ProgressAnimations {
|
|
21
|
+
in: Keyframes;
|
|
22
|
+
out: Keyframes;
|
|
23
|
+
}
|
|
24
|
+
export declare const progress: ProgressAnimations;
|
|
25
|
+
export declare const ping: Keyframes;
|
|
26
|
+
export declare const shimmer: Keyframes;
|
|
27
|
+
interface FadeAnimations {
|
|
28
|
+
in: Keyframes;
|
|
29
|
+
out: Keyframes;
|
|
30
|
+
}
|
|
31
|
+
export declare const fade: FadeAnimations;
|
|
32
|
+
export {};
|
package/lib/theme/index.d.ts
CHANGED
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
import * as opacity from './opacity';
|
|
2
|
-
import * as
|
|
2
|
+
import * as palettes from './palettes';
|
|
3
3
|
import * as animations from './animations';
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
Provider: import("react").FC<{
|
|
7
|
-
children?: import("react").ReactNode | undefined;
|
|
8
|
-
}>;
|
|
9
|
-
useTheme: typeof useTheme;
|
|
10
|
-
opacity: typeof opacity;
|
|
11
|
-
palletes: typeof palletes;
|
|
12
|
-
animations: typeof animations;
|
|
13
|
-
};
|
|
14
|
-
export default Theme;
|
|
4
|
+
import { Provider as ThemeProvider } from './provider';
|
|
5
|
+
export { ThemeProvider, opacity, palettes, animations };
|
package/lib/theme.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{d9 as ThemeProvider,da as animations,db as opacity,dc as palettes}from"./chunks/ui-components-DPfN8yF_.js";import"./icons.js";import"./chunks/vendor-ex1Kb_ap.js";import"react";import"react-dom";import"styled-components";import"zustand";import"javascript-time-ago";import"@xyflow/react";import"react-error-boundary";import"lottie-react";import"prism-react-renderer";
|
package/lib/types.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{cw as ActionCategory,ac as ActionKeyTypes,aa as ActionType,cx as AddNodeTypes,cy as BooleanOperation,bV as CodeAttributesKeyTypes,aH as Crud,bT as CustomInstrumentationsKeyTypes,bg as DesiredStateProgress,cz as DestinationTypes,cA as EdgeTypes,E as EntityTypes,an as FieldTypes,bU as GolangCustomProbe,bR as HeadersCollectionKeyTypes,ah as InputTypes,cB as InstallationMethod,bX as InstrumentationRuleType,cC as IntrumentationStatus,bS as JavaCustomProbe,cD as JsonOperation,ab as K8sAttributesFrom,cj as K8sResourceKind,cE as ListDirection,c5 as NodeTypes,cF as NumberOperation,cG as OtelDistroName,bF as OtherEntityTypes,aS as OtherStatus,O as OtherStatusType,bW as PayloadCollectionKeyTypes,cH as PlatformType,cI as PodContainerLifecycleStatus,cJ as PodContainerStatus,cK as PodPhase,cL as Profile,ck as ProgrammingLanguages,bJ as SignalType,cM as SortDirection,S as StatusType,cN as StringOperation,c1 as Tier,_ as WorkloadRolloutStatus}from"./chunks/ui-components-DPfN8yF_.js";import"./icons.js";import"./chunks/vendor-ex1Kb_ap.js";import"react";import"react-dom";import"styled-components";import"zustand";import"javascript-time-ago";import"@xyflow/react";import"react-error-boundary";import"lottie-react";import"prism-react-renderer";
|
package/lib/visuals.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{dw as VISUAL_ODIGOS_LOGO_HEIGHT,dx as VISUAL_ODIGOS_LOGO_WIDTH,dy as VisualGreenRings,dz as VisualOdigosLogo}from"./chunks/ui-components-DPfN8yF_.js";import"./icons.js";import"./chunks/vendor-ex1Kb_ap.js";import"react";import"react-dom";import"styled-components";import"zustand";import"javascript-time-ago";import"@xyflow/react";import"react-error-boundary";import"lottie-react";import"prism-react-renderer";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odigos/ui-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.182",
|
|
4
4
|
"author": "Odigos",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -98,50 +98,51 @@
|
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
100
|
"peerDependencies": {
|
|
101
|
-
"react": "
|
|
102
|
-
"react-dom": "
|
|
101
|
+
"react": "19.2.4",
|
|
102
|
+
"react-dom": "19.2.4",
|
|
103
|
+
"styled-components": "6.3.8"
|
|
103
104
|
},
|
|
104
105
|
"dependencies": {
|
|
105
|
-
"@tanstack/react-virtual": "^3.13.
|
|
106
|
+
"@tanstack/react-virtual": "^3.13.18",
|
|
106
107
|
"@xyflow/react": "^12.10.0",
|
|
107
|
-
"javascript-time-ago": "^2.
|
|
108
|
+
"javascript-time-ago": "^2.6.2",
|
|
108
109
|
"lottie-react": "^2.4.1",
|
|
109
110
|
"prism-react-renderer": "^2.4.1",
|
|
110
|
-
"react": "
|
|
111
|
-
"react-dom": "
|
|
112
|
-
"react-error-boundary": "^6.0
|
|
113
|
-
"styled-components": "
|
|
114
|
-
"zustand": "^5.0.
|
|
111
|
+
"react": "19.2.4",
|
|
112
|
+
"react-dom": "19.2.4",
|
|
113
|
+
"react-error-boundary": "^6.1.0",
|
|
114
|
+
"styled-components": "6.3.8",
|
|
115
|
+
"zustand": "^5.0.10"
|
|
115
116
|
},
|
|
116
117
|
"devDependencies": {
|
|
117
|
-
"@babel/core": "^7.28.
|
|
118
|
-
"@babel/preset-env": "^7.28.
|
|
118
|
+
"@babel/core": "^7.28.6",
|
|
119
|
+
"@babel/preset-env": "^7.28.6",
|
|
119
120
|
"@babel/preset-react": "^7.28.5",
|
|
120
121
|
"@babel/preset-typescript": "^7.28.5",
|
|
121
122
|
"@eslint/eslintrc": "^3.3.3",
|
|
122
|
-
"@rollup/plugin-commonjs": "^
|
|
123
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
123
124
|
"@rollup/plugin-json": "^6.1.0",
|
|
124
|
-
"@rollup/plugin-node-resolve": "^16.0.
|
|
125
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
125
126
|
"@rollup/plugin-terser": "^0.4.4",
|
|
126
|
-
"@rollup/plugin-typescript": "^12.
|
|
127
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
127
128
|
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
|
|
128
|
-
"@storybook/react-webpack5": "10.1
|
|
129
|
-
"@types/node": "^25.0.
|
|
130
|
-
"@types/react": "^19.2.
|
|
129
|
+
"@storybook/react-webpack5": "10.2.1",
|
|
130
|
+
"@types/node": "^25.0.10",
|
|
131
|
+
"@types/react": "^19.2.10",
|
|
131
132
|
"@types/react-dom": "^19.2.3",
|
|
132
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
133
|
-
"@typescript-eslint/parser": "^8.
|
|
133
|
+
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
134
|
+
"@typescript-eslint/parser": "^8.54.0",
|
|
134
135
|
"babel-loader": "^10.0.0",
|
|
135
136
|
"babel-plugin-styled-components": "^2.1.4",
|
|
136
137
|
"eslint": "^9.39.2",
|
|
137
138
|
"eslint-plugin-react": "^7.37.5",
|
|
138
|
-
"eslint-plugin-storybook": "10.1
|
|
139
|
+
"eslint-plugin-storybook": "10.2.1",
|
|
139
140
|
"postcss": "^8.5.6",
|
|
140
|
-
"rollup": "^
|
|
141
|
+
"rollup": "^4.57.0",
|
|
141
142
|
"rollup-plugin-filesize": "^10.0.0",
|
|
142
143
|
"rollup-plugin-postcss": "^4.0.2",
|
|
143
|
-
"rollup-plugin-visualizer": "^6.0.
|
|
144
|
-
"storybook": "10.1
|
|
144
|
+
"rollup-plugin-visualizer": "^6.0.5",
|
|
145
|
+
"storybook": "10.2.1",
|
|
145
146
|
"typescript": "^5.9.3"
|
|
146
147
|
}
|
|
147
148
|
}
|