1mpacto-react-ui 0.2.0-beta.2 → 0.2.0-beta.21

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 (162) hide show
  1. package/dist/assets/_colors.scss +327 -1
  2. package/dist/assets/_mixins.scss +44 -0
  3. package/dist/assets/_screen.scss +6 -0
  4. package/dist/assets/_typography.scss +654 -0
  5. package/dist/assets/colors.css +41 -0
  6. package/dist/assets/core.css +1 -1
  7. package/dist/assets/fontfamily.css +1 -1
  8. package/dist/assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf +0 -0
  9. package/dist/assets/fonts/PlusJakartaSans-VariableFont_wght.ttf +0 -0
  10. package/dist/assets/icons/arrow-narrow-down.svg +3 -3
  11. package/dist/assets/screen.css +8 -0
  12. package/dist/assets/style.css +1 -1
  13. package/dist/assets/typography.css +132 -0
  14. package/dist/index.cjs +150 -116
  15. package/dist/index.cjs.map +1 -1
  16. package/dist/index.d.ts +4 -2
  17. package/dist/index.mjs +28958 -16226
  18. package/dist/index.mjs.map +1 -1
  19. package/dist/package.json.d.ts +132 -126
  20. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +1 -1
  21. package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +1 -1
  22. package/dist/src/components/Collapse/CollapseV2.d.ts +3 -0
  23. package/dist/src/components/Collapse/CollapseV2.stories.d.ts +18 -0
  24. package/dist/src/components/Colors/Colors.stories.d.ts +13 -0
  25. package/dist/src/components/Input/InputInnerLabel.d.ts +4 -0
  26. package/dist/src/components/Input/InputInnerLabel.stories.d.ts +31 -0
  27. package/dist/src/components/Pagination/Pagination.d.ts +1 -1
  28. package/dist/src/components/Pagination/Pagination.stories.d.ts +1 -1
  29. package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +189 -7
  30. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.stories.d.ts +355 -4
  31. package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +4 -1
  32. package/dist/src/components/Sidebar/Sidebar.stories.d.ts +171 -2
  33. package/dist/src/components/Table/Table.d.ts +1 -1
  34. package/dist/src/components/Table/Table.stories.d.ts +248 -2
  35. package/dist/src/components/Table/TableSubMobile.d.ts +3 -0
  36. package/dist/src/components/Tabs/Tabs.d.ts +1 -1
  37. package/dist/src/components/Tabs/Tabs.stories.d.ts +1 -1
  38. package/dist/src/components/TextEditor/TextEditor.stories.d.ts +75 -1
  39. package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +4 -0
  40. package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +25 -0
  41. package/dist/src/components/TimeRange/TimeRange.d.ts +3 -0
  42. package/dist/src/components/TimeRange/TimeRange.stories.d.ts +19 -0
  43. package/dist/src/components/Typography/Typography.stories.d.ts +13 -0
  44. package/dist/src/components/Upload/UploadImage.d.ts +1 -1
  45. package/dist/src/components/Upload/UploadImage.stories.d.ts +1 -1
  46. package/dist/src/components/Upload/UploadMultipleFile.d.ts +1 -1
  47. package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +1 -1
  48. package/dist/src/components/index.d.ts +14 -8
  49. package/dist/src/components/screens/Screens.stories.d.ts +13 -0
  50. package/dist/src/config/components/font.d.ts +6 -0
  51. package/dist/src/config/components/typography.d.ts +13 -1
  52. package/dist/src/config/tailwind/index.d.ts +2 -1
  53. package/dist/src/config/tailwind/nativeScreen.d.ts +3 -0
  54. package/dist/src/config/tailwind/typography.d.ts +1 -0
  55. package/dist/src/hooks/index.d.ts +5 -3
  56. package/dist/src/hooks/useCountdown.d.ts +6 -3
  57. package/dist/src/hooks/useOtpInput.d.ts +42 -0
  58. package/dist/src/interfaces/components/Badges/index.d.ts +2 -1
  59. package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +6 -2
  60. package/dist/src/interfaces/components/Button/index.d.ts +2 -2
  61. package/dist/src/interfaces/components/Calendar/index.d.ts +1 -1
  62. package/dist/src/interfaces/components/Chips/index.d.ts +2 -1
  63. package/dist/src/interfaces/components/Collapse/index.d.ts +7 -0
  64. package/dist/src/interfaces/components/Input/index.d.ts +13 -0
  65. package/dist/src/interfaces/components/Pagination/index.d.ts +2 -0
  66. package/dist/src/interfaces/components/Popover/index.d.ts +3 -1
  67. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +3 -2
  68. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +2 -1
  69. package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +1 -1
  70. package/dist/src/interfaces/components/Sidebar/index.d.ts +7 -4
  71. package/dist/src/interfaces/components/Switch/index.d.ts +1 -1
  72. package/dist/src/interfaces/components/Table/index.d.ts +38 -6
  73. package/dist/src/interfaces/components/Tabs/index.d.ts +6 -2
  74. package/dist/src/interfaces/components/Textarea/index.d.ts +13 -0
  75. package/dist/src/interfaces/components/TimeRange/index.d.ts +28 -0
  76. package/dist/src/interfaces/components/TruncateComponent/index.d.ts +1 -3
  77. package/dist/src/interfaces/components/UploadFile/index.d.ts +2 -0
  78. package/dist/src/utils/common.d.ts +7 -4
  79. package/dist/tinymce/CHANGELOG.md +3785 -3785
  80. package/dist/tinymce/js/tinymce/langs/README.md +3 -3
  81. package/dist/tinymce/js/tinymce/license.md +6 -6
  82. package/dist/tinymce/js/tinymce/notices.txt +21 -21
  83. package/dist/tinymce/js/tinymce/plugins/codesample/plugin.min.js +8 -8
  84. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ar.js +92 -92
  85. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +92 -92
  86. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ca.js +92 -92
  87. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/cs.js +92 -92
  88. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/da.js +92 -92
  89. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/de.js +92 -92
  90. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/el.js +92 -92
  91. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/en.js +92 -92
  92. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/es.js +92 -92
  93. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/eu.js +92 -92
  94. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fa.js +92 -92
  95. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fi.js +92 -92
  96. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +92 -92
  97. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/he_IL.js +92 -92
  98. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hi.js +92 -92
  99. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hr.js +92 -92
  100. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +92 -92
  101. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/id.js +92 -92
  102. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/it.js +92 -92
  103. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ja.js +92 -92
  104. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/kk.js +92 -92
  105. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +92 -92
  106. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ms.js +92 -92
  107. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +92 -92
  108. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nl.js +92 -92
  109. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pl.js +92 -92
  110. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +92 -92
  111. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +92 -92
  112. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ro.js +92 -92
  113. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ru.js +92 -92
  114. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sk.js +92 -92
  115. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +92 -92
  116. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +92 -92
  117. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/th_TH.js +92 -92
  118. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/tr.js +92 -92
  119. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/uk.js +92 -92
  120. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/vi.js +92 -92
  121. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +86 -86
  122. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +92 -92
  123. package/dist/tinymce/js/tinymce/skins/content/dark/content.js +9 -9
  124. package/dist/tinymce/js/tinymce/skins/content/dark/content.min.css +10 -10
  125. package/dist/tinymce/js/tinymce/skins/content/default/content.js +9 -9
  126. package/dist/tinymce/js/tinymce/skins/content/default/content.min.css +10 -10
  127. package/dist/tinymce/js/tinymce/skins/content/document/content.js +9 -9
  128. package/dist/tinymce/js/tinymce/skins/content/document/content.min.css +10 -10
  129. package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.js +9 -9
  130. package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.min.css +10 -10
  131. package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.js +9 -9
  132. package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.min.css +10 -10
  133. package/dist/tinymce/js/tinymce/skins/content/writer/content.js +9 -9
  134. package/dist/tinymce/js/tinymce/skins/content/writer/content.min.css +10 -10
  135. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.js +9 -9
  136. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.min.css +10 -10
  137. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.js +9 -9
  138. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.min.css +10 -10
  139. package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.min.css +1 -1
  140. package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -1
  141. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.js +9 -9
  142. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css +10 -10
  143. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.js +9 -9
  144. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css +10 -10
  145. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css +1 -1
  146. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -1
  147. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.js +9 -9
  148. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.min.css +10 -10
  149. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.js +9 -9
  150. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.min.css +10 -10
  151. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.min.css +1 -1
  152. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -1
  153. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.js +9 -9
  154. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +10 -10
  155. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.js +9 -9
  156. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.min.css +10 -10
  157. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -1
  158. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -1
  159. package/dist/tinymce/js/tinymce/tinymce.d.ts +3350 -3350
  160. package/dist/tinymce/js/tinymce/tinymce.min.js +10 -10
  161. package/dist/types-external/table.d.ts +15 -12
  162. package/package.json +132 -126
