@gravity-ui/page-constructor 3.0.0-alpha.4 → 3.0.0-alpha.6

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.
Files changed (130) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/build/cjs/components/BackgroundImage/BackgroundImage.js +2 -2
  3. package/build/cjs/components/BlockBase/BlockBase.d.ts +3 -2
  4. package/build/cjs/components/BlockBase/BlockBase.js +4 -2
  5. package/build/cjs/components/Button/Button.css +3 -0
  6. package/build/cjs/components/Button/Button.js +5 -4
  7. package/build/cjs/components/Image/Image.d.ts +1 -0
  8. package/build/cjs/components/Image/Image.js +2 -2
  9. package/build/cjs/containers/Loadable/Loadable.d.ts +2 -2
  10. package/build/cjs/containers/PageConstructor/PageConstructor.js +5 -3
  11. package/build/cjs/containers/PageConstructor/components/ConstructorBlocks/ConstructorBlocks.js +3 -2
  12. package/build/cjs/containers/PageConstructor/components/ConstructorItem/ConstructorItem.d.ts +1 -1
  13. package/build/cjs/containers/PageConstructor/components/ConstructorItem/ConstructorItem.js +5 -5
  14. package/build/cjs/context/innerContext/InnerContext.d.ts +2 -1
  15. package/build/cjs/customization/BlockDecoration.d.ts +3 -0
  16. package/build/cjs/customization/BlockDecoration.js +22 -0
  17. package/build/cjs/editor/Components/AddBlock/AddBlock.css +82 -0
  18. package/build/cjs/editor/Components/AddBlock/AddBlock.d.ts +7 -0
  19. package/build/cjs/editor/Components/AddBlock/AddBlock.js +43 -0
  20. package/build/cjs/editor/Components/EditBlock/EditBlock.css +47 -0
  21. package/build/cjs/editor/Components/EditBlock/EditBlock.d.ts +4 -0
  22. package/build/cjs/editor/Components/EditBlock/EditBlock.js +32 -0
  23. package/build/cjs/editor/Containers/Editor.d.ts +2 -0
  24. package/build/cjs/editor/Containers/Editor.js +24 -0
  25. package/build/cjs/editor/data/index.d.ts +13 -0
  26. package/build/cjs/editor/data/index.js +27 -0
  27. package/build/cjs/editor/data/previews/default-preview.d.ts +3 -0
  28. package/build/cjs/editor/data/previews/default-preview.js +18 -0
  29. package/build/cjs/editor/data/previews/header-block.d.ts +3 -0
  30. package/build/cjs/editor/data/previews/header-block.js +19 -0
  31. package/build/cjs/editor/index.d.ts +2 -0
  32. package/build/cjs/editor/index.js +7 -0
  33. package/build/cjs/editor/store/index.d.ts +15 -0
  34. package/build/cjs/editor/store/index.js +32 -0
  35. package/build/cjs/editor/store/reducer.d.ts +41 -0
  36. package/build/cjs/editor/store/reducer.js +59 -0
  37. package/build/cjs/editor/store/utils.d.ts +12 -0
  38. package/build/cjs/editor/store/utils.js +34 -0
  39. package/build/cjs/editor/styles/mixins.css +0 -0
  40. package/build/cjs/editor/styles/variables.css +0 -0
  41. package/build/cjs/editor/types/index.d.ts +17 -0
  42. package/build/cjs/editor/types/index.js +2 -0
  43. package/build/cjs/editor/utils/index.d.ts +11 -0
  44. package/build/cjs/editor/utils/index.js +12 -0
  45. package/build/cjs/hooks/useMetrika.js +0 -7
  46. package/build/cjs/models/constructor-items/blocks.d.ts +1 -11
  47. package/build/cjs/models/constructor-items/blocks.js +0 -2
  48. package/build/cjs/models/constructor-items/common.d.ts +3 -3
  49. package/build/cjs/models/constructor.d.ts +4 -1
  50. package/build/cjs/models/customization.d.ts +9 -0
  51. package/build/cjs/models/customization.js +2 -0
  52. package/build/cjs/models/index.d.ts +1 -0
  53. package/build/cjs/models/index.js +1 -0
  54. package/build/cjs/schema/index.js +0 -1
  55. package/build/cjs/sub-blocks/Content/Content.js +2 -2
  56. package/build/cjs/text-transform/transformers.js +2 -4
  57. package/build/cjs/utils/blocks.d.ts +4 -1
  58. package/build/cjs/utils/blocks.js +11 -1
  59. package/build/esm/components/BackgroundImage/BackgroundImage.js +2 -2
  60. package/build/esm/components/BlockBase/BlockBase.d.ts +3 -2
  61. package/build/esm/components/BlockBase/BlockBase.js +4 -2
  62. package/build/esm/components/Button/Button.css +3 -0
  63. package/build/esm/components/Button/Button.js +5 -4
  64. package/build/esm/components/Image/Image.d.ts +1 -0
  65. package/build/esm/components/Image/Image.js +2 -2
  66. package/build/esm/containers/Loadable/Loadable.d.ts +2 -2
  67. package/build/esm/containers/PageConstructor/PageConstructor.js +6 -4
  68. package/build/esm/containers/PageConstructor/components/ConstructorBlocks/ConstructorBlocks.js +3 -2
  69. package/build/esm/containers/PageConstructor/components/ConstructorItem/ConstructorItem.d.ts +1 -1
  70. package/build/esm/containers/PageConstructor/components/ConstructorItem/ConstructorItem.js +5 -5
  71. package/build/esm/context/innerContext/InnerContext.d.ts +2 -1
  72. package/build/esm/customization/BlockDecoration.d.ts +3 -0
  73. package/build/esm/customization/BlockDecoration.js +17 -0
  74. package/build/esm/editor/Components/AddBlock/AddBlock.css +82 -0
  75. package/build/esm/editor/Components/AddBlock/AddBlock.d.ts +8 -0
  76. package/build/esm/editor/Components/AddBlock/AddBlock.js +41 -0
  77. package/build/esm/editor/Components/EditBlock/EditBlock.css +47 -0
  78. package/build/esm/editor/Components/EditBlock/EditBlock.d.ts +5 -0
  79. package/build/esm/editor/Components/EditBlock/EditBlock.js +30 -0
  80. package/build/esm/editor/Containers/Editor.d.ts +2 -0
  81. package/build/esm/editor/Containers/Editor.js +20 -0
  82. package/build/esm/editor/data/index.d.ts +13 -0
  83. package/build/esm/editor/data/index.js +24 -0
  84. package/build/esm/editor/data/previews/default-preview.d.ts +3 -0
  85. package/build/esm/editor/data/previews/default-preview.js +15 -0
  86. package/build/esm/editor/data/previews/header-block.d.ts +3 -0
  87. package/build/esm/editor/data/previews/header-block.js +16 -0
  88. package/build/esm/editor/index.d.ts +2 -0
  89. package/build/esm/editor/index.js +2 -0
  90. package/build/esm/editor/store/index.d.ts +15 -0
  91. package/build/esm/editor/store/index.js +28 -0
  92. package/build/esm/editor/store/reducer.d.ts +41 -0
  93. package/build/esm/editor/store/reducer.js +55 -0
  94. package/build/esm/editor/store/utils.d.ts +12 -0
  95. package/build/esm/editor/store/utils.js +26 -0
  96. package/build/esm/editor/styles/mixins.css +0 -0
  97. package/build/esm/editor/styles/variables.css +0 -0
  98. package/build/esm/editor/types/index.d.ts +17 -0
  99. package/build/esm/editor/types/index.js +1 -0
  100. package/build/esm/editor/utils/index.d.ts +11 -0
  101. package/build/esm/editor/utils/index.js +6 -0
  102. package/build/esm/hooks/useMetrika.js +0 -7
  103. package/build/esm/models/constructor-items/blocks.d.ts +1 -11
  104. package/build/esm/models/constructor-items/blocks.js +0 -2
  105. package/build/esm/models/constructor-items/common.d.ts +3 -3
  106. package/build/esm/models/constructor.d.ts +4 -1
  107. package/build/esm/models/customization.d.ts +9 -0
  108. package/build/esm/models/customization.js +1 -0
  109. package/build/esm/models/index.d.ts +1 -0
  110. package/build/esm/models/index.js +1 -0
  111. package/build/esm/schema/index.js +0 -1
  112. package/build/esm/sub-blocks/Content/Content.js +2 -3
  113. package/build/esm/text-transform/transformers.js +2 -4
  114. package/build/esm/utils/blocks.d.ts +4 -1
  115. package/build/esm/utils/blocks.js +7 -0
  116. package/package.json +4 -3
  117. package/server/models/constructor-items/blocks.d.ts +1 -11
  118. package/server/models/constructor-items/blocks.js +0 -2
  119. package/server/models/constructor-items/common.d.ts +3 -3
  120. package/server/models/constructor.d.ts +4 -1
  121. package/server/models/customization.d.ts +9 -0
  122. package/server/models/customization.js +2 -0
  123. package/server/models/index.d.ts +1 -0
  124. package/server/models/index.js +1 -0
  125. package/server/text-transform/transformers.js +2 -4
  126. package/server/utils/blocks.d.ts +4 -1
  127. package/server/utils/blocks.js +11 -1
  128. package/styles/styles.css +0 -196
  129. package/styles/styles.scss +0 -1
  130. package/styles/fonts.scss +0 -223
