kui-crm_actions 0.0.85 → 0.0.87

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
@@ -74,6 +74,7 @@ type CommonInspectionFormFields = {
74
74
  }
75
75
 
76
76
  type InspectionRoomImagesParams = {
77
+ id: number
77
78
  type: InspectionRoomPhotoTypes
78
79
  files: FileStore[]
79
80
  comment: string
package/index.js CHANGED
@@ -140,7 +140,7 @@ var getWaterMeterFields = function (meters, meter, withCheckValue, name, setting
140
140
  __assign({ label: "Meter", name: "".concat(prefixName, "number"), variant: "select", options: meterOptions, size: 12 }, settings === null || settings === void 0 ? void 0 : settings.meter),
141
141
  __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
142
142
  ? Number(meter.maxValue.value)
143
- : null, warningMessage: "There are deviations in meter readings. It should be no more than" }, settings === null || settings === void 0 ? void 0 : settings.value),
143
+ : null, warningMessage: "There are deviations in meter readings. It should be no more than", placeholder: meter === null || meter === void 0 ? void 0 : meter.value }, settings === null || settings === void 0 ? void 0 : settings.value),
144
144
  ];
145
145
  };
146
146