@alfalab/core-components-typography 3.2.0 → 3.2.1
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/colors.css +34 -34
- package/colors.js +2 -0
- package/colors.module-5ace86c0.js +6 -0
- package/common.module-141e6c42.js +6 -0
- package/component.js +4 -2
- package/cssm/colors.js +2 -0
- package/cssm/colors.module.css +14 -14
- package/cssm/component.js +2 -0
- package/cssm/index.js +2 -0
- package/cssm/presets.js +2 -0
- package/cssm/text/component.js +2 -0
- package/cssm/text/index.js +2 -0
- package/cssm/text/index.module.css +2 -2
- package/cssm/title/component.js +2 -0
- package/cssm/title/index.js +2 -0
- package/cssm/title/index.module.css +2 -2
- package/cssm/title-mobile/component.js +2 -0
- package/cssm/title-mobile/index.js +2 -0
- package/cssm/title-mobile/index.module.css +2 -2
- package/cssm/title-responsive/component.js +2 -0
- package/cssm/title-responsive/index.js +2 -0
- package/cssm/title-responsive/index.module.css +2 -2
- package/esm/colors.css +34 -34
- package/esm/colors.module-5c7093c3.js +4 -0
- package/esm/common.module-b1986a07.js +4 -0
- package/esm/component.js +2 -2
- package/esm/index.js +2 -2
- package/esm/text/component.js +2 -2
- package/esm/text/index.css +20 -20
- package/esm/text/index.js +1 -1
- package/esm/title/common.css +5 -5
- package/esm/title/component.js +1 -1
- package/esm/title/index.css +21 -21
- package/esm/title/index.js +3 -3
- package/esm/title-mobile/component.js +3 -3
- package/esm/title-mobile/index.css +13 -13
- package/esm/title-mobile/index.js +2 -2
- package/esm/title-responsive/component.js +3 -3
- package/esm/title-responsive/index.css +43 -43
- package/esm/title-responsive/index.js +2 -2
- package/index.js +4 -2
- package/modern/colors.css +34 -34
- package/modern/colors.module-fb1ac5bf.js +4 -0
- package/modern/common.module-3dd593c8.js +4 -0
- package/modern/component.js +2 -2
- package/modern/index.js +2 -2
- package/modern/text/component.js +2 -2
- package/modern/text/index.css +20 -20
- package/modern/text/index.js +1 -1
- package/modern/title/common.css +5 -5
- package/modern/title/component.js +1 -1
- package/modern/title/index.css +21 -21
- package/modern/title/index.js +3 -3
- package/modern/title-mobile/component.js +3 -3
- package/modern/title-mobile/index.css +13 -13
- package/modern/title-mobile/index.js +2 -2
- package/modern/title-responsive/component.js +3 -3
- package/modern/title-responsive/index.css +43 -43
- package/modern/title-responsive/index.js +2 -2
- package/package.json +1 -1
- package/presets.js +2 -0
- package/text/component.js +4 -2
- package/text/index.css +20 -20
- package/text/index.js +3 -1
- package/title/common.css +5 -5
- package/title/component.js +3 -1
- package/title/index.css +21 -21
- package/title/index.js +5 -3
- package/title-mobile/component.js +5 -3
- package/title-mobile/index.css +13 -13
- package/title-mobile/index.js +4 -2
- package/title-responsive/component.js +5 -3
- package/title-responsive/index.css +43 -43
- package/title-responsive/index.js +4 -2
- package/colors.module-15de3c41.js +0 -6
- package/common.module-f948e7d5.js +0 -6
- package/esm/colors.module-308e84a9.js +0 -4
- package/esm/common.module-a19344da.js +0 -4
- package/modern/colors.module-c327b974.js +0 -4
- package/modern/common.module-41281fe7.js +0 -4
package/esm/title/common.css
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
/* hash:
|
|
2
|
-
.
|
|
1
|
+
/* hash: 1hrdt */
|
|
2
|
+
.typography__component_jmw1n {
|
|
3
3
|
margin: 0;
|
|
4
4
|
padding: 0
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.typography__component_jmw1n.typography__bold_jmw1n {
|
|
7
7
|
font-weight: bold;
|
|
8
8
|
}
|
|
9
|
-
.
|
|
9
|
+
.typography__component_jmw1n.typography__medium_jmw1n {
|
|
10
10
|
font-weight: 500;
|
|
11
11
|
}
|
|
12
|
-
.
|
|
12
|
+
.typography__component_jmw1n.typography__regular_jmw1n {
|
|
13
13
|
font-weight: normal;
|
|
14
14
|
}
|
package/esm/title/component.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __rest, __assign } from 'tslib';
|
|
2
2
|
import React, { forwardRef } from 'react';
|
|
3
3
|
import cn from 'classnames';
|
|
4
|
-
import { c as colors } from '../colors.module-
|
|
4
|
+
import { c as colors } from '../colors.module-5c7093c3.js';
|
|
5
5
|
|
|
6
6
|
var Title = forwardRef(function (_a, ref) {
|
|
7
7
|
var _b;
|
package/esm/title/index.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1tig7 */
|
|
2
2
|
:root {
|
|
3
|
-
} /* deprecated */ :root {
|
|
4
|
-
} :root {
|
|
3
|
+
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
|
+
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
5
5
|
} :root {
|
|
6
6
|
} :root {
|
|
7
7
|
|
|
@@ -20,78 +20,78 @@
|
|
|
20
20
|
--font-family-styrene: 'Styrene UI', system-ui, -apple-system, 'Segoe UI', Roboto,
|
|
21
21
|
'Helvetica Neue', Helvetica, sans-serif;
|
|
22
22
|
} :root {
|
|
23
|
-
} .typography__styrene-
|
|
23
|
+
} .typography__styrene-xlarge_1naxk {
|
|
24
24
|
font-size: 48px;
|
|
25
25
|
line-height: 64px;
|
|
26
26
|
font-weight: 500;
|
|
27
27
|
font-feature-settings: 'ss01';
|
|
28
28
|
font-family: var(--font-family-styrene);
|
|
29
|
-
} .typography__styrene-
|
|
29
|
+
} .typography__styrene-large_1naxk {
|
|
30
30
|
font-size: 40px;
|
|
31
31
|
line-height: 48px;
|
|
32
32
|
font-weight: 500;
|
|
33
33
|
font-feature-settings: 'ss01';
|
|
34
34
|
font-family: var(--font-family-styrene);
|
|
35
|
-
} .typography__styrene-
|
|
35
|
+
} .typography__styrene-medium_1naxk {
|
|
36
36
|
font-size: 32px;
|
|
37
37
|
line-height: 40px;
|
|
38
38
|
font-weight: 500;
|
|
39
39
|
font-feature-settings: 'ss01';
|
|
40
40
|
font-family: var(--font-family-styrene);
|
|
41
|
-
} .typography__styrene-
|
|
41
|
+
} .typography__styrene-small_1naxk {
|
|
42
42
|
font-size: 24px;
|
|
43
43
|
line-height: 32px;
|
|
44
44
|
font-weight: 500;
|
|
45
45
|
font-feature-settings: 'ss01';
|
|
46
46
|
font-family: var(--font-family-styrene);
|
|
47
|
-
} .typography__styrene-
|
|
47
|
+
} .typography__styrene-xsmall_1naxk {
|
|
48
48
|
font-size: 20px;
|
|
49
49
|
line-height: 24px;
|
|
50
50
|
font-weight: 500;
|
|
51
51
|
font-feature-settings: 'ss01';
|
|
52
52
|
font-family: var(--font-family-styrene);
|
|
53
|
-
} .typography__system-
|
|
53
|
+
} .typography__system-xlarge_1naxk {
|
|
54
54
|
font-size: 48px;
|
|
55
55
|
line-height: 52px;
|
|
56
56
|
font-weight: 700;
|
|
57
|
-
} .typography__system-
|
|
57
|
+
} .typography__system-large_1naxk {
|
|
58
58
|
font-size: 40px;
|
|
59
59
|
line-height: 48px;
|
|
60
60
|
font-weight: 700;
|
|
61
|
-
} .typography__system-
|
|
61
|
+
} .typography__system-medium_1naxk {
|
|
62
62
|
font-size: 30px;
|
|
63
63
|
line-height: 36px;
|
|
64
64
|
font-weight: 700;
|
|
65
|
-
} .typography__system-
|
|
65
|
+
} .typography__system-small_1naxk {
|
|
66
66
|
font-size: 22px;
|
|
67
67
|
line-height: 26px;
|
|
68
68
|
font-weight: 700;
|
|
69
|
-
} .typography__system-
|
|
69
|
+
} .typography__system-xsmall_1naxk {
|
|
70
70
|
font-size: 18px;
|
|
71
71
|
line-height: 22px;
|
|
72
72
|
font-weight: 700;
|
|
73
|
-
} .typography__margins-
|
|
73
|
+
} .typography__margins-xlarge_1naxk {
|
|
74
74
|
margin: 0 0 var(--gap-xl);
|
|
75
|
-
} .typography__margins-
|
|
75
|
+
} .typography__margins-large_1naxk {
|
|
76
76
|
margin: var(--gap-4xl) 0 var(--gap-xl);
|
|
77
|
-
} .typography__margins-
|
|
77
|
+
} .typography__margins-medium_1naxk {
|
|
78
78
|
margin: var(--gap-4xl) 0 var(--gap-xl);
|
|
79
|
-
} .typography__margins-
|
|
79
|
+
} .typography__margins-small_1naxk {
|
|
80
80
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
81
|
-
} .typography__margins-
|
|
81
|
+
} .typography__margins-xsmall_1naxk {
|
|
82
82
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
83
|
-
} .
|
|
83
|
+
} .typography__rowLimit1_1naxk {
|
|
84
84
|
-webkit-line-clamp: 1;
|
|
85
85
|
display: -webkit-box;
|
|
86
86
|
-webkit-box-orient: vertical;
|
|
87
87
|
overflow: hidden;
|
|
88
88
|
word-break: break-all;
|
|
89
|
-
} .
|
|
89
|
+
} .typography__rowLimit2_1naxk {
|
|
90
90
|
-webkit-line-clamp: 2;
|
|
91
91
|
display: -webkit-box;
|
|
92
92
|
-webkit-box-orient: vertical;
|
|
93
93
|
overflow: hidden;
|
|
94
|
-
} .
|
|
94
|
+
} .typography__rowLimit3_1naxk {
|
|
95
95
|
-webkit-line-clamp: 3;
|
|
96
96
|
display: -webkit-box;
|
|
97
97
|
-webkit-box-orient: vertical;
|
package/esm/title/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { __assign } from 'tslib';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { Title as Title$1 } from './component.js';
|
|
4
|
-
import { c as commonStyles } from '../common.module-
|
|
4
|
+
import { c as commonStyles } from '../common.module-b1986a07.js';
|
|
5
5
|
import 'classnames';
|
|
6
|
-
import '../colors.module-
|
|
6
|
+
import '../colors.module-5c7093c3.js';
|
|
7
7
|
|
|
8
|
-
var styles = {"styrene-xlarge":"typography__styrene-
|
|
8
|
+
var styles = {"styrene-xlarge":"typography__styrene-xlarge_1naxk","styrene-large":"typography__styrene-large_1naxk","styrene-medium":"typography__styrene-medium_1naxk","styrene-small":"typography__styrene-small_1naxk","styrene-xsmall":"typography__styrene-xsmall_1naxk","system-xlarge":"typography__system-xlarge_1naxk","system-large":"typography__system-large_1naxk","system-medium":"typography__system-medium_1naxk","system-small":"typography__system-small_1naxk","system-xsmall":"typography__system-xsmall_1naxk","margins-xlarge":"typography__margins-xlarge_1naxk","margins-large":"typography__margins-large_1naxk","margins-medium":"typography__margins-medium_1naxk","margins-small":"typography__margins-small_1naxk","margins-xsmall":"typography__margins-xsmall_1naxk","rowLimit1":"typography__rowLimit1_1naxk","rowLimit2":"typography__rowLimit2_1naxk","rowLimit3":"typography__rowLimit3_1naxk"};
|
|
9
9
|
require('./index.css')
|
|
10
10
|
|
|
11
11
|
var Title = function (props) { return (
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { __assign } from 'tslib';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { Title } from '../title/component.js';
|
|
4
|
-
import { c as commonStyles } from '../common.module-
|
|
4
|
+
import { c as commonStyles } from '../common.module-b1986a07.js';
|
|
5
5
|
import 'classnames';
|
|
6
|
-
import '../colors.module-
|
|
6
|
+
import '../colors.module-5c7093c3.js';
|
|
7
7
|
|
|
8
|
-
var styles = {"styrene-xlarge":"typography__styrene-
|
|
8
|
+
var styles = {"styrene-xlarge":"typography__styrene-xlarge_7edsq","styrene-large":"typography__styrene-large_7edsq","styrene-medium":"typography__styrene-medium_7edsq","styrene-small":"typography__styrene-small_7edsq","styrene-xsmall":"typography__styrene-xsmall_7edsq","system-xlarge":"typography__system-xlarge_7edsq","system-large":"typography__system-large_7edsq","system-medium":"typography__system-medium_7edsq","system-small":"typography__system-small_7edsq","system-xsmall":"typography__system-xsmall_7edsq"};
|
|
9
9
|
require('./index.css')
|
|
10
10
|
|
|
11
11
|
var TitleMobile = function (props) { return (
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: wnb9y */
|
|
2
2
|
:root {
|
|
3
|
-
} /* deprecated */ :root {
|
|
4
|
-
} :root {
|
|
3
|
+
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
|
+
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
5
5
|
} :root {
|
|
6
6
|
} :root {
|
|
7
7
|
|
|
@@ -16,53 +16,53 @@
|
|
|
16
16
|
--font-family-styrene: 'Styrene UI', system-ui, -apple-system, 'Segoe UI', Roboto,
|
|
17
17
|
'Helvetica Neue', Helvetica, sans-serif;
|
|
18
18
|
} :root {
|
|
19
|
-
} .typography__styrene-
|
|
19
|
+
} .typography__styrene-xlarge_7edsq {
|
|
20
20
|
font-size: 34px;
|
|
21
21
|
line-height: 40px;
|
|
22
22
|
font-weight: 500;
|
|
23
23
|
font-feature-settings: 'ss01';
|
|
24
24
|
font-family: var(--font-family-styrene);
|
|
25
|
-
} .typography__styrene-
|
|
25
|
+
} .typography__styrene-large_7edsq {
|
|
26
26
|
font-size: 30px;
|
|
27
27
|
line-height: 36px;
|
|
28
28
|
font-weight: 500;
|
|
29
29
|
font-feature-settings: 'ss01';
|
|
30
30
|
font-family: var(--font-family-styrene);
|
|
31
|
-
} .typography__styrene-
|
|
31
|
+
} .typography__styrene-medium_7edsq {
|
|
32
32
|
font-size: 26px;
|
|
33
33
|
line-height: 32px;
|
|
34
34
|
font-weight: 500;
|
|
35
35
|
font-feature-settings: 'ss01';
|
|
36
36
|
font-family: var(--font-family-styrene);
|
|
37
|
-
} .typography__styrene-
|
|
37
|
+
} .typography__styrene-small_7edsq {
|
|
38
38
|
font-size: 20px;
|
|
39
39
|
line-height: 28px;
|
|
40
40
|
font-weight: 500;
|
|
41
41
|
font-feature-settings: 'ss01';
|
|
42
42
|
font-family: var(--font-family-styrene);
|
|
43
|
-
} .typography__styrene-
|
|
43
|
+
} .typography__styrene-xsmall_7edsq {
|
|
44
44
|
font-size: 16px;
|
|
45
45
|
line-height: 20px;
|
|
46
46
|
font-weight: 500;
|
|
47
47
|
font-feature-settings: 'ss01';
|
|
48
48
|
font-family: var(--font-family-styrene);
|
|
49
|
-
} .typography__system-
|
|
49
|
+
} .typography__system-xlarge_7edsq {
|
|
50
50
|
font-size: 34px;
|
|
51
51
|
line-height: 40px;
|
|
52
52
|
font-weight: 600;
|
|
53
|
-
} .typography__system-
|
|
53
|
+
} .typography__system-large_7edsq {
|
|
54
54
|
font-size: 30px;
|
|
55
55
|
line-height: 36px;
|
|
56
56
|
font-weight: 600;
|
|
57
|
-
} .typography__system-
|
|
57
|
+
} .typography__system-medium_7edsq {
|
|
58
58
|
font-size: 26px;
|
|
59
59
|
line-height: 32px;
|
|
60
60
|
font-weight: 600;
|
|
61
|
-
} .typography__system-
|
|
61
|
+
} .typography__system-small_7edsq {
|
|
62
62
|
font-size: 20px;
|
|
63
63
|
line-height: 28px;
|
|
64
64
|
font-weight: 600;
|
|
65
|
-
} .typography__system-
|
|
65
|
+
} .typography__system-xsmall_7edsq {
|
|
66
66
|
font-size: 16px;
|
|
67
67
|
line-height: 20px;
|
|
68
68
|
font-weight: 600;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { __assign } from 'tslib';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { Title } from '../title/component.js';
|
|
4
|
-
import { c as commonStyles } from '../common.module-
|
|
4
|
+
import { c as commonStyles } from '../common.module-b1986a07.js';
|
|
5
5
|
import 'classnames';
|
|
6
|
-
import '../colors.module-
|
|
6
|
+
import '../colors.module-5c7093c3.js';
|
|
7
7
|
|
|
8
|
-
var styles = {"styrene-xlarge":"typography__styrene-
|
|
8
|
+
var styles = {"styrene-xlarge":"typography__styrene-xlarge_7hlrm","styrene-large":"typography__styrene-large_7hlrm","styrene-medium":"typography__styrene-medium_7hlrm","styrene-small":"typography__styrene-small_7hlrm","styrene-xsmall":"typography__styrene-xsmall_7hlrm","system-xlarge":"typography__system-xlarge_7hlrm","system-large":"typography__system-large_7hlrm","system-medium":"typography__system-medium_7hlrm","system-small":"typography__system-small_7hlrm","system-xsmall":"typography__system-xsmall_7hlrm","margins-xlarge":"typography__margins-xlarge_7hlrm","margins-large":"typography__margins-large_7hlrm","margins-medium":"typography__margins-medium_7hlrm","margins-small":"typography__margins-small_7hlrm","margins-xsmall":"typography__margins-xsmall_7hlrm"};
|
|
9
9
|
require('./index.css')
|
|
10
10
|
|
|
11
11
|
var TitleResponsive = function (props) { return (
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: gnje2 */
|
|
2
2
|
:root {
|
|
3
|
-
} /* deprecated */ :root {
|
|
4
|
-
} :root {
|
|
3
|
+
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
|
+
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
5
5
|
} :root {
|
|
6
6
|
} :root {
|
|
7
7
|
|
|
@@ -20,118 +20,118 @@
|
|
|
20
20
|
--font-family-styrene: 'Styrene UI', system-ui, -apple-system, 'Segoe UI', Roboto,
|
|
21
21
|
'Helvetica Neue', Helvetica, sans-serif;
|
|
22
22
|
} :root {
|
|
23
|
-
} /* TODO: поменять медиа-запросы на миксины */ .typography__styrene-
|
|
23
|
+
} /* TODO: поменять медиа-запросы на миксины */ .typography__styrene-xlarge_7hlrm {
|
|
24
24
|
font-size: 34px;
|
|
25
25
|
line-height: 40px;
|
|
26
26
|
font-weight: 500;
|
|
27
27
|
font-feature-settings: 'ss01';
|
|
28
28
|
font-family: var(--font-family-styrene);
|
|
29
|
-
} .typography__styrene-
|
|
29
|
+
} .typography__styrene-large_7hlrm {
|
|
30
30
|
font-size: 30px;
|
|
31
31
|
line-height: 36px;
|
|
32
32
|
font-weight: 500;
|
|
33
33
|
font-feature-settings: 'ss01';
|
|
34
34
|
font-family: var(--font-family-styrene);
|
|
35
|
-
} .typography__styrene-
|
|
35
|
+
} .typography__styrene-medium_7hlrm {
|
|
36
36
|
font-size: 26px;
|
|
37
37
|
line-height: 32px;
|
|
38
38
|
font-weight: 500;
|
|
39
39
|
font-feature-settings: 'ss01';
|
|
40
40
|
font-family: var(--font-family-styrene);
|
|
41
|
-
} .typography__styrene-
|
|
41
|
+
} .typography__styrene-small_7hlrm {
|
|
42
42
|
font-size: 20px;
|
|
43
43
|
line-height: 28px;
|
|
44
44
|
font-weight: 500;
|
|
45
45
|
font-feature-settings: 'ss01';
|
|
46
46
|
font-family: var(--font-family-styrene);
|
|
47
|
-
} .typography__styrene-
|
|
47
|
+
} .typography__styrene-xsmall_7hlrm {
|
|
48
48
|
font-size: 16px;
|
|
49
49
|
line-height: 20px;
|
|
50
50
|
font-weight: 500;
|
|
51
51
|
font-feature-settings: 'ss01';
|
|
52
52
|
font-family: var(--font-family-styrene);
|
|
53
|
-
} .typography__system-
|
|
53
|
+
} .typography__system-xlarge_7hlrm {
|
|
54
54
|
font-size: 30px;
|
|
55
55
|
line-height: 36px;
|
|
56
56
|
font-weight: 700;
|
|
57
|
-
} .typography__system-
|
|
57
|
+
} .typography__system-large_7hlrm {
|
|
58
58
|
font-size: 22px;
|
|
59
59
|
line-height: 26px;
|
|
60
60
|
font-weight: 700;
|
|
61
|
-
} .typography__system-
|
|
61
|
+
} .typography__system-medium_7hlrm {
|
|
62
62
|
font-size: 18px;
|
|
63
63
|
line-height: 22px;
|
|
64
64
|
font-weight: 700;
|
|
65
|
-
} .typography__system-
|
|
65
|
+
} .typography__system-small_7hlrm {
|
|
66
66
|
font-size: 18px;
|
|
67
67
|
line-height: 22px;
|
|
68
68
|
font-weight: 700;
|
|
69
|
-
} .typography__system-
|
|
69
|
+
} .typography__system-xsmall_7hlrm {
|
|
70
70
|
font-size: 18px;
|
|
71
71
|
line-height: 22px;
|
|
72
72
|
font-weight: 700;
|
|
73
|
-
} .typography__margins-
|
|
73
|
+
} .typography__margins-xlarge_7hlrm {
|
|
74
74
|
margin: 0 0 var(--gap-xl);
|
|
75
|
-
} .typography__margins-
|
|
75
|
+
} .typography__margins-large_7hlrm {
|
|
76
76
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
77
|
-
} .typography__margins-
|
|
77
|
+
} .typography__margins-medium_7hlrm {
|
|
78
78
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
79
|
-
} .typography__margins-
|
|
79
|
+
} .typography__margins-small_7hlrm {
|
|
80
80
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
81
|
-
} .typography__margins-
|
|
81
|
+
} .typography__margins-xsmall_7hlrm {
|
|
82
82
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
83
83
|
} @media screen and (min-width: 600px) {
|
|
84
|
-
.typography__system-
|
|
84
|
+
.typography__system-xlarge_7hlrm {
|
|
85
85
|
font-size: 40px;
|
|
86
86
|
line-height: 48px;
|
|
87
87
|
font-weight: 700;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
.typography__system-
|
|
90
|
+
.typography__system-large_7hlrm {
|
|
91
91
|
font-size: 30px;
|
|
92
92
|
line-height: 36px;
|
|
93
93
|
font-weight: 700;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
.typography__system-
|
|
96
|
+
.typography__system-medium_7hlrm {
|
|
97
97
|
font-size: 22px;
|
|
98
98
|
line-height: 26px;
|
|
99
99
|
font-weight: 700;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
.typography__system-
|
|
102
|
+
.typography__system-small_7hlrm {
|
|
103
103
|
font-size: 22px;
|
|
104
104
|
line-height: 26px;
|
|
105
105
|
font-weight: 700;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
.typography__system-
|
|
108
|
+
.typography__system-xsmall_7hlrm {
|
|
109
109
|
font-size: 18px;
|
|
110
110
|
line-height: 22px;
|
|
111
111
|
font-weight: 700;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
.typography__margins-
|
|
114
|
+
.typography__margins-xlarge_7hlrm {
|
|
115
115
|
margin: 0 0 var(--gap-xl);
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
-
.typography__margins-
|
|
118
|
+
.typography__margins-large_7hlrm {
|
|
119
119
|
margin: var(--gap-4xl) 0 var(--gap-xl);
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
.typography__margins-
|
|
122
|
+
.typography__margins-medium_7hlrm {
|
|
123
123
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
.typography__margins-
|
|
126
|
+
.typography__margins-small_7hlrm {
|
|
127
127
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
.typography__margins-
|
|
130
|
+
.typography__margins-xsmall_7hlrm {
|
|
131
131
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
132
132
|
}
|
|
133
133
|
} @media screen and (min-width: 1024px) {
|
|
134
|
-
.typography__styrene-
|
|
134
|
+
.typography__styrene-xlarge_7hlrm {
|
|
135
135
|
font-size: 48px;
|
|
136
136
|
line-height: 64px;
|
|
137
137
|
font-weight: 500;
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
font-family: var(--font-family-styrene);
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
-
.typography__styrene-
|
|
142
|
+
.typography__styrene-large_7hlrm {
|
|
143
143
|
font-size: 40px;
|
|
144
144
|
line-height: 48px;
|
|
145
145
|
font-weight: 500;
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
font-family: var(--font-family-styrene);
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
-
.typography__styrene-
|
|
150
|
+
.typography__styrene-medium_7hlrm {
|
|
151
151
|
font-size: 32px;
|
|
152
152
|
line-height: 40px;
|
|
153
153
|
font-weight: 500;
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
font-family: var(--font-family-styrene);
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
.typography__styrene-
|
|
158
|
+
.typography__styrene-small_7hlrm {
|
|
159
159
|
font-size: 24px;
|
|
160
160
|
line-height: 32px;
|
|
161
161
|
font-weight: 500;
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
font-family: var(--font-family-styrene);
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
.typography__styrene-
|
|
166
|
+
.typography__styrene-xsmall_7hlrm {
|
|
167
167
|
font-size: 20px;
|
|
168
168
|
line-height: 24px;
|
|
169
169
|
font-weight: 500;
|
|
@@ -171,53 +171,53 @@
|
|
|
171
171
|
font-family: var(--font-family-styrene);
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
-
.typography__system-
|
|
174
|
+
.typography__system-xlarge_7hlrm {
|
|
175
175
|
font-size: 48px;
|
|
176
176
|
line-height: 52px;
|
|
177
177
|
font-weight: 700;
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
-
.typography__system-
|
|
180
|
+
.typography__system-large_7hlrm {
|
|
181
181
|
font-size: 40px;
|
|
182
182
|
line-height: 48px;
|
|
183
183
|
font-weight: 700;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
-
.typography__system-
|
|
186
|
+
.typography__system-medium_7hlrm {
|
|
187
187
|
font-size: 30px;
|
|
188
188
|
line-height: 36px;
|
|
189
189
|
font-weight: 700;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
-
.typography__system-
|
|
192
|
+
.typography__system-small_7hlrm {
|
|
193
193
|
font-size: 22px;
|
|
194
194
|
line-height: 26px;
|
|
195
195
|
font-weight: 700;
|
|
196
196
|
}
|
|
197
197
|
|
|
198
|
-
.typography__system-
|
|
198
|
+
.typography__system-xsmall_7hlrm {
|
|
199
199
|
font-size: 18px;
|
|
200
200
|
line-height: 22px;
|
|
201
201
|
font-weight: 700;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
-
.typography__margins-
|
|
204
|
+
.typography__margins-xlarge_7hlrm {
|
|
205
205
|
margin: 0 0 var(--gap-xl);
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
-
.typography__margins-
|
|
208
|
+
.typography__margins-large_7hlrm {
|
|
209
209
|
margin: var(--gap-4xl) 0 var(--gap-xl);
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
-
.typography__margins-
|
|
212
|
+
.typography__margins-medium_7hlrm {
|
|
213
213
|
margin: var(--gap-4xl) 0 var(--gap-xl);
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
.typography__margins-
|
|
216
|
+
.typography__margins-small_7hlrm {
|
|
217
217
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
.typography__margins-
|
|
220
|
+
.typography__margins-xsmall_7hlrm {
|
|
221
221
|
margin: var(--gap-3xl) 0 var(--gap-m);
|
|
222
222
|
}
|
|
223
223
|
}
|
package/index.js
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var component = require('./component.js');
|
|
4
6
|
var presets = require('./presets.js');
|
|
5
7
|
require('./text/component.js');
|
|
6
8
|
require('tslib');
|
|
7
9
|
require('react');
|
|
8
10
|
require('classnames');
|
|
9
|
-
require('./colors.module-
|
|
11
|
+
require('./colors.module-5ace86c0.js');
|
|
10
12
|
require('./title/index.js');
|
|
11
13
|
require('./title/component.js');
|
|
12
|
-
require('./common.module-
|
|
14
|
+
require('./common.module-141e6c42.js');
|
|
13
15
|
require('./title-mobile/component.js');
|
|
14
16
|
require('./title-responsive/component.js');
|
|
15
17
|
|