sales-frontend-components 0.0.173 → 0.0.175
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 +1575 -1566
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +19 -2
- package/dist/index.esm.js +1575 -1567
- package/dist/index.esm.js.map +1 -1
- package/package.json +12 -12
package/dist/index.d.ts
CHANGED
|
@@ -512,6 +512,7 @@ declare function useJobVehicleSearchModal(): {
|
|
|
512
512
|
selectedJobDetail: sales_frontend_api_method.OccupationDetailResponseDto | undefined;
|
|
513
513
|
selectedVehicle: sales_frontend_api_method.VehicleTypeResponseDto | undefined;
|
|
514
514
|
riskGrade: string;
|
|
515
|
+
riskGradeCode: any;
|
|
515
516
|
hospitalizationGrade: string;
|
|
516
517
|
isOpenJobVehicleModal: boolean;
|
|
517
518
|
isConfirmed: boolean;
|
|
@@ -521,6 +522,22 @@ declare function useJobVehicleSearchModal(): {
|
|
|
521
522
|
JobVehicleSearchModalComponent: react_jsx_runtime.JSX.Element;
|
|
522
523
|
};
|
|
523
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
|
+
|
|
524
541
|
interface OrganizationSearchModalProps {
|
|
525
542
|
isOpen: boolean;
|
|
526
543
|
onClose: () => void;
|
|
@@ -668,5 +685,5 @@ declare const useDownloader: () => {
|
|
|
668
685
|
|
|
669
686
|
declare function GaIframe(): react_jsx_runtime.JSX.Element;
|
|
670
687
|
|
|
671
|
-
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 };
|
|
672
|
-
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 };
|