@elliemae/ds-data-table 2.0.0-rc.5 → 2.0.0-rc.9
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/cjs/exported-related/FilterPopover.js +17 -3
- package/esm/exported-related/FilterPopover.js +17 -3
- package/package.json +23 -21
- package/types/DataTable.d.ts +245 -43
- package/types/DataTableSchema.d.ts +245 -43
- package/types/addons/Filters/Components/SelectFilter/components.d.ts +6 -6
- package/types/parts/FilterBar/styled.d.ts +165 -30
- package/types/styled.d.ts +19 -19
|
@@ -52,6 +52,9 @@ const FilterButton = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
|
52
52
|
const Button = /*#__PURE__*/styled__default["default"](DSButton__default["default"]).withConfig({
|
|
53
53
|
componentId: "sc-16i88ut-1"
|
|
54
54
|
})(["position:relative;justify-self:flex-end;"]);
|
|
55
|
+
const PopperContent = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
56
|
+
componentId: "sc-16i88ut-2"
|
|
57
|
+
})(["background-color:'#fff';"]);
|
|
55
58
|
const FilterPopover = _ref2 => {
|
|
56
59
|
var _column$ref$current$o, _column$ref, _column$ref$current;
|
|
57
60
|
|
|
@@ -152,9 +155,20 @@ const FilterPopover = _ref2 => {
|
|
|
152
155
|
minWidth: (_column$ref$current$o = (_column$ref = column.ref) === null || _column$ref === void 0 ? void 0 : (_column$ref$current = _column$ref.current) === null || _column$ref$current === void 0 ? void 0 : _column$ref$current.offsetWidth) !== null && _column$ref$current$o !== void 0 ? _column$ref$current$o : '0px'
|
|
153
156
|
}),
|
|
154
157
|
placementOrderPreference: ['bottom-end']
|
|
155
|
-
}, void 0, /*#__PURE__*/jsxRuntime.jsx(
|
|
156
|
-
|
|
157
|
-
|
|
158
|
+
}, void 0, /*#__PURE__*/jsxRuntime.jsx(PopperContent, {
|
|
159
|
+
onKeyDown: e => {
|
|
160
|
+
if (e.code === 'Tab') {
|
|
161
|
+
setTimeout(() => {
|
|
162
|
+
var _popperRef$current;
|
|
163
|
+
|
|
164
|
+
if (!(popperRef !== null && popperRef !== void 0 && (_popperRef$current = popperRef.current) !== null && _popperRef$current !== void 0 && _popperRef$current.contains(document.activeElement))) {
|
|
165
|
+
patchHeader(columnId, {
|
|
166
|
+
hideFilterMenu: true,
|
|
167
|
+
hideFilterButton: false
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
});
|
|
171
|
+
}
|
|
158
172
|
},
|
|
159
173
|
ref: popperRef,
|
|
160
174
|
children: menuContent
|
|
@@ -41,6 +41,9 @@ const FilterButton = /*#__PURE__*/styled.span.withConfig({
|
|
|
41
41
|
const Button = /*#__PURE__*/styled(DSButton).withConfig({
|
|
42
42
|
componentId: "sc-16i88ut-1"
|
|
43
43
|
})(["position:relative;justify-self:flex-end;"]);
|
|
44
|
+
const PopperContent = /*#__PURE__*/styled.div.withConfig({
|
|
45
|
+
componentId: "sc-16i88ut-2"
|
|
46
|
+
})(["background-color:'#fff';"]);
|
|
44
47
|
const FilterPopover = _ref2 => {
|
|
45
48
|
var _column$ref$current$o, _column$ref, _column$ref$current;
|
|
46
49
|
|
|
@@ -141,9 +144,20 @@ const FilterPopover = _ref2 => {
|
|
|
141
144
|
minWidth: (_column$ref$current$o = (_column$ref = column.ref) === null || _column$ref === void 0 ? void 0 : (_column$ref$current = _column$ref.current) === null || _column$ref$current === void 0 ? void 0 : _column$ref$current.offsetWidth) !== null && _column$ref$current$o !== void 0 ? _column$ref$current$o : '0px'
|
|
142
145
|
}),
|
|
143
146
|
placementOrderPreference: ['bottom-end']
|
|
144
|
-
}, void 0, /*#__PURE__*/jsx(
|
|
145
|
-
|
|
146
|
-
|
|
147
|
+
}, void 0, /*#__PURE__*/jsx(PopperContent, {
|
|
148
|
+
onKeyDown: e => {
|
|
149
|
+
if (e.code === 'Tab') {
|
|
150
|
+
setTimeout(() => {
|
|
151
|
+
var _popperRef$current;
|
|
152
|
+
|
|
153
|
+
if (!(popperRef !== null && popperRef !== void 0 && (_popperRef$current = popperRef.current) !== null && _popperRef$current !== void 0 && _popperRef$current.contains(document.activeElement))) {
|
|
154
|
+
patchHeader(columnId, {
|
|
155
|
+
hideFilterMenu: true,
|
|
156
|
+
hideFilterButton: false
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
});
|
|
160
|
+
}
|
|
147
161
|
},
|
|
148
162
|
ref: popperRef,
|
|
149
163
|
children: menuContent
|
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.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Data Table",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -634,43 +634,45 @@
|
|
|
634
634
|
"dependencies": {
|
|
635
635
|
"@dnd-kit/core": "~4.0.1",
|
|
636
636
|
"@dnd-kit/sortable": "~5.0.0",
|
|
637
|
-
"@elliemae/ds-
|
|
638
|
-
"@elliemae/ds-
|
|
639
|
-
"@elliemae/ds-
|
|
640
|
-
"@elliemae/ds-
|
|
641
|
-
"@elliemae/ds-
|
|
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-
|
|
649
|
-
"@elliemae/ds-
|
|
650
|
-
"@elliemae/ds-
|
|
651
|
-
"@
|
|
637
|
+
"@elliemae/ds-button": "2.0.0-rc.9",
|
|
638
|
+
"@elliemae/ds-circular-progress-indicator": "2.0.0-rc.9",
|
|
639
|
+
"@elliemae/ds-controlled-form": "2.0.0-rc.9",
|
|
640
|
+
"@elliemae/ds-dropdownmenu": "2.0.0-rc.9",
|
|
641
|
+
"@elliemae/ds-form": "2.0.0-rc.9",
|
|
642
|
+
"@elliemae/ds-form-layout-blocks": "2.0.0-rc.9",
|
|
643
|
+
"@elliemae/ds-grid": "2.0.0-rc.9",
|
|
644
|
+
"@elliemae/ds-icons": "2.0.0-rc.9",
|
|
645
|
+
"@elliemae/ds-indeterminate-progress-indicator": "2.0.0-rc.9",
|
|
646
|
+
"@elliemae/ds-pagination": "2.0.0-rc.9",
|
|
647
|
+
"@elliemae/ds-pills": "2.0.0-rc.9",
|
|
648
|
+
"@elliemae/ds-popperjs": "2.0.0-rc.9",
|
|
649
|
+
"@elliemae/ds-system": "2.0.0-rc.9",
|
|
650
|
+
"@elliemae/ds-toolbar": "2.0.0-rc.9",
|
|
651
|
+
"@elliemae/ds-truncated-tooltip-text": "2.0.0-rc.9",
|
|
652
|
+
"@elliemae/ds-utilities": "2.0.0-rc.9",
|
|
652
653
|
"@reduxjs/toolkit": "~1.6.2",
|
|
653
|
-
"array-move": "~3.0.1",
|
|
654
654
|
"csstype": "~3.0.9",
|
|
655
|
-
"memoize-one": "~5.1.1",
|
|
656
655
|
"moment": "~2.29.1",
|
|
657
656
|
"prop-types": "~15.7.2",
|
|
658
657
|
"react-desc": "~4.1.3",
|
|
659
|
-
"react-popper": "~2.2.5",
|
|
660
658
|
"react-redux": "~7.2.6",
|
|
661
659
|
"react-virtual": "~2.8.2",
|
|
662
660
|
"redux": "~4.1.2",
|
|
663
661
|
"uid": "~2.0.0"
|
|
664
662
|
},
|
|
665
663
|
"devDependencies": {
|
|
664
|
+
"@testing-library/react": "~12.1.2",
|
|
665
|
+
"@testing-library/user-event": "~13.5.0",
|
|
666
666
|
"@types/styled-components": "~5.1.15",
|
|
667
|
-
"styled-components": "~5.3.3"
|
|
667
|
+
"styled-components": "~5.3.3",
|
|
668
|
+
"styled-system": "~5.1.5"
|
|
668
669
|
},
|
|
669
670
|
"peerDependencies": {
|
|
670
671
|
"lodash": "^4.17.21",
|
|
671
672
|
"react": "~17.0.2",
|
|
672
673
|
"react-dom": "^17.0.2",
|
|
673
|
-
"styled-components": "^5.3.3"
|
|
674
|
+
"styled-components": "^5.3.3",
|
|
675
|
+
"styled-system": "^5.1.5"
|
|
674
676
|
},
|
|
675
677
|
"publishConfig": {
|
|
676
678
|
"access": "public",
|
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,6 +1,6 @@
|
|
|
1
|
-
export declare const Wrapper: import("styled-components").StyledComponent<"div",
|
|
2
|
-
export declare const InputWrapper: import("styled-components").StyledComponent<"div",
|
|
3
|
-
export declare const Input: import("styled-components").StyledComponent<"input",
|
|
4
|
-
export declare const MenuList: import("styled-components").StyledComponent<"div",
|
|
5
|
-
export declare const MenuItem: import("styled-components").StyledComponent<"div",
|
|
6
|
-
export declare const VirtualListWrapper: import("styled-components").StyledComponent<"div",
|
|
1
|
+
export declare const Wrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const InputWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const Input: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const MenuList: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const MenuItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const VirtualListWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
/// <reference path="../../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
|
-
export declare const StyledWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
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<{
|
|
4
5
|
({ containerProps, className, contentStyle, options, onSelectMenuItem, onOpenMenu, onClickOutsideMenu, preventOverflow, placement, interactionType, triggerComponent, customMenu, isOpen, selection, menuProps, referenceNode, focusOnOpen, onClose, itemsRenderer, responsiveHeight, singleGroupSelection, onSelectChange, minWidth, maxWidth, zIndex, type, loading, hideIfNotVisible, }: {
|
|
5
6
|
containerProps?: {} | undefined;
|
|
@@ -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>;
|
package/types/styled.d.ts
CHANGED
|
@@ -3,35 +3,35 @@ interface WidthAndHeight {
|
|
|
3
3
|
width?: string | number;
|
|
4
4
|
height?: string | number;
|
|
5
5
|
}
|
|
6
|
-
export declare const StyledFocusWithin: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
7
|
-
export declare const StyledDataTableWrapper: import("styled-components").StyledComponent<"div",
|
|
6
|
+
export declare const StyledFocusWithin: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const StyledDataTableWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, WidthAndHeight & {
|
|
8
8
|
noSelectionAllowed: boolean;
|
|
9
9
|
}, never>;
|
|
10
|
-
export declare const StyledTableWrapper: import("styled-components").StyledComponent<"div",
|
|
11
|
-
export declare const StyledTableContentWrapper: import("styled-components").StyledComponent<"div",
|
|
12
|
-
export declare const StyledVirtualListWrapper: import("styled-components").StyledComponent<"div",
|
|
13
|
-
export declare const StyledHeadWrapper: import("styled-components").StyledComponent<"div",
|
|
10
|
+
export declare const StyledTableWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, WidthAndHeight, never>;
|
|
11
|
+
export declare const StyledTableContentWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, WidthAndHeight, never>;
|
|
12
|
+
export declare const StyledVirtualListWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, WidthAndHeight, never>;
|
|
13
|
+
export declare const StyledHeadWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
14
14
|
colsLayoutStyle: string;
|
|
15
15
|
totalColumnsWidth: number | string;
|
|
16
16
|
}, never>;
|
|
17
|
-
export declare const StyledHeadTr: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
18
|
-
export declare const StyledHeadTh: import("styled-components").StyledComponent<"div",
|
|
19
|
-
export declare const StyledHeaderRightIconsWrapper: import("styled-components").StyledComponent<"div",
|
|
20
|
-
export declare const StyledResizer: import("styled-components").StyledComponent<"div",
|
|
17
|
+
export declare const StyledHeadTr: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
18
|
+
export declare const StyledHeadTh: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, any, never>;
|
|
19
|
+
export declare const StyledHeaderRightIconsWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
20
|
+
export declare const StyledResizer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
21
21
|
isResizing: boolean;
|
|
22
22
|
}, never>;
|
|
23
|
-
export declare const StyledActionCell: import("styled-components").StyledComponent<"div",
|
|
24
|
-
export declare const StyledCell: import("styled-components").StyledComponent<"div",
|
|
23
|
+
export declare const StyledActionCell: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
24
|
+
export declare const StyledCell: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
25
25
|
theme: any;
|
|
26
26
|
column: any;
|
|
27
27
|
}, never>;
|
|
28
|
-
export declare const StyledCellContent: import("styled-components").StyledComponent<"div",
|
|
29
|
-
export declare const StyledPencilIcon: import("styled-components").StyledComponent<(rest: any) => JSX.Element,
|
|
30
|
-
export declare const StyledEditableContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
31
|
-
export declare const StyledFullsizeGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
32
|
-
export declare const GroupHeaderContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
28
|
+
export declare const StyledCellContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
29
|
+
export declare const StyledPencilIcon: import("styled-components").StyledComponent<(rest: any) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
30
|
+
export declare const StyledEditableContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
31
|
+
export declare const StyledFullsizeGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
32
|
+
export declare const GroupHeaderContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {
|
|
33
33
|
padding: string;
|
|
34
34
|
}, never>;
|
|
35
|
-
export declare const GroupHeaderTitle: import("styled-components").StyledComponent<"span",
|
|
36
|
-
export declare const StyledCellContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
35
|
+
export declare const GroupHeaderTitle: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
36
|
+
export declare const StyledCellContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
37
37
|
export {};
|