@@ -3,201 +3,855 @@
3
3
  line-height: 72px;
4
4
  font-weight: 700;
5
5
  }
6
+ @mixin text-payhere-h1() {
7
+ font-size: 60px;
8
+ line-height: 72px;
9
+ font-weight: 700;
10
+ }
6
11
 
7
12
  .text-payhere-h2 {
8
13
  font-size: 48px;
9
14
  line-height: 58px;
10
15
  font-weight: 700;
11
16
  }
17
+ @mixin text-payhere-h2() {
18
+ font-size: 48px;
19
+ line-height: 58px;
20
+ font-weight: 700;
21
+ }
12
22
 
13
23
  .text-payhere-h3 {
14
24
  font-size: 40px;
15
25
  line-height: 48px;
16
26
  font-weight: 700;
17
27
  }
28
+ @mixin text-payhere-h3() {
29
+ font-size: 40px;
30
+ line-height: 48px;
31
+ font-weight: 700;
32
+ }
18
33
 
19
34
  .text-payhere-h4 {
20
35
  font-size: 30px;
21
36
  line-height: 38px;
22
37
  font-weight: 700;
23
38
  }
39
+ @mixin text-payhere-h4() {
40
+ font-size: 30px;
41
+ line-height: 38px;
42
+ font-weight: 700;
43
+ }
24
44
 
