@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
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelRightToggle.js","sources":["../../../../src/components/Icons/PanelRightToggle.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const PanelRightToggle: SVGComponent = ({ title = 'Panel right toggle', ...props }) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <
|
|
1
|
+
{"version":3,"file":"PanelRightToggle.js","sources":["../../../../src/components/Icons/PanelRightToggle.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const PanelRightToggle: SVGComponent = ({ title = 'Panel right toggle', ...props }) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <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\"></path>\n <path\n fill=\"currentColor\"\n 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\"\n ></path>\n </svg>\n);\n\nPanelRightToggle.fill = 'none';\n"],"names":[],"mappings":";;AAEO,MAAM,gBAAA,GAAiC,CAAC,EAAE,KAAA,GAAQ,oBAAA,EAAsB,GAAG,KAAA,EAAM,qBACtF,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,uEAAA,EAAwE,CAAA;AAAA,kBAChF,GAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACC,IAAA,EAAK,cAAA;AAAA,MACL,CAAA,EAAE;AAAA;AAAA;AACH,CAAA,EACH;AAGF,gBAAA,CAAiB,IAAA,GAAO,MAAA;;;;"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const PanelRightToggleDisabled = ({
|
|
4
|
+
title = "Panel right toggle disabled",
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
7
|
+
title && /* @__PURE__ */ jsx("title", { children: title }),
|
|
8
|
+
/* @__PURE__ */ 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" }),
|
|
9
|
+
/* @__PURE__ */ jsx(
|
|
10
|
+
"path",
|
|
11
|
+
{
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
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",
|
|
14
|
+
opacity: ".4"
|
|
15
|
+
}
|
|
16
|
+
)
|
|
17
|
+
] });
|
|
18
|
+
PanelRightToggleDisabled.fill = "none";
|
|
19
|
+
|
|
20
|
+
export { PanelRightToggleDisabled };
|
|
21
|
+
//# sourceMappingURL=PanelRightToggleDisabled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PanelRightToggleDisabled.js","sources":["../../../../src/components/Icons/PanelRightToggleDisabled.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const PanelRightToggleDisabled: SVGComponent = ({\n title = 'Panel right toggle disabled',\n ...props\n}) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <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\"></path>\n <path\n fill=\"currentColor\"\n 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\"\n opacity=\".4\"\n ></path>\n </svg>\n);\n\nPanelRightToggleDisabled.fill = 'none';\n"],"names":[],"mappings":";;AAEO,MAAM,2BAAyC,CAAC;AAAA,EACrD,KAAA,GAAQ,6BAAA;AAAA,EACR,GAAG;AACL,CAAA,qBACE,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,uEAAA,EAAwE,CAAA;AAAA,kBAChF,GAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACC,IAAA,EAAK,cAAA;AAAA,MACL,CAAA,EAAE,uEAAA;AAAA,MACF,OAAA,EAAQ;AAAA;AAAA;AACT,CAAA,EACH;AAGF,wBAAA,CAAyB,IAAA,GAAO,MAAA;;;;"}
|
|
@@ -658,6 +658,7 @@ import { EarOff } from './EarOff.js';
|
|
|
658
658
|
import { Ear } from './Ear.js';
|
|
659
659
|
import { EarthLock } from './EarthLock.js';
|
|
660
660
|
import { Earth } from './Earth.js';
|
|
661
|
+
import { Easel } from './Easel.js';
|
|
661
662
|
import { Eclipse } from './Eclipse.js';
|
|
662
663
|
import { Edit2 } from './Edit2.js';
|
|
663
664
|
import { Edit3 } from './Edit3.js';
|
|
@@ -1299,12 +1300,14 @@ import { PanelLeftDashed } from './PanelLeftDashed.js';
|
|
|
1299
1300
|
import { PanelLeftInactive } from './PanelLeftInactive.js';
|
|
1300
1301
|
import { PanelLeftOpen } from './PanelLeftOpen.js';
|
|
1301
1302
|
import { PanelLeftRightDashed } from './PanelLeftRightDashed.js';
|
|
1303
|
+
import { PanelLeftToggleDisabled } from './PanelLeftToggleDisabled.js';
|
|
1302
1304
|
import { PanelLeftToggle } from './PanelLeftToggle.js';
|
|
1303
1305
|
import { PanelLeft } from './PanelLeft.js';
|
|
1304
1306
|
import { PanelRightClose } from './PanelRightClose.js';
|
|
1305
1307
|
import { PanelRightDashed } from './PanelRightDashed.js';
|
|
1306
1308
|
import { PanelRightInactive } from './PanelRightInactive.js';
|
|
1307
1309
|
import { PanelRightOpen } from './PanelRightOpen.js';
|
|
1310
|
+
import { PanelRightToggleDisabled } from './PanelRightToggleDisabled.js';
|
|
1308
1311
|
import { PanelRightToggle } from './PanelRightToggle.js';
|
|
1309
1312
|
import { PanelRight } from './PanelRight.js';
|
|
1310
1313
|
import { PanelTopBottomDashed } from './PanelTopBottomDashed.js';
|
|
@@ -2627,6 +2630,7 @@ const AllIcons = {
|
|
|
2627
2630
|
Ear,
|
|
2628
2631
|
EarthLock,
|
|
2629
2632
|
Earth,
|
|
2633
|
+
Easel,
|
|
2630
2634
|
Eclipse,
|
|
2631
2635
|
Edit2,
|
|
2632
2636
|
Edit3,
|
|
@@ -3268,12 +3272,14 @@ const AllIcons = {
|
|
|
3268
3272
|
PanelLeftInactive,
|
|
3269
3273
|
PanelLeftOpen,
|
|
3270
3274
|
PanelLeftRightDashed,
|
|
3275
|
+
PanelLeftToggleDisabled,
|
|
3271
3276
|
PanelLeftToggle,
|
|
3272
3277
|
PanelLeft,
|
|
3273
3278
|
PanelRightClose,
|
|
3274
3279
|
PanelRightDashed,
|
|
3275
3280
|
PanelRightInactive,
|
|
3276
3281
|
PanelRightOpen,
|
|
3282
|
+
PanelRightToggleDisabled,
|
|
3277
3283
|
PanelRightToggle,
|
|
3278
3284
|
PanelRight,
|
|
3279
3285
|
PanelTopBottomDashed,
|