@clickview/reports 0.0.0-rc.0 → 0.0.0-rc.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.
- package/dist/bundles.json +4 -0
- package/dist/css/1-reports-00dacace86.chunk.css +10 -0
- package/dist/css/reports-app-7d0d4a6dc2.css +45 -0
- package/dist/en.json +1 -0
- package/dist/scripts/1-4149bec43e-reports.chunk.js +1 -0
- package/dist/scripts/2-c064ed8876-reports.chunk.js +1 -0
- package/dist/scripts/3-464ede7837-reports.chunk.js +1 -0
- package/dist/scripts/4-2316f2de75-reports.chunk.js +1 -0
- package/dist/scripts/5-30bc1bfaab-reports.chunk.js +1 -0
- package/dist/scripts/reports-app-8fd82e9798.min.js +378 -0
- package/package.json +3 -3
- package/typings/libs/react-table-config.d.ts +19 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clickview/reports",
|
|
3
|
-
"version": "0.0.0-rc.
|
|
3
|
+
"version": "0.0.0-rc.2",
|
|
4
4
|
"description": "ClickView Reports",
|
|
5
5
|
"main": "dist/reports-app.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@babel/core": "7.11.6",
|
|
23
23
|
"@clickview/eslint-config": "1.0.0",
|
|
24
|
-
"@clickview/tooling": "0.0.
|
|
24
|
+
"@clickview/tooling": "0.0.23-rc.2",
|
|
25
25
|
"@types/react-dates": "21.8.1",
|
|
26
26
|
"@types/react-table": "7.0.29",
|
|
27
27
|
"redux-devtools-extension": "2.13.8"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@clickview/styles": "1.0.
|
|
30
|
+
"@clickview/styles": "1.0.16-rc.2",
|
|
31
31
|
"react-dates": "21.8.0",
|
|
32
32
|
"react-table": "7.6.3"
|
|
33
33
|
},
|
|
@@ -37,11 +37,11 @@ import {
|
|
|
37
37
|
// UseResizeColumnsColumnProps,
|
|
38
38
|
// UseResizeColumnsOptions,
|
|
39
39
|
// UseResizeColumnsState,
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
UseRowSelectHooks,
|
|
41
|
+
UseRowSelectInstanceProps,
|
|
42
|
+
UseRowSelectOptions,
|
|
43
|
+
UseRowSelectRowProps,
|
|
44
|
+
UseRowSelectState,
|
|
45
45
|
// UseRowStateCellProps,
|
|
46
46
|
// UseRowStateInstanceProps,
|
|
47
47
|
// UseRowStateOptions,
|
|
@@ -59,7 +59,8 @@ declare module 'react-table' {
|
|
|
59
59
|
// take this file as-is, or comment out the sections that don't apply to your plugin configuration
|
|
60
60
|
|
|
61
61
|
export interface TableOptions<D extends Record<string, unknown>>
|
|
62
|
-
extends UseSortByOptions<D
|
|
62
|
+
extends UseSortByOptions<D>,
|
|
63
|
+
UseRowSelectOptions<D> {}
|
|
63
64
|
|
|
64
65
|
// extends UseExpandedOptions<D>,
|
|
65
66
|
// UseFiltersOptions<D>,
|
|
@@ -76,14 +77,16 @@ declare module 'react-table' {
|
|
|
76
77
|
// Record<string, any> {}
|
|
77
78
|
|
|
78
79
|
export interface Hooks<D extends Record<string, unknown> = Record<string, unknown>>
|
|
79
|
-
extends UseSortByHooks<D
|
|
80
|
+
extends UseSortByHooks<D>,
|
|
81
|
+
UseRowSelectHooks {}
|
|
80
82
|
// extends UseExpandedHooks<D>,
|
|
81
83
|
// UseGroupByHooks<D>,
|
|
82
84
|
// UseRowSelectHooks<D>,
|
|
83
85
|
// UseSortByHooks<D> {}
|
|
84
86
|
|
|
85
87
|
export interface TableInstance<D extends Record<string, unknown> = Record<string, unknown>>
|
|
86
|
-
extends UseSortByInstanceProps<D
|
|
88
|
+
extends UseSortByInstanceProps<D>,
|
|
89
|
+
UseRowSelectInstanceProps<D> {}
|
|
87
90
|
// extends UseColumnOrderInstanceProps<D>,
|
|
88
91
|
// UseExpandedInstanceProps<D>,
|
|
89
92
|
// UseFiltersInstanceProps<D>,
|
|
@@ -95,7 +98,8 @@ declare module 'react-table' {
|
|
|
95
98
|
// UseSortByInstanceProps<D> {}
|
|
96
99
|
|
|
97
100
|
export interface TableState<D extends Record<string, unknown> = Record<string, unknown>>
|
|
98
|
-
extends UseSortByState<D
|
|
101
|
+
extends UseSortByState<D>,
|
|
102
|
+
UseRowSelectState<D> {}
|
|
99
103
|
// extends UseColumnOrderState<D>,
|
|
100
104
|
// UseExpandedState<D>,
|
|
101
105
|
// UseFiltersState<D>,
|
|
@@ -126,9 +130,10 @@ declare module 'react-table' {
|
|
|
126
130
|
// extends UseGroupByCellProps<D>,
|
|
127
131
|
// UseRowStateCellProps<D> {}
|
|
128
132
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
133
|
+
export interface Row<D extends Record<string, unknown> = Record<string, unknown>>
|
|
134
|
+
extends UseRowSelectRowProps<D> {}
|
|
135
|
+
// extends UseExpandedRowProps<D>,
|
|
136
|
+
// UseGroupByRowProps<D>,
|
|
137
|
+
// UseRowSelectRowProps<D>,
|
|
138
|
+
// UseRowStateRowProps<D> {}
|
|
134
139
|
}
|