kui-crm_actions 0.0.73 → 0.0.75

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/index.d.ts CHANGED
@@ -5,6 +5,7 @@ import { Loader, MultistepForm, PhoneParams as PhoneParams$1 } from 'kui-utils';
5
5
  import * as yup from 'yup';
6
6
  import { InputWithAddressFields } from 'kui-complex/dist/InputWithAddressAutocomplete';
7
7
  import { ReactElement } from 'react';
8
+ import { UseFormReturn } from 'react-hook-form';
8
9
 
9
10
  declare const getPartialMeterInfoSchema: (valuesFields: InputParams<any>[]) => yup.ObjectSchema<{
10
11
  [x: string]: any;
@@ -26,20 +27,23 @@ type PartialMeterInfoStepProps = {
26
27
  withCheckValue?: boolean
27
28
  }
28
29
 
30
+ type PartialMeterValuesFields = {
31
+ value?: string | number | null
32
+ T1?: string | number | null
33
+ T2?: string | number | null
34
+ T3?: string | number | null
35
+ }
36
+
29
37
  type PartialMeterInfoFields = {
30
38
  id: number
31
39
  resource: ResourceTypes
32
40
  type?: MeterTypes
33
41
  number: string
34
- value?: string | number | null
35
- T1?: string | number | null
36
- T2?: string | number | null
37
- T3?: string | number | null
38
42
  images: FileStore[]
39
- maxValue?: number | string
40
- }
43
+ maxValue?: PartialMeterValuesFields
44
+ } & PartialMeterValuesFields
41
45
 
42
- declare const getWaterMeterFields: (meters: PartialMeterInfoFields[], name?: string | undefined, settings?: any) => any[];
46
+ declare const getWaterMeterFields: (meters: PartialMeterInfoFields[], meter?: PartialMeterInfoFields | undefined, withCheckValue?: boolean | undefined, name?: string | undefined, settings?: any) => any[];
43
47
 
