@elliemae/ds-search-field 2.2.0-alpha.2 → 2.2.0-beta.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.
Files changed (30) hide show
  1. package/cjs/DSSearchField.js +165 -129
  2. package/cjs/impl/DSSeachFieldImpl.js +157 -126
  3. package/cjs/impl/components/AdvanceSearchOption/AdvanceSearchOption.js +25 -43
  4. package/cjs/impl/components/LookupIndicator/LookupIndicator.js +33 -49
  5. package/cjs/impl/components/ModalSearchField/DataGridSearch.js +93 -83
  6. package/cjs/impl/components/ModalSearchField/ModalSearchField.js +82 -93
  7. package/cjs/index.js +12 -37
  8. package/esm/DSSearchField.js +152 -97
  9. package/esm/impl/DSSeachFieldImpl.js +147 -96
  10. package/esm/impl/components/AdvanceSearchOption/AdvanceSearchOption.js +18 -14
  11. package/esm/impl/components/LookupIndicator/LookupIndicator.js +26 -20
  12. package/esm/impl/components/ModalSearchField/DataGridSearch.js +83 -53
  13. package/esm/impl/components/ModalSearchField/ModalSearchField.js +75 -64
  14. package/esm/index.js +2 -12
  15. package/package.json +9 -9
  16. package/types/DSSearchField.d.ts +1 -29
  17. package/cjs/DSSearchField.js.map +0 -7
  18. package/cjs/impl/DSSeachFieldImpl.js.map +0 -7
  19. package/cjs/impl/components/AdvanceSearchOption/AdvanceSearchOption.js.map +0 -7
  20. package/cjs/impl/components/LookupIndicator/LookupIndicator.js.map +0 -7
  21. package/cjs/impl/components/ModalSearchField/DataGridSearch.js.map +0 -7
  22. package/cjs/impl/components/ModalSearchField/ModalSearchField.js.map +0 -7
  23. package/cjs/index.js.map +0 -7
  24. package/esm/DSSearchField.js.map +0 -7
  25. package/esm/impl/DSSeachFieldImpl.js.map +0 -7
  26. package/esm/impl/components/AdvanceSearchOption/AdvanceSearchOption.js.map +0 -7
  27. package/esm/impl/components/LookupIndicator/LookupIndicator.js.map +0 -7
  28. package/esm/impl/components/ModalSearchField/DataGridSearch.js.map +0 -7
  29. package/esm/impl/components/ModalSearchField/ModalSearchField.js.map +0 -7
  30. package/esm/index.js.map +0 -7
