@odigos/ui-kit 0.0.111 → 0.0.114
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/.devcontainer/devcontainer.json +3 -1
- package/CHANGELOG.md +27 -0
- package/VERSIONING.md +228 -0
- package/lib/chunks/{ui-components-152ce1ee.js → ui-components-f1517f30.js} +33 -32
- package/lib/components/input-table/index.d.ts +1 -0
- package/lib/components.js +1 -1
- package/lib/constants/strings/index.d.ts +2 -2
- package/lib/constants.js +1 -1
- package/lib/containers/data-stream-modal/index.d.ts +4 -1
- package/lib/containers/index.d.ts +1 -0
- package/lib/containers.js +105 -101
- package/lib/functions.js +1 -1
- package/lib/hooks/useInstrumentationRuleFormData.d.ts +1 -1
- package/lib/hooks.js +1 -1
- package/lib/icons.js +1 -1
- package/lib/snippets.js +1 -1
- package/lib/store.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types/instrumentation-rules/index.d.ts +13 -5
- package/lib/types.js +1 -1
- package/package.json +1 -1
package/lib/snippets.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{aS as AddButton,ch as AddNode,ci as BaseNode,
|
|
1
|
+
export{aS as AddButton,ch as AddNode,ci as BaseNode,bq as CopyText,cj as EdgedNode,bm as EditButton,az as Flow,ck as FrameNode,cl as HeaderNode,cq as LabeledEdge,cm as MapItemNode,cn as NoDataNode,aT as NoteBackToSummary,bs as PodContainer,co as ScrollNode,cp as SkeletonNode,bw as SourceContainer,al as nodeConfig}from"./chunks/ui-components-f1517f30.js";import"./icons.js";import"react";import"zustand";import"javascript-time-ago";import"./chunks/vendor-1dea551d.js";import"styled-components";import"@xyflow/react";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"lottie-react";
|
package/lib/store.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{cg as useActiveNodeStore,
|
|
1
|
+
export{cg as useActiveNodeStore,bK as useDarkMode,as as useDataStreamStore,p as useDrawerStore,w as useEntityStore,a2 as useFilterStore,at as useInstrumentStore,N as useModalStore,o as useNotificationStore,u as usePendingStore,bi as useSelectedStore,b0 as useSetupStore}from"./chunks/ui-components-f1517f30.js";import"./icons.js";import"react";import"zustand";import"javascript-time-ago";import"./chunks/vendor-1dea551d.js";import"styled-components";import"@xyflow/react";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"lottie-react";
|
package/lib/theme.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{T as default}from"./chunks/ui-components-
|
|
1
|
+
export{T as default}from"./chunks/ui-components-f1517f30.js";import"styled-components";import"./icons.js";import"react";import"zustand";import"javascript-time-ago";import"./chunks/vendor-1dea551d.js";import"@xyflow/react";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"lottie-react";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { WorkloadId } from '../sources';
|
|
2
|
-
import type { ProgrammingLanguages, SVG } from '../common';
|
|
2
|
+
import type { Condition, ProgrammingLanguages, SVG } from '../common';
|
|
3
3
|
export declare enum InstrumentationRuleType {
|
|
4
4
|
CodeAttributes = "CodeAttributes",
|
|
5
5
|
HeadersCollection = "HeadersCollection",
|
|
@@ -20,6 +20,7 @@ export interface InstrumentationRule {
|
|
|
20
20
|
language: string;
|
|
21
21
|
library: string;
|
|
22
22
|
}[] | null;
|
|
23
|
+
conditions?: Condition[] | null;
|
|
23
24
|
codeAttributes?: CodeAttributes | null;
|
|
24
25
|
headersCollection?: HeadersCollection | null;
|
|
25
26
|
payloadCollection?: PayloadCollection | null;
|
|
@@ -48,15 +49,22 @@ export interface HeadersCollection {
|
|
|
48
49
|
[HeadersCollectionKeyTypes.HeaderKeys]?: string[] | null;
|
|
49
50
|
}
|
|
50
51
|
export declare enum CustomInstrumentationsKeyTypes {
|
|
51
|
-
|
|
52
|
+
Java = "java",
|
|
53
|
+
Golang = "golang"
|
|
52
54
|
}
|
|
53
|
-
export interface
|
|
55
|
+
export interface JavaCustomProbe {
|
|
54
56
|
className: string;
|
|
55
57
|
methodName: string;
|
|
56
|
-
|
|
58
|
+
}
|
|
59
|
+
export interface GolangCustomProbe {
|
|
60
|
+
packageName: string;
|
|
61
|
+
functionName: string | null;
|
|
62
|
+
receiverName?: string | null;
|
|
63
|
+
receiverMethodName?: string | null;
|
|
57
64
|
}
|
|
58
65
|
export interface CustomInstrumentations {
|
|
59
|
-
[CustomInstrumentationsKeyTypes.
|
|
66
|
+
[CustomInstrumentationsKeyTypes.Java]?: JavaCustomProbe[] | null;
|
|
67
|
+
[CustomInstrumentationsKeyTypes.Golang]?: GolangCustomProbe[] | null;
|
|
60
68
|
}
|
|
61
69
|
interface HttpPayloadCollection {
|
|
62
70
|
mimeTypes?: string[] | null;
|
package/lib/types.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{bP as ActionCategory,c as ActionKeyTypes,A as ActionType,am as AddNodeTypes,bH as AgentEnvVarsInjectionMethod,bS as BooleanOperation,ba as CodeAttributesKeyTypes,J as Crud,b9 as CustomInstrumentationsKeyTypes,bY as DestinationTypes,ak as EdgeTypes,E as EntityTypes,j as FieldTypes,b8 as HeadersCollectionKeyTypes,d as InputTypes,bJ as InstallationMethod,bc as InstrumentationRuleType,bW as IntrumentationStatus,bT as JsonOperation,K as K8sAttributesFrom,bx as K8sResourceKind,bG as MountMethod,ai as NodeTypes,bR as NumberOperation,bZ as OdigosHealthStatus,aU as OtherEntityTypes,a0 as OtherStatus,bb as PayloadCollectionKeyTypes,bV as PlatformType,bI as Profile,by as ProgrammingLanguages,aZ as SignalType,bX as SortDirection,v as StatusType,bQ as StringOperation,bU as Tier}from"./chunks/ui-components-f1517f30.js";import"./icons.js";import"react";import"zustand";import"javascript-time-ago";import"./chunks/vendor-1dea551d.js";import"styled-components";import"@xyflow/react";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"lottie-react";
|