kui-crm_actions 0.0.80 → 0.0.81

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
@@ -152,11 +152,11 @@ type InspectionFillingCardProps = {
152
152
 
153
153
  type InspectionFillingItemFields = {
154
154
  id: number
155
- check: boolean
155
+ check?: boolean | null
156
156
  }
157
157
 
158
158
  type InspectionFillingListFields = {
159
- filling: InspectionFillingItemFields[]
159
+ fillingList: InspectionFillingItemFields[]
160
160
  }
161
161
 
162
162
  declare const InspectionFillingCard: (props: InspectionFillingCardProps) => JSX.Element;
package/index.js CHANGED
@@ -194,7 +194,7 @@ var inspectionsRequestBody = {
194
194
  based_on: null,
195
195
  dropbox_link: inspection.dropboxLink,
196
196
  photo_groups: roomsImages,
197
- regular: __assign(__assign({}, this.getInspectionFilling(inspection.filling)), this.getPartialInspectionMeters(inspection.meters)),
197
+ regular: __assign(__assign({}, this.getInspectionFilling(inspection.fillingList)), this.getPartialInspectionMeters(inspection.meters)),
198
198
  };
199
199
  },
200
200
  getPostBodyTransferInspection: function (inspection, roomsImages) {
@@ -204,7 +204,7 @@ var inspectionsRequestBody = {
204
204
  based_on: null,
205
205
  dropbox_link: inspection.dropboxLink,
206
206
  photo_groups: roomsImages,
207
- transfer: __assign(__assign({ transfer_type: inspection.transferType }, this.getInspectionFilling(inspection.filling)), this.getPartialInspectionMeters(inspection.meters)),
207
+ transfer: __assign(__assign({ transfer_type: inspection.transferType }, this.getInspectionFilling(inspection.fillingList)), this.getPartialInspectionMeters(inspection.meters)),
208
208
  };
209
209
  },
210
210
  getInspectionFilling: function (fillingList) {
@@ -972,7 +972,7 @@ var templateObject_1$5, templateObject_2$4, templateObject_3$1;
972
972
 
973
973
  var InspectionFillingCard = function (props) {
974
974
  var className = props.className, form = props.form, index = props.index, disabled = props.disabled, other = __rest(props, ["className", "form", "index", "disabled"]);
975
- return (jsx(StyledCard$1, __assign({ className: className }, { children: jsx(StyledCheckbox, { form: form, name: "filling.".concat(index, ".check"), label: jsx(FillingCardContent, __assign({}, other)), disabled: disabled }) })));
975
+ return (jsx(StyledCard$1, __assign({ className: className }, { children: jsx(StyledCheckbox, { form: form, name: "fillingList.".concat(index, ".check"), label: jsx(FillingCardContent, __assign({}, other)), disabled: disabled }) })));
976
976
  };
977
977
  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"])));
978
978
  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"])));
@@ -1036,7 +1036,7 @@ var useFillingList = function (apartmentId, formStore, fillingStore) {
1036
1036
  var _a, _b;
1037
1037
  if (!fillingStore.loader.isLoading && !((_b = (_a = formStore.fields) === null || _a === void 0 ? void 0 : _a.filling) === null || _b === void 0 ? void 0 : _b.length)) {
1038
1038
  formStore.updateFormFields({
1039
- filling: fillingStore.fillingList.map(function (filling) { return ({
1039
+ fillingList: fillingStore.fillingList.map(function (filling) { return ({
1040
1040
  id: filling.id,
1041
1041
  check: false,
1042
1042
  }); }),