@@ -1,104 +1,159 @@
1
- import * as React from "react";
2
- import React2 from "react";
3
- import { describe, PropTypes } from "react-desc";
4
- import { TabTypes } from "@elliemae/ds-tabs";
5
- import DSSeachFieldImpl, { DSModalSearchField } from "./impl/DSSeachFieldImpl";
6
- const DSSearchField = ({
7
- containerProps = {},
8
- onChange = () => null,
9
- searchOptionLabel = "Advanced Search",
10
- placeholder = "Select field",
11
- modalSize = "x-large",
12
- modalTitle = "Search Field ID",
13
- tabsAnimated = true,
14
- tabsEnableMouseEvents = true,
15
- tabType = TabTypes.NORMAL,
16
- tabData = [],
17
- searchGrid = false,
18
- searchFilters = true,
19
- confirmLabel = "Apply",
20
- rejectLabel = "Cancel",
21
- modalType = "confirm",
22
- onConfirmField = () => null,
23
- onRejectField = () => null,
24
- onTabChange = () => null,
25
- appElement = "#root",
26
- value = null,
27
- additionalInfo = null,
28
- displayProperty = "name",
29
- dropdownOptions = [],
30
- customDataGridOptions = {},
31
- customDropdownOptions = {},
32
- useLookupIndicator = true,
33
- searchable = false
34
- }) => /* @__PURE__ */ React2.createElement(DSSeachFieldImpl, {
35
- additionalInfo,
36
- appElement,
37
- searchable,
38
- confirmLabel,
39
- containerProps,
40
- customDataGridOptions,
41
- customDropdownOptions,
42
- displayProperty,
43
- dropdownOptions,
44
- modalSize,
45
- modalTitle,
46
- modalType,
47
- onChange,
48
- onConfirmField,
49
- onRejectField,
50
- onTabChange,
51
- placeholder,
52
- rejectLabel,
53
- searchFilters,
54
- searchGrid,
55
- searchOptionLabel,
56
- tabData,
57
- tabsAnimated,
58
- tabsEnableMouseEvents,
59
- tabType,
60
- useLookupIndicator,
61
- value
62
- });
1
+ import _jsx from '@babel/runtime/helpers/esm/jsx';
2
+ import 'react';
3
+ import { PropTypes, describe } from 'react-desc';
4
+ import { TabTypes } from '@elliemae/ds-tabs';
5
+ import DSSearchFieldImpl from './impl/DSSeachFieldImpl.js';
6
+ export { default as DSModalSearchField } from './impl/components/ModalSearchField/ModalSearchField.js';
7
+
8
+ const DSSearchField = _ref => {
9
+ let {
10
+ containerProps = {},
11
+ onChange = () => null,
12
+ searchOptionLabel = 'Advanced Search',
13
+ placeholder = 'Select field',
14
+ modalSize = 'x-large',
15
+ modalTitle = 'Search Field ID',
16
+ tabsAnimated = true,
17
+ tabsEnableMouseEvents = true,
18
+ tabType = TabTypes.NORMAL,
19
+ tabData = [],
20
+ searchGrid = false,
21
+ searchFilters = true,
22
+ confirmLabel = 'Apply',
23
+ rejectLabel = 'Cancel',
24
+ modalType = 'confirm',
25
+ onConfirmField = () => null,
26
+ onRejectField = () => null,
27
+ onTabChange = () => null,
28
+ appElement = '#root',
29
+ value = null,
30
+ additionalInfo = null,
31
+ displayProperty = 'name',
32
+ dropdownOptions = [],
33
+ customDataGridOptions = {},
34
+ customDropdownOptions = {},
35
+ useLookupIndicator = true,
36
+ searchable = false
37
+ } = _ref;
38
+ return /*#__PURE__*/_jsx(DSSearchFieldImpl, {
39
+ additionalInfo: additionalInfo,
40
+ appElement: appElement,
41
+ searchable: searchable,
42
+ confirmLabel: confirmLabel,
43
+ containerProps: containerProps,
44
+ customDataGridOptions: customDataGridOptions,
45
+ customDropdownOptions: customDropdownOptions,
46
+ displayProperty: displayProperty,
47
+ dropdownOptions: dropdownOptions,
48
+ modalSize: modalSize,
49
+ modalTitle: modalTitle,
50
+ modalType: modalType,
51
+ onChange: onChange,
52
+ onConfirmField: onConfirmField,
53
+ onRejectField: onRejectField,
54
+ onTabChange: onTabChange,
55
+ placeholder: placeholder,
56
+ rejectLabel: rejectLabel,
57
+ searchFilters: searchFilters,
58
+ searchGrid: searchGrid,
59
+ searchOptionLabel: searchOptionLabel,
60
+ tabData: tabData,
61
+ tabsAnimated: tabsAnimated,
62
+ tabsEnableMouseEvents: tabsEnableMouseEvents,
63
+ tabType: tabType,
64
+ useLookupIndicator: useLookupIndicator,
65
+ value: value
66
+ });
67
+ };
68
+
63
69
  const props = {
64
- searchable: PropTypes.bool.description("Enable the user to search on combobox"),
65
- containerProps: PropTypes.object.description("inject props to wrapper"),
66
- onChange: PropTypes.func.description("change handler"),
67
- searchOptionLabel: PropTypes.string.description("search option label"),
68
- placeholder: PropTypes.string.description("placeholder for search input"),
69
- modalSize: PropTypes.oneOf(["x-large", "large", "medium"]).description("search modal size"),
70
- modalTitle: PropTypes.string.description("search modal title"),
71
- tabsAnimated: PropTypes.bool.description("animate modal tabs"),
72
- tabsEnableMouseEvents: PropTypes.bool.description("enable mouse event on tabs"),
73
- tabType: PropTypes.oneOf([TabTypes.NORMAL, TabTypes.SUBTABS]).description("tab types on modal"),
74
- tabData: PropTypes.array.description("data for modal tabs"),
75
- searchGrid: PropTypes.bool.description("use search grid"),
76
- searchFilters: PropTypes.bool.description("add search filters"),
77
- confirmLabel: PropTypes.string.description("confirm modal label"),
78
- rejectLabel: PropTypes.string.description("reject modal label"),
79
- modalType: PropTypes.oneOf(["alert", "confirm"]).description("modal type"),
80
- onConfirmField: PropTypes.func.description("on confirm handler"),
81
- onRejectField: PropTypes.func.description("on cancel handler"),
82
- onTabChange: PropTypes.func.description("tab change handler"),
83
- appElement: PropTypes.string.description("app element"),
84
- value: PropTypes.string.description("value for search"),
85
- additionalInfo: PropTypes.object.description("additional info"),
86
- displayProperty: PropTypes.string.description("display property"),
70
+ /*
71
+ Enable the user to search on combobox
72
+ */
73
+ searchable: PropTypes.bool.description('Enable the user to search on combobox'),
74
+
75
+ /** inject props to wrapper */
76
+ containerProps: PropTypes.object.description('inject props to wrapper'),
77
+
78
+ /** change handler */
79
+ onChange: PropTypes.func.description('change handler'),
80
+
81
+ /** search option label */
82
+ searchOptionLabel: PropTypes.string.description('search option label'),
83
+
84
+ /** placeholder for search input */
85
+ placeholder: PropTypes.string.description('placeholder for search input'),
86
+
87
+ /** search modal size */
88
+ modalSize: PropTypes.oneOf(['x-large', 'large', 'medium']).description('search modal size'),
89
+
90
+ /** search modal title */
91
+ modalTitle: PropTypes.string.description('search modal title'),
92
+
93
+ /** animate modal tabs */
94
+ tabsAnimated: PropTypes.bool.description('animate modal tabs'),
95
+
96
+ /** enable mouse event on tabs */
97
+ tabsEnableMouseEvents: PropTypes.bool.description('enable mouse event on tabs'),
98
+
99
+ /** tab types on modal */
100
+ tabType: PropTypes.oneOf([TabTypes.NORMAL, TabTypes.SUBTABS]).description('tab types on modal'),
101
+
102
+ /** data for modal tabs */
103
+ tabData: PropTypes.array.description('data for modal tabs'),
104
+
105
+ /** use search grid */
106
+ searchGrid: PropTypes.bool.description('use search grid'),
107
+
108
+ /** add search filters */
109
+ searchFilters: PropTypes.bool.description('add search filters'),
110
+
111
+ /** confirm modal label */
112
+ confirmLabel: PropTypes.string.description('confirm modal label'),
113
+
114
+ /** reject modal label */
115
+ rejectLabel: PropTypes.string.description('reject modal label'),
116
+
117
+ /** modal type */
118
+ modalType: PropTypes.oneOf(['alert', 'confirm']).description('modal type'),
119
+
120
+ /** on confirm handler */
121
+ onConfirmField: PropTypes.func.description('on confirm handler'),
122
+
123
+ /** on cancel handler */
124
+ onRejectField: PropTypes.func.description('on cancel handler'),
125
+
126
+ /** tab change handler */
127
+ onTabChange: PropTypes.func.description('tab change handler'),
128
+
129
+ /** app element */
130
+ appElement: PropTypes.string.description('app element'),
131
+
132
+ /** value for search */
133
+ value: PropTypes.string.description('value for search'),
134
+
135
+ /** additional info */
136
+ additionalInfo: PropTypes.object.description('additional info'),
137
+
138
+ /** display property */
139
+ displayProperty: PropTypes.string.description('display property'),
140
+
141
+ /** options for dropdown */
87
142
  dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
88
143
  label: PropTypes.string,
89
144
  value: PropTypes.string
90
- })).description("options for dropdown"),
91
- customDataGridOptions: PropTypes.object.description("pass down props for datagrid in modal"),
92
- customDropdownOptions: PropTypes.object.description("custom props for dropdown"),
93
- useLookupIndicator: PropTypes.bool.description("enable lookup")
145
+ })).description('options for dropdown'),
146
+
147
+ /** pass down props for datagrid in modal */
148
+ customDataGridOptions: PropTypes.object.description('pass down props for datagrid in modal'),
149
+
150
+ /** custom props for dropdown */
151
+ customDropdownOptions: PropTypes.object.description('custom props for dropdown'),
152
+
153
+ /** enable lookup */
154
+ useLookupIndicator: PropTypes.bool.description('enable lookup')
94
155
  };