25
45
  .text-payhere-h5 {
26
46
  font-size: 28px;
27
47
  line-height: 40px;
28
48
  font-weight: 600;
29
49
  }
50
+ @mixin text-payhere-h5() {
51
+ font-size: 28px;
52
+ line-height: 40px;
53
+ font-weight: 600;
54
+ }
30
55
 
31
56
  .text-payhere-h6 {
32
57
  font-size: 24px;
33
58
  line-height: 30px;
34
59
  font-weight: 600;
35
60
  }
61
+ @mixin text-payhere-h6() {
62
+ font-size: 24px;
63
+ line-height: 30px;
64
+ font-weight: 600;
65
+ }
36
66
 
37
67
  .text-payhere-body-lr {
38
68
  font-size: 18px;
39
69
  line-height: 26px;
40
70
  font-weight: 400;
41
71
  }
72
+ @mixin text-payhere-body-lr() {
73
+ font-size: 18px;
74
+ line-height: 26px;
75
+ font-weight: 400;
76
+ }
42
77
 
43
78
  .text-payhere-body-lm {
44
79
  font-size: 18px;
45
80
  line-height: 26px;
46
81
  font-weight: 500;
47
82
  }
83
+ @mixin text-payhere-body-lm() {
84
+ font-size: 18px;
85
+ line-height: 26px;
86
+ font-weight: 500;
87
+ }
48
88
 
49
89
  .text-payhere-body-ls {
50
90
  font-size: 18px;
51
91
  line-height: 26px;
52
92
  font-weight: 600;
53
93
  }
94
+ @mixin text-payhere-body-ls() {
95
+ font-size: 18px;
96
+ line-height: 26px;
97
+ font-weight: 600;
98
+ }
54
99
 
55
100
  .text-payhere-body-lb {
56
101
  font-size: 18px;
57
102
  line-height: 26px;
58
103
  font-weight: 700;
59
104
  }
105
+ @mixin text-payhere-body-lb() {
106
+ font-size: 18px;
107
+ line-height: 26px;
108
+ font-weight: 700;
109
+ }
60
110
 
61
111
  .text-payhere-body-mr {
62
112
  font-size: 16px;
63
113
  line-height: 24px;
64
114
  font-weight: 400;
65
115
  }
116
+ @mixin text-payhere-body-mr() {
117
+ font-size: 16px;
118
+ line-height: 24px;
119
+ font-weight: 400;
120
+ }
66
121
 
67
122
  .text-payhere-body-mm {
68
123
  font-size: 16px;
69
124
  line-height: 24px;
70
125
  font-weight: 500;
71
126
  }
127
+ @mixin text-payhere-body-mm() {
128
+ font-size: 16px;
129
+ line-height: 24px;
130
+ font-weight: 500;
131
+ }
72
132
 
73
133
  .text-payhere-body-ms {
74
134
  font-size: 16px;
75
135
  line-height: 24px;
76
136
  font-weight: 600;
77
137
  }
