stone-kit 0.0.875 → 0.0.877
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/Router.js +9 -9
- package/dist/_virtual/_commonjsHelpers.js +6 -0
- package/dist/_virtual/bind.js +4 -0
- package/dist/_virtual/index.js +4 -0
- package/dist/_virtual/index2.js +4 -0
- package/dist/_virtual/index3.js +4 -0
- package/dist/_virtual/react-is.development.js +4 -0
- package/dist/_virtual/react-is.production.min.js +4 -0
- package/dist/components/Button/ui/Button.js +44 -73
- package/dist/components/CheckBox/CheckBox.js +35 -46
- package/dist/components/CheckBoxNew/CheckBoxNew.js +19 -23
- package/dist/components/CheckboxSelect/ui/CheckboxSelect.js +24 -31
- package/dist/components/DestinationTab/ui/DestinationTab.js +35 -48
- package/dist/components/FieldInput/ui/FieldInput.js +7 -10
- package/dist/components/FilterWithSave/hooks/useFilterWithSave.js +61 -5
- package/dist/components/FilterWithSave/ui/FilterWithSave.js +266 -7
- package/dist/components/Flex/ui/Flex.js +26 -61
- package/dist/components/FormModal/ui/ModalForm.js +289 -14
- package/dist/components/GroupedInput/ui/GroupedInputs.js +5 -6
- package/dist/components/Input/ui/Input.js +74 -3307
- package/dist/components/Logo/ui/Logo.js +19 -31
- package/dist/components/Logo/ui/Logo.types.js +18 -10
- package/dist/components/LotCard/hooks/useLotCard.js +125 -11
- package/dist/components/LotCard/index.js +2 -2
- package/dist/components/LotCard/ui/LotCard.js +150 -9
- package/dist/components/LotCardSkeleton/ui/LotCardSkeleton.js +31 -58
- package/dist/components/MetroLabel/ui/MetroLabel.js +19 -24
- package/dist/components/MetroTag/ui/MetroTag.js +59 -72
- package/dist/components/Modal/ui/Modal.js +33 -38
- package/dist/components/ModalSuccess/ModalSuccess.js +26 -35
- package/dist/components/NewIcon/icons/PinTrans.js +3 -3
- package/dist/components/NewIcon/icons/SmallFilter.js +1 -1
- package/dist/components/NewIcon/ui/NewIcon.js +141 -301
- package/dist/components/ProjectCardSkeleton/ui/ProjectCardSkeleton.js +5 -15
- package/dist/components/RoundButton/ui/RoundButton.js +42 -60
- package/dist/components/Select/ui/Category.js +30 -29
- package/dist/components/Select/ui/Option.js +52 -5
- package/dist/components/Select/ui/Select.js +24 -23
- package/dist/components/SliderNavigation/ui/SliderNavigation.js +27 -28
- package/dist/components/SortSelect/hooks/useSortSelect.js +59 -4
- package/dist/components/SortSelect/index.js +1 -1
- package/dist/components/SortSelect/ui/SortSelect.js +114 -9
- package/dist/components/SummarySelect/ui/SummarySelect.js +59 -69
- package/dist/components/Switcher/ui/Switcher.js +13 -24
- package/dist/components/TabSelect/ui/TabSelect.js +28 -34
- package/dist/components/TabSwitcher/index.js +2 -2
- package/dist/components/TabSwitcher/ui/TabSwitcher.js +84 -7
- package/dist/components/Tag/ui/Tag.js +19 -67
- package/dist/components/Text/ui/Text.js +12 -13
- package/dist/components/TextArea/TextArea.js +11 -14
- package/dist/components/ZoomControls/ui/ZoomControls.js +8 -11
- package/dist/components/mobileButton/ui/MobileButton.js +34 -39
- package/dist/layout/Layout.js +7 -8
- package/dist/layout/components/Header/Header.js +41 -44
- package/dist/layout/components/Menu.js +111 -6
- package/dist/main.js +46 -42
- package/dist/node_modules/@remix-run/router/dist/router.js +431 -0
- package/dist/node_modules/classnames/bind.js +42 -0
- package/dist/{index-rKuIKazb.js → node_modules/classnames/index.js} +12 -15
- package/dist/node_modules/imask/esm/controls/html-contenteditable-mask-element.js +35 -0
- package/dist/node_modules/imask/esm/controls/html-input-mask-element.js +31 -0
- package/dist/node_modules/imask/esm/controls/html-mask-element.js +48 -0
- package/dist/node_modules/imask/esm/controls/input-history.js +30 -0
- package/dist/node_modules/imask/esm/controls/input.js +224 -0
- package/dist/node_modules/imask/esm/controls/mask-element.js +43 -0
- package/dist/node_modules/imask/esm/core/action-details.js +51 -0
- package/dist/node_modules/imask/esm/core/change-details.js +36 -0
- package/dist/node_modules/imask/esm/core/continuous-tail-details.js +44 -0
- package/dist/node_modules/imask/esm/core/holder.js +6 -0
- package/dist/node_modules/imask/esm/core/utils.js +80 -0
- package/dist/node_modules/imask/esm/index.js +50 -0
- package/dist/node_modules/imask/esm/masked/base.js +257 -0
- package/dist/node_modules/imask/esm/masked/date.js +118 -0
- package/dist/node_modules/imask/esm/masked/dynamic.js +224 -0
- package/dist/node_modules/imask/esm/masked/enum.js +70 -0
- package/dist/node_modules/imask/esm/masked/factory.js +51 -0
- package/dist/node_modules/imask/esm/masked/function.js +23 -0
- package/dist/node_modules/imask/esm/masked/number.js +215 -0
- package/dist/node_modules/imask/esm/masked/pattern/chunk-tail-details.js +110 -0
- package/dist/node_modules/imask/esm/masked/pattern/cursor.js +102 -0
- package/dist/node_modules/imask/esm/masked/pattern/fixed-definition.js +103 -0
- package/dist/node_modules/imask/esm/masked/pattern/input-definition.js +134 -0
- package/dist/node_modules/imask/esm/masked/pattern.js +339 -0
- package/dist/node_modules/imask/esm/masked/pipe.js +23 -0
- package/dist/node_modules/imask/esm/masked/range.js +82 -0
- package/dist/node_modules/imask/esm/masked/regexp.js +21 -0
- package/dist/node_modules/imask/esm/masked/repeat.js +106 -0
- package/dist/node_modules/object-assign/index.js +55 -0
- package/dist/node_modules/prop-types/checkPropTypes.js +55 -0
- package/dist/node_modules/prop-types/factoryWithThrowingShims.js +53 -0
- package/dist/node_modules/prop-types/factoryWithTypeCheckers.js +330 -0
- package/dist/node_modules/prop-types/index.js +15 -0
- package/dist/node_modules/prop-types/lib/ReactPropTypesSecret.js +11 -0
- package/dist/node_modules/prop-types/lib/has.js +7 -0
- package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +95 -0
- package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +79 -0
- package/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
- package/dist/node_modules/react-hook-form/dist/index.esm.js +1062 -0
- package/dist/node_modules/react-imask/esm/input.js +25 -0
- package/dist/node_modules/react-imask/esm/mixin.js +131 -0
- package/dist/node_modules/react-router/dist/index.js +486 -0
- package/dist/node_modules/react-router-dom/dist/index.js +424 -0
- package/dist/pages/ButtonsPage/ButtonState/ButtonState.js +1 -1
- package/dist/pages/ButtonsPage/Buttons.js +54 -62
- package/dist/pages/CheckboxPage/CheckboxPage.js +47 -51
- package/dist/pages/FormsPage/FormsPage.js +31 -32
- package/dist/pages/HomePage/HomePage.js +3 -4
- package/dist/pages/IconsPage/IconsPage.js +12 -10
- package/dist/pages/InputPage/InputPage.js +17 -12
- package/dist/pages/LogoPage/LogoPage.js +17 -14
- package/dist/pages/LotsPage/LotsPage.js +15 -15
- package/dist/pages/ModalsPage/ModalPage.js +19 -14
- package/dist/pages/SelectPage/SelectPage.js +42 -41
- package/dist/pages/TabsPage/TabsPage.js +49 -51
- package/dist/pages/TagsPage/TagsPage.js +10 -7
- package/dist/src/components/Button/ui/Button.module.scss.js +49 -0
- package/dist/src/components/CheckBox/s.module.scss.js +24 -0
- package/dist/src/components/CheckBoxNew/s.module.scss.js +13 -0
- package/dist/src/components/CheckboxSelect/ui/s.module.scss.js +19 -0
- package/dist/src/components/DestinationTab/ui/DestinationTab.module.scss.js +23 -0
- package/dist/src/components/FieldInput/ui/FieldInput.module.scss.js +11 -0
- package/dist/src/components/FilterWithSave/ui/s.module.scss.js +39 -0
- package/dist/src/components/Flex/ui/Flex.module.scss.js +41 -0
- package/dist/src/components/FormModal/ui/ModalForm.module.scss.js +31 -0
- package/dist/src/components/GroupedInput/ui/GroupedInputs.module.scss.js +7 -0
- package/dist/src/components/Input/ui/Input.module.scss.js +43 -0
- package/dist/src/components/Logo/assets/LogoBlack.svg.js +4 -0
- package/dist/src/components/Logo/assets/LogoDom.svg.js +4 -0
- package/dist/src/components/Logo/assets/LogoNewDom.svg.js +4 -0
- package/dist/src/components/Logo/assets/LogoNewOffice.svg.js +4 -0
- package/dist/src/components/Logo/assets/LogoOffice.svg.js +4 -0
- package/dist/src/components/Logo/assets/LogoRealty.svg.js +4 -0
- package/dist/src/components/Logo/assets/LogoValue.svg.js +4 -0
- package/dist/src/components/Logo/assets/LogoWhite.svg.js +4 -0
- package/dist/src/components/Logo/ui/Logo.module.scss.js +29 -0
- package/dist/src/components/LotCard/assets/testLot.webp.js +4 -0
- package/dist/src/components/LotCard/ui/LotCard.module.scss.js +71 -0
- package/dist/src/components/LotCardSkeleton/ui/LotCardSkeleton.module.scss.js +59 -0
- package/dist/src/components/MetroLabel/ui/MetroLabel.module.scss.js +15 -0
- package/dist/src/components/MetroTag/ui/MetroTag.module.scss.js +31 -0
- package/dist/src/components/Modal/ui/Modal.module.scss.js +15 -0
- package/dist/src/components/ModalSuccess/styles.module.scss.js +23 -0
- package/dist/src/components/NewIcon/assets/ArrowLong.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/ArrowShort.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Auto.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Building.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Burger.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/BurgerClose.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Call.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Callback.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Case.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Check.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Circle.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Close.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/DirectionDown.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Download.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Filter.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Food.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Fullscreen.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Heart.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Layers.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/LayersFilled.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Loader.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Lock.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Metro.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Minus.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/MinusCheck.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Moon.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Park.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Pedestrian.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Phone.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/PhoneFilled.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Pin.svg.js +10 -0
- package/dist/{PinTrans-D6OZq76b.js → src/components/NewIcon/assets/PinTrans.svg.js} +4 -4
- package/dist/src/components/NewIcon/assets/Play.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Play2.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Plus.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Redo.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Ruble.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Search.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/SelectChecked.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/SelectUnchecked.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Share.svg.js +10 -0
- package/dist/{SmallFilter-C-VKnbkP.js → src/components/NewIcon/assets/SmallFilter.svg.js} +3 -3
- package/dist/src/components/NewIcon/assets/Sport.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/SquareMeter.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Star.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/StarFilled.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Sun.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Telegram.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/Timer.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/TwoArrows.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/User.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/WhatsApp.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/WithoutDecor.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/arrowRight.svg.js +10 -0
- package/dist/src/components/NewIcon/assets/mail.svg.js +10 -0
- package/dist/src/components/NewIcon/ui/NewIcon.module.scss.js +4 -0
- package/dist/src/components/ProjectCardSkeleton/ui/ProjectCardSkeleton.module.scss.js +25 -0
- package/dist/src/components/RoundButton/ui/RoundButton.module.scss.js +29 -0
- package/dist/src/components/Select/ui/Select.module.scss.js +52 -0
- package/dist/src/components/SliderNavigation/ui/SliderNavigation.module.scss.js +7 -0
- package/dist/src/components/SortSelect/ui/SortSelect.module.scss.js +41 -0
- package/dist/src/components/SummarySelect/ui/SummarySelect.module.scss.js +25 -0
- package/dist/src/components/Switcher/ui/Switcher.module.scss.js +27 -0
- package/dist/src/components/TabSelect/ui/TabSelect.module.scss.js +17 -0
- package/dist/src/components/TabSwitcher/ui/TabSwitcher.module.scss.js +57 -0
- package/dist/src/components/Tag/ui/Tag.module.scss.js +70 -0
- package/dist/src/components/Text/ui/Text.module.scss.js +7 -0
- package/dist/src/components/TextArea/styles.module.scss.js +9 -0
- package/dist/src/components/ZoomControls/ui/ZoomControls.module.scss.js +11 -0
- package/dist/src/components/mobileButton/ui/MobileButton.module.scss.js +12 -0
- package/dist/src/layout/components/Header/s.module.scss.js +19 -0
- package/dist/src/layout/components/Menu.module.scss.js +9 -0
- package/dist/src/layout/style.module.scss.js +7 -0
- package/dist/src/pages/ButtonsPage/ButtonState/ButtonState.js +18 -0
- package/dist/{ButtonState.module-DtW3aevR.js → src/pages/ButtonsPage/ButtonState/ButtonState.module.scss.js} +4 -1
- package/dist/src/pages/ButtonsPage/ButtonsPage.module.scss.js +9 -0
- package/dist/src/pages/CheckboxPage/CheckboxPage.module.scss.js +13 -0
- package/dist/src/pages/FormsPage/FormsPage.module.scss.js +15 -0
- package/dist/src/pages/HomePage/HomePage.module.scss.js +7 -0
- package/dist/src/pages/IconsPage/IconsPage.module.scss.js +9 -0
- package/dist/src/pages/InputPage/InputPage.module.scss.js +4 -0
- package/dist/src/pages/LogoPage/LogoPage.module.scss.js +7 -0
- package/dist/src/pages/LotsPage/LotsPage.module.scss.js +13 -0
- package/dist/src/pages/ModalsPage/ModalPage.module.scss.js +4 -0
- package/dist/src/pages/SelectPage/SelectPage.module.scss.js +11 -0
- package/dist/src/pages/TabsPage/TabsPage.module.scss.js +17 -0
- package/dist/src/pages/TagsPage/TagsPage.module.scss.js +7 -0
- package/dist/src/stories/button.css.js +1 -0
- package/dist/src/stories/header.css.js +1 -0
- package/dist/src/stories/page.css.js +1 -0
- package/dist/stories/Button.js +24 -0
- package/dist/stories/Header.js +45 -0
- package/dist/stories/Page.js +59 -0
- package/dist/style.css +1 -1
- package/package.json +11 -6
- package/dist/FilterWithSave-Bp6rH8Pe.js +0 -2230
- package/dist/Menu-CgCfinVZ.js +0 -513
- package/dist/Option-BVIm7wOW.js +0 -83
- package/dist/index-DmANy9jd.js +0 -890
- package/dist/useSortSelect-CjZXLFOG.js +0 -80
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { useState as
|
|
1
|
+
import { jsxs as m, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { useState as l } from "react";
|
|
3
|
+
import a from "../../src/pages/ModalsPage/ModalPage.module.scss.js";
|
|
3
4
|
import { Button as r } from "../../components/Button/ui/Button.js";
|
|
4
5
|
import "../../components/mobileButton/ui/MobileButton.js";
|
|
5
6
|
import "../../components/NewIcon/ui/NewIcon.js";
|
|
@@ -10,21 +11,25 @@ import "../../components/Switcher/ui/Switcher.js";
|
|
|
10
11
|
import "../../components/Text/ui/Text.js";
|
|
11
12
|
import "../../components/Flex/ui/Flex.js";
|
|
12
13
|
import "../../components/Input/ui/Input.js";
|
|
13
|
-
import { Modal as
|
|
14
|
-
import "../../
|
|
14
|
+
import { Modal as e } from "../../components/Modal/ui/Modal.js";
|
|
15
|
+
import "../../components/TabSwitcher/ui/TabSwitcher.js";
|
|
15
16
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
16
|
-
import "../../index
|
|
17
|
+
import "../../node_modules/classnames/index.js";
|
|
17
18
|
import "../../components/MetroTag/ui/MetroTag.js";
|
|
19
|
+
import "../../components/LotCard/ui/LotCard.js";
|
|
18
20
|
import "../../components/Select/ui/Select.js";
|
|
21
|
+
import "../../components/SortSelect/ui/SortSelect.js";
|
|
19
22
|
import "../../components/SliderNavigation/ui/SliderNavigation.js";
|
|
20
23
|
import "../../components/LotCardSkeleton/ui/LotCardSkeleton.js";
|
|
21
24
|
import "../../components/TabSelect/ui/TabSelect.js";
|
|
25
|
+
import "../../components/FormModal/ui/ModalForm.js";
|
|
26
|
+
import "../../components/FilterWithSave/ui/FilterWithSave.js";
|
|
22
27
|
import "../../components/CheckBox/CheckBox.js";
|
|
23
28
|
import "../../components/CheckBoxNew/CheckBoxNew.js";
|
|
24
29
|
import "../../components/CheckboxSelect/ui/CheckboxSelect.js";
|
|
25
|
-
const
|
|
26
|
-
const [
|
|
27
|
-
return /* @__PURE__ */
|
|
30
|
+
const H = () => {
|
|
31
|
+
const [p, n] = l(!1), [s, i] = l(!1);
|
|
32
|
+
return /* @__PURE__ */ m("div", { className: a.root, children: [
|
|
28
33
|
/* @__PURE__ */ t(
|
|
29
34
|
r,
|
|
30
35
|
{
|
|
@@ -34,9 +39,9 @@ const p = {}, z = () => {
|
|
|
34
39
|
}
|
|
35
40
|
),
|
|
36
41
|
/* @__PURE__ */ t(
|
|
37
|
-
|
|
42
|
+
e,
|
|
38
43
|
{
|
|
39
|
-
isOpen:
|
|
44
|
+
isOpen: p,
|
|
40
45
|
emitIsOpen: () => n((o) => !o),
|
|
41
46
|
isTransparentBack: !0,
|
|
42
47
|
children: /* @__PURE__ */ t(
|
|
@@ -49,10 +54,10 @@ const p = {}, z = () => {
|
|
|
49
54
|
)
|
|
50
55
|
}
|
|
51
56
|
),
|
|
52
|
-
/* @__PURE__ */
|
|
53
|
-
|
|
57
|
+
/* @__PURE__ */ m(
|
|
58
|
+
e,
|
|
54
59
|
{
|
|
55
|
-
isOpen:
|
|
60
|
+
isOpen: s,
|
|
56
61
|
emitIsOpen: () => i((o) => !o),
|
|
57
62
|
leaveDisableScroll: !0,
|
|
58
63
|
children: [
|
|
@@ -126,5 +131,5 @@ const p = {}, z = () => {
|
|
|
126
131
|
] });
|
|
127
132
|
};
|
|
128
133
|
export {
|
|
129
|
-
|
|
134
|
+
H as default
|
|
130
135
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as t, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { useState as n } from "react";
|
|
3
3
|
import "../../components/Button/ui/Button.js";
|
|
4
4
|
import "../../components/mobileButton/ui/MobileButton.js";
|
|
@@ -6,30 +6,31 @@ import "../../components/NewIcon/ui/NewIcon.js";
|
|
|
6
6
|
import "../../components/DestinationTab/ui/DestinationTab.js";
|
|
7
7
|
import "../../components/RoundButton/ui/RoundButton.js";
|
|
8
8
|
import "../../components/Tag/ui/Tag.js";
|
|
9
|
-
import { Switcher as
|
|
9
|
+
import { Switcher as h } from "../../components/Switcher/ui/Switcher.js";
|
|
10
10
|
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
|
|
14
|
+
import "../../components/TabSwitcher/ui/TabSwitcher.js";
|
|
15
15
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
16
|
-
import "../../index
|
|
16
|
+
import "../../node_modules/classnames/index.js";
|
|
17
17
|
import "../../components/MetroTag/ui/MetroTag.js";
|
|
18
|
+
import "../../components/LotCard/ui/LotCard.js";
|
|
18
19
|
import { Select as r } from "../../components/Select/ui/Select.js";
|
|
20
|
+
import { SortSelect as b } from "../../components/SortSelect/ui/SortSelect.js";
|
|
19
21
|
import "../../components/SliderNavigation/ui/SliderNavigation.js";
|
|
20
22
|
import "../../components/LotCardSkeleton/ui/LotCardSkeleton.js";
|
|
21
23
|
import "../../components/TabSelect/ui/TabSelect.js";
|
|
24
|
+
import "../../components/FormModal/ui/ModalForm.js";
|
|
22
25
|
import { SummarySelect as p } from "../../components/SummarySelect/ui/SummarySelect.js";
|
|
26
|
+
import { FilterWithSave as f } from "../../components/FilterWithSave/ui/FilterWithSave.js";
|
|
23
27
|
import { CheckBox as y } from "../../components/CheckBox/CheckBox.js";
|
|
24
28
|
import "../../components/CheckBoxNew/CheckBoxNew.js";
|
|
25
29
|
import { CheckboxSelect as k } from "../../components/CheckboxSelect/ui/CheckboxSelect.js";
|
|
30
|
+
import c from "../../src/pages/SelectPage/SelectPage.module.scss.js";
|
|
26
31
|
import { defaultOption as d, defaultCategory as a } from "./const.js";
|
|
27
|
-
const
|
|
28
|
-
|
|
29
|
-
addClass: _,
|
|
30
|
-
filterWithSave: x
|
|
31
|
-
}, Z = () => {
|
|
32
|
-
const [u, g] = n(d[0]), [l, S] = n([]), [s, h] = n("options"), v = [
|
|
32
|
+
const ee = () => {
|
|
33
|
+
const [u, g] = n(d[0]), [l, S] = n([]), [i, m] = n("options"), v = [
|
|
33
34
|
{ label: "sdfsdfsdf", setValue: () => {
|
|
34
35
|
}, isSelected: !1, disabled: !0 },
|
|
35
36
|
{ label: "sdfsdfsdf", setValue: () => {
|
|
@@ -40,13 +41,13 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
|
|
|
40
41
|
}, isSelected: !0, disabled: !1 },
|
|
41
42
|
{ label: "sdfsdfsdf", setValue: () => {
|
|
42
43
|
}, isSelected: !0, disabled: !1 }
|
|
43
|
-
], C = (
|
|
44
|
-
!
|
|
45
|
-
},
|
|
46
|
-
|
|
44
|
+
], C = (o) => {
|
|
45
|
+
!o || !o.target || g(o.target.value);
|
|
46
|
+
}, s = (o) => {
|
|
47
|
+
o && S(o);
|
|
47
48
|
};
|
|
48
|
-
return /* @__PURE__ */
|
|
49
|
-
/* @__PURE__ */
|
|
49
|
+
return /* @__PURE__ */ t("div", { className: c.root, children: [
|
|
50
|
+
/* @__PURE__ */ t("div", { children: [
|
|
50
51
|
/* @__PURE__ */ e("div", { children: /* @__PURE__ */ e(
|
|
51
52
|
f,
|
|
52
53
|
{
|
|
@@ -60,11 +61,11 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
|
|
|
60
61
|
]
|
|
61
62
|
}
|
|
62
63
|
) }),
|
|
63
|
-
/* @__PURE__ */
|
|
64
|
+
/* @__PURE__ */ t("div", { children: [
|
|
64
65
|
/* @__PURE__ */ e("h2", { children: " Селектор с чекбоксами" }),
|
|
65
66
|
/* @__PURE__ */ e(k, { checkboxes: v })
|
|
66
67
|
] }),
|
|
67
|
-
/* @__PURE__ */
|
|
68
|
+
/* @__PURE__ */ t("div", { children: [
|
|
68
69
|
/* @__PURE__ */ e("h2", { children: "старый чекбокс" }),
|
|
69
70
|
/* @__PURE__ */ e(
|
|
70
71
|
y,
|
|
@@ -76,7 +77,7 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
|
|
|
76
77
|
}
|
|
77
78
|
)
|
|
78
79
|
] }),
|
|
79
|
-
/* @__PURE__ */
|
|
80
|
+
/* @__PURE__ */ t("div", { children: [
|
|
80
81
|
/* @__PURE__ */ e("h2", { children: " Фильтрация с сохранением" }),
|
|
81
82
|
/* @__PURE__ */ e("div", { className: c.filterWithSave, children: /* @__PURE__ */ e(f, {}) })
|
|
82
83
|
] }),
|
|
@@ -87,26 +88,26 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
|
|
|
87
88
|
mini: !0,
|
|
88
89
|
selectedOption: u,
|
|
89
90
|
options: d,
|
|
90
|
-
onChange: (
|
|
91
|
+
onChange: (o) => C(o)
|
|
91
92
|
}
|
|
92
93
|
) })
|
|
93
94
|
] }),
|
|
94
|
-
/* @__PURE__ */
|
|
95
|
-
/* @__PURE__ */
|
|
95
|
+
/* @__PURE__ */ t("div", { className: c.summarySelect, children: [
|
|
96
|
+
/* @__PURE__ */ t("div", { style: { display: "flex", gap: "20px" }, children: [
|
|
96
97
|
/* @__PURE__ */ e("h2", { children: "SummarySelect" }),
|
|
97
98
|
/* @__PURE__ */ e(
|
|
98
|
-
|
|
99
|
+
h,
|
|
99
100
|
{
|
|
100
|
-
isActive:
|
|
101
|
-
onClick: () =>
|
|
101
|
+
isActive: i === "category",
|
|
102
|
+
onClick: () => m(i === "options" ? "category" : "options"),
|
|
102
103
|
children: "mode category"
|
|
103
104
|
}
|
|
104
105
|
),
|
|
105
106
|
/* @__PURE__ */ e(
|
|
106
|
-
|
|
107
|
+
h,
|
|
107
108
|
{
|
|
108
|
-
isActive:
|
|
109
|
-
onClick: () =>
|
|
109
|
+
isActive: i === "double",
|
|
110
|
+
onClick: () => m(i === "options" ? "double" : "options"),
|
|
110
111
|
children: "mode double"
|
|
111
112
|
}
|
|
112
113
|
)
|
|
@@ -114,12 +115,12 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
|
|
|
114
115
|
/* @__PURE__ */ e(
|
|
115
116
|
p,
|
|
116
117
|
{
|
|
117
|
-
mode:
|
|
118
|
+
mode: i,
|
|
118
119
|
label: "Проект",
|
|
119
120
|
isShowReset: !0,
|
|
120
121
|
selectedValues: l,
|
|
121
|
-
options:
|
|
122
|
-
onChange: (
|
|
122
|
+
options: i === "category" ? a : d,
|
|
123
|
+
onChange: (o) => s(o)
|
|
123
124
|
}
|
|
124
125
|
),
|
|
125
126
|
/* @__PURE__ */ e(
|
|
@@ -130,22 +131,22 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
|
|
|
130
131
|
isShowReset: !0,
|
|
131
132
|
selectedValues: l,
|
|
132
133
|
options: d,
|
|
133
|
-
onChange: (
|
|
134
|
+
onChange: (o) => s(o)
|
|
134
135
|
}
|
|
135
136
|
)
|
|
136
137
|
] }),
|
|
137
|
-
/* @__PURE__ */
|
|
138
|
+
/* @__PURE__ */ t("div", { children: [
|
|
138
139
|
/* @__PURE__ */ e("h2", { children: "Селект mode option" }),
|
|
139
140
|
/* @__PURE__ */ e(
|
|
140
141
|
r,
|
|
141
142
|
{
|
|
142
143
|
selectedValues: l,
|
|
143
144
|
options: a,
|
|
144
|
-
onChange: (
|
|
145
|
+
onChange: (o) => s(o)
|
|
145
146
|
}
|
|
146
147
|
)
|
|
147
148
|
] }),
|
|
148
|
-
/* @__PURE__ */
|
|
149
|
+
/* @__PURE__ */ t("div", { children: [
|
|
149
150
|
/* @__PURE__ */ e("h2", { children: "Селект mode category" }),
|
|
150
151
|
/* @__PURE__ */ e(
|
|
151
152
|
r,
|
|
@@ -153,11 +154,11 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
|
|
|
153
154
|
mode: "category",
|
|
154
155
|
selectedValues: l,
|
|
155
156
|
options: a,
|
|
156
|
-
onChange: (
|
|
157
|
+
onChange: (o) => s(o)
|
|
157
158
|
}
|
|
158
159
|
)
|
|
159
160
|
] }),
|
|
160
|
-
/* @__PURE__ */
|
|
161
|
+
/* @__PURE__ */ t("div", { children: [
|
|
161
162
|
/* @__PURE__ */ e("h2", { children: "Селект mode double" }),
|
|
162
163
|
/* @__PURE__ */ e(
|
|
163
164
|
r,
|
|
@@ -166,11 +167,11 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
|
|
|
166
167
|
options: a,
|
|
167
168
|
mode: "double",
|
|
168
169
|
clickableOptions: ["Category1", "options1", "options3"],
|
|
169
|
-
onChange: (
|
|
170
|
+
onChange: (o) => s(o)
|
|
170
171
|
}
|
|
171
172
|
)
|
|
172
173
|
] }),
|
|
173
|
-
/* @__PURE__ */
|
|
174
|
+
/* @__PURE__ */ t("div", { children: [
|
|
174
175
|
/* @__PURE__ */ e("h2", { children: "Селект кнопка" }),
|
|
175
176
|
/* @__PURE__ */ e("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ e(
|
|
176
177
|
r,
|
|
@@ -181,12 +182,12 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
|
|
|
181
182
|
isListRight: !0,
|
|
182
183
|
selectedValues: l,
|
|
183
184
|
options: d,
|
|
184
|
-
onChange: (
|
|
185
|
+
onChange: (o) => s(o)
|
|
185
186
|
}
|
|
186
187
|
) })
|
|
187
188
|
] })
|
|
188
189
|
] });
|
|
189
190
|
};
|
|
190
191
|
export {
|
|
191
|
-
|
|
192
|
+
ee as SelectPage
|
|
192
193
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { useState as
|
|
1
|
+
import { jsxs as o, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { useState as p } from "react";
|
|
3
3
|
import "../../components/Button/ui/Button.js";
|
|
4
4
|
import "../../components/mobileButton/ui/MobileButton.js";
|
|
5
5
|
import "../../components/NewIcon/ui/NewIcon.js";
|
|
@@ -11,32 +11,30 @@ 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 { FieldInput as
|
|
15
|
-
import {
|
|
14
|
+
import { FieldInput as d } from "../../components/FieldInput/ui/FieldInput.js";
|
|
15
|
+
import { TabSwitcher as a } from "../../components/TabSwitcher/ui/TabSwitcher.js";
|
|
16
16
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
17
|
-
import "../../index
|
|
17
|
+
import "../../node_modules/classnames/index.js";
|
|
18
18
|
import "../../components/MetroTag/ui/MetroTag.js";
|
|
19
|
+
import "../../components/LotCard/ui/LotCard.js";
|
|
19
20
|
import "../../components/Select/ui/Select.js";
|
|
21
|
+
import "../../components/SortSelect/ui/SortSelect.js";
|
|
20
22
|
import "../../components/SliderNavigation/ui/SliderNavigation.js";
|
|
21
23
|
import "../../components/LotCardSkeleton/ui/LotCardSkeleton.js";
|
|
22
|
-
import { TabSelect as
|
|
24
|
+
import { TabSelect as l } from "../../components/TabSelect/ui/TabSelect.js";
|
|
25
|
+
import "../../components/FormModal/ui/ModalForm.js";
|
|
26
|
+
import "../../components/FilterWithSave/ui/FilterWithSave.js";
|
|
23
27
|
import "../../components/CheckBox/CheckBox.js";
|
|
24
28
|
import "../../components/CheckBoxNew/CheckBoxNew.js";
|
|
25
29
|
import "../../components/CheckboxSelect/ui/CheckboxSelect.js";
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
row_apart: u
|
|
33
|
-
}, K = () => {
|
|
34
|
-
const [l, o] = m("C мебелью"), s = ["C мебелью", "C размерами", "План этажа", "Ген. план"], a = ["Студия", "1", "2", "3", "4+"];
|
|
35
|
-
return /* @__PURE__ */ h("div", { className: n.root, children: [
|
|
36
|
-
/* @__PURE__ */ r(i, { children: a.map((t, e) => /* @__PURE__ */ r(
|
|
37
|
-
i.Item,
|
|
30
|
+
import n from "../../src/pages/TabsPage/TabsPage.module.scss.js";
|
|
31
|
+
const J = () => {
|
|
32
|
+
const [m, h] = p("C мебелью"), s = ["C мебелью", "C размерами", "План этажа", "Ген. план"], i = ["Студия", "1", "2", "3", "4+"];
|
|
33
|
+
return /* @__PURE__ */ o("div", { className: n.root, children: [
|
|
34
|
+
/* @__PURE__ */ r(a, { children: i.map((t, e) => /* @__PURE__ */ r(
|
|
35
|
+
a.Item,
|
|
38
36
|
{
|
|
39
|
-
itemsLength:
|
|
37
|
+
itemsLength: i.length,
|
|
40
38
|
size_s: "medium",
|
|
41
39
|
size_l: "large",
|
|
42
40
|
index: e,
|
|
@@ -46,23 +44,23 @@ const c = "_root_idppf_1", _ = "_tabsShort_idppf_7", w = "_tabSelectWrapper_idpp
|
|
|
46
44
|
},
|
|
47
45
|
e
|
|
48
46
|
)) }),
|
|
49
|
-
/* @__PURE__ */ r("div", { className: n.tabsShort, children: /* @__PURE__ */ r(
|
|
50
|
-
|
|
47
|
+
/* @__PURE__ */ r("div", { className: n.tabsShort, children: /* @__PURE__ */ r(d, { label: "Количество спален", children: /* @__PURE__ */ r(a, { children: i.map((t, e) => /* @__PURE__ */ r(
|
|
48
|
+
a.Item,
|
|
51
49
|
{
|
|
52
|
-
itemsLength:
|
|
50
|
+
itemsLength: i.length,
|
|
53
51
|
index: e,
|
|
54
52
|
value: t,
|
|
55
53
|
addItemClassName: e === 0 ? n.gg : "",
|
|
56
54
|
children: t
|
|
57
55
|
}
|
|
58
56
|
)) }) }) }),
|
|
59
|
-
/* @__PURE__ */ r("div", { className: n.tabsShort, children: /* @__PURE__ */ r(
|
|
60
|
-
|
|
57
|
+
/* @__PURE__ */ r("div", { className: n.tabsShort, children: /* @__PURE__ */ r(d, { label: "Количество спален", children: /* @__PURE__ */ r(a, { variant: "whiteRowGrayLabel", children: i.map((t, e) => /* @__PURE__ */ r(
|
|
58
|
+
a.Item,
|
|
61
59
|
{
|
|
62
60
|
size_s: "tiny",
|
|
63
61
|
size_m: "tiny",
|
|
64
62
|
size_l: "tiny",
|
|
65
|
-
itemsLength:
|
|
63
|
+
itemsLength: i.length,
|
|
66
64
|
index: e,
|
|
67
65
|
value: t,
|
|
68
66
|
addItemClassName: e === 0 ? n.gg : "",
|
|
@@ -70,13 +68,13 @@ const c = "_root_idppf_1", _ = "_tabsShort_idppf_7", w = "_tabSelectWrapper_idpp
|
|
|
70
68
|
},
|
|
71
69
|
e
|
|
72
70
|
)) }) }) }),
|
|
73
|
-
/* @__PURE__ */ r(
|
|
74
|
-
|
|
71
|
+
/* @__PURE__ */ r(d, { label: "Количество спален", children: /* @__PURE__ */ r(a, { variant: "whiteRowGrayLabel", children: i.map((t, e) => /* @__PURE__ */ r(
|
|
72
|
+
a.Item,
|
|
75
73
|
{
|
|
76
74
|
size_s: "tiny",
|
|
77
75
|
size_m: "tiny",
|
|
78
76
|
size_l: "tiny",
|
|
79
|
-
itemsLength:
|
|
77
|
+
itemsLength: i.length,
|
|
80
78
|
index: e,
|
|
81
79
|
value: t,
|
|
82
80
|
addItemClassName: e === 0 ? n.gg : "",
|
|
@@ -84,20 +82,20 @@ const c = "_root_idppf_1", _ = "_tabsShort_idppf_7", w = "_tabSelectWrapper_idpp
|
|
|
84
82
|
},
|
|
85
83
|
e
|
|
86
84
|
)) }) }),
|
|
87
|
-
/* @__PURE__ */ r("div", { children: /* @__PURE__ */ r(
|
|
88
|
-
|
|
85
|
+
/* @__PURE__ */ r("div", { children: /* @__PURE__ */ r(a, { col: !0, children: i.map((t, e) => /* @__PURE__ */ r(
|
|
86
|
+
a.Item,
|
|
89
87
|
{
|
|
90
|
-
itemsLength:
|
|
88
|
+
itemsLength: i.length,
|
|
91
89
|
index: e,
|
|
92
90
|
value: t,
|
|
93
91
|
children: t
|
|
94
92
|
},
|
|
95
93
|
e
|
|
96
94
|
)) }) }),
|
|
97
|
-
/* @__PURE__ */ r("div", { className: n.tabsShort, children: /* @__PURE__ */ r(
|
|
98
|
-
|
|
95
|
+
/* @__PURE__ */ r("div", { className: n.tabsShort, children: /* @__PURE__ */ r(a, { col: !0, children: i.map((t, e) => /* @__PURE__ */ r(
|
|
96
|
+
a.Item,
|
|
99
97
|
{
|
|
100
|
-
itemsLength:
|
|
98
|
+
itemsLength: i.length,
|
|
101
99
|
index: e,
|
|
102
100
|
value: t,
|
|
103
101
|
children: t
|
|
@@ -105,18 +103,18 @@ const c = "_root_idppf_1", _ = "_tabsShort_idppf_7", w = "_tabSelectWrapper_idpp
|
|
|
105
103
|
e
|
|
106
104
|
)) }) }),
|
|
107
105
|
/* @__PURE__ */ r("div", { className: n.whiteRow_apart, children: /* @__PURE__ */ r(
|
|
108
|
-
|
|
106
|
+
a,
|
|
109
107
|
{
|
|
110
108
|
variant: "whiteRow",
|
|
111
109
|
isApart: !0,
|
|
112
110
|
addClassName: n.row_apart,
|
|
113
|
-
children:
|
|
114
|
-
|
|
111
|
+
children: i.map((t, e) => /* @__PURE__ */ r(
|
|
112
|
+
a.Item,
|
|
115
113
|
{
|
|
116
114
|
width: e === 0 ? "135px" : void 0,
|
|
117
115
|
width_m: e === 0 ? "96px" : void 0,
|
|
118
116
|
width_l: e === 0 ? "155px" : void 0,
|
|
119
|
-
itemsLength:
|
|
117
|
+
itemsLength: i.length,
|
|
120
118
|
index: e,
|
|
121
119
|
children: t
|
|
122
120
|
},
|
|
@@ -125,18 +123,18 @@ const c = "_root_idppf_1", _ = "_tabsShort_idppf_7", w = "_tabSelectWrapper_idpp
|
|
|
125
123
|
}
|
|
126
124
|
) }),
|
|
127
125
|
/* @__PURE__ */ r("div", { className: n.whiteRow_apart, children: /* @__PURE__ */ r(
|
|
128
|
-
|
|
126
|
+
a,
|
|
129
127
|
{
|
|
130
128
|
variant: "grayRow",
|
|
131
129
|
isApart: !0,
|
|
132
130
|
addClassName: n.row_apart,
|
|
133
|
-
children:
|
|
134
|
-
|
|
131
|
+
children: i.map((t, e) => /* @__PURE__ */ r(
|
|
132
|
+
a.Item,
|
|
135
133
|
{
|
|
136
134
|
width: e === 0 ? "135px" : void 0,
|
|
137
135
|
width_m: e === 0 ? "96px" : void 0,
|
|
138
136
|
width_l: e === 0 ? "155px" : void 0,
|
|
139
|
-
itemsLength:
|
|
137
|
+
itemsLength: i.length,
|
|
140
138
|
index: e,
|
|
141
139
|
children: t
|
|
142
140
|
},
|
|
@@ -144,25 +142,25 @@ const c = "_root_idppf_1", _ = "_tabsShort_idppf_7", w = "_tabSelectWrapper_idpp
|
|
|
144
142
|
))
|
|
145
143
|
}
|
|
146
144
|
) }),
|
|
147
|
-
/* @__PURE__ */ r("div", { className: n.tabSelectWrapper, children: /* @__PURE__ */ r(
|
|
148
|
-
|
|
145
|
+
/* @__PURE__ */ r("div", { className: n.tabSelectWrapper, children: /* @__PURE__ */ r(l, { variant: "grayDesign", children: s.map((t, e) => /* @__PURE__ */ r(
|
|
146
|
+
l.Item,
|
|
149
147
|
{
|
|
150
148
|
name: "type",
|
|
151
|
-
checked:
|
|
152
|
-
onChange: () =>
|
|
149
|
+
checked: m === t,
|
|
150
|
+
onChange: () => h(t),
|
|
153
151
|
value: t,
|
|
154
152
|
children: t
|
|
155
153
|
},
|
|
156
154
|
e
|
|
157
155
|
)) }) }),
|
|
158
|
-
/* @__PURE__ */ r("div", { className: n.tabSelectWrapper, children: /* @__PURE__ */ r(
|
|
159
|
-
|
|
156
|
+
/* @__PURE__ */ r("div", { className: n.tabSelectWrapper, children: /* @__PURE__ */ r(l, { variant: "whiteStroke", children: ["для коммерции", "для жилых"].map((t, e) => /* @__PURE__ */ r(
|
|
157
|
+
l.Item,
|
|
160
158
|
{
|
|
161
159
|
name: "type",
|
|
162
160
|
width: "160px",
|
|
163
161
|
withPadding: !0,
|
|
164
|
-
checked:
|
|
165
|
-
onChange: () =>
|
|
162
|
+
checked: m === t,
|
|
163
|
+
onChange: () => h(t),
|
|
166
164
|
value: t,
|
|
167
165
|
children: t
|
|
168
166
|
},
|
|
@@ -171,5 +169,5 @@ const c = "_root_idppf_1", _ = "_tabsShort_idppf_7", w = "_tabSelectWrapper_idpp
|
|
|
171
169
|
] });
|
|
172
170
|
};
|
|
173
171
|
export {
|
|
174
|
-
|
|
172
|
+
J as default
|
|
175
173
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { jsxs as e, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import p from "../../src/pages/TagsPage/TagsPage.module.scss.js";
|
|
2
3
|
import "../../components/Button/ui/Button.js";
|
|
3
4
|
import "../../components/mobileButton/ui/MobileButton.js";
|
|
4
5
|
import "../../components/NewIcon/ui/NewIcon.js";
|
|
@@ -11,25 +12,27 @@ import "../../components/Flex/ui/Flex.js";
|
|
|
11
12
|
import "../../components/Input/ui/Input.js";
|
|
12
13
|
import "react";
|
|
13
14
|
import "react-dom";
|
|
14
|
-
import "../../
|
|
15
|
+
import "../../components/TabSwitcher/ui/TabSwitcher.js";
|
|
15
16
|
import "../../components/GroupedInput/ui/GroupedInputs.js";
|
|
16
|
-
import "../../index
|
|
17
|
+
import "../../node_modules/classnames/index.js";
|
|
17
18
|
import { MetroTag as t } from "../../components/MetroTag/ui/MetroTag.js";
|
|
19
|
+
import "../../components/LotCard/ui/LotCard.js";
|
|
18
20
|
import "../../components/Select/ui/Select.js";
|
|
21
|
+
import "../../components/SortSelect/ui/SortSelect.js";
|
|
19
22
|
import "../../components/SliderNavigation/ui/SliderNavigation.js";
|
|
20
23
|
import "../../components/LotCardSkeleton/ui/LotCardSkeleton.js";
|
|
21
24
|
import "../../components/TabSelect/ui/TabSelect.js";
|
|
25
|
+
import "../../components/FormModal/ui/ModalForm.js";
|
|
26
|
+
import "../../components/FilterWithSave/ui/FilterWithSave.js";
|
|
22
27
|
import "../../components/CheckBox/CheckBox.js";
|
|
23
28
|
import "../../components/CheckBoxNew/CheckBoxNew.js";
|
|
24
29
|
import "../../components/CheckboxSelect/ui/CheckboxSelect.js";
|
|
25
|
-
const
|
|
26
|
-
root: p
|
|
27
|
-
}, W = () => {
|
|
30
|
+
const E = () => {
|
|
28
31
|
const r = { name: "sokolnuyaki", color: "red", timeTo: 10, mode: "auto" }, m = [
|
|
29
32
|
{ name: "Сокольники", color: "red", timeTo: 10, mode: "auto" },
|
|
30
33
|
{ name: "Электрозаводская", color: "blue", timeTo: 10, mode: "auto" }
|
|
31
34
|
];
|
|
32
|
-
return /* @__PURE__ */ e("div", { className:
|
|
35
|
+
return /* @__PURE__ */ e("div", { className: p.root, children: [
|
|
33
36
|
/* @__PURE__ */ o(t, { metro: m }),
|
|
34
37
|
/* @__PURE__ */ o(t, { metro: r }),
|
|
35
38
|
/* @__PURE__ */ o(
|
|
@@ -71,5 +74,5 @@ const p = "_root_1tmts_1", s = {
|
|
|
71
74
|
] });
|
|
72
75
|
};
|
|
73
76
|
export {
|
|
74
|
-
|
|
77
|
+
E as TagsPage
|
|
75
78
|
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
const _ = "_btnCommon_f868m_1", i = "_btnLoading_f868m_20", e = "_isHidden_f868m_24", m = "_blue_f868m_68", s = "_lightBlue_f868m_82", l = "_sokolniki_f868m_97", t = "_black_f868m_111", n = "_gray_f868m_125", o = "_whiteStroke_f868m_139", a = "_whiteFilled_f868m_151", d = "_shade_f868m_165", f = "_transparent_f868m_171", r = "_volodiyaLight_f868m_192", z = "_loader_f868m_198", c = "_LoaderSpin_f868m_1", h = {
|
|
2
|
+
btnCommon: _,
|
|
3
|
+
btnLoading: i,
|
|
4
|
+
isHidden: e,
|
|
5
|
+
"auto-width": "_auto-width_f868m_28",
|
|
6
|
+
"full-width": "_full-width_f868m_32",
|
|
7
|
+
"tiny-size": "_tiny-size_f868m_36",
|
|
8
|
+
"small-size": "_small-size_f868m_44",
|
|
9
|
+
"medium-size": "_medium-size_f868m_52",
|
|
10
|
+
"large-size": "_large-size_f868m_60",
|
|
11
|
+
blue: m,
|
|
12
|
+
lightBlue: s,
|
|
13
|
+
sokolniki: l,
|
|
14
|
+
black: t,
|
|
15
|
+
gray: n,
|
|
16
|
+
whiteStroke: o,
|
|
17
|
+
whiteFilled: a,
|
|
18
|
+
shade: d,
|
|
19
|
+
transparent: f,
|
|
20
|
+
volodiyaLight: r,
|
|
21
|
+
loader: z,
|
|
22
|
+
LoaderSpin: c,
|
|
23
|
+
"tiny-size_m": "_tiny-size_m_f868m_204",
|
|
24
|
+
"small-size_m": "_small-size_m_f868m_211",
|
|
25
|
+
"medium-size_m": "_medium-size_m_f868m_218",
|
|
26
|
+
"large-size_m": "_large-size_m_f868m_225",
|
|
27
|
+
"tiny-size_l": "_tiny-size_l_f868m_234",
|
|
28
|
+
"small-size_l": "_small-size_l_f868m_241",
|
|
29
|
+
"medium-size_l": "_medium-size_l_f868m_248",
|
|
30
|
+
"large-size_l": "_large-size_l_f868m_255"
|
|
31
|
+
};
|
|
32
|
+
export {
|
|
33
|
+
c as LoaderSpin,
|
|
34
|
+
t as black,
|
|
35
|
+
m as blue,
|
|
36
|
+
_ as btnCommon,
|
|
37
|
+
i as btnLoading,
|
|
38
|
+
h as default,
|
|
39
|
+
n as gray,
|
|
40
|
+
e as isHidden,
|
|
41
|
+
s as lightBlue,
|
|
42
|
+
z as loader,
|
|
43
|
+
d as shade,
|
|
44
|
+
l as sokolniki,
|
|
45
|
+
f as transparent,
|
|
46
|
+
r as volodiyaLight,
|
|
47
|
+
a as whiteFilled,
|
|
48
|
+
o as whiteStroke
|
|
49
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const _ = "_checkbox_vuhc0_1", c = "_checkbox__text_vuhc0_5", e = "_checkbox__elem_vuhc0_9", h = "_checkbox__hoverIcon_vuhc0_28", o = "_error_vuhc0_35", s = "_light_vuhc0_41", t = "_dark_vuhc0_44", k = "_isChecked_vuhc0_47", r = {
|
|
2
|
+
checkbox: _,
|
|
3
|
+
checkbox__text: c,
|
|
4
|
+
checkbox__elem: e,
|
|
5
|
+
checkbox__hoverIcon: h,
|
|
6
|
+
error: o,
|
|
7
|
+
light: s,
|
|
8
|
+
dark: t,
|
|
9
|
+
isChecked: k,
|
|
10
|
+
"medium-size": "_medium-size_vuhc0_102",
|
|
11
|
+
"large-size": "_large-size_vuhc0_107",
|
|
12
|
+
"small-size": "_small-size_vuhc0_112"
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
_ as checkbox,
|
|
16
|
+
e as checkbox__elem,
|
|
17
|
+
h as checkbox__hoverIcon,
|
|
18
|
+
c as checkbox__text,
|
|
19
|
+
t as dark,
|
|
20
|
+
r as default,
|
|
21
|
+
o as error,
|
|
22
|
+
k as isChecked,
|
|
23
|
+
s as light
|
|
24
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const c = "_checkboxLabel_30mwb_1", e = "_labelText_30mwb_36", o = "_error_30mwb_44", b = "_checkIcon_30mwb_53", _ = {
|
|
2
|
+
checkboxLabel: c,
|
|
3
|
+
labelText: e,
|
|
4
|
+
error: o,
|
|
5
|
+
checkIcon: b
|
|
6
|
+
};
|
|
7
|
+
export {
|
|
8
|
+
b as checkIcon,
|
|
9
|
+
c as checkboxLabel,
|
|
10
|
+
_ as default,
|
|
11
|
+
o as error,
|
|
12
|
+
e as labelText
|
|
13
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const e = "_root_7jm23_1", c = "_nameWrapper_7jm23_8", t = "_clearBtn_7jm23_18", o = "_checkboxWrapper_7jm23_33", _ = "_checkboxItem_7jm23_39", m = "_checkboxItemActive_7jm23_57", r = "_checkboxItemDisabled_7jm23_69", a = {
|
|
2
|
+
root: e,
|
|
3
|
+
nameWrapper: c,
|
|
4
|
+
clearBtn: t,
|
|
5
|
+
checkboxWrapper: o,
|
|
6
|
+
checkboxItem: _,
|
|
7
|
+
checkboxItemActive: m,
|
|
8
|
+
checkboxItemDisabled: r
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
_ as checkboxItem,
|
|
12
|
+
m as checkboxItemActive,
|
|
13
|
+
r as checkboxItemDisabled,
|
|
14
|
+
o as checkboxWrapper,
|
|
15
|
+
t as clearBtn,
|
|
16
|
+
a as default,
|
|
17
|
+
c as nameWrapper,
|
|
18
|
+
e as root
|
|
19
|
+
};
|