stone-kit 0.0.942 → 0.0.943

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.
@@ -1,49 +1,49 @@
1
- const J = ({
1
+ const m = ({
2
2
  option: e,
3
3
  setSelectedOptions: s,
4
- selectedOptions: l,
5
- disabledOptions: u,
6
- onChange: c,
7
- mode: y,
8
- optionsParentArr: f
4
+ selectedOptions: u,
5
+ disabledOptions: y,
6
+ onChange: f,
7
+ mode: S,
8
+ optionsParentArr: r
9
9
  }) => {
10
10
  if (!Array.isArray(e)) {
11
- if (u.includes(e))
11
+ if (y.includes(e))
12
12
  return;
13
- let i = l.some((r) => r.value === e.value) ? l.filter((r) => r.value !== e.value) : [...l, e];
14
- if (y === "single") {
15
- const r = [e];
16
- s(r), c && c(r);
13
+ let i = u.some((l) => l.value === e.value) ? e.value === "selectAll" && r ? [] : u.some((l) => l.value === "selectAll") ? u.filter((l) => l.value !== e.value && l.value !== "selectAll") : u.filter((l) => l.value !== e.value) : e.value === "selectAll" && r ? [...r] : [...u, e];
14
+ if (S === "single") {
15
+ const l = [e];
16
+ s(l), f && f(l);
17
17
  return;
18
18
  }
19
- if (y === "double") {
20
- "options" in e && (l.map((t) => JSON.stringify(t)).includes(JSON.stringify(e)) ? i = i.filter(
21
- (t) => !e.options.map((a) => JSON.stringify(a)).includes(JSON.stringify(t))
19
+ if (S === "double") {
20
+ "options" in e && (u.map((v) => JSON.stringify(v)).includes(JSON.stringify(e)) ? i = i.filter(
21
+ (v) => !e.options.map((a) => JSON.stringify(a)).includes(JSON.stringify(v))
22
22
  ) : Array.isArray(e.options) && (i = [...i, ...e.options]));
23
- const r = f == null ? void 0 : f.filter((S) => "options" in S && S.options.includes(e))[0];
24
- !(r && l.map((S) => JSON.stringify(S)).includes(JSON.stringify(r))) && r && i.push(r);
23
+ const l = r == null ? void 0 : r.filter((t) => "options" in t && t.options.includes(e))[0];
24
+ !(l && u.map((t) => JSON.stringify(t)).includes(JSON.stringify(l))) && l && i.push(l);
25
25
  }
26
- s(i), c && c(i);
26
+ s(i), f && f(i);
27
27
  }
28
- }, N = ({
28
+ }, w = ({
29
29
  option: e,
30
30
  setSelectedOptions: s,
31
- selectedOptions: l,
32
- disabledOptions: u,
33
- onChange: c
31
+ selectedOptions: u,
32
+ disabledOptions: y,
33
+ onChange: f
34
34
  }) => {
35
35
  if (Array.isArray(e)) {
36
- const y = e.filter((f) => !(u != null && u.includes(f)));
37
- if (y.every((f) => l.map((i) => i).includes(f))) {
38
- const f = l.filter((i) => !e.includes(i));
39
- s(f), c && c(f);
36
+ const S = e.filter((r) => !(y != null && y.includes(r)));
37
+ if (S.every((r) => u.map((c) => c).includes(r))) {
38
+ const r = u.filter((c) => !e.includes(c));
39
+ s(r), f && f(r);
40
40
  } else {
41
- const f = y.filter((r) => !l.includes(r)), i = [...l, ...f];
42
- s(i), c && c(i);
41
+ const r = S.filter((i) => !u.includes(i)), c = [...u, ...r];
42
+ s(c), f && f(c);
43
43
  }
44
44
  }
45
45
  };
46
46
  export {
47
- N as handleClickModeCategory,
48
- J as handleClickModeOption
47
+ w as handleClickModeCategory,
48
+ m as handleClickModeOption
49
49
  };
@@ -1,3 +1,3 @@
1
1
  import { MultiSelectProps } from './Select.types';
2
2
 
3
- export declare const Select: ({ options, customPlaceholder, placeholder, error, disabled, disabledOptions, additionalClass, additionalClassOption, additionalClassBtn, onChange, onBlur, selectedValues, isBtn, btnName, clickableOptions, isListRight, sizeIcon, mode, onClickItem, onCLickSelect, size_s, size_m, size_l, isDisabledNotClickable, isLast, }: MultiSelectProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const Select: ({ options, customPlaceholder, placeholder, error, disabled, disabledOptions, additionalClass, additionalClassOption, additionalClassBtn, onChange, onBlur, selectedValues, isBtn, btnName, clickableOptions, isListRight, sizeIcon, mode, onClickItem, onCLickSelect, size_s, size_m, size_l, isDisabledNotClickable, isLast, selectAll, }: MultiSelectProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,166 +1,168 @@
1
- import { jsxs as m, Fragment as W, jsx as a } from "react/jsx-runtime";
2
- import { useState as j, useRef as z, useEffect as B } from "react";
3
- import { c as Q } from "../../../index-rKuIKazb.js";
4
- import { s as e, O as T } from "../../../Option-BVIm7wOW.js";
5
- import { NewIcon as D } from "../../NewIcon/ui/NewIcon.js";
6
- import { Category as U } from "./Category.js";
7
- import { handleClickModeOption as X, handleClickModeCategory as Y } from "../model/selectMode.js";
8
- const o = Q.bind(e), ne = ({
9
- options: t,
1
+ import { jsxs as f, Fragment as j, jsx as o } from "react/jsx-runtime";
2
+ import { useState as z, useRef as B, useEffect as D } from "react";
3
+ import { c as X } from "../../../index-rKuIKazb.js";
4
+ import { s as e, O as Y } from "../../../Option-BVIm7wOW.js";
5
+ import { NewIcon as M } from "../../NewIcon/ui/NewIcon.js";
6
+ import { Category as Z } from "./Category.js";
7
+ import { handleClickModeOption as I, handleClickModeCategory as A } from "../model/selectMode.js";
8
+ const m = X.bind(e), se = ({
9
+ options: r,
10
10
  customPlaceholder: h,
11
- placeholder: M = "Выберите опции",
12
- error: F,
13
- disabled: u,
14
- disabledOptions: d = [],
15
- additionalClass: _ = "",
16
- additionalClassOption: q,
17
- additionalClassBtn: G,
18
- onChange: H,
19
- onBlur: O,
11
+ placeholder: F = "Выберите опции",
12
+ error: _,
13
+ disabled: O,
14
+ disabledOptions: g = [],
15
+ additionalClass: q = "",
16
+ additionalClassOption: G,
17
+ additionalClassBtn: H,
18
+ onChange: J,
19
+ onBlur: v,
20
20
  selectedValues: i = [],
21
21
  isBtn: y = !1,
22
- btnName: v,
23
- clickableOptions: C,
24
- isListRight: J = !1,
25
- sizeIcon: f,
26
- mode: c = "options",
27
- onClickItem: S,
28
- onCLickSelect: N,
29
- size_s: $ = "large",
30
- size_m: k,
31
- size_l: x,
32
- isDisabledNotClickable: A,
33
- isLast: K
22
+ btnName: C,
23
+ clickableOptions: S,
24
+ isListRight: K = !1,
25
+ sizeIcon: d,
26
+ mode: s = "options",
27
+ onClickItem: N,
28
+ onCLickSelect: $,
29
+ size_s: k = "large",
30
+ size_m: x,
31
+ size_l: E,
32
+ isDisabledNotClickable: w,
33
+ isLast: P,
34
+ selectAll: c
34
35
  }) => {
35
- t = Array.isArray(t) ? [.../* @__PURE__ */ new Set([...t])] : [];
36
- const [s, E] = j(i), [l, g] = j(!1), p = z(null), R = (r) => {
37
- S && S(r);
36
+ const Q = { value: "selectAll", label: (c == null ? void 0 : c.label) ?? "Выбрать все" }, T = () => c != null && c.enabled ? [Q, .../* @__PURE__ */ new Set([...r])] : [.../* @__PURE__ */ new Set([...r])];
37
+ r = Array.isArray(r) ? T() : [];
38
+ const [a, L] = z(i), [l, p] = z(!1), u = B(null), R = (t) => {
39
+ N && N(t);
38
40
  const n = {
39
- option: r,
40
- selectedOptions: s,
41
- disabledOptions: d,
42
- setSelectedOptions: E,
43
- onChange: H,
44
- mode: c,
45
- optionsParentArr: t
41
+ option: t,
42
+ selectedOptions: a,
43
+ disabledOptions: g,
44
+ setSelectedOptions: L,
45
+ onChange: J,
46
+ mode: s,
47
+ optionsParentArr: r
46
48
  };
47
- Array.isArray(r) ? Y(n) : X(n);
48
- }, P = () => {
49
- O && O(s);
50
- }, w = (r) => {
51
- const n = r.target;
52
- if (p.current && !p.current.contains(r.target)) {
49
+ Array.isArray(t) ? A(n) : I(n);
50
+ }, U = () => {
51
+ v && v(a);
52
+ }, W = (t) => {
53
+ const n = t.target;
54
+ if (u.current && !u.current.contains(t.target)) {
53
55
  if (n.closest("svg"))
54
56
  return;
55
- g(!1);
57
+ p(!1);
56
58
  }
57
59
  };
58
- B(() => (document.addEventListener("click", w), () => {
59
- document.removeEventListener("click", w);
60
+ D(() => (document.addEventListener("click", W), () => {
61
+ document.removeEventListener("click", W);
60
62
  }), [l]);
61
- const L = z(i);
62
- return B(() => {
63
- i.length !== L.current.length && (E(i), L.current = i);
64
- }, [i]), /* @__PURE__ */ m(
63
+ const b = B(i);
64
+ return D(() => {
65
+ i.length !== b.current.length && (L(i), b.current = i);
66
+ }, [i]), /* @__PURE__ */ f(
65
67
  "div",
66
68
  {
67
- ref: p,
68
- className: o(e.multiSelectWrapper, { [e.multiSelectWrapperError]: F }, _),
69
+ ref: u,
70
+ className: m(e.multiSelectWrapper, { [e.multiSelectWrapperError]: _ }, q),
69
71
  tabIndex: 0,
70
- onBlur: P,
72
+ onBlur: U,
71
73
  children: [
72
- /* @__PURE__ */ m("div", { className: o(e.inputWrapper), children: [
73
- !y && /* @__PURE__ */ m(W, { children: [
74
- /* @__PURE__ */ a(
74
+ /* @__PURE__ */ f("div", { className: m(e.inputWrapper), children: [
75
+ !y && /* @__PURE__ */ f(j, { children: [
76
+ /* @__PURE__ */ o(
75
77
  "div",
76
78
  {
77
- className: o(
79
+ className: m(
78
80
  e.selectedOptions,
79
- e[`${$}-size`],
80
- e[`${k}-size_m`],
81
- e[`${x}-size)_l`],
82
- { [e.selectedOptionsNotEmpty]: s.length > 0 },
83
- { [e.selectOptionsDisabled]: u }
81
+ e[`${k}-size`],
82
+ e[`${x}-size_m`],
83
+ e[`${E}-size)_l`],
84
+ { [e.selectedOptionsNotEmpty]: a.length > 0 },
85
+ { [e.selectOptionsDisabled]: O }
84
86
  ),
85
- onClick: () => g(!l),
86
- children: h || (s.length === 0 ? M : "Выбрано " + s.length)
87
+ onClick: () => p(!l),
88
+ children: h || (a.length === 0 ? F : "Выбрано " + a.length)
87
89
  }
88
90
  ),
89
- /* @__PURE__ */ a(
90
- D,
91
+ /* @__PURE__ */ o(
92
+ M,
91
93
  {
92
94
  name: "arrowShort",
93
95
  deg: l ? "180" : "0",
94
- size: f ?? "24",
96
+ size: d ?? "24",
95
97
  additionalClass: e.icon
96
98
  }
97
99
  )
98
100
  ] }),
99
- y && /* @__PURE__ */ m(W, { children: [
100
- /* @__PURE__ */ a(
101
+ y && /* @__PURE__ */ f(j, { children: [
102
+ /* @__PURE__ */ o(
101
103
  "button",
102
104
  {
103
- className: o(
105
+ className: m(
104
106
  e.selectedOptions,
105
- e[`${$}-size`],
106
- e[`${k}-size_m`],
107
- e[`${x}-size_l`],
107
+ e[`${k}-size`],
108
+ e[`${x}-size_m`],
109
+ e[`${E}-size_l`],
108
110
  e.selectedOptionsBtn,
109
- { [e.selectOptionsDisabled]: u },
110
- G
111
+ { [e.selectOptionsDisabled]: O },
112
+ H
111
113
  ),
112
114
  onClick: () => {
113
- N && N(), g(!l);
115
+ $ && $(), p(!l);
114
116
  },
115
- children: v
117
+ children: C
116
118
  }
117
119
  ),
118
- /* @__PURE__ */ a(
119
- D,
120
+ /* @__PURE__ */ o(
121
+ M,
120
122
  {
121
123
  name: "filter",
122
124
  deg: l ? "180" : "0",
123
- size: f ?? "24",
124
- additionalClass: o(e.icon, { [e.iconBtn]: !v })
125
+ size: d ?? "24",
126
+ additionalClass: m(e.icon, { [e.iconBtn]: !C })
125
127
  }
126
128
  )
127
129
  ] })
128
130
  ] }),
129
- l && /* @__PURE__ */ m(
131
+ l && /* @__PURE__ */ f(
130
132
  "div",
131
133
  {
132
- className: o(
134
+ className: m(
133
135
  e.optionsList,
134
- { [e.listRight]: J },
135
- { [e.lastList]: K },
136
- q
136
+ { [e.listRight]: K },
137
+ { [e.lastList]: P },
138
+ G
137
139
  ),
138
140
  children: [
139
- (c === "options" || c === "single") && (t == null ? void 0 : t.map((r, n) => /* @__PURE__ */ a(
140
- T,
141
+ (s === "options" || s === "single") && (r == null ? void 0 : r.map((t, n) => /* @__PURE__ */ o(
142
+ Y,
141
143
  {
142
- disabledOptions: d,
143
- clickableOptions: C,
144
- selectedOptions: s,
145
- sizeIcon: f,
146
- option: r,
144
+ disabledOptions: g,
145
+ clickableOptions: S,
146
+ selectedOptions: a,
147
+ sizeIcon: d,
148
+ option: t,
147
149
  handleOptionClick: R,
148
- isDisabledNotClickable: A
150
+ isDisabledNotClickable: w
149
151
  },
150
152
  n
151
153
  ))),
152
- (c === "category" || c === "double") && (t == null ? void 0 : t.map((r, n) => "options" in r ? /* @__PURE__ */ a(
153
- U,
154
+ (s === "category" || s === "double") && (r == null ? void 0 : r.map((t, n) => "options" in t ? /* @__PURE__ */ o(
155
+ Z,
154
156
  {
155
- disabledOptions: d,
156
- clickableOptions: C,
157
- selectedOptions: s,
158
- sizeIcon: f,
159
- category: r,
160
- mode: c,
157
+ disabledOptions: g,
158
+ clickableOptions: S,
159
+ selectedOptions: a,
160
+ sizeIcon: d,
161
+ category: t,
162
+ mode: s,
161
163
  selectedValues: i,
162
164
  handleOptionClick: R,
163
- isDisabledNotClickable: A
165
+ isDisabledNotClickable: w
164
166
  },
165
167
  n
166
168
  ) : null))
@@ -172,5 +174,5 @@ const o = Q.bind(e), ne = ({
172
174
  );
173
175
  };
174
176
  export {
175
- ne as Select
177
+ se as Select
176
178
  };
@@ -55,5 +55,9 @@ export interface MultiSelectProps {
55
55
  onCLickSelect?: () => void;
56
56
  isDisabledNotClickable?: boolean;
57
57
  customPlaceholder?: string;
58
+ selectAll?: {
59
+ enabled: boolean;
60
+ label?: string;
61
+ };
58
62
  }
59
63
  export {};
@@ -1,4 +1,4 @@
1
- import { jsxs as l, jsx as e } from "react/jsx-runtime";
1
+ import { jsxs as s, jsx as e } from "react/jsx-runtime";
2
2
  import { useState as r } from "react";
3
3
  import { SummarySelect as h } from "../../components/SummarySelect/ui/SummarySelect.js";
4
4
  import { F as u, a as b } from "../../FilterWithSave-DIjsQ8Fv.js";
@@ -12,7 +12,7 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
12
12
  addClass: _,
13
13
  filterWithSave: x
14
14
  }, O = () => {
15
- const [v, g] = r(i[0]), [t, p] = r([]), [o, f] = r("options"), S = [
15
+ const [v, g] = r(i[0]), [t, p] = r([]), [d, f] = r("options"), S = [
16
16
  { label: "sdfsdfsdf", setValue: () => {
17
17
  }, isSelected: !1, disabled: !0 },
18
18
  { label: "sdfsdfsdf", setValue: () => {
@@ -23,13 +23,13 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
23
23
  }, isSelected: !0, disabled: !1 },
24
24
  { label: "sdfsdfsdf", setValue: () => {
25
25
  }, isSelected: !0, disabled: !1 }
26
- ], C = (s) => {
27
- !s || !s.target || g(s.target.value);
28
- }, d = (s) => {
29
- s && p(s);
26
+ ], C = (l) => {
27
+ !l || !l.target || g(l.target.value);
28
+ }, o = (l) => {
29
+ l && p(l);
30
30
  };
31
- return /* @__PURE__ */ l("div", { className: n.root, children: [
32
- /* @__PURE__ */ l("div", { children: [
31
+ return /* @__PURE__ */ s("div", { className: n.root, children: [
32
+ /* @__PURE__ */ s("div", { children: [
33
33
  /* @__PURE__ */ e("div", { children: /* @__PURE__ */ e(
34
34
  u,
35
35
  {
@@ -48,11 +48,11 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
48
48
  ]
49
49
  }
50
50
  ) }),
51
- /* @__PURE__ */ l("div", { children: [
51
+ /* @__PURE__ */ s("div", { children: [
52
52
  /* @__PURE__ */ e("h2", { children: " Селектор с чекбоксами" }),
53
53
  /* @__PURE__ */ e(y, { checkboxes: S })
54
54
  ] }),
55
- /* @__PURE__ */ l("div", { children: [
55
+ /* @__PURE__ */ s("div", { children: [
56
56
  /* @__PURE__ */ e("h2", { children: "старый чекбокс" }),
57
57
  /* @__PURE__ */ e(
58
58
  k,
@@ -64,7 +64,7 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
64
64
  }
65
65
  )
66
66
  ] }),
67
- /* @__PURE__ */ l("div", { children: [
67
+ /* @__PURE__ */ s("div", { children: [
68
68
  /* @__PURE__ */ e("h2", { children: " Фильтрация с сохранением" }),
69
69
  /* @__PURE__ */ e("div", { className: n.filterWithSave, children: /* @__PURE__ */ e(u, {}) })
70
70
  ] }),
@@ -75,26 +75,26 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
75
75
  mini: !0,
76
76
  selectedOption: v,
77
77
  options: i,
78
- onChange: (s) => C(s)
78
+ onChange: (l) => C(l)
79
79
  }
80
80
  ) })
81
81
  ] }),
82
- /* @__PURE__ */ l("div", { className: n.summarySelect, children: [
83
- /* @__PURE__ */ l("div", { style: { display: "flex", gap: "20px" }, children: [
82
+ /* @__PURE__ */ s("div", { className: n.summarySelect, children: [
83
+ /* @__PURE__ */ s("div", { style: { display: "flex", gap: "20px" }, children: [
84
84
  /* @__PURE__ */ e("h2", { children: "SummarySelect" }),
85
85
  /* @__PURE__ */ e(
86
86
  m,
87
87
  {
88
- isActive: o === "category",
89
- onClick: () => f(o === "options" ? "category" : "options"),
88
+ isActive: d === "category",
89
+ onClick: () => f(d === "options" ? "category" : "options"),
90
90
  children: "mode category"
91
91
  }
92
92
  ),
93
93
  /* @__PURE__ */ e(
94
94
  m,
95
95
  {
96
- isActive: o === "double",
97
- onClick: () => f(o === "options" ? "double" : "options"),
96
+ isActive: d === "double",
97
+ onClick: () => f(d === "options" ? "double" : "options"),
98
98
  children: "mode double"
99
99
  }
100
100
  )
@@ -102,12 +102,13 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
102
102
  /* @__PURE__ */ e(
103
103
  h,
104
104
  {
105
- mode: o,
105
+ mode: d,
106
106
  label: "Проект",
107
107
  isShowReset: !0,
108
108
  selectedValues: t,
109
- options: o === "category" ? a : i,
110
- onChange: (s) => d(s)
109
+ options: d === "category" ? a : i,
110
+ onChange: (l) => o(l),
111
+ selectAll: { enabled: !0 }
111
112
  }
112
113
  ),
113
114
  /* @__PURE__ */ e(
@@ -118,22 +119,22 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
118
119
  isShowReset: !0,
119
120
  selectedValues: t,
120
121
  options: i,
121
- onChange: (s) => d(s)
122
+ onChange: (l) => o(l)
122
123
  }
123
124
  )
124
125
  ] }),
125
- /* @__PURE__ */ l("div", { children: [
126
+ /* @__PURE__ */ s("div", { children: [
126
127
  /* @__PURE__ */ e("h2", { children: "Селект mode option" }),
127
128
  /* @__PURE__ */ e(
128
129
  c,
129
130
  {
130
131
  selectedValues: t,
131
132
  options: a,
132
- onChange: (s) => d(s)
133
+ onChange: (l) => o(l)
133
134
  }
134
135
  )
135
136
  ] }),
136
- /* @__PURE__ */ l("div", { children: [
137
+ /* @__PURE__ */ s("div", { children: [
137
138
  /* @__PURE__ */ e("h2", { children: "Селект mode category" }),
138
139
  /* @__PURE__ */ e(
139
140
  c,
@@ -141,11 +142,11 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
141
142
  mode: "category",
142
143
  selectedValues: t,
143
144
  options: a,
144
- onChange: (s) => d(s)
145
+ onChange: (l) => o(l)
145
146
  }
146
147
  )
147
148
  ] }),
148
- /* @__PURE__ */ l("div", { children: [
149
+ /* @__PURE__ */ s("div", { children: [
149
150
  /* @__PURE__ */ e("h2", { children: "Селект mode double" }),
150
151
  /* @__PURE__ */ e(
151
152
  c,
@@ -154,11 +155,11 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
154
155
  options: a,
155
156
  mode: "double",
156
157
  clickableOptions: ["Category1", "options1", "options3"],
157
- onChange: (s) => d(s)
158
+ onChange: (l) => o(l)
158
159
  }
159
160
  )
160
161
  ] }),
161
- /* @__PURE__ */ l("div", { children: [
162
+ /* @__PURE__ */ s("div", { children: [
162
163
  /* @__PURE__ */ e("h2", { children: "Селект кнопка" }),
163
164
  /* @__PURE__ */ e("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ e(
164
165
  c,
@@ -169,7 +170,7 @@ const V = "_sort_1szg2_1", _ = "_addClass_1szg2_6", x = "_filterWithSave_1szg2_1
169
170
  isListRight: !0,
170
171
  selectedValues: t,
171
172
  options: i,
172
- onChange: (s) => d(s)
173
+ onChange: (l) => o(l)
173
174
  }
174
175
  ) })
175
176
  ] })
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "stone-kit",
3
3
  "description": "uikit for redesign",
4
4
  "private": false,
5
- "version": "0.0.942",
5
+ "version": "0.0.943",
6
6
  "author": "Mollycodd1e",
7
7
  "license": "ISC",
8
8
  "type": "module",