95
- DSSearchField.propTypes = props;
96
156
  const DSSearchFieldWithSchema = describe(DSSearchField);
97
157
  DSSearchFieldWithSchema.propTypes = props;
98
- var DSSearchField_default = DSSearchField;
99
- export {
100
- DSModalSearchField,
101
- DSSearchFieldWithSchema,
102
- DSSearchField_default as default
103
- };
104
- //# sourceMappingURL=DSSearchField.js.map
158
+
159
+ export { DSSearchFieldWithSchema, DSSearchField as default };
@@ -1,74 +1,121 @@
1
- import * as React from "react";
2
- import React2, { Component } from "react";
3
- import { components } from "react-select";
4
- import { convertPropToCssClassName } from "@elliemae/ds-classnames";
5
- import { DSComboBox2 } from "@elliemae/ds-form";
6
- import DSModalSearchField from "./components/ModalSearchField/ModalSearchField";
7
- import AdvanceSearchOption from "./components/AdvanceSearchOption/AdvanceSearchOption";
8
- import LookupIndicator from "./components/LookupIndicator/LookupIndicator";
1
+ import _jsx from '@babel/runtime/helpers/esm/jsx';
2
+ import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
3
+ import 'core-js/modules/web.dom-collections.iterator.js';
4
+ import 'core-js/modules/esnext.async-iterator.find.js';
5
+ import 'core-js/modules/esnext.iterator.constructor.js';
6
+ import 'core-js/modules/esnext.iterator.find.js';
7
+ import 'core-js/modules/esnext.async-iterator.filter.js';
8
+ import 'core-js/modules/esnext.iterator.filter.js';
9
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
10
+ import 'core-js/modules/esnext.iterator.for-each.js';
11
+ import { Component } from 'react';
12
+ import { components } from 'react-select';
13
+ import { convertPropToCssClassName } from '@elliemae/ds-classnames';
14
+ import { DSComboBox2 } from '@elliemae/ds-form';
15
+ import ModalSearchField from './components/ModalSearchField/ModalSearchField.js';
16
+ export { default as DSModalSearchField } from './components/ModalSearchField/ModalSearchField.js';
17
+ import AdvanceSearchOption from './components/AdvanceSearchOption/AdvanceSearchOption.js';
18
+ import LookupIndicator from './components/LookupIndicator/LookupIndicator.js';
19
+ import { jsxs, jsx } from 'react/jsx-runtime';
20
+
21
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
22
+
23
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
9
24
  const advanceOption = {
10
- className: "advanced-search-option",
11
- label: "Advanced search",
12
- value: "search-field-advance-option",
25
+ className: 'advanced-search-option',
26
+ label: 'Advanced search',
27
+ value: 'search-field-advance-option',
13
28
  isAdvance: true
14
29
  };
