stone-kit 0.0.294 → 0.0.295
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/main.d.ts +1 -0
- package/dist/main.js +16 -14
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -25,3 +25,4 @@ export { TabSelect } from './components/TabSelect';
|
|
|
25
25
|
export { ZoomControls } from './components/ZoomControls';
|
|
26
26
|
export { ModalForm } from './components/FormModal/ui/ModalForm.tsx';
|
|
27
27
|
export { ModalSuccess } from './components/ModalSuccess/ModalSuccess.tsx';
|
|
28
|
+
export { SummarySelect } from './components/SummarySelect';
|
package/dist/main.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Button as t } from "./components/Button/ui/Button.js";
|
|
2
|
-
import { MobileButton as
|
|
2
|
+
import { MobileButton as m } from "./components/mobileButton/ui/MobileButton.js";
|
|
3
3
|
import { NewIcon as x } from "./components/NewIcon/ui/NewIcon.js";
|
|
4
4
|
import { DestinationTab as a } from "./components/DestinationTab/ui/DestinationTab.js";
|
|
5
|
-
import { RoundButton as
|
|
6
|
-
import { Tag as
|
|
5
|
+
import { RoundButton as n } from "./components/RoundButton/ui/RoundButton.js";
|
|
6
|
+
import { Tag as d } from "./components/Tag/ui/Tag.js";
|
|
7
7
|
import { Switcher as u } from "./components/Switcher/ui/Switcher.js";
|
|
8
8
|
import { Text as s } from "./components/Text/ui/Text.js";
|
|
9
9
|
import { Flex as T } from "./components/Flex/ui/Flex.js";
|
|
@@ -13,10 +13,10 @@ import { FieldInput as w } from "./components/FieldInput/ui/FieldInput.js";
|
|
|
13
13
|
import { a as F, S as L } from "./SortSelect-BpsNckJ3.js";
|
|
14
14
|
import { GroupedInputs as N } from "./components/GroupedInput/ui/GroupedInputs.js";
|
|
15
15
|
import { Logo as v } from "./components/Logo/ui/Logo.js";
|
|
16
|
-
import { MetroTag as
|
|
17
|
-
import { LotCard as
|
|
18
|
-
import { Select as
|
|
19
|
-
import { useClientWidth as
|
|
16
|
+
import { MetroTag as D } from "./components/MetroTag/ui/MetroTag.js";
|
|
17
|
+
import { LotCard as P } from "./components/LotCard/ui/LotCard.js";
|
|
18
|
+
import { Select as W } from "./components/Select/ui/Select.js";
|
|
19
|
+
import { useClientWidth as q } from "./shared/useClientWidth.js";
|
|
20
20
|
import { SliderNavigation as A } from "./components/SliderNavigation/ui/SliderNavigation.js";
|
|
21
21
|
import { LotCardSkeleton as H } from "./components/LotCardSkeleton/ui/LotCardSkeleton.js";
|
|
22
22
|
import { ProjectCardSkeleton as K } from "./components/ProjectCardSkeleton/ui/ProjectCardSkeleton.js";
|
|
@@ -24,6 +24,7 @@ import { TabSelect as Q } from "./components/TabSelect/ui/TabSelect.js";
|
|
|
24
24
|
import { ZoomControls as V } from "./components/ZoomControls/ui/ZoomControls.js";
|
|
25
25
|
import { ModalForm as Y } from "./components/FormModal/ui/ModalForm.js";
|
|
26
26
|
import { ModalSuccess as $ } from "./components/ModalSuccess/ModalSuccess.js";
|
|
27
|
+
import { SummarySelect as ro } from "./components/SummarySelect/ui/SummarySelect.js";
|
|
27
28
|
export {
|
|
28
29
|
t as Button,
|
|
29
30
|
a as DestinationTab,
|
|
@@ -32,24 +33,25 @@ export {
|
|
|
32
33
|
N as GroupedInputs,
|
|
33
34
|
b as Input,
|
|
34
35
|
v as Logo,
|
|
35
|
-
|
|
36
|
+
P as LotCard,
|
|
36
37
|
H as LotCardSkeleton,
|
|
37
|
-
|
|
38
|
-
|
|
38
|
+
D as MetroTag,
|
|
39
|
+
m as MobileButton,
|
|
39
40
|
I as Modal,
|
|
40
41
|
Y as ModalForm,
|
|
41
42
|
$ as ModalSuccess,
|
|
42
43
|
x as NewIcon,
|
|
43
44
|
K as ProjectCardSkeleton,
|
|
44
|
-
|
|
45
|
-
|
|
45
|
+
n as RoundButton,
|
|
46
|
+
W as Select,
|
|
46
47
|
A as SliderNavigation,
|
|
47
48
|
F as SortSelect,
|
|
49
|
+
ro as SummarySelect,
|
|
48
50
|
u as Switcher,
|
|
49
51
|
Q as TabSelect,
|
|
50
52
|
L as TabSwitcher,
|
|
51
|
-
|
|
53
|
+
d as Tag,
|
|
52
54
|
s as Text,
|
|
53
55
|
V as ZoomControls,
|
|
54
|
-
|
|
56
|
+
q as useClientWidth
|
|
55
57
|
};
|