138
+ @mixin text-payhere-body-ms() {
139
+ font-size: 16px;
140
+ line-height: 24px;
141
+ font-weight: 600;
142
+ }
78
143
 
79
144
  .text-payhere-body-mb {
80
145
  font-size: 16px;
81
146
  line-height: 24px;
82
147
  font-weight: 700;
83
148
  }
149
+ @mixin text-payhere-body-mb() {
150
+ font-size: 16px;
151
+ line-height: 24px;
152
+ font-weight: 700;
153
+ }
84
154
 
85
155
  .text-payhere-label-r {
86
156
  font-size: 15px;
87
157
  line-height: 26px;
88
158
  font-weight: 400;
89
159
  }
160
+ @mixin text-payhere-label-r() {
161
+ font-size: 15px;
162
+ line-height: 26px;
163
+ font-weight: 400;
164
+ }
90
165
 
91
166
  .text-payhere-label-m {
92
167
  font-size: 15px;
93
168
  line-height: 26px;
94
169
  font-weight: 500;
95
170
  }
171
+ @mixin text-payhere-label-m() {
172
+ font-size: 15px;
173
+ line-height: 26px;
174
+ font-weight: 500;
175
+ }
176
+
177
+ .text-payhere-label-sb {
178
+ font-size: 15px;
179
+ line-height: 26px;
180
+ font-weight: 600;
181
+ }
182
+ @mixin text-payhere-label-sb() {
183
+ font-size: 15px;
184
+ line-height: 26px;
185
+ font-weight: 600;
186
+ }
187
+
188
+ .text-payhere-label-b {
189
+ font-size: 15px;
190
+ line-height: 26px;
191
+ font-weight: 700;
192
+ }
193
+ @mixin text-payhere-label-b() {
194
+ font-size: 15px;
195
+ line-height: 26px;
196
+ font-weight: 700;
197
+ }
96
198
 
97
199
  .text-payhere-body-sr {
98
200
  font-size: 14px;
99
201
  line-height: 22px;
100
202
  font-weight: 400;
101
203
  }
204
+ @mixin text-payhere-body-sr() {
205
+ font-size: 14px;
206
+ line-height: 22px;
207
+ font-weight: 400;
208
+ }
102
209
 
103
210
  .text-payhere-body-sm {
104
211
  font-size: 14px;
105
212
  line-height: 22px;
106
213
  font-weight: 500;
107
214
  }
215
+ @mixin text-payhere-body-sm() {
216
+ font-size: 14px;
217
+ line-height: 22px;
218
+ font-weight: 500;
219
+ }
220
+
221
+ .text-payhere-body-smb {
222
+ font-size: 14px;
223
+ line-height: 22px;
224
+ font-weight: 600;
225
+ }
226
+ @mixin text-payhere-body-smb() {
227
+ font-size: 14px;
228
+ line-height: 22px;
229
+ font-weight: 600;
230
+ }
231
+
232
+ .text-payhere-body-sb {
233
+ font-size: 14px;
234
+ line-height: 22px;
235
+ font-weight: 700;
236
+ }
237
+ @mixin text-payhere-body-sb() {
238
+ font-size: 14px;
239
+ line-height: 22px;
240
+ font-weight: 700;
241
+ }
108
242
 
109
243
  .text-payhere-body-esr {
110
244
  font-size: 12px;
111
245
  line-height: 20px;
112
246
  font-weight: 400;
113
247
  }
248
+ @mixin text-payhere-body-esr() {
249
+ font-size: 12px;
250
+ line-height: 20px;
251
+ font-weight: 400;
252
+ }
114
253
 
115
254
  .text-payhere-body-esm {
116
255
  font-size: 12px;
117
256
  line-height: 20px;
118
257
  font-weight: 500;
119
258
  }
