@@ -18,7 +18,8 @@ export const typography_title: Story = {
18
18
const VIEW_TYPES = [ 'xlarge' , 'large' , 'medium' , 'small' , 'xsmall' ] ;
19
19
const color = select ( 'color' , colors , '' ) ;
20
20
const weight = select ( 'weight' , [ 'regular' , 'medium' , 'bold' , 'semibold' , '-' ] , '-' ) ;
21
- const font = select ( 'font' , [ 'styrene' , 'system' ] , 'styrene' ) ;
21
+ const font = select ( 'font' , [ 'styrene' , 'system' , 'alfasans' ] , 'styrene' ) ;
22
+ const systemCompat = boolean ( 'systemCompat' , false ) ;
22
23
23
24
return (
24
25
< >
@@ -28,7 +29,7 @@ export const typography_title: Story = {
28
29
view = { view }
29
30
color = { color }
30
31
weight = { weight }
31
- font = { font }
32
+ font = { font === 'alfasans' ? { font , systemCompat } : font }
32
33
key = { view }
33
34
>
34
35
заголовок view='{ view } '
@@ -45,7 +46,8 @@ export const typography_title_responsive: Story = {
45
46
const VIEW_TYPES = [ 'xlarge' , 'large' , 'medium' , 'small' , 'xsmall' ] ;
46
47
const color = select ( 'color' , colors , '' ) ;
47
48
const weight = select ( 'weight' , [ 'regular' , 'medium' , 'bold' , 'semibold' , '-' ] , '-' ) ;
48
- const font = select ( 'font' , [ 'styrene' , 'system' ] , 'styrene' ) ;
49
+ const font = select ( 'font' , [ 'styrene' , 'system' , 'alfasans' ] , 'styrene' ) ;
50
+ const systemCompat = boolean ( 'systemCompat' , false ) ;
49
51
return (
50
52
< >
51
53
{ VIEW_TYPES . map ( ( view ) => (
@@ -54,7 +56,7 @@ export const typography_title_responsive: Story = {
54
56
view = { view }
55
57
color = { color }
56
58
weight = { weight }
57
- font = { font }
59
+ font = { font === 'alfasans' ? { font , systemCompat } : font }
58
60
key = { view }
59
61
>
60
62
заголовок view='{ view } '
@@ -71,15 +73,16 @@ export const typography_title_mobile: Story = {
71
73
const VIEW_TYPES = [ 'xlarge' , 'large' , 'medium' , 'small' , 'xsmall' ] ;
72
74
const color = select ( 'color' , colors , '' ) ;
73
75
const weight = select ( 'weight' , [ 'regular' , 'medium' , 'bold' , 'semibold' , '-' ] , '-' ) ;
74
- const font = select ( 'font' , [ 'styrene' , 'system' ] , 'styrene' ) ;
76
+ const font = select ( 'font' , [ 'styrene' , 'system' , 'alfasans' ] , 'styrene' ) ;
77
+ const systemCompat = boolean ( 'systemCompat' , false ) ;
75
78
return (
76
79
< >
77
80
{ VIEW_TYPES . map ( ( view ) => (
78
81
< Typography . TitleMobile
79
82
view = { view }
80
83
color = { color }
81
84
weight = { weight }
82
- font = { font }
85
+ font = { font === 'alfasans' ? { font , systemCompat } : font }
83
86
key = { view }
84
87
>
85
88
заголовок view='{ view } '
@@ -100,11 +103,14 @@ export const typography_text: Story = {
100
103
'secondary-large' ,
101
104
'secondary-medium' ,
102
105
'secondary-small' ,
106
+ 'component' ,
103
107
'component-primary' ,
104
108
'component-secondary' ,
105
109
'caps' ,
110
+ 'tagline' ,
106
111
] ;
107
112
const color = select ( 'color' , colors , '' ) ;
113
+ const font = select ( 'font' , [ 'default' , 'alfasans' ] , 'default' ) ;
108
114
const tag = select ( 'tag' , [ 'div' , 'p' , 'span' ] , 'p' ) ;
109
115
const weight = select ( 'weight' , [ 'regular' , 'medium' , 'bold' , undefined ] , 'regular' ) ;
110
116
const monospace = boolean ( 'monospaceNumbers' , false ) ;
@@ -120,6 +126,7 @@ export const typography_text: Story = {
120
126
monospaceNumbers = { monospace }
121
127
key = { view }
122
128
defaultMargins = { defaultMargins }
129
+ font = { font === 'alfasans' ? 'alfasans' : undefined }
123
130
>
124
131
{ view } . Космологи́ческая сингуля́рность — состояния Вселенной в определённый
125
132
момент времени в прошлом, когда плотность энергии (материи) и кривизна
0 commit comments