@grafana/plugin-types 0.0.35 → 0.0.37

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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/plugin-types",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "description": "NPM package consisting of various Grafana plugins exposed types.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Grafana Labs",