259
+ @mixin text-payhere-body-esm() {
260
+ font-size: 12px;
261
+ line-height: 20px;
262
+ font-weight: 500;
263
+ }
264
+
265
+ .text-payhere-body-esmb {
266
+ font-size: 12px;
267
+ line-height: 20px;
268
+ font-weight: 600;
269
+ }
270
+ @mixin text-payhere-body-esmb() {
271
+ font-size: 12px;
272
+ line-height: 20px;
273
+ font-weight: 600;
274
+ }
275
+
276
+ .text-payhere-body-esb {
277
+ font-size: 12px;
278
+ line-height: 20px;
279
+ font-weight: 700;
280
+ }
281
+ @mixin text-payhere-body-esb() {
282
+ font-size: 12px;
283
+ line-height: 20px;
284
+ font-weight: 700;
285
+ }
286
+
287
+ .text-laba-title-lb {
288
+ font-size: 36px;
289
+ line-height: 44px;
290
+ font-weight: 700;
291
+ }
292
+ @mixin text-laba-title-lb() {
293
+ font-size: 36px;
294
+ line-height: 44px;
295
+ font-weight: 700;
296
+ }
297
+
298
+ .text-laba-title-ls {
299
+ font-size: 36px;
300
+ line-height: 44px;
301
+ font-weight: 600;
302
+ }
303
+ @mixin text-laba-title-ls() {
304
+ font-size: 36px;
305
+ line-height: 44px;
306
+ font-weight: 600;
307
+ }
308
+
309
+ .text-laba-title-lr {
310
+ font-size: 36px;
311
+ line-height: 44px;
312
+ font-weight: 400;
313
+ }
314
+ @mixin text-laba-title-lr() {
315
+ font-size: 36px;
316
+ line-height: 44px;
317
+ font-weight: 400;
318
+ }
319
+
320
+ .text-laba-title-mb {
321
+ font-size: 32px;
322
+ line-height: 40px;
323
+ font-weight: 700;
324
+ }
325
+ @mixin text-laba-title-mb() {
326
+ font-size: 32px;
327
+ line-height: 40px;
328
+ font-weight: 700;
329
+ }
330
+
331
+ .text-laba-title-ms {
332
+ font-size: 32px;
333
+ line-height: 40px;
334
+ font-weight: 600;
335
+ }
336
+ @mixin text-laba-title-ms() {
337
+ font-size: 32px;
338
+ line-height: 40px;
339
+ font-weight: 600;
340
+ }
341
+
342
+ .text-laba-title-mr {
343
+ font-size: 32px;
344
+ line-height: 40px;
345
+ font-weight: 400;
346
+ }
347
+ @mixin text-laba-title-mr() {
348
+ font-size: 32px;
349
+ line-height: 40px;
350
+ font-weight: 400;
351
+ }
120
352
 
121
353
  .text-laba-h1 {
122
354
  font-size: 24px;
123
355
  line-height: 30px;
124
356
  font-weight: 700;
125
357
  }
358
+ @mixin text-laba-h1() {
359
+ font-size: 24px;
360
+ line-height: 30px;
361
+ font-weight: 700;
362
+ }
363
+
364
+ .text-laba-h1-b {
365
+ font-size: 24px;
366
+ line-height: 30px;
367
+ font-weight: 700;
368
+ }
369
+ @mixin text-laba-h1-b() {
370
+ font-size: 24px;
371
+ line-height: 30px;
372
+ font-weight: 700;
373
+ }
374
+
375
+ .text-laba-h1-sb {
376
+ font-size: 24px;
377
+ line-height: 30px;
378
+ font-weight: 600;
379
+ }
380
+ @mixin text-laba-h1-sb() {
381
+ font-size: 24px;
382
+ line-height: 30px;
383
+ font-weight: 600;
384
+ }
385
+
386
+ .text-laba-h1-r {
387
+ font-size: 24px;
388
+ line-height: 30px;
389
+ font-weight: 400;
390
+ }
391
+ @mixin text-laba-h1-r() {
392
+ font-size: 24px;
393
+ line-height: 30px;
394
+ font-weight: 400;
395
+ }
126
396
 
127
397
  .text-laba-h2 {
128
398
  font-size: 18px;
129
399
  line-height: 26px;
130
400
  font-weight: 700;
131
401
  }
402
+ @mixin text-laba-h2() {
403
+ font-size: 18px;
404
+ line-height: 26px;
405
+ font-weight: 700;
406
+ }
407
+
408
+ .text-laba-h2-b {
409
+ font-size: 18px;
410
+ line-height: 26px;
411
+ font-weight: 700;
412
+ }
413
+ @mixin text-laba-h2-b() {
414
+ font-size: 18px;
415
+ line-height: 26px;
416
+ font-weight: 700;
417
+ }
418
+
419
+ .text-laba-h2-sb {
420
+ font-size: 18px;
421
+ line-height: 26px;
422
+ font-weight: 600;
423
+ }
424
+ @mixin text-laba-h2-sb() {
425
+ font-size: 18px;
426
+ line-height: 26px;
427
+ font-weight: 600;
428
+ }
429
+
430
+ .text-laba-h2-r {
431
+ font-size: 18px;
432
+ line-height: 26px;
433
+ font-weight: 400;
434
+ }
435
+ @mixin text-laba-h2-r() {
436
+ font-size: 18px;
437
+ line-height: 26px;
438
+ font-weight: 400;
439
+ }
132
440
 
