@grafana/plugin-types 0.0.35 → 0.0.36
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.
|
@@ -61,6 +61,7 @@ export interface ScopeCriteria {
|
|
|
61
61
|
site?: EntityFilterParameter[];
|
|
62
62
|
namespace?: EntityFilterParameter[];
|
|
63
63
|
}
|
|
64
|
+
export type ComponentSize = "xs" | "sm" | "md" | "lg";
|
|
64
65
|
export declare enum StringRules {
|
|
65
66
|
EQUALS = "=",
|
|
66
67
|
NOT_EQUALS = "<>",
|
|
@@ -138,6 +139,10 @@ export interface EntityCrossLinkWidgetProps {
|
|
|
138
139
|
drawerView?: (props: DrawerViewProps) => JSX.Element;
|
|
139
140
|
drawerSize?: DrawerSize;
|
|
140
141
|
}
|
|
142
|
+
export interface EntityCrossLinkWidgetV2Props extends EntityCrossLinkWidgetProps {
|
|
143
|
+
metricsDataSourceUID: string;
|
|
144
|
+
logsDataSourceUID?: string;
|
|
145
|
+
}
|
|
141
146
|
export interface RelatedEntitiesWidgetProps {
|
|
142
147
|
labels: Record<string, string | number>;
|
|
143
148
|
start: number | string;
|