15
- const { cssClassName, classNameElement, classNameModifier, classNameBlock } = convertPropToCssClassName("query-builder-addon-search-field");
30
+ const {
31
+ cssClassName,
32
+ classNameElement,
33
+ classNameModifier,
34
+ classNameBlock
35
+ } = convertPropToCssClassName('query-builder-addon-search-field');
36
+
16
37
  class DSSearchFieldImpl extends Component {
17
38
  constructor(props) {
18
39
  super(props);
40
+
19
41
  this.onChange = () => {
20
42
  const {
21
43
  selected: id,
22
44
  additionalInfo: [row]
23
45
  } = this.state;
24
- const { onChange } = this.props;
46
+ const {
47
+ onChange
48
+ } = this.props;
25
49
  onChange(id, row);
26
50
  };
27
- this.onChangeDropdown = (value) => {
28
- const { dropdownOptions } = this.props;
29
- const selected = dropdownOptions.find((op) => op.value === value);
30
- const { onChange, displayProperty } = this.props;
31
- if (selected)
32
- onChange(value, { [displayProperty]: selected.label });
51
+
52
+ this.onChangeDropdown = value => {
53
+ const {
54
+ dropdownOptions
55
+ } = this.props;
56
+ const selected = dropdownOptions.find(op => op.value === value);
57
+ const {
58
+ onChange,
59
+ displayProperty
60
+ } = this.props;
61
+ if (selected) onChange(value, {
62
+ [displayProperty]: selected.label
63
+ });
33
64
  };
34
- this.onKeyDown = (event) => {
65
+
66
+ this.onKeyDown = event => {
35
67
  setTimeout(() => {
36
- const { keycode } = event;
37
- const { value } = this.props;
38
- if (value && keycode === 13)
39
- this.handleCloseModal();
68
+ const {
69
+ keycode
70
+ } = event;
71
+ const {
72
+ value
73
+ } = this.props;
74
+ if (value && keycode === 13) this.handleCloseModal();
40
75
  }, 0);
41
76
  };
77
+
42
78
  this.handleSelect = (selectedRow, rows) => {
43
- let selected = selectedRow;
44
- if (!selected)
45
- return;
46
- if (selected.id)
47
- selected = selected.id;
48
- else if (selected[0] && selected[0].id)
49
- selected = selected[0].id;
50
- const additionalInfo = rows.filter((row) => selected === row.id);
51
- this.setState({ selected, additionalInfo });
79
+ let selected = selectedRow; // fix new datagrid callback format
80
+
81
+ if (!selected) return;
82
+ if (selected.id) selected = selected.id;else if (selected[0] && selected[0].id) selected = selected[0].id;
83
+ const additionalInfo = rows.filter(row => selected === row.id);
84
+ this.setState({
85
+ selected,
86
+ additionalInfo
87
+ });
52
88
  };
89
+
53
90
  this.handleConfirm = () => {
54
- const { onConfirmField } = this.props;
91
+ const {
92
+ onConfirmField
93
+ } = this.props;
55
94
  this.onChange();
56
95
  this.handleCloseModal();
57
96
  onConfirmField();
58
97
  };
98
+
59
99
  this.handleReject = () => {
60
- const { onRejectField } = this.props;
100
+ const {
101
+ onRejectField
102
+ } = this.props;
61
103
  this.handleCloseModal();
62
104
  onRejectField();
63
105
  };
106
+
64
107
  this.handleOpenModal = () => {
65
- this.setState({ openModal: true });
108
+ this.setState({
109
+ openModal: true
110
+ });
66
111
  };
112
+
67
113
  this.handleCloseModal = () => this.setState({
68
114
  openModal: false,
69
115
  selected: [],
70
116
  additionalInfo: []
71
117
  });
118
+
72
119
  advanceOption.label = props.searchOptionLabel;
73
120
  this.state = {
74
121
  openModal: false,
@@ -76,6 +123,7 @@ class DSSearchFieldImpl extends Component {
76
123
  additionalInfo: []
77
124
  };
78
125
  }
126
+
79
127
  render() {
80
128
  const {
81
129
  placeholder,
@@ -103,81 +151,84 @@ class DSSearchFieldImpl extends Component {
103
151
  containerProps,
104
152
  searchable
105
153
  } = this.props;
106
- const { openModal } = this.state;
154
+ const {
155
+ openModal
156
+ } = this.state;
107
157
  let options = [...dropdownOptions, advanceOption];
108
158
  let displayValue = !value ? placeholder : value;
109
- if (additionalInfo && additionalInfo[displayProperty])
110
- displayValue = additionalInfo[displayProperty];
111
- const defaultoption = { value, label: displayValue };
159
+ if (additionalInfo && additionalInfo[displayProperty]) displayValue = additionalInfo[displayProperty];
160
+ const defaultoption = {
161
+ value,
162
+ label: displayValue
163
+ };
112
164
  const customComponents = {
113
- Option: (props) => {
114
- props.innerProps.className = "em-ds-combobox__option";
165
+ Option: props => {
166
+ // return <AdvanceSearchOption onAdvanceSearchClick={this.handleOpenModal} />
167
+ props.innerProps.className = 'em-ds-combobox__option';
168
+
115
169
  if (props.data.isAdvance) {
116
170
  props.innerProps.onClick = this.handleOpenModal;
117
- props.innerProps.className = `${props.innerProps.className} ${advanceOption.className}`;
171
+ props.innerProps.className = "".concat(props.innerProps.className, " ").concat(advanceOption.className);
118
172
  }
119
- return /* @__PURE__ */ React2.createElement(components.Option, {
120
- ...props
121
- });
173
+
174
+ return /*#__PURE__*/jsx(components.Option, _objectSpread({}, props));
122
175
  },
123
176
  IndicatorSeparator: () => null,
124
- NoOptionsMessage: (props) => /* @__PURE__ */ React2.createElement(AdvanceSearchOption, {
177
+ NoOptionsMessage: props => /*#__PURE__*/jsx(AdvanceSearchOption, _objectSpread({
125
178
  advanceSearchLabel: searchOptionLabel,
126
- onAdvanceSearchClick: this.handleOpenModal,
127
- ...props
128
- })
179
+ onAdvanceSearchClick: this.handleOpenModal
180
+ }, props))
129
181
  };
182
+
130
183
  if (useLookupIndicator) {
131
184
  customComponents.DropdownIndicator = () => null;
132
185
  }
133
- if (!options.find((o) => o.value === defaultoption.value)) {
186
+
187
+ if (!options.find(o => o.value === defaultoption.value)) {
134
188
  options = [defaultoption, ...options];
135
189
  }
136
- return /* @__PURE__ */ React2.createElement("div", {
137
- ...containerProps,
138
- className: `${cssClassName}`
139
- }, /* @__PURE__ */ React2.createElement("div", {
140
- className: `${classNameBlock("container-selector")}`
141
- }, /* @__PURE__ */ React2.createElement(DSComboBox2, {
142
- className: `${classNameElement("dropdown-field-selector")}`,
143
- components: customComponents,
144
- onChange: this.onChangeDropdown,
145
- onKeyDown: this.onKeyDown,
146
- options,
147
- value,
148
- searchable,
149
- ...customDropdownOptions
150
- }), useLookupIndicator && /* @__PURE__ */ React2.createElement(LookupIndicator, {
151
- buttonType: "text",
152
- className: `${classNameElement("btn-selector")} ${!value ? classNameModifier("btn-placeholder", "btn-selector") : ""}`,
153
- onAdvanceSearchClick: this.handleOpenModal
154
- })), /* @__PURE__ */ React2.createElement(DSModalSearchField, {
155
- appElement,
156
- confirmLabel,
157
- customDataGridOptions,
158
- handleSelect: this.handleSelect,
159
- isOpen: openModal,
160
- modalSize,
161
- modalTitle,
162
- modalType,
163
- onClose: this.handleCloseModal,
164
- onConfirmField: this.handleConfirm,
165
- onRejectField: this.handleReject,
166
- onTabChange,
167
- placeholder,
168
- rejectLabel,
169
- searchFilters,
170
- searchGrid,
171
- tabData,
172
- tabsAnimated,
173
- tabsEnableMouseEvents,
174
- tabType
190
+
191
+ return /*#__PURE__*/jsxs("div", _objectSpread(_objectSpread({}, containerProps), {}, {
192
+ className: "".concat(cssClassName),
193
+ children: [/*#__PURE__*/_jsx("div", {
194
+ className: "".concat(classNameBlock('container-selector'))
195
+ }, void 0, /*#__PURE__*/jsx(DSComboBox2, _objectSpread({
196
+ className: "".concat(classNameElement('dropdown-field-selector')),
197
+ components: customComponents,
198
+ onChange: this.onChangeDropdown,
199
+ onKeyDown: this.onKeyDown,
200
+ options: options,
201
+ value: value,
202
+ searchable: searchable
203
+ }, customDropdownOptions)), useLookupIndicator && /*#__PURE__*/_jsx(LookupIndicator, {
204
+ buttonType: "text",
205
+ className: "".concat(classNameElement('btn-selector'), " ").concat(!value ? classNameModifier('btn-placeholder', 'btn-selector') : ''),
206
+ onAdvanceSearchClick: this.handleOpenModal
207
+ })), /*#__PURE__*/_jsx(ModalSearchField, {
208
+ appElement: appElement,
209
+ confirmLabel: confirmLabel,
210
+ customDataGridOptions: customDataGridOptions,
211
+ handleSelect: this.handleSelect,
212
+ isOpen: openModal,
213
+ modalSize: modalSize,
214
+ modalTitle: modalTitle,
215
+ modalType: modalType,
216
+ onClose: this.handleCloseModal,
217
+ onConfirmField: this.handleConfirm,
218
+ onRejectField: this.handleReject,
219
+ onTabChange: onTabChange,
220
+ placeholder: placeholder,
221
+ rejectLabel: rejectLabel,
222
+ searchFilters: searchFilters,
223
+ searchGrid: searchGrid,
224
+ tabData: tabData,
225
+ tabsAnimated: tabsAnimated,
226
+ tabsEnableMouseEvents: tabsEnableMouseEvents,
227
+ tabType: tabType
228
+ })]
175
229
  }));
176
230
  }
231
+
177
232
  }
178
- var DSSeachFieldImpl_default = DSSearchFieldImpl;
179
- export {
180
- DSModalSearchField,
181
- DSSeachFieldImpl_default as default
182
- };
183
- //# sourceMappingURL=DSSeachFieldImpl.js.map
233
+
234
+ export { DSSearchFieldImpl as default };
@@ -1,15 +1,19 @@
1
- import * as React from "react";
2
- import React2 from "react";
3
- import DSButton from "@elliemae/ds-button";
4
- const AdvanceSearchOption = ({ advanceSearchLabel = "Advanced Search", onAdvanceSearchClick = () => null }) => /* @__PURE__ */ React2.createElement(DSButton, {
5
- className: "advance-search-option-btn",
6
- labelText: advanceSearchLabel,
7
- onClick: onAdvanceSearchClick,
8
- tabIndex: -1,
9
- type: "button"
10
- });
11
- var AdvanceSearchOption_default = AdvanceSearchOption;
12
- export {
13
- AdvanceSearchOption_default as default
1
+ import _jsx from '@babel/runtime/helpers/esm/jsx';
2
+ import 'react';
3
+ import DSButton from '@elliemae/ds-button';
4
+
5
+ const AdvanceSearchOption = _ref => {
6
+ let {
7
+ advanceSearchLabel = 'Advanced Search',
8
+ onAdvanceSearchClick = () => null
9
+ } = _ref;
10
+ return /*#__PURE__*/_jsx(DSButton, {
11
+ className: "advance-search-option-btn",
12
+ labelText: advanceSearchLabel,
13
+ onClick: onAdvanceSearchClick,
14
+ tabIndex: -1,
15
+ type: "button"
16
+ });
14
17
  };
15
- //# sourceMappingURL=AdvanceSearchOption.js.map
18
+
19
+ export { AdvanceSearchOption as default };
@@ -1,21 +1,27 @@
1
- import * as React from "react";
2
- import React2 from "react";
3
- import { Search } from "@elliemae/ds-icons";
4
- import DSButton from "@elliemae/ds-button";
5
- const LookupIndicator = ({ onAdvanceSearchClick = () => null, className = "" }) => /* @__PURE__ */ React2.createElement(DSButton, {
6
- "data-testid": "ds-searchfield-search-btn",
7
- buttonType: "secondary",
8
- className,
9
- icon: /* @__PURE__ */ React2.createElement(Search, null),
10
- iconSize: "s",
11
- onClick: (e) => {
12
- e.stopPropagation();
13
- e.preventDefault();
14
- onAdvanceSearchClick();
15
- }
16
- });
17
- var LookupIndicator_default = LookupIndicator;
18
- export {
19
- LookupIndicator_default as default
1
+ import _jsx from '@babel/runtime/helpers/esm/jsx';
2
+ import 'react';
3
+ import { Search } from '@elliemae/ds-icons';
4
+ import DSButton from '@elliemae/ds-button';
5
+
6
+ var _Search;
7
+
8
+ const LookupIndicator = _ref => {
9
+ let {
10
+ onAdvanceSearchClick = () => null,
11
+ className = ''
12
+ } = _ref;
13
+ return /*#__PURE__*/_jsx(DSButton, {
14
+ "data-testid": "ds-searchfield-search-btn",
15
+ buttonType: "secondary",
16
+ className: className,
17
+ icon: _Search || (_Search = /*#__PURE__*/_jsx(Search, {})),
18
+ iconSize: "s",
19
+ onClick: e => {
20
+ e.stopPropagation();
21
+ e.preventDefault();
22
+ onAdvanceSearchClick();
23
+ }
24
+ });
20
25
  };
21
- //# sourceMappingURL=LookupIndicator.js.map
26
+
27
+ export { LookupIndicator as default };