133
441
  .text-laba-base-rb {
134
442
  font-size: 16px;
135
443
  line-height: 24px;
136
444
  font-weight: 700;
137
445
  }
446
+ @mixin text-laba-base-rb() {
447
+ font-size: 16px;
448
+ line-height: 24px;
449
+ font-weight: 700;
450
+ }
138
451
 
139
452
  .text-laba-base-rs {
140
453
  font-size: 16px;
141
454
  line-height: 24px;
142
455
  font-weight: 600;
143
456
  }
457
+ @mixin text-laba-base-rs() {
458
+ font-size: 16px;
459
+ line-height: 24px;
460
+ font-weight: 600;
461
+ }
144
462
 
145
463
  .text-laba-base-rr {
146
464
  font-size: 16px;
147
465
  line-height: 24px;
148
466
  font-weight: 400;
149
467
  }
468
+ @mixin text-laba-base-rr() {
469
+ font-size: 16px;
470
+ line-height: 24px;
471
+ font-weight: 400;
472
+ }
150
473
 
151
474
  .text-laba-base-sb {
152
475
  font-size: 14px;
153
476
  line-height: 20px;
154
477
  font-weight: 700;
155
478
  }
479
+ @mixin text-laba-base-sb() {
480
+ font-size: 14px;
481
+ line-height: 20px;
482
+ font-weight: 700;
483
+ }
156
484
 
157
485
  .text-laba-base-ss {
158
486
  font-size: 14px;
159
487
  line-height: 20px;
160
488
  font-weight: 600;
161
489
  }
490
+ @mixin text-laba-base-ss() {
491
+ font-size: 14px;
492
+ line-height: 20px;
493
+ font-weight: 600;
494
+ }
162
495
 
163
496
  .text-laba-base-sr {
164
497
  font-size: 14px;
165
498
  line-height: 20px;
166
499
  font-weight: 400;
167
500
  }
501
+ @mixin text-laba-base-sr() {
502
+ font-size: 14px;
503
+ line-height: 20px;
504
+ font-weight: 400;
505
+ }
168
506
 
169
507
  .text-laba-subtitle-rb {
170
508
  font-size: 12px;
171
509
  line-height: 16px;
172
510
  font-weight: 700;
173
511
  }
512
+ @mixin text-laba-subtitle-rb() {
513
+ font-size: 12px;
514
+ line-height: 16px;
515
+ font-weight: 700;
516
+ }
174
517
 
175
518
  .text-laba-subtitle-rs {
176
519
  font-size: 12px;
177
520
  line-height: 16px;
178
521
  font-weight: 600;
179
522
  }
523
+ @mixin text-laba-subtitle-rs() {
524
+ font-size: 12px;
525
+ line-height: 16px;
526
+ font-weight: 600;
527
+ }
180
528
 
181
529
  .text-laba-subtitle-rr {
182
530
  font-size: 12px;
183
531
  line-height: 16px;
184
532
  font-weight: 400;
185
533
  }
534
+ @mixin text-laba-subtitle-rr() {
535
+ font-size: 12px;
536
+ line-height: 16px;
537
+ font-weight: 400;
538
+ }
186
539
 
187
540
  .text-laba-subtitle-sb {
188
541
  font-size: 10px;
189
542
  line-height: 12px;
190
543
  font-weight: 700;
191
544
  }
545
+ @mixin text-laba-subtitle-sb() {
546
+ font-size: 10px;
547
+ line-height: 12px;
548
+ font-weight: 700;
549
+ }
192
550
 
193
551
  .text-laba-subtitle-ss {
194
552
  font-size: 10px;
195
553
  line-height: 12px;
196
554
  font-weight: 600;
197
555
  }
556
+ @mixin text-laba-subtitle-ss() {
557
+ font-size: 10px;
558
+ line-height: 12px;
559
+ font-weight: 600;
560
+ }
198
561
 
