@popmenu/dashboard 0.150.0 → 0.150.2
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { MenuProps } from '@material-ui/core';
|
|
2
3
|
export interface LeaderboardFilterOptionProps {
|
|
3
4
|
label: string;
|
|
@@ -33,7 +34,7 @@ export interface LeaderboardProps {
|
|
|
33
34
|
/** Component to display when no data is present */
|
|
34
35
|
EmptyState: React.ReactNode;
|
|
35
36
|
/** Optional props for filter after the title/subtitle */
|
|
36
|
-
filterProps
|
|
37
|
+
filterProps?: LeaderboardFilterProps;
|
|
37
38
|
/** Optional link at bottom to redirect to another page. Intended as a link to more data within the leaderboard. */
|
|
38
39
|
moreLink?: {
|
|
39
40
|
/** Will display regardless of overflow */
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { MenuProps } from '@material-ui/core';
|
|
2
3
|
export interface LeaderboardFilterOptionProps {
|
|
3
4
|
label: string;
|
|
@@ -33,7 +34,7 @@ export interface LeaderboardProps {
|
|
|
33
34
|
/** Component to display when no data is present */
|
|
34
35
|
EmptyState: React.ReactNode;
|
|
35
36
|
/** Optional props for filter after the title/subtitle */
|
|
36
|
-
filterProps
|
|
37
|
+
filterProps?: LeaderboardFilterProps;
|
|
37
38
|
/** Optional link at bottom to redirect to another page. Intended as a link to more data within the leaderboard. */
|
|
38
39
|
moreLink?: {
|
|
39
40
|
/** Will display regardless of overflow */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@popmenu/dashboard",
|
|
3
|
-
"version": "0.150.
|
|
3
|
+
"version": "0.150.2",
|
|
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": "7d1f3acce3cc1211399262c43aba7979ac433d62"
|
|
38
38
|
}
|