Compare commits
5 Commits
sriram/SQL
...
v10.2.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ae830f6874 | ||
|
|
ce46596da6 | ||
|
|
895fbafb7a | ||
|
|
ce793fe47b | ||
|
|
8db5993a11 |
@@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"npmClient": "yarn",
|
"npmClient": "yarn",
|
||||||
"useWorkspaces": true,
|
"useWorkspaces": true,
|
||||||
"packages": ["packages/*"],
|
"packages": [
|
||||||
"version": "10.2.0-pre"
|
"packages/*"
|
||||||
|
],
|
||||||
|
"version": "10.2.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
"private": true,
|
"private": true,
|
||||||
"name": "grafana",
|
"name": "grafana",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"repository": "github:grafana/grafana",
|
"repository": "github:grafana/grafana",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "yarn i18n:compile && NODE_ENV=production webpack --progress --config scripts/webpack/webpack.prod.js",
|
"build": "yarn i18n:compile && NODE_ENV=production webpack --progress --config scripts/webpack/webpack.prod.js",
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
"plugin:build:dev": "lerna run dev --ignore=\"@grafana/*\""
|
"plugin:build:dev": "lerna run dev --ignore=\"@grafana/*\""
|
||||||
},
|
},
|
||||||
"grafana": {
|
"grafana": {
|
||||||
"whatsNewUrl": "https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-1/",
|
"whatsNewUrl": "https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-2/",
|
||||||
"releaseNotesUrl": "https://grafana.com/docs/grafana/next/release-notes/"
|
"releaseNotesUrl": "https://grafana.com/docs/grafana/next/release-notes/"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"author": "Grafana Labs",
|
"author": "Grafana Labs",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"name": "@grafana/data",
|
"name": "@grafana/data",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"description": "Grafana Data Library",
|
"description": "Grafana Data Library",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"typescript"
|
"typescript"
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@braintree/sanitize-url": "6.0.2",
|
"@braintree/sanitize-url": "6.0.2",
|
||||||
"@grafana/schema": "10.2.0-pre",
|
"@grafana/schema": "10.2.0",
|
||||||
"@types/d3-interpolate": "^3.0.0",
|
"@types/d3-interpolate": "^3.0.0",
|
||||||
"@types/string-hash": "1.1.1",
|
"@types/string-hash": "1.1.1",
|
||||||
"d3-interpolate": "3.0.1",
|
"d3-interpolate": "3.0.1",
|
||||||
|
|||||||
@@ -97,17 +97,9 @@ describe('dateTimeFormat', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('dateTimeFormatTimeAgo', () => {
|
describe('dateTimeFormatTimeAgo', () => {
|
||||||
it('should return the correct format for 3 years ago', () => {
|
it('should return the correct format for years ago', () => {
|
||||||
const options = { timeZone: 'Europe/Stockholm' };
|
const options = { timeZone: 'Europe/Stockholm' };
|
||||||
expect(dateTimeFormatTimeAgo(1587126975779, options)).toBe('3 years ago');
|
expect(dateTimeFormatTimeAgo(1587126975779, options)).toContain('years ago');
|
||||||
});
|
|
||||||
it('should return the correct format for 2 year ago', () => {
|
|
||||||
const options = { timeZone: 'Europe/Stockholm' };
|
|
||||||
expect(dateTimeFormatTimeAgo(1626154993000, options)).toBe('2 years ago');
|
|
||||||
});
|
|
||||||
it('should return the correct format for 1 year ago', () => {
|
|
||||||
const options = { timeZone: 'Europe/Stockholm' };
|
|
||||||
expect(dateTimeFormatTimeAgo(1657731795000, options)).toBe('a year ago');
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
describe('dateTimeFormatWithAbbreviation', () => {
|
describe('dateTimeFormatWithAbbreviation', () => {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"author": "Grafana Labs",
|
"author": "Grafana Labs",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"name": "@grafana/e2e-selectors",
|
"name": "@grafana/e2e-selectors",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"description": "Grafana End-to-End Test Selectors Library",
|
"description": "Grafana End-to-End Test Selectors Library",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"cli",
|
"cli",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"author": "Grafana Labs",
|
"author": "Grafana Labs",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"name": "@grafana/e2e",
|
"name": "@grafana/e2e",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"description": "Grafana End-to-End Test Library",
|
"description": "Grafana End-to-End Test Library",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"cli",
|
"cli",
|
||||||
@@ -63,8 +63,8 @@
|
|||||||
"@babel/core": "7.23.0",
|
"@babel/core": "7.23.0",
|
||||||
"@babel/preset-env": "7.23.2",
|
"@babel/preset-env": "7.23.2",
|
||||||
"@cypress/webpack-preprocessor": "5.17.1",
|
"@cypress/webpack-preprocessor": "5.17.1",
|
||||||
"@grafana/e2e-selectors": "10.2.0-pre",
|
"@grafana/e2e-selectors": "10.2.0",
|
||||||
"@grafana/schema": "10.2.0-pre",
|
"@grafana/schema": "10.2.0",
|
||||||
"@grafana/tsconfig": "^1.2.0-rc1",
|
"@grafana/tsconfig": "^1.2.0-rc1",
|
||||||
"@mochajs/json-file-reporter": "^1.2.0",
|
"@mochajs/json-file-reporter": "^1.2.0",
|
||||||
"babel-loader": "9.1.3",
|
"babel-loader": "9.1.3",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@grafana/eslint-plugin",
|
"name": "@grafana/eslint-plugin",
|
||||||
"description": "ESLint rules for use within the Grafana repo. Not suitable (or supported) for external use.",
|
"description": "ESLint rules for use within the Grafana repo. Not suitable (or supported) for external use.",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"main": "./index.cjs",
|
"main": "./index.cjs",
|
||||||
"author": "Grafana Labs",
|
"author": "Grafana Labs",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"author": "Grafana Labs",
|
"author": "Grafana Labs",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"name": "@grafana/flamegraph",
|
"name": "@grafana/flamegraph",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"description": "Grafana flamegraph visualization component",
|
"description": "Grafana flamegraph visualization component",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"grafana",
|
"grafana",
|
||||||
@@ -44,8 +44,8 @@
|
|||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/css": "11.11.2",
|
"@emotion/css": "11.11.2",
|
||||||
"@grafana/data": "10.2.0-pre",
|
"@grafana/data": "10.2.0",
|
||||||
"@grafana/ui": "10.2.0-pre",
|
"@grafana/ui": "10.2.0",
|
||||||
"@leeoniya/ufuzzy": "1.0.8",
|
"@leeoniya/ufuzzy": "1.0.8",
|
||||||
"d3": "^7.8.5",
|
"d3": "^7.8.5",
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "@grafana/plugin-configs",
|
"name": "@grafana/plugin-configs",
|
||||||
"description": "Shared dependencies and files for core plugins",
|
"description": "Shared dependencies and files for core plugins",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tslib": "2.6.0"
|
"tslib": "2.6.0"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"author": "Grafana Labs",
|
"author": "Grafana Labs",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"name": "@grafana/runtime",
|
"name": "@grafana/runtime",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"description": "Grafana Runtime Library",
|
"description": "Grafana Runtime Library",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"grafana",
|
"grafana",
|
||||||
@@ -37,10 +37,10 @@
|
|||||||
"postpack": "mv package.json.bak package.json"
|
"postpack": "mv package.json.bak package.json"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@grafana/data": "10.2.0-pre",
|
"@grafana/data": "10.2.0",
|
||||||
"@grafana/e2e-selectors": "10.2.0-pre",
|
"@grafana/e2e-selectors": "10.2.0",
|
||||||
"@grafana/faro-web-sdk": "1.2.1",
|
"@grafana/faro-web-sdk": "1.2.1",
|
||||||
"@grafana/ui": "10.2.0-pre",
|
"@grafana/ui": "10.2.0",
|
||||||
"history": "4.10.1",
|
"history": "4.10.1",
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"rxjs": "7.8.1",
|
"rxjs": "7.8.1",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"author": "Grafana Labs",
|
"author": "Grafana Labs",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"name": "@grafana/schema",
|
"name": "@grafana/schema",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"description": "Grafana Schema Library",
|
"description": "Grafana Schema Library",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"typescript"
|
"typescript"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
//
|
//
|
||||||
// Run 'make gen-cue' from repository root to regenerate.
|
// Run 'make gen-cue' from repository root to regenerate.
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options {
|
export interface Options {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
//
|
//
|
||||||
// Run 'make gen-cue' from repository root to regenerate.
|
// Run 'make gen-cue' from repository root to regenerate.
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options {
|
export interface Options {
|
||||||
limit: number;
|
limit: number;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options extends common.OptionsWithLegend, common.OptionsWithTooltip, common.OptionsWithTextFormatting {
|
export interface Options extends common.OptionsWithLegend, common.OptionsWithTooltip, common.OptionsWithTextFormatting {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options extends common.SingleStatBaseOptions {
|
export interface Options extends common.SingleStatBaseOptions {
|
||||||
displayMode: common.BarGaugeDisplayMode;
|
displayMode: common.BarGaugeDisplayMode;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export enum VizDisplayMode {
|
export enum VizDisplayMode {
|
||||||
Candles = 'candles',
|
Candles = 'candles',
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as ui from '@grafana/schema';
|
import * as ui from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export enum HorizontalConstraint {
|
export enum HorizontalConstraint {
|
||||||
Center = 'center',
|
Center = 'center',
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface MetricStat {
|
export interface MetricStat {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
//
|
//
|
||||||
// Run 'make gen-cue' from repository root to regenerate.
|
// Run 'make gen-cue' from repository root to regenerate.
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options {
|
export interface Options {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
//
|
//
|
||||||
// Run 'make gen-cue' from repository root to regenerate.
|
// Run 'make gen-cue' from repository root to regenerate.
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options {
|
export interface Options {
|
||||||
selectedSeries: number;
|
selectedSeries: number;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
//
|
//
|
||||||
// Run 'make gen-cue' from repository root to regenerate.
|
// Run 'make gen-cue' from repository root to regenerate.
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export type UpdateConfig = {
|
export type UpdateConfig = {
|
||||||
render: boolean,
|
render: boolean,
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export type BucketAggregation = (DateHistogram | Histogram | Terms | Filters | GeoHashGrid | Nested);
|
export type BucketAggregation = (DateHistogram | Histogram | Terms | Filters | GeoHashGrid | Nested);
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options extends common.SingleStatBaseOptions {
|
export interface Options extends common.SingleStatBaseOptions {
|
||||||
minVizHeight: number;
|
minVizHeight: number;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as ui from '@grafana/schema';
|
import * as ui from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options {
|
export interface Options {
|
||||||
basemap: ui.MapLayerOptions;
|
basemap: ui.MapLayerOptions;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export type PyroscopeQueryType = ('metrics' | 'profile' | 'both');
|
export type PyroscopeQueryType = ('metrics' | 'profile' | 'both');
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as ui from '@grafana/schema';
|
import * as ui from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Controls the color mode of the heatmap
|
* Controls the color mode of the heatmap
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options extends common.OptionsWithLegend, common.OptionsWithTooltip {
|
export interface Options extends common.OptionsWithLegend, common.OptionsWithTooltip {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options {
|
export interface Options {
|
||||||
dedupStrategy: common.LogsDedupStrategy;
|
dedupStrategy: common.LogsDedupStrategy;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export enum QueryEditorMode {
|
export enum QueryEditorMode {
|
||||||
Builder = 'builder',
|
Builder = 'builder',
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
//
|
//
|
||||||
// Run 'make gen-cue' from repository root to regenerate.
|
// Run 'make gen-cue' from repository root to regenerate.
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options {
|
export interface Options {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
//
|
//
|
||||||
// Run 'make gen-cue' from repository root to regenerate.
|
// Run 'make gen-cue' from repository root to regenerate.
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface ArcOption {
|
export interface ArcOption {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export type ParcaQueryType = ('metrics' | 'profile' | 'both');
|
export type ParcaQueryType = ('metrics' | 'profile' | 'both');
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Select the pie chart display style.
|
* Select the pie chart display style.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export enum QueryEditorMode {
|
export enum QueryEditorMode {
|
||||||
Builder = 'builder',
|
Builder = 'builder',
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options extends common.SingleStatBaseOptions {
|
export interface Options extends common.SingleStatBaseOptions {
|
||||||
colorMode: common.BigValueColorMode;
|
colorMode: common.BigValueColorMode;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as ui from '@grafana/schema';
|
import * as ui from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options extends ui.OptionsWithLegend, ui.OptionsWithTooltip, ui.OptionsWithTimezones {
|
export interface Options extends ui.OptionsWithLegend, ui.OptionsWithTooltip, ui.OptionsWithTimezones {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as ui from '@grafana/schema';
|
import * as ui from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options extends ui.OptionsWithLegend, ui.OptionsWithTooltip, ui.OptionsWithTimezones {
|
export interface Options extends ui.OptionsWithLegend, ui.OptionsWithTooltip, ui.OptionsWithTimezones {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as ui from '@grafana/schema';
|
import * as ui from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options {
|
export interface Options {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface TempoQuery extends common.DataQuery {
|
export interface TempoQuery extends common.DataQuery {
|
||||||
filters: Array<TraceqlFilter>;
|
filters: Array<TraceqlFilter>;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
//
|
//
|
||||||
// Run 'make gen-cue' from repository root to regenerate.
|
// Run 'make gen-cue' from repository root to regenerate.
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export enum TextMode {
|
export enum TextMode {
|
||||||
Code = 'code',
|
Code = 'code',
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export interface Options extends common.OptionsWithTimezones {
|
export interface Options extends common.OptionsWithTimezones {
|
||||||
legend: common.VizLegendOptions;
|
legend: common.VizLegendOptions;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Identical to timeseries... except it does not have timezone settings
|
* Identical to timeseries... except it does not have timezone settings
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import * as common from '@grafana/schema';
|
import * as common from '@grafana/schema';
|
||||||
|
|
||||||
export const pluginVersion = "10.2.0-pre";
|
export const pluginVersion = "10.2.0";
|
||||||
|
|
||||||
export enum SeriesMapping {
|
export enum SeriesMapping {
|
||||||
Auto = 'auto',
|
Auto = 'auto',
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"author": "Grafana Labs",
|
"author": "Grafana Labs",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"name": "@grafana/ui",
|
"name": "@grafana/ui",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"description": "Grafana Components Library",
|
"description": "Grafana Components Library",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"grafana",
|
"grafana",
|
||||||
@@ -49,10 +49,10 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/css": "11.11.2",
|
"@emotion/css": "11.11.2",
|
||||||
"@emotion/react": "11.11.1",
|
"@emotion/react": "11.11.1",
|
||||||
"@grafana/data": "10.2.0-pre",
|
"@grafana/data": "10.2.0",
|
||||||
"@grafana/e2e-selectors": "10.2.0-pre",
|
"@grafana/e2e-selectors": "10.2.0",
|
||||||
"@grafana/faro-web-sdk": "1.2.1",
|
"@grafana/faro-web-sdk": "1.2.1",
|
||||||
"@grafana/schema": "10.2.0-pre",
|
"@grafana/schema": "10.2.0",
|
||||||
"@leeoniya/ufuzzy": "1.0.8",
|
"@leeoniya/ufuzzy": "1.0.8",
|
||||||
"@monaco-editor/react": "4.6.0",
|
"@monaco-editor/react": "4.6.0",
|
||||||
"@popperjs/core": "2.11.8",
|
"@popperjs/core": "2.11.8",
|
||||||
|
|||||||
@@ -16,9 +16,9 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var AllVariants = []Variant{
|
var AllVariants = []Variant{
|
||||||
VariantArmV6,
|
// VariantArmV6,
|
||||||
VariantArmV7,
|
// VariantArmV7,
|
||||||
VariantArmV7Musl,
|
// VariantArmV7Musl,
|
||||||
VariantArm64,
|
VariantArm64,
|
||||||
VariantArm64Musl,
|
VariantArm64Musl,
|
||||||
VariantDarwinAmd64,
|
VariantDarwinAmd64,
|
||||||
|
|||||||
@@ -101,9 +101,10 @@ var Versions = VersionMap{
|
|||||||
},
|
},
|
||||||
ReleaseBranchMode: {
|
ReleaseBranchMode: {
|
||||||
Variants: []Variant{
|
Variants: []Variant{
|
||||||
VariantArmV6,
|
// https://github.com/golang/go/issues/58425 disabling arm builds until go issue is resolved
|
||||||
VariantArmV7,
|
// VariantArmV6,
|
||||||
VariantArmV7Musl,
|
// VariantArmV7,
|
||||||
|
// VariantArmV7Musl,
|
||||||
VariantArm64,
|
VariantArm64,
|
||||||
VariantArm64Musl,
|
VariantArm64Musl,
|
||||||
VariantDarwinAmd64,
|
VariantDarwinAmd64,
|
||||||
@@ -136,9 +137,10 @@ var Versions = VersionMap{
|
|||||||
},
|
},
|
||||||
TagMode: {
|
TagMode: {
|
||||||
Variants: []Variant{
|
Variants: []Variant{
|
||||||
VariantArmV6,
|
// https://github.com/golang/go/issues/58425 disabling arm builds until go issue is resolved
|
||||||
VariantArmV7,
|
// VariantArmV6,
|
||||||
VariantArmV7Musl,
|
// VariantArmV7,
|
||||||
|
// VariantArmV7Musl,
|
||||||
VariantArm64,
|
VariantArm64,
|
||||||
VariantArm64Musl,
|
VariantArm64Musl,
|
||||||
VariantDarwinAmd64,
|
VariantDarwinAmd64,
|
||||||
@@ -155,7 +157,8 @@ var Versions = VersionMap{
|
|||||||
Architectures: []Architecture{
|
Architectures: []Architecture{
|
||||||
ArchAMD64,
|
ArchAMD64,
|
||||||
ArchARM64,
|
ArchARM64,
|
||||||
ArchARMv7,
|
// https://github.com/golang/go/issues/58425 disabling arm builds until go issue is resolved
|
||||||
|
// ArchARMv7,
|
||||||
},
|
},
|
||||||
Distribution: []Distribution{
|
Distribution: []Distribution{
|
||||||
Alpine,
|
Alpine,
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// AllArchs is a list of all supported Docker image architectures.
|
// AllArchs is a list of all supported Docker image architectures.
|
||||||
var AllArchs = []string{"amd64", "armv7", "arm64"}
|
var AllArchs = []string{"amd64", "arm64"}
|
||||||
|
|
||||||
// emulatorImage is the docker image used as the cross-platform emulator
|
// emulatorImage is the docker image used as the cross-platform emulator
|
||||||
var emulatorImage = "tonistiigi/binfmt:qemu-v7.0.0"
|
var emulatorImage = "tonistiigi/binfmt:qemu-v7.0.0"
|
||||||
|
|||||||
@@ -81,32 +81,32 @@ var ArtifactConfigs = []buildArtifact{
|
|||||||
Arch: "arm64",
|
Arch: "arm64",
|
||||||
urlPostfix: ".linux-arm64.tar.gz",
|
urlPostfix: ".linux-arm64.tar.gz",
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
Os: debOS,
|
// Os: debOS,
|
||||||
Arch: "armv7",
|
// Arch: "armv7",
|
||||||
urlPostfix: "_armhf.deb",
|
// urlPostfix: "_armhf.deb",
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
Os: debOS,
|
// Os: debOS,
|
||||||
Arch: "armv6",
|
// Arch: "armv6",
|
||||||
packagePostfix: "-rpi",
|
// packagePostfix: "-rpi",
|
||||||
urlPostfix: "_armhf.deb",
|
// urlPostfix: "_armhf.deb",
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
Os: rhelOS,
|
// Os: rhelOS,
|
||||||
Arch: "armv7",
|
// Arch: "armv7",
|
||||||
urlPostfix: ".armhfp.rpm",
|
// urlPostfix: ".armhfp.rpm",
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
Os: "linux",
|
// Os: "linux",
|
||||||
Arch: "armv6",
|
// Arch: "armv6",
|
||||||
urlPostfix: ".linux-armv6.tar.gz",
|
// urlPostfix: ".linux-armv6.tar.gz",
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
Os: "linux",
|
// Os: "linux",
|
||||||
Arch: "armv7",
|
// Arch: "armv7",
|
||||||
urlPostfix: ".linux-armv7.tar.gz",
|
// urlPostfix: ".linux-armv7.tar.gz",
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
Os: "darwin",
|
Os: "darwin",
|
||||||
Arch: "amd64",
|
Arch: "amd64",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@grafana-plugins/input-datasource",
|
"name": "@grafana-plugins/input-datasource",
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"description": "Input Datasource",
|
"description": "Input Datasource",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -28,8 +28,8 @@
|
|||||||
"webpack": "5.76.0"
|
"webpack": "5.76.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@grafana/data": "10.2.0-pre",
|
"@grafana/data": "10.2.0",
|
||||||
"@grafana/ui": "10.2.0-pre",
|
"@grafana/ui": "10.2.0",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"tslib": "2.5.0"
|
"tslib": "2.5.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,14 +2,14 @@
|
|||||||
"name": "@grafana-plugins/grafana-testdata-datasource",
|
"name": "@grafana-plugins/grafana-testdata-datasource",
|
||||||
"description": "Generates test data in different forms",
|
"description": "Generates test data in different forms",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "10.2.0-pre",
|
"version": "10.2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/css": "11.11.2",
|
"@emotion/css": "11.11.2",
|
||||||
"@grafana/data": "10.2.0-pre",
|
"@grafana/data": "10.2.0",
|
||||||
"@grafana/experimental": "1.7.0",
|
"@grafana/experimental": "1.7.0",
|
||||||
"@grafana/runtime": "10.2.0-pre",
|
"@grafana/runtime": "10.2.0",
|
||||||
"@grafana/schema": "10.2.0-pre",
|
"@grafana/schema": "10.2.0",
|
||||||
"@grafana/ui": "10.2.0-pre",
|
"@grafana/ui": "10.2.0",
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-use": "17.4.0",
|
"react-use": "17.4.0",
|
||||||
@@ -17,8 +17,8 @@
|
|||||||
"tslib": "2.6.0"
|
"tslib": "2.6.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@grafana/e2e-selectors": "10.2.0-pre",
|
"@grafana/e2e-selectors": "10.2.0",
|
||||||
"@grafana/plugin-configs": "10.2.0-pre",
|
"@grafana/plugin-configs": "10.2.0",
|
||||||
"@testing-library/react": "14.0.0",
|
"@testing-library/react": "14.0.0",
|
||||||
"@testing-library/user-event": "14.4.3",
|
"@testing-library/user-event": "14.4.3",
|
||||||
"@types/jest": "29.5.4",
|
"@types/jest": "29.5.4",
|
||||||
|
|||||||
50
yarn.lock
50
yarn.lock
@@ -2839,13 +2839,13 @@ __metadata:
|
|||||||
resolution: "@grafana-plugins/grafana-testdata-datasource@workspace:public/app/plugins/datasource/grafana-testdata-datasource"
|
resolution: "@grafana-plugins/grafana-testdata-datasource@workspace:public/app/plugins/datasource/grafana-testdata-datasource"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@emotion/css": 11.11.2
|
"@emotion/css": 11.11.2
|
||||||
"@grafana/data": 10.2.0-pre
|
"@grafana/data": 10.2.0
|
||||||
"@grafana/e2e-selectors": 10.2.0-pre
|
"@grafana/e2e-selectors": 10.2.0
|
||||||
"@grafana/experimental": 1.7.0
|
"@grafana/experimental": 1.7.0
|
||||||
"@grafana/plugin-configs": 10.2.0-pre
|
"@grafana/plugin-configs": 10.2.0
|
||||||
"@grafana/runtime": 10.2.0-pre
|
"@grafana/runtime": 10.2.0
|
||||||
"@grafana/schema": 10.2.0-pre
|
"@grafana/schema": 10.2.0
|
||||||
"@grafana/ui": 10.2.0-pre
|
"@grafana/ui": 10.2.0
|
||||||
"@testing-library/react": 14.0.0
|
"@testing-library/react": 14.0.0
|
||||||
"@testing-library/user-event": 14.4.3
|
"@testing-library/user-event": 14.4.3
|
||||||
"@types/jest": 29.5.4
|
"@types/jest": 29.5.4
|
||||||
@@ -2870,9 +2870,9 @@ __metadata:
|
|||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@grafana-plugins/input-datasource@workspace:plugins-bundled/internal/input-datasource"
|
resolution: "@grafana-plugins/input-datasource@workspace:plugins-bundled/internal/input-datasource"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@grafana/data": 10.2.0-pre
|
"@grafana/data": 10.2.0
|
||||||
"@grafana/tsconfig": ^1.2.0-rc1
|
"@grafana/tsconfig": ^1.2.0-rc1
|
||||||
"@grafana/ui": 10.2.0-pre
|
"@grafana/ui": 10.2.0
|
||||||
"@types/jest": 26.0.15
|
"@types/jest": 26.0.15
|
||||||
"@types/react": 18.0.28
|
"@types/react": 18.0.28
|
||||||
copy-webpack-plugin: 11.0.0
|
copy-webpack-plugin: 11.0.0
|
||||||
@@ -2908,12 +2908,12 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@grafana/data@10.2.0-pre, @grafana/data@workspace:*, @grafana/data@workspace:packages/grafana-data":
|
"@grafana/data@10.2.0, @grafana/data@workspace:*, @grafana/data@workspace:packages/grafana-data":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@grafana/data@workspace:packages/grafana-data"
|
resolution: "@grafana/data@workspace:packages/grafana-data"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@braintree/sanitize-url": 6.0.2
|
"@braintree/sanitize-url": 6.0.2
|
||||||
"@grafana/schema": 10.2.0-pre
|
"@grafana/schema": 10.2.0
|
||||||
"@grafana/tsconfig": ^1.2.0-rc1
|
"@grafana/tsconfig": ^1.2.0-rc1
|
||||||
"@rollup/plugin-commonjs": 25.0.2
|
"@rollup/plugin-commonjs": 25.0.2
|
||||||
"@rollup/plugin-json": 6.0.0
|
"@rollup/plugin-json": 6.0.0
|
||||||
@@ -2973,7 +2973,7 @@ __metadata:
|
|||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"@grafana/e2e-selectors@10.2.0-pre, @grafana/e2e-selectors@workspace:*, @grafana/e2e-selectors@workspace:packages/grafana-e2e-selectors":
|
"@grafana/e2e-selectors@10.2.0, @grafana/e2e-selectors@workspace:*, @grafana/e2e-selectors@workspace:packages/grafana-e2e-selectors":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@grafana/e2e-selectors@workspace:packages/grafana-e2e-selectors"
|
resolution: "@grafana/e2e-selectors@workspace:packages/grafana-e2e-selectors"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -3010,8 +3010,8 @@ __metadata:
|
|||||||
"@babel/core": 7.23.0
|
"@babel/core": 7.23.0
|
||||||
"@babel/preset-env": 7.23.2
|
"@babel/preset-env": 7.23.2
|
||||||
"@cypress/webpack-preprocessor": 5.17.1
|
"@cypress/webpack-preprocessor": 5.17.1
|
||||||
"@grafana/e2e-selectors": 10.2.0-pre
|
"@grafana/e2e-selectors": 10.2.0
|
||||||
"@grafana/schema": 10.2.0-pre
|
"@grafana/schema": 10.2.0
|
||||||
"@grafana/tsconfig": ^1.2.0-rc1
|
"@grafana/tsconfig": ^1.2.0-rc1
|
||||||
"@mochajs/json-file-reporter": ^1.2.0
|
"@mochajs/json-file-reporter": ^1.2.0
|
||||||
"@rollup/plugin-node-resolve": 15.2.3
|
"@rollup/plugin-node-resolve": 15.2.3
|
||||||
@@ -3149,9 +3149,9 @@ __metadata:
|
|||||||
"@babel/preset-env": 7.23.2
|
"@babel/preset-env": 7.23.2
|
||||||
"@babel/preset-react": 7.22.5
|
"@babel/preset-react": 7.22.5
|
||||||
"@emotion/css": 11.11.2
|
"@emotion/css": 11.11.2
|
||||||
"@grafana/data": 10.2.0-pre
|
"@grafana/data": 10.2.0
|
||||||
"@grafana/tsconfig": ^1.2.0-rc1
|
"@grafana/tsconfig": ^1.2.0-rc1
|
||||||
"@grafana/ui": 10.2.0-pre
|
"@grafana/ui": 10.2.0
|
||||||
"@leeoniya/ufuzzy": 1.0.8
|
"@leeoniya/ufuzzy": 1.0.8
|
||||||
"@rollup/plugin-node-resolve": 15.2.3
|
"@rollup/plugin-node-resolve": 15.2.3
|
||||||
"@testing-library/jest-dom": ^6.1.2
|
"@testing-library/jest-dom": ^6.1.2
|
||||||
@@ -3225,7 +3225,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@grafana/plugin-configs@10.2.0-pre, @grafana/plugin-configs@workspace:packages/grafana-plugin-configs":
|
"@grafana/plugin-configs@10.2.0, @grafana/plugin-configs@workspace:packages/grafana-plugin-configs":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@grafana/plugin-configs@workspace:packages/grafana-plugin-configs"
|
resolution: "@grafana/plugin-configs@workspace:packages/grafana-plugin-configs"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -3240,15 +3240,15 @@ __metadata:
|
|||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"@grafana/runtime@10.2.0-pre, @grafana/runtime@workspace:*, @grafana/runtime@workspace:packages/grafana-runtime":
|
"@grafana/runtime@10.2.0, @grafana/runtime@workspace:*, @grafana/runtime@workspace:packages/grafana-runtime":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@grafana/runtime@workspace:packages/grafana-runtime"
|
resolution: "@grafana/runtime@workspace:packages/grafana-runtime"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@grafana/data": 10.2.0-pre
|
"@grafana/data": 10.2.0
|
||||||
"@grafana/e2e-selectors": 10.2.0-pre
|
"@grafana/e2e-selectors": 10.2.0
|
||||||
"@grafana/faro-web-sdk": 1.2.1
|
"@grafana/faro-web-sdk": 1.2.1
|
||||||
"@grafana/tsconfig": ^1.2.0-rc1
|
"@grafana/tsconfig": ^1.2.0-rc1
|
||||||
"@grafana/ui": 10.2.0-pre
|
"@grafana/ui": 10.2.0
|
||||||
"@rollup/plugin-commonjs": 25.0.2
|
"@rollup/plugin-commonjs": 25.0.2
|
||||||
"@rollup/plugin-node-resolve": 15.2.3
|
"@rollup/plugin-node-resolve": 15.2.3
|
||||||
"@testing-library/dom": 9.3.3
|
"@testing-library/dom": 9.3.3
|
||||||
@@ -3302,7 +3302,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@grafana/schema@10.2.0-pre, @grafana/schema@workspace:*, @grafana/schema@workspace:packages/grafana-schema":
|
"@grafana/schema@10.2.0, @grafana/schema@workspace:*, @grafana/schema@workspace:packages/grafana-schema":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@grafana/schema@workspace:packages/grafana-schema"
|
resolution: "@grafana/schema@workspace:packages/grafana-schema"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -3336,17 +3336,17 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@grafana/ui@10.2.0-pre, @grafana/ui@workspace:*, @grafana/ui@workspace:packages/grafana-ui":
|
"@grafana/ui@10.2.0, @grafana/ui@workspace:*, @grafana/ui@workspace:packages/grafana-ui":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@grafana/ui@workspace:packages/grafana-ui"
|
resolution: "@grafana/ui@workspace:packages/grafana-ui"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/core": 7.23.0
|
"@babel/core": 7.23.0
|
||||||
"@emotion/css": 11.11.2
|
"@emotion/css": 11.11.2
|
||||||
"@emotion/react": 11.11.1
|
"@emotion/react": 11.11.1
|
||||||
"@grafana/data": 10.2.0-pre
|
"@grafana/data": 10.2.0
|
||||||
"@grafana/e2e-selectors": 10.2.0-pre
|
"@grafana/e2e-selectors": 10.2.0
|
||||||
"@grafana/faro-web-sdk": 1.2.1
|
"@grafana/faro-web-sdk": 1.2.1
|
||||||
"@grafana/schema": 10.2.0-pre
|
"@grafana/schema": 10.2.0
|
||||||
"@grafana/tsconfig": ^1.2.0-rc1
|
"@grafana/tsconfig": ^1.2.0-rc1
|
||||||
"@leeoniya/ufuzzy": 1.0.8
|
"@leeoniya/ufuzzy": 1.0.8
|
||||||
"@mdx-js/react": 1.6.22
|
"@mdx-js/react": 1.6.22
|
||||||
|
|||||||
Reference in New Issue
Block a user