@elliemae/ds-search-field 2.2.0-next.6 → 2.2.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/package.json +9 -9
- package/types/DSSearchField.d.ts +1 -29
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-search-field",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Search Field",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"build": "node ../../scripts/build/build.js"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@elliemae/ds-button": "2.2.
|
|
60
|
-
"@elliemae/ds-classnames": "2.2.
|
|
61
|
-
"@elliemae/ds-datagrids": "2.2.
|
|
62
|
-
"@elliemae/ds-form": "2.2.
|
|
63
|
-
"@elliemae/ds-icons": "2.2.
|
|
64
|
-
"@elliemae/ds-modal": "2.2.
|
|
65
|
-
"@elliemae/ds-tabs": "2.2.
|
|
66
|
-
"@elliemae/ds-toolbar": "2.2.
|
|
59
|
+
"@elliemae/ds-button": "2.2.1",
|
|
60
|
+
"@elliemae/ds-classnames": "2.2.1",
|
|
61
|
+
"@elliemae/ds-datagrids": "2.2.1",
|
|
62
|
+
"@elliemae/ds-form": "2.2.1",
|
|
63
|
+
"@elliemae/ds-icons": "2.2.1",
|
|
64
|
+
"@elliemae/ds-modal": "2.2.1",
|
|
65
|
+
"@elliemae/ds-tabs": "2.2.1",
|
|
66
|
+
"@elliemae/ds-toolbar": "2.2.1",
|
|
67
67
|
"react-desc": "~4.1.3",
|
|
68
68
|
"react-select": "~4.3.0",
|
|
69
69
|
"uid": "~2.0.0"
|
package/types/DSSearchField.d.ts
CHANGED
|
@@ -223,35 +223,7 @@ declare const DSSearchField: {
|
|
|
223
223
|
};
|
|
224
224
|
};
|
|
225
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;
|
|
226
|
+
(props?: unknown): JSX.Element;
|
|
255
227
|
propTypes: unknown;
|
|
256
228
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
257
229
|
};
|