sales-frontend-components 0.0.139 → 0.0.140
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 +4 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +4 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +14 -14
package/dist/index.d.ts
CHANGED
|
@@ -467,6 +467,7 @@ declare function useJobSearchModal(): {
|
|
|
467
467
|
|
|
468
468
|
declare function useJobVehicleSearchModal(): {
|
|
469
469
|
selectedJob: sales_frontend_api_method.OccupationResponseDto | null;
|
|
470
|
+
selectedJobDetail: any;
|
|
470
471
|
selectedVehicle: sales_frontend_api_method.VehicleTypeResponseDto | undefined;
|
|
471
472
|
riskGrade: string;
|
|
472
473
|
hospitalizationGrade: string;
|
package/dist/index.esm.js
CHANGED
|
@@ -3094,6 +3094,7 @@ const useJobVehicleSearch = () => {
|
|
|
3094
3094
|
rightPanelView,
|
|
3095
3095
|
setRightPanelView,
|
|
3096
3096
|
selectedJob,
|
|
3097
|
+
selectedJobDetail,
|
|
3097
3098
|
JobSearch: JobSearchComponent,
|
|
3098
3099
|
VehicleSearch: VehicleSearchComponent,
|
|
3099
3100
|
riskGrade,
|
|
@@ -3113,7 +3114,8 @@ function useJobVehicleSearchModal() {
|
|
|
3113
3114
|
VehicleSearch,
|
|
3114
3115
|
riskGrade,
|
|
3115
3116
|
hospitalizationGrade,
|
|
3116
|
-
resetJobVehicleSearch
|
|
3117
|
+
resetJobVehicleSearch,
|
|
3118
|
+
selectedJobDetail
|
|
3117
3119
|
} = useJobVehicleSearch();
|
|
3118
3120
|
const { isOpen, openModal, closeModal } = useModalState();
|
|
3119
3121
|
const validate = () => {
|
|
@@ -3144,6 +3146,7 @@ function useJobVehicleSearchModal() {
|
|
|
3144
3146
|
};
|
|
3145
3147
|
return {
|
|
3146
3148
|
selectedJob,
|
|
3149
|
+
selectedJobDetail,
|
|
3147
3150
|
selectedVehicle,
|
|
3148
3151
|
riskGrade,
|
|
3149
3152
|
hospitalizationGrade,
|