@grafana/components 0.0.56 → 0.0.58
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 +82 -4
- 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/Easel.js +10 -0
- package/dist/esm/components/Icons/Easel.js.map +1 -0
- 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/allIcons.js +6 -0
- package/dist/esm/components/Icons/allIcons.js.map +1 -1
- package/dist/esm/components/Icons/iconMetaData.js +20 -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
|
@@ -4840,6 +4840,12 @@ const Earth = ({ title = "Earth", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs
|
|
|
4840
4840
|
] });
|
|
4841
4841
|
Earth.fill = "none";
|
|
4842
4842
|
|
|
4843
|
+
const Easel = ({ title = "Easel", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4844
|
+
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
4845
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L9 15m3.005-12.995v1M4 15h4.005m0 0h4m-4 0-2 6m6-6h4m-4 0v7m4-7H20m-3.995 0 2 6M10 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM7 3h10a2 2 0 0 1 2 2v10H5V5a2 2 0 0 1 2-2Z" })
|
|
4846
|
+
] });
|
|
4847
|
+
Easel.fill = "none";
|
|
4848
|
+
|
|
4843
4849
|
const Eclipse = ({ title = "Eclipse", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4844
4850
|
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
4845
4851
|
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
@@ -9353,10 +9359,33 @@ const PanelLeftRightDashed = ({
|
|
|
9353
9359
|
] });
|
|
9354
9360
|
PanelLeftRightDashed.fill = "none";
|
|
9355
9361
|
|
|
9362
|
+
const PanelLeftToggleDisabled = ({
|
|
9363
|
+
title = "Panel left toggle disabled",
|
|
9364
|
+
...props
|
|
9365
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9366
|
+
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9367
|
+
/* @__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" }),
|
|
9368
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9369
|
+
"path",
|
|
9370
|
+
{
|
|
9371
|
+
fill: "currentColor",
|
|
9372
|
+
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",
|
|
9373
|
+
opacity: ".4"
|
|
9374
|
+
}
|
|
9375
|
+
)
|
|
9376
|
+
] });
|
|
9377
|
+
PanelLeftToggleDisabled.fill = "none";
|
|
9378
|
+
|
|
9356
9379
|
const PanelLeftToggle = ({ title = "Panel left toggle", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9357
9380
|
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9358
|
-
/* @__PURE__ */ jsxRuntime.jsx("
|
|
9359
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9381
|
+
/* @__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" }),
|
|
9382
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9383
|
+
"path",
|
|
9384
|
+
{
|
|
9385
|
+
fill: "currentColor",
|
|
9386
|
+
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"
|
|
9387
|
+
}
|
|
9388
|
+
)
|
|
9360
9389
|
] });
|
|
9361
9390
|
PanelLeftToggle.fill = "none";
|
|
9362
9391
|
|
|
@@ -9395,10 +9424,33 @@ const PanelRightOpen = ({ title = "Panel right open", ...props }) => /* @__PURE_
|
|
|
9395
9424
|
] });
|
|
9396
9425
|
PanelRightOpen.fill = "none";
|
|
9397
9426
|
|
|
9427
|
+
const PanelRightToggleDisabled = ({
|
|
9428
|
+
title = "Panel right toggle disabled",
|
|
9429
|
+
...props
|
|
9430
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9431
|
+
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9432
|
+
/* @__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" }),
|
|
9433
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9434
|
+
"path",
|
|
9435
|
+
{
|
|
9436
|
+
fill: "currentColor",
|
|
9437
|
+
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",
|
|
9438
|
+
opacity: ".4"
|
|
9439
|
+
}
|
|
9440
|
+
)
|
|
9441
|
+
] });
|
|
9442
|
+
PanelRightToggleDisabled.fill = "none";
|
|
9443
|
+
|
|
9398
9444
|
const PanelRightToggle = ({ title = "Panel right toggle", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9399
9445
|
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9400
|
-
/* @__PURE__ */ jsxRuntime.jsx("
|
|
9401
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9446
|
+
/* @__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" }),
|
|
9447
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9448
|
+
"path",
|
|
9449
|
+
{
|
|
9450
|
+
fill: "currentColor",
|
|
9451
|
+
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"
|
|
9452
|
+
}
|
|
9453
|
+
)
|
|
9402
9454
|
] });
|
|
9403
9455
|
PanelRightToggle.fill = "none";
|
|
9404
9456
|
|
|
@@ -14678,6 +14730,7 @@ const AllIcons = {
|
|
|
14678
14730
|
Ear,
|
|
14679
14731
|
EarthLock,
|
|
14680
14732
|
Earth,
|
|
14733
|
+
Easel,
|
|
14681
14734
|
Eclipse,
|
|
14682
14735
|
Edit2,
|
|
14683
14736
|
Edit3,
|
|
@@ -15319,12 +15372,14 @@ const AllIcons = {
|
|
|
15319
15372
|
PanelLeftInactive,
|
|
15320
15373
|
PanelLeftOpen,
|
|
15321
15374
|
PanelLeftRightDashed,
|
|
15375
|
+
PanelLeftToggleDisabled,
|
|
15322
15376
|
PanelLeftToggle,
|
|
15323
15377
|
PanelLeft,
|
|
15324
15378
|
PanelRightClose,
|
|
15325
15379
|
PanelRightDashed,
|
|
15326
15380
|
PanelRightInactive,
|
|
15327
15381
|
PanelRightOpen,
|
|
15382
|
+
PanelRightToggleDisabled,
|
|
15328
15383
|
PanelRightToggle,
|
|
15329
15384
|
PanelRight,
|
|
15330
15385
|
PanelTopBottomDashed,
|
|
@@ -19523,6 +19578,24 @@ const iconMetaData = {
|
|
|
19523
19578
|
"connection"
|
|
19524
19579
|
],
|
|
19525
19580
|
Earth: ["world", "browser", "language", "translate", "globe"],
|
|
19581
|
+
Easel: [
|
|
19582
|
+
"canvas",
|
|
19583
|
+
"screen",
|
|
19584
|
+
"whiteboard",
|
|
19585
|
+
"marker pens",
|
|
19586
|
+
"markers",
|
|
19587
|
+
"blackboard",
|
|
19588
|
+
"chalk",
|
|
19589
|
+
"easel",
|
|
19590
|
+
"school",
|
|
19591
|
+
"learning",
|
|
19592
|
+
"lesson",
|
|
19593
|
+
"office",
|
|
19594
|
+
"meeting",
|
|
19595
|
+
"project",
|
|
19596
|
+
"planning",
|
|
19597
|
+
"presentation"
|
|
19598
|
+
],
|
|
19526
19599
|
Eclipse: [
|
|
19527
19600
|
"lunar",
|
|
19528
19601
|
"solar",
|
|
@@ -21903,6 +21976,7 @@ const iconMetaData = {
|
|
|
21903
21976
|
"vertical",
|
|
21904
21977
|
"bleed"
|
|
21905
21978
|
],
|
|
21979
|
+
PanelLeftToggleDisabled: ["primary", "drawer", "show", "reveal"],
|
|
21906
21980
|
PanelLeftToggle: ["primary", "drawer", "show", "reveal"],
|
|
21907
21981
|
PanelLeft: ["primary", "drawer"],
|
|
21908
21982
|
PanelRightClose: ["sidebar", "secondary", "drawer", "hide", "chevron", ">"],
|
|
@@ -21920,6 +21994,7 @@ const iconMetaData = {
|
|
|
21920
21994
|
],
|
|
21921
21995
|
PanelRightInactive: [],
|
|
21922
21996
|
PanelRightOpen: ["sidebar", "secondary", "drawer", "show", "reveal", "chevron", "left", "<"],
|
|
21997
|
+
PanelRightToggleDisabled: ["primary", "drawer", "show", "reveal"],
|
|
21923
21998
|
PanelRightToggle: ["primary", "drawer", "show", "reveal"],
|
|
21924
21999
|
PanelRight: ["sidebar", "secondary", "drawer"],
|
|
21925
22000
|
PanelTopBottomDashed: [
|
|
@@ -27151,6 +27226,7 @@ exports.Ear = Ear;
|
|
|
27151
27226
|
exports.EarOff = EarOff;
|
|
27152
27227
|
exports.Earth = Earth;
|
|
27153
27228
|
exports.EarthLock = EarthLock;
|
|
27229
|
+
exports.Easel = Easel;
|
|
27154
27230
|
exports.Eclipse = Eclipse;
|
|
27155
27231
|
exports.Edit = Edit;
|
|
27156
27232
|
exports.Edit2 = Edit2;
|
|
@@ -27798,12 +27874,14 @@ exports.PanelLeftInactive = PanelLeftInactive;
|
|
|
27798
27874
|
exports.PanelLeftOpen = PanelLeftOpen;
|
|
27799
27875
|
exports.PanelLeftRightDashed = PanelLeftRightDashed;
|
|
27800
27876
|
exports.PanelLeftToggle = PanelLeftToggle;
|
|
27877
|
+
exports.PanelLeftToggleDisabled = PanelLeftToggleDisabled;
|
|
27801
27878
|
exports.PanelRight = PanelRight;
|
|
27802
27879
|
exports.PanelRightClose = PanelRightClose;
|
|
27803
27880
|
exports.PanelRightDashed = PanelRightDashed;
|
|
27804
27881
|
exports.PanelRightInactive = PanelRightInactive;
|
|
27805
27882
|
exports.PanelRightOpen = PanelRightOpen;
|
|
27806
27883
|
exports.PanelRightToggle = PanelRightToggle;
|
|
27884
|
+
exports.PanelRightToggleDisabled = PanelRightToggleDisabled;
|
|
27807
27885
|
exports.PanelTop = PanelTop;
|
|
27808
27886
|
exports.PanelTopBottomDashed = PanelTopBottomDashed;
|
|
27809
27887
|
exports.PanelTopClose = PanelTopClose;
|