@teselagen/ui 0.6.6 → 0.7.1
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/DataTable/ColumnFilterMenu.d.ts +2 -1
- package/DataTable/Columns.d.ts +51 -0
- package/DataTable/DisplayOptions.d.ts +14 -14
- package/DataTable/EditabelCell.d.ts +2 -5
- package/DataTable/EditableCell.d.ts +7 -0
- package/DataTable/FilterAndSortMenu.d.ts +9 -9
- package/DataTable/PagingTool.d.ts +25 -2
- package/DataTable/RenderCell.d.ts +18 -0
- package/DataTable/SearchBar.d.ts +4 -3
- package/DataTable/SortableColumns.d.ts +6 -9
- package/DataTable/ThComponent.d.ts +9 -0
- package/DataTable/index.d.ts +0 -5
- package/DataTable/utils/getIdOrCodeOrIndex.d.ts +1 -2
- package/DataTable/utils/handleCopyTable.d.ts +1 -0
- package/DataTable/utils/index.d.ts +4 -2
- package/DataTable/utils/primarySelectedValue.d.ts +1 -0
- package/DataTable/utils/queryParams.d.ts +13 -8
- package/DataTable/utils/removeCleanRows.d.ts +1 -1
- package/DataTable/utils/rowClick.d.ts +24 -3
- package/DataTable/utils/useDeepEqualMemo.d.ts +1 -0
- package/DataTable/utils/useTableEntities.d.ts +5 -0
- package/DataTable/utils/useTableParams.d.ts +49 -0
- package/DataTable/utils/withTableParams.d.ts +3 -16
- package/DataTable/viewColumn.d.ts +11 -4
- package/FormComponents/AbstractField.d.ts +1 -0
- package/FormComponents/Uploader.d.ts +34 -1
- package/FormComponents/index.d.ts +111 -60
- package/MatchHeaders.d.ts +9 -10
- package/SimpleStepViz.d.ts +2 -1
- package/TgSuggest/index.d.ts +1 -21
- package/UploadCsvWizard.d.ts +1 -1
- package/index.cjs.js +47861 -49125
- package/index.d.ts +6 -3
- package/index.es.js +47959 -49223
- package/package.json +6 -5
- package/src/DataTable/CellDragHandle.js +70 -69
- package/src/DataTable/ColumnFilterMenu.js +23 -21
- package/src/DataTable/Columns.js +948 -0
- package/src/DataTable/Columns.jsx +945 -0
- package/src/DataTable/DisplayOptions.js +173 -192
- package/src/DataTable/EditabelCell.js +7 -18
- package/src/DataTable/EditabelCell.jsx +44 -0
- package/src/DataTable/EditableCell.js +44 -0
- package/src/DataTable/FilterAndSortMenu.js +215 -234
- package/src/DataTable/PagingTool.js +47 -56
- package/src/DataTable/RenderCell.js +191 -0
- package/src/DataTable/RenderCell.jsx +191 -0
- package/src/DataTable/SearchBar.js +12 -5
- package/src/DataTable/SortableColumns.js +44 -39
- package/src/DataTable/ThComponent.js +44 -0
- package/src/DataTable/dataTableEnhancer.js +32 -295
- package/src/DataTable/index.js +2945 -3596
- package/src/DataTable/utils/getIdOrCodeOrIndex.js +1 -1
- package/src/DataTable/utils/handleCopyTable.js +16 -0
- package/src/DataTable/utils/index.js +7 -3
- package/src/DataTable/utils/primarySelectedValue.js +1 -0
- package/src/DataTable/utils/queryParams.js +110 -85
- package/src/DataTable/utils/removeCleanRows.js +3 -3
- package/src/DataTable/utils/rowClick.js +34 -9
- package/src/DataTable/utils/selection.js +1 -1
- package/src/DataTable/utils/useDeepEqualMemo.js +10 -0
- package/src/DataTable/utils/useTableEntities.js +38 -0
- package/src/DataTable/utils/useTableParams.js +362 -0
- package/src/DataTable/utils/withTableParams.js +244 -274
- package/src/DataTable/validateTableWideErrors.js +1 -1
- package/src/DataTable/viewColumn.js +5 -9
- package/src/DialogFooter/index.js +3 -3
- package/src/FillWindow.js +2 -3
- package/src/FormComponents/AbstractField.js +388 -0
- package/src/FormComponents/Uploader.js +674 -649
- package/src/FormComponents/index.js +505 -654
- package/src/FormComponents/tryToMatchSchemas.js +1 -6
- package/src/MatchHeaders.js +27 -22
- package/src/SimpleStepViz.js +19 -23
- package/src/TgSelect/index.js +1 -1
- package/src/TgSuggest/index.js +94 -106
- package/src/UploadCsvWizard.js +571 -577
- package/src/enhancers/withDialog/tg_modalState.js +1 -0
- package/src/index.js +10 -4
- package/src/showDialogOnDocBody.js +5 -9
- package/src/useDialog.js +25 -26
- package/src/utils/commandControls.js +2 -2
- package/src/utils/handlerHelpers.js +19 -25
- package/src/utils/hooks/index.js +1 -0
- package/src/utils/hooks/useDeepEqualMemo.js +10 -0
- package/src/utils/hooks/useStableReference.js +9 -0
- package/src/utils/renderOnDoc.js +8 -5
- package/src/utils/tagUtils.js +3 -3
- package/src/utils/useTraceUpdate.js +19 -0
- package/src/wrapDialog.js +0 -2
- package/style.css +251 -251
- package/useDialog.d.ts +2 -6
- package/utils/hooks/index.d.ts +1 -0
- package/utils/hooks/useDeepEqualMemo.d.ts +1 -0
- package/utils/hooks/useStableReference.d.ts +1 -0
- package/utils/renderOnDoc.d.ts +1 -1
- package/utils/tagUtils.d.ts +5 -1
- package/utils/useTraceUpdate.d.ts +1 -0
|
@@ -1,152 +1,203 @@
|
|
|
1
1
|
import { fieldRequired } from './utils';
|
|
2
|
-
|
|
3
|
-
export function generateField(component: any, opts: any): ({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
2
|
+
export function generateField(component: any, opts: any): ({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
4
3
|
[x: string]: any;
|
|
5
4
|
name: any;
|
|
6
5
|
isRequired: any;
|
|
7
6
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
8
|
-
noRedux: any;
|
|
9
7
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
10
8
|
export { fieldRequired };
|
|
11
|
-
export function renderBlueprintDateInput(
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
9
|
+
export function renderBlueprintDateInput({ input, intent, onFieldSubmit, inputProps, ...rest }: {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
input: any;
|
|
12
|
+
intent: any;
|
|
13
|
+
onFieldSubmit: any;
|
|
14
|
+
inputProps: any;
|
|
15
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export function renderBlueprintDateRangeInput({ input, intent, onFieldSubmit, inputProps, ...rest }: {
|
|
17
|
+
[x: string]: any;
|
|
18
|
+
input: any;
|
|
19
|
+
intent: any;
|
|
20
|
+
onFieldSubmit: any;
|
|
21
|
+
inputProps: any;
|
|
22
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export function RenderBlueprintInput({ input, intent, onFieldSubmit, onKeyDown, asyncValidating, rightElement, clickToEdit, ...rest }: {
|
|
24
|
+
[x: string]: any;
|
|
25
|
+
input: any;
|
|
26
|
+
intent: any;
|
|
27
|
+
onFieldSubmit: any;
|
|
28
|
+
onKeyDown?: ((...args: any[]) => void) | undefined;
|
|
29
|
+
asyncValidating: any;
|
|
30
|
+
rightElement: any;
|
|
31
|
+
clickToEdit: any;
|
|
32
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
export function renderBlueprintCheckbox({ input, label, tooltipInfo, beforeOnChange, onFieldSubmit, ...rest }: {
|
|
34
|
+
[x: string]: any;
|
|
35
|
+
input: any;
|
|
36
|
+
label: any;
|
|
37
|
+
tooltipInfo: any;
|
|
38
|
+
beforeOnChange: any;
|
|
39
|
+
onFieldSubmit: any;
|
|
40
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
41
|
+
export function renderBlueprintSwitch({ input, label, tooltipInfo, onFieldSubmit, beforeOnChange, ...rest }: {
|
|
42
|
+
[x: string]: any;
|
|
43
|
+
input: any;
|
|
44
|
+
label: any;
|
|
45
|
+
tooltipInfo: any;
|
|
46
|
+
onFieldSubmit: any;
|
|
47
|
+
beforeOnChange: any;
|
|
48
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
49
|
+
export function renderFileUpload({ input, onFieldSubmit, ...rest }: {
|
|
50
|
+
[x: string]: any;
|
|
51
|
+
input: any;
|
|
52
|
+
onFieldSubmit: any;
|
|
53
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
54
|
+
export function RenderBlueprintTextarea({ input, onFieldSubmit, onKeyDown, intentClass, inputClassName, clickToEdit, disabled, ...rest }: {
|
|
55
|
+
[x: string]: any;
|
|
56
|
+
input: any;
|
|
57
|
+
onFieldSubmit: any;
|
|
58
|
+
onKeyDown: any;
|
|
59
|
+
intentClass: any;
|
|
60
|
+
inputClassName: any;
|
|
61
|
+
clickToEdit: any;
|
|
62
|
+
disabled: any;
|
|
63
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
31
64
|
export function renderBlueprintEditableText(props: any): import("react/jsx-runtime").JSX.Element;
|
|
32
65
|
export function renderReactSelect(props: any): import("react/jsx-runtime").JSX.Element;
|
|
33
66
|
export function renderSuggest_old(props: any): import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
export function renderSuggest(
|
|
67
|
+
export function renderSuggest({ async, input: { value, onChange }, hideValue, intent, options, onFieldSubmit, ...rest }: {
|
|
68
|
+
[x: string]: any;
|
|
69
|
+
async: any;
|
|
70
|
+
input: {
|
|
71
|
+
value: any;
|
|
72
|
+
onChange: any;
|
|
73
|
+
};
|
|
74
|
+
hideValue: any;
|
|
75
|
+
intent: any;
|
|
76
|
+
options: any;
|
|
77
|
+
onFieldSubmit: any;
|
|
78
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
35
79
|
export function BPSelect({ value, onChange, ...rest }: {
|
|
36
80
|
[x: string]: any;
|
|
37
81
|
value: any;
|
|
38
82
|
onChange: any;
|
|
39
83
|
}): import("react/jsx-runtime").JSX.Element;
|
|
40
|
-
export function renderSelect(
|
|
41
|
-
|
|
84
|
+
export function renderSelect({ input: { value, onChange }, hideValue, className, placeholder, onFieldSubmit, options, hidePlaceHolder, minimal, disabled, ...rest }: {
|
|
85
|
+
[x: string]: any;
|
|
86
|
+
input: {
|
|
87
|
+
value: any;
|
|
88
|
+
onChange: any;
|
|
89
|
+
};
|
|
90
|
+
hideValue: any;
|
|
91
|
+
className: any;
|
|
92
|
+
placeholder: any;
|
|
93
|
+
onFieldSubmit: any;
|
|
94
|
+
options: any;
|
|
95
|
+
hidePlaceHolder: any;
|
|
96
|
+
minimal: any;
|
|
97
|
+
disabled: any;
|
|
98
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
99
|
+
export function renderBlueprintNumericInput({ input, hideValue, intent, inputClassName, onFieldSubmit, onAnyNumberChange, ...rest }: {
|
|
100
|
+
[x: string]: any;
|
|
101
|
+
input: any;
|
|
102
|
+
hideValue: any;
|
|
103
|
+
intent: any;
|
|
104
|
+
inputClassName: any;
|
|
105
|
+
onFieldSubmit: any;
|
|
106
|
+
onAnyNumberChange: any;
|
|
107
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
42
108
|
export function renderBlueprintRadioGroup({ input, options, onFieldSubmit, ...rest }: {
|
|
43
109
|
[x: string]: any;
|
|
44
110
|
input: any;
|
|
45
111
|
options: any;
|
|
46
112
|
onFieldSubmit: any;
|
|
47
113
|
}): import("react/jsx-runtime").JSX.Element;
|
|
48
|
-
export
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
114
|
+
export function RenderReactColorPicker({ input, onFieldSubmit, ...rest }: {
|
|
115
|
+
[x: string]: any;
|
|
116
|
+
input: any;
|
|
117
|
+
onFieldSubmit: any;
|
|
118
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
54
119
|
export function withAbstractWrapper(ComponentToWrap: any, opts?: {}): (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
55
|
-
export function InputField({ name, isRequired, onFieldSubmit,
|
|
120
|
+
export function InputField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
56
121
|
[x: string]: any;
|
|
57
122
|
name: any;
|
|
58
123
|
isRequired: any;
|
|
59
124
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
60
|
-
noRedux: any;
|
|
61
125
|
}): import("react/jsx-runtime").JSX.Element;
|
|
62
|
-
export function FileUploadField({ name, isRequired, onFieldSubmit,
|
|
126
|
+
export function FileUploadField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
63
127
|
[x: string]: any;
|
|
64
128
|
name: any;
|
|
65
129
|
isRequired: any;
|
|
66
130
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
67
|
-
noRedux: any;
|
|
68
131
|
}): import("react/jsx-runtime").JSX.Element;
|
|
69
|
-
export function DateInputField({ name, isRequired, onFieldSubmit,
|
|
132
|
+
export function DateInputField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
70
133
|
[x: string]: any;
|
|
71
134
|
name: any;
|
|
72
135
|
isRequired: any;
|
|
73
136
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
74
|
-
noRedux: any;
|
|
75
137
|
}): import("react/jsx-runtime").JSX.Element;
|
|
76
|
-
export function DateRangeInputField({ name, isRequired, onFieldSubmit,
|
|
138
|
+
export function DateRangeInputField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
77
139
|
[x: string]: any;
|
|
78
140
|
name: any;
|
|
79
141
|
isRequired: any;
|
|
80
142
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
81
|
-
noRedux: any;
|
|
82
143
|
}): import("react/jsx-runtime").JSX.Element;
|
|
83
|
-
export function CheckboxField({ name, isRequired, onFieldSubmit,
|
|
144
|
+
export function CheckboxField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
84
145
|
[x: string]: any;
|
|
85
146
|
name: any;
|
|
86
147
|
isRequired: any;
|
|
87
148
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
88
|
-
noRedux: any;
|
|
89
149
|
}): import("react/jsx-runtime").JSX.Element;
|
|
90
|
-
export function SwitchField({ name, isRequired, onFieldSubmit,
|
|
150
|
+
export function SwitchField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
91
151
|
[x: string]: any;
|
|
92
152
|
name: any;
|
|
93
153
|
isRequired: any;
|
|
94
154
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
95
|
-
noRedux: any;
|
|
96
155
|
}): import("react/jsx-runtime").JSX.Element;
|
|
97
|
-
export function TextareaField({ name, isRequired, onFieldSubmit,
|
|
156
|
+
export function TextareaField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
98
157
|
[x: string]: any;
|
|
99
158
|
name: any;
|
|
100
159
|
isRequired: any;
|
|
101
160
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
102
|
-
noRedux: any;
|
|
103
161
|
}): import("react/jsx-runtime").JSX.Element;
|
|
104
|
-
export function SuggestField({ name, isRequired, onFieldSubmit,
|
|
162
|
+
export function SuggestField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
105
163
|
[x: string]: any;
|
|
106
164
|
name: any;
|
|
107
165
|
isRequired: any;
|
|
108
166
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
109
|
-
noRedux: any;
|
|
110
167
|
}): import("react/jsx-runtime").JSX.Element;
|
|
111
|
-
export function EditableTextField({ name, isRequired, onFieldSubmit,
|
|
168
|
+
export function EditableTextField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
112
169
|
[x: string]: any;
|
|
113
170
|
name: any;
|
|
114
171
|
isRequired: any;
|
|
115
172
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
116
|
-
noRedux: any;
|
|
117
173
|
}): import("react/jsx-runtime").JSX.Element;
|
|
118
|
-
export function NumericInputField({ name, isRequired, onFieldSubmit,
|
|
174
|
+
export function NumericInputField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
119
175
|
[x: string]: any;
|
|
120
176
|
name: any;
|
|
121
177
|
isRequired: any;
|
|
122
178
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
123
|
-
noRedux: any;
|
|
124
179
|
}): import("react/jsx-runtime").JSX.Element;
|
|
125
|
-
export function RadioGroupField({ name, isRequired, onFieldSubmit,
|
|
180
|
+
export function RadioGroupField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
126
181
|
[x: string]: any;
|
|
127
182
|
name: any;
|
|
128
183
|
isRequired: any;
|
|
129
184
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
130
|
-
noRedux: any;
|
|
131
185
|
}): import("react/jsx-runtime").JSX.Element;
|
|
132
|
-
export function ReactSelectField({ name, isRequired, onFieldSubmit,
|
|
186
|
+
export function ReactSelectField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
133
187
|
[x: string]: any;
|
|
134
188
|
name: any;
|
|
135
189
|
isRequired: any;
|
|
136
190
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
137
|
-
noRedux: any;
|
|
138
191
|
}): import("react/jsx-runtime").JSX.Element;
|
|
139
|
-
export function SelectField({ name, isRequired, onFieldSubmit,
|
|
192
|
+
export function SelectField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
140
193
|
[x: string]: any;
|
|
141
194
|
name: any;
|
|
142
195
|
isRequired: any;
|
|
143
196
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
144
|
-
noRedux: any;
|
|
145
197
|
}): import("react/jsx-runtime").JSX.Element;
|
|
146
|
-
export function ReactColorField({ name, isRequired, onFieldSubmit,
|
|
198
|
+
export function ReactColorField({ name, isRequired, onFieldSubmit, ...rest }: {
|
|
147
199
|
[x: string]: any;
|
|
148
200
|
name: any;
|
|
149
201
|
isRequired: any;
|
|
150
202
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
151
|
-
noRedux: any;
|
|
152
203
|
}): import("react/jsx-runtime").JSX.Element;
|
package/MatchHeaders.d.ts
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
export function MatchHeaders({
|
|
2
|
-
onMultiFileUploadSubmit: any;
|
|
3
|
-
doAllFilesHaveSameHeaders: any;
|
|
1
|
+
export function MatchHeaders({ csvValidationIssue, datatableFormName, datatableFormNames: _datatableFormNames, doAllFilesHaveSameHeaders, fileIndex, filesWIssues, ignoredHeadersMsg, matchedHeaders, onMultiFileUploadSubmit, reduxFormEntitiesArray, searchResults, setFilesWIssues, userSchema }: {
|
|
4
2
|
csvValidationIssue: any;
|
|
3
|
+
datatableFormName: any;
|
|
4
|
+
datatableFormNames: any;
|
|
5
|
+
doAllFilesHaveSameHeaders: any;
|
|
6
|
+
fileIndex: any;
|
|
7
|
+
filesWIssues: any;
|
|
5
8
|
ignoredHeadersMsg: any;
|
|
6
|
-
searchResults: any;
|
|
7
9
|
matchedHeaders: any;
|
|
8
|
-
|
|
10
|
+
onMultiFileUploadSubmit: any;
|
|
9
11
|
reduxFormEntitiesArray: any;
|
|
10
|
-
|
|
11
|
-
datatableFormName: any;
|
|
12
|
-
datatableFormNames: any;
|
|
12
|
+
searchResults: any;
|
|
13
13
|
setFilesWIssues: any;
|
|
14
|
-
|
|
15
|
-
fileIndex: any;
|
|
14
|
+
userSchema: any;
|
|
16
15
|
}): import("react/jsx-runtime").JSX.Element;
|
package/SimpleStepViz.d.ts
CHANGED
package/TgSuggest/index.d.ts
CHANGED
|
@@ -1,22 +1,2 @@
|
|
|
1
|
-
import { default as React } from '../../../../node_modules/react';
|
|
2
1
|
export default TgSuggest;
|
|
3
|
-
declare
|
|
4
|
-
static defaultProps: {
|
|
5
|
-
onChange: () => void;
|
|
6
|
-
options: never[];
|
|
7
|
-
value: undefined;
|
|
8
|
-
};
|
|
9
|
-
constructor(props: any);
|
|
10
|
-
constructor(props: any, context: any);
|
|
11
|
-
itemRenderer: (i: string | undefined, { index, handleClick, modifiers }: {
|
|
12
|
-
index: any;
|
|
13
|
-
handleClick: any;
|
|
14
|
-
modifiers: any;
|
|
15
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
-
handleItemSelect: (item: any) => any;
|
|
17
|
-
itemListPredicate: (queryString: any, item: any) => any;
|
|
18
|
-
onQueryChange: (query: any) => void;
|
|
19
|
-
renderInputValue: (item: any) => any;
|
|
20
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
21
|
-
input: HTMLInputElement | undefined;
|
|
22
|
-
}
|
|
2
|
+
declare function TgSuggest(props: any): import("react/jsx-runtime").JSX.Element;
|
package/UploadCsvWizard.d.ts
CHANGED