-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeclaration.d.ts
More file actions
231 lines (219 loc) · 5.85 KB
/
declaration.d.ts
File metadata and controls
231 lines (219 loc) · 5.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import "@mui/material/styles";
import {
UseColumnOrderInstanceProps,
UseColumnOrderState,
UseExpandedHooks,
UseExpandedInstanceProps,
UseExpandedOptions,
UseExpandedRowProps,
UseExpandedState,
UseFiltersColumnOptions,
UseFiltersColumnProps,
UseFiltersInstanceProps,
UseFiltersOptions,
UseFiltersState,
UseGlobalFiltersColumnOptions,
UseGlobalFiltersInstanceProps,
UseGlobalFiltersOptions,
UseGlobalFiltersState,
UseGroupByCellProps,
UseGroupByColumnOptions,
UseGroupByColumnProps,
UseGroupByHooks,
UseGroupByInstanceProps,
UseGroupByOptions,
UseGroupByRowProps,
UseGroupByState,
UsePaginationInstanceProps,
UsePaginationOptions,
UsePaginationState,
UseResizeColumnsColumnOptions,
UseResizeColumnsColumnProps,
UseResizeColumnsOptions,
UseResizeColumnsState,
UseRowSelectHooks,
UseRowSelectInstanceProps,
UseRowSelectOptions,
UseRowSelectRowProps,
UseRowSelectState,
UseRowStateCellProps,
UseRowStateInstanceProps,
UseRowStateOptions,
UseRowStateRowProps,
UseRowStateState,
UseSortByColumnOptions,
UseSortByColumnProps,
UseSortByHooks,
UseSortByInstanceProps,
UseSortByOptions,
UseSortByState,
} from "react-table";
import { TypeBackground as MuiTypeBackground } from "@mui/material";
declare module "@mui/material/styles" {
/* eslint-disable-next-line */ // Palette is an interface from @mui
interface Palette {
menu: {
main: string;
accent: string;
line: string;
};
gradient: {
angled: {
main: string;
accent: string;
};
};
sunset: {
light: string;
dark: string;
};
border: {
light: string;
dark: string;
};
select: {
main: string;
placeholder: string;
};
header: {
light: string;
dark: string;
};
input: {
border: string;
};
button: {
light: string;
};
table: {
header: string;
divider: string;
border: string;
};
}
/* eslint-disable-next-line */ // PaletteOptions is an interface from @mui
interface PaletteOptions {
menu?: {
main?: string;
accent?: string;
line?: string;
};
gradient?: {
angled?: {
main?: string;
accent?: string;
};
};
sunset?: {
light?: string;
dark?: string;
};
border?: {
light?: string;
dark?: string;
};
header?: {
light?: string;
dark?: string;
};
select?: {
main?: string;
placeholder?: string;
};
input?: {
border?: string;
};
button?: {
light?: string;
};
table?: {
header?: string;
divider?: string;
border?: string;
};
}
// eslint-disable-next-line @typescript-eslint/naming-convention
interface TypeBackground extends MuiTypeBackground {
light: string;
dark: string;
}
}
/* https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react-table/Readme.md */
declare module "react-table" {
// take this file as-is, or comment out the sections that don't apply to your plugin configuration
/* eslint-disable-next-line */
export interface TableOptions<
T extends Record<string, unknown>
> extends UseExpandedOptions<T>,
UseFiltersOptions<T>,
UseGlobalFiltersOptions<T>,
UseGroupByOptions<T>,
UsePaginationOptions<T>,
UseResizeColumnsOptions<T>,
UseRowSelectOptions<T>,
UseRowStateOptions<T>,
UseSortByOptions<T>,
// note that having Record here allows you to add anything to the options, this matches the spirit of the
// underlying js library, but might be cleaner if it's replaced by a more specific type that matches your
// feature set, this is a safe default.
Record<string, any> {}
/* eslint-disable-next-line */
export interface Hooks<
T extends Record<string, unknown> = Record<string, unknown>
> extends UseExpandedHooks<T>,
UseGroupByHooks<T>,
UseRowSelectHooks<T>,
UseSortByHooks<T> {}
/* eslint-disable-next-line */
export interface TableInstance<
T extends Record<string, unknown> = Record<string, unknown>
> extends UseColumnOrderInstanceProps<T>,
UseExpandedInstanceProps<T>,
UseFiltersInstanceProps<T>,
UseGlobalFiltersInstanceProps<T>,
UseGroupByInstanceProps<T>,
UsePaginationInstanceProps<T>,
UseRowSelectInstanceProps<T>,
UseRowStateInstanceProps<T>,
UseSortByInstanceProps<T> {}
/* eslint-disable-next-line */
export interface TableState<
T extends Record<string, unknown> = Record<string, unknown>
> extends UseColumnOrderState<T>,
UseExpandedState<T>,
UseFiltersState<T>,
UseGlobalFiltersState<T>,
UseGroupByState<T>,
UsePaginationState<T>,
UseResizeColumnsState<T>,
UseRowSelectState<T>,
UseRowStateState<T>,
UseSortByState<T> {}
/* eslint-disable-next-line */
export interface ColumnInterface<
T extends Record<string, unknown> = Record<string, unknown>
> extends UseFiltersColumnOptions<T>,
UseGlobalFiltersColumnOptions<T>,
UseGroupByColumnOptions<T>,
UseResizeColumnsColumnOptions<T>,
UseSortByColumnOptions<T> {}
/* eslint-disable-next-line */
export interface ColumnInstance<
T extends Record<string, unknown> = Record<string, unknown>
> extends UseFiltersColumnProps<T>,
UseGroupByColumnProps<T>,
UseResizeColumnsColumnProps<T>,
UseSortByColumnProps<T> {}
/* eslint-disable-next-line */
export interface Cell<
T extends Record<string, unknown> = Record<string, unknown>
> extends UseGroupByCellProps<T>,
UseRowStateCellProps<T> {}
/* eslint-disable-next-line */
export interface Row<
T extends Record<string, unknown> = Record<string, unknown>
> extends UseExpandedRowProps<T>,
UseGroupByRowProps<T>,
UseRowSelectRowProps<T>,
UseRowStateRowProps<T> {}
}