@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
|
@@ -1300,12 +1300,14 @@ import { PanelLeftDashed } from './PanelLeftDashed.js';
|
|
|
1300
1300
|
import { PanelLeftInactive } from './PanelLeftInactive.js';
|
|
1301
1301
|
import { PanelLeftOpen } from './PanelLeftOpen.js';
|
|
1302
1302
|
import { PanelLeftRightDashed } from './PanelLeftRightDashed.js';
|
|
1303
|
+
import { PanelLeftToggleDisabled } from './PanelLeftToggleDisabled.js';
|
|
1303
1304
|
import { PanelLeftToggle } from './PanelLeftToggle.js';
|
|
1304
1305
|
import { PanelLeft } from './PanelLeft.js';
|
|
1305
1306
|
import { PanelRightClose } from './PanelRightClose.js';
|
|
1306
1307
|
import { PanelRightDashed } from './PanelRightDashed.js';
|
|
1307
1308
|
import { PanelRightInactive } from './PanelRightInactive.js';
|
|
1308
1309
|
import { PanelRightOpen } from './PanelRightOpen.js';
|
|
1310
|
+
import { PanelRightToggleDisabled } from './PanelRightToggleDisabled.js';
|
|
1309
1311
|
import { PanelRightToggle } from './PanelRightToggle.js';
|
|
1310
1312
|
import { PanelRight } from './PanelRight.js';
|
|
1311
1313
|
import { PanelTopBottomDashed } from './PanelTopBottomDashed.js';
|
|
@@ -3270,12 +3272,14 @@ const AllIcons = {
|
|
|
3270
3272
|
PanelLeftInactive,
|
|
3271
3273
|
PanelLeftOpen,
|
|
3272
3274
|
PanelLeftRightDashed,
|
|
3275
|
+
PanelLeftToggleDisabled,
|
|
3273
3276
|
PanelLeftToggle,
|
|
3274
3277
|
PanelLeft,
|
|
3275
3278
|
PanelRightClose,
|
|
3276
3279
|
PanelRightDashed,
|
|
3277
3280
|
PanelRightInactive,
|
|
3278
3281
|
PanelRightOpen,
|
|
3282
|
+
PanelRightToggleDisabled,
|
|
3279
3283
|
PanelRightToggle,
|
|
3280
3284
|
PanelRight,
|
|
3281
3285
|
PanelTopBottomDashed,
|