stone-kit 0.0.887 → 0.0.889
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 +10 -0
- package/dist/ButtonState.module-DtW3aevR.js +8 -0
- package/dist/FilterWithSave-Bp6rH8Pe.js +2230 -0
- package/dist/Menu-CgCfinVZ.js +513 -0
- package/dist/Option-BVIm7wOW.js +83 -0
- package/dist/PinTrans-D6OZq76b.js +10 -0
- package/dist/Router.js +103 -0
- package/dist/SmallFilter-C-VKnbkP.js +10 -0
- package/dist/components/Button/index.js +4 -0
- package/dist/components/Button/ui/Button.js +94 -0
- package/dist/components/Button/ui/Button.types.js +15 -0
- package/dist/components/CheckBox/CheckBox.js +84 -0
- package/dist/components/CheckBox/CheckBox.types.js +1 -0
- package/dist/components/CheckBox/index.js +4 -0
- package/dist/components/CheckBoxNew/CheckBox.types.js +6 -0
- package/dist/components/CheckBoxNew/CheckBoxNew.js +45 -0
- package/dist/components/CheckboxSelect/index.js +4 -0
- package/dist/components/CheckboxSelect/ui/CheckboxSelect.js +51 -0
- package/dist/components/DestinationTab/index.js +4 -0
- package/dist/components/DestinationTab/ui/DestinationTab.js +75 -0
- package/dist/components/DestinationTab/ui/DestinationTab.types.js +6 -0
- package/dist/components/FieldInput/index.js +4 -0
- package/dist/components/FieldInput/ui/FieldInput.js +22 -0
- package/dist/components/FieldInput/ui/FieldInput.types.js +1 -0
- package/dist/components/FilterWithSave/hooks/useFilterWithSave.js +28 -0
- package/dist/components/FilterWithSave/ui/FilterWithSave.js +9 -0
- package/dist/components/Flex/index.js +4 -0
- package/dist/components/Flex/ui/Flex.js +68 -0
- package/dist/components/Flex/ui/Flex.types.js +1 -0
- package/dist/components/FormModal/ui/ModalForm.js +30 -0
- package/dist/components/FormModal/utils/reg.js +6 -0
- package/dist/components/GroupedInput/index.js +4 -0
- package/dist/components/GroupedInput/ui/GroupedInputs.js +8 -0
- package/dist/components/GroupedInput/ui/GroupedInputs.types.js +1 -0
- package/dist/components/Input/index.js +4 -0
- package/dist/components/Input/ui/Input.js +3346 -0
- package/dist/components/Input/ui/Input.types.js +1 -0
- package/dist/components/Logo/index.js +4 -0
- package/dist/components/Logo/ui/Logo.js +63 -0
- package/dist/components/Logo/ui/Logo.types.js +13 -0
- package/dist/components/LotCard/hooks/useLotCard.js +31 -0
- package/dist/components/LotCard/index.js +4 -0
- package/dist/components/LotCard/ui/LotCard.js +11 -0
- package/dist/components/LotCard/ui/LotCard.types.d.ts +163 -70
- package/dist/components/LotCard/ui/LotCard.types.js +1 -0
- package/dist/components/LotCard/utils/checkBedroomsCount.js +20 -0
- package/dist/components/LotCard/utils/const.js +11 -0
- package/dist/components/LotCard/utils/formatPrice.js +11 -0
- package/dist/components/LotCard/utils/getTagsFeatures.js +13 -0
- package/dist/components/LotCard/utils/monthlyPayment.js +4 -0
- package/dist/components/LotCardSkeleton/index.js +4 -0
- package/dist/components/LotCardSkeleton/ui/LotCardSkeleton.js +83 -0
- package/dist/components/MetroLabel/ui/MetroLabel.js +44 -0
- package/dist/components/MetroLabel/ui/MetroLabel.types.js +1 -0
- package/dist/components/MetroTag/index.js +4 -0
- package/dist/components/MetroTag/ui/MetroTag.js +142 -0
- package/dist/components/MetroTag/ui/MetroTag.types.js +1 -0
- package/dist/components/Modal/index.js +4 -0
- package/dist/components/Modal/ui/Modal.js +77 -0
- package/dist/components/Modal/ui/Modal.types.js +1 -0
- package/dist/components/ModalSuccess/ModalSuccess.js +61 -0
- package/dist/components/ModalSuccess/ModalSuccess.types.js +1 -0
- package/dist/components/NewIcon/icons/PinTrans.js +6 -0
- package/dist/components/NewIcon/icons/SmallFilter.js +6 -0
- package/dist/components/NewIcon/index.js +4 -0
- package/dist/components/NewIcon/ui/NewIcon.js +319 -0
- package/dist/components/NewIcon/ui/NewIcon.types.js +1 -0
- package/dist/components/NewIcon/ui/iconTypes.js +60 -0
- package/dist/components/ProjectCardSkeleton/index.js +4 -0
- package/dist/components/ProjectCardSkeleton/ui/ProjectCardSkeleton.js +34 -0
- package/dist/components/RoundButton/index.js +4 -0
- package/dist/components/RoundButton/ui/RoundButton.js +73 -0
- package/dist/components/RoundButton/ui/RoundButton.types.js +16 -0
- package/dist/components/Select/index.js +4 -0
- package/dist/components/Select/model/selectMode.js +49 -0
- package/dist/components/Select/ui/Category.js +76 -0
- package/dist/components/Select/ui/Option.js +7 -0
- package/dist/components/Select/ui/Select.js +179 -0
- package/dist/components/Select/ui/Select.types.js +1 -0
- package/dist/components/SliderNavigation/index.js +4 -0
- package/dist/components/SliderNavigation/ui/SliderNavigation.js +65 -0
- package/dist/components/SliderNavigation/ui/SliderNavigation.types.js +1 -0
- package/dist/components/SortSelect/hooks/useSortSelect.js +6 -0
- package/dist/components/SortSelect/index.js +4 -0
- package/dist/components/SortSelect/ui/SortSelect.js +29 -0
- package/dist/components/SortSelect/ui/SortSelect.types.js +1 -0
- package/dist/components/SummarySelect/index.js +4 -0
- package/dist/components/SummarySelect/ui/SummarySelect.js +128 -0
- package/dist/components/Switcher/index.js +4 -0
- package/dist/components/Switcher/ui/Switcher.js +49 -0
- package/dist/components/Switcher/ui/Switcher.types.js +1 -0
- package/dist/components/TabSelect/index.js +4 -0
- package/dist/components/TabSelect/ui/TabSelect.js +49 -0
- package/dist/components/TabSelect/ui/TabSelect.types.js +1 -0
- package/dist/components/TabSwitcher/index.js +4 -0
- package/dist/components/TabSwitcher/ui/TabSwitcher.js +28 -0
- package/dist/components/TabSwitcher/ui/TabSwitcher.types.js +1 -0
- package/dist/components/Tag/index.js +4 -0
- package/dist/components/Tag/ui/Tag.js +79 -0
- package/dist/components/Tag/ui/Tag.types.js +20 -0
- package/dist/components/Text/index.js +4 -0
- package/dist/components/Text/ui/Text.js +22 -0
- package/dist/components/Text/ui/Text.types.js +1 -0
- package/dist/components/TextArea/TextArea.js +19 -0
- package/dist/components/TextArea/TextArea.types.js +1 -0
- package/dist/components/ZoomControls/index.js +4 -0
- package/dist/components/ZoomControls/ui/ZoomControls.js +31 -0
- package/dist/components/ZoomControls/ui/ZoomControls.types.js +1 -0
- package/dist/components/mobileButton/index.js +4 -0
- package/dist/components/mobileButton/ui/MobileButton.js +64 -0
- package/dist/components/mobileButton/ui/MobileButton.types.js +6 -0
- package/dist/index-DQgqDqGf.js +34046 -0
- package/dist/index-DmANy9jd.js +890 -0
- package/dist/index-rKuIKazb.js +45 -0
- package/dist/layout/Layout.js +11 -0
- package/dist/layout/components/Header/Header.js +164 -0
- package/dist/layout/components/Menu.js +28 -0
- package/dist/main.js +62 -7727
- package/dist/pages/ButtonsPage/ButtonState/ButtonState.js +121 -0
- package/dist/pages/ButtonsPage/Buttons.js +134 -0
- package/dist/pages/CheckboxPage/CheckboxPage.js +224 -0
- package/dist/pages/FormsPage/FormsPage.js +81 -0
- package/dist/pages/HomePage/HomePage.js +7 -0
- package/dist/pages/IconsPage/IconsPage.js +41 -0
- package/dist/pages/InputPage/InputPage.js +35 -0
- package/dist/pages/LogoPage/LogoPage.js +38 -0
- package/dist/pages/LotsPage/LotsPage.js +75 -0
- package/dist/pages/LotsPage/const.d.ts +4 -0
- package/dist/pages/LotsPage/const.js +210 -0
- package/dist/pages/ModalsPage/ModalPage.js +130 -0
- package/dist/pages/SelectPage/SelectPage.js +175 -0
- package/dist/pages/SelectPage/const.js +35 -0
- package/dist/pages/TabsPage/TabsPage.js +155 -0
- package/dist/pages/TagsPage/TagsPage.js +75 -0
- package/dist/shared/checkLargeOffice.js +12 -0
- package/dist/shared/deepEqual.js +16 -0
- package/dist/shared/useClientWidth.js +14 -0
- package/dist/stories/Button.js +23 -0
- package/dist/stories/Button.stories.js +50 -0
- package/dist/stories/Header.js +44 -0
- package/dist/stories/Header.stories.js +28 -0
- package/dist/stories/Page.js +58 -0
- package/dist/stories/Page.stories.js +22 -0
- package/dist/style.css +1 -1
- package/dist/useSortSelect-CjZXLFOG.js +80 -0
- package/package.json +1 -2
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { jsxs as c, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { c as w } from "../../../index-rKuIKazb.js";
|
|
3
|
+
import { NewIcon as t } from "../../NewIcon/ui/NewIcon.js";
|
|
4
|
+
const N = "_root_16fjr_1", W = "_iconsWrapper_16fjr_17", x = "_metroColor_16fjr_27", B = "_route_16fjr_37", T = "_auto_16fjr_47", $ = "_full_16fjr_51", C = "_transparent_16fjr_55", b = "_long_16fjr_60", v = "_mini_16fjr_64", y = "_metroColorMini_16fjr_68", I = "_routeMini_16fjr_77", z = "_withBg_16fjr_90", E = "_withWhiteBg_16fjr_94", n = {
|
|
5
|
+
root: N,
|
|
6
|
+
iconsWrapper: W,
|
|
7
|
+
metroColor: x,
|
|
8
|
+
route: B,
|
|
9
|
+
auto: T,
|
|
10
|
+
full: $,
|
|
11
|
+
transparent: C,
|
|
12
|
+
long: b,
|
|
13
|
+
mini: v,
|
|
14
|
+
metroColorMini: y,
|
|
15
|
+
routeMini: I,
|
|
16
|
+
withBg: z,
|
|
17
|
+
withWhiteBg: E
|
|
18
|
+
}, e = w.bind(n), q = ({
|
|
19
|
+
addClassName: a,
|
|
20
|
+
addClassNameColor: _,
|
|
21
|
+
addClassNameTimeTo: j,
|
|
22
|
+
metro: o,
|
|
23
|
+
separatorColor: M = "#F4F5F6",
|
|
24
|
+
width: u = "auto",
|
|
25
|
+
variant: l = "default",
|
|
26
|
+
isBetween: f = !1,
|
|
27
|
+
withBg: d = !1,
|
|
28
|
+
withWhiteBg: p = !1,
|
|
29
|
+
...h
|
|
30
|
+
}) => {
|
|
31
|
+
const g = ["pedestrian", "auto"];
|
|
32
|
+
return Array.isArray(o) ? /* @__PURE__ */ c(
|
|
33
|
+
"div",
|
|
34
|
+
{
|
|
35
|
+
className: e(
|
|
36
|
+
n.root,
|
|
37
|
+
n[l],
|
|
38
|
+
n[f ? "long" : ""],
|
|
39
|
+
n[d ? "withBg" : ""],
|
|
40
|
+
n[p ? "withWhiteBg" : ""],
|
|
41
|
+
a,
|
|
42
|
+
n[u]
|
|
43
|
+
),
|
|
44
|
+
...h,
|
|
45
|
+
children: [
|
|
46
|
+
/* @__PURE__ */ c("div", { className: e(n.metroColor, _), children: [
|
|
47
|
+
/* @__PURE__ */ r("div", { className: n.iconsWrapper, children: o.map((i, s) => i.icon ? /* @__PURE__ */ r(
|
|
48
|
+
"div",
|
|
49
|
+
{
|
|
50
|
+
className: n.icon,
|
|
51
|
+
children: (i == null ? void 0 : i.icon) && /* @__PURE__ */ r(
|
|
52
|
+
t,
|
|
53
|
+
{
|
|
54
|
+
size: "20",
|
|
55
|
+
name: i.icon,
|
|
56
|
+
color: "#777E90"
|
|
57
|
+
}
|
|
58
|
+
)
|
|
59
|
+
},
|
|
60
|
+
`metro + ${i.name} + ${s}`
|
|
61
|
+
) : /* @__PURE__ */ r(
|
|
62
|
+
"span",
|
|
63
|
+
{
|
|
64
|
+
style: {
|
|
65
|
+
background: (i == null ? void 0 : i.color) ?? "",
|
|
66
|
+
border: s > 0 ? `1px solid ${M}` : ""
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
`color + ${i.name} + ${s}`
|
|
70
|
+
)) }),
|
|
71
|
+
o.map((i) => i.name).join(", ")
|
|
72
|
+
] }),
|
|
73
|
+
o == null ? void 0 : o.map((i, s) => !i.mode || !i.timeTo ? null : /* @__PURE__ */ c(
|
|
74
|
+
"div",
|
|
75
|
+
{
|
|
76
|
+
className: n.route,
|
|
77
|
+
children: [
|
|
78
|
+
g.includes(i.mode) && /* @__PURE__ */ r(
|
|
79
|
+
t,
|
|
80
|
+
{
|
|
81
|
+
size: "20",
|
|
82
|
+
name: i.mode,
|
|
83
|
+
color: "#777E90"
|
|
84
|
+
}
|
|
85
|
+
),
|
|
86
|
+
i.timeTo + " " + (i.selfIconText ?? "мин")
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
`route - ${i.name} - ${s}`
|
|
90
|
+
))
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
) : /* @__PURE__ */ c(
|
|
94
|
+
"div",
|
|
95
|
+
{
|
|
96
|
+
className: e(
|
|
97
|
+
n.root,
|
|
98
|
+
n[l],
|
|
99
|
+
n[f ? "long" : ""],
|
|
100
|
+
n[d ? "withBg" : ""],
|
|
101
|
+
n[p ? "withWhiteBg" : ""],
|
|
102
|
+
a,
|
|
103
|
+
n[u]
|
|
104
|
+
),
|
|
105
|
+
...h,
|
|
106
|
+
children: [
|
|
107
|
+
/* @__PURE__ */ c(
|
|
108
|
+
"div",
|
|
109
|
+
{
|
|
110
|
+
className: e(n.metroColor, _, { [n.metroColorMini]: l === "mini" }),
|
|
111
|
+
children: [
|
|
112
|
+
(o == null ? void 0 : o.icon) && /* @__PURE__ */ r(
|
|
113
|
+
"img",
|
|
114
|
+
{
|
|
115
|
+
src: o.icon,
|
|
116
|
+
width: 20,
|
|
117
|
+
height: 20
|
|
118
|
+
}
|
|
119
|
+
),
|
|
120
|
+
(o == null ? void 0 : o.color) && !(o != null && o.icon) && /* @__PURE__ */ r("span", { style: { background: (o == null ? void 0 : o.color) ?? "" } }),
|
|
121
|
+
o.name
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
),
|
|
125
|
+
o.timeTo && /* @__PURE__ */ c("div", { className: e(n.route, j, { [n.routeMini]: l === "mini" }), children: [
|
|
126
|
+
o.mode && g.includes(o.mode) && /* @__PURE__ */ r(
|
|
127
|
+
t,
|
|
128
|
+
{
|
|
129
|
+
size: "20",
|
|
130
|
+
name: o.mode,
|
|
131
|
+
color: "#777E90"
|
|
132
|
+
}
|
|
133
|
+
),
|
|
134
|
+
o.timeTo + " " + (o.selfIconText ?? "мин")
|
|
135
|
+
] })
|
|
136
|
+
]
|
|
137
|
+
}
|
|
138
|
+
);
|
|
139
|
+
};
|
|
140
|
+
export {
|
|
141
|
+
q as MetroTag
|
|
142
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { jsxs as B, jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect as $ } from "react";
|
|
3
|
+
import { createPortal as N } from "react-dom";
|
|
4
|
+
const C = "_root_1vbbc_11", L = "_modalBody_1vbbc_25", x = "_modalOverlay_1vbbc_30", I = "_isTransparentBack_1vbbc_41", T = "_fadeInUp_1vbbc_1", s = {
|
|
5
|
+
root: C,
|
|
6
|
+
modalBody: L,
|
|
7
|
+
modalOverlay: x,
|
|
8
|
+
isTransparentBack: I,
|
|
9
|
+
fadeInUp: T
|
|
10
|
+
}, h = ({
|
|
11
|
+
isOpen: d,
|
|
12
|
+
emitIsOpen: c,
|
|
13
|
+
isTransparentBack: l = !1,
|
|
14
|
+
isClickOutside: t = !0,
|
|
15
|
+
leaveDisableScroll: r = !1,
|
|
16
|
+
createPortalObj: o,
|
|
17
|
+
additionalClass: i,
|
|
18
|
+
additionalClassOverlay: m,
|
|
19
|
+
additionalClassModalBody: f,
|
|
20
|
+
opacity: u = 0.7,
|
|
21
|
+
colorOverlay: e,
|
|
22
|
+
notDisableScroll: v = !1,
|
|
23
|
+
children: y,
|
|
24
|
+
modalBodyRef: _,
|
|
25
|
+
additionalStylesModalBody: b
|
|
26
|
+
}) => {
|
|
27
|
+
const p = () => {
|
|
28
|
+
t && c(!1);
|
|
29
|
+
};
|
|
30
|
+
$(() => {
|
|
31
|
+
if (!v) {
|
|
32
|
+
if (d) {
|
|
33
|
+
if (document.body.classList.contains("disable-scroll"))
|
|
34
|
+
return;
|
|
35
|
+
document.body.classList.add("disable-scroll");
|
|
36
|
+
} else {
|
|
37
|
+
if (r)
|
|
38
|
+
return;
|
|
39
|
+
document.body.classList.remove("disable-scroll");
|
|
40
|
+
}
|
|
41
|
+
return () => document.body.classList.remove("disable-scroll");
|
|
42
|
+
}
|
|
43
|
+
}, [d]);
|
|
44
|
+
const n = /* @__PURE__ */ B(
|
|
45
|
+
"div",
|
|
46
|
+
{
|
|
47
|
+
className: `${s.root} ${i}`,
|
|
48
|
+
onClick: (k) => k.stopPropagation(),
|
|
49
|
+
children: [
|
|
50
|
+
/* @__PURE__ */ a(
|
|
51
|
+
"div",
|
|
52
|
+
{
|
|
53
|
+
onClick: p,
|
|
54
|
+
className: `${s.modalOverlay} ${m} ${l ? s.isTransparentBack : ""}`,
|
|
55
|
+
style: {
|
|
56
|
+
opacity: l ? u : void 0,
|
|
57
|
+
backgroundColor: e || void 0
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
),
|
|
61
|
+
/* @__PURE__ */ a(
|
|
62
|
+
"div",
|
|
63
|
+
{
|
|
64
|
+
className: `${s.modalBody} ${f}`,
|
|
65
|
+
ref: _,
|
|
66
|
+
style: b,
|
|
67
|
+
children: y
|
|
68
|
+
}
|
|
69
|
+
)
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
);
|
|
73
|
+
return d ? o != null && o.domNode && o.domNode.isConnected ? N(n, o.domNode, o.key) : n : null;
|
|
74
|
+
};
|
|
75
|
+
export {
|
|
76
|
+
h as Modal
|
|
77
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { jsx as c, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
import { Modal as a } from "../Modal/ui/Modal.js";
|
|
3
|
+
import { Button as n } from "../Button/ui/Button.js";
|
|
4
|
+
import { NewIcon as s } from "../NewIcon/ui/NewIcon.js";
|
|
5
|
+
const d = "_modal_1og3m_1", m = "_modalBody_1og3m_9", r = "_root_1og3m_14", _ = "_check_1og3m_26", h = "_iconCircle_1og3m_32", C = "_iconCheck_1og3m_38", u = "_text_1og3m_44", k = "_successTitle_1og3m_52", g = "_title_1og3m_67", o = {
|
|
6
|
+
modal: d,
|
|
7
|
+
modalBody: m,
|
|
8
|
+
root: r,
|
|
9
|
+
check: _,
|
|
10
|
+
iconCircle: h,
|
|
11
|
+
iconCheck: C,
|
|
12
|
+
text: u,
|
|
13
|
+
successTitle: k,
|
|
14
|
+
title: g
|
|
15
|
+
}, v = ({ isSuccessOpen: i, setIsSuccess: e, createPortalObj: l }) => /* @__PURE__ */ c(
|
|
16
|
+
a,
|
|
17
|
+
{
|
|
18
|
+
createPortalObj: l,
|
|
19
|
+
emitIsOpen: e,
|
|
20
|
+
isOpen: i,
|
|
21
|
+
additionalClassModalBody: o.modalBody,
|
|
22
|
+
additionalClass: o.modal,
|
|
23
|
+
opacity: 0.7,
|
|
24
|
+
isTransparentBack: !0,
|
|
25
|
+
children: /* @__PURE__ */ t("div", { className: o.root, children: [
|
|
26
|
+
/* @__PURE__ */ t("div", { className: o.check, children: [
|
|
27
|
+
/* @__PURE__ */ c(s, { name: "circle", size: "80", additionalClass: o.iconCircle, color: "#57C27D" }),
|
|
28
|
+
/* @__PURE__ */ c(
|
|
29
|
+
s,
|
|
30
|
+
{
|
|
31
|
+
additionalClass: o.iconCheck,
|
|
32
|
+
size: "32",
|
|
33
|
+
name: "check",
|
|
34
|
+
color: "#57C27D"
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
] }),
|
|
38
|
+
/* @__PURE__ */ t("div", { className: o.text, children: [
|
|
39
|
+
/* @__PURE__ */ c("div", { className: o.successTitle, children: "Запрос принят" }),
|
|
40
|
+
/* @__PURE__ */ c("div", { className: o.successText, children: "Наш менеджер свяжется с вами в ближайшее время" })
|
|
41
|
+
] }),
|
|
42
|
+
/* @__PURE__ */ c(
|
|
43
|
+
n,
|
|
44
|
+
{
|
|
45
|
+
"data-testid": "modal_submit",
|
|
46
|
+
variant: "blue",
|
|
47
|
+
width: "auto",
|
|
48
|
+
type: "submit",
|
|
49
|
+
size: "large",
|
|
50
|
+
as: "button",
|
|
51
|
+
onClick: () => e(!1),
|
|
52
|
+
additionalClass: o.modalBtn,
|
|
53
|
+
children: "Хорошо"
|
|
54
|
+
}
|
|
55
|
+
)
|
|
56
|
+
] })
|
|
57
|
+
}
|
|
58
|
+
);
|
|
59
|
+
export {
|
|
60
|
+
v as ModalSuccess
|
|
61
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|