sales-frontend-components 0.0.106 → 0.0.107
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/dist/index.cjs.js +109 -34
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +11 -4
- package/dist/index.esm.js +109 -35
- package/dist/index.esm.js.map +1 -1
- package/package.json +15 -15
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { CheckboxButtonProps, CheckboxProps, DatePickerSingleHtmlProps, DatePick
|
|
|
4
4
|
import * as React$1 from 'react';
|
|
5
5
|
import React__default from 'react';
|
|
6
6
|
import * as sales_frontend_api_method from 'sales-frontend-api/method';
|
|
7
|
-
import { AddressStandardizationResponseDto, AddressResponseDto, CodeDto, CustomerSearchProps, NationalityResponseDto, VisaStatusResponseDto, PersonalCustomerProfileResponseDto, EmployeeProfileResponseDto, OccupationResponseDto, OrganizationProfileResponse, RemoteIdentityVerificationSystemTokenRequestDto, ApiConfig } from 'sales-frontend-api/method';
|
|
7
|
+
import { AddressStandardizationResponseDto, AddressResponseDto, CodeDto, CustomerSearchProps, CustomerDto, NationalityResponseDto, VisaStatusResponseDto, PersonalCustomerProfileResponseDto, EmployeeProfileResponseDto, OccupationResponseDto, OrganizationProfileResponse, RemoteIdentityVerificationSystemTokenRequestDto, ApiConfig } from 'sales-frontend-api/method';
|
|
8
8
|
|
|
9
9
|
declare const FormCheckboxButton: <TFormValues extends FieldValues>({ name, control, disabled, children, ...props }: Pick<UseControllerProps<TFormValues>, "name" | "control" | "disabled"> & Omit<CheckboxButtonProps, "id">) => react_jsx_runtime.JSX.Element;
|
|
10
10
|
|
|
@@ -189,12 +189,12 @@ interface AddressStandardization {
|
|
|
189
189
|
land: AddressStandardizationResponseDto;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
-
interface Props$
|
|
192
|
+
interface Props$4 {
|
|
193
193
|
setValue: (address: AddressComponentProps) => void;
|
|
194
194
|
onClose: () => void;
|
|
195
195
|
isOpen: boolean;
|
|
196
196
|
}
|
|
197
|
-
declare function useSearchAddress({ setValue, onClose, isOpen }: Props$
|
|
197
|
+
declare function useSearchAddress({ setValue, onClose, isOpen }: Props$4): {
|
|
198
198
|
selectedStandardizationAddress: AddressStandardization | undefined;
|
|
199
199
|
onStandardizationChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
200
200
|
onAddressSearchClear: () => void;
|
|
@@ -238,6 +238,13 @@ declare function useBankStockSearch({ onSelect }: {
|
|
|
238
238
|
|
|
239
239
|
declare const CustomerSearch: ({ onSelect }: CustomerSearchProps) => react_jsx_runtime.JSX.Element;
|
|
240
240
|
|
|
241
|
+
interface Props$3 {
|
|
242
|
+
isOpen: boolean;
|
|
243
|
+
closeModal: () => void;
|
|
244
|
+
onSelect?: (customer: CustomerDto) => void;
|
|
245
|
+
}
|
|
246
|
+
declare function CustomerSearchModal({ isOpen, closeModal, onSelect }: Props$3): react_jsx_runtime.JSX.Element;
|
|
247
|
+
|
|
241
248
|
interface Props$2 {
|
|
242
249
|
setValue: (nationality: NationalityResponseDto) => void;
|
|
243
250
|
onClose: () => void;
|
|
@@ -506,5 +513,5 @@ declare const useRemoteIdentityVerificationPopup: (config: UseRemoteIdentityVeri
|
|
|
506
513
|
isCreatingUrl: boolean;
|
|
507
514
|
};
|
|
508
515
|
|
|
509
|
-
export { Attachment, BankStockSearchModal, CODES, CustomerSearch, DeaCustomerSearchModal, EmployeeSearchModal, FormCheckbox, FormCheckboxButton, FormDatePicker, FormDateRangePicker, FormSearchJobField, FormSegmentGroup, FormSelect, FormTextField, JobVehicleSearchModal, OrganizationSearchModal, StepIndicator, resize, testSignatureBase64Data, useAddressComponent, useBankStockSearch, useCamera, useCanvasPaint, useJobSearchModal, useJobVehicleSearchModal, useNationalityComponent, useNxlOneModal, useRemoteIdentityVerification, useRemoteIdentityVerificationIframe, useRemoteIdentityVerificationPopup, useSearchAddress, useSearchNationality, useSearchVisa, useVisaComponent };
|
|
516
|
+
export { Attachment, BankStockSearchModal, CODES, CustomerSearch, CustomerSearchModal, DeaCustomerSearchModal, EmployeeSearchModal, FormCheckbox, FormCheckboxButton, FormDatePicker, FormDateRangePicker, FormSearchJobField, FormSegmentGroup, FormSelect, FormTextField, JobVehicleSearchModal, OrganizationSearchModal, StepIndicator, resize, testSignatureBase64Data, useAddressComponent, useBankStockSearch, useCamera, useCanvasPaint, useJobSearchModal, useJobVehicleSearchModal, useNationalityComponent, useNxlOneModal, useRemoteIdentityVerification, useRemoteIdentityVerificationIframe, useRemoteIdentityVerificationPopup, useSearchAddress, useSearchNationality, useSearchVisa, useVisaComponent };
|
|
510
517
|
export type { AttachedPhoto, AttachmentProps, BankStockSearchModalProps, CodeSet, DownloadProps, FormSegmentGroupProps, NxlOneProps, NxlOneResponse, PaintProps, Pen, RemoteIdentityVerificationSuccess, RivUrlParams, Step, StepIndicatorProps, StepItem, UseRemoteIdentityVerificationProps, VerificationResponse, cameraItemType, cameraOptions };
|
package/dist/index.esm.js
CHANGED
|
@@ -234,12 +234,12 @@ const highlightOnSearchKeyword$1 = (originalText, targetString) => {
|
|
|
234
234
|
return originalText;
|
|
235
235
|
};
|
|
236
236
|
|
|
237
|
-
const cx$
|
|
238
|
-
const { InputBox: InputBox$
|
|
237
|
+
const cx$k = classNames.bind(styles);
|
|
238
|
+
const { InputBox: InputBox$4, Input: Input$4 } = FormCore;
|
|
239
239
|
const AddressSearchInitialText = () => {
|
|
240
|
-
return /* @__PURE__ */ jsxs("div", { className: cx$
|
|
241
|
-
/* @__PURE__ */ jsx("p", { className: cx$
|
|
242
|
-
/* @__PURE__ */ jsxs("ul", { className: cx$
|
|
240
|
+
return /* @__PURE__ */ jsxs("div", { className: cx$k("search-result-list"), children: [
|
|
241
|
+
/* @__PURE__ */ jsx("p", { className: cx$k("guide-title"), children: "\uC774\uB807\uAC8C \uAC80\uC0C9\uD574 \uBCF4\uC138\uC694." }),
|
|
242
|
+
/* @__PURE__ */ jsxs("ul", { className: cx$k("guide"), children: [
|
|
243
243
|
/* @__PURE__ */ jsx("li", { children: "\uB3C4\uB85C\uBA85/\uC9C0\uBA85\uACFC \uAC74\uBB3C\uBC88\uD638\uB97C \uD568\uAED8 \uC785\uB825\uD574\uC8FC\uC138\uC694" }),
|
|
244
244
|
/* @__PURE__ */ jsx("li", { children: "\uC608) 63\uB85C 50, \uC5EC\uC758\uB3C4\uB3D9 60" }),
|
|
245
245
|
/* @__PURE__ */ jsx("li", { children: "\uC9C0\uBA85\uC740 \uB3D9/\uC74D/\uBA74/\uB9AC\uB85C \uC785\uB825\uD574\uC8FC\uC138\uC694" }),
|
|
@@ -255,8 +255,8 @@ const AddressSearchResult = ({
|
|
|
255
255
|
searchKeyword,
|
|
256
256
|
selectedAddress
|
|
257
257
|
}) => {
|
|
258
|
-
return /* @__PURE__ */ jsxs("div", { className: cx$
|
|
259
|
-
/* @__PURE__ */ jsxs("p", { className: cx$
|
|
258
|
+
return /* @__PURE__ */ jsxs("div", { className: cx$k("search-result-list"), children: [
|
|
259
|
+
/* @__PURE__ */ jsxs("p", { className: cx$k("guide-title"), children: [
|
|
260
260
|
"\uCD1D ",
|
|
261
261
|
/* @__PURE__ */ jsx("span", { className: "text-primary", children: addressSearchList.length }),
|
|
262
262
|
"\uAC74\uC758 \uAC80\uC0C9\uACB0\uACFC"
|
|
@@ -268,15 +268,15 @@ const AddressSearchResult = ({
|
|
|
268
268
|
return {
|
|
269
269
|
value: JSON.stringify(item),
|
|
270
270
|
select: item.roadNameBaseAddress === selectedAddress?.roadNameBaseAddress && item.roadNameDetailAddress === selectedAddress?.roadNameDetailAddress && item.mainBuildingName === selectedAddress?.mainBuildingName,
|
|
271
|
-
label: /* @__PURE__ */ jsxs("div", { className: cx$
|
|
272
|
-
/* @__PURE__ */ jsx("div", { className: cx$
|
|
273
|
-
/* @__PURE__ */ jsx("div", { className: cx$
|
|
274
|
-
/* @__PURE__ */ jsxs("div", { className: cx$
|
|
275
|
-
/* @__PURE__ */ jsx("span", { className: cx$
|
|
271
|
+
label: /* @__PURE__ */ jsxs("div", { className: cx$k("search-result"), children: [
|
|
272
|
+
/* @__PURE__ */ jsx("div", { className: cx$k("zipcode"), children: highlightOnSearchKeyword$1(`${item.firstPostalCode}${item.secondPostalCode}`, searchKeyword) }),
|
|
273
|
+
/* @__PURE__ */ jsx("div", { className: cx$k("divider") }),
|
|
274
|
+
/* @__PURE__ */ jsxs("div", { className: cx$k("address-info"), children: [
|
|
275
|
+
/* @__PURE__ */ jsx("span", { className: cx$k("address"), children: highlightOnSearchKeyword$1(
|
|
276
276
|
`${item.roadNameBaseAddress} ${item.roadNameDetailAddress} ${item.mainBuildingName}`,
|
|
277
277
|
searchKeyword
|
|
278
278
|
) }),
|
|
279
|
-
/* @__PURE__ */ jsx("span", { className: cx$
|
|
279
|
+
/* @__PURE__ */ jsx("span", { className: cx$k("old-address"), children: highlightOnSearchKeyword$1(
|
|
280
280
|
`${item.landNumberBaseAddress} ${item.landNumberDetailAddress}`,
|
|
281
281
|
searchKeyword
|
|
282
282
|
) })
|
|
@@ -285,7 +285,7 @@ const AddressSearchResult = ({
|
|
|
285
285
|
id: JSON.stringify(item)
|
|
286
286
|
};
|
|
287
287
|
}),
|
|
288
|
-
className: cx$
|
|
288
|
+
className: cx$k("radio-group"),
|
|
289
289
|
name: "address-search",
|
|
290
290
|
size: "medium",
|
|
291
291
|
defaultValue: "",
|
|
@@ -307,7 +307,7 @@ const AddressSearchDetailInput = ({
|
|
|
307
307
|
detailAddressInput
|
|
308
308
|
}) => {
|
|
309
309
|
const { land, road } = selectedStandardizationAddress;
|
|
310
|
-
return /* @__PURE__ */ jsxs("div", { className: cx$
|
|
310
|
+
return /* @__PURE__ */ jsxs("div", { className: cx$k("search-result-list"), children: [
|
|
311
311
|
/* @__PURE__ */ jsx(
|
|
312
312
|
Radio.Root,
|
|
313
313
|
{
|
|
@@ -317,21 +317,21 @@ const AddressSearchDetailInput = ({
|
|
|
317
317
|
children: /* @__PURE__ */ jsx(
|
|
318
318
|
Radio.Item,
|
|
319
319
|
{
|
|
320
|
-
className: cx$
|
|
320
|
+
className: cx$k("radio-group"),
|
|
321
321
|
value: JSON.stringify(selectedStandardizationAddress),
|
|
322
322
|
onChange: onStandardizationChange,
|
|
323
|
-
children: /* @__PURE__ */ jsxs("div", { className: cx$
|
|
323
|
+
children: /* @__PURE__ */ jsxs("div", { className: cx$k("search-result"), children: [
|
|
324
324
|
/* @__PURE__ */ jsx(
|
|
325
325
|
"div",
|
|
326
326
|
{
|
|
327
|
-
className: cx$
|
|
327
|
+
className: cx$k("zipcode"),
|
|
328
328
|
children: `${selectedStandardizationAddress.land?.firstPostalCode}${land?.secondPostalCode}`
|
|
329
329
|
}
|
|
330
330
|
),
|
|
331
|
-
/* @__PURE__ */ jsx("div", { className: cx$
|
|
332
|
-
/* @__PURE__ */ jsxs("div", { className: cx$
|
|
333
|
-
/* @__PURE__ */ jsx("span", { className: cx$
|
|
334
|
-
/* @__PURE__ */ jsx("span", { className: cx$
|
|
331
|
+
/* @__PURE__ */ jsx("div", { className: cx$k("divider") }),
|
|
332
|
+
/* @__PURE__ */ jsxs("div", { className: cx$k("address-info"), children: [
|
|
333
|
+
/* @__PURE__ */ jsx("span", { className: cx$k("address"), children: `${road?.baseAddress} ${road?.detailAddress}` }),
|
|
334
|
+
/* @__PURE__ */ jsx("span", { className: cx$k("old-address"), children: `${land?.baseAddress} ${land?.detailAddress}` })
|
|
335
335
|
] })
|
|
336
336
|
] })
|
|
337
337
|
}
|
|
@@ -388,8 +388,8 @@ function AddressComponent({ isOpen, onClose, setValue }) {
|
|
|
388
388
|
/* @__PURE__ */ jsxs(Modal.Content, { children: [
|
|
389
389
|
/* @__PURE__ */ jsx(Modal.Header, { headerTitle: "\uC8FC\uC18C \uAC80\uC0C9", showCloseButton: true }),
|
|
390
390
|
/* @__PURE__ */ jsxs(Modal.Body, { children: [
|
|
391
|
-
/* @__PURE__ */ jsx(InputBox$
|
|
392
|
-
Input$
|
|
391
|
+
/* @__PURE__ */ jsx(InputBox$4, { clearable: true, endElement: /* @__PURE__ */ jsx(IconMainUiSearch, { onClick: search }), onClear: onAddressSearchClear, children: /* @__PURE__ */ jsx(
|
|
392
|
+
Input$4,
|
|
393
393
|
{
|
|
394
394
|
...addressSearchStep !== "detail-input" && { autoFocus: true },
|
|
395
395
|
onChange: onSearch,
|
|
@@ -1061,7 +1061,7 @@ const useCustomerSearch = (onSelect) => {
|
|
|
1061
1061
|
};
|
|
1062
1062
|
};
|
|
1063
1063
|
|
|
1064
|
-
const cx$
|
|
1064
|
+
const cx$j = classNames.bind(styles$2);
|
|
1065
1065
|
const highlightOnSearchKeyword = (originalText, targetString) => {
|
|
1066
1066
|
if (!targetString || !originalText?.includes(targetString)) {
|
|
1067
1067
|
return originalText;
|
|
@@ -1078,7 +1078,7 @@ const highlightOnSearchKeyword = (originalText, targetString) => {
|
|
|
1078
1078
|
}
|
|
1079
1079
|
return replacedText;
|
|
1080
1080
|
};
|
|
1081
|
-
const { InputBox: InputBox$
|
|
1081
|
+
const { InputBox: InputBox$3, Input: Input$3 } = FormCore;
|
|
1082
1082
|
const CustomerSearch = ({ onSelect }) => {
|
|
1083
1083
|
const {
|
|
1084
1084
|
triggerRef,
|
|
@@ -1093,9 +1093,9 @@ const CustomerSearch = ({ onSelect }) => {
|
|
|
1093
1093
|
onClear,
|
|
1094
1094
|
handleSelectItem
|
|
1095
1095
|
} = useCustomerSearch(onSelect);
|
|
1096
|
-
return /* @__PURE__ */ jsxs("div", { className: cx$
|
|
1097
|
-
/* @__PURE__ */ jsx("div", { className: cx$
|
|
1098
|
-
Input$
|
|
1096
|
+
return /* @__PURE__ */ jsxs("div", { className: cx$j("container"), children: [
|
|
1097
|
+
/* @__PURE__ */ jsx("div", { className: cx$j("search-bar"), children: /* @__PURE__ */ jsx(InputBox$3, { endElement: /* @__PURE__ */ jsx(IconMainUiSearch, { onClick: search }), onClear, clearable: true, children: /* @__PURE__ */ jsx(
|
|
1098
|
+
Input$3,
|
|
1099
1099
|
{
|
|
1100
1100
|
onChange: onSearchInputChange,
|
|
1101
1101
|
onKeyUp,
|
|
@@ -1105,14 +1105,14 @@ const CustomerSearch = ({ onSelect }) => {
|
|
|
1105
1105
|
ref: triggerRef
|
|
1106
1106
|
}
|
|
1107
1107
|
) }) }),
|
|
1108
|
-
isOpen && customerList.length > 0 && /* @__PURE__ */ jsx(DropDown, { children: /* @__PURE__ */ jsx("div", { className: cx$
|
|
1109
|
-
/* @__PURE__ */ jsx("div", { className: cx$
|
|
1110
|
-
/* @__PURE__ */ jsxs("div", { className: cx$
|
|
1108
|
+
isOpen && customerList.length > 0 && /* @__PURE__ */ jsx(DropDown, { children: /* @__PURE__ */ jsx("div", { className: cx$j("result-container"), children: /* @__PURE__ */ jsx(List, { children: customerList.map((customer) => /* @__PURE__ */ jsx(ListItem, { onClick: () => handleSelectItem(customer), selectable: true, children: /* @__PURE__ */ jsxs("div", { className: cx$j("customer-item"), children: [
|
|
1109
|
+
/* @__PURE__ */ jsx("div", { className: cx$j("name"), children: highlightOnSearchKeyword(customer.customerName || "", searchKeyword) }),
|
|
1110
|
+
/* @__PURE__ */ jsxs("div", { className: cx$j("details"), children: [
|
|
1111
1111
|
/* @__PURE__ */ jsx("span", { children: customer.birthDate }),
|
|
1112
|
-
/* @__PURE__ */ jsx("span", { className: cx$
|
|
1112
|
+
/* @__PURE__ */ jsx("span", { className: cx$j("separator"), children: "|" }),
|
|
1113
1113
|
/* @__PURE__ */ jsx("span", { children: customer.genderCode }),
|
|
1114
1114
|
customer.baseAddress && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1115
|
-
/* @__PURE__ */ jsx("span", { className: cx$
|
|
1115
|
+
/* @__PURE__ */ jsx("span", { className: cx$j("separator"), children: "|" }),
|
|
1116
1116
|
/* @__PURE__ */ jsx("span", { children: customer.baseAddress })
|
|
1117
1117
|
] })
|
|
1118
1118
|
] })
|
|
@@ -1120,6 +1120,80 @@ const CustomerSearch = ({ onSelect }) => {
|
|
|
1120
1120
|
] });
|
|
1121
1121
|
};
|
|
1122
1122
|
|
|
1123
|
+
const cx$i = classNames.bind(styles$2);
|
|
1124
|
+
const { InputBox: InputBox$2, Input: Input$2 } = FormCore;
|
|
1125
|
+
function CustomerSearchModal({ isOpen, closeModal, onSelect }) {
|
|
1126
|
+
const {
|
|
1127
|
+
triggerRef,
|
|
1128
|
+
searchInput,
|
|
1129
|
+
customerList,
|
|
1130
|
+
searchKeyword,
|
|
1131
|
+
onSearchInputChange,
|
|
1132
|
+
setSearchKeyword,
|
|
1133
|
+
setSearchInput,
|
|
1134
|
+
setCustomerList,
|
|
1135
|
+
onKeyUp,
|
|
1136
|
+
search,
|
|
1137
|
+
onClear,
|
|
1138
|
+
handleSelectItem
|
|
1139
|
+
} = useCustomerSearch(onSelect);
|
|
1140
|
+
return /* @__PURE__ */ jsxs(Modal.Root, { isOpen, onClose: closeModal, modalSize: "full-screen", children: [
|
|
1141
|
+
/* @__PURE__ */ jsx(Modal.Overlay, {}),
|
|
1142
|
+
/* @__PURE__ */ jsxs(Modal.Content, { children: [
|
|
1143
|
+
/* @__PURE__ */ jsx(Modal.Header, { headerTitle: "\uACE0\uAC1D \uAC80\uC0C9", showCloseButton: true }),
|
|
1144
|
+
/* @__PURE__ */ jsxs(Modal.Body, { children: [
|
|
1145
|
+
/* @__PURE__ */ jsx(InputBox$2, { endElement: /* @__PURE__ */ jsx(IconMainUiSearch, { onClick: search }), onClear, clearable: true, children: /* @__PURE__ */ jsx(
|
|
1146
|
+
Input$2,
|
|
1147
|
+
{
|
|
1148
|
+
onChange: onSearchInputChange,
|
|
1149
|
+
onKeyUp,
|
|
1150
|
+
value: searchInput,
|
|
1151
|
+
placeholder: "\uACE0\uAC1D\uBA85\uC744 \uB450 \uAE00\uC790 \uC774\uC0C1 \uC785\uB825\uD574\uC8FC\uC138\uC694.",
|
|
1152
|
+
size: "large",
|
|
1153
|
+
ref: triggerRef
|
|
1154
|
+
}
|
|
1155
|
+
) }),
|
|
1156
|
+
searchKeyword && /* @__PURE__ */ jsxs("p", { className: cx$i("result-count"), children: [
|
|
1157
|
+
"\uCD1D ",
|
|
1158
|
+
/* @__PURE__ */ jsx("span", { className: "text-primary", children: customerList.length }),
|
|
1159
|
+
"\uAC74\uC758 \uAC80\uC0C9\uACB0\uACFC"
|
|
1160
|
+
] }),
|
|
1161
|
+
searchKeyword && customerList.length === 0 && /* @__PURE__ */ jsxs("div", { className: cx$i("search-result"), children: [
|
|
1162
|
+
"`",
|
|
1163
|
+
/* @__PURE__ */ jsx("span", { className: "text-primary", children: searchKeyword }),
|
|
1164
|
+
"`\uC5D0 \uB300\uD55C \uAC80\uC0C9\uACB0\uACFC\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4."
|
|
1165
|
+
] }),
|
|
1166
|
+
searchKeyword && customerList.length > 0 && /* @__PURE__ */ jsx("div", { children: customerList.length > 0 && /* @__PURE__ */ jsx(List, { rootProps: { style: { width: "100%" } }, children: customerList.map((customer) => /* @__PURE__ */ jsx(
|
|
1167
|
+
ListItem,
|
|
1168
|
+
{
|
|
1169
|
+
onClick: () => {
|
|
1170
|
+
handleSelectItem(customer);
|
|
1171
|
+
setSearchKeyword("");
|
|
1172
|
+
setSearchInput("");
|
|
1173
|
+
setCustomerList([]);
|
|
1174
|
+
closeModal();
|
|
1175
|
+
},
|
|
1176
|
+
selectable: true,
|
|
1177
|
+
children: /* @__PURE__ */ jsxs("div", { className: cx$i("customer-item", "modal"), children: [
|
|
1178
|
+
/* @__PURE__ */ jsx("div", { className: cx$i("name"), children: highlightOnSearchKeyword$1(customer.customerName || "", searchKeyword) }),
|
|
1179
|
+
/* @__PURE__ */ jsxs("div", { className: cx$i("details", "modal"), children: [
|
|
1180
|
+
/* @__PURE__ */ jsx("span", { children: customer.birthDate }),
|
|
1181
|
+
/* @__PURE__ */ jsx("span", { className: cx$i("separator"), children: "|" }),
|
|
1182
|
+
/* @__PURE__ */ jsx("span", { children: customer.genderCode }),
|
|
1183
|
+
customer.baseAddress && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1184
|
+
/* @__PURE__ */ jsx("span", { className: cx$i("separator"), children: "|" }),
|
|
1185
|
+
/* @__PURE__ */ jsx("span", { children: customer.baseAddress })
|
|
1186
|
+
] })
|
|
1187
|
+
] })
|
|
1188
|
+
] })
|
|
1189
|
+
},
|
|
1190
|
+
customer.customerId
|
|
1191
|
+
)) }) })
|
|
1192
|
+
] })
|
|
1193
|
+
] })
|
|
1194
|
+
] });
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1123
1197
|
const cx$h = classNames.bind(styles$3);
|
|
1124
1198
|
const { InputBox: InputBox$1, Input: Input$1 } = FormCore;
|
|
1125
1199
|
const favoriteList = [
|
|
@@ -3977,5 +4051,5 @@ const useRemoteIdentityVerificationPopup = (config) => {
|
|
|
3977
4051
|
};
|
|
3978
4052
|
};
|
|
3979
4053
|
|
|
3980
|
-
export { Attachment, BankStockSearchModal, CODES, CustomerSearch, DeaCustomerSearchModal, EmployeeSearchModal, FormCheckbox, FormCheckboxButton, FormDatePicker, FormDateRangePicker, FormSearchJobField, FormSegmentGroup, FormSelect, FormTextField, JobVehicleSearchModal, OrganizationSearchModal, StepIndicator, resize, testSignatureBase64Data, useAddressComponent, useBankStockSearch, useCamera, useCanvasPaint, useJobSearchModal, useJobVehicleSearchModal, useNationalityComponent, useNxlOneModal, useRemoteIdentityVerification, useRemoteIdentityVerificationIframe, useRemoteIdentityVerificationPopup, useSearchAddress, useSearchNationality, useSearchVisa, useVisaComponent };
|
|
4054
|
+
export { Attachment, BankStockSearchModal, CODES, CustomerSearch, CustomerSearchModal, DeaCustomerSearchModal, EmployeeSearchModal, FormCheckbox, FormCheckboxButton, FormDatePicker, FormDateRangePicker, FormSearchJobField, FormSegmentGroup, FormSelect, FormTextField, JobVehicleSearchModal, OrganizationSearchModal, StepIndicator, resize, testSignatureBase64Data, useAddressComponent, useBankStockSearch, useCamera, useCanvasPaint, useJobSearchModal, useJobVehicleSearchModal, useNationalityComponent, useNxlOneModal, useRemoteIdentityVerification, useRemoteIdentityVerificationIframe, useRemoteIdentityVerificationPopup, useSearchAddress, useSearchNationality, useSearchVisa, useVisaComponent };
|
|
3981
4055
|
//# sourceMappingURL=index.esm.js.map
|