sales-frontend-components 0.0.172 → 0.0.174
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 +335 -269
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +20 -5
- package/dist/index.esm.js +333 -268
- package/dist/index.esm.js.map +1 -1
- package/package.json +14 -14
package/dist/index.d.ts
CHANGED
|
@@ -290,9 +290,7 @@ declare const BANK_STOCK_ICON_LIST: {
|
|
|
290
290
|
icon: react_jsx_runtime.JSX.Element;
|
|
291
291
|
}[];
|
|
292
292
|
|
|
293
|
-
declare const CustomerSearch: ({ onSelectCustomer, onSearchClear, placeholder, rootProps, ...props }: CustomerSearchProps
|
|
294
|
-
onSearchClear?: () => void;
|
|
295
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
293
|
+
declare const CustomerSearch: ({ onSelectCustomer, onSearchClear, placeholder, rootProps, size, ...props }: CustomerSearchProps) => react_jsx_runtime.JSX.Element;
|
|
296
294
|
|
|
297
295
|
interface Props$3 {
|
|
298
296
|
isOpen: boolean;
|
|
@@ -514,6 +512,7 @@ declare function useJobVehicleSearchModal(): {
|
|
|
514
512
|
selectedJobDetail: sales_frontend_api_method.OccupationDetailResponseDto | undefined;
|
|
515
513
|
selectedVehicle: sales_frontend_api_method.VehicleTypeResponseDto | undefined;
|
|
516
514
|
riskGrade: string;
|
|
515
|
+
riskGradeCode: any;
|
|
517
516
|
hospitalizationGrade: string;
|
|
518
517
|
isOpenJobVehicleModal: boolean;
|
|
519
518
|
isConfirmed: boolean;
|
|
@@ -523,6 +522,22 @@ declare function useJobVehicleSearchModal(): {
|
|
|
523
522
|
JobVehicleSearchModalComponent: react_jsx_runtime.JSX.Element;
|
|
524
523
|
};
|
|
525
524
|
|
|
525
|
+
declare const useJobVehicleSearch: () => {
|
|
526
|
+
selectedVehicle: sales_frontend_api_method.VehicleTypeResponseDto | undefined;
|
|
527
|
+
rightPanelView: string;
|
|
528
|
+
setRightPanelView: React$1.Dispatch<React$1.SetStateAction<string>>;
|
|
529
|
+
selectedJob: sales_frontend_api_method.OccupationResponseDto | null;
|
|
530
|
+
selectedJobDetail: sales_frontend_api_method.OccupationDetailResponseDto | undefined;
|
|
531
|
+
JobSearch: react_jsx_runtime.JSX.Element;
|
|
532
|
+
VehicleSearch: react_jsx_runtime.JSX.Element;
|
|
533
|
+
riskGrade: string;
|
|
534
|
+
riskGradeCode: any;
|
|
535
|
+
hospitalizationGrade: string;
|
|
536
|
+
resetJobVehicleSearch: () => void;
|
|
537
|
+
};
|
|
538
|
+
|
|
539
|
+
type Vehicle = string;
|
|
540
|
+
|
|
526
541
|
interface OrganizationSearchModalProps {
|
|
527
542
|
isOpen: boolean;
|
|
528
543
|
onClose: () => void;
|
|
@@ -670,5 +685,5 @@ declare const useDownloader: () => {
|
|
|
670
685
|
|
|
671
686
|
declare function GaIframe(): react_jsx_runtime.JSX.Element;
|
|
672
687
|
|
|
673
|
-
export { Attachment, BANK_STOCK_ICON_LIST, BANK_STOCK_SEARCH_MODAL_TABS, BankStockSearchModal, CODES, CustomerSearch, CustomerSearchModal, DeaCustomerSearchModal, DudDownload, DudUpload, EmployeeSearchModal, FormCheckbox, FormCheckboxButton, FormDatePicker, FormDateRangePicker, FormSearchJobField, FormSegmentGroup, FormSelect, FormTextField, GaIframe, JobVehicleSearchModal, OrganizationSearchModal, RIV_SEARCH_PARAM_MAP, StepIndicator, getGenderName, highlightOnSearchKeyword, resize, testSignatureBase64Data, useAddressComponent, useBankStockSearch, useCamera, useCanvasPaint, useCustomerSearch, useDownloader, useJobSearchModal, useJobVehicleSearchModal, useNationalityComponent, useNxlOneModal, useRemoteIdentityVerification, useRemoteIdentityVerificationIframe, useRemoteIdentityVerificationPopup, useSearchAddress, useSearchNationality, useSearchVisa, useVisaComponent };
|
|
674
|
-
export type { AttachedPhoto, AttachmentProps, BankStockSearchModalProps, CodeSet, DownloadProps, DownloadTargetInfo, DownloaderProps, FormSegmentGroupProps, PaintProps, Pen, RemoteIdentityVerificationSuccess, RivUrlParams, Step, StepIndicatorProps, StepItem, UseRemoteIdentityVerificationProps, VerificationResponse, cameraItemType, cameraOptions };
|
|
688
|
+
export { Attachment, BANK_STOCK_ICON_LIST, BANK_STOCK_SEARCH_MODAL_TABS, BankStockSearchModal, CODES, CustomerSearch, CustomerSearchModal, DeaCustomerSearchModal, DudDownload, DudUpload, EmployeeSearchModal, FormCheckbox, FormCheckboxButton, FormDatePicker, FormDateRangePicker, FormSearchJobField, FormSegmentGroup, FormSelect, FormTextField, GaIframe, JobVehicleSearchModal, OrganizationSearchModal, RIV_SEARCH_PARAM_MAP, StepIndicator, getGenderName, highlightOnSearchKeyword, resize, testSignatureBase64Data, useAddressComponent, useBankStockSearch, useCamera, useCanvasPaint, useCustomerSearch, useDownloader, useJobSearchModal, useJobVehicleSearch, useJobVehicleSearchModal, useNationalityComponent, useNxlOneModal, useRemoteIdentityVerification, useRemoteIdentityVerificationIframe, useRemoteIdentityVerificationPopup, useSearchAddress, useSearchNationality, useSearchVisa, useVisaComponent };
|
|
689
|
+
export type { AttachedPhoto, AttachmentProps, BankStockSearchModalProps, CodeSet, DownloadProps, DownloadTargetInfo, DownloaderProps, FormSegmentGroupProps, PaintProps, Pen, RemoteIdentityVerificationSuccess, RivUrlParams, Step, StepIndicatorProps, StepItem, UseRemoteIdentityVerificationProps, Vehicle, VerificationResponse, cameraItemType, cameraOptions };
|