stone-kit 0.0.75 → 0.0.76
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 +12 -10
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
package/dist/main.js
CHANGED
|
@@ -4,21 +4,22 @@ import { NewIcon as f } from "./components/NewIcon/ui/NewIcon.js";
|
|
|
4
4
|
import { DestinationTab as n } from "./components/DestinationTab/ui/DestinationTab.js";
|
|
5
5
|
import { RoundButton as a } from "./components/RoundButton/ui/RoundButton.js";
|
|
6
6
|
import { Tag as d } from "./components/Tag/ui/Tag.js";
|
|
7
|
-
import { Switcher as
|
|
8
|
-
import { Text as
|
|
7
|
+
import { Switcher as T } from "./components/Switcher/ui/Switcher.js";
|
|
8
|
+
import { Text as I } from "./components/Text/ui/Text.js";
|
|
9
9
|
import { Flex as g } from "./components/Flex/ui/Flex.js";
|
|
10
10
|
import { Input as B } from "./components/Input/ui/Input.js";
|
|
11
|
-
import { Modal as
|
|
12
|
-
import { FieldInput as
|
|
13
|
-
import { TabSwitcher as
|
|
11
|
+
import { Modal as S } from "./components/Modal/ui/Modal.js";
|
|
12
|
+
import { FieldInput as s } from "./components/FieldInput/ui/FieldInput.js";
|
|
13
|
+
import { TabSwitcher as L } from "./components/TabSwitcher/ui/TabSwitcher.js";
|
|
14
14
|
import { GroupedInputs as D } from "./components/GroupedInput/ui/GroupedInputs.js";
|
|
15
15
|
import { Logo as N } from "./components/Logo/ui/Logo.js";
|
|
16
16
|
import { MetroTag as j } from "./components/MetroTag/ui/MetroTag.js";
|
|
17
17
|
import { LotCard as q } from "./components/LotCard/ui/LotCard.js";
|
|
18
|
+
import { Select as y } from "./components/Select/ui/Select.js";
|
|
18
19
|
export {
|
|
19
20
|
t as Button,
|
|
20
21
|
n as DestinationTab,
|
|
21
|
-
|
|
22
|
+
s as FieldInput,
|
|
22
23
|
g as Flex,
|
|
23
24
|
D as GroupedInputs,
|
|
24
25
|
B as Input,
|
|
@@ -26,11 +27,12 @@ export {
|
|
|
26
27
|
q as LotCard,
|
|
27
28
|
j as MetroTag,
|
|
28
29
|
p as MobileButton,
|
|
29
|
-
|
|
30
|
+
S as Modal,
|
|
30
31
|
f as NewIcon,
|
|
31
32
|
a as RoundButton,
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
y as Select,
|
|
34
|
+
T as Switcher,
|
|
35
|
+
L as TabSwitcher,
|
|
34
36
|
d as Tag,
|
|
35
|
-
|
|
37
|
+
I as Text
|
|
36
38
|
};
|