@grafana/components 0.0.57 → 0.0.59
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.
- package/dist/cjs/index.cjs +87 -5
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +8 -2
- package/dist/esm/components/ComparisonBadge/ComparisonBadge.js +3 -0
- package/dist/esm/components/ComparisonBadge/ComparisonBadge.js.map +1 -1
- package/dist/esm/components/ComparisonTooltip/ComparisonTooltip.js +3 -0
- package/dist/esm/components/ComparisonTooltip/ComparisonTooltip.js.map +1 -1
- package/dist/esm/components/Icons/Drilldown.js +0 -1
- package/dist/esm/components/Icons/Drilldown.js.map +1 -1
- package/dist/esm/components/Icons/PanelLeftToggle.js +8 -2
- package/dist/esm/components/Icons/PanelLeftToggle.js.map +1 -1
- package/dist/esm/components/Icons/PanelLeftToggleDisabled.js +21 -0
- package/dist/esm/components/Icons/PanelLeftToggleDisabled.js.map +1 -0
- package/dist/esm/components/Icons/PanelRightToggle.js +8 -2
- package/dist/esm/components/Icons/PanelRightToggle.js.map +1 -1
- package/dist/esm/components/Icons/PanelRightToggleDisabled.js +21 -0
- package/dist/esm/components/Icons/PanelRightToggleDisabled.js.map +1 -0
- package/dist/esm/components/Icons/SparklesFrame.js +18 -0
- package/dist/esm/components/Icons/SparklesFrame.js.map +1 -0
- package/dist/esm/components/Icons/allIcons.js +6 -0
- package/dist/esm/components/Icons/allIcons.js.map +1 -1
- package/dist/esm/components/Icons/iconMetaData.js +17 -0
- package/dist/esm/components/Icons/iconMetaData.js.map +1 -1
- package/dist/esm/components/StackedChartNoData/StackedChartNoData.js +3 -0
- package/dist/esm/components/StackedChartNoData/StackedChartNoData.js.map +1 -1
- package/dist/esm/index.d.ts +8 -2
- package/dist/esm/index.js +3 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -4759,7 +4759,6 @@ Drill.fill = "none";
|
|
|
4759
4759
|
|
|
4760
4760
|
const Drilldown = ({ title = "Drilldown", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4761
4761
|
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
4762
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0h24v24H0z" }),
|
|
4763
4762
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 21h10m1-4 2-4m-4-3-8 2m8-6L8 8m-2 9-2-4M15 3H9v11l3 4 3-4z" })
|
|
4764
4763
|
] });
|
|
4765
4764
|
Drilldown.fill = "none";
|
|
@@ -9359,10 +9358,33 @@ const PanelLeftRightDashed = ({
|
|
|
9359
9358
|
] });
|
|
9360
9359
|
PanelLeftRightDashed.fill = "none";
|
|
9361
9360
|
|
|
9361
|
+
const PanelLeftToggleDisabled = ({
|
|
9362
|
+
title = "Panel left toggle disabled",
|
|
9363
|
+
...props
|
|
9364
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9365
|
+
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9366
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 3a4 4 0 0 0-4 4v10a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4V7a4 4 0 0 0-4-4z" }),
|
|
9367
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9368
|
+
"path",
|
|
9369
|
+
{
|
|
9370
|
+
fill: "currentColor",
|
|
9371
|
+
d: "M6 8a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1z",
|
|
9372
|
+
opacity: ".4"
|
|
9373
|
+
}
|
|
9374
|
+
)
|
|
9375
|
+
] });
|
|
9376
|
+
PanelLeftToggleDisabled.fill = "none";
|
|
9377
|
+
|
|
9362
9378
|
const PanelLeftToggle = ({ title = "Panel left toggle", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9363
9379
|
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9364
|
-
/* @__PURE__ */ jsxRuntime.jsx("
|
|
9365
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9380
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 3a4 4 0 0 0-4 4v10a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4V7a4 4 0 0 0-4-4z" }),
|
|
9381
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9382
|
+
"path",
|
|
9383
|
+
{
|
|
9384
|
+
fill: "currentColor",
|
|
9385
|
+
d: "M6 8a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1z"
|
|
9386
|
+
}
|
|
9387
|
+
)
|
|
9366
9388
|
] });
|
|
9367
9389
|
PanelLeftToggle.fill = "none";
|
|
9368
9390
|
|
|
@@ -9401,10 +9423,33 @@ const PanelRightOpen = ({ title = "Panel right open", ...props }) => /* @__PURE_
|
|
|
9401
9423
|
] });
|
|
9402
9424
|
PanelRightOpen.fill = "none";
|
|
9403
9425
|
|
|
9426
|
+
const PanelRightToggleDisabled = ({
|
|
9427
|
+
title = "Panel right toggle disabled",
|
|
9428
|
+
...props
|
|
9429
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9430
|
+
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9431
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 3a4 4 0 0 0-4 4v10a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4V7a4 4 0 0 0-4-4z" }),
|
|
9432
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9433
|
+
"path",
|
|
9434
|
+
{
|
|
9435
|
+
fill: "currentColor",
|
|
9436
|
+
d: "M14 8a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1z",
|
|
9437
|
+
opacity: ".4"
|
|
9438
|
+
}
|
|
9439
|
+
)
|
|
9440
|
+
] });
|
|
9441
|
+
PanelRightToggleDisabled.fill = "none";
|
|
9442
|
+
|
|
9404
9443
|
const PanelRightToggle = ({ title = "Panel right toggle", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9405
9444
|
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9406
|
-
/* @__PURE__ */ jsxRuntime.jsx("
|
|
9407
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9445
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 3a4 4 0 0 0-4 4v10a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4V7a4 4 0 0 0-4-4z" }),
|
|
9446
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9447
|
+
"path",
|
|
9448
|
+
{
|
|
9449
|
+
fill: "currentColor",
|
|
9450
|
+
d: "M14 8a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1z"
|
|
9451
|
+
}
|
|
9452
|
+
)
|
|
9408
9453
|
] });
|
|
9409
9454
|
PanelRightToggle.fill = "none";
|
|
9410
9455
|
|
|
@@ -11498,6 +11543,20 @@ const Sparkle = ({ title = "Sparkle", ...props }) => /* @__PURE__ */ jsxRuntime.
|
|
|
11498
11543
|
] });
|
|
11499
11544
|
Sparkle.fill = "none";
|
|
11500
11545
|
|
|
11546
|
+
const SparklesFrame = ({ title = "Sparkles frame", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
11547
|
+
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
11548
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 7V5a2 2 0 0 1 2-2h2m10 0h2a2 2 0 0 1 2 2v2m0 10v2a2 2 0 0 1-2 2h-2M7 21H5a2 2 0 0 1-2-2v-2" }),
|
|
11549
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11550
|
+
"path",
|
|
11551
|
+
{
|
|
11552
|
+
fill: "currentColor",
|
|
11553
|
+
d: "M16.922 12.905c-2.71-.543-3.284-1.116-3.827-3.827-.02-.104-.17-.104-.19 0-.543 2.71-1.116 3.284-3.827 3.827-.104.02-.104.17 0 .19 2.71.543 3.284 1.116 3.827 3.827.02.104.17.104.19 0 .543-2.71 1.116-3.284 3.827-3.827.104-.02.104-.17 0-.19Z"
|
|
11554
|
+
}
|
|
11555
|
+
),
|
|
11556
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 7v2m1-1H7" })
|
|
11557
|
+
] });
|
|
11558
|
+
SparklesFrame.fill = "none";
|
|
11559
|
+
|
|
11501
11560
|
const SparklesSolid = ({ title = "Sparkles solid", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
11502
11561
|
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
11503
11562
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -15326,12 +15385,14 @@ const AllIcons = {
|
|
|
15326
15385
|
PanelLeftInactive,
|
|
15327
15386
|
PanelLeftOpen,
|
|
15328
15387
|
PanelLeftRightDashed,
|
|
15388
|
+
PanelLeftToggleDisabled,
|
|
15329
15389
|
PanelLeftToggle,
|
|
15330
15390
|
PanelLeft,
|
|
15331
15391
|
PanelRightClose,
|
|
15332
15392
|
PanelRightDashed,
|
|
15333
15393
|
PanelRightInactive,
|
|
15334
15394
|
PanelRightOpen,
|
|
15395
|
+
PanelRightToggleDisabled,
|
|
15335
15396
|
PanelRightToggle,
|
|
15336
15397
|
PanelRight,
|
|
15337
15398
|
PanelTopBottomDashed,
|
|
@@ -15633,6 +15694,7 @@ const AllIcons = {
|
|
|
15633
15694
|
Spade,
|
|
15634
15695
|
SparkleSolid,
|
|
15635
15696
|
Sparkle,
|
|
15697
|
+
SparklesFrame,
|
|
15636
15698
|
SparklesSolid,
|
|
15637
15699
|
Sparkles,
|
|
15638
15700
|
Speaker,
|
|
@@ -21928,6 +21990,7 @@ const iconMetaData = {
|
|
|
21928
21990
|
"vertical",
|
|
21929
21991
|
"bleed"
|
|
21930
21992
|
],
|
|
21993
|
+
PanelLeftToggleDisabled: ["primary", "drawer", "show", "reveal"],
|
|
21931
21994
|
PanelLeftToggle: ["primary", "drawer", "show", "reveal"],
|
|
21932
21995
|
PanelLeft: ["primary", "drawer"],
|
|
21933
21996
|
PanelRightClose: ["sidebar", "secondary", "drawer", "hide", "chevron", ">"],
|
|
@@ -21945,6 +22008,7 @@ const iconMetaData = {
|
|
|
21945
22008
|
],
|
|
21946
22009
|
PanelRightInactive: [],
|
|
21947
22010
|
PanelRightOpen: ["sidebar", "secondary", "drawer", "show", "reveal", "chevron", "left", "<"],
|
|
22011
|
+
PanelRightToggleDisabled: ["primary", "drawer", "show", "reveal"],
|
|
21948
22012
|
PanelRightToggle: ["primary", "drawer", "show", "reveal"],
|
|
21949
22013
|
PanelRight: ["sidebar", "secondary", "drawer"],
|
|
21950
22014
|
PanelTopBottomDashed: [
|
|
@@ -23859,6 +23923,21 @@ const iconMetaData = {
|
|
|
23859
23923
|
"ai",
|
|
23860
23924
|
"assistant"
|
|
23861
23925
|
],
|
|
23926
|
+
SparklesFrame: [
|
|
23927
|
+
"canvas",
|
|
23928
|
+
"ai",
|
|
23929
|
+
"sparkles",
|
|
23930
|
+
"assistant",
|
|
23931
|
+
"workspace",
|
|
23932
|
+
"frame",
|
|
23933
|
+
"select",
|
|
23934
|
+
"box",
|
|
23935
|
+
"boundary",
|
|
23936
|
+
"bounds",
|
|
23937
|
+
"area",
|
|
23938
|
+
"square",
|
|
23939
|
+
"dashed"
|
|
23940
|
+
],
|
|
23862
23941
|
SparklesSolid: ["ai", "assistant", "stars", "effect", "filter", "night", "magic"],
|
|
23863
23942
|
Sparkles: ["stars", "effect", "filter", "night", "magic", "ai", "assistant"],
|
|
23864
23943
|
Speaker: [
|
|
@@ -27824,12 +27903,14 @@ exports.PanelLeftInactive = PanelLeftInactive;
|
|
|
27824
27903
|
exports.PanelLeftOpen = PanelLeftOpen;
|
|
27825
27904
|
exports.PanelLeftRightDashed = PanelLeftRightDashed;
|
|
27826
27905
|
exports.PanelLeftToggle = PanelLeftToggle;
|
|
27906
|
+
exports.PanelLeftToggleDisabled = PanelLeftToggleDisabled;
|
|
27827
27907
|
exports.PanelRight = PanelRight;
|
|
27828
27908
|
exports.PanelRightClose = PanelRightClose;
|
|
27829
27909
|
exports.PanelRightDashed = PanelRightDashed;
|
|
27830
27910
|
exports.PanelRightInactive = PanelRightInactive;
|
|
27831
27911
|
exports.PanelRightOpen = PanelRightOpen;
|
|
27832
27912
|
exports.PanelRightToggle = PanelRightToggle;
|
|
27913
|
+
exports.PanelRightToggleDisabled = PanelRightToggleDisabled;
|
|
27833
27914
|
exports.PanelTop = PanelTop;
|
|
27834
27915
|
exports.PanelTopBottomDashed = PanelTopBottomDashed;
|
|
27835
27916
|
exports.PanelTopClose = PanelTopClose;
|
|
@@ -28132,6 +28213,7 @@ exports.Spade = Spade;
|
|
|
28132
28213
|
exports.Sparkle = Sparkle;
|
|
28133
28214
|
exports.SparkleSolid = SparkleSolid;
|
|
28134
28215
|
exports.Sparkles = Sparkles;
|
|
28216
|
+
exports.SparklesFrame = SparklesFrame;
|
|
28135
28217
|
exports.SparklesSolid = SparklesSolid;
|
|
28136
28218
|
exports.Speaker = Speaker;
|
|
28137
28219
|
exports.Speech = Speech;
|