@popmenu/dashboard 0.150.2 → 0.151.1
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/build/cjs/components/ClickableTile/ClickableTile.d.ts +2 -1
- package/build/cjs/components/DashboardContainer/DashboardContainer.d.ts +2 -1
- package/build/cjs/components/KpiMetric/KpiMetric.d.ts +2 -1
- package/build/cjs/components/KpiMetricTile/KpiMetricTile.d.ts +2 -1
- package/build/cjs/components/Leaderboard/Leaderboard.d.ts +2 -1
- package/build/cjs/components/LeaderboardTile/LeaderboardTile.d.ts +2 -1
- package/build/cjs/components/Tile/Tile.d.ts +2 -1
- package/build/esm/components/ClickableTile/ClickableTile.d.ts +2 -1
- package/build/esm/components/DashboardContainer/DashboardContainer.d.ts +2 -1
- package/build/esm/components/KpiMetric/KpiMetric.d.ts +2 -1
- package/build/esm/components/KpiMetricTile/KpiMetricTile.d.ts +2 -1
- package/build/esm/components/Leaderboard/Leaderboard.d.ts +2 -1
- package/build/esm/components/LeaderboardTile/LeaderboardTile.d.ts +2 -1
- package/build/esm/components/Tile/Tile.d.ts +2 -1
- package/package.json +2 -2
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { ClickableTileProps } from './ClickableTileProps';
|
|
2
|
-
export declare const ClickableTile: ({ CardContentProps, children, link, ...restProps }: ClickableTileProps) => JSX.Element;
|
|
3
|
+
export declare const ClickableTile: ({ CardContentProps, children, link, ...restProps }: ClickableTileProps) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { BoxProps as DashboardContainerProps } from '@popmenu/common-ui';
|
|
2
|
-
export declare const DashboardContainer: (props: DashboardContainerProps) => JSX.Element;
|
|
3
|
+
export declare const DashboardContainer: (props: DashboardContainerProps) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { KpiMetricProps } from './KpiMetricProps';
|
|
2
|
-
export declare const KpiMetric: ({ Icon: KpiIcon, iconColor, iconBackgroundColor, metric, metricTooltip, trend, trendMessage, trendStatus, value, }: KpiMetricProps) => JSX.Element;
|
|
3
|
+
export declare const KpiMetric: ({ Icon: KpiIcon, iconColor, iconBackgroundColor, metric, metricTooltip, trend, trendMessage, trendStatus, value, }: KpiMetricProps) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { ClickableTileProps } from './ClickableTileProps';
|
|
2
|
-
export declare const ClickableTile: ({ CardContentProps, children, link, ...restProps }: ClickableTileProps) => JSX.Element;
|
|
3
|
+
export declare const ClickableTile: ({ CardContentProps, children, link, ...restProps }: ClickableTileProps) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { BoxProps as DashboardContainerProps } from '@popmenu/common-ui';
|
|
2
|
-
export declare const DashboardContainer: (props: DashboardContainerProps) => JSX.Element;
|
|
3
|
+
export declare const DashboardContainer: (props: DashboardContainerProps) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { KpiMetricProps } from './KpiMetricProps';
|
|
2
|
-
export declare const KpiMetric: ({ Icon: KpiIcon, iconColor, iconBackgroundColor, metric, metricTooltip, trend, trendMessage, trendStatus, value, }: KpiMetricProps) => JSX.Element;
|
|
3
|
+
export declare const KpiMetric: ({ Icon: KpiIcon, iconColor, iconBackgroundColor, metric, metricTooltip, trend, trendMessage, trendStatus, value, }: KpiMetricProps) => React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@popmenu/dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.151.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Popmenu Design System Team",
|
|
6
6
|
"description": "React dashboard components for admin app.",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"react-table": "^7.7.0"
|
|
35
35
|
},
|
|
36
36
|
"sideEffects": false,
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "971a0722a2958765b47d1db068506cf55dc777c8"
|
|
38
38
|
}
|