199
562
  .text-laba-subtitle-sr {
200
563
  font-size: 10px;
201
564
  line-height: 12px;
202
565
  font-weight: 400;
566
+ }
567
+ @mixin text-laba-subtitle-sr() {
568
+ font-size: 10px;
569
+ line-height: 12px;
570
+ font-weight: 400;
571
+ }
572
+
573
+ .text-bill-h1 {
574
+ font-size: 60px;
575
+ line-height: 72px;
576
+ font-weight: 700;
577
+ }
578
+ @mixin text-bill-h1() {
579
+ font-size: 60px;
580
+ line-height: 72px;
581
+ font-weight: 700;
582
+ }
583
+
584
+ .text-bill-h2 {
585
+ font-size: 48px;
586
+ line-height: 58px;
587
+ font-weight: 700;
588
+ }
589
+ @mixin text-bill-h2() {
590
+ font-size: 48px;
591
+ line-height: 58px;
592
+ font-weight: 700;
593
+ }
594
+
595
+ .text-bill-h3 {
596
+ font-size: 40px;
597
+ line-height: 58px;
598
+ font-weight: 700;
599
+ }
600
+ @mixin text-bill-h3() {
601
+ font-size: 40px;
602
+ line-height: 58px;
603
+ font-weight: 700;
604
+ }
605
+
606
+ .text-bill-h4 {
607
+ font-size: 30px;
608
+ line-height: 38px;
609
+ font-weight: 700;
610
+ }
611
+ @mixin text-bill-h4() {
612
+ font-size: 30px;
613
+ line-height: 38px;
614
+ font-weight: 700;
615
+ }
616
+
617
+ .text-bill-h5 {
618
+ font-size: 28px;
619
+ line-height: 40px;
620
+ font-weight: 600;
621
+ }
622
+ @mixin text-bill-h5() {
623
+ font-size: 28px;
624
+ line-height: 40px;
625
+ font-weight: 600;
626
+ }
627
+
628
+ .text-bill-h6 {
629
+ font-size: 24px;
630
+ line-height: 30px;
631
+ font-weight: 600;
632
+ }
633
+ @mixin text-bill-h6() {
634
+ font-size: 24px;
635
+ line-height: 30px;
636
+ font-weight: 600;
637
+ }
638
+
639
+ .text-bill-body-lr {
640
+ font-size: 18px;
641
+ line-height: 26px;
642
+ font-weight: 400;
643
+ }
644
+ @mixin text-bill-body-lr() {
645
+ font-size: 18px;
646
+ line-height: 26px;
647
+ font-weight: 400;
648
+ }
649
+
650
+ .text-bill-body-lm {
651
+ font-size: 18px;
652
+ line-height: 26px;
653
+ font-weight: 500;
654
+ }
655
+ @mixin text-bill-body-lm() {
656
+ font-size: 18px;
657
+ line-height: 26px;
658
+ font-weight: 500;
659
+ }
660
+
661
+ .text-bill-body-lsm {
662
+ font-size: 18px;
663
+ line-height: 26px;
664
+ font-weight: 600;
665
+ }
666
+ @mixin text-bill-body-lsm() {
667
+ font-size: 18px;
668
+ line-height: 26px;
669
+ font-weight: 600;
670
+ }
671
+
672
+ .text-bill-body-blb {
673
+ font-size: 18px;
674
+ line-height: 26px;
675
+ font-weight: 700;
676
+ }
677
+ @mixin text-bill-body-blb() {
678
+ font-size: 18px;
679
+ line-height: 26px;
680
+ font-weight: 700;
681
+ }
682
+
683
+ .text-bill-body-mr {
684
+ font-size: 16px;
685
+ line-height: 24px;
686
+ font-weight: 400;
687
+ }
688
+ @mixin text-bill-body-mr() {
689
+ font-size: 16px;
690
+ line-height: 24px;
691
+ font-weight: 400;
692
+ }
693
+
694
+ .text-bill-body-mm {
695
+ font-size: 16px;
696
+ line-height: 24px;
697
+ font-weight: 500;
698
+ }
699
+ @mixin text-bill-body-mm() {
700
+ font-size: 16px;
701
+ line-height: 24px;
702
+ font-weight: 500;
703
+ }
704
+
705
+ .text-bill-body-msm {
706
+ font-size: 16px;
707
+ line-height: 24px;
708
+ font-weight: 600;
709
+ }
710
+ @mixin text-bill-body-msm() {
711
+ font-size: 16px;
712
+ line-height: 24px;
713
+ font-weight: 600;
714
+ }
715
+
716
+ .text-bill-body-mb {
717
+ font-size: 16px;
718
+ line-height: 24px;
719
+ font-weight: 700;
720
+ }
721
+ @mixin text-bill-body-mb() {
722
+ font-size: 16px;
723
+ line-height: 24px;
724
+ font-weight: 700;
725
+ }
726
+
727
+ .text-bill-label-r {
728
+ font-size: 15px;
729
+ line-height: 26px;
730
+ font-weight: 400;
731
+ }
732
+ @mixin text-bill-label-r() {
733
+ font-size: 15px;
734
+ line-height: 26px;
735
+ font-weight: 400;
736
+ }
737
+
738
+ .text-bill-label-m {
739
+ font-size: 15px;
740
+ line-height: 26px;
741
+ font-weight: 500;
742
+ }
743
+ @mixin text-bill-label-m() {
744
+ font-size: 15px;
745
+ line-height: 26px;
746
+ font-weight: 500;
747
+ }
748
+
749
+ .text-bill-label-sm {
750
+ font-size: 15px;
751
+ line-height: 26px;
752
+ font-weight: 600;
753
+ }
754
+ @mixin text-bill-label-sm() {
755
+ font-size: 15px;
756
+ line-height: 26px;
757
+ font-weight: 600;
758
+ }
759
+
760
+ .text-bill-label-b {
761
+ font-size: 15px;
762
+ line-height: 26px;
763
+ font-weight: 700;
764
+ }
765
+ @mixin text-bill-label-b() {
766
+ font-size: 15px;
767
+ line-height: 26px;
768
+ font-weight: 700;
769
+ }
770
+
771
+ .text-bill-body-sr {
772
+ font-size: 14px;
773
+ line-height: 22px;
774
+ font-weight: 400;
775
+ }
776
+ @mixin text-bill-body-sr() {
777
+ font-size: 14px;
778
+ line-height: 22px;
779
+ font-weight: 400;
780
+ }
781
+
782
+ .text-bill-body-sm {
783
+ font-size: 14px;
784
+ line-height: 22px;
785
+ font-weight: 500;
786
+ }
787
+ @mixin text-bill-body-sm() {
788
+ font-size: 14px;
789
+ line-height: 22px;
790
+ font-weight: 500;
791
+ }
792
+
793
+ .text-bill-body-ssm {
794
+ font-size: 14px;
795
+ line-height: 22px;
796
+ font-weight: 600;
797
+ }
798
+ @mixin text-bill-body-ssm() {
799
+ font-size: 14px;
800
+ line-height: 22px;
801
+ font-weight: 600;
802
+ }
803
+
804
+ .text-bill-body-sb {
805
+ font-size: 14px;
806
+ line-height: 22px;
807
+ font-weight: 700;
808
+ }
809
+ @mixin text-bill-body-sb() {
810
+ font-size: 14px;
811
+ line-height: 22px;
812
+ font-weight: 700;
813
+ }
814
+
815
+ .text-bill-body-esr {
816
+ font-size: 12px;
817
+ line-height: 20px;
818
+ font-weight: 400;
819
+ }
820
+ @mixin text-bill-body-esr() {
821
+ font-size: 12px;
822
+ line-height: 20px;
823
+ font-weight: 400;
824
+ }
825
+
826
+ .text-bill-body-ems {
827
+ font-size: 12px;
828
+ line-height: 20px;
829
+ font-weight: 500;
830
+ }
831
+ @mixin text-bill-body-ems() {
832
+ font-size: 12px;
833
+ line-height: 20px;
834
+ font-weight: 500;
835
+ }
836
+
837
+ .text-bill-body-essm {
838
+ font-size: 12px;
839
+ line-height: 20px;
840
+ font-weight: 600;
841
+ }
842
+ @mixin text-bill-body-essm() {
843
+ font-size: 12px;
844
+ line-height: 20px;
845
+ font-weight: 600;
846
+ }
847
+
848
+ .text-bill-body-esb {
849
+ font-size: 12px;
850
+ line-height: 20px;
851
+ font-weight: 700;
852
+ }
853
+ @mixin text-bill-body-esb() {
854
+ font-size: 12px;
855
+ line-height: 20px;
856
+ font-weight: 700;
203
857
  }