stone-kit 0.0.701 → 0.0.702
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/README.md +59 -59
- package/dist/{FilterWithSave-Nihl2Z4W.js → FilterWithSave-NFKACvUC.js} +1 -1
- package/dist/Option-BM2iOGX7.js +83 -0
- package/dist/components/FilterWithSave/hooks/useFilterWithSave.js +1 -1
- package/dist/components/FilterWithSave/ui/FilterWithSave.js +2 -2
- package/dist/components/Select/ui/Category.d.ts +2 -1
- package/dist/components/Select/ui/Category.js +36 -35
- package/dist/components/Select/ui/Option.d.ts +2 -1
- package/dist/components/Select/ui/Option.js +1 -1
- package/dist/components/Select/ui/Select.js +1 -1
- package/dist/components/SortSelect/index.js +1 -1
- package/dist/components/SortSelect/ui/SortSelect.js +1 -1
- package/dist/components/TabSwitcher/index.js +1 -1
- package/dist/components/TabSwitcher/ui/TabSwitcher.js +1 -1
- package/dist/components/ZoomControls/ui/ZoomControls.js +1 -1
- package/dist/main.js +1 -1
- package/package.json +1 -1
- package/dist/Option-BJ7QJM8p.js +0 -79
package/README.md
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
# Stone-kit
|
|
2
|
-
|
|
3
|
-
Uikit for stone redesign 2.0
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
Package installation:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npm i stone-kit@latest
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
|
|
15
|
-
For Next.js page router in App.tsx:
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
import 'stone-kit/dist/style.css'
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
and then:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
import {Button} from 'stone-kit'
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
For other projects u can immediately:
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
import {Button} from 'stone-kit'
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Docs
|
|
34
|
-
|
|
35
|
-
### ButtonProps
|
|
36
|
-
|
|
37
|
-
size: optional, size of button. types : 'large' | 'medium' | 'small' | 'tiny'
|
|
38
|
-
|
|
39
|
-
pre: optional, insert icon/text before button text. type: ReactNode
|
|
40
|
-
|
|
41
|
-
post: optional, insert icon/text after button text. type: ReactNode
|
|
42
|
-
|
|
43
|
-
variant: optional, color variants of button. type:
|
|
44
|
-
'blue',
|
|
45
|
-
'gray',
|
|
46
|
-
'whiteStroke',
|
|
47
|
-
'sokolniki',
|
|
48
|
-
'black',
|
|
49
|
-
'whiteFilled'
|
|
50
|
-
|
|
51
|
-
width: optional, width of button. type: 'auto' | 'full'
|
|
52
|
-
|
|
53
|
-
additionalClass: optional, add your custom class to button. type: 'string'
|
|
54
|
-
|
|
55
|
-
as: optional, u can convert button to link. type: 'button' | 'link'. 'button' by default.
|
|
56
|
-
|
|
57
|
-
### MobileButtonProps
|
|
58
|
-
|
|
59
|
-
### Tag
|
|
1
|
+
# Stone-kit
|
|
2
|
+
|
|
3
|
+
Uikit for stone redesign 2.0
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Package installation:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm i stone-kit@latest
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
For Next.js page router in App.tsx:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
import 'stone-kit/dist/style.css'
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
and then:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
import {Button} from 'stone-kit'
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
For other projects u can immediately:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
import {Button} from 'stone-kit'
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Docs
|
|
34
|
+
|
|
35
|
+
### ButtonProps
|
|
36
|
+
|
|
37
|
+
size: optional, size of button. types : 'large' | 'medium' | 'small' | 'tiny'
|
|
38
|
+
|
|
39
|
+
pre: optional, insert icon/text before button text. type: ReactNode
|
|
40
|
+
|
|
41
|
+
post: optional, insert icon/text after button text. type: ReactNode
|
|
42
|
+
|
|
43
|
+
variant: optional, color variants of button. type:
|
|
44
|
+
'blue',
|
|
45
|
+
'gray',
|
|
46
|
+
'whiteStroke',
|
|
47
|
+
'sokolniki',
|
|
48
|
+
'black',
|
|
49
|
+
'whiteFilled'
|
|
50
|
+
|
|
51
|
+
width: optional, width of button. type: 'auto' | 'full'
|
|
52
|
+
|
|
53
|
+
additionalClass: optional, add your custom class to button. type: 'string'
|
|
54
|
+
|
|
55
|
+
as: optional, u can convert button to link. type: 'button' | 'link'. 'button' by default.
|
|
56
|
+
|
|
57
|
+
### MobileButtonProps
|
|
58
|
+
|
|
59
|
+
### Tag
|
|
@@ -23,7 +23,7 @@ import "./components/SliderNavigation/ui/SliderNavigation.js";
|
|
|
23
23
|
import "./components/LotCardSkeleton/ui/LotCardSkeleton.js";
|
|
24
24
|
import "./components/TabSelect/ui/TabSelect.js";
|
|
25
25
|
import "./components/FormModal/ui/ModalForm.js";
|
|
26
|
-
import { O as P } from "./Option-
|
|
26
|
+
import { O as P } from "./Option-BM2iOGX7.js";
|
|
27
27
|
const Y = "_root_lgek7_1", Z = "_text_lgek7_18", ee = "_textMini_lgek7_26", te = "_rootCol_lgek7_32", ie = "_item_lgek7_38", se = "_whiteRow_lgek7_57", le = "_firstItem_lgek7_68", re = "_lastItem_lgek7_72", ae = "_apart_lgek7_103", ne = "_isLong_lgek7_103", oe = "_autoWidth_lgek7_128", ce = "_mini_lgek7_132", de = "_isDisabled_lgek7_140", me = "_grayRow_lgek7_164", o = {
|
|
28
28
|
root: Y,
|
|
29
29
|
text: Z,
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { jsxs as u, jsx as _ } from "react/jsx-runtime";
|
|
2
|
+
import { NewIcon as n } from "./components/NewIcon/ui/NewIcon.js";
|
|
3
|
+
import { c as z } from "./index-rKuIKazb.js";
|
|
4
|
+
const g = "_multiSelectWrapper_c3wo1_1", O = "_selectedOptions_c3wo1_8", b = "_selectedOptionsBtn_c3wo1_24", v = "_selectedOptionsOpened_c3wo1_49", C = "_selectedOptionsNotEmpty_c3wo1_53", h = "_selectOptionsDisabled_c3wo1_58", y = "_optionsList_c3wo1_65", D = "_listRight_c3wo1_81", f = "_inputWrapper_c3wo1_85", k = "_option_c3wo1_65", B = "_category_c3wo1_107", N = "_leftSide_c3wo1_113", S = "_optionCategory_c3wo1_118", W = "_optionDisabled_c3wo1_124", x = "_optionClickable_c3wo1_128", A = "_icon_c3wo1_132", E = "_iconArrow_c3wo1_138", L = "_iconBtn_c3wo1_144", s = {
|
|
5
|
+
multiSelectWrapper: g,
|
|
6
|
+
selectedOptions: O,
|
|
7
|
+
selectedOptionsBtn: b,
|
|
8
|
+
"small-size": "_small-size_c3wo1_28",
|
|
9
|
+
"medium-size": "_medium-size_c3wo1_35",
|
|
10
|
+
"large-size": "_large-size_c3wo1_42",
|
|
11
|
+
selectedOptionsOpened: v,
|
|
12
|
+
selectedOptionsNotEmpty: C,
|
|
13
|
+
selectOptionsDisabled: h,
|
|
14
|
+
optionsList: y,
|
|
15
|
+
listRight: D,
|
|
16
|
+
inputWrapper: f,
|
|
17
|
+
option: k,
|
|
18
|
+
category: B,
|
|
19
|
+
leftSide: N,
|
|
20
|
+
optionCategory: S,
|
|
21
|
+
optionDisabled: W,
|
|
22
|
+
optionClickable: x,
|
|
23
|
+
icon: A,
|
|
24
|
+
iconArrow: E,
|
|
25
|
+
iconBtn: L,
|
|
26
|
+
"small-size_m": "_small-size_m_c3wo1_157",
|
|
27
|
+
"medium-size_m": "_medium-size_m_c3wo1_163",
|
|
28
|
+
"large-size_m": "_large-size_m_c3wo1_169",
|
|
29
|
+
"small-size_l": "_small-size_l_c3wo1_184",
|
|
30
|
+
"medium-size_l": "_medium-size_l_c3wo1_190",
|
|
31
|
+
"large-size_l": "_large-size_l_c3wo1_196"
|
|
32
|
+
}, R = z.bind(s), q = ({
|
|
33
|
+
option: e,
|
|
34
|
+
selectedOptions: c,
|
|
35
|
+
disabledOptions: a,
|
|
36
|
+
clickableOptions: t,
|
|
37
|
+
handleOptionClick: p,
|
|
38
|
+
isOptionCategory: i,
|
|
39
|
+
sizeIcon: l,
|
|
40
|
+
isDisabledEqualNotClickable: r,
|
|
41
|
+
addClassName: m = ""
|
|
42
|
+
}) => {
|
|
43
|
+
const d = t ? t.includes(`${e.value}`) : !0, w = () => r && t ? !t.includes(`${e.value}`) : a.some((o) => o.value === e.value);
|
|
44
|
+
return /* @__PURE__ */ u(
|
|
45
|
+
"div",
|
|
46
|
+
{
|
|
47
|
+
className: R(
|
|
48
|
+
s.option,
|
|
49
|
+
{
|
|
50
|
+
[s.selected]: c.some((o) => o.value === e.value),
|
|
51
|
+
[s.optionDisabled]: w(),
|
|
52
|
+
[s.optionCategory]: i,
|
|
53
|
+
[s.optionClickable]: d
|
|
54
|
+
},
|
|
55
|
+
m
|
|
56
|
+
),
|
|
57
|
+
onClick: () => {
|
|
58
|
+
p(e);
|
|
59
|
+
},
|
|
60
|
+
children: [
|
|
61
|
+
i && /* @__PURE__ */ _(
|
|
62
|
+
n,
|
|
63
|
+
{
|
|
64
|
+
size: l ?? "20",
|
|
65
|
+
name: c.some((o) => o.value === e.value) ? "selectChecked" : "selectUnchecked"
|
|
66
|
+
}
|
|
67
|
+
),
|
|
68
|
+
/* @__PURE__ */ _("div", { children: e.label }),
|
|
69
|
+
!i && /* @__PURE__ */ _(
|
|
70
|
+
n,
|
|
71
|
+
{
|
|
72
|
+
size: l ?? "20",
|
|
73
|
+
name: c.some((o) => o.value === e.value) ? "selectChecked" : "selectUnchecked"
|
|
74
|
+
}
|
|
75
|
+
)
|
|
76
|
+
]
|
|
77
|
+
}
|
|
78
|
+
);
|
|
79
|
+
};
|
|
80
|
+
export {
|
|
81
|
+
q as O,
|
|
82
|
+
s
|
|
83
|
+
};
|
|
@@ -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 { u as q } from "../../../FilterWithSave-
|
|
14
|
+
import { u as q } from "../../../FilterWithSave-NFKACvUC.js";
|
|
15
15
|
import "../../GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import "../../../index-rKuIKazb.js";
|
|
17
17
|
import "../../MetroTag/ui/MetroTag.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
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-NFKACvUC.js";
|
|
4
4
|
import "../../Modal/ui/Modal.js";
|
|
5
|
-
import "../../../Option-
|
|
5
|
+
import "../../../Option-BM2iOGX7.js";
|
|
6
6
|
import "../../Button/ui/Button.js";
|
|
7
7
|
export {
|
|
8
8
|
a as FilterWithSave
|
|
@@ -9,5 +9,6 @@ export interface IOption {
|
|
|
9
9
|
handleOptionClick: (option: TOption | TOption[]) => void;
|
|
10
10
|
sizeIcon?: string;
|
|
11
11
|
mode: TModeSelect;
|
|
12
|
+
isDisabledEqualNotClickable?: boolean;
|
|
12
13
|
}
|
|
13
|
-
export declare const Category: ({ category, selectedOptions, disabledOptions, clickableOptions, handleOptionClick, sizeIcon, mode }: IOption) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare const Category: ({ category, selectedOptions, disabledOptions, clickableOptions, handleOptionClick, sizeIcon, isDisabledEqualNotClickable, mode }: IOption) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,50 +1,51 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { s
|
|
1
|
+
import { jsxs as u, Fragment as b, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { s, O as D } from "../../../Option-BM2iOGX7.js";
|
|
3
3
|
import { NewIcon as g } from "../../NewIcon/ui/NewIcon.js";
|
|
4
|
-
import { c as
|
|
5
|
-
import { useState as
|
|
6
|
-
const
|
|
4
|
+
import { c as F } from "../../../index-rKuIKazb.js";
|
|
5
|
+
import { useState as I } from "react";
|
|
6
|
+
const J = F.bind(s), q = ({
|
|
7
7
|
category: t,
|
|
8
|
-
selectedOptions:
|
|
9
|
-
disabledOptions:
|
|
10
|
-
clickableOptions:
|
|
11
|
-
handleOptionClick:
|
|
8
|
+
selectedOptions: i,
|
|
9
|
+
disabledOptions: m,
|
|
10
|
+
clickableOptions: o,
|
|
11
|
+
handleOptionClick: d,
|
|
12
12
|
sizeIcon: r,
|
|
13
|
-
|
|
13
|
+
isDisabledEqualNotClickable: C,
|
|
14
|
+
mode: p
|
|
14
15
|
}) => {
|
|
15
|
-
const [l, f] =
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
const [l, f] = I(!1), S = i.map((e) => JSON.stringify(e)), a = p === "category", h = p === "double", N = a && t.options.every((e) => S.includes(JSON.stringify(e))), w = o ? o.includes(t.value.toString()) : !0, k = () => C && o ? !o.includes(t.value.toString()) : m.some(
|
|
17
|
+
(e) => e.value === t.value
|
|
18
|
+
), x = a ? N ? "selectChecked" : "selectUnchecked" : h && i.some((e) => e.value === t.value) ? "selectChecked" : "selectUnchecked", v = t.options.length > 1;
|
|
19
|
+
return /* @__PURE__ */ u(b, { children: [
|
|
20
|
+
/* @__PURE__ */ u(
|
|
18
21
|
"div",
|
|
19
22
|
{
|
|
20
|
-
className:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
className: J(
|
|
24
|
+
s.option,
|
|
25
|
+
s.category,
|
|
23
26
|
{
|
|
24
|
-
[
|
|
25
|
-
[
|
|
26
|
-
|
|
27
|
-
),
|
|
28
|
-
[o.optionClickable]: i ? i.includes(t.value.toString()) : !0
|
|
27
|
+
[s.selected]: i.some((e) => e.value === t.value),
|
|
28
|
+
[s.optionDisabled]: k(),
|
|
29
|
+
[s.optionClickable]: w
|
|
29
30
|
}
|
|
30
31
|
),
|
|
31
32
|
onClick: () => {
|
|
32
|
-
h && !l && f(!0),
|
|
33
|
+
h && !l && f(!0), d(a ? t.options : t);
|
|
33
34
|
},
|
|
34
35
|
children: [
|
|
35
|
-
/* @__PURE__ */
|
|
36
|
-
/* @__PURE__ */
|
|
36
|
+
/* @__PURE__ */ u("div", { className: s.leftSide, children: [
|
|
37
|
+
/* @__PURE__ */ n(
|
|
37
38
|
g,
|
|
38
39
|
{
|
|
39
40
|
size: r ?? "20",
|
|
40
|
-
name:
|
|
41
|
+
name: x
|
|
41
42
|
}
|
|
42
43
|
),
|
|
43
|
-
/* @__PURE__ */
|
|
44
|
+
/* @__PURE__ */ n("div", { children: t.label })
|
|
44
45
|
] }),
|
|
45
|
-
v && /* @__PURE__ */
|
|
46
|
+
v && /* @__PURE__ */ n("div", { className: s.iconArrow, onClick: (e) => {
|
|
46
47
|
e.stopPropagation(), f((c) => !c);
|
|
47
|
-
}, children: /* @__PURE__ */
|
|
48
|
+
}, children: /* @__PURE__ */ n(
|
|
48
49
|
g,
|
|
49
50
|
{
|
|
50
51
|
name: "arrowShort",
|
|
@@ -55,15 +56,15 @@ const b = x.bind(o), D = ({
|
|
|
55
56
|
]
|
|
56
57
|
}
|
|
57
58
|
),
|
|
58
|
-
l && v && t.options.map((e, c) => /* @__PURE__ */
|
|
59
|
-
|
|
59
|
+
l && v && t.options.map((e, c) => /* @__PURE__ */ n(
|
|
60
|
+
D,
|
|
60
61
|
{
|
|
61
62
|
option: e,
|
|
62
|
-
disabledOptions:
|
|
63
|
-
selectedOptions:
|
|
64
|
-
handleOptionClick: () =>
|
|
63
|
+
disabledOptions: m,
|
|
64
|
+
selectedOptions: i,
|
|
65
|
+
handleOptionClick: () => d(e),
|
|
65
66
|
sizeIcon: r,
|
|
66
|
-
clickableOptions:
|
|
67
|
+
clickableOptions: o,
|
|
67
68
|
isOptionCategory: !0
|
|
68
69
|
},
|
|
69
70
|
c
|
|
@@ -71,5 +72,5 @@ const b = x.bind(o), D = ({
|
|
|
71
72
|
] });
|
|
72
73
|
};
|
|
73
74
|
export {
|
|
74
|
-
|
|
75
|
+
q as Category
|
|
75
76
|
};
|
|
@@ -9,5 +9,6 @@ export interface IOption {
|
|
|
9
9
|
handleOptionClick: (option: TOption) => void;
|
|
10
10
|
sizeIcon?: string;
|
|
11
11
|
addClassName?: string;
|
|
12
|
+
isDisabledEqualNotClickable?: boolean;
|
|
12
13
|
}
|
|
13
|
-
export declare const Option: ({ option, selectedOptions, disabledOptions, clickableOptions, handleOptionClick, isOptionCategory, sizeIcon, addClassName, }: IOption) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare const Option: ({ option, selectedOptions, disabledOptions, clickableOptions, handleOptionClick, isOptionCategory, sizeIcon, isDisabledEqualNotClickable, addClassName, }: IOption) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as m, Fragment as R, jsx as i } from "react/jsx-runtime";
|
|
2
2
|
import { useState as w, useRef as D, useEffect as W } from "react";
|
|
3
3
|
import { c as G } from "../../../index-rKuIKazb.js";
|
|
4
|
-
import { s as e, O as H } from "../../../Option-
|
|
4
|
+
import { s as e, O as H } from "../../../Option-BM2iOGX7.js";
|
|
5
5
|
import { NewIcon as j } from "../../NewIcon/ui/NewIcon.js";
|
|
6
6
|
import { Category as J } from "./Category.js";
|
|
7
7
|
import { handleClickModeOption as K, handleClickModeCategory as Q } from "../model/selectMode.js";
|
|
@@ -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 z } from "../../../FilterWithSave-
|
|
16
|
+
import { a as z } from "../../../FilterWithSave-NFKACvUC.js";
|
|
17
17
|
import "../../GroupedInput/ui/GroupedInputs.js";
|
|
18
18
|
import "../../MetroTag/ui/MetroTag.js";
|
|
19
19
|
import "../../LotCard/ui/LotCard.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { S as v } from "../../../FilterWithSave-
|
|
3
|
+
import { S as v } from "../../../FilterWithSave-NFKACvUC.js";
|
|
4
4
|
import "../../Text/ui/Text.js";
|
|
5
5
|
import "../../../index-rKuIKazb.js";
|
|
6
6
|
import "../../Button/ui/Button.js";
|
|
@@ -11,7 +11,7 @@ import "../../Flex/ui/Flex.js";
|
|
|
11
11
|
import "../../Input/ui/Input.js";
|
|
12
12
|
import "react";
|
|
13
13
|
import "react-dom";
|
|
14
|
-
import "../../../FilterWithSave-
|
|
14
|
+
import "../../../FilterWithSave-NFKACvUC.js";
|
|
15
15
|
import "../../GroupedInput/ui/GroupedInputs.js";
|
|
16
16
|
import "../../../index-rKuIKazb.js";
|
|
17
17
|
import "../../MetroTag/ui/MetroTag.js";
|
package/dist/main.js
CHANGED
|
@@ -10,7 +10,7 @@ import { Flex as C } from "./components/Flex/ui/Flex.js";
|
|
|
10
10
|
import { Input as M } from "./components/Input/ui/Input.js";
|
|
11
11
|
import { Modal as g } from "./components/Modal/ui/Modal.js";
|
|
12
12
|
import { FieldInput as I } from "./components/FieldInput/ui/FieldInput.js";
|
|
13
|
-
import { F as B, a as L, S as k } from "./FilterWithSave-
|
|
13
|
+
import { F as B, a as L, S as k } from "./FilterWithSave-NFKACvUC.js";
|
|
14
14
|
import { GroupedInputs as N } from "./components/GroupedInput/ui/GroupedInputs.js";
|
|
15
15
|
import { Logo as j } from "./components/Logo/ui/Logo.js";
|
|
16
16
|
import { MetroTag as D } from "./components/MetroTag/ui/MetroTag.js";
|
package/package.json
CHANGED
package/dist/Option-BJ7QJM8p.js
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
import { jsxs as r, jsx as i } from "react/jsx-runtime";
|
|
2
|
-
import { NewIcon as n } from "./components/NewIcon/ui/NewIcon.js";
|
|
3
|
-
import { c as d } from "./index-rKuIKazb.js";
|
|
4
|
-
const w = "_multiSelectWrapper_c3wo1_1", u = "_selectedOptions_c3wo1_8", z = "_selectedOptionsBtn_c3wo1_24", O = "_selectedOptionsOpened_c3wo1_49", g = "_selectedOptionsNotEmpty_c3wo1_53", b = "_selectOptionsDisabled_c3wo1_58", v = "_optionsList_c3wo1_65", h = "_listRight_c3wo1_81", C = "_inputWrapper_c3wo1_85", k = "_option_c3wo1_65", y = "_category_c3wo1_107", D = "_leftSide_c3wo1_113", f = "_optionCategory_c3wo1_118", B = "_optionDisabled_c3wo1_124", N = "_optionClickable_c3wo1_128", S = "_icon_c3wo1_132", W = "_iconArrow_c3wo1_138", x = "_iconBtn_c3wo1_144", t = {
|
|
5
|
-
multiSelectWrapper: w,
|
|
6
|
-
selectedOptions: u,
|
|
7
|
-
selectedOptionsBtn: z,
|
|
8
|
-
"small-size": "_small-size_c3wo1_28",
|
|
9
|
-
"medium-size": "_medium-size_c3wo1_35",
|
|
10
|
-
"large-size": "_large-size_c3wo1_42",
|
|
11
|
-
selectedOptionsOpened: O,
|
|
12
|
-
selectedOptionsNotEmpty: g,
|
|
13
|
-
selectOptionsDisabled: b,
|
|
14
|
-
optionsList: v,
|
|
15
|
-
listRight: h,
|
|
16
|
-
inputWrapper: C,
|
|
17
|
-
option: k,
|
|
18
|
-
category: y,
|
|
19
|
-
leftSide: D,
|
|
20
|
-
optionCategory: f,
|
|
21
|
-
optionDisabled: B,
|
|
22
|
-
optionClickable: N,
|
|
23
|
-
icon: S,
|
|
24
|
-
iconArrow: W,
|
|
25
|
-
iconBtn: x,
|
|
26
|
-
"small-size_m": "_small-size_m_c3wo1_157",
|
|
27
|
-
"medium-size_m": "_medium-size_m_c3wo1_163",
|
|
28
|
-
"large-size_m": "_large-size_m_c3wo1_169",
|
|
29
|
-
"small-size_l": "_small-size_l_c3wo1_184",
|
|
30
|
-
"medium-size_l": "_medium-size_l_c3wo1_190",
|
|
31
|
-
"large-size_l": "_large-size_l_c3wo1_196"
|
|
32
|
-
}, A = d.bind(t), j = ({
|
|
33
|
-
option: e,
|
|
34
|
-
selectedOptions: s,
|
|
35
|
-
disabledOptions: a,
|
|
36
|
-
clickableOptions: _,
|
|
37
|
-
handleOptionClick: p,
|
|
38
|
-
isOptionCategory: c,
|
|
39
|
-
sizeIcon: l,
|
|
40
|
-
addClassName: m = ""
|
|
41
|
-
}) => /* @__PURE__ */ r(
|
|
42
|
-
"div",
|
|
43
|
-
{
|
|
44
|
-
className: A(
|
|
45
|
-
t.option,
|
|
46
|
-
{
|
|
47
|
-
[t.selected]: s.some((o) => o.value === e.value),
|
|
48
|
-
[t.optionDisabled]: a.some((o) => o.value === e.value),
|
|
49
|
-
[t.optionCategory]: c,
|
|
50
|
-
[t.optionClickable]: _ ? _.includes(`${e.value}`) : !0
|
|
51
|
-
},
|
|
52
|
-
m
|
|
53
|
-
),
|
|
54
|
-
onClick: () => {
|
|
55
|
-
p(e);
|
|
56
|
-
},
|
|
57
|
-
children: [
|
|
58
|
-
c && /* @__PURE__ */ i(
|
|
59
|
-
n,
|
|
60
|
-
{
|
|
61
|
-
size: l ?? "20",
|
|
62
|
-
name: s.some((o) => o.value === e.value) ? "selectChecked" : "selectUnchecked"
|
|
63
|
-
}
|
|
64
|
-
),
|
|
65
|
-
/* @__PURE__ */ i("div", { children: e.label }),
|
|
66
|
-
!c && /* @__PURE__ */ i(
|
|
67
|
-
n,
|
|
68
|
-
{
|
|
69
|
-
size: l ?? "20",
|
|
70
|
-
name: s.some((o) => o.value === e.value) ? "selectChecked" : "selectUnchecked"
|
|
71
|
-
}
|
|
72
|
-
)
|
|
73
|
-
]
|
|
74
|
-
}
|
|
75
|
-
);
|
|
76
|
-
export {
|
|
77
|
-
j as O,
|
|
78
|
-
t as s
|
|
79
|
-
};
|