package/styles/styles.css CHANGED
@@ -1,202 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  @import '~@gravity-ui/uikit/styles/styles.css';
3
3
  @import '~@doc-tools/transform/dist/css/yfm.css';
4
- @font-face {
5
- font-family: "YS Display";
6
- src: url("https://yastatic.net/s3/home/fonts/ys/1/display-thin.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/display-thin.woff") format("woff");
7
- font-weight: 100;
8
- font-style: normal;
9
- font-display: swap;
10
- }
11
- @font-face {
12
- font-family: "YS Display";
13
- src: url("https://yastatic.net/s3/home/fonts/ys/1/display-light.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/display-light.woff") format("woff");
14
- font-weight: 300;
15
- font-style: normal;
16
- font-display: swap;
17
- }
18
- @font-face {
19
- font-family: "YS Display";
20
- src: url("https://yastatic.net/s3/home/fonts/ys/1/display-regular.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/display-regular.woff") format("woff");
21
- font-weight: 400;
22
- font-style: normal;
23
- font-display: swap;
24
- }
25
- @font-face {
26
- font-family: "YS Display";
27
- src: url("https://yastatic.net/s3/home/fonts/ys/1/display-medium.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/display-medium.woff") format("woff");
28
- font-weight: 500;
29
- font-style: normal;
30
- font-display: swap;
31
- }
32
- @font-face {
33
- font-family: "YS Display";
34
- src: url("https://yastatic.net/s3/home/fonts/ys/1/display-bold.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/display-bold.woff") format("woff");
35
- font-weight: 700;
36
- font-style: normal;
37
- font-display: swap;
38
- }
39
- @font-face {
40
- font-family: "YS Display";
41
- src: url("https://yastatic.net/s3/home/fonts/ys/1/display-heavy.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/display-heavy.woff") format("woff");
42
- font-weight: 900;
43
- font-style: normal;
44
- font-display: swap;
45
- }
46
- @font-face {
47
- font-family: "YS Text";
48
- src: url("https://yastatic.net/s3/home/fonts/ys/1/text-light.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/text-light.woff") format("woff");
49
- font-weight: 300;
50
- font-style: normal;
51
- font-display: swap;
52
- }
53
- @font-face {
54
- font-family: "YS Text";
55
- src: url("https://yastatic.net/s3/home/fonts/ys/1/text-light-italic.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/text-light-italic.woff") format("woff");
56
- font-weight: 300;
57
- font-style: italic;
58
- font-display: swap;
59
- }
60
- @font-face {
61
- font-family: "YS Text";
62
- src: url("https://yastatic.net/s3/home/fonts/ys/1/text-regular.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/text-regular.woff") format("woff");
63
- font-weight: 400;
64
- font-style: normal;
65
- font-display: swap;
66
- }
67
- @font-face {
68
- font-family: "YS Text";
69
- src: url("https://yastatic.net/s3/home/fonts/ys/1/text-regular-italic.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/text-regular-italic.woff") format("woff");
70
- font-weight: 400;
71
- font-style: italic;
72
- font-display: swap;
73
- }
74
- @font-face {
75
- font-family: "YS Text";
76
- src: url("https://yastatic.net/s3/home/fonts/ys/1/text-medium.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/text-medium.woff") format("woff");
77
- font-weight: 500;
78
- font-style: normal;
79
- font-display: swap;
80
- }
81
- @font-face {
82
- font-family: "YS Text";
83
- src: url("https://yastatic.net/s3/home/fonts/ys/1/text-medium-italic.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/text-medium-italic.woff") format("woff");
84
- font-weight: 500;
85
- font-style: italic;
86
- font-display: swap;
87
- }
88
- @font-face {
89
- font-family: "YS Text";
90
- src: url("https://yastatic.net/s3/home/fonts/ys/1/text-bold.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/text-bold.woff") format("woff");
91
- font-weight: 700;
92
- font-style: normal;
93
- font-display: swap;
94
- }
95
- @font-face {
96
- font-family: "YS Text";
97
- src: url("https://yastatic.net/s3/home/fonts/ys/1/text-bold-italic.woff2") format("woff2"), url("https://yastatic.net/s3/home/fonts/ys/1/text-bold-italic.woff") format("woff");
98
- font-weight: 700;
99
- font-style: italic;
100
- font-display: swap;
101
- }
102
- .YSDisplay-Thin {
103
- font-family: "YS Display", sans-serif;
104
- font-weight: 100;
105
- font-style: normal;
106
- font-stretch: normal;
107
- }
108
-
109
- .YSDisplay-Light {
110
- font-family: "YS Display", sans-serif;
111
- font-weight: 300;
112
- font-style: normal;
113
- font-stretch: normal;
114
- }
115
-
116
- .YSDisplay-Regular {
117
- font-family: "YS Display", sans-serif;
118
- font-weight: 400;
119
- font-style: normal;
120
- font-stretch: normal;
121
- }
122
-
123
- .YSDisplay-Medium {
124
- font-family: "YS Display", sans-serif;
125
- font-weight: 500;
126
- font-style: normal;
127
- font-stretch: normal;
128
- }
129
-
130
- .YSDisplay-Bold {
131
- font-family: "YS Display", sans-serif;
132
- font-weight: 700;
133
- font-style: normal;
134
- font-stretch: normal;
135
- }
136
-
137
- .YSDisplay-Heavy {
138
- font-family: "YS Display", sans-serif;
139
- font-weight: 900;
140
- font-style: normal;
141
- font-stretch: normal;
142
- }
143
-
144
- .YSText-Light {
145
- font-family: "YS Text", sans-serif;
146
- font-weight: 300;
147
- font-style: normal;
148
- font-stretch: normal;
149
- }
150
-
151
- .YSText-LightItalic {
152
- font-family: "YS Text", sans-serif;
153
- font-weight: 300;
154
- font-style: italic;
155
- font-stretch: normal;
156
- }
157
-
158
- .YSText-Regular {
159
- font-family: "YS Text", sans-serif;
160
- font-weight: 400;
161
- font-style: normal;
162
- font-stretch: normal;
163
- }
164
-
165
- .YSText-RegularItalic {
166
- font-family: "YS Text", sans-serif;
167
- font-weight: 400;
168
- font-style: italic;
169
- font-stretch: normal;
170
- }
171
-
172
- .YSText-Medium {
173
- font-family: "YS Text", sans-serif;
174
- font-weight: 500;
175
- font-style: normal;
176
- font-stretch: normal;
177
- }
178
-
179
- .YSText-MediumItalic {
180
- font-family: "YS Text", sans-serif;
181
- font-weight: 500;
182
- font-style: italic;
183
- font-stretch: normal;
184
- }
185
-
186
- .YSText-Bold {
187
- font-family: "YS Text", sans-serif;
188
- font-weight: 700;
189
- font-style: normal;
190
- font-stretch: normal;
191
- }
192
-
193
- .YSText-BoldItalic {
194
- font-family: "YS Text", sans-serif;
195
- font-weight: 700;
196
- font-style: italic;
197
- font-stretch: normal;
198
- }
199
-
200
4
  /* use this for style redefinitions to awoid problems with
201
5
  unpredictable css rules order in build */
