@grafana/plugin-types 0.0.34 → 0.0.35

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,7 +61,6 @@ export interface ScopeCriteria {
61
61
  site?: EntityFilterParameter[];
62
62
  namespace?: EntityFilterParameter[];
63
63
  }
64
- export type ComponentSize = "xs" | "sm" | "md" | "lg";
65
64
  export declare enum StringRules {
66
65
  EQUALS = "=",
67
66
  NOT_EQUALS = "<>",
@@ -94,7 +93,7 @@ export interface EntityFilterPropertyMatcher {
94
93
  }
95
94
  export interface EntityAssertionsWidgetProps {
96
95
  query: useMultipleEntitiesProps;
97
- size?: ComponentSize;
96
+ size?: "xs" | "sm" | "md" | "lg";
98
97
  source?: string;
99
98
  returnToPrevious?: boolean;
100
99
  }
@@ -139,10 +138,6 @@ export interface EntityCrossLinkWidgetProps {
139
138
  drawerView?: (props: DrawerViewProps) => JSX.Element;
140
139
  drawerSize?: DrawerSize;
141
140
  }
142
- export interface EntityCrossLinkWidgetV2Props extends EntityCrossLinkWidgetProps {
143
- metricsDataSourceUID: string;
144
- logsDataSourceUID?: string;
145
- }
146
141
  export interface RelatedEntitiesWidgetProps {
147
142
  labels: Record<string, string | number>;
148
143
  start: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/plugin-types",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "description": "NPM package consisting of various Grafana plugins exposed types.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Grafana Labs",