kui-crm_actions 0.0.95 → 0.0.97
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/cjs/index.js +10 -8
- package/cjs/index.js.map +1 -1
- package/index.d.ts +30 -3
- package/index.js +8 -8
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -925,16 +925,43 @@ type ApartmentInspectionParams = {
|
|
925
925
|
isInspectionUpcoming?: boolean
|
926
926
|
}
|
927
927
|
|
928
|
+
type ObjectForMapParams = {
|
929
|
+
id: number
|
930
|
+
apartment: ApartmentInspectionLite
|
931
|
+
tenant: TenantParams | null
|
932
|
+
landlord: TenantParams | null
|
933
|
+
metroStations: MetroStationParams[]
|
934
|
+
location: GeolocationParams | null
|
935
|
+
}
|
936
|
+
|
928
937
|
/* global google */
|
929
938
|
|
930
939
|
|
931
940
|
type ApartmentOverlayProps = {
|
932
|
-
inspection:
|
941
|
+
inspection: ObjectForMapParams
|
942
|
+
label: string
|
933
943
|
map?: google.maps.Map
|
934
944
|
getClientLink?: (id: number) => string
|
935
945
|
getInspectionLink: (id: number, inspectionId: number) => string
|
936
946
|
}
|
937
947
|
|
938
|
-
declare const
|
948
|
+
declare const ObjectForMapOverlay: (props: ApartmentOverlayProps) => JSX.Element;
|
949
|
+
|
950
|
+
type ApartmentCardProps = {
|
951
|
+
inspection: ObjectForMapParams
|
952
|
+
onClose: () => void
|
953
|
+
getClientLink?: (id: number) => string
|
954
|
+
getInspectionLink: (id: number, inspectionId: number) => string
|
955
|
+
}
|
956
|
+
|
957
|
+
declare const ObjectForMapCard: (props: ApartmentCardProps) => JSX.Element;
|
958
|
+
|
959
|
+
type ApartmentPointProps = {
|
960
|
+
label: string
|
961
|
+
isActive: boolean
|
962
|
+
onClick: () => void
|
963
|
+
}
|
964
|
+
|
965
|
+
declare const ObjectForMapPoint: (props: ApartmentPointProps) => JSX.Element;
|
939
966
|
|
940
|
-
export { AdditionalInfoFieldsSchema, AdditionalInfoStepFields, AdditionalInfoStepSchema, ApartmentInspectionModel,
|
967
|
+
export { AdditionalInfoFieldsSchema, AdditionalInfoStepFields, AdditionalInfoStepSchema, ApartmentInspectionModel, ApartmentInspectionParams, ApartmentLinkParams, ApartmentPaymentsFormFields, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepFields, BasicApartmentInfoStepSchema, CommonInspectionFields, CommonInspectionFormFields, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepFields, DetailApartmentInfoStepSchema, FillingCheckParams, FillingInfoFieldsSchema, FillingInfoFormFields, FillingInfoStepFields, FillingListInfoStepFields, FillingListStore, HouseServicesInfoFieldsSchema, HouseServicesInfoStepFields, HouseServicesInfoStepSchema, InitialInspectionFieldsBody, InitialInspectionFormFields, InitialInspectionInfoFields, InitialInspectionPostBody, InitialInspectionRoomParams, InspectionAppraisalLiteModel, _default as InspectionFeedback, InspectionFieldsSettings, InspectionFillingCard, InspectionFillingCardProps, InspectionFillingItemFields, InspectionFillingListFields, InspectionFillingParams, InspectionImpairmentLiteModel, InspectionMeterCommonFields, InspectionMeterFields, InspectionMeterValueModel, InspectionMetersStepFields, InspectionPartialMetersStepFields, InspectionRoomImagesParams, InspectionRoomPhotoRequest, InspectionRoomsImagesFields, InventoryInspectionFieldsBody, InventoryInspectionFormFields, InventoryInspectionPostBody, InventoryMeterModel, MeterInfoStepProps, MeterValueModel, MeterValuesFields, MetersInfoFieldsSchema, MetersInfoStepFields, MetersInfoStepSchema, MetroStationParams, ObjectForMapCard, ObjectForMapOverlay, ObjectForMapParams, ObjectForMapPoint, PartialMeterInfoFields, PartialMeterInfoStepProps, PartialMeterModel, PostApartmentInspectionRequest, RegularInspectionFormFields, RegularInspectionPostBody, RegularlyInspectionFieldsBody, RoomImagesParams, RoomsApartmentInfoFieldsSchema, RoomsApartmentInfoStepFields, RoomsApartmentInfoStepSchema, SecurityApartmentInfoFieldsSchema, SecurityApartmentInfoStepFields, SecurityApartmentInfoStepSchema, TelecommunicationsInfoFieldsSchema, TelecommunicationsInfoStepFields, TelecommunicationsInfoStepSchema, TenantParams, TransferInspectionFieldsBody, TransferInspectionFormFields, TransferInspectionPostBody, TransferInspectionTypes, WaterMeterFieldsSchema, apartmentFields, getAdditionalInfoStepFields, getBasicApartmentInfoFields, getDetailApartmentInfoFields, getFillingInfoFields, getHouseServicesInfoStep, getMetersInfoStepFields, getPartialMeterInfoSchema, getRoomsApartmentInfoFields, getRoomsImagesSteps, getSecurityApartmentInfoFields, getTelecommunicationsInfoStepFields, getWaterMeterFields, inspectionsRequestBody, inspectionsRequests, renderMetersSteps, useFillingList, useMetersValues };
|
package/index.js
CHANGED
@@ -1042,9 +1042,9 @@ var useFillingList = function (apartmentId, formStore, fillingStore) {
|
|
1042
1042
|
}, [fillingStore.fillingList, fillingStore.loader.isLoading]);
|
1043
1043
|
};
|
1044
1044
|
|
1045
|
-
var
|
1046
|
-
var
|
1047
|
-
return (jsx(Button, __assign({ size: "xs", variant: isActive ? "primary" : "white", onClick: onClick }, { children:
|
1045
|
+
var ObjectForMapPoint = function (props) {
|
1046
|
+
var label = props.label, onClick = props.onClick, isActive = props.isActive;
|
1047
|
+
return (jsx(Button, __assign({ size: "xs", variant: isActive ? "primary" : "white", onClick: onClick }, { children: label })));
|
1048
1048
|
};
|
1049
1049
|
|
1050
1050
|
var MetroStation = function (props) {
|
@@ -1066,7 +1066,7 @@ var StyledWrapper$1 = styled(Grid)(templateObject_1$2 || (templateObject_1$2 = _
|
|
1066
1066
|
var StyledPhoneIcon = styled(PhoneIcon)(templateObject_2$1 || (templateObject_2$1 = __makeTemplateObject(["\n margin-right: 6px;\n transform: rotate(15deg);\n path {\n stroke: ", ";\n }\n"], ["\n margin-right: 6px;\n transform: rotate(15deg);\n path {\n stroke: ", ";\n }\n"])), theme.palette.grey.sixty);
|
1067
1067
|
var templateObject_1$2, templateObject_2$1;
|
1068
1068
|
|
1069
|
-
var
|
1069
|
+
var ObjectForMapCard = function (props) {
|
1070
1070
|
var inspection = props.inspection, onClose = props.onClose, getClientLink = props.getClientLink, getInspectionLink = props.getInspectionLink;
|
1071
1071
|
var apartment = inspection.apartment, tenant = inspection.tenant, landlord = inspection.landlord, metroStations = inspection.metroStations;
|
1072
1072
|
var client = tenant || landlord;
|
@@ -1081,13 +1081,13 @@ var StyledCloseButton = styled(Button)(templateObject_4 || (templateObject_4 = _
|
|
1081
1081
|
var StyledClientLink = styled(Link)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n max-width: calc(100% - 140px);\n"], ["\n max-width: calc(100% - 140px);\n"])));
|
1082
1082
|
var templateObject_1$1, templateObject_2, templateObject_3, templateObject_4, templateObject_5;
|
1083
1083
|
|
1084
|
-
var
|
1085
|
-
var inspection = props.inspection, map = props.map, other = __rest(props, ["inspection", "map"]);
|
1084
|
+
var ObjectForMapOverlay = function (props) {
|
1085
|
+
var inspection = props.inspection, map = props.map, label = props.label, other = __rest(props, ["inspection", "map", "label"]);
|
1086
1086
|
var _a = useMapCards(inspection.location, map), ref = _a.ref, isOpen = _a.isOpen, closeCard = _a.closeCard, toggleCard = _a.toggleCard;
|
1087
|
-
return (jsx(MapOverlay, __assign({ map: map, position: inspection.location }, { children: jsxs(StyledWrapper, __assign({ ref: ref }, { children: [jsx(
|
1087
|
+
return (jsx(MapOverlay, __assign({ map: map, position: inspection.location }, { children: jsxs(StyledWrapper, __assign({ ref: ref }, { children: [jsx(ObjectForMapPoint, { label: label, isActive: isOpen, onClick: toggleCard }), isOpen && (jsx(ObjectForMapCard, __assign({ inspection: inspection, onClose: closeCard }, other)))] })) })));
|
1088
1088
|
};
|
1089
1089
|
var StyledWrapper = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: relative;\n"], ["\n position: relative;\n"])));
|
1090
1090
|
var templateObject_1;
|
1091
1091
|
|
1092
|
-
export { AdditionalInfoFieldsSchema, AdditionalInfoStepSchema,
|
1092
|
+
export { AdditionalInfoFieldsSchema, AdditionalInfoStepSchema, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepSchema, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepSchema, FillingInfoFieldsSchema, FillingListStore, HouseServicesInfoFieldsSchema, HouseServicesInfoStepSchema, index as InspectionFeedback, InspectionFillingCard, MetersInfoFieldsSchema, MetersInfoStepSchema, ObjectForMapCard, ObjectForMapOverlay, ObjectForMapPoint, RoomsApartmentInfoFieldsSchema, RoomsApartmentInfoStepSchema, SecurityApartmentInfoFieldsSchema, SecurityApartmentInfoStepSchema, TelecommunicationsInfoFieldsSchema, TelecommunicationsInfoStepSchema, WaterMeterFieldsSchema, apartmentFields, getAdditionalInfoStepFields, getBasicApartmentInfoFields, getDetailApartmentInfoFields, getFillingInfoFields, getHouseServicesInfoStep, getMetersInfoStepFields, getPartialMeterInfoSchema, getRoomsApartmentInfoFields, getRoomsImagesSteps, getSecurityApartmentInfoFields, getTelecommunicationsInfoStepFields, getWaterMeterFields, inspectionsRequestBody, inspectionsRequests, renderMetersSteps, useFillingList, useMetersValues };
|
1093
1093
|
//# sourceMappingURL=index.js.map
|