@elliemae/ds-search-field 2.0.0-rc.6 → 2.0.0
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.
|
@@ -46,7 +46,7 @@ class DSSearchFieldImpl extends react.Component {
|
|
|
46
46
|
constructor(props) {
|
|
47
47
|
super(props);
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
this.onChange = () => {
|
|
50
50
|
const {
|
|
51
51
|
selected: id,
|
|
52
52
|
additionalInfo: [row]
|
|
@@ -55,9 +55,9 @@ class DSSearchFieldImpl extends react.Component {
|
|
|
55
55
|
onChange
|
|
56
56
|
} = this.props;
|
|
57
57
|
onChange(id, row);
|
|
58
|
-
}
|
|
58
|
+
};
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
this.onChangeDropdown = value => {
|
|
61
61
|
const {
|
|
62
62
|
dropdownOptions
|
|
63
63
|
} = this.props;
|
|
@@ -69,9 +69,9 @@ class DSSearchFieldImpl extends react.Component {
|
|
|
69
69
|
if (selected) onChange(value, {
|
|
70
70
|
[displayProperty]: selected.label
|
|
71
71
|
});
|
|
72
|
-
}
|
|
72
|
+
};
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
this.onKeyDown = event => {
|
|
75
75
|
setTimeout(() => {
|
|
76
76
|
const {
|
|
77
77
|
keycode
|
|
@@ -81,9 +81,9 @@ class DSSearchFieldImpl extends react.Component {
|
|
|
81
81
|
} = this.props;
|
|
82
82
|
if (value && keycode === 13) this.handleCloseModal();
|
|
83
83
|
}, 0);
|
|
84
|
-
}
|
|
84
|
+
};
|
|
85
85
|
|
|
86
|
-
|
|
86
|
+
this.handleSelect = (selectedRow, rows) => {
|
|
87
87
|
let selected = selectedRow; // fix new datagrid callback format
|
|
88
88
|
|
|
89
89
|
if (!selected) return;
|
|
@@ -93,36 +93,36 @@ class DSSearchFieldImpl extends react.Component {
|
|
|
93
93
|
selected,
|
|
94
94
|
additionalInfo
|
|
95
95
|
});
|
|
96
|
-
}
|
|
96
|
+
};
|
|
97
97
|
|
|
98
|
-
|
|
98
|
+
this.handleConfirm = () => {
|
|
99
99
|
const {
|
|
100
100
|
onConfirmField
|
|
101
101
|
} = this.props;
|
|
102
102
|
this.onChange();
|
|
103
103
|
this.handleCloseModal();
|
|
104
104
|
onConfirmField();
|
|
105
|
-
}
|
|
105
|
+
};
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
this.handleReject = () => {
|
|
108
108
|
const {
|
|
109
109
|
onRejectField
|
|
110
110
|
} = this.props;
|
|
111
111
|
this.handleCloseModal();
|
|
112
112
|
onRejectField();
|
|
113
|
-
}
|
|
113
|
+
};
|
|
114
114
|
|
|
115
|
-
|
|
115
|
+
this.handleOpenModal = () => {
|
|
116
116
|
this.setState({
|
|
117
117
|
openModal: true
|
|
118
118
|
});
|
|
119
|
-
}
|
|
119
|
+
};
|
|
120
120
|
|
|
121
|
-
|
|
121
|
+
this.handleCloseModal = () => this.setState({
|
|
122
122
|
openModal: false,
|
|
123
123
|
selected: [],
|
|
124
124
|
additionalInfo: []
|
|
125
|
-
})
|
|
125
|
+
});
|
|
126
126
|
|
|
127
127
|
advanceOption.label = props.searchOptionLabel;
|
|
128
128
|
this.state = {
|
|
@@ -38,7 +38,7 @@ class DSSearchFieldImpl extends Component {
|
|
|
38
38
|
constructor(props) {
|
|
39
39
|
super(props);
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
this.onChange = () => {
|
|
42
42
|
const {
|
|
43
43
|
selected: id,
|
|
44
44
|
additionalInfo: [row]
|
|
@@ -47,9 +47,9 @@ class DSSearchFieldImpl extends Component {
|
|
|
47
47
|
onChange
|
|
48
48
|
} = this.props;
|
|
49
49
|
onChange(id, row);
|
|
50
|
-
}
|
|
50
|
+
};
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
this.onChangeDropdown = value => {
|
|
53
53
|
const {
|
|
54
54
|
dropdownOptions
|
|
55
55
|
} = this.props;
|
|
@@ -61,9 +61,9 @@ class DSSearchFieldImpl extends Component {
|
|
|
61
61
|
if (selected) onChange(value, {
|
|
62
62
|
[displayProperty]: selected.label
|
|
63
63
|
});
|
|
64
|
-
}
|
|
64
|
+
};
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
this.onKeyDown = event => {
|
|
67
67
|
setTimeout(() => {
|
|
68
68
|
const {
|
|
69
69
|
keycode
|
|
@@ -73,9 +73,9 @@ class DSSearchFieldImpl extends Component {
|
|
|
73
73
|
} = this.props;
|
|
74
74
|
if (value && keycode === 13) this.handleCloseModal();
|
|
75
75
|
}, 0);
|
|
76
|
-
}
|
|
76
|
+
};
|
|
77
77
|
|
|
78
|
-
|
|
78
|
+
this.handleSelect = (selectedRow, rows) => {
|
|
79
79
|
let selected = selectedRow; // fix new datagrid callback format
|
|
80
80
|
|
|
81
81
|
if (!selected) return;
|
|
@@ -85,36 +85,36 @@ class DSSearchFieldImpl extends Component {
|
|
|
85
85
|
selected,
|
|
86
86
|
additionalInfo
|
|
87
87
|
});
|
|
88
|
-
}
|
|
88
|
+
};
|
|
89
89
|
|
|
90
|
-
|
|
90
|
+
this.handleConfirm = () => {
|
|
91
91
|
const {
|
|
92
92
|
onConfirmField
|
|
93
93
|
} = this.props;
|
|
94
94
|
this.onChange();
|
|
95
95
|
this.handleCloseModal();
|
|
96
96
|
onConfirmField();
|
|
97
|
-
}
|
|
97
|
+
};
|
|
98
98
|
|
|
99
|
-
|
|
99
|
+
this.handleReject = () => {
|
|
100
100
|
const {
|
|
101
101
|
onRejectField
|
|
102
102
|
} = this.props;
|
|
103
103
|
this.handleCloseModal();
|
|
104
104
|
onRejectField();
|
|
105
|
-
}
|
|
105
|
+
};
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
this.handleOpenModal = () => {
|
|
108
108
|
this.setState({
|
|
109
109
|
openModal: true
|
|
110
110
|
});
|
|
111
|
-
}
|
|
111
|
+
};
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
this.handleCloseModal = () => this.setState({
|
|
114
114
|
openModal: false,
|
|
115
115
|
selected: [],
|
|
116
116
|
additionalInfo: []
|
|
117
|
-
})
|
|
117
|
+
});
|
|
118
118
|
|
|
119
119
|
advanceOption.label = props.searchOptionLabel;
|
|
120
120
|
this.state = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-search-field",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Search Field",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -56,12 +56,14 @@
|
|
|
56
56
|
"build": "node ../../scripts/build/build.js"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-classnames": "2.0.0
|
|
61
|
-
"@elliemae/ds-datagrids": "2.0.0
|
|
62
|
-
"@elliemae/ds-
|
|
63
|
-
"@elliemae/ds-
|
|
64
|
-
"@elliemae/ds-
|
|
59
|
+
"@elliemae/ds-button": "2.0.0",
|
|
60
|
+
"@elliemae/ds-classnames": "2.0.0",
|
|
61
|
+
"@elliemae/ds-datagrids": "2.0.0",
|
|
62
|
+
"@elliemae/ds-form": "2.0.0",
|
|
63
|
+
"@elliemae/ds-icons": "2.0.0",
|
|
64
|
+
"@elliemae/ds-modal": "2.0.0",
|
|
65
|
+
"@elliemae/ds-tabs": "2.0.0",
|
|
66
|
+
"@elliemae/ds-toolbar": "2.0.0",
|
|
65
67
|
"react-desc": "~4.1.3",
|
|
66
68
|
"react-select": "~4.3.0",
|
|
67
69
|
"uid": "~2.0.0"
|
package/types/DSSearchField.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
import { DSModalSearchField } from './impl/DSSeachFieldImpl';
|
|
3
4
|
declare const DSSearchField: {
|
|
@@ -10,7 +11,7 @@ declare const DSSearchField: {
|
|
|
10
11
|
modalTitle?: string | undefined;
|
|
11
12
|
tabsAnimated?: boolean | undefined;
|
|
12
13
|
tabsEnableMouseEvents?: boolean | undefined;
|
|
13
|
-
tabType?:
|
|
14
|
+
tabType?: "normal" | undefined;
|
|
14
15
|
tabData?: never[] | undefined;
|
|
15
16
|
searchGrid?: boolean | undefined;
|
|
16
17
|
searchFilters?: boolean | undefined;
|
|
@@ -31,61 +32,228 @@ declare const DSSearchField: {
|
|
|
31
32
|
searchable?: boolean | undefined;
|
|
32
33
|
}): JSX.Element;
|
|
33
34
|
propTypes: {
|
|
34
|
-
searchable:
|
|
35
|
+
searchable: {
|
|
36
|
+
defaultValue<T = unknown>(arg: T): {
|
|
37
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
38
|
+
};
|
|
39
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
40
|
+
};
|
|
35
41
|
/** inject props to wrapper */
|
|
36
|
-
containerProps:
|
|
42
|
+
containerProps: {
|
|
43
|
+
defaultValue<T = unknown>(arg: T): {
|
|
44
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
45
|
+
};
|
|
46
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
47
|
+
};
|
|
37
48
|
/** change handler */
|
|
38
|
-
onChange:
|
|
49
|
+
onChange: {
|
|
50
|
+
defaultValue<T = unknown>(arg: T): {
|
|
51
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
52
|
+
};
|
|
53
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
54
|
+
};
|
|
39
55
|
/** search option label */
|
|
40
|
-
searchOptionLabel:
|
|
56
|
+
searchOptionLabel: {
|
|
57
|
+
defaultValue<T = unknown>(arg: T): {
|
|
58
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
59
|
+
};
|
|
60
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
61
|
+
};
|
|
41
62
|
/** placeholder for search input */
|
|
42
|
-
placeholder:
|
|
63
|
+
placeholder: {
|
|
64
|
+
defaultValue<T = unknown>(arg: T): {
|
|
65
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
66
|
+
};
|
|
67
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
68
|
+
};
|
|
43
69
|
/** search modal size */
|
|
44
|
-
modalSize:
|
|
70
|
+
modalSize: {
|
|
71
|
+
defaultValue<T = unknown>(arg: T): {
|
|
72
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
73
|
+
};
|
|
74
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
75
|
+
};
|
|
45
76
|
/** search modal title */
|
|
46
|
-
modalTitle:
|
|
77
|
+
modalTitle: {
|
|
78
|
+
defaultValue<T = unknown>(arg: T): {
|
|
79
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
80
|
+
};
|
|
81
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
82
|
+
};
|
|
47
83
|
/** animate modal tabs */
|
|
48
|
-
tabsAnimated:
|
|
84
|
+
tabsAnimated: {
|
|
85
|
+
defaultValue<T = unknown>(arg: T): {
|
|
86
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
87
|
+
};
|
|
88
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
89
|
+
};
|
|
49
90
|
/** enable mouse event on tabs */
|
|
50
|
-
tabsEnableMouseEvents:
|
|
91
|
+
tabsEnableMouseEvents: {
|
|
92
|
+
defaultValue<T = unknown>(arg: T): {
|
|
93
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
94
|
+
};
|
|
95
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
96
|
+
};
|
|
51
97
|
/** tab types on modal */
|
|
52
|
-
tabType:
|
|
98
|
+
tabType: {
|
|
99
|
+
defaultValue<T = unknown>(arg: T): {
|
|
100
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
101
|
+
};
|
|
102
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
103
|
+
};
|
|
53
104
|
/** data for modal tabs */
|
|
54
|
-
tabData:
|
|
105
|
+
tabData: {
|
|
106
|
+
defaultValue<T = unknown>(arg: T): {
|
|
107
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
108
|
+
};
|
|
109
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
110
|
+
};
|
|
55
111
|
/** use search grid */
|
|
56
|
-
searchGrid:
|
|
112
|
+
searchGrid: {
|
|
113
|
+
defaultValue<T = unknown>(arg: T): {
|
|
114
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
115
|
+
};
|
|
116
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
117
|
+
};
|
|
57
118
|
/** add search filters */
|
|
58
|
-
searchFilters:
|
|
119
|
+
searchFilters: {
|
|
120
|
+
defaultValue<T = unknown>(arg: T): {
|
|
121
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
122
|
+
};
|
|
123
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
124
|
+
};
|
|
59
125
|
/** confirm modal label */
|
|
60
|
-
confirmLabel:
|
|
126
|
+
confirmLabel: {
|
|
127
|
+
defaultValue<T = unknown>(arg: T): {
|
|
128
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
129
|
+
};
|
|
130
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
131
|
+
};
|
|
61
132
|
/** reject modal label */
|
|
62
|
-
rejectLabel:
|
|
133
|
+
rejectLabel: {
|
|
134
|
+
defaultValue<T = unknown>(arg: T): {
|
|
135
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
136
|
+
};
|
|
137
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
138
|
+
};
|
|
63
139
|
/** modal type */
|
|
64
|
-
modalType:
|
|
140
|
+
modalType: {
|
|
141
|
+
defaultValue<T = unknown>(arg: T): {
|
|
142
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
143
|
+
};
|
|
144
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
145
|
+
};
|
|
65
146
|
/** on confirm handler */
|
|
66
|
-
onConfirmField:
|
|
147
|
+
onConfirmField: {
|
|
148
|
+
defaultValue<T = unknown>(arg: T): {
|
|
149
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
150
|
+
};
|
|
151
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
152
|
+
};
|
|
67
153
|
/** on cancel handler */
|
|
68
|
-
onRejectField:
|
|
154
|
+
onRejectField: {
|
|
155
|
+
defaultValue<T = unknown>(arg: T): {
|
|
156
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
157
|
+
};
|
|
158
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
159
|
+
};
|
|
69
160
|
/** tab change handler */
|
|
70
|
-
onTabChange:
|
|
161
|
+
onTabChange: {
|
|
162
|
+
defaultValue<T = unknown>(arg: T): {
|
|
163
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
164
|
+
};
|
|
165
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
166
|
+
};
|
|
71
167
|
/** app element */
|
|
72
|
-
appElement:
|
|
168
|
+
appElement: {
|
|
169
|
+
defaultValue<T = unknown>(arg: T): {
|
|
170
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
171
|
+
};
|
|
172
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
173
|
+
};
|
|
73
174
|
/** value for search */
|
|
74
|
-
value:
|
|
175
|
+
value: {
|
|
176
|
+
defaultValue<T = unknown>(arg: T): {
|
|
177
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
178
|
+
};
|
|
179
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
180
|
+
};
|
|
75
181
|
/** additional info */
|
|
76
|
-
additionalInfo:
|
|
182
|
+
additionalInfo: {
|
|
183
|
+
defaultValue<T = unknown>(arg: T): {
|
|
184
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
185
|
+
};
|
|
186
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
187
|
+
};
|
|
77
188
|
/** display property */
|
|
78
|
-
displayProperty:
|
|
189
|
+
displayProperty: {
|
|
190
|
+
defaultValue<T = unknown>(arg: T): {
|
|
191
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
192
|
+
};
|
|
193
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
194
|
+
};
|
|
79
195
|
/** options for dropdown */
|
|
80
|
-
dropdownOptions:
|
|
196
|
+
dropdownOptions: {
|
|
197
|
+
defaultValue<T = unknown>(arg: T): {
|
|
198
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
199
|
+
};
|
|
200
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
201
|
+
};
|
|
81
202
|
/** pass down props for datagrid in modal */
|
|
82
|
-
customDataGridOptions:
|
|
203
|
+
customDataGridOptions: {
|
|
204
|
+
defaultValue<T = unknown>(arg: T): {
|
|
205
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
206
|
+
};
|
|
207
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
208
|
+
};
|
|
83
209
|
/** custom props for dropdown */
|
|
84
|
-
customDropdownOptions:
|
|
210
|
+
customDropdownOptions: {
|
|
211
|
+
defaultValue<T = unknown>(arg: T): {
|
|
212
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
213
|
+
};
|
|
214
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
215
|
+
};
|
|
85
216
|
/** enable lookup */
|
|
86
|
-
useLookupIndicator:
|
|
217
|
+
useLookupIndicator: {
|
|
218
|
+
defaultValue<T = unknown>(arg: T): {
|
|
219
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
220
|
+
};
|
|
221
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
222
|
+
};
|
|
87
223
|
};
|
|
88
224
|
};
|
|
89
|
-
declare const DSSearchFieldWithSchema:
|
|
225
|
+
declare const DSSearchFieldWithSchema: {
|
|
226
|
+
(props?: {
|
|
227
|
+
containerProps?: {} | undefined;
|
|
228
|
+
onChange?: (() => null) | undefined;
|
|
229
|
+
searchOptionLabel?: string | undefined;
|
|
230
|
+
placeholder?: string | undefined;
|
|
231
|
+
modalSize?: string | undefined;
|
|
232
|
+
modalTitle?: string | undefined;
|
|
233
|
+
tabsAnimated?: boolean | undefined;
|
|
234
|
+
tabsEnableMouseEvents?: boolean | undefined;
|
|
235
|
+
tabType?: "normal" | undefined;
|
|
236
|
+
tabData?: never[] | undefined;
|
|
237
|
+
searchGrid?: boolean | undefined;
|
|
238
|
+
searchFilters?: boolean | undefined;
|
|
239
|
+
confirmLabel?: string | undefined;
|
|
240
|
+
rejectLabel?: string | undefined;
|
|
241
|
+
modalType?: string | undefined;
|
|
242
|
+
onConfirmField?: (() => null) | undefined;
|
|
243
|
+
onRejectField?: (() => null) | undefined;
|
|
244
|
+
onTabChange?: (() => null) | undefined;
|
|
245
|
+
appElement?: string | undefined;
|
|
246
|
+
value?: null | undefined;
|
|
247
|
+
additionalInfo?: null | undefined;
|
|
248
|
+
displayProperty?: string | undefined;
|
|
249
|
+
dropdownOptions?: never[] | undefined;
|
|
250
|
+
customDataGridOptions?: {} | undefined;
|
|
251
|
+
customDropdownOptions?: {} | undefined;
|
|
252
|
+
useLookupIndicator?: boolean | undefined;
|
|
253
|
+
searchable?: boolean | undefined;
|
|
254
|
+
} | undefined): JSX.Element;
|
|
255
|
+
propTypes: unknown;
|
|
256
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
257
|
+
};
|
|
90
258
|
export { DSModalSearchField, DSSearchFieldWithSchema };
|
|
91
259
|
export default DSSearchField;
|
|
@@ -6,7 +6,7 @@ declare const ModalSearchField: ({ isOpen, onClose, modalTitle, modalSize, tabsA
|
|
|
6
6
|
modalSize?: string | undefined;
|
|
7
7
|
tabsAnimated?: boolean | undefined;
|
|
8
8
|
tabsEnableMouseEvents?: boolean | undefined;
|
|
9
|
-
tabType?:
|
|
9
|
+
tabType?: "normal" | undefined;
|
|
10
10
|
tabData?: never[] | undefined;
|
|
11
11
|
searchFilters?: boolean | undefined;
|
|
12
12
|
searchGrid?: boolean | undefined;
|