@grafana/plugin-types 0.0.51 → 0.0.52

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.
@@ -188,6 +188,8 @@ export interface useMultipleEntitiesProps extends UseMultiEntityTypeParams {
188
188
  additionalMatchers?: EntityFilterPropertyMatcher[];
189
189
  enabled: boolean;
190
190
  matchAllNames?: boolean;
191
+ start: number;
192
+ end: number;
191
193
  }
192
194
  export interface UseEntityParams {
193
195
  entityName?: string;
@@ -199,10 +201,17 @@ export interface UseEntityParams {
199
201
  export interface UseMultiEntityTypeParams {
200
202
  entityName?: string;
201
203
  entityType?: string | string[];
202
- start: number;
203
- end: number;
204
+ start: number | string;
205
+ end: number | string;
204
206
  scope?: Scope;
205
207
  }
208
+ export interface MultiEntityTypeCircleProps extends UseMultiEntityTypeParams {
209
+ withIcon: boolean;
210
+ size?: number;
211
+ fallback?: React.ReactElement;
212
+ matchAllNames?: boolean;
213
+ additionalMatchers?: EntityFilterPropertyMatcher[];
214
+ }
206
215
  export interface Scope {
207
216
  env?: string;
208
217
  site?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/plugin-types",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "description": "NPM package consisting of various Grafana plugins exposed types.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Grafana Labs",