stone-kit 0.0.1025 → 0.0.1027
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/dist/App.js +1 -1
- package/dist/{FilterWithSave-BBIFq461.js → FilterWithSave-DkVYQ7W8.js} +179 -176
- package/dist/{Menu-p3DgoNDC.js → Menu-DKuZheFD.js} +1 -1
- package/dist/components/CommercialLotCard/CommercialLotCard.d.ts +1 -1
- package/dist/components/CommercialLotCard/CommercialLotCard.js +1 -1
- package/dist/components/CommercialLotCard/components/Price/Price.d.ts +2 -1
- package/dist/components/CommercialLotCard/components/Price/Price.js +29 -21
- package/dist/components/CommercialLotCard/components/Snippets/Snippets.js +1 -1
- package/dist/components/CommercialLotCard/types/CommercialLotCard.types.d.ts +1 -0
- package/dist/components/FilterWithSave/hooks/useFilterWithSave.js +1 -1
- package/dist/components/FilterWithSave/ui/FilterWithSave.js +1 -1
- package/dist/components/FormModal/ui/ModalForm.js +1 -1
- package/dist/components/LotCard/hooks/useLotCard.js +1 -1
- package/dist/components/LotCard/index.js +1 -1
- package/dist/components/LotCard/ui/LotCard.js +1 -1
- package/dist/components/SortSelect/index.js +1 -1
- package/dist/components/SortSelect/ui/SortSelect.js +1 -1
- package/dist/components/SummarySelect/ui/SummarySelect.d.ts +1 -0
- package/dist/components/SummarySelect/ui/SummarySelect.js +31 -30
- package/dist/components/TabSwitcher/index.js +1 -1
- package/dist/components/TabSwitcher/ui/TabSwitcher.js +1 -1
- package/dist/layout/components/Header/Header.js +2 -2
- package/dist/layout/components/Menu.js +2 -2
- package/dist/main.js +1 -1
- package/dist/pages/ButtonsPage/Buttons.js +1 -1
- package/dist/pages/FormsPage/FormsPage.js +1 -1
- package/dist/pages/IconsPage/IconsPage.js +1 -1
- package/dist/pages/InputPage/InputPage.js +1 -1
- package/dist/pages/LogoPage/LogoPage.js +1 -1
- package/dist/pages/LotsPage/LotsPage.js +4 -4
- package/dist/pages/ModalsPage/ModalPage.js +1 -1
- package/dist/pages/SelectPage/SelectPage.js +1 -1
- package/dist/pages/TabsPage/TabsPage.js +1 -1
- package/dist/pages/TagsPage/TagsPage.js +1 -1
- package/dist/stories/entities/CommercialLotCard/CommercialLotCard.stories.js +1 -1
- package/dist/stories/shared/ui/FilterWithSave/FilterWithSave.stories.js +1 -1
- package/dist/stories/shared/ui/FormModal/FormModal.stories.js +1 -1
- package/dist/stories/shared/ui/SortSelect/SortSelect.stories.js +1 -1
- package/dist/stories/shared/ui/TabSwitcher/TabSwitcher.stories.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ import "./components/Switcher/ui/Switcher.js";
|
|
|
12
12
|
import "./components/Text/ui/Text.js";
|
|
13
13
|
import "./components/Flex/ui/Flex.js";
|
|
14
14
|
import "./components/Input/ui/Input.js";
|
|
15
|
-
import "./FilterWithSave-
|
|
15
|
+
import "./FilterWithSave-DkVYQ7W8.js";
|
|
16
16
|
import "./components/GroupedInput/ui/GroupedInputs.js";
|
|
17
17
|
import "./index-rKuIKazb.js";
|
|
18
18
|
import "./components/MetroTag/ui/MetroTag.js";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ICommercialLotCard } from './types/CommercialLotCard.types';
|
|
2
2
|
|
|
3
|
-
export declare const CommercialLotCard: ({ lot, imgNode, onPriceClickHandler, addClassname, }: ICommercialLotCard) => import("react/jsx-runtime").JSX.Element | null;
|
|
3
|
+
export declare const CommercialLotCard: ({ lot, imgNode, onPriceClickHandler, addClassname, isVertical, }: ICommercialLotCard) => import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -2,7 +2,7 @@ import "react/jsx-runtime";
|
|
|
2
2
|
import "../../index-rKuIKazb.js";
|
|
3
3
|
import "../../shared/fmtNumber.js";
|
|
4
4
|
import "./components/Price/Price.js";
|
|
5
|
-
import { C } from "../../FilterWithSave-
|
|
5
|
+
import { C } from "../../FilterWithSave-DkVYQ7W8.js";
|
|
6
6
|
import "./components/Tags/Tags.js";
|
|
7
7
|
export {
|
|
8
8
|
C as CommercialLotCard
|
|
@@ -2,7 +2,8 @@ import { ILot } from '../../types/LotCard';
|
|
|
2
2
|
|
|
3
3
|
interface IPrice {
|
|
4
4
|
lot: ILot;
|
|
5
|
+
isVertical?: boolean;
|
|
5
6
|
onPriceClickHandler?: () => void;
|
|
6
7
|
}
|
|
7
|
-
export declare const Price: ({ lot, onPriceClickHandler }: IPrice) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const Price: ({ lot, onPriceClickHandler, isVertical }: IPrice) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -1,25 +1,33 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { jsxs as o, jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { c as g } from "../../../../index-rKuIKazb.js";
|
|
3
|
+
import { NewIcon as y } from "../../../NewIcon/ui/NewIcon.js";
|
|
4
|
+
import { formatPrice as N } from "../../utils/formatPrice.js";
|
|
5
|
+
const w = "_root_u8cpd_1", b = "_price_u8cpd_7", x = "_paymentWrapper_u8cpd_19", V = "_rootVertical_u8cpd_39", r = {
|
|
6
|
+
root: w,
|
|
7
|
+
price: b,
|
|
8
|
+
paymentWrapper: x,
|
|
9
|
+
rootVertical: V
|
|
10
|
+
}, W = g.bind(r), D = ({ lot: s, onPriceClickHandler: t, isVertical: m }) => {
|
|
11
|
+
var l;
|
|
12
|
+
const {
|
|
13
|
+
project: c,
|
|
14
|
+
sellingPriceBeforeDiscount: d,
|
|
15
|
+
showPriceFlg: _,
|
|
16
|
+
direction: f,
|
|
17
|
+
specialProgram: h,
|
|
18
|
+
sellingPrice: u
|
|
19
|
+
} = s || {}, P = !!((l = c == null ? void 0 : c.showPriceSubType) != null && l.some((e) => Number(e.filter) === s.subType)), p = !!h, a = d ?? u, n = a && _ && !p && P;
|
|
20
|
+
return /* @__PURE__ */ o("div", { className: W(r.root, { [r.rootVertical]: m }), children: [
|
|
21
|
+
n && /* @__PURE__ */ o("p", { className: r.price, children: [
|
|
14
22
|
" ",
|
|
15
|
-
|
|
23
|
+
N(a, !1, f)
|
|
16
24
|
] }),
|
|
17
|
-
!
|
|
25
|
+
!n && /* @__PURE__ */ o(
|
|
18
26
|
"p",
|
|
19
27
|
{
|
|
20
|
-
className:
|
|
28
|
+
className: r.price,
|
|
21
29
|
onClick: (e) => {
|
|
22
|
-
e.preventDefault(), e.stopPropagation(),
|
|
30
|
+
e.preventDefault(), e.stopPropagation(), t && t();
|
|
23
31
|
},
|
|
24
32
|
children: [
|
|
25
33
|
"Цена ",
|
|
@@ -27,10 +35,10 @@ const W = "_root_1hmg1_1", u = "_price_1hmg1_7", w = "_paymentWrapper_1hmg1_19",
|
|
|
27
35
|
]
|
|
28
36
|
}
|
|
29
37
|
),
|
|
30
|
-
/* @__PURE__ */
|
|
31
|
-
/* @__PURE__ */ i("span", { children:
|
|
38
|
+
/* @__PURE__ */ o("div", { className: r.paymentWrapper, children: [
|
|
39
|
+
/* @__PURE__ */ i("span", { children: p ? "Узнать подробности" : "Доступно несколько способов оплаты" }),
|
|
32
40
|
/* @__PURE__ */ i(
|
|
33
|
-
|
|
41
|
+
y,
|
|
34
42
|
{
|
|
35
43
|
name: "arrowRight",
|
|
36
44
|
size: "20"
|
|
@@ -40,5 +48,5 @@ const W = "_root_1hmg1_1", u = "_price_1hmg1_7", w = "_paymentWrapper_1hmg1_19",
|
|
|
40
48
|
] });
|
|
41
49
|
};
|
|
42
50
|
export {
|
|
43
|
-
|
|
51
|
+
D as Price
|
|
44
52
|
};
|
|
@@ -11,7 +11,7 @@ import "../../../Text/ui/Text.js";
|
|
|
11
11
|
import "../../../Flex/ui/Flex.js";
|
|
12
12
|
import "../../../Input/ui/Input.js";
|
|
13
13
|
import "react-dom";
|
|
14
|
-
import { b as A } from "../../../../FilterWithSave-
|
|
14
|
+
import { b as A } from "../../../../FilterWithSave-DkVYQ7W8.js";
|
|
15
15
|
import "../../../GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import "../../../../index-rKuIKazb.js";
|
|
17
17
|
import "../../../MetroTag/ui/MetroTag.js";
|
|
@@ -11,7 +11,7 @@ import "../../Flex/ui/Flex.js";
|
|
|
11
11
|
import "../../Input/ui/Input.js";
|
|
12
12
|
import "react/jsx-runtime";
|
|
13
13
|
import "react-dom";
|
|
14
|
-
import { c as w } from "../../../FilterWithSave-
|
|
14
|
+
import { c as w } from "../../../FilterWithSave-DkVYQ7W8.js";
|
|
15
15
|
import "../../GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import "../../../index-rKuIKazb.js";
|
|
17
17
|
import "../../MetroTag/ui/MetroTag.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "../../NewIcon/ui/NewIcon.js";
|
|
3
|
-
import { F as a } from "../../../FilterWithSave-
|
|
3
|
+
import { F as a } from "../../../FilterWithSave-DkVYQ7W8.js";
|
|
4
4
|
import "../../Modal/ui/Modal.js";
|
|
5
5
|
import "../../../Option-DU8cvBnA.js";
|
|
6
6
|
import "../../Button/ui/Button.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { u as B } from "../../../FilterWithSave-
|
|
3
|
+
import { u as B } from "../../../FilterWithSave-DkVYQ7W8.js";
|
|
4
4
|
import "../../Button/ui/Button.js";
|
|
5
5
|
import "../../mobileButton/ui/MobileButton.js";
|
|
6
6
|
import "../../NewIcon/ui/NewIcon.js";
|
|
@@ -5,7 +5,7 @@ import "../../../shared/mlnRound.js";
|
|
|
5
5
|
import "../../Button/ui/Button.js";
|
|
6
6
|
import "../../NewIcon/ui/NewIcon.js";
|
|
7
7
|
import "../../Tag/ui/Tag.js";
|
|
8
|
-
import { L as f } from "../../../FilterWithSave-
|
|
8
|
+
import { L as f } from "../../../FilterWithSave-DkVYQ7W8.js";
|
|
9
9
|
import "../utils/formatPrice.js";
|
|
10
10
|
export {
|
|
11
11
|
f as LotCard
|
|
@@ -13,7 +13,7 @@ import "../../Text/ui/Text.js";
|
|
|
13
13
|
import "../../Flex/ui/Flex.js";
|
|
14
14
|
import "../../Input/ui/Input.js";
|
|
15
15
|
import "../../Modal/ui/Modal.js";
|
|
16
|
-
import { a as A } from "../../../FilterWithSave-
|
|
16
|
+
import { a as A } from "../../../FilterWithSave-DkVYQ7W8.js";
|
|
17
17
|
import "../../GroupedInput/ui/GroupedInputs.js";
|
|
18
18
|
import "../../MetroTag/ui/MetroTag.js";
|
|
19
19
|
import "../../Select/ui/Select.js";
|
|
@@ -1,62 +1,63 @@
|
|
|
1
1
|
import { jsxs as s, jsx as l } from "react/jsx-runtime";
|
|
2
2
|
import { NewIcon as d } from "../../NewIcon/ui/NewIcon.js";
|
|
3
|
-
import { Select as
|
|
4
|
-
const
|
|
5
|
-
root:
|
|
6
|
-
nameWrapper:
|
|
7
|
-
clearBtn:
|
|
3
|
+
import { Select as N } from "../../Select/ui/Select.js";
|
|
4
|
+
const p = "_root_156r8_1", f = "_nameWrapper_156r8_8", V = "_clearBtn_156r8_18", S = "_summaryList_156r8_33", B = "_summaryOption_156r8_40", b = "_categoryOption_156r8_62", k = "_summaryCategory_156r8_71", T = "_headerCategory_156r8_81", W = "_categoryTitle_156r8_87", x = "_categoryOptions_156r8_95", t = {
|
|
5
|
+
root: p,
|
|
6
|
+
nameWrapper: f,
|
|
7
|
+
clearBtn: V,
|
|
8
8
|
summaryList: S,
|
|
9
|
-
summaryOption:
|
|
10
|
-
categoryOption:
|
|
11
|
-
summaryCategory:
|
|
12
|
-
headerCategory:
|
|
13
|
-
categoryTitle:
|
|
14
|
-
categoryOptions:
|
|
15
|
-
},
|
|
16
|
-
label:
|
|
17
|
-
isShowReset:
|
|
9
|
+
summaryOption: B,
|
|
10
|
+
categoryOption: b,
|
|
11
|
+
summaryCategory: k,
|
|
12
|
+
headerCategory: T,
|
|
13
|
+
categoryTitle: W,
|
|
14
|
+
categoryOptions: x
|
|
15
|
+
}, $ = ({
|
|
16
|
+
label: g = "",
|
|
17
|
+
isShowReset: h,
|
|
18
|
+
isShowCategoryDelete: u = !1,
|
|
18
19
|
...a
|
|
19
20
|
}) => {
|
|
20
|
-
var
|
|
21
|
+
var _;
|
|
21
22
|
const c = (e) => {
|
|
22
23
|
a.onChange && a.onChange(e);
|
|
23
|
-
},
|
|
24
|
+
}, y = (e) => {
|
|
24
25
|
var r;
|
|
25
26
|
const o = ((r = a.selectedValues) == null ? void 0 : r.filter((n) => n.value !== e)) || [];
|
|
26
27
|
c(o);
|
|
27
|
-
},
|
|
28
|
+
}, v = () => {
|
|
28
29
|
c([]);
|
|
29
|
-
},
|
|
30
|
+
}, C = (e) => {
|
|
30
31
|
var o;
|
|
31
32
|
c(
|
|
32
33
|
((o = a.selectedValues) == null ? void 0 : o.filter((r) => r.value !== e.value).filter(
|
|
33
34
|
(r) => !e.options.some((n) => n.value === r.value)
|
|
34
35
|
)) ?? []
|
|
35
36
|
);
|
|
36
|
-
}, m = (
|
|
37
|
+
}, m = (_ = a.selectedValues) == null ? void 0 : _.filter((e) => "options" in e);
|
|
37
38
|
return /* @__PURE__ */ s("div", { className: t.root, children: [
|
|
38
39
|
/* @__PURE__ */ s("div", { className: t.nameWrapper, children: [
|
|
39
|
-
/* @__PURE__ */ l("div", { children:
|
|
40
|
-
|
|
40
|
+
/* @__PURE__ */ l("div", { children: g }),
|
|
41
|
+
h && /* @__PURE__ */ l(
|
|
41
42
|
"div",
|
|
42
43
|
{
|
|
43
44
|
className: t.clearBtn,
|
|
44
|
-
onClick:
|
|
45
|
+
onClick: v,
|
|
45
46
|
children: "Очистить"
|
|
46
47
|
}
|
|
47
48
|
)
|
|
48
49
|
] }),
|
|
49
50
|
/* @__PURE__ */ l(
|
|
50
|
-
|
|
51
|
+
N,
|
|
51
52
|
{
|
|
52
53
|
...a,
|
|
53
54
|
onChange: c
|
|
54
55
|
}
|
|
55
56
|
),
|
|
56
|
-
a.mode === "options" && a.selectedValues && a.selectedValues.length > 0 && /* @__PURE__ */ l("div", { className: t.summaryList, children: a.selectedValues.map((e) => /* @__PURE__ */ s(
|
|
57
|
+
!u && a.mode === "options" && a.selectedValues && a.selectedValues.length > 0 && /* @__PURE__ */ l("div", { className: t.summaryList, children: a.selectedValues.map((e) => /* @__PURE__ */ s(
|
|
57
58
|
"div",
|
|
58
59
|
{
|
|
59
|
-
onClick: () =>
|
|
60
|
+
onClick: () => y(e.value.toString()),
|
|
60
61
|
className: t.summaryOption,
|
|
61
62
|
children: [
|
|
62
63
|
e.label,
|
|
@@ -71,7 +72,7 @@ const N = "_root_156r8_1", p = "_nameWrapper_156r8_8", f = "_clearBtn_156r8_18",
|
|
|
71
72
|
},
|
|
72
73
|
e.value
|
|
73
74
|
)) }),
|
|
74
|
-
a.mode === "double" && (m == null ? void 0 : m.map((e, o) => {
|
|
75
|
+
!u && a.mode === "double" && (m == null ? void 0 : m.map((e, o) => {
|
|
75
76
|
const r = e;
|
|
76
77
|
return /* @__PURE__ */ s(
|
|
77
78
|
"div",
|
|
@@ -83,7 +84,7 @@ const N = "_root_156r8_1", p = "_nameWrapper_156r8_8", f = "_clearBtn_156r8_18",
|
|
|
83
84
|
/* @__PURE__ */ l(
|
|
84
85
|
"div",
|
|
85
86
|
{
|
|
86
|
-
onClick: () =>
|
|
87
|
+
onClick: () => C(e),
|
|
87
88
|
className: t.clearBtn,
|
|
88
89
|
children: /* @__PURE__ */ l(
|
|
89
90
|
d,
|
|
@@ -97,11 +98,11 @@ const N = "_root_156r8_1", p = "_nameWrapper_156r8_8", f = "_clearBtn_156r8_18",
|
|
|
97
98
|
] }),
|
|
98
99
|
/* @__PURE__ */ l("div", { className: t.categoryOptions, children: r.options.filter((n) => {
|
|
99
100
|
var i;
|
|
100
|
-
return (i = a.selectedValues) == null ? void 0 : i.some((
|
|
101
|
+
return (i = a.selectedValues) == null ? void 0 : i.some((O) => n.value === O.value);
|
|
101
102
|
}).map((n, i) => /* @__PURE__ */ s(
|
|
102
103
|
"div",
|
|
103
104
|
{
|
|
104
|
-
onClick: () =>
|
|
105
|
+
onClick: () => y(n.value.toString()),
|
|
105
106
|
className: `${t.summaryOption} ${t.categoryOption}`,
|
|
106
107
|
children: [
|
|
107
108
|
n.label,
|
|
@@ -124,5 +125,5 @@ const N = "_root_156r8_1", p = "_nameWrapper_156r8_8", f = "_clearBtn_156r8_18",
|
|
|
124
125
|
] });
|
|
125
126
|
};
|
|
126
127
|
export {
|
|
127
|
-
|
|
128
|
+
$ as SummarySelect
|
|
128
129
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { S as y } from "../../../FilterWithSave-
|
|
3
|
+
import { S as y } from "../../../FilterWithSave-DkVYQ7W8.js";
|
|
4
4
|
import "../../Text/ui/Text.js";
|
|
5
5
|
import "../../../index-rKuIKazb.js";
|
|
6
6
|
import "../../Button/ui/Button.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as s, jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import { M as f } from "../../../Menu-
|
|
2
|
+
import { M as f } from "../../../Menu-DKuZheFD.js";
|
|
3
3
|
import { useState as c } from "react";
|
|
4
4
|
import "../../../components/Button/ui/Button.js";
|
|
5
5
|
import "../../../components/mobileButton/ui/MobileButton.js";
|
|
@@ -12,7 +12,7 @@ import "../../../components/Text/ui/Text.js";
|
|
|
12
12
|
import "../../../components/Flex/ui/Flex.js";
|
|
13
13
|
import "../../../components/Input/ui/Input.js";
|
|
14
14
|
import "react-dom";
|
|
15
|
-
import "../../../FilterWithSave-
|
|
15
|
+
import "../../../FilterWithSave-DkVYQ7W8.js";
|
|
16
16
|
import "../../../components/GroupedInput/ui/GroupedInputs.js";
|
|
17
17
|
import "../../../index-rKuIKazb.js";
|
|
18
18
|
import "../../../components/MetroTag/ui/MetroTag.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
|
-
import { M as z } from "../../Menu-
|
|
2
|
+
import { M as z } from "../../Menu-DKuZheFD.js";
|
|
3
3
|
import "../../components/Button/ui/Button.js";
|
|
4
4
|
import "../../components/mobileButton/ui/MobileButton.js";
|
|
5
5
|
import "../../components/NewIcon/ui/NewIcon.js";
|
|
@@ -12,7 +12,7 @@ import "../../components/Flex/ui/Flex.js";
|
|
|
12
12
|
import "../../components/Input/ui/Input.js";
|
|
13
13
|
import "react";
|
|
14
14
|
import "react-dom";
|
|
15
|
-
import "../../FilterWithSave-
|
|
15
|
+
import "../../FilterWithSave-DkVYQ7W8.js";
|
|
16
16
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
17
17
|
import "../../index-rKuIKazb.js";
|
|
18
18
|
import "../../components/MetroTag/ui/MetroTag.js";
|
package/dist/main.js
CHANGED
|
@@ -10,7 +10,7 @@ import { Flex as h } from "./components/Flex/ui/Flex.js";
|
|
|
10
10
|
import { Input as T } from "./components/Input/ui/Input.js";
|
|
11
11
|
import { Modal as k } from "./components/Modal/ui/Modal.js";
|
|
12
12
|
import { FieldInput as F } from "./components/FieldInput/ui/FieldInput.js";
|
|
13
|
-
import { C as g, F as w, L as I, M as N, a as v, S as W } from "./FilterWithSave-
|
|
13
|
+
import { C as g, F as w, L as I, M as N, a as v, S as W } from "./FilterWithSave-DkVYQ7W8.js";
|
|
14
14
|
import { GroupedInputs as q } from "./components/GroupedInput/ui/GroupedInputs.js";
|
|
15
15
|
import { Logo as D } from "./components/Logo/ui/Logo.js";
|
|
16
16
|
import { MetroTag as G } from "./components/MetroTag/ui/MetroTag.js";
|
|
@@ -11,7 +11,7 @@ import "../../components/Text/ui/Text.js";
|
|
|
11
11
|
import "../../components/Flex/ui/Flex.js";
|
|
12
12
|
import "../../components/Input/ui/Input.js";
|
|
13
13
|
import "react-dom";
|
|
14
|
-
import "../../FilterWithSave-
|
|
14
|
+
import "../../FilterWithSave-DkVYQ7W8.js";
|
|
15
15
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import "../../index-rKuIKazb.js";
|
|
17
17
|
import "../../components/MetroTag/ui/MetroTag.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as a, jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import { useState as e } from "react";
|
|
3
|
-
import { M as n } from "../../FilterWithSave-
|
|
3
|
+
import { M as n } from "../../FilterWithSave-DkVYQ7W8.js";
|
|
4
4
|
import { Button as s } from "../../components/Button/ui/Button.js";
|
|
5
5
|
import "../../components/mobileButton/ui/MobileButton.js";
|
|
6
6
|
import "../../components/NewIcon/ui/NewIcon.js";
|
|
@@ -11,7 +11,7 @@ import "../../components/Flex/ui/Flex.js";
|
|
|
11
11
|
import "../../components/Input/ui/Input.js";
|
|
12
12
|
import "react";
|
|
13
13
|
import "react-dom";
|
|
14
|
-
import "../../FilterWithSave-
|
|
14
|
+
import "../../FilterWithSave-DkVYQ7W8.js";
|
|
15
15
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import "../../index-rKuIKazb.js";
|
|
17
17
|
import "../../components/MetroTag/ui/MetroTag.js";
|
|
@@ -11,7 +11,7 @@ import "../../components/Flex/ui/Flex.js";
|
|
|
11
11
|
import { Input as t } from "../../components/Input/ui/Input.js";
|
|
12
12
|
import "react";
|
|
13
13
|
import "react-dom";
|
|
14
|
-
import "../../FilterWithSave-
|
|
14
|
+
import "../../FilterWithSave-DkVYQ7W8.js";
|
|
15
15
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import "../../index-rKuIKazb.js";
|
|
17
17
|
import "../../components/MetroTag/ui/MetroTag.js";
|
|
@@ -11,7 +11,7 @@ import "../../components/Flex/ui/Flex.js";
|
|
|
11
11
|
import "../../components/Input/ui/Input.js";
|
|
12
12
|
import "react";
|
|
13
13
|
import "react-dom";
|
|
14
|
-
import "../../FilterWithSave-
|
|
14
|
+
import "../../FilterWithSave-DkVYQ7W8.js";
|
|
15
15
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import { Logo as r } from "../../components/Logo/ui/Logo.js";
|
|
17
17
|
import "../../components/MetroTag/ui/MetroTag.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as t, jsxs as i } from "react/jsx-runtime";
|
|
2
2
|
import { useState as c } from "react";
|
|
3
3
|
import { LotCardSkeleton as l } from "../../components/LotCardSkeleton/ui/LotCardSkeleton.js";
|
|
4
|
-
import { C as p, L as r } from "../../FilterWithSave-
|
|
4
|
+
import { C as p, L as r } from "../../FilterWithSave-DkVYQ7W8.js";
|
|
5
5
|
import { ProjectCardSkeleton as m } from "../../components/ProjectCardSkeleton/ui/ProjectCardSkeleton.js";
|
|
6
6
|
import { testLot as e, testLotEmpty as d } from "./const.js";
|
|
7
7
|
const h = "_root_1w9fc_1", f = "_lotWrapper_1w9fc_8", _ = "_optionsWrapper_1w9fc_14", F = "_isFetching_1w9fc_20", s = {
|
|
@@ -9,10 +9,10 @@ const h = "_root_1w9fc_1", f = "_lotWrapper_1w9fc_8", _ = "_optionsWrapper_1w9fc
|
|
|
9
9
|
lotWrapper: f,
|
|
10
10
|
optionsWrapper: _,
|
|
11
11
|
isFetching: F
|
|
12
|
-
},
|
|
12
|
+
}, x = () => {
|
|
13
13
|
const [o, a] = c(!1), n = JSON.parse(JSON.stringify(e));
|
|
14
14
|
return n.status = 2, /* @__PURE__ */ t("div", { className: s.root, children: /* @__PURE__ */ i("div", { className: s.lotWrapper, children: [
|
|
15
|
-
/* @__PURE__ */ t(p, { lot: n }),
|
|
15
|
+
/* @__PURE__ */ t(p, { lot: n, isVertical: !0 }),
|
|
16
16
|
!o && /* @__PURE__ */ t(
|
|
17
17
|
r,
|
|
18
18
|
{
|
|
@@ -63,5 +63,5 @@ const h = "_root_1w9fc_1", f = "_lotWrapper_1w9fc_8", _ = "_optionsWrapper_1w9fc
|
|
|
63
63
|
] }) });
|
|
64
64
|
};
|
|
65
65
|
export {
|
|
66
|
-
|
|
66
|
+
x as LotsPage
|
|
67
67
|
};
|
|
@@ -11,7 +11,7 @@ import "../../components/Text/ui/Text.js";
|
|
|
11
11
|
import "../../components/Flex/ui/Flex.js";
|
|
12
12
|
import "../../components/Input/ui/Input.js";
|
|
13
13
|
import { Modal as m } from "../../components/Modal/ui/Modal.js";
|
|
14
|
-
import "../../FilterWithSave-
|
|
14
|
+
import "../../FilterWithSave-DkVYQ7W8.js";
|
|
15
15
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import "../../index-rKuIKazb.js";
|
|
17
17
|
import "../../components/MetroTag/ui/MetroTag.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as s, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { useState as n } from "react";
|
|
3
3
|
import { SummarySelect as u } from "../../components/SummarySelect/ui/SummarySelect.js";
|
|
4
|
-
import { F as m, a as y } from "../../FilterWithSave-
|
|
4
|
+
import { F as m, a as y } from "../../FilterWithSave-DkVYQ7W8.js";
|
|
5
5
|
import { defaultOption as i, defaultCategory as a } from "./const.js";
|
|
6
6
|
import { CheckboxSelect as v } from "../../components/CheckboxSelect/ui/CheckboxSelect.js";
|
|
7
7
|
import { CheckBox as k } from "../../components/CheckBox/CheckBox.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as p, jsx as a } from "react/jsx-runtime";
|
|
2
2
|
import { useState as o } from "react";
|
|
3
|
-
import { S as i } from "../../FilterWithSave-
|
|
3
|
+
import { S as i } from "../../FilterWithSave-DkVYQ7W8.js";
|
|
4
4
|
import { FieldInput as l } from "../../components/FieldInput/ui/FieldInput.js";
|
|
5
5
|
import { TabSelect as d } from "../../components/TabSelect/ui/TabSelect.js";
|
|
6
6
|
const m = "_root_idppf_1", _ = "_tabsShort_idppf_7", w = "_tabSelectWrapper_idppf_11", v = "_destinationWrapper_idppf_15", g = "_whiteRow_apart_idppf_22", u = "_row_apart_idppf_26", n = {
|
|
@@ -11,7 +11,7 @@ import "../../components/Flex/ui/Flex.js";
|
|
|
11
11
|
import "../../components/Input/ui/Input.js";
|
|
12
12
|
import "react";
|
|
13
13
|
import "react-dom";
|
|
14
|
-
import "../../FilterWithSave-
|
|
14
|
+
import "../../FilterWithSave-DkVYQ7W8.js";
|
|
15
15
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import "../../index-rKuIKazb.js";
|
|
17
17
|
import { MetroTag as o } from "../../components/MetroTag/ui/MetroTag.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { l as o } from "../../../index-DvCs2JPX.js";
|
|
3
|
-
import { C as n } from "../../../FilterWithSave-
|
|
3
|
+
import { C as n } from "../../../FilterWithSave-DkVYQ7W8.js";
|
|
4
4
|
const l = {
|
|
5
5
|
id: 1,
|
|
6
6
|
lotUuid: "123-abc",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { l as e } from "../../../../index-DvCs2JPX.js";
|
|
2
|
-
import { F as l } from "../../../../FilterWithSave-
|
|
2
|
+
import { F as l } from "../../../../FilterWithSave-DkVYQ7W8.js";
|
|
3
3
|
const t = [
|
|
4
4
|
{ value: "1", label: "Option 1" },
|
|
5
5
|
{ value: "2", label: "Option 2" },
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
2
|
import { l as i } from "../../../../index-DvCs2JPX.js";
|
|
3
|
-
import { M as o } from "../../../../FilterWithSave-
|
|
3
|
+
import { M as o } from "../../../../FilterWithSave-DkVYQ7W8.js";
|
|
4
4
|
const r = {
|
|
5
5
|
title: "shared/ui/FormModal",
|
|
6
6
|
component: o,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { l as e } from "../../../../index-DvCs2JPX.js";
|
|
2
|
-
import { a } from "../../../../FilterWithSave-
|
|
2
|
+
import { a } from "../../../../FilterWithSave-DkVYQ7W8.js";
|
|
3
3
|
const t = [
|
|
4
4
|
{ value: "price-asc", label: "Price: Low to High" },
|
|
5
5
|
{ value: "price-desc", label: "Price: High to Low" },
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { l as a } from "../../../../index-DvCs2JPX.js";
|
|
2
|
-
import { S as e } from "../../../../FilterWithSave-
|
|
2
|
+
import { S as e } from "../../../../FilterWithSave-DkVYQ7W8.js";
|
|
3
3
|
const t = [
|
|
4
4
|
{ value: "tab1", label: "Overview" },
|
|
5
5
|
{ value: "tab2", label: "Details" },
|