202
6
  /* use this for style redefinitions to awoid problems with
@@ -1,5 +1,4 @@
1
1
  @import '~@gravity-ui/uikit/styles/styles.css';
2
- @import './fonts.scss';
3
2
  @import './mixins.scss';
4
3
  @import './variables.scss';
5
4
  @import './yfm.scss';
package/styles/fonts.scss DELETED
@@ -1,223 +0,0 @@
1
- @font-face {
2
- font-family: 'YS Display';
3
- src: url('https://yastatic.net/s3/home/fonts/ys/1/display-thin.woff2') format('woff2'),
4
- url('https://yastatic.net/s3/home/fonts/ys/1/display-thin.woff') format('woff');
5
- font-weight: 100;
6
- font-style: normal;
7
- font-display: swap;
8
- }
9
-
10
- @font-face {
11
- font-family: 'YS Display';
12
- src: url('https://yastatic.net/s3/home/fonts/ys/1/display-light.woff2') format('woff2'),
13
- url('https://yastatic.net/s3/home/fonts/ys/1/display-light.woff') format('woff');
14
- font-weight: 300;
15
- font-style: normal;
16
- font-display: swap;
17
- }
18
-
19
- @font-face {
20
- font-family: 'YS Display';
21
- src: url('https://yastatic.net/s3/home/fonts/ys/1/display-regular.woff2') format('woff2'),
22
- url('https://yastatic.net/s3/home/fonts/ys/1/display-regular.woff') format('woff');
23
- font-weight: 400;
24
- font-style: normal;
25
- font-display: swap;
26
- }
27
-
28
- @font-face {
29
- font-family: 'YS Display';
30
- src: url('https://yastatic.net/s3/home/fonts/ys/1/display-medium.woff2') format('woff2'),
31
- url('https://yastatic.net/s3/home/fonts/ys/1/display-medium.woff') format('woff');
32
- font-weight: 500;
33
- font-style: normal;
34
- font-display: swap;
35
- }
36
-
37
- @font-face {
38
- font-family: 'YS Display';
39
- src: url('https://yastatic.net/s3/home/fonts/ys/1/display-bold.woff2') format('woff2'),
40
- url('https://yastatic.net/s3/home/fonts/ys/1/display-bold.woff') format('woff');
41
- font-weight: 700;
42
- font-style: normal;
43
- font-display: swap;
44
- }
45
-
46
- @font-face {
47
- font-family: 'YS Display';
48
- src: url('https://yastatic.net/s3/home/fonts/ys/1/display-heavy.woff2') format('woff2'),
49
- url('https://yastatic.net/s3/home/fonts/ys/1/display-heavy.woff') format('woff');
50
- font-weight: 900;
51
- font-style: normal;
52
- font-display: swap;
53
- }
54
-
55
- @font-face {
56
- font-family: 'YS Text';
57
- src: url('https://yastatic.net/s3/home/fonts/ys/1/text-light.woff2') format('woff2'),
58
- url('https://yastatic.net/s3/home/fonts/ys/1/text-light.woff') format('woff');
59
- font-weight: 300;
60
- font-style: normal;
61
- font-display: swap;
62
- }
63
-
64
- @font-face {
65
- font-family: 'YS Text';
66
- src: url('https://yastatic.net/s3/home/fonts/ys/1/text-light-italic.woff2') format('woff2'),
67
- url('https://yastatic.net/s3/home/fonts/ys/1/text-light-italic.woff') format('woff');
68
- font-weight: 300;
69
- font-style: italic;
70
- font-display: swap;
71
- }
72
-
73
- @font-face {
74
- font-family: 'YS Text';
75
- src: url('https://yastatic.net/s3/home/fonts/ys/1/text-regular.woff2') format('woff2'),
76
- url('https://yastatic.net/s3/home/fonts/ys/1/text-regular.woff') format('woff');
77
- font-weight: 400;
78
- font-style: normal;
79
- font-display: swap;
80
- }
81
-
82
- @font-face {
83
- font-family: 'YS Text';
84
- src: url('https://yastatic.net/s3/home/fonts/ys/1/text-regular-italic.woff2') format('woff2'),
85
- url('https://yastatic.net/s3/home/fonts/ys/1/text-regular-italic.woff') format('woff');
86
- font-weight: 400;
87
- font-style: italic;
88
- font-display: swap;
89
- }
90
-
91
- @font-face {
92
- font-family: 'YS Text';
93
- src: url('https://yastatic.net/s3/home/fonts/ys/1/text-medium.woff2') format('woff2'),
94
- url('https://yastatic.net/s3/home/fonts/ys/1/text-medium.woff') format('woff');
95
- font-weight: 500;
96
- font-style: normal;
97
- font-display: swap;
98
- }
99
-
100
- @font-face {
101
- font-family: 'YS Text';
102
- src: url('https://yastatic.net/s3/home/fonts/ys/1/text-medium-italic.woff2') format('woff2'),
103
- url('https://yastatic.net/s3/home/fonts/ys/1/text-medium-italic.woff') format('woff');
104
- font-weight: 500;
105
- font-style: italic;
106
- font-display: swap;
107
- }
108
-
109
- @font-face {
110
- font-family: 'YS Text';
111
- src: url('https://yastatic.net/s3/home/fonts/ys/1/text-bold.woff2') format('woff2'),
112
- url('https://yastatic.net/s3/home/fonts/ys/1/text-bold.woff') format('woff');
113
- font-weight: 700;
114
- font-style: normal;
115
- font-display: swap;
116
- }
117
-
118
- @font-face {
119
- font-family: 'YS Text';
120
- src: url('https://yastatic.net/s3/home/fonts/ys/1/text-bold-italic.woff2') format('woff2'),
121
- url('https://yastatic.net/s3/home/fonts/ys/1/text-bold-italic.woff') format('woff');
122
- font-weight: 700;
123
- font-style: italic;
124
- font-display: swap;
125
- }
126
-
127
- .YSDisplay-Thin {
128
- font-family: 'YS Display', sans-serif;
129
- font-weight: 100;
130
- font-style: normal;
131
- font-stretch: normal;
132
- }
133
-
134
- .YSDisplay-Light {
135
- font-family: 'YS Display', sans-serif;
136
- font-weight: 300;
137
- font-style: normal;
138
- font-stretch: normal;
139
- }
140
-
141
- .YSDisplay-Regular {
142
- font-family: 'YS Display', sans-serif;
143
- font-weight: 400;
144
- font-style: normal;
145
- font-stretch: normal;
146
- }
147
-
148
- .YSDisplay-Medium {
149
- font-family: 'YS Display', sans-serif;
150
- font-weight: 500;
151
- font-style: normal;
152
- font-stretch: normal;
153
- }
154
-
155
- .YSDisplay-Bold {
156
- font-family: 'YS Display', sans-serif;
157
- font-weight: 700;
158
- font-style: normal;
159
- font-stretch: normal;
160
- }
161
-
162
- .YSDisplay-Heavy {
163
- font-family: 'YS Display', sans-serif;
164
- font-weight: 900;
165
- font-style: normal;
166
- font-stretch: normal;
167
- }
168
-
169
- .YSText-Light {
170
- font-family: 'YS Text', sans-serif;
171
- font-weight: 300;
172
- font-style: normal;
173
- font-stretch: normal;
174
- }
175
-
176
- .YSText-LightItalic {
177
- font-family: 'YS Text', sans-serif;
178
- font-weight: 300;
179
- font-style: italic;
180
- font-stretch: normal;
181
- }
182
-
183
- .YSText-Regular {
184
- font-family: 'YS Text', sans-serif;
185
- font-weight: 400;
186
- font-style: normal;
187
- font-stretch: normal;
188
- }
189
-
190
- .YSText-RegularItalic {
191
- font-family: 'YS Text', sans-serif;
192
- font-weight: 400;
193
- font-style: italic;
194
- font-stretch: normal;
195
- }
196
-
197
- .YSText-Medium {
198
- font-family: 'YS Text', sans-serif;
199
- font-weight: 500;
200
- font-style: normal;
201
- font-stretch: normal;
202
- }
203
-
204
- .YSText-MediumItalic {
205
- font-family: 'YS Text', sans-serif;
206
- font-weight: 500;
207
- font-style: italic;
208
- font-stretch: normal;
209
- }
210
-
211
- .YSText-Bold {
212
- font-family: 'YS Text', sans-serif;
213
- font-weight: 700;
214
- font-style: normal;
215
- font-stretch: normal;
216
- }
217
-
218
- .YSText-BoldItalic {
219
- font-family: 'YS Text', sans-serif;
220
- font-weight: 700;
221
- font-style: italic;
222
- font-stretch: normal;
223
- }