44
48
  type InspectionMeterFields = {
45
49
  id?: number
@@ -177,6 +181,14 @@ type RoomImagesParams = {
177
181
  type ApartmentDescriptionWithMetro = ApartmentDescriptionParams &
178
182
  ApartmentMetroStationsParams
179
183
 
184
+ type FillingCheckParams = {
185
+ id: number
186
+ name: string
187
+ serialNumber?: string
188
+ numberOfSubjects?: number | string | null
189
+ wasAvailable?: boolean
190
+ }
191
+
180
192
  type HouseServicesInfoStepFields = {
181
193
  hasBarrier: boolean | null
182
194
  barrierPhone: PhoneParams | null
@@ -829,6 +841,16 @@ type InspectionFeedbackProps = {
829
841
 
830
842
  declare const _default: (props: InspectionFeedbackProps) => JSX.Element | null;
831
843
 
844
+ type InspectionFillingCardProps = {
845
+ className?: string
846
+ form: UseFormReturn<any>
847
+ index: number
848
+ filling: FillingCheckParams
849
+ warningLabel: string
850
+ }
851
+
852
+ declare const InspectionFillingCard: (props: InspectionFillingCardProps) => JSX.Element;
853
+
832
854
  declare const useMetersValues: (formStore: MultistepForm<any>, metersStore: ApartmentMetersStoreInterface) => void;
833
855
 
834
856
  declare type InspectionFieldsSettings = {
@@ -882,4 +904,4 @@ type ApartmentOverlayProps = {
882
904
 
883
905
  declare const ApartmentInspectionOverlay: (props: ApartmentOverlayProps) => JSX.Element;
884
906
 
885
- export { AdditionalInfoFieldsSchema, AdditionalInfoStepFields, AdditionalInfoStepSchema, ApartmentInspectionModel, ApartmentInspectionOverlay, ApartmentInspectionParams, ApartmentLinkParams, ApartmentPaymentsFormFields, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepFields, BasicApartmentInfoStepSchema, CommonInspectionFields, CommonInspectionFormFields, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepFields, DetailApartmentInfoStepSchema, FillingInfoFieldsSchema, FillingInfoFormFields, FillingInfoStepFields, FillingListInfoStepFields, HouseServicesInfoFieldsSchema, HouseServicesInfoStepFields, HouseServicesInfoStepSchema, InitialInspectionFieldsBody, InitialInspectionFormFields, InitialInspectionInfoFields, InitialInspectionPostBody, InitialInspectionRoomParams, InspectionAppraisalLiteModel, _default as InspectionFeedback, InspectionFieldsSettings, InspectionFillingParams, InspectionImpairmentLiteModel, InspectionMeterCommonFields, InspectionMeterFields, InspectionMeterValueModel, InspectionMetersStepFields, InspectionPartialMetersStepFields, InspectionRoomImagesParams, InspectionRoomPhotoRequest, InspectionRoomsImagesFields, InventoryInspectionFieldsBody, InventoryInspectionFormFields, InventoryInspectionPostBody, InventoryMeterModel, MeterInfoStepProps, MeterValueModel, MeterValuesFields, MetersInfoFieldsSchema, MetersInfoStepFields, MetersInfoStepSchema, MetroStationParams, 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, useMetersValues };
907
+ export { AdditionalInfoFieldsSchema, AdditionalInfoStepFields, AdditionalInfoStepSchema, ApartmentInspectionModel, ApartmentInspectionOverlay, ApartmentInspectionParams, ApartmentLinkParams, ApartmentPaymentsFormFields, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepFields, BasicApartmentInfoStepSchema, CommonInspectionFields, CommonInspectionFormFields, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepFields, DetailApartmentInfoStepSchema, FillingCheckParams, FillingInfoFieldsSchema, FillingInfoFormFields, FillingInfoStepFields, FillingListInfoStepFields, HouseServicesInfoFieldsSchema, HouseServicesInfoStepFields, HouseServicesInfoStepSchema, InitialInspectionFieldsBody, InitialInspectionFormFields, InitialInspectionInfoFields, InitialInspectionPostBody, InitialInspectionRoomParams, InspectionAppraisalLiteModel, _default as InspectionFeedback, InspectionFieldsSettings, InspectionFillingCard, InspectionFillingParams, InspectionImpairmentLiteModel, InspectionMeterCommonFields, InspectionMeterFields, InspectionMeterValueModel, InspectionMetersStepFields, InspectionPartialMetersStepFields, InspectionRoomImagesParams, InspectionRoomPhotoRequest, InspectionRoomsImagesFields, InventoryInspectionFieldsBody, InventoryInspectionFormFields, InventoryInspectionPostBody, InventoryMeterModel, MeterInfoStepProps, MeterValueModel, MeterValuesFields, MetersInfoFieldsSchema, MetersInfoStepFields, MetersInfoStepSchema, MetroStationParams, 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, useMetersValues };
package/index.js CHANGED
@@ -9,7 +9,7 @@ import { jsx, jsxs } from 'react/jsx-runtime';
9
9
  import { theme, Caption, Grid, Button } from 'kui-basic';
10
10
  import { observer } from 'mobx-react';
11
11
  import styled from '@emotion/styled';
12
- import { CheckIcon, CancelIcon, CommentIcon, UpdateIcon, PhoneIcon, CloseIcon } from 'kui-icon';
12
+ import { CheckIcon, CancelIcon, CommentIcon, UpdateIcon, WarningIcon, PhoneIcon, CloseIcon } from 'kui-icon';
13
13
  import { useEffect } from 'react';
14
14
 
15
15
  /******************************************************************************
@@ -128,15 +128,18 @@ var WaterMeterFieldsSchema = yup.object().shape({
128
128
  .transform(function (value) { return (Number.isNaN(value) ? undefined : value); }),
129
129
  });
130
130
 
131
- var getWaterMeterFields = function (meters, name, settings) {
131
+ var getWaterMeterFields = function (meters, meter, withCheckValue, name, settings) {
132
+ var _a;
132
133
  var prefixName = name ? "".concat(name, ".") : "";
133
- var meterOptions = meters.map(function (meter) { return ({
134
- value: meter.number,
135
- label: "".concat(_.capitalize(meter.type || ""), " | #").concat(meter.number),
134
+ var meterOptions = meters.map(function (meterParams) { return ({
135
+ value: meterParams.number,
136
+ label: "".concat(_.capitalize(meterParams.type || ""), " | #").concat(meterParams.number),
136
137
  }); });
137
138
  return [
138
139
  __assign({ label: "Meter", name: "".concat(prefixName, "number"), variant: "select", options: meterOptions, size: 12 }, settings === null || settings === void 0 ? void 0 : settings.meter),
139
- __assign({ label: "Value", name: "".concat(prefixName, "value"), variant: "custom", CustomInput: NumberField, maxIntegerPart: 7, maxDecimalPart: 3 }, settings === null || settings === void 0 ? void 0 : settings.value),
140
+ __assign({ label: "Value", name: "".concat(prefixName, "value"), variant: "custom", CustomInput: NumberField, maxIntegerPart: 7, maxDecimalPart: 3, maxValue: ((_a = meter === null || meter === void 0 ? void 0 : meter.maxValue) === null || _a === void 0 ? void 0 : _a.value) && withCheckValue
141
+ ? Number(meter.maxValue.value)
142
+ : null, warningMessage: "There are deviations in meter readings. It should be no more than" }, settings === null || settings === void 0 ? void 0 : settings.value),
140
143
  ];
141
144
  };
142
145
 
@@ -260,21 +263,27 @@ var inspectionsRequestBody = {
260
263
  var _a;
261
264
  if (meter.resource === "electricity") {
262
265
  var prefix = fieldName || "";
266
+ var t1 = meter["".concat(prefix, "T1")];
267
+ var t2 = meter["".concat(prefix, "T2")];
268
+ var t3 = meter["".concat(prefix, "T3")];
263
269
  return {
264
- T1: meter["".concat(prefix, "T1")],
265
- T2: meter["".concat(prefix, "T2")],
266
- T3: meter["".concat(prefix, "T3")],
270
+ T1: t1 ? Number(t1) : t1,
271
+ T2: t2 ? Number(t2) : t2,
272
+ T3: t3 ? Number(t3) : t3,
267
273
  };
268
274
  }
269
275
  var valueField = (fieldName || "value");
270
276
  if (meter.resource === "water") {
271
277
  if (meter.type === "cold") {
272
- return { cold: meter[valueField] };
278
+ var cold = meter[valueField];
279
+ return { cold: cold ? Number(cold) : cold };
273
280
  }
274
- return { hot: meter[valueField] };
281
+ var hot = meter[valueField];
282
+ return { hot: hot ? Number(hot) : hot };
275
283
  }
284
+ var value = meter[valueField];
276
285
  return _a = {},
277
- _a[meter.resource] = meter[valueField],
286
+ _a[meter.resource] = value ? Number(value) : value,
278
287
  _a;
279
288
  },
280
289
  getMeterCommonFields: function (meter) {
@@ -909,18 +918,18 @@ var InspectionFeedbackBillet = function (props) {
909
918
  var feedback = props.feedback, label = props.label;
910
919
  return (jsx(StyledWrapper$4, __assign({ status: feedback.status }, { children: jsxs(Grid, __assign({ container: true, alignItems: "center" }, { children: [jsx(Caption, __assign({ size: "s", weight: 500, color: "fiftyP" }, { children: label })), feedback.status !== "notSigned" && (jsxs(StyledIconWrapper, { children: [feedback.status === "signed" ? (jsx(StyledCheckIcon, {})) : (jsx(StyledErrorIcon, {})), !!feedback.comment && (jsx(Tooltip, __assign({ placement: "bottom", content: jsxs("div", { children: [jsx(Caption, __assign({ size: "xs", color: "fiftyP" }, { children: "Comment" })), jsx(StyledComment, __assign({ size: "xs" }, { children: feedback.comment }))] }) }, { children: jsx(StyledCommentIcon, {}) })))] }))] })) })));
911
920
  };
912
- var StyledWrapper$4 = styled.div(templateObject_1$6 || (templateObject_1$6 = __makeTemplateObject(["\n background: ", ";\n border-radius: 66px;\n border: 1px solid ", ";\n padding: 6px 16px;\n width: fit-content;\n @media (max-width: ", "px) {\n width: 100%;\n > div {\n justify-content: center;\n }\n }\n"], ["\n background: ", ";\n border-radius: 66px;\n border: 1px solid ", ";\n padding: 6px 16px;\n width: fit-content;\n @media (max-width: ", "px) {\n width: 100%;\n > div {\n justify-content: center;\n }\n }\n"])), function (_a) {
921
+ var StyledWrapper$4 = styled.div(templateObject_1$8 || (templateObject_1$8 = __makeTemplateObject(["\n background: ", ";\n border-radius: 66px;\n border: 1px solid ", ";\n padding: 6px 16px;\n width: fit-content;\n @media (max-width: ", "px) {\n width: 100%;\n > div {\n justify-content: center;\n }\n }\n"], ["\n background: ", ";\n border-radius: 66px;\n border: 1px solid ", ";\n padding: 6px 16px;\n width: fit-content;\n @media (max-width: ", "px) {\n width: 100%;\n > div {\n justify-content: center;\n }\n }\n"])), function (_a) {
913
922
  var status = _a.status;
914
923
  return status === "notSigned"
915
924
  ? theme.palette.background.light1
916
925
  : theme.palette.grey.zero;
917
926
  }, theme.palette.grey.fifteenB, theme.breakpoints.sm);
918
- var StyledIconWrapper = styled.div(templateObject_2$3 || (templateObject_2$3 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n margin-left: 8px;\n > div {\n margin-left: 8px;\n }\n"], ["\n display: flex;\n align-items: center;\n margin-left: 8px;\n > div {\n margin-left: 8px;\n }\n"])));
919
- var StyledCheckIcon = styled(CheckIcon)(templateObject_3$1 || (templateObject_3$1 = __makeTemplateObject(["\n path {\n fill: ", ";\n }\n"], ["\n path {\n fill: ", ";\n }\n"])), theme.palette.green.fiftyP);
927
+ var StyledIconWrapper = styled.div(templateObject_2$5 || (templateObject_2$5 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n margin-left: 8px;\n > div {\n margin-left: 8px;\n }\n"], ["\n display: flex;\n align-items: center;\n margin-left: 8px;\n > div {\n margin-left: 8px;\n }\n"])));
928
+ var StyledCheckIcon = styled(CheckIcon)(templateObject_3$2 || (templateObject_3$2 = __makeTemplateObject(["\n path {\n fill: ", ";\n }\n"], ["\n path {\n fill: ", ";\n }\n"])), theme.palette.green.fiftyP);
920
929
  var StyledErrorIcon = styled(CancelIcon)(templateObject_4$1 || (templateObject_4$1 = __makeTemplateObject(["\n width: 12px;\n height: 12px;\n path {\n fill: ", ";\n }\n"], ["\n width: 12px;\n height: 12px;\n path {\n fill: ", ";\n }\n"])), theme.palette.red.fiftyP);
921
930
  var StyledComment = styled(Caption)(templateObject_5$1 || (templateObject_5$1 = __makeTemplateObject(["\n margin-top: 8px;\n"], ["\n margin-top: 8px;\n"])));
922
931
  var StyledCommentIcon = styled(CommentIcon)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n width: 13px;\n cursor: pointer;\n path {\n fill: ", ";\n stroke: ", ";\n }\n"], ["\n width: 13px;\n cursor: pointer;\n path {\n fill: ", ";\n stroke: ", ";\n }\n"])), theme.palette.grey.zero, theme.palette.grey.thirty);
923
- var templateObject_1$6, templateObject_2$3, templateObject_3$1, templateObject_4$1, templateObject_5$1, templateObject_6;
932
+ var templateObject_1$8, templateObject_2$5, templateObject_3$2, templateObject_4$1, templateObject_5$1, templateObject_6;
924
933
 
925
934
  var InspectionFeedbackStatus = function (props) {
926
935
  var feedback = props.feedback, label = props.label, resendLabel = props.resendLabel, resend = props.resend;
@@ -929,8 +938,8 @@ var InspectionFeedbackStatus = function (props) {
929
938
  return (jsx(Grid, __assign({ item: true }, { children: jsxs(Grid, __assign({ container: true, alignItems: "center" }, { children: [jsx(InspectionFeedbackBillet, { feedback: feedback, label: label }), feedback.status === "rejected" && (jsx(StyledButton, __assign({ size: "xs", variant: "orange", onClick: resend, endIcon: jsx(UpdateIcon, {}) }, { children: resendLabel })))] })) })));
930
939
  };
931
940
  var InspectionFeedbackStatus$1 = observer(InspectionFeedbackStatus);
932
- var StyledButton = styled(Button)(templateObject_1$5 || (templateObject_1$5 = __makeTemplateObject(["\n margin-left: 16px;\n @media (max-width: ", "px) {\n width: 100%;\n margin-left: 0;\n margin-top: 8px;\n }\n"], ["\n margin-left: 16px;\n @media (max-width: ", "px) {\n width: 100%;\n margin-left: 0;\n margin-top: 8px;\n }\n"])), theme.breakpoints.sm);
933
- var templateObject_1$5;
941
+ var StyledButton = styled(Button)(templateObject_1$7 || (templateObject_1$7 = __makeTemplateObject(["\n margin-left: 16px;\n @media (max-width: ", "px) {\n width: 100%;\n margin-left: 0;\n margin-top: 8px;\n }\n"], ["\n margin-left: 16px;\n @media (max-width: ", "px) {\n width: 100%;\n margin-left: 0;\n margin-top: 8px;\n }\n"])), theme.breakpoints.sm);
942
+ var templateObject_1$7;
934
943
 
935
944
  var InspectionFeedback = function (props) {
936
945
  var tenantFeedback = props.tenantFeedback, landlordFeedback = props.landlordFeedback, resignInspection = props.resignInspection, resendLabel = props.resendLabel;
@@ -940,8 +949,25 @@ var InspectionFeedback = function (props) {
940
949
  return (jsxs(StyledWrapper$3, __assign({ container: true, spacing: 2, alignItems: "center" }, { children: [jsx(InspectionFeedbackStatus$1, { resend: resignInspection, resendLabel: resendLabel, feedback: tenantFeedback, label: tenantLabel }), jsx(InspectionFeedbackStatus$1, { resend: resignInspection, resendLabel: resendLabel, feedback: landlordFeedback, label: landlordLabel })] })));
941
950
  };
942
951
  var index = observer(InspectionFeedback);
943
- var StyledWrapper$3 = styled(Grid)(templateObject_1$4 || (templateObject_1$4 = __makeTemplateObject(["\n padding-top: 8px;\n"], ["\n padding-top: 8px;\n"])));
944
- var templateObject_1$4;
952
+ var StyledWrapper$3 = styled(Grid)(templateObject_1$6 || (templateObject_1$6 = __makeTemplateObject(["\n padding-top: 8px;\n"], ["\n padding-top: 8px;\n"])));
953
+ var templateObject_1$6;
954
+
955
+ var FillingCardContent = function (props) {
956
+ var filling = props.filling, warningLabel = props.warningLabel;
957
+ return (jsxs(Grid, __assign({ container: true, alignItems: "center" }, { children: [!filling.wasAvailable && (jsx(Tooltip, __assign({ content: jsx(Caption, __assign({ size: "xs" }, { children: warningLabel })) }, { children: jsx(StyledWarningIcon, { width: 17, height: 17 }) }))), jsxs(StyledLabelWrapper, { children: [jsx(Caption, __assign({ size: "s" }, { children: filling.name })), jsxs(StyledSubtitle, __assign({ size: "xs", color: "fiftyP" }, { children: [filling.numberOfSubjects ? "".concat(filling.numberOfSubjects, " pieces") : "", filling.numberOfSubjects && filling.serialNumber ? " \u2022 " : "", filling.serialNumber] }))] })] })));
958
+ };
959
+ var StyledWarningIcon = styled(WarningIcon)(templateObject_1$5 || (templateObject_1$5 = __makeTemplateObject(["\n margin-left: 4px;\n path {\n fill: ", ";\n }\n"], ["\n margin-left: 4px;\n path {\n fill: ", ";\n }\n"])), theme.palette.red.fiftyP);
960
+ var StyledLabelWrapper = styled.div(templateObject_2$4 || (templateObject_2$4 = __makeTemplateObject(["\n margin-left: 8px;\n"], ["\n margin-left: 8px;\n"])));
961
+ var StyledSubtitle = styled(Caption)(templateObject_3$1 || (templateObject_3$1 = __makeTemplateObject(["\n margin-top: 4px;\n"], ["\n margin-top: 4px;\n"])));
962
+ var templateObject_1$5, templateObject_2$4, templateObject_3$1;
963
+
964
+ var InspectionFillingCard = function (props) {
965
+ var className = props.className, form = props.form, index = props.index, other = __rest(props, ["className", "form", "index"]);
966
+ return (jsx(StyledCard$1, __assign({ className: className }, { children: jsx(StyledCheckbox, { form: form, name: "filling.".concat(index), label: jsx(FillingCardContent, __assign({}, other)) }) })));
967
+ };
968
+ var StyledCard$1 = styled(Grid)(templateObject_1$4 || (templateObject_1$4 = __makeTemplateObject(["\n padding: 8px 16px;\n border-radius: 12px;\n background: white;\n"], ["\n padding: 8px 16px;\n border-radius: 12px;\n background: white;\n"])));
969
+ var StyledCheckbox = styled(CheckboxWithController)(templateObject_2$3 || (templateObject_2$3 = __makeTemplateObject(["\n .KUI-Label_checkbox {\n margin-left: 0;\n }\n"], ["\n .KUI-Label_checkbox {\n margin-left: 0;\n }\n"])));
970
+ var templateObject_1$4, templateObject_2$3;
945
971
 
946
972
  var useMetersValues = function (formStore, metersStore) {
947
973
  useEffect(function () {
@@ -1004,5 +1030,5 @@ var ApartmentInspectionOverlay = function (props) {
1004
1030
  var StyledWrapper = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: relative;\n"], ["\n position: relative;\n"])));
1005
1031
  var templateObject_1;
1006
1032
 
1007
- export { AdditionalInfoFieldsSchema, AdditionalInfoStepSchema, ApartmentInspectionOverlay, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepSchema, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepSchema, FillingInfoFieldsSchema, HouseServicesInfoFieldsSchema, HouseServicesInfoStepSchema, index as InspectionFeedback, MetersInfoFieldsSchema, MetersInfoStepSchema, RoomsApartmentInfoFieldsSchema, RoomsApartmentInfoStepSchema, SecurityApartmentInfoFieldsSchema, SecurityApartmentInfoStepSchema, TelecommunicationsInfoFieldsSchema, TelecommunicationsInfoStepSchema, WaterMeterFieldsSchema, apartmentFields, getAdditionalInfoStepFields, getBasicApartmentInfoFields, getDetailApartmentInfoFields, getFillingInfoFields, getHouseServicesInfoStep, getMetersInfoStepFields, getPartialMeterInfoSchema, getRoomsApartmentInfoFields, getRoomsImagesSteps, getSecurityApartmentInfoFields, getTelecommunicationsInfoStepFields, getWaterMeterFields, inspectionsRequestBody, inspectionsRequests, renderMetersSteps, useMetersValues };
1033
+ export { AdditionalInfoFieldsSchema, AdditionalInfoStepSchema, ApartmentInspectionOverlay, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepSchema, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepSchema, FillingInfoFieldsSchema, HouseServicesInfoFieldsSchema, HouseServicesInfoStepSchema, index as InspectionFeedback, InspectionFillingCard, MetersInfoFieldsSchema, MetersInfoStepSchema, RoomsApartmentInfoFieldsSchema, RoomsApartmentInfoStepSchema, SecurityApartmentInfoFieldsSchema, SecurityApartmentInfoStepSchema, TelecommunicationsInfoFieldsSchema, TelecommunicationsInfoStepSchema, WaterMeterFieldsSchema, apartmentFields, getAdditionalInfoStepFields, getBasicApartmentInfoFields, getDetailApartmentInfoFields, getFillingInfoFields, getHouseServicesInfoStep, getMetersInfoStepFields, getPartialMeterInfoSchema, getRoomsApartmentInfoFields, getRoomsImagesSteps, getSecurityApartmentInfoFields, getTelecommunicationsInfoStepFields, getWaterMeterFields, inspectionsRequestBody, inspectionsRequests, renderMetersSteps, useMetersValues };
1008
1034
  //# sourceMappingURL=index.js.map