@elliemae/ds-data-table 2.0.0-rc.7 → 2.0.0-rc.8
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/package.json +15 -15
- package/types/DataTable.d.ts +245 -43
- package/types/DataTableSchema.d.ts +245 -43
- package/types/parts/FilterBar/styled.d.ts +163 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-data-table",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Data Table",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -634,20 +634,20 @@
|
|
|
634
634
|
"dependencies": {
|
|
635
635
|
"@dnd-kit/core": "~4.0.1",
|
|
636
636
|
"@dnd-kit/sortable": "~5.0.0",
|
|
637
|
-
"@elliemae/ds-basic": "2.0.0-rc.
|
|
638
|
-
"@elliemae/ds-button": "2.0.0-rc.
|
|
639
|
-
"@elliemae/ds-circular-progress-indicator": "2.0.0-rc.
|
|
640
|
-
"@elliemae/ds-controlled-form": "2.0.0-rc.
|
|
641
|
-
"@elliemae/ds-dropdownmenu": "2.0.0-rc.
|
|
642
|
-
"@elliemae/ds-form": "2.0.0-rc.
|
|
643
|
-
"@elliemae/ds-grid": "2.0.0-rc.
|
|
644
|
-
"@elliemae/ds-icons": "2.0.0-rc.
|
|
645
|
-
"@elliemae/ds-indeterminate-progress-indicator": "2.0.0-rc.
|
|
646
|
-
"@elliemae/ds-pagination": "2.0.0-rc.
|
|
647
|
-
"@elliemae/ds-pills": "2.0.0-rc.
|
|
648
|
-
"@elliemae/ds-system": "2.0.0-rc.
|
|
649
|
-
"@elliemae/ds-truncated-tooltip-text": "2.0.0-rc.
|
|
650
|
-
"@elliemae/ds-utilities": "2.0.0-rc.
|
|
637
|
+
"@elliemae/ds-basic": "2.0.0-rc.8",
|
|
638
|
+
"@elliemae/ds-button": "2.0.0-rc.8",
|
|
639
|
+
"@elliemae/ds-circular-progress-indicator": "2.0.0-rc.8",
|
|
640
|
+
"@elliemae/ds-controlled-form": "2.0.0-rc.8",
|
|
641
|
+
"@elliemae/ds-dropdownmenu": "2.0.0-rc.8",
|
|
642
|
+
"@elliemae/ds-form": "2.0.0-rc.8",
|
|
643
|
+
"@elliemae/ds-grid": "2.0.0-rc.8",
|
|
644
|
+
"@elliemae/ds-icons": "2.0.0-rc.8",
|
|
645
|
+
"@elliemae/ds-indeterminate-progress-indicator": "2.0.0-rc.8",
|
|
646
|
+
"@elliemae/ds-pagination": "2.0.0-rc.8",
|
|
647
|
+
"@elliemae/ds-pills": "2.0.0-rc.8",
|
|
648
|
+
"@elliemae/ds-system": "2.0.0-rc.8",
|
|
649
|
+
"@elliemae/ds-truncated-tooltip-text": "2.0.0-rc.8",
|
|
650
|
+
"@elliemae/ds-utilities": "2.0.0-rc.8",
|
|
651
651
|
"@popperjs/core": "~2.10.2",
|
|
652
652
|
"@reduxjs/toolkit": "~1.6.2",
|
|
653
653
|
"array-move": "~3.0.1",
|
package/types/DataTable.d.ts
CHANGED
|
@@ -1,51 +1,253 @@
|
|
|
1
|
+
/// <reference path="../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
import React from 'react';
|
|
2
3
|
import { TypescriptProps } from './types/props';
|
|
3
4
|
export declare const DataTable: {
|
|
4
5
|
(props: TypescriptProps): JSX.Element;
|
|
5
6
|
propTypes: {
|
|
6
|
-
columns:
|
|
7
|
-
data:
|
|
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
|
-
|
|
7
|
+
columns: import("react-desc").PropTypesDescValidator;
|
|
8
|
+
data: {
|
|
9
|
+
defaultValue<T = unknown>(arg: T): {
|
|
10
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
11
|
+
};
|
|
12
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
13
|
+
};
|
|
14
|
+
height: {
|
|
15
|
+
defaultValue<T = unknown>(arg: T): {
|
|
16
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
17
|
+
};
|
|
18
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
19
|
+
};
|
|
20
|
+
width: {
|
|
21
|
+
defaultValue<T = unknown>(arg: T): {
|
|
22
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
23
|
+
};
|
|
24
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
26
|
+
renderRowActions: {
|
|
27
|
+
defaultValue<T = unknown>(arg: T): {
|
|
28
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
29
|
+
};
|
|
30
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
31
|
+
};
|
|
32
|
+
isExpandable: {
|
|
33
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
34
|
+
};
|
|
35
|
+
uniqueRowAccessor: {
|
|
36
|
+
defaultValue<T = unknown>(arg: T): {
|
|
37
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
38
|
+
};
|
|
39
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
40
|
+
};
|
|
41
|
+
disabledRows: {
|
|
42
|
+
defaultValue<T = unknown>(arg: T): {
|
|
43
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
44
|
+
};
|
|
45
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
46
|
+
};
|
|
47
|
+
expandedRows: {
|
|
48
|
+
defaultValue<T = unknown>(arg: T): {
|
|
49
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
50
|
+
};
|
|
51
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
52
|
+
};
|
|
53
|
+
onRowExpand: {
|
|
54
|
+
defaultValue<T = unknown>(arg: T): {
|
|
55
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
56
|
+
};
|
|
57
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
58
|
+
};
|
|
59
|
+
cellRendererProps: {
|
|
60
|
+
defaultValue<T = unknown>(arg: T): {
|
|
61
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
62
|
+
};
|
|
63
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
64
|
+
};
|
|
65
|
+
selectSingle: {
|
|
66
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
67
|
+
};
|
|
68
|
+
selection: {
|
|
69
|
+
defaultValue<T = unknown>(arg: T): {
|
|
70
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
71
|
+
};
|
|
72
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
73
|
+
};
|
|
74
|
+
onSelectionChange: {
|
|
75
|
+
defaultValue<T = unknown>(arg: T): {
|
|
76
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
77
|
+
};
|
|
78
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
79
|
+
};
|
|
80
|
+
groupedRowsRenderHeader: {
|
|
81
|
+
defaultValue<T = unknown>(arg: T): {
|
|
82
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
83
|
+
};
|
|
84
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
85
|
+
};
|
|
86
|
+
isResizeable: {
|
|
87
|
+
defaultValue<T = unknown>(arg: T): {
|
|
88
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
89
|
+
};
|
|
90
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
91
|
+
};
|
|
92
|
+
filters: {
|
|
93
|
+
defaultValue<T = unknown>(arg: T): {
|
|
94
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
95
|
+
};
|
|
96
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
97
|
+
};
|
|
98
|
+
withFilterBar: {
|
|
99
|
+
defaultValue<T = unknown>(arg: T): {
|
|
100
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
101
|
+
};
|
|
102
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
103
|
+
};
|
|
104
|
+
filterBarProps: {
|
|
105
|
+
defaultValue<T = unknown>(arg: T): {
|
|
106
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
107
|
+
};
|
|
108
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
109
|
+
};
|
|
110
|
+
onFiltersChange: {
|
|
111
|
+
defaultValue<T = unknown>(arg: T): {
|
|
112
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
113
|
+
};
|
|
114
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
115
|
+
};
|
|
116
|
+
pagination: {
|
|
117
|
+
defaultValue<T = unknown>(arg: T): {
|
|
118
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
119
|
+
};
|
|
120
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
121
|
+
};
|
|
122
|
+
colsLayoutStyle: {
|
|
123
|
+
defaultValue<T = unknown>(arg: T): {
|
|
124
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
125
|
+
};
|
|
126
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
127
|
+
};
|
|
128
|
+
hiddenColumns: {
|
|
129
|
+
defaultValue<T = unknown>(arg: T): {
|
|
130
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
131
|
+
};
|
|
132
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
133
|
+
};
|
|
134
|
+
dragAndDropRows: {
|
|
135
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
136
|
+
};
|
|
137
|
+
onRowsReorder: {
|
|
138
|
+
defaultValue<T = unknown>(arg: T): {
|
|
139
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
140
|
+
};
|
|
141
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
142
|
+
};
|
|
143
|
+
maxDragAndDropLevel: {
|
|
144
|
+
defaultValue<T = unknown>(arg: T): {
|
|
145
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
146
|
+
};
|
|
147
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
148
|
+
};
|
|
149
|
+
dragAndDropColumns: {
|
|
150
|
+
defaultValue<T = unknown>(arg: T): {
|
|
151
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
152
|
+
};
|
|
153
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
154
|
+
};
|
|
155
|
+
onColumnsReorder: {
|
|
156
|
+
defaultValue<T = unknown>(arg: T): {
|
|
157
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
158
|
+
};
|
|
159
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
160
|
+
};
|
|
161
|
+
textWrap: {
|
|
162
|
+
defaultValue<T = unknown>(arg: T): {
|
|
163
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
164
|
+
};
|
|
165
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
166
|
+
};
|
|
167
|
+
noResultsMessage: {
|
|
168
|
+
defaultValue<T = unknown>(arg: T): {
|
|
169
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
170
|
+
};
|
|
171
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
172
|
+
};
|
|
173
|
+
noResultsSecondaryMessage: {
|
|
174
|
+
defaultValue<T = unknown>(arg: T): {
|
|
175
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
176
|
+
};
|
|
177
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
178
|
+
};
|
|
179
|
+
noResultsButtonLabel: {
|
|
180
|
+
defaultValue<T = unknown>(arg: T): {
|
|
181
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
182
|
+
};
|
|
183
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
184
|
+
};
|
|
185
|
+
noResultsPlaceholder: {
|
|
186
|
+
defaultValue<T = unknown>(arg: T): {
|
|
187
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
188
|
+
};
|
|
189
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
190
|
+
};
|
|
191
|
+
isLoading: {
|
|
192
|
+
defaultValue<T = unknown>(arg: T): {
|
|
193
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
194
|
+
};
|
|
195
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
196
|
+
};
|
|
197
|
+
isLoadingAppended: {
|
|
198
|
+
defaultValue<T = unknown>(arg: T): {
|
|
199
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
200
|
+
};
|
|
201
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
202
|
+
};
|
|
203
|
+
onColumnResize: {
|
|
204
|
+
defaultValue<T = unknown>(arg: T): {
|
|
205
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
206
|
+
};
|
|
207
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
208
|
+
};
|
|
209
|
+
isNoMoreDataAppended: {
|
|
210
|
+
defaultValue<T = unknown>(arg: T): {
|
|
211
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
212
|
+
};
|
|
213
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
214
|
+
};
|
|
215
|
+
noMoreDataMessage: {
|
|
216
|
+
defaultValue<T = unknown>(arg: T): {
|
|
217
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
218
|
+
};
|
|
219
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
220
|
+
};
|
|
221
|
+
onRowClick: {
|
|
222
|
+
defaultValue<T = unknown>(arg: T): {
|
|
223
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
224
|
+
};
|
|
225
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
226
|
+
};
|
|
227
|
+
onRowFocus: {
|
|
228
|
+
defaultValue<T = unknown>(arg: T): {
|
|
229
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
230
|
+
};
|
|
231
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
232
|
+
};
|
|
233
|
+
onCellValueChange: {
|
|
234
|
+
defaultValue<T = unknown>(arg: T): {
|
|
235
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
236
|
+
};
|
|
237
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
238
|
+
};
|
|
239
|
+
onColumnSortChange: {
|
|
240
|
+
defaultValue<T = unknown>(arg: T): {
|
|
241
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
242
|
+
};
|
|
243
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
244
|
+
};
|
|
245
|
+
actionRef: {
|
|
246
|
+
defaultValue<T = unknown>(arg: T): {
|
|
247
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
248
|
+
};
|
|
249
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
250
|
+
};
|
|
49
251
|
};
|
|
50
252
|
defaultProps: {
|
|
51
253
|
columns?: import("./types/props").TypescriptColumn[] | undefined;
|
|
@@ -1,45 +1,247 @@
|
|
|
1
|
+
/// <reference path="../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
export declare const DataTableSchema: {
|
|
2
|
-
columns:
|
|
3
|
-
data:
|
|
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
|
-
|
|
3
|
+
columns: import("react-desc").PropTypesDescValidator;
|
|
4
|
+
data: {
|
|
5
|
+
defaultValue<T = unknown>(arg: T): {
|
|
6
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
7
|
+
};
|
|
8
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
9
|
+
};
|
|
10
|
+
height: {
|
|
11
|
+
defaultValue<T = unknown>(arg: T): {
|
|
12
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
13
|
+
};
|
|
14
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
15
|
+
};
|
|
16
|
+
width: {
|
|
17
|
+
defaultValue<T = unknown>(arg: T): {
|
|
18
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
19
|
+
};
|
|
20
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
22
|
+
renderRowActions: {
|
|
23
|
+
defaultValue<T = unknown>(arg: T): {
|
|
24
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
26
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
27
|
+
};
|
|
28
|
+
isExpandable: {
|
|
29
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
|
+
};
|
|
31
|
+
uniqueRowAccessor: {
|
|
32
|
+
defaultValue<T = unknown>(arg: T): {
|
|
33
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
34
|
+
};
|
|
35
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
36
|
+
};
|
|
37
|
+
disabledRows: {
|
|
38
|
+
defaultValue<T = unknown>(arg: T): {
|
|
39
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
40
|
+
};
|
|
41
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
42
|
+
};
|
|
43
|
+
expandedRows: {
|
|
44
|
+
defaultValue<T = unknown>(arg: T): {
|
|
45
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
46
|
+
};
|
|
47
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
48
|
+
};
|
|
49
|
+
onRowExpand: {
|
|
50
|
+
defaultValue<T = unknown>(arg: T): {
|
|
51
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
52
|
+
};
|
|
53
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
54
|
+
};
|
|
55
|
+
cellRendererProps: {
|
|
56
|
+
defaultValue<T = unknown>(arg: T): {
|
|
57
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
58
|
+
};
|
|
59
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
60
|
+
};
|
|
61
|
+
selectSingle: {
|
|
62
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
63
|
+
};
|
|
64
|
+
selection: {
|
|
65
|
+
defaultValue<T = unknown>(arg: T): {
|
|
66
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
67
|
+
};
|
|
68
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
69
|
+
};
|
|
70
|
+
onSelectionChange: {
|
|
71
|
+
defaultValue<T = unknown>(arg: T): {
|
|
72
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
73
|
+
};
|
|
74
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
75
|
+
};
|
|
76
|
+
groupedRowsRenderHeader: {
|
|
77
|
+
defaultValue<T = unknown>(arg: T): {
|
|
78
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
79
|
+
};
|
|
80
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
81
|
+
};
|
|
82
|
+
isResizeable: {
|
|
83
|
+
defaultValue<T = unknown>(arg: T): {
|
|
84
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
85
|
+
};
|
|
86
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
87
|
+
};
|
|
88
|
+
filters: {
|
|
89
|
+
defaultValue<T = unknown>(arg: T): {
|
|
90
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
91
|
+
};
|
|
92
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
93
|
+
};
|
|
94
|
+
withFilterBar: {
|
|
95
|
+
defaultValue<T = unknown>(arg: T): {
|
|
96
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
97
|
+
};
|
|
98
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
99
|
+
};
|
|
100
|
+
filterBarProps: {
|
|
101
|
+
defaultValue<T = unknown>(arg: T): {
|
|
102
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
103
|
+
};
|
|
104
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
105
|
+
};
|
|
106
|
+
onFiltersChange: {
|
|
107
|
+
defaultValue<T = unknown>(arg: T): {
|
|
108
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
109
|
+
};
|
|
110
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
111
|
+
};
|
|
112
|
+
pagination: {
|
|
113
|
+
defaultValue<T = unknown>(arg: T): {
|
|
114
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
115
|
+
};
|
|
116
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
117
|
+
};
|
|
118
|
+
colsLayoutStyle: {
|
|
119
|
+
defaultValue<T = unknown>(arg: T): {
|
|
120
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
121
|
+
};
|
|
122
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
123
|
+
};
|
|
124
|
+
hiddenColumns: {
|
|
125
|
+
defaultValue<T = unknown>(arg: T): {
|
|
126
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
127
|
+
};
|
|
128
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
129
|
+
};
|
|
130
|
+
dragAndDropRows: {
|
|
131
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
132
|
+
};
|
|
133
|
+
onRowsReorder: {
|
|
134
|
+
defaultValue<T = unknown>(arg: T): {
|
|
135
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
136
|
+
};
|
|
137
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
138
|
+
};
|
|
139
|
+
maxDragAndDropLevel: {
|
|
140
|
+
defaultValue<T = unknown>(arg: T): {
|
|
141
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
142
|
+
};
|
|
143
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
144
|
+
};
|
|
145
|
+
dragAndDropColumns: {
|
|
146
|
+
defaultValue<T = unknown>(arg: T): {
|
|
147
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
148
|
+
};
|
|
149
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
150
|
+
};
|
|
151
|
+
onColumnsReorder: {
|
|
152
|
+
defaultValue<T = unknown>(arg: T): {
|
|
153
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
154
|
+
};
|
|
155
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
156
|
+
};
|
|
157
|
+
textWrap: {
|
|
158
|
+
defaultValue<T = unknown>(arg: T): {
|
|
159
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
160
|
+
};
|
|
161
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
162
|
+
};
|
|
163
|
+
noResultsMessage: {
|
|
164
|
+
defaultValue<T = unknown>(arg: T): {
|
|
165
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
166
|
+
};
|
|
167
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
168
|
+
};
|
|
169
|
+
noResultsSecondaryMessage: {
|
|
170
|
+
defaultValue<T = unknown>(arg: T): {
|
|
171
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
172
|
+
};
|
|
173
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
174
|
+
};
|
|
175
|
+
noResultsButtonLabel: {
|
|
176
|
+
defaultValue<T = unknown>(arg: T): {
|
|
177
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
178
|
+
};
|
|
179
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
180
|
+
};
|
|
181
|
+
noResultsPlaceholder: {
|
|
182
|
+
defaultValue<T = unknown>(arg: T): {
|
|
183
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
184
|
+
};
|
|
185
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
186
|
+
};
|
|
187
|
+
isLoading: {
|
|
188
|
+
defaultValue<T = unknown>(arg: T): {
|
|
189
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
190
|
+
};
|
|
191
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
192
|
+
};
|
|
193
|
+
isLoadingAppended: {
|
|
194
|
+
defaultValue<T = unknown>(arg: T): {
|
|
195
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
196
|
+
};
|
|
197
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
198
|
+
};
|
|
199
|
+
onColumnResize: {
|
|
200
|
+
defaultValue<T = unknown>(arg: T): {
|
|
201
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
202
|
+
};
|
|
203
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
204
|
+
};
|
|
205
|
+
isNoMoreDataAppended: {
|
|
206
|
+
defaultValue<T = unknown>(arg: T): {
|
|
207
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
208
|
+
};
|
|
209
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
210
|
+
};
|
|
211
|
+
noMoreDataMessage: {
|
|
212
|
+
defaultValue<T = unknown>(arg: T): {
|
|
213
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
214
|
+
};
|
|
215
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
216
|
+
};
|
|
217
|
+
onRowClick: {
|
|
218
|
+
defaultValue<T = unknown>(arg: T): {
|
|
219
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
220
|
+
};
|
|
221
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
222
|
+
};
|
|
223
|
+
onRowFocus: {
|
|
224
|
+
defaultValue<T = unknown>(arg: T): {
|
|
225
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
226
|
+
};
|
|
227
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
228
|
+
};
|
|
229
|
+
onCellValueChange: {
|
|
230
|
+
defaultValue<T = unknown>(arg: T): {
|
|
231
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
232
|
+
};
|
|
233
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
234
|
+
};
|
|
235
|
+
onColumnSortChange: {
|
|
236
|
+
defaultValue<T = unknown>(arg: T): {
|
|
237
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
238
|
+
};
|
|
239
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
240
|
+
};
|
|
241
|
+
actionRef: {
|
|
242
|
+
defaultValue<T = unknown>(arg: T): {
|
|
243
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
244
|
+
};
|
|
245
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
246
|
+
};
|
|
45
247
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
export declare const StyledWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
3
4
|
export declare const StyledDropdownMenu: import("styled-components").StyledComponent<{
|
|
@@ -32,33 +33,167 @@ export declare const StyledDropdownMenu: import("styled-components").StyledCompo
|
|
|
32
33
|
hideIfNotVisible: any;
|
|
33
34
|
}): JSX.Element;
|
|
34
35
|
propTypes: {
|
|
35
|
-
hideIfNotVisible:
|
|
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
|
-
|
|
36
|
+
hideIfNotVisible: {
|
|
37
|
+
defaultValue<T = unknown>(arg: T): {
|
|
38
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
39
|
+
};
|
|
40
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
41
|
+
};
|
|
42
|
+
containerProps: {
|
|
43
|
+
defaultValue<T_1 = unknown>(arg: T_1): {
|
|
44
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
45
|
+
};
|
|
46
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
47
|
+
};
|
|
48
|
+
contentStyle: {
|
|
49
|
+
defaultValue<T_2 = unknown>(arg: T_2): {
|
|
50
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
51
|
+
};
|
|
52
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
53
|
+
};
|
|
54
|
+
options: {
|
|
55
|
+
defaultValue<T_3 = unknown>(arg: T_3): {
|
|
56
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
57
|
+
};
|
|
58
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
59
|
+
};
|
|
60
|
+
onSelectMenuItem: {
|
|
61
|
+
defaultValue<T_4 = unknown>(arg: T_4): {
|
|
62
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
63
|
+
};
|
|
64
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
65
|
+
};
|
|
66
|
+
onOpenMenu: {
|
|
67
|
+
defaultValue<T_5 = unknown>(arg: T_5): {
|
|
68
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
69
|
+
};
|
|
70
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
71
|
+
};
|
|
72
|
+
onClickOutsideMenu: {
|
|
73
|
+
defaultValue<T_6 = unknown>(arg: T_6): {
|
|
74
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
75
|
+
};
|
|
76
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
77
|
+
};
|
|
78
|
+
preventOverflow: {
|
|
79
|
+
defaultValue<T_7 = unknown>(arg: T_7): {
|
|
80
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
81
|
+
};
|
|
82
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
83
|
+
};
|
|
84
|
+
placement: {
|
|
85
|
+
defaultValue<T_8 = unknown>(arg: T_8): {
|
|
86
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
87
|
+
};
|
|
88
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
89
|
+
};
|
|
90
|
+
interactionType: {
|
|
91
|
+
defaultValue<T_9 = unknown>(arg: T_9): {
|
|
92
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
93
|
+
};
|
|
94
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
95
|
+
};
|
|
96
|
+
triggerComponent: {
|
|
97
|
+
defaultValue<T_10 = unknown>(arg: T_10): {
|
|
98
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
99
|
+
};
|
|
100
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
101
|
+
};
|
|
102
|
+
customMenu: {
|
|
103
|
+
defaultValue<T_11 = unknown>(arg: T_11): {
|
|
104
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
105
|
+
};
|
|
106
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
107
|
+
};
|
|
108
|
+
isOpen: {
|
|
109
|
+
defaultValue<T_12 = unknown>(arg: T_12): {
|
|
110
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
111
|
+
};
|
|
112
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
113
|
+
};
|
|
114
|
+
selection: {
|
|
115
|
+
defaultValue<T_13 = unknown>(arg: T_13): {
|
|
116
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
117
|
+
};
|
|
118
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
119
|
+
};
|
|
120
|
+
menuProps: {
|
|
121
|
+
defaultValue<T_14 = unknown>(arg: T_14): {
|
|
122
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
123
|
+
};
|
|
124
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
125
|
+
};
|
|
126
|
+
itemsRenderer: {
|
|
127
|
+
defaultValue<T_15 = unknown>(arg: T_15): {
|
|
128
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
129
|
+
};
|
|
130
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
131
|
+
};
|
|
132
|
+
type: {
|
|
133
|
+
defaultValue<T_16 = unknown>(arg: T_16): {
|
|
134
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
135
|
+
};
|
|
136
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
137
|
+
};
|
|
138
|
+
minWidth: {
|
|
139
|
+
defaultValue<T_17 = unknown>(arg: T_17): {
|
|
140
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
141
|
+
};
|
|
142
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
143
|
+
};
|
|
144
|
+
maxWidth: {
|
|
145
|
+
defaultValue<T_18 = unknown>(arg: T_18): {
|
|
146
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
147
|
+
};
|
|
148
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
149
|
+
};
|
|
150
|
+
responsiveHeight: {
|
|
151
|
+
defaultValue<T_19 = unknown>(arg: T_19): {
|
|
152
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
153
|
+
};
|
|
154
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
155
|
+
};
|
|
156
|
+
zIndex: {
|
|
157
|
+
defaultValue<T_20 = unknown>(arg: T_20): {
|
|
158
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
159
|
+
};
|
|
160
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
161
|
+
};
|
|
162
|
+
className: {
|
|
163
|
+
defaultValue<T_21 = unknown>(arg: T_21): {
|
|
164
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
165
|
+
};
|
|
166
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
167
|
+
};
|
|
168
|
+
focusOnOpen: {
|
|
169
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
170
|
+
};
|
|
171
|
+
loading: {
|
|
172
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
173
|
+
};
|
|
174
|
+
referenceNode: {
|
|
175
|
+
defaultValue<T_22 = unknown>(arg: T_22): {
|
|
176
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
177
|
+
};
|
|
178
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
179
|
+
};
|
|
180
|
+
onClose: {
|
|
181
|
+
defaultValue<T_23 = unknown>(arg: T_23): {
|
|
182
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
183
|
+
};
|
|
184
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
185
|
+
};
|
|
186
|
+
onSelectChange: {
|
|
187
|
+
defaultValue<T_24 = unknown>(arg: T_24): {
|
|
188
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
189
|
+
};
|
|
190
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
191
|
+
};
|
|
192
|
+
singleGroupSelection: {
|
|
193
|
+
defaultValue<T_25 = unknown>(arg: T_25): {
|
|
194
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
195
|
+
};
|
|
196
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
197
|
+
};
|
|
63
198
|
};
|
|
64
199
|
}, import("styled-components").DefaultTheme, {}, never>;
|