@grafana/components 0.0.57 → 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 +56 -4
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +6 -2
- package/dist/esm/components/ComparisonBadge/ComparisonBadge.js +2 -0
- package/dist/esm/components/ComparisonBadge/ComparisonBadge.js.map +1 -1
- package/dist/esm/components/ComparisonTooltip/ComparisonTooltip.js +2 -0
- package/dist/esm/components/ComparisonTooltip/ComparisonTooltip.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/allIcons.js +4 -0
- package/dist/esm/components/Icons/allIcons.js.map +1 -1
- package/dist/esm/components/Icons/iconMetaData.js +2 -0
- package/dist/esm/components/Icons/iconMetaData.js.map +1 -1
- package/dist/esm/components/StackedChartNoData/StackedChartNoData.js +2 -0
- package/dist/esm/components/StackedChartNoData/StackedChartNoData.js.map +1 -1
- package/dist/esm/index.d.ts +6 -2
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -9359,10 +9359,33 @@ const PanelLeftRightDashed = ({
|
|
|
9359
9359
|
] });
|
|
9360
9360
|
PanelLeftRightDashed.fill = "none";
|
|
9361
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
|
+
|
|
9362
9379
|
const PanelLeftToggle = ({ title = "Panel left toggle", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9363
9380
|
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9364
|
-
/* @__PURE__ */ jsxRuntime.jsx("
|
|
9365
|
-
/* @__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
|
+
)
|
|
9366
9389
|
] });
|
|
9367
9390
|
PanelLeftToggle.fill = "none";
|
|
9368
9391
|
|
|
@@ -9401,10 +9424,33 @@ const PanelRightOpen = ({ title = "Panel right open", ...props }) => /* @__PURE_
|
|
|
9401
9424
|
] });
|
|
9402
9425
|
PanelRightOpen.fill = "none";
|
|
9403
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
|
+
|
|
9404
9444
|
const PanelRightToggle = ({ title = "Panel right toggle", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
9405
9445
|
title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
9406
|
-
/* @__PURE__ */ jsxRuntime.jsx("
|
|
9407
|
-
/* @__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
|
+
)
|
|
9408
9454
|
] });
|
|
9409
9455
|
PanelRightToggle.fill = "none";
|
|
9410
9456
|
|
|
@@ -15326,12 +15372,14 @@ const AllIcons = {
|
|
|
15326
15372
|
PanelLeftInactive,
|
|
15327
15373
|
PanelLeftOpen,
|
|
15328
15374
|
PanelLeftRightDashed,
|
|
15375
|
+
PanelLeftToggleDisabled,
|
|
15329
15376
|
PanelLeftToggle,
|
|
15330
15377
|
PanelLeft,
|
|
15331
15378
|
PanelRightClose,
|
|
15332
15379
|
PanelRightDashed,
|
|
15333
15380
|
PanelRightInactive,
|
|
15334
15381
|
PanelRightOpen,
|
|
15382
|
+
PanelRightToggleDisabled,
|
|
15335
15383
|
PanelRightToggle,
|
|
15336
15384
|
PanelRight,
|
|
15337
15385
|
PanelTopBottomDashed,
|
|
@@ -21928,6 +21976,7 @@ const iconMetaData = {
|
|
|
21928
21976
|
"vertical",
|
|
21929
21977
|
"bleed"
|
|
21930
21978
|
],
|
|
21979
|
+
PanelLeftToggleDisabled: ["primary", "drawer", "show", "reveal"],
|
|
21931
21980
|
PanelLeftToggle: ["primary", "drawer", "show", "reveal"],
|
|
21932
21981
|
PanelLeft: ["primary", "drawer"],
|
|
21933
21982
|
PanelRightClose: ["sidebar", "secondary", "drawer", "hide", "chevron", ">"],
|
|
@@ -21945,6 +21994,7 @@ const iconMetaData = {
|
|
|
21945
21994
|
],
|
|
21946
21995
|
PanelRightInactive: [],
|
|
21947
21996
|
PanelRightOpen: ["sidebar", "secondary", "drawer", "show", "reveal", "chevron", "left", "<"],
|
|
21997
|
+
PanelRightToggleDisabled: ["primary", "drawer", "show", "reveal"],
|
|
21948
21998
|
PanelRightToggle: ["primary", "drawer", "show", "reveal"],
|
|
21949
21999
|
PanelRight: ["sidebar", "secondary", "drawer"],
|
|
21950
22000
|
PanelTopBottomDashed: [
|
|
@@ -27824,12 +27874,14 @@ exports.PanelLeftInactive = PanelLeftInactive;
|
|
|
27824
27874
|
exports.PanelLeftOpen = PanelLeftOpen;
|
|
27825
27875
|
exports.PanelLeftRightDashed = PanelLeftRightDashed;
|
|
27826
27876
|
exports.PanelLeftToggle = PanelLeftToggle;
|
|
27877
|
+
exports.PanelLeftToggleDisabled = PanelLeftToggleDisabled;
|
|
27827
27878
|
exports.PanelRight = PanelRight;
|
|
27828
27879
|
exports.PanelRightClose = PanelRightClose;
|
|
27829
27880
|
exports.PanelRightDashed = PanelRightDashed;
|
|
27830
27881
|
exports.PanelRightInactive = PanelRightInactive;
|
|
27831
27882
|
exports.PanelRightOpen = PanelRightOpen;
|
|
27832
27883
|
exports.PanelRightToggle = PanelRightToggle;
|
|
27884
|
+
exports.PanelRightToggleDisabled = PanelRightToggleDisabled;
|
|
27833
27885
|
exports.PanelTop = PanelTop;
|
|
27834
27886
|
exports.PanelTopBottomDashed = PanelTopBottomDashed;
|
|
27835
27887
|
exports.PanelTopClose = PanelTopClose;
|