@megafon/ui-core 3.6.0 → 3.7.0
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/CHANGELOG.md +16 -0
- package/dist/es/components/Button/Button.css +40 -0
- package/dist/es/components/Button/Button.d.ts +1 -0
- package/dist/es/components/Button/Button.js +2 -1
- package/dist/es/components/Logo/Logo.js +22 -6
- package/dist/lib/components/Button/Button.css +40 -0
- package/dist/lib/components/Button/Button.d.ts +1 -0
- package/dist/lib/components/Button/Button.js +2 -1
- package/dist/lib/components/Logo/Logo.js +22 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.7.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-core@3.6.0...@megafon/ui-core@3.7.0) (2022-05-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **logo:** fix horizontal logo svg ([76655eb](https://github.com/MegafonWebLab/megafon-ui/commit/76655ebb82650cc2617750af0b2b2726d3ebcbf3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **button:** added extra small size ([a26da46](https://github.com/MegafonWebLab/megafon-ui/commit/a26da4601de7e7c81c40eabf9a87ccdbf18cb790))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.6.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-core@3.5.3...@megafon/ui-core@3.6.0) (2022-04-25)
|
|
7
23
|
|
|
8
24
|
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
appearance: none;
|
|
22
22
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
23
23
|
}
|
|
24
|
+
.mfui-button_size-all_extra-small .mfui-button__inner {
|
|
25
|
+
min-width: 26px;
|
|
26
|
+
height: 26px;
|
|
27
|
+
}
|
|
24
28
|
.mfui-button_size-all_small .mfui-button__inner {
|
|
25
29
|
min-width: 32px;
|
|
26
30
|
height: 32px;
|
|
@@ -33,6 +37,10 @@
|
|
|
33
37
|
min-width: 60px;
|
|
34
38
|
height: 60px;
|
|
35
39
|
}
|
|
40
|
+
.mfui-button_size-all_extra-small .mfui-button__icon {
|
|
41
|
+
width: 18px;
|
|
42
|
+
height: 18px;
|
|
43
|
+
}
|
|
36
44
|
.mfui-button_size-all_small .mfui-button__icon {
|
|
37
45
|
width: 24px;
|
|
38
46
|
height: 24px;
|
|
@@ -46,6 +54,10 @@
|
|
|
46
54
|
height: 40px;
|
|
47
55
|
}
|
|
48
56
|
@media screen and (min-width: 1280px) {
|
|
57
|
+
.mfui-button_size-wide_extra-small .mfui-button__inner {
|
|
58
|
+
min-width: 26px;
|
|
59
|
+
height: 26px;
|
|
60
|
+
}
|
|
49
61
|
.mfui-button_size-wide_small .mfui-button__inner {
|
|
50
62
|
min-width: 32px;
|
|
51
63
|
height: 32px;
|
|
@@ -58,6 +70,10 @@
|
|
|
58
70
|
min-width: 60px;
|
|
59
71
|
height: 60px;
|
|
60
72
|
}
|
|
73
|
+
.mfui-button_size-wide_extra-small .mfui-button__icon {
|
|
74
|
+
width: 18px;
|
|
75
|
+
height: 18px;
|
|
76
|
+
}
|
|
61
77
|
.mfui-button_size-wide_small .mfui-button__icon {
|
|
62
78
|
width: 24px;
|
|
63
79
|
height: 24px;
|
|
@@ -72,6 +88,10 @@
|
|
|
72
88
|
}
|
|
73
89
|
}
|
|
74
90
|
@media screen and (min-width: 1024px) {
|
|
91
|
+
.mfui-button_size-desktop_extra-small .mfui-button__inner {
|
|
92
|
+
min-width: 26px;
|
|
93
|
+
height: 26px;
|
|
94
|
+
}
|
|
75
95
|
.mfui-button_size-desktop_small .mfui-button__inner {
|
|
76
96
|
min-width: 32px;
|
|
77
97
|
height: 32px;
|
|
@@ -84,6 +104,10 @@
|
|
|
84
104
|
min-width: 60px;
|
|
85
105
|
height: 60px;
|
|
86
106
|
}
|
|
107
|
+
.mfui-button_size-desktop_extra-small .mfui-button__icon {
|
|
108
|
+
width: 18px;
|
|
109
|
+
height: 18px;
|
|
110
|
+
}
|
|
87
111
|
.mfui-button_size-desktop_small .mfui-button__icon {
|
|
88
112
|
width: 24px;
|
|
89
113
|
height: 24px;
|
|
@@ -98,6 +122,10 @@
|
|
|
98
122
|
}
|
|
99
123
|
}
|
|
100
124
|
@media screen and (min-width: 768px) and (max-width: 1023px) {
|
|
125
|
+
.mfui-button_size-tablet_extra-small .mfui-button__inner {
|
|
126
|
+
min-width: 26px;
|
|
127
|
+
height: 26px;
|
|
128
|
+
}
|
|
101
129
|
.mfui-button_size-tablet_small .mfui-button__inner {
|
|
102
130
|
min-width: 32px;
|
|
103
131
|
height: 32px;
|
|
@@ -110,6 +138,10 @@
|
|
|
110
138
|
min-width: 60px;
|
|
111
139
|
height: 60px;
|
|
112
140
|
}
|
|
141
|
+
.mfui-button_size-tablet_extra-small .mfui-button__icon {
|
|
142
|
+
width: 18px;
|
|
143
|
+
height: 18px;
|
|
144
|
+
}
|
|
113
145
|
.mfui-button_size-tablet_small .mfui-button__icon {
|
|
114
146
|
width: 24px;
|
|
115
147
|
height: 24px;
|
|
@@ -124,6 +156,10 @@
|
|
|
124
156
|
}
|
|
125
157
|
}
|
|
126
158
|
@media screen and (max-width: 767px) {
|
|
159
|
+
.mfui-button_size-mobile_extra-small .mfui-button__inner {
|
|
160
|
+
min-width: 26px;
|
|
161
|
+
height: 26px;
|
|
162
|
+
}
|
|
127
163
|
.mfui-button_size-mobile_small .mfui-button__inner {
|
|
128
164
|
min-width: 32px;
|
|
129
165
|
height: 32px;
|
|
@@ -136,6 +172,10 @@
|
|
|
136
172
|
min-width: 60px;
|
|
137
173
|
height: 60px;
|
|
138
174
|
}
|
|
175
|
+
.mfui-button_size-mobile_extra-small .mfui-button__icon {
|
|
176
|
+
width: 18px;
|
|
177
|
+
height: 18px;
|
|
178
|
+
}
|
|
139
179
|
.mfui-button_size-mobile_small .mfui-button__icon {
|
|
140
180
|
width: 24px;
|
|
141
181
|
height: 24px;
|
|
@@ -13,6 +13,7 @@ export declare const ButtonThemes: {
|
|
|
13
13
|
};
|
|
14
14
|
declare type ButtonThemesType = typeof ButtonThemes[keyof typeof ButtonThemes];
|
|
15
15
|
export declare const ButtonSizes: {
|
|
16
|
+
readonly EXTRA_SMALL: "extra-small";
|
|
16
17
|
readonly SMALL: "small";
|
|
17
18
|
readonly MEDIUM: "medium";
|
|
18
19
|
readonly LARGE: "large";
|
|
@@ -29,6 +29,7 @@ export var ButtonThemes = {
|
|
|
29
29
|
BLACK: 'black'
|
|
30
30
|
};
|
|
31
31
|
export var ButtonSizes = {
|
|
32
|
+
EXTRA_SMALL: 'extra-small',
|
|
32
33
|
SMALL: 'small',
|
|
33
34
|
MEDIUM: 'medium',
|
|
34
35
|
LARGE: 'large'
|
|
@@ -42,7 +43,7 @@ var Content;
|
|
|
42
43
|
})(Content || (Content = {}));
|
|
43
44
|
|
|
44
45
|
var getLoaderSize = function getLoaderSize(size) {
|
|
45
|
-
return size === ButtonSizes.SMALL ? ButtonSizes.SMALL : ButtonSizes.MEDIUM;
|
|
46
|
+
return size === ButtonSizes.SMALL || size === ButtonSizes.EXTRA_SMALL ? ButtonSizes.SMALL : ButtonSizes.MEDIUM;
|
|
46
47
|
};
|
|
47
48
|
|
|
48
49
|
var cn = cnCreate('mfui-button');
|
|
@@ -8,14 +8,30 @@ import "./Logo.css";
|
|
|
8
8
|
|
|
9
9
|
var greenHorizontalImg = function greenHorizontalImg(props) {
|
|
10
10
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11
|
-
viewBox: "0 0
|
|
12
|
-
|
|
11
|
+
viewBox: "0 0 623 112",
|
|
12
|
+
fill: "none"
|
|
13
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M608.292 31.117V51.95h-27.978V31.117h-13.769v55.067h13.769V63.951h27.978v22.233h13.842V31.117h-13.842z",
|
|
13
15
|
fill: "#00B956"
|
|
14
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
-
d: "M30.3.7v27.8c0 1.3-1 2.2-2.2 2.2h-3.3c-.2 0-.3.2-.3.3v23.3c.8 0 1.6.2 2.5.2 14.9 0 27-12.1 27-27C54 13.8 43.7 2.3 30.3.7zm-.6 41.6c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3.2 1.8-1.4 3.3-3.3 3.3zm7.9 0c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3s-1.3 3.3-3.3 3.3zm8 0c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3s-1.4 3.3-3.3 3.3z"
|
|
16
16
|
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
clipRule: "evenodd",
|
|
19
|
+
d: "M367.31 29.865c4.417 0 9.056 2.43 11.338 7.436l22.53 48.883h-14.652l-4.933-11.632h-28.567l-4.933 11.632h-14.652l22.53-48.883c2.282-5.007 6.921-7.436 11.339-7.436zm-1.105 13.693l-8.467 19.951h19.143l-8.467-19.95c-.221-.663-.736-.81-1.104-.81-.369 0-.81.22-1.105.81z",
|
|
20
|
+
fill: "#00B956"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M214.533 21.178c-6.48 0-10.603 3.46-13.622 10.38l-17.965 41.374-17.965-41.374c-3.018-6.92-7.142-10.38-13.621-10.38-6.037 0-12.296 4.343-12.296 13.693v51.313h13.769v-49.84l18.112 41.08c2.43 5.742 6.332 9.349 12.001 9.349 5.67 0 9.572-3.607 12.002-9.35l18.112-41.08v49.841h13.768v-51.24c0-9.423-6.258-13.766-12.295-13.766zm36.445 53.227a1.163 1.163 0 01-1.178-1.178v-9.644h34.384V52.319H249.8v-8.393c0-.662.515-1.178 1.178-1.178h34.016V31.117h-40.79c-4.785 0-8.172 3.975-8.172 8.171v38.577c0 4.196 3.46 8.172 8.172 8.172h40.79V74.405h-34.016zm57.429 11.779V44c0-.663.516-1.178 1.179-1.178h34.015V31.19h-40.789c-4.786 0-8.173 3.976-8.173 8.172v46.822h13.768z",
|
|
23
|
+
fill: "#00B956"
|
|
24
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
fillRule: "evenodd",
|
|
26
|
+
clipRule: "evenodd",
|
|
27
|
+
d: "M528.259 30.307c20.837 0 29.157 8.981 29.157 28.27 0 18.994-8.468 28.122-29.304 28.122h-4.565c-20.837 0-29.304-9.128-29.304-28.122 0-19.289 8.246-28.27 29.157-28.27h4.859zm-4.638 44.981h4.417c11.412 0 15.977-5.153 15.977-16.711v-.074c0-11.19-4.27-16.712-15.977-16.712h-4.417c-12.075 0-15.978 5.522-15.978 16.712v.074c0 11.558 4.492 16.711 15.978 16.711zm-95.127-52.785h27.316c20.321 0 28.493 10.307 28.567 28.27 0 2.797-.221 5.374-.589 7.804-2.135 12.736-9.645 20.54-28.715 20.54h-5.963v7.067h-13.769v-7.067h-6.037c-19.07 0-26.58-7.804-28.715-20.54-.442-2.43-.589-5.006-.589-7.804 0-17.963 8.099-28.27 28.494-28.27zm6.774 44.982h-6.332c-9.351 0-12.664-3.46-14.726-8.908-.81-2.135-.81-4.786-.81-7.804 0-11.706 5.449-16.712 13.4-16.712h8.468v33.424zm34.825-8.908c-2.061 5.448-5.448 8.908-14.725 8.908h-6.332V34.06h8.467c7.952 0 13.4 4.933 13.4 16.712 0 3.018 0 5.669-.81 7.804zM62.86 58.135V1.227c27.242 3.313 48.373 26.577 48.447 54.7 0 30.478-24.74 55.214-55.22 55.214a58.32 58.32 0 01-5.081-.221V63.215a.58.58 0 01.589-.59h6.774c2.43 0 4.49-1.987 4.49-4.49zM61.682 86.11a6.913 6.913 0 01-6.921-6.92 6.913 6.913 0 016.92-6.92 6.913 6.913 0 016.922 6.92 6.913 6.913 0 01-6.921 6.92zm9.277-6.92a6.913 6.913 0 006.92 6.92 6.913 6.913 0 006.922-6.92 6.913 6.913 0 00-6.921-6.92 6.913 6.913 0 00-6.921 6.92zm16.198 0a6.913 6.913 0 006.92 6.92A6.913 6.913 0 00101 79.19a6.913 6.913 0 00-6.921-6.92 6.913 6.913 0 00-6.921 6.92z",
|
|
28
|
+
fill: "#00B956"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
clipRule: "evenodd",
|
|
32
|
+
d: "M.792 56C.792 25.521 25.531.785 56.012.785h.148v54.626a.58.58 0 01-.59.589h-6.92c-2.356.074-4.27 2.061-4.344 4.417v49.546C19.42 104.589.792 82.503.792 56zm37.697-16.638a6.913 6.913 0 006.921 6.92 6.913 6.913 0 006.921-6.92 6.913 6.913 0 00-6.92-6.92 6.913 6.913 0 00-6.922 6.92z",
|
|
33
|
+
fill: "#00B956"
|
|
34
|
+
}));
|
|
19
35
|
};
|
|
20
36
|
|
|
21
37
|
var greenVerticalImg = function greenVerticalImg(props) {
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
appearance: none;
|
|
22
22
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
23
23
|
}
|
|
24
|
+
.mfui-button_size-all_extra-small .mfui-button__inner {
|
|
25
|
+
min-width: 26px;
|
|
26
|
+
height: 26px;
|
|
27
|
+
}
|
|
24
28
|
.mfui-button_size-all_small .mfui-button__inner {
|
|
25
29
|
min-width: 32px;
|
|
26
30
|
height: 32px;
|
|
@@ -33,6 +37,10 @@
|
|
|
33
37
|
min-width: 60px;
|
|
34
38
|
height: 60px;
|
|
35
39
|
}
|
|
40
|
+
.mfui-button_size-all_extra-small .mfui-button__icon {
|
|
41
|
+
width: 18px;
|
|
42
|
+
height: 18px;
|
|
43
|
+
}
|
|
36
44
|
.mfui-button_size-all_small .mfui-button__icon {
|
|
37
45
|
width: 24px;
|
|
38
46
|
height: 24px;
|
|
@@ -46,6 +54,10 @@
|
|
|
46
54
|
height: 40px;
|
|
47
55
|
}
|
|
48
56
|
@media screen and (min-width: 1280px) {
|
|
57
|
+
.mfui-button_size-wide_extra-small .mfui-button__inner {
|
|
58
|
+
min-width: 26px;
|
|
59
|
+
height: 26px;
|
|
60
|
+
}
|
|
49
61
|
.mfui-button_size-wide_small .mfui-button__inner {
|
|
50
62
|
min-width: 32px;
|
|
51
63
|
height: 32px;
|
|
@@ -58,6 +70,10 @@
|
|
|
58
70
|
min-width: 60px;
|
|
59
71
|
height: 60px;
|
|
60
72
|
}
|
|
73
|
+
.mfui-button_size-wide_extra-small .mfui-button__icon {
|
|
74
|
+
width: 18px;
|
|
75
|
+
height: 18px;
|
|
76
|
+
}
|
|
61
77
|
.mfui-button_size-wide_small .mfui-button__icon {
|
|
62
78
|
width: 24px;
|
|
63
79
|
height: 24px;
|
|
@@ -72,6 +88,10 @@
|
|
|
72
88
|
}
|
|
73
89
|
}
|
|
74
90
|
@media screen and (min-width: 1024px) {
|
|
91
|
+
.mfui-button_size-desktop_extra-small .mfui-button__inner {
|
|
92
|
+
min-width: 26px;
|
|
93
|
+
height: 26px;
|
|
94
|
+
}
|
|
75
95
|
.mfui-button_size-desktop_small .mfui-button__inner {
|
|
76
96
|
min-width: 32px;
|
|
77
97
|
height: 32px;
|
|
@@ -84,6 +104,10 @@
|
|
|
84
104
|
min-width: 60px;
|
|
85
105
|
height: 60px;
|
|
86
106
|
}
|
|
107
|
+
.mfui-button_size-desktop_extra-small .mfui-button__icon {
|
|
108
|
+
width: 18px;
|
|
109
|
+
height: 18px;
|
|
110
|
+
}
|
|
87
111
|
.mfui-button_size-desktop_small .mfui-button__icon {
|
|
88
112
|
width: 24px;
|
|
89
113
|
height: 24px;
|
|
@@ -98,6 +122,10 @@
|
|
|
98
122
|
}
|
|
99
123
|
}
|
|
100
124
|
@media screen and (min-width: 768px) and (max-width: 1023px) {
|
|
125
|
+
.mfui-button_size-tablet_extra-small .mfui-button__inner {
|
|
126
|
+
min-width: 26px;
|
|
127
|
+
height: 26px;
|
|
128
|
+
}
|
|
101
129
|
.mfui-button_size-tablet_small .mfui-button__inner {
|
|
102
130
|
min-width: 32px;
|
|
103
131
|
height: 32px;
|
|
@@ -110,6 +138,10 @@
|
|
|
110
138
|
min-width: 60px;
|
|
111
139
|
height: 60px;
|
|
112
140
|
}
|
|
141
|
+
.mfui-button_size-tablet_extra-small .mfui-button__icon {
|
|
142
|
+
width: 18px;
|
|
143
|
+
height: 18px;
|
|
144
|
+
}
|
|
113
145
|
.mfui-button_size-tablet_small .mfui-button__icon {
|
|
114
146
|
width: 24px;
|
|
115
147
|
height: 24px;
|
|
@@ -124,6 +156,10 @@
|
|
|
124
156
|
}
|
|
125
157
|
}
|
|
126
158
|
@media screen and (max-width: 767px) {
|
|
159
|
+
.mfui-button_size-mobile_extra-small .mfui-button__inner {
|
|
160
|
+
min-width: 26px;
|
|
161
|
+
height: 26px;
|
|
162
|
+
}
|
|
127
163
|
.mfui-button_size-mobile_small .mfui-button__inner {
|
|
128
164
|
min-width: 32px;
|
|
129
165
|
height: 32px;
|
|
@@ -136,6 +172,10 @@
|
|
|
136
172
|
min-width: 60px;
|
|
137
173
|
height: 60px;
|
|
138
174
|
}
|
|
175
|
+
.mfui-button_size-mobile_extra-small .mfui-button__icon {
|
|
176
|
+
width: 18px;
|
|
177
|
+
height: 18px;
|
|
178
|
+
}
|
|
139
179
|
.mfui-button_size-mobile_small .mfui-button__icon {
|
|
140
180
|
width: 24px;
|
|
141
181
|
height: 24px;
|
|
@@ -13,6 +13,7 @@ export declare const ButtonThemes: {
|
|
|
13
13
|
};
|
|
14
14
|
declare type ButtonThemesType = typeof ButtonThemes[keyof typeof ButtonThemes];
|
|
15
15
|
export declare const ButtonSizes: {
|
|
16
|
+
readonly EXTRA_SMALL: "extra-small";
|
|
16
17
|
readonly SMALL: "small";
|
|
17
18
|
readonly MEDIUM: "medium";
|
|
18
19
|
readonly LARGE: "large";
|
|
@@ -54,6 +54,7 @@ var ButtonThemes = {
|
|
|
54
54
|
};
|
|
55
55
|
exports.ButtonThemes = ButtonThemes;
|
|
56
56
|
var ButtonSizes = {
|
|
57
|
+
EXTRA_SMALL: 'extra-small',
|
|
57
58
|
SMALL: 'small',
|
|
58
59
|
MEDIUM: 'medium',
|
|
59
60
|
LARGE: 'large'
|
|
@@ -68,7 +69,7 @@ var Content;
|
|
|
68
69
|
})(Content || (Content = {}));
|
|
69
70
|
|
|
70
71
|
var getLoaderSize = function getLoaderSize(size) {
|
|
71
|
-
return size === ButtonSizes.SMALL ? ButtonSizes.SMALL : ButtonSizes.MEDIUM;
|
|
72
|
+
return size === ButtonSizes.SMALL || size === ButtonSizes.EXTRA_SMALL ? ButtonSizes.SMALL : ButtonSizes.MEDIUM;
|
|
72
73
|
};
|
|
73
74
|
|
|
74
75
|
var cn = (0, _uiHelpers.cnCreate)('mfui-button');
|
|
@@ -27,14 +27,30 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
|
|
|
27
27
|
|
|
28
28
|
var greenHorizontalImg = function greenHorizontalImg(props) {
|
|
29
29
|
return /*#__PURE__*/React.createElement("svg", (0, _extends2["default"])({
|
|
30
|
-
viewBox: "0 0
|
|
31
|
-
|
|
30
|
+
viewBox: "0 0 623 112",
|
|
31
|
+
fill: "none"
|
|
32
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "M608.292 31.117V51.95h-27.978V31.117h-13.769v55.067h13.769V63.951h27.978v22.233h13.842V31.117h-13.842z",
|
|
32
34
|
fill: "#00B956"
|
|
33
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
34
|
-
d: "M30.3.7v27.8c0 1.3-1 2.2-2.2 2.2h-3.3c-.2 0-.3.2-.3.3v23.3c.8 0 1.6.2 2.5.2 14.9 0 27-12.1 27-27C54 13.8 43.7 2.3 30.3.7zm-.6 41.6c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3.2 1.8-1.4 3.3-3.3 3.3zm7.9 0c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3s-1.3 3.3-3.3 3.3zm8 0c-1.9 0-3.3-1.6-3.3-3.3 0-1.9 1.6-3.3 3.3-3.3 1.9 0 3.3 1.6 3.3 3.3s-1.4 3.3-3.3 3.3z"
|
|
35
35
|
}), /*#__PURE__*/React.createElement("path", {
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
fillRule: "evenodd",
|
|
37
|
+
clipRule: "evenodd",
|
|
38
|
+
d: "M367.31 29.865c4.417 0 9.056 2.43 11.338 7.436l22.53 48.883h-14.652l-4.933-11.632h-28.567l-4.933 11.632h-14.652l22.53-48.883c2.282-5.007 6.921-7.436 11.339-7.436zm-1.105 13.693l-8.467 19.951h19.143l-8.467-19.95c-.221-.663-.736-.81-1.104-.81-.369 0-.81.22-1.105.81z",
|
|
39
|
+
fill: "#00B956"
|
|
40
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41
|
+
d: "M214.533 21.178c-6.48 0-10.603 3.46-13.622 10.38l-17.965 41.374-17.965-41.374c-3.018-6.92-7.142-10.38-13.621-10.38-6.037 0-12.296 4.343-12.296 13.693v51.313h13.769v-49.84l18.112 41.08c2.43 5.742 6.332 9.349 12.001 9.349 5.67 0 9.572-3.607 12.002-9.35l18.112-41.08v49.841h13.768v-51.24c0-9.423-6.258-13.766-12.295-13.766zm36.445 53.227a1.163 1.163 0 01-1.178-1.178v-9.644h34.384V52.319H249.8v-8.393c0-.662.515-1.178 1.178-1.178h34.016V31.117h-40.79c-4.785 0-8.172 3.975-8.172 8.171v38.577c0 4.196 3.46 8.172 8.172 8.172h40.79V74.405h-34.016zm57.429 11.779V44c0-.663.516-1.178 1.179-1.178h34.015V31.19h-40.789c-4.786 0-8.173 3.976-8.173 8.172v46.822h13.768z",
|
|
42
|
+
fill: "#00B956"
|
|
43
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
44
|
+
fillRule: "evenodd",
|
|
45
|
+
clipRule: "evenodd",
|
|
46
|
+
d: "M528.259 30.307c20.837 0 29.157 8.981 29.157 28.27 0 18.994-8.468 28.122-29.304 28.122h-4.565c-20.837 0-29.304-9.128-29.304-28.122 0-19.289 8.246-28.27 29.157-28.27h4.859zm-4.638 44.981h4.417c11.412 0 15.977-5.153 15.977-16.711v-.074c0-11.19-4.27-16.712-15.977-16.712h-4.417c-12.075 0-15.978 5.522-15.978 16.712v.074c0 11.558 4.492 16.711 15.978 16.711zm-95.127-52.785h27.316c20.321 0 28.493 10.307 28.567 28.27 0 2.797-.221 5.374-.589 7.804-2.135 12.736-9.645 20.54-28.715 20.54h-5.963v7.067h-13.769v-7.067h-6.037c-19.07 0-26.58-7.804-28.715-20.54-.442-2.43-.589-5.006-.589-7.804 0-17.963 8.099-28.27 28.494-28.27zm6.774 44.982h-6.332c-9.351 0-12.664-3.46-14.726-8.908-.81-2.135-.81-4.786-.81-7.804 0-11.706 5.449-16.712 13.4-16.712h8.468v33.424zm34.825-8.908c-2.061 5.448-5.448 8.908-14.725 8.908h-6.332V34.06h8.467c7.952 0 13.4 4.933 13.4 16.712 0 3.018 0 5.669-.81 7.804zM62.86 58.135V1.227c27.242 3.313 48.373 26.577 48.447 54.7 0 30.478-24.74 55.214-55.22 55.214a58.32 58.32 0 01-5.081-.221V63.215a.58.58 0 01.589-.59h6.774c2.43 0 4.49-1.987 4.49-4.49zM61.682 86.11a6.913 6.913 0 01-6.921-6.92 6.913 6.913 0 016.92-6.92 6.913 6.913 0 016.922 6.92 6.913 6.913 0 01-6.921 6.92zm9.277-6.92a6.913 6.913 0 006.92 6.92 6.913 6.913 0 006.922-6.92 6.913 6.913 0 00-6.921-6.92 6.913 6.913 0 00-6.921 6.92zm16.198 0a6.913 6.913 0 006.92 6.92A6.913 6.913 0 00101 79.19a6.913 6.913 0 00-6.921-6.92 6.913 6.913 0 00-6.921 6.92z",
|
|
47
|
+
fill: "#00B956"
|
|
48
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
49
|
+
fillRule: "evenodd",
|
|
50
|
+
clipRule: "evenodd",
|
|
51
|
+
d: "M.792 56C.792 25.521 25.531.785 56.012.785h.148v54.626a.58.58 0 01-.59.589h-6.92c-2.356.074-4.27 2.061-4.344 4.417v49.546C19.42 104.589.792 82.503.792 56zm37.697-16.638a6.913 6.913 0 006.921 6.92 6.913 6.913 0 006.921-6.92 6.913 6.913 0 00-6.92-6.92 6.913 6.913 0 00-6.922 6.92z",
|
|
52
|
+
fill: "#00B956"
|
|
53
|
+
}));
|
|
38
54
|
};
|
|
39
55
|
|
|
40
56
|
var greenVerticalImg = function greenVerticalImg(props) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@megafon/ui-core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"styles"
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"react-popper": "^2.2.3",
|
|
98
98
|
"swiper": "^6.5.6"
|
|
99
99
|
},
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "be6065a442b0c2f8f1a82ea4fd45dd36679cbfaf"
|
|
101
101
|
}
|