stone-kit 0.0.512 → 0.0.514

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.
@@ -223,6 +223,8 @@ export interface ILot {
223
223
  isDecoration?: boolean | null;
224
224
  /** С мокрой точкой */
225
225
  isWaterPipes?: boolean | null;
226
+ /** id проекта */
227
+ projectId?: number | null;
226
228
  /** Данные всего проекта */
227
229
  project?: IProject | null;
228
230
  /** Забронировано или нет????? */
@@ -1,9 +1,9 @@
1
- const s = (r, o, t) => {
2
- if (!r && t && t === 2)
3
- return "";
1
+ const s = (r, t, o) => {
2
+ if (!r && o === 2)
3
+ return " ";
4
4
  if (!r)
5
5
  return "Цена по запросу";
6
- const e = o ? " ₽/м²" : " ₽";
6
+ const e = t ? " ₽/м²" : " ₽";
7
7
  return Number(r).toLocaleString() + e;
8
8
  };
9
9
  export {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "stone-kit",
3
3
  "description": "uikit for redesign",
4
4
  "private": false,
5
- "version": "0.0.512",
5
+ "version": "0.0.514",
6
6
  "author": "Mollycodd1e",
7
7
  "license": "ISC",
8
8
  "type": "module",