@alfalab/core-components 48.29.0-beta.1 → 48.29.0-snapshot.2-b4d1ee6

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 (743) hide show
  1. package/bottom-sheet/component.js +27 -17
  2. package/bottom-sheet/components/footer/Component.d.ts +5 -0
  3. package/bottom-sheet/components/footer/Component.js +13 -5
  4. package/bottom-sheet/components/footer/default.css +45 -0
  5. package/bottom-sheet/components/footer/index.css +9 -78
  6. package/bottom-sheet/components/footer/inverted.css +45 -0
  7. package/bottom-sheet/components/header/Component.d.ts +3 -0
  8. package/bottom-sheet/components/header/Component.js +17 -7
  9. package/bottom-sheet/components/header/default.css +46 -0
  10. package/bottom-sheet/components/header/index.css +23 -9
  11. package/bottom-sheet/components/header/inverted.css +46 -0
  12. package/bottom-sheet/cssm/component.js +25 -17
  13. package/bottom-sheet/cssm/components/footer/Component.d.ts +5 -0
  14. package/bottom-sheet/cssm/components/footer/Component.js +10 -4
  15. package/bottom-sheet/cssm/components/footer/default.module.css +44 -0
  16. package/bottom-sheet/cssm/components/footer/index.module.css +9 -78
  17. package/bottom-sheet/cssm/components/footer/inverted.module.css +44 -0
  18. package/bottom-sheet/cssm/components/header/Component.d.ts +3 -0
  19. package/bottom-sheet/cssm/components/header/Component.js +14 -6
  20. package/bottom-sheet/cssm/components/header/default.module.css +45 -0
  21. package/bottom-sheet/cssm/components/header/index.module.css +25 -9
  22. package/bottom-sheet/cssm/components/header/inverted.module.css +45 -0
  23. package/bottom-sheet/cssm/default.module.css +47 -0
  24. package/bottom-sheet/cssm/index.module.css +21 -22
  25. package/bottom-sheet/cssm/inverted.module.css +47 -0
  26. package/bottom-sheet/cssm/types.d.ts +9 -2
  27. package/bottom-sheet/cssm/utils.d.ts +3 -1
  28. package/bottom-sheet/cssm/utils.js +5 -0
  29. package/bottom-sheet/cssm/vars.css +7 -2
  30. package/bottom-sheet/default.css +48 -0
  31. package/bottom-sheet/esm/component.js +28 -18
  32. package/bottom-sheet/esm/components/footer/Component.d.ts +5 -0
  33. package/bottom-sheet/esm/components/footer/Component.js +14 -5
  34. package/bottom-sheet/esm/components/footer/default.css +45 -0
  35. package/bottom-sheet/esm/components/footer/index.css +9 -78
  36. package/bottom-sheet/esm/components/footer/inverted.css +45 -0
  37. package/bottom-sheet/esm/components/header/Component.d.ts +3 -0
  38. package/bottom-sheet/esm/components/header/Component.js +18 -7
  39. package/bottom-sheet/esm/components/header/default.css +46 -0
  40. package/bottom-sheet/esm/components/header/index.css +23 -9
  41. package/bottom-sheet/esm/components/header/inverted.css +46 -0
  42. package/bottom-sheet/esm/default.css +48 -0
  43. package/bottom-sheet/esm/index.css +21 -22
  44. package/bottom-sheet/esm/inverted.css +48 -0
  45. package/bottom-sheet/esm/types.d.ts +9 -2
  46. package/bottom-sheet/esm/utils.d.ts +3 -1
  47. package/bottom-sheet/esm/utils.js +5 -1
  48. package/bottom-sheet/index.css +21 -22
  49. package/bottom-sheet/inverted.css +48 -0
  50. package/bottom-sheet/modern/component.js +24 -13
  51. package/bottom-sheet/modern/components/footer/Component.d.ts +5 -0
  52. package/bottom-sheet/modern/components/footer/Component.js +13 -4
  53. package/bottom-sheet/modern/components/footer/default.css +45 -0
  54. package/bottom-sheet/modern/components/footer/index.css +9 -78
  55. package/bottom-sheet/modern/components/footer/inverted.css +45 -0
  56. package/bottom-sheet/modern/components/header/Component.d.ts +3 -0
  57. package/bottom-sheet/modern/components/header/Component.js +17 -6
  58. package/bottom-sheet/modern/components/header/default.css +46 -0
  59. package/bottom-sheet/modern/components/header/index.css +23 -9
  60. package/bottom-sheet/modern/components/header/inverted.css +46 -0
  61. package/bottom-sheet/modern/default.css +48 -0
  62. package/bottom-sheet/modern/index.css +21 -22
  63. package/bottom-sheet/modern/inverted.css +48 -0
  64. package/bottom-sheet/modern/types.d.ts +9 -2
  65. package/bottom-sheet/modern/utils.d.ts +3 -1
  66. package/bottom-sheet/modern/utils.js +2 -1
  67. package/bottom-sheet/moderncssm/component.js +24 -13
  68. package/bottom-sheet/moderncssm/components/footer/Component.d.ts +5 -0
  69. package/bottom-sheet/moderncssm/components/footer/Component.js +8 -3
  70. package/bottom-sheet/moderncssm/components/footer/default.module.css +22 -0
  71. package/bottom-sheet/moderncssm/components/footer/index.module.css +7 -26
  72. package/bottom-sheet/moderncssm/components/footer/inverted.module.css +22 -0
  73. package/bottom-sheet/moderncssm/components/header/Component.d.ts +3 -0
  74. package/bottom-sheet/moderncssm/components/header/Component.js +12 -5
  75. package/bottom-sheet/moderncssm/components/header/default.module.css +26 -0
  76. package/bottom-sheet/moderncssm/components/header/index.module.css +27 -8
  77. package/bottom-sheet/moderncssm/components/header/inverted.module.css +26 -0
  78. package/bottom-sheet/moderncssm/default.module.css +27 -0
  79. package/bottom-sheet/moderncssm/index.js +6 -0
  80. package/bottom-sheet/moderncssm/index.module.css +8 -6
  81. package/bottom-sheet/moderncssm/inverted.module.css +27 -0
  82. package/bottom-sheet/moderncssm/types.d.ts +9 -2
  83. package/bottom-sheet/moderncssm/utils.d.ts +3 -1
  84. package/bottom-sheet/moderncssm/utils.js +2 -1
  85. package/bottom-sheet/moderncssm/vars.css +7 -2
  86. package/bottom-sheet/types.d.ts +9 -2
  87. package/bottom-sheet/utils.d.ts +3 -1
  88. package/bottom-sheet/utils.js +5 -0
  89. package/calendar/components/calendar-mobile/Component.js +1 -1
  90. package/calendar/components/calendar-mobile/calendarMonthOnlyView.js +1 -1
  91. package/calendar/components/calendar-mobile/index.d.ts +1 -1
  92. package/calendar/components/calendar-mobile/index.js +1 -1
  93. package/calendar/esm/Component.responsive.js +1 -1
  94. package/calendar/esm/components/calendar-mobile/Component.js +1 -1
  95. package/calendar/esm/components/calendar-mobile/calendarMonthOnlyView.js +1 -1
  96. package/calendar/esm/components/calendar-mobile/index.d.ts +1 -1
  97. package/calendar/esm/components/calendar-mobile/index.js +1 -1
  98. package/calendar/esm/index.js +1 -1
  99. package/calendar/esm/mobile/index.js +1 -1
  100. package/calendar/mobile/index.js +1 -1
  101. package/calendar/modern/Component.responsive.js +1 -1
  102. package/calendar/modern/components/calendar-mobile/Component.js +1 -1
  103. package/calendar/modern/components/calendar-mobile/calendarMonthOnlyView.js +1 -1
  104. package/calendar/modern/components/calendar-mobile/index.d.ts +1 -1
  105. package/calendar/modern/components/calendar-mobile/index.js +1 -1
  106. package/calendar/modern/index.js +1 -1
  107. package/calendar/modern/mobile/index.js +1 -1
  108. package/calendar-input/cssm/components/calendar-input/Component.d.ts +1 -1
  109. package/cdn-icon/cssm/hooks/use-icon.js +1 -1
  110. package/cdn-icon/esm/hooks/use-icon.js +1 -1
  111. package/cdn-icon/hooks/use-icon.js +1 -1
  112. package/cdn-icon/modern/hooks/use-icon.js +1 -1
  113. package/cdn-icon/moderncssm/hooks/use-icon.js +1 -1
  114. package/collapse/Component.d.ts +5 -0
  115. package/collapse/Component.js +3 -3
  116. package/collapse/cssm/Component.d.ts +5 -0
  117. package/collapse/cssm/Component.js +3 -3
  118. package/collapse/esm/Component.d.ts +5 -0
  119. package/collapse/esm/Component.js +3 -3
  120. package/collapse/modern/Component.d.ts +5 -0
  121. package/collapse/modern/Component.js +2 -2
  122. package/collapse/moderncssm/Component.d.ts +5 -0
  123. package/collapse/moderncssm/Component.js +2 -2
  124. package/confirmation/components/screens/initial/component.js +1 -1
  125. package/confirmation/components/screens/initial/countdown-section.js +1 -1
  126. package/confirmation/esm/component.responsive.js +1 -1
  127. package/confirmation/esm/components/base-confirmation/component.js +1 -1
  128. package/confirmation/esm/components/base-confirmation/index.js +1 -1
  129. package/confirmation/esm/components/index.js +1 -1
  130. package/confirmation/esm/components/screens/index.js +1 -1
  131. package/confirmation/esm/components/screens/initial/component.js +1 -1
  132. package/confirmation/esm/components/screens/initial/countdown-section.js +1 -1
  133. package/confirmation/esm/components/screens/initial/index.js +1 -1
  134. package/confirmation/esm/desktop/component.desktop.js +1 -1
  135. package/confirmation/esm/desktop/index.js +1 -1
  136. package/confirmation/esm/index.js +1 -1
  137. package/confirmation/esm/mobile/component.mobile.js +1 -1
  138. package/confirmation/esm/mobile/index.js +1 -1
  139. package/confirmation/esm/shared/index.js +1 -1
  140. package/confirmation/modern/component.responsive.js +1 -1
  141. package/confirmation/modern/components/base-confirmation/component.js +1 -1
  142. package/confirmation/modern/components/base-confirmation/index.js +1 -1
  143. package/confirmation/modern/components/index.js +1 -1
  144. package/confirmation/modern/components/screens/index.js +1 -1
  145. package/confirmation/modern/components/screens/initial/component.js +1 -1
  146. package/confirmation/modern/components/screens/initial/countdown-section.js +1 -1
  147. package/confirmation/modern/components/screens/initial/index.js +1 -1
  148. package/confirmation/modern/desktop/component.desktop.js +1 -1
  149. package/confirmation/modern/desktop/index.js +1 -1
  150. package/confirmation/modern/index.js +1 -1
  151. package/confirmation/modern/mobile/component.mobile.js +1 -1
  152. package/confirmation/modern/mobile/index.js +1 -1
  153. package/confirmation/modern/shared/index.js +1 -1
  154. package/file-upload-item/components/actions-control/actions.js +1 -1
  155. package/file-upload-item/components/actions-control/components/delete-button/delete-button.js +1 -1
  156. package/file-upload-item/components/actions-control/components/download-button/download-button.js +1 -1
  157. package/file-upload-item/components/actions-control/components/restore-button/restore-button.js +1 -1
  158. package/file-upload-item/esm/Component.js +1 -1
  159. package/file-upload-item/esm/components/actions-control/actions.js +1 -1
  160. package/file-upload-item/esm/components/actions-control/components/delete-button/delete-button.js +1 -1
  161. package/file-upload-item/esm/components/actions-control/components/delete-button/index.js +1 -1
  162. package/file-upload-item/esm/components/actions-control/components/download-button/download-button.js +1 -1
  163. package/file-upload-item/esm/components/actions-control/components/download-button/index.js +1 -1
  164. package/file-upload-item/esm/components/actions-control/components/restore-button/index.js +1 -1
  165. package/file-upload-item/esm/components/actions-control/components/restore-button/restore-button.js +1 -1
  166. package/file-upload-item/esm/components/actions-control/index.js +1 -1
  167. package/file-upload-item/esm/index.js +1 -1
  168. package/file-upload-item/modern/Component.js +1 -1
  169. package/file-upload-item/modern/components/actions-control/actions.js +1 -1
  170. package/file-upload-item/modern/components/actions-control/components/delete-button/delete-button.js +1 -1
  171. package/file-upload-item/modern/components/actions-control/components/delete-button/index.js +1 -1
  172. package/file-upload-item/modern/components/actions-control/components/download-button/download-button.js +1 -1
  173. package/file-upload-item/modern/components/actions-control/components/download-button/index.js +1 -1
  174. package/file-upload-item/modern/components/actions-control/components/restore-button/index.js +1 -1
  175. package/file-upload-item/modern/components/actions-control/components/restore-button/restore-button.js +1 -1
  176. package/file-upload-item/modern/components/actions-control/index.js +1 -1
  177. package/file-upload-item/modern/index.js +1 -1
  178. package/gallery/components/image-viewer/component.js +1 -1
  179. package/gallery/components/image-viewer/hooks.js +1 -1
  180. package/gallery/components/image-viewer/single.js +1 -1
  181. package/gallery/components/image-viewer/slide.js +1 -1
  182. package/gallery/esm/Component.js +1 -1
  183. package/gallery/esm/components/image-viewer/component.js +1 -1
  184. package/gallery/esm/components/image-viewer/hooks.js +1 -1
  185. package/gallery/esm/components/image-viewer/index.js +1 -1
  186. package/gallery/esm/components/image-viewer/single.js +1 -1
  187. package/gallery/esm/components/image-viewer/slide.js +1 -1
  188. package/gallery/esm/components/index.js +1 -1
  189. package/gallery/esm/index.js +1 -1
  190. package/gallery/modern/Component.js +1 -1
  191. package/gallery/modern/components/image-viewer/component.js +1 -1
  192. package/gallery/modern/components/image-viewer/hooks.js +1 -1
  193. package/gallery/modern/components/image-viewer/index.js +1 -1
  194. package/gallery/modern/components/image-viewer/single.js +1 -1
  195. package/gallery/modern/components/image-viewer/slide.js +1 -1
  196. package/gallery/modern/components/index.js +1 -1
  197. package/gallery/modern/index.js +1 -1
  198. package/input-autocomplete/cssm/mobile/Component.mobile.js +3 -1
  199. package/input-autocomplete/esm/mobile/Component.mobile.js +3 -1
  200. package/input-autocomplete/mobile/Component.mobile.js +3 -1
  201. package/input-autocomplete/modern/mobile/Component.mobile.js +7 -1
  202. package/input-autocomplete/moderncssm/mobile/Component.mobile.js +7 -1
  203. package/international-phone-input/components/country-select/Component.js +1 -0
  204. package/international-phone-input/cssm/components/country-select/Component.js +1 -0
  205. package/international-phone-input/cssm/typings-d515b24c.d.ts +31 -1
  206. package/international-phone-input/esm/components/country-select/Component.js +1 -0
  207. package/international-phone-input/esm/typings-d515b24c.d.ts +31 -1
  208. package/international-phone-input/modern/components/country-select/Component.js +1 -0
  209. package/international-phone-input/modern/typings-d515b24c.d.ts +31 -1
  210. package/international-phone-input/moderncssm/components/country-select/Component.js +1 -0
  211. package/international-phone-input/moderncssm/typings-d515b24c.d.ts +31 -1
  212. package/international-phone-input/typings-d515b24c.d.ts +594 -11
  213. package/list/Component.js +1 -1
  214. package/list/components/item/Component.js +1 -1
  215. package/list/components/item/index.d.ts +1 -1
  216. package/list/components/item/index.js +1 -1
  217. package/list/esm/Component.js +1 -1
  218. package/list/esm/components/item/Component.js +1 -1
  219. package/list/esm/components/item/index.d.ts +1 -1
  220. package/list/esm/components/item/index.js +1 -1
  221. package/list/esm/index.js +1 -1
  222. package/list/index.js +1 -1
  223. package/list/modern/Component.js +1 -1
  224. package/list/modern/components/item/Component.js +1 -1
  225. package/list/modern/components/item/index.d.ts +1 -1
  226. package/list/modern/components/item/index.js +1 -1
  227. package/list/modern/index.js +1 -1
  228. package/modal/components/controls/Component.js +1 -1
  229. package/modal/components/footer/Component.js +1 -1
  230. package/modal/esm/Component.responsive.js +1 -1
  231. package/modal/esm/components/controls/Component.js +1 -1
  232. package/modal/esm/components/controls/index.js +1 -1
  233. package/modal/esm/components/footer/Component.js +1 -1
  234. package/modal/esm/desktop/Component.desktop.js +1 -1
  235. package/modal/esm/desktop/index.js +1 -1
  236. package/modal/esm/index.js +1 -1
  237. package/modal/esm/mobile/Component.mobile.js +1 -1
  238. package/modal/esm/mobile/index.js +1 -1
  239. package/modal/modern/Component.responsive.js +1 -1
  240. package/modal/modern/components/controls/Component.js +1 -1
  241. package/modal/modern/components/controls/index.js +1 -1
  242. package/modal/modern/components/footer/Component.js +1 -1
  243. package/modal/modern/desktop/Component.desktop.js +1 -1
  244. package/modal/modern/desktop/index.js +1 -1
  245. package/modal/modern/index.js +1 -1
  246. package/modal/modern/mobile/Component.mobile.js +1 -1
  247. package/modal/modern/mobile/index.js +1 -1
  248. package/navigation-bar-private/Component.js +6 -6
  249. package/navigation-bar-private/components/back-arrow-addon/Component.d.ts +5 -0
  250. package/navigation-bar-private/components/back-arrow-addon/Component.js +14 -3
  251. package/navigation-bar-private/components/back-arrow-addon/default.css +75 -0
  252. package/navigation-bar-private/components/back-arrow-addon/index.css +4 -18
  253. package/navigation-bar-private/components/back-arrow-addon/inverted.css +77 -0
  254. package/navigation-bar-private/components/closer/default.css +2 -0
  255. package/navigation-bar-private/components/closer/inverted.css +2 -0
  256. package/navigation-bar-private/cssm/Component.js +6 -6
  257. package/navigation-bar-private/cssm/components/back-arrow-addon/Component.d.ts +5 -0
  258. package/navigation-bar-private/cssm/components/back-arrow-addon/Component.js +12 -3
  259. package/navigation-bar-private/cssm/components/back-arrow-addon/default.module.css +74 -0
  260. package/navigation-bar-private/cssm/components/back-arrow-addon/index.module.css +4 -18
  261. package/navigation-bar-private/cssm/components/back-arrow-addon/inverted.module.css +76 -0
  262. package/navigation-bar-private/cssm/components/closer/default.module.css +2 -0
  263. package/navigation-bar-private/cssm/components/closer/inverted.module.css +2 -0
  264. package/navigation-bar-private/cssm/types.d.ts +10 -1
  265. package/navigation-bar-private/cssm/vars.css +2 -0
  266. package/navigation-bar-private/esm/Component.js +6 -6
  267. package/navigation-bar-private/esm/components/back-arrow-addon/Component.d.ts +5 -0
  268. package/navigation-bar-private/esm/components/back-arrow-addon/Component.js +14 -3
  269. package/navigation-bar-private/esm/components/back-arrow-addon/default.css +75 -0
  270. package/navigation-bar-private/esm/components/back-arrow-addon/index.css +4 -18
  271. package/navigation-bar-private/esm/components/back-arrow-addon/inverted.css +77 -0
  272. package/navigation-bar-private/esm/components/closer/default.css +2 -0
  273. package/navigation-bar-private/esm/components/closer/inverted.css +2 -0
  274. package/navigation-bar-private/esm/types.d.ts +10 -1
  275. package/navigation-bar-private/modern/Component.js +4 -4
  276. package/navigation-bar-private/modern/components/back-arrow-addon/Component.d.ts +5 -0
  277. package/navigation-bar-private/modern/components/back-arrow-addon/Component.js +14 -3
  278. package/navigation-bar-private/modern/components/back-arrow-addon/default.css +75 -0
  279. package/navigation-bar-private/modern/components/back-arrow-addon/index.css +4 -18
  280. package/navigation-bar-private/modern/components/back-arrow-addon/inverted.css +77 -0
  281. package/navigation-bar-private/modern/components/closer/default.css +2 -0
  282. package/navigation-bar-private/modern/components/closer/inverted.css +2 -0
  283. package/navigation-bar-private/modern/types.d.ts +10 -1
  284. package/navigation-bar-private/moderncssm/Component.js +6 -4
  285. package/navigation-bar-private/moderncssm/components/back-arrow-addon/Component.d.ts +5 -0
  286. package/navigation-bar-private/moderncssm/components/back-arrow-addon/Component.js +10 -3
  287. package/navigation-bar-private/moderncssm/components/back-arrow-addon/default.module.css +35 -0
  288. package/navigation-bar-private/moderncssm/components/back-arrow-addon/index.js +2 -0
  289. package/navigation-bar-private/moderncssm/components/back-arrow-addon/index.module.css +2 -16
  290. package/navigation-bar-private/moderncssm/components/back-arrow-addon/inverted.module.css +37 -0
  291. package/navigation-bar-private/moderncssm/components/closer/default.module.css +2 -0
  292. package/navigation-bar-private/moderncssm/components/closer/inverted.module.css +2 -0
  293. package/navigation-bar-private/moderncssm/index.js +2 -0
  294. package/navigation-bar-private/moderncssm/shared/index.js +2 -0
  295. package/navigation-bar-private/moderncssm/types.d.ts +10 -1
  296. package/navigation-bar-private/moderncssm/vars.css +2 -0
  297. package/navigation-bar-private/types.d.ts +10 -1
  298. package/package.json +1 -1
  299. package/picker-button/Component-c44170fe.d.ts +1 -1
  300. package/picker-button/cssm/mobile/Component.mobile.js +1 -1
  301. package/picker-button/cssm/typings-d515b24c.d.ts +31 -1
  302. package/picker-button/esm/mobile/Component.mobile.js +1 -1
  303. package/picker-button/esm/typings-d515b24c.d.ts +31 -1
  304. package/picker-button/mobile/Component.mobile.js +1 -1
  305. package/picker-button/modern/mobile/Component.mobile.js +1 -0
  306. package/picker-button/modern/typings-d515b24c.d.ts +31 -1
  307. package/picker-button/moderncssm/mobile/Component.mobile.js +1 -0
  308. package/picker-button/moderncssm/typings-d515b24c.d.ts +31 -1
  309. package/picker-button/transformSize-ebda875c.d.ts +1 -1
  310. package/picker-button/typings-d515b24c.d.ts +31 -1
  311. package/pure-cell/component.js +1 -1
  312. package/pure-cell/components/addon/component.js +1 -1
  313. package/pure-cell/components/addon/index.d.ts +1 -1
  314. package/pure-cell/components/addon/index.js +1 -1
  315. package/pure-cell/components/amount/component.js +1 -1
  316. package/pure-cell/components/amount/index.d.ts +1 -1
  317. package/pure-cell/components/amount/index.js +1 -1
  318. package/pure-cell/components/amount-title/component.js +1 -1
  319. package/pure-cell/components/amount-title/index.d.ts +1 -1
  320. package/pure-cell/components/amount-title/index.js +1 -1
  321. package/pure-cell/components/category/component.js +1 -1
  322. package/pure-cell/components/category/index.d.ts +1 -1
  323. package/pure-cell/components/category/index.js +1 -1
  324. package/pure-cell/components/content/component.js +1 -1
  325. package/pure-cell/components/content/index.d.ts +1 -1
  326. package/pure-cell/components/content/index.js +1 -1
  327. package/pure-cell/components/footer/component.js +1 -1
  328. package/pure-cell/components/footer/index.d.ts +1 -1
  329. package/pure-cell/components/footer/index.js +1 -1
  330. package/pure-cell/components/footer-button/component.js +1 -1
  331. package/pure-cell/components/footer-button/index.d.ts +1 -1
  332. package/pure-cell/components/footer-button/index.js +1 -1
  333. package/pure-cell/components/footer-text/component.js +1 -1
  334. package/pure-cell/components/footer-text/index.d.ts +1 -1
  335. package/pure-cell/components/footer-text/index.js +1 -1
  336. package/pure-cell/components/graphics/component.js +1 -1
  337. package/pure-cell/components/graphics/index.d.ts +1 -1
  338. package/pure-cell/components/graphics/index.js +1 -1
  339. package/pure-cell/components/main/component.js +1 -1
  340. package/pure-cell/components/main/index.d.ts +1 -1
  341. package/pure-cell/components/main/index.js +1 -1
  342. package/pure-cell/components/text/component.js +1 -1
  343. package/pure-cell/components/text/index.d.ts +1 -1
  344. package/pure-cell/components/text/index.js +1 -1
  345. package/pure-cell/esm/component.js +1 -1
  346. package/pure-cell/esm/components/addon/component.js +1 -1
  347. package/pure-cell/esm/components/addon/index.d.ts +1 -1
  348. package/pure-cell/esm/components/addon/index.js +1 -1
  349. package/pure-cell/esm/components/amount/component.js +1 -1
  350. package/pure-cell/esm/components/amount/index.d.ts +1 -1
  351. package/pure-cell/esm/components/amount/index.js +1 -1
  352. package/pure-cell/esm/components/amount-title/component.js +1 -1
  353. package/pure-cell/esm/components/amount-title/index.d.ts +1 -1
  354. package/pure-cell/esm/components/amount-title/index.js +1 -1
  355. package/pure-cell/esm/components/category/component.js +1 -1
  356. package/pure-cell/esm/components/category/index.d.ts +1 -1
  357. package/pure-cell/esm/components/category/index.js +1 -1
  358. package/pure-cell/esm/components/content/component.js +1 -1
  359. package/pure-cell/esm/components/content/index.d.ts +1 -1
  360. package/pure-cell/esm/components/content/index.js +1 -1
  361. package/pure-cell/esm/components/footer/component.js +1 -1
  362. package/pure-cell/esm/components/footer/index.d.ts +1 -1
  363. package/pure-cell/esm/components/footer/index.js +1 -1
  364. package/pure-cell/esm/components/footer-button/component.js +1 -1
  365. package/pure-cell/esm/components/footer-button/index.d.ts +1 -1
  366. package/pure-cell/esm/components/footer-button/index.js +1 -1
  367. package/pure-cell/esm/components/footer-text/component.js +1 -1
  368. package/pure-cell/esm/components/footer-text/index.d.ts +1 -1
  369. package/pure-cell/esm/components/footer-text/index.js +1 -1
  370. package/pure-cell/esm/components/graphics/component.js +1 -1
  371. package/pure-cell/esm/components/graphics/index.d.ts +1 -1
  372. package/pure-cell/esm/components/graphics/index.js +1 -1
  373. package/pure-cell/esm/components/main/component.js +1 -1
  374. package/pure-cell/esm/components/main/index.d.ts +1 -1
  375. package/pure-cell/esm/components/main/index.js +1 -1
  376. package/pure-cell/esm/components/text/component.js +1 -1
  377. package/pure-cell/esm/components/text/index.d.ts +1 -1
  378. package/pure-cell/esm/components/text/index.js +1 -1
  379. package/pure-cell/esm/index.js +1 -1
  380. package/pure-cell/index.js +1 -1
  381. package/pure-cell/modern/component.js +1 -1
  382. package/pure-cell/modern/components/addon/component.js +1 -1
  383. package/pure-cell/modern/components/addon/index.d.ts +1 -1
  384. package/pure-cell/modern/components/addon/index.js +1 -1
  385. package/pure-cell/modern/components/amount/component.js +1 -1
  386. package/pure-cell/modern/components/amount/index.d.ts +1 -1
  387. package/pure-cell/modern/components/amount/index.js +1 -1
  388. package/pure-cell/modern/components/amount-title/component.js +1 -1
  389. package/pure-cell/modern/components/amount-title/index.d.ts +1 -1
  390. package/pure-cell/modern/components/amount-title/index.js +1 -1
  391. package/pure-cell/modern/components/category/component.js +1 -1
  392. package/pure-cell/modern/components/category/index.d.ts +1 -1
  393. package/pure-cell/modern/components/category/index.js +1 -1
  394. package/pure-cell/modern/components/content/component.js +1 -1
  395. package/pure-cell/modern/components/content/index.d.ts +1 -1
  396. package/pure-cell/modern/components/content/index.js +1 -1
  397. package/pure-cell/modern/components/footer/component.js +1 -1
  398. package/pure-cell/modern/components/footer/index.d.ts +1 -1
  399. package/pure-cell/modern/components/footer/index.js +1 -1
  400. package/pure-cell/modern/components/footer-button/component.js +1 -1
  401. package/pure-cell/modern/components/footer-button/index.d.ts +1 -1
  402. package/pure-cell/modern/components/footer-button/index.js +1 -1
  403. package/pure-cell/modern/components/footer-text/component.js +1 -1
  404. package/pure-cell/modern/components/footer-text/index.d.ts +1 -1
  405. package/pure-cell/modern/components/footer-text/index.js +1 -1
  406. package/pure-cell/modern/components/graphics/component.js +1 -1
  407. package/pure-cell/modern/components/graphics/index.d.ts +1 -1
  408. package/pure-cell/modern/components/graphics/index.js +1 -1
  409. package/pure-cell/modern/components/main/component.js +1 -1
  410. package/pure-cell/modern/components/main/index.d.ts +1 -1
  411. package/pure-cell/modern/components/main/index.js +1 -1
  412. package/pure-cell/modern/components/text/component.js +1 -1
  413. package/pure-cell/modern/components/text/index.d.ts +1 -1
  414. package/pure-cell/modern/components/text/index.js +1 -1
  415. package/pure-cell/modern/index.js +1 -1
  416. package/select/components/base-select/Component.js +2 -2
  417. package/select/components/base-select/components/list-desktop/list-popover-desktop.js +1 -1
  418. package/select/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js +1 -1
  419. package/select/components/base-select/components/list-mobile/list-modal-mobile.js +1 -1
  420. package/select/cssm/components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.d.ts +1 -1
  421. package/select/cssm/mobile/Component.mobile.js +1 -1
  422. package/select/esm/Component.responsive.js +3 -3
  423. package/select/esm/components/base-select/Component.js +2 -2
  424. package/select/esm/components/base-select/components/list-desktop/list-popover-desktop.js +1 -1
  425. package/select/esm/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js +1 -1
  426. package/select/esm/components/base-select/components/list-mobile/list-mobile.js +1 -1
  427. package/select/esm/components/base-select/components/list-mobile/list-modal-mobile.js +1 -1
  428. package/select/esm/components/base-select/index.js +2 -2
  429. package/select/esm/components/index.js +2 -2
  430. package/select/esm/desktop/Component.desktop.js +2 -2
  431. package/select/esm/desktop/index.js +2 -2
  432. package/select/esm/index.js +3 -3
  433. package/select/esm/mobile/Component.mobile.js +4 -4
  434. package/select/esm/mobile/Component.modal.mobile.js +3 -3
  435. package/select/esm/mobile/index.js +3 -3
  436. package/select/esm/presets/index.js +1 -1
  437. package/select/esm/presets/useSelectWithApply/hook.js +1 -1
  438. package/select/esm/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
  439. package/select/esm/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
  440. package/select/esm/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
  441. package/select/esm/shared/index.js +3 -3
  442. package/select/mobile/Component.mobile.js +2 -2
  443. package/select/modern/Component.responsive.js +3 -3
  444. package/select/modern/components/base-select/Component.js +2 -2
  445. package/select/modern/components/base-select/components/list-desktop/list-popover-desktop.js +1 -1
  446. package/select/modern/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js +1 -1
  447. package/select/modern/components/base-select/components/list-mobile/list-mobile.js +1 -1
  448. package/select/modern/components/base-select/components/list-mobile/list-modal-mobile.js +1 -1
  449. package/select/modern/components/base-select/index.js +2 -2
  450. package/select/modern/components/index.js +2 -2
  451. package/select/modern/desktop/Component.desktop.js +2 -2
  452. package/select/modern/desktop/index.js +2 -2
  453. package/select/modern/index.js +3 -3
  454. package/select/modern/mobile/Component.mobile.js +4 -3
  455. package/select/modern/mobile/Component.modal.mobile.js +3 -3
  456. package/select/modern/mobile/index.js +3 -3
  457. package/select/modern/presets/index.js +1 -1
  458. package/select/modern/presets/useSelectWithApply/hook.js +1 -1
  459. package/select/modern/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
  460. package/select/modern/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
  461. package/select/modern/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
  462. package/select/modern/shared/index.js +3 -3
  463. package/select/moderncssm/mobile/Component.mobile.js +1 -0
  464. package/select/presets/index.js +1 -1
  465. package/select/presets/useSelectWithApply/hook.js +1 -1
  466. package/select/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
  467. package/select/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
  468. package/select/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
  469. package/select/shared/index.js +1 -1
  470. package/select-with-tags/components/base-select-with-tags/Component.js +1 -0
  471. package/select-with-tags/cssm/components/base-select-with-tags/Component.js +1 -0
  472. package/select-with-tags/esm/components/base-select-with-tags/Component.js +1 -0
  473. package/select-with-tags/modern/components/base-select-with-tags/Component.js +1 -0
  474. package/select-with-tags/moderncssm/components/base-select-with-tags/Component.js +1 -0
  475. package/side-panel/components/controls/Component.js +1 -1
  476. package/side-panel/components/footer/Component.js +1 -1
  477. package/side-panel/esm/Component.responsive.js +1 -1
  478. package/side-panel/esm/components/controls/Component.js +1 -1
  479. package/side-panel/esm/components/controls/index.js +1 -1
  480. package/side-panel/esm/components/footer/Component.desktop.js +1 -1
  481. package/side-panel/esm/components/footer/Component.js +1 -1
  482. package/side-panel/esm/components/footer/Component.mobile.js +1 -1
  483. package/side-panel/esm/desktop/Component.desktop.js +1 -1
  484. package/side-panel/esm/desktop/index.js +1 -1
  485. package/side-panel/esm/index.js +1 -1
  486. package/side-panel/esm/mobile/Component.mobile.js +1 -1
  487. package/side-panel/esm/mobile/index.js +1 -1
  488. package/side-panel/modern/Component.responsive.js +1 -1
  489. package/side-panel/modern/components/controls/Component.js +1 -1
  490. package/side-panel/modern/components/controls/index.js +1 -1
  491. package/side-panel/modern/components/footer/Component.desktop.js +1 -1
  492. package/side-panel/modern/components/footer/Component.js +1 -1
  493. package/side-panel/modern/components/footer/Component.mobile.js +1 -1
  494. package/side-panel/modern/desktop/Component.desktop.js +1 -1
  495. package/side-panel/modern/desktop/index.js +1 -1
  496. package/side-panel/modern/index.js +1 -1
  497. package/side-panel/modern/mobile/Component.mobile.js +1 -1
  498. package/side-panel/modern/mobile/index.js +1 -1
  499. package/tab-bar/cssm/index.module.css +1 -7
  500. package/tab-bar/esm/index.css +1 -7
  501. package/tab-bar/index.css +1 -7
  502. package/tab-bar/modern/index.css +1 -7
  503. package/tab-bar/moderncssm/index.module.css +4 -8
  504. package/tabs/components/primary-tablist/Component.collapsible.js +1 -1
  505. package/tabs/components/primary-tablist/Component.desktop.js +1 -1
  506. package/tabs/components/primary-tablist/Component.mobile.js +1 -1
  507. package/tabs/components/secondary-tablist/Component.desktop.js +1 -1
  508. package/tabs/components/secondary-tablist/Component.mobile.js +1 -1
  509. package/tabs/esm/collapsible/index.js +1 -1
  510. package/tabs/esm/components/primary-tablist/Component.collapsible.js +1 -1
  511. package/tabs/esm/components/primary-tablist/Component.desktop.js +1 -1
  512. package/tabs/esm/components/primary-tablist/Component.mobile.js +1 -1
  513. package/tabs/esm/components/primary-tablist/Component.responsive.js +1 -1
  514. package/tabs/esm/components/secondary-tablist/Component.desktop.js +1 -1
  515. package/tabs/esm/components/secondary-tablist/Component.mobile.js +1 -1
  516. package/tabs/esm/components/secondary-tablist/Component.responsive.js +1 -1
  517. package/tabs/esm/components/tabs/Component.collapsible.js +1 -1
  518. package/tabs/esm/components/tabs/Component.desktop.js +2 -2
  519. package/tabs/esm/components/tabs/Component.mobile.js +2 -2
  520. package/tabs/esm/components/tabs/Component.responsive.js +2 -2
  521. package/tabs/esm/desktop/index.js +2 -2
  522. package/tabs/esm/index.js +2 -2
  523. package/tabs/esm/mobile/index.js +2 -2
  524. package/tabs/modern/collapsible/index.js +1 -1
  525. package/tabs/modern/components/primary-tablist/Component.collapsible.js +1 -1
  526. package/tabs/modern/components/primary-tablist/Component.desktop.js +1 -1
  527. package/tabs/modern/components/primary-tablist/Component.mobile.js +1 -1
  528. package/tabs/modern/components/primary-tablist/Component.responsive.js +1 -1
  529. package/tabs/modern/components/secondary-tablist/Component.desktop.js +1 -1
  530. package/tabs/modern/components/secondary-tablist/Component.mobile.js +1 -1
  531. package/tabs/modern/components/secondary-tablist/Component.responsive.js +1 -1
  532. package/tabs/modern/components/tabs/Component.collapsible.js +1 -1
  533. package/tabs/modern/components/tabs/Component.desktop.js +2 -2
  534. package/tabs/modern/components/tabs/Component.mobile.js +2 -2
  535. package/tabs/modern/components/tabs/Component.responsive.js +2 -2
  536. package/tabs/modern/desktop/index.js +2 -2
  537. package/tabs/modern/index.js +2 -2
  538. package/tabs/modern/mobile/index.js +2 -2
  539. package/themes/bottom-sheet/click.css +0 -3
  540. package/themes/click.css +0 -3
  541. package/themes/click.d.ts +1 -1
  542. package/themes/click.js +1 -1
  543. package/themes/compiled/mobile-dark-bluetint.css +440 -421
  544. package/themes/compiled/mobile-dark-bluetint.d.ts +1 -1
  545. package/themes/compiled/mobile-dark-bluetint.js +1 -1
  546. package/themes/esm/click.d.ts +1 -1
  547. package/themes/esm/click.js +1 -1
  548. package/themes/esm/compiled/mobile-dark-bluetint.d.ts +1 -1
  549. package/themes/esm/compiled/mobile-dark-bluetint.js +1 -1
  550. package/themes/esm/intranet.d.ts +1 -1
  551. package/themes/esm/intranet.js +1 -1
  552. package/themes/esm/mobile.d.ts +1 -1
  553. package/themes/esm/mobile.js +1 -1
  554. package/themes/esm/site.d.ts +1 -1
  555. package/themes/esm/site.js +1 -1
  556. package/themes/intranet.css +0 -1
  557. package/themes/intranet.d.ts +1 -1
  558. package/themes/intranet.js +1 -1
  559. package/themes/mixins/bottom-sheet/click.css +0 -3
  560. package/themes/mixins/intranet.css +0 -2
  561. package/themes/mixins/mobile.css +0 -2
  562. package/themes/mixins/site.css +0 -2
  563. package/themes/mobile.css +0 -2
  564. package/themes/mobile.d.ts +1 -1
  565. package/themes/mobile.js +1 -1
  566. package/themes/modern/click.d.ts +1 -1
  567. package/themes/modern/click.js +0 -3
  568. package/themes/modern/compiled/mobile-dark-bluetint.d.ts +1 -1
  569. package/themes/modern/compiled/mobile-dark-bluetint.js +440 -421
  570. package/themes/modern/intranet.d.ts +1 -1
  571. package/themes/modern/intranet.js +0 -1
  572. package/themes/modern/mobile.d.ts +1 -1
  573. package/themes/modern/mobile.js +0 -2
  574. package/themes/modern/site.d.ts +1 -1
  575. package/themes/modern/site.js +0 -1
  576. package/themes/site.css +0 -1
  577. package/themes/site.d.ts +1 -1
  578. package/themes/site.js +1 -1
  579. package/tooltip/cssm/mobile/Component.mobile.js +1 -1
  580. package/tooltip/esm/mobile/Component.mobile.js +1 -1
  581. package/tooltip/mobile/Component.mobile.js +1 -1
  582. package/tooltip/modern/mobile/Component.mobile.js +1 -1
  583. package/tooltip/moderncssm/mobile/Component.mobile.js +1 -1
  584. package/typography/cssm/title/alfasans-index.module.css +10 -0
  585. package/typography/esm/component.js +2 -2
  586. package/typography/esm/index.js +2 -2
  587. package/typography/esm/text/component.js +1 -1
  588. package/typography/esm/text/index.js +1 -1
  589. package/typography/esm/title/component.js +1 -1
  590. package/typography/esm/title/index.js +2 -2
  591. package/typography/esm/title-mobile/component.js +2 -2
  592. package/typography/esm/title-mobile/index.js +2 -2
  593. package/typography/esm/title-responsive/component.js +2 -2
  594. package/typography/esm/title-responsive/index.js +2 -2
  595. package/typography/modern/component.js +2 -2
  596. package/typography/modern/index.js +2 -2
  597. package/typography/modern/text/component.js +1 -1
  598. package/typography/modern/text/index.js +1 -1
  599. package/typography/modern/title/component.js +1 -1
  600. package/typography/modern/title/index.js +2 -2
  601. package/typography/modern/title-mobile/component.js +2 -2
  602. package/typography/modern/title-mobile/index.js +2 -2
  603. package/typography/modern/title-responsive/component.js +2 -2
  604. package/typography/modern/title-responsive/index.js +2 -2
  605. package/typography/moderncssm/text/alfasans-index.module.css +0 -16
  606. package/typography/moderncssm/title/alfasans-index.module.css +10 -0
  607. package/typography/text/component.js +1 -1
  608. package/typography/title/component.d.ts +1 -1
  609. package/typography/title/component.js +1 -1
  610. package/typography/title/index.d.ts +1 -1
  611. package/typography/title/index.js +1 -1
  612. package/typography/title-mobile/component.d.ts +1 -1
  613. package/typography/title-mobile/component.js +1 -1
  614. package/typography/title-responsive/component.d.ts +1 -1
  615. package/underlay/Component.js +1 -1
  616. package/underlay/cssm/index.module.css +13 -13
  617. package/underlay/esm/Component.js +1 -1
  618. package/underlay/esm/index.css +13 -13
  619. package/underlay/esm/index.js +1 -1
  620. package/underlay/esm/utils/getBorderCorners.js +1 -1
  621. package/underlay/esm/utils/getClasses.js +1 -1
  622. package/underlay/index.css +13 -13
  623. package/underlay/modern/Component.js +1 -1
  624. package/underlay/modern/index.css +13 -13
  625. package/underlay/modern/index.js +1 -1
  626. package/underlay/modern/utils/getBorderCorners.js +1 -1
  627. package/underlay/modern/utils/getClasses.js +1 -1
  628. package/underlay/moderncssm/index.module.css +1 -1
  629. package/underlay/utils/getBorderCorners.js +1 -1
  630. package/underlay/utils/getClasses.js +1 -1
  631. package/universal-date-input/cssm/index-5712fce2.d.ts +14 -0
  632. package/universal-date-input/esm/index-5712fce2.d.ts +14 -0
  633. package/universal-date-input/index-5712fce2.d.ts +14 -0
  634. package/universal-date-input/modern/index-5712fce2.d.ts +14 -0
  635. package/universal-date-input/moderncssm/index-5712fce2.d.ts +14 -0
  636. package/universal-modal/components/header/desktop/Component.desktop.js +1 -1
  637. package/universal-modal/components/header/mobile/Component.mobile.js +1 -1
  638. package/universal-modal/esm/Component.responsive.d.ts +4 -4
  639. package/universal-modal/esm/Component.responsive.js +1 -1
  640. package/universal-modal/esm/components/header/desktop/Component.desktop.js +1 -1
  641. package/universal-modal/esm/components/header/index.js +1 -1
  642. package/universal-modal/esm/components/header/mobile/Component.mobile.js +1 -1
  643. package/universal-modal/esm/components/header/responsive/Component.responsive.js +1 -1
  644. package/universal-modal/esm/desktop/Component.desktop.d.ts +2 -2
  645. package/universal-modal/esm/desktop/Component.desktop.js +1 -1
  646. package/universal-modal/esm/desktop/components/center-modal/center-modal.d.ts +1 -1
  647. package/universal-modal/esm/desktop/components/side-modal/side-modal.d.ts +1 -1
  648. package/universal-modal/esm/desktop/index.js +1 -1
  649. package/universal-modal/esm/index.js +1 -1
  650. package/universal-modal/esm/mobile/Component.mobile.d.ts +2 -2
  651. package/universal-modal/esm/mobile/Component.mobile.js +1 -1
  652. package/universal-modal/esm/mobile/index.js +1 -1
  653. package/universal-modal/modern/Component.responsive.js +1 -1
  654. package/universal-modal/modern/components/header/desktop/Component.desktop.js +1 -1
  655. package/universal-modal/modern/components/header/index.js +1 -1
  656. package/universal-modal/modern/components/header/mobile/Component.mobile.js +1 -1
  657. package/universal-modal/modern/components/header/responsive/Component.responsive.js +1 -1
  658. package/universal-modal/modern/desktop/Component.desktop.js +1 -1
  659. package/universal-modal/modern/desktop/index.js +1 -1
  660. package/universal-modal/modern/index.js +1 -1
  661. package/universal-modal/modern/mobile/Component.mobile.js +1 -1
  662. package/universal-modal/modern/mobile/index.js +1 -1
  663. package/vars/mixins.css +1 -1
  664. package/international-phone-input/index-235f6347.d.ts +0 -277
  665. package/international-phone-input/types-464d40a4.d.ts +0 -293
  666. package/themes/bottom-sheet/intranet.css +0 -3
  667. package/themes/bottom-sheet/mobile.css +0 -4
  668. package/themes/bottom-sheet/site.css +0 -3
  669. package/themes/mixins/bottom-sheet/intranet.css +0 -3
  670. package/themes/mixins/bottom-sheet/mobile.css +0 -4
  671. package/themes/mixins/bottom-sheet/site.css +0 -3
  672. /package/calendar/{calendarMonthOnlyView-9387df6a.d.ts → calendarMonthOnlyView-ae3554d3.d.ts} +0 -0
  673. /package/calendar/{calendarMonthOnlyView-9387df6a.js → calendarMonthOnlyView-ae3554d3.js} +0 -0
  674. /package/calendar/esm/{calendarMonthOnlyView-8c223aba.d.ts → calendarMonthOnlyView-57744d42.d.ts} +0 -0
  675. /package/calendar/esm/{calendarMonthOnlyView-8c223aba.js → calendarMonthOnlyView-57744d42.js} +0 -0
  676. /package/calendar/modern/{calendarMonthOnlyView-ab23a98d.d.ts → calendarMonthOnlyView-acdad43b.d.ts} +0 -0
  677. /package/calendar/modern/{calendarMonthOnlyView-ab23a98d.js → calendarMonthOnlyView-acdad43b.js} +0 -0
  678. /package/confirmation/{countdown-section-651b0e6c.d.ts → countdown-section-8e5606d8.d.ts} +0 -0
  679. /package/confirmation/{countdown-section-651b0e6c.js → countdown-section-8e5606d8.js} +0 -0
  680. /package/confirmation/esm/{countdown-section-1776b60e.d.ts → countdown-section-f1f836d4.d.ts} +0 -0
  681. /package/confirmation/esm/{countdown-section-1776b60e.js → countdown-section-f1f836d4.js} +0 -0
  682. /package/confirmation/modern/{countdown-section-75ee45f6.d.ts → countdown-section-81fc2619.d.ts} +0 -0
  683. /package/confirmation/modern/{countdown-section-75ee45f6.js → countdown-section-81fc2619.js} +0 -0
  684. /package/file-upload-item/{actions-control.module-a8d00632.js → actions-control.module-89fafdd1.js} +0 -0
  685. /package/file-upload-item/esm/{actions-control.module-86185915.js → actions-control.module-6d46bee9.js} +0 -0
  686. /package/file-upload-item/modern/{actions-control.module-b571dbe3.js → actions-control.module-f3f65872.js} +0 -0
  687. /package/gallery/esm/{hooks-0e7e2122.d.ts → hooks-e6ff26c2.d.ts} +0 -0
  688. /package/gallery/esm/{hooks-0e7e2122.js → hooks-e6ff26c2.js} +0 -0
  689. /package/gallery/{hooks-a9361672.d.ts → hooks-13137381.d.ts} +0 -0
  690. /package/gallery/{hooks-a9361672.js → hooks-13137381.js} +0 -0
  691. /package/gallery/modern/{hooks-7188b4af.d.ts → hooks-ce6f3214.d.ts} +0 -0
  692. /package/gallery/modern/{hooks-7188b4af.js → hooks-ce6f3214.js} +0 -0
  693. /package/list/{Component-c467565e.d.ts → Component-d8e8e561.d.ts} +0 -0
  694. /package/list/{Component-c467565e.js → Component-d8e8e561.js} +0 -0
  695. /package/list/esm/{Component-f356b84f.d.ts → Component-798079a1.d.ts} +0 -0
  696. /package/list/esm/{Component-f356b84f.js → Component-798079a1.js} +0 -0
  697. /package/list/modern/{Component-8b757227.d.ts → Component-62f5c191.d.ts} +0 -0
  698. /package/list/modern/{Component-8b757227.js → Component-62f5c191.js} +0 -0
  699. /package/modal/esm/{layout.module-865d13fc.js → layout.module-451a6c6e.js} +0 -0
  700. /package/modal/{layout.module-6314c4f6.js → layout.module-9106d1aa.js} +0 -0
  701. /package/modal/modern/{layout.module-e3bafb3b.js → layout.module-7b011b62.js} +0 -0
  702. /package/pure-cell/{component-3cca70a8.d.ts → component-4ce0344f.d.ts} +0 -0
  703. /package/pure-cell/{component-3cca70a8.js → component-4ce0344f.js} +0 -0
  704. /package/pure-cell/esm/{component-bd09c34c.d.ts → component-3be0ed17.d.ts} +0 -0
  705. /package/pure-cell/esm/{component-bd09c34c.js → component-3be0ed17.js} +0 -0
  706. /package/pure-cell/modern/{component-3170301e.d.ts → component-7ee1b6f6.d.ts} +0 -0
  707. /package/pure-cell/modern/{component-3170301e.js → component-7ee1b6f6.js} +0 -0
  708. /package/select/esm/{hook-ead48ce0.d.ts → hook-ec604dd8.d.ts} +0 -0
  709. /package/select/esm/{hook-ead48ce0.js → hook-ec604dd8.js} +0 -0
  710. /package/select/esm/{list-popover-desktop-dfbee153.d.ts → list-popover-desktop-09250785.d.ts} +0 -0
  711. /package/select/esm/{list-popover-desktop-dfbee153.js → list-popover-desktop-09250785.js} +0 -0
  712. /package/select/esm/{mobile.module-82d5a12a.js → mobile.module-5186258d.js} +0 -0
  713. /package/select/{hook-378136f7.d.ts → hook-009721bc.d.ts} +0 -0
  714. /package/select/{hook-378136f7.js → hook-009721bc.js} +0 -0
  715. /package/select/{list-popover-desktop-40ad7c9e.d.ts → list-popover-desktop-0dbaa593.d.ts} +0 -0
  716. /package/select/{list-popover-desktop-40ad7c9e.js → list-popover-desktop-0dbaa593.js} +0 -0
  717. /package/select/{mobile.module-325bde99.js → mobile.module-c6844b03.js} +0 -0
  718. /package/select/modern/{hook-3dd3f16d.d.ts → hook-626d9e78.d.ts} +0 -0
  719. /package/select/modern/{hook-3dd3f16d.js → hook-626d9e78.js} +0 -0
  720. /package/select/modern/{list-popover-desktop-c77777c8.d.ts → list-popover-desktop-b8b8dfb0.d.ts} +0 -0
  721. /package/select/modern/{list-popover-desktop-c77777c8.js → list-popover-desktop-b8b8dfb0.js} +0 -0
  722. /package/select/modern/{mobile.module-ffc9c3a5.js → mobile.module-1be9c79e.js} +0 -0
  723. /package/side-panel/esm/{layout.module-1ad954ab.js → layout.module-967e9373.js} +0 -0
  724. /package/side-panel/{layout.module-609eebc7.js → layout.module-d253bd44.js} +0 -0
  725. /package/side-panel/modern/{layout.module-0e290f8e.js → layout.module-05cf0c8b.js} +0 -0
  726. /package/tabs/esm/{index.module-d5b4798f.js → index.module-71c7b809.js} +0 -0
  727. /package/tabs/esm/{index.module-65ac9084.js → index.module-c7b1270c.js} +0 -0
  728. /package/tabs/{index.module-730e5da6.js → index.module-01c05e46.js} +0 -0
  729. /package/tabs/{index.module-45bfce70.js → index.module-59aefec7.js} +0 -0
  730. /package/tabs/modern/{index.module-03185542.js → index.module-2e43b405.js} +0 -0
  731. /package/tabs/modern/{index.module-5c5d366e.js → index.module-770b3536.js} +0 -0
  732. /package/typography/{colors.module-ab3fe803.js → colors.module-a6e0da27.js} +0 -0
  733. /package/typography/{common.module-e96c83f3.js → common.module-c7f0e486.js} +0 -0
  734. /package/typography/esm/{colors.module-faa4d4fc.js → colors.module-b73c8885.js} +0 -0
  735. /package/typography/esm/{common.module-cfe81402.js → common.module-f2307db8.js} +0 -0
  736. /package/typography/modern/{colors.module-571427f1.js → colors.module-fde05f10.js} +0 -0
  737. /package/typography/modern/{common.module-4cd410f7.js → common.module-a5dc65e9.js} +0 -0
  738. /package/underlay/esm/{index.module-cca3b871.js → index.module-0952e8df.js} +0 -0
  739. /package/underlay/{index.module-85882065.js → index.module-749d95bc.js} +0 -0
  740. /package/underlay/modern/{index.module-39af6e8f.js → index.module-5f1b2ac1.js} +0 -0
  741. /package/universal-modal/esm/{index.module-be0199ee.js → index.module-f796cf80.js} +0 -0
  742. /package/universal-modal/{index.module-0d86949c.js → index.module-26b1b7d5.js} +0 -0
  743. /package/universal-modal/modern/{index.module-ee058ea2.js → index.module-94595b39.js} +0 -0
@@ -33,7 +33,7 @@ var TooltipMobile = function (_a) {
33
33
  }
34
34
  };
35
35
  return (React__default.default.createElement(React.Fragment, null,
36
- React__default.default.createElement(coreComponentsBottomSheet.BottomSheet, tslib.__assign({ open: show, actionButton: React__default.default.createElement(mobile.ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle) }, restProps, { container: getPortalContainer, onClose: handleClose }), content),
36
+ React__default.default.createElement(coreComponentsBottomSheet.BottomSheet, tslib.__assign({ open: show, actionButton: React__default.default.createElement(mobile.ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle) }, restProps, { container: getPortalContainer, onClose: handleClose, isSwipeMarkerAvailable: false }), content),
37
37
  React__default.default.createElement(TargetTag, { ref: targetRef, onClick: handleOpen, className: cn__default.default(styles__default.default.target, targetClassName, (_b = {},
38
38
  _b[styles__default.default.inline] = TargetTag === 'span',
39
39
  _b)) },
@@ -27,7 +27,7 @@ var TooltipMobile = function (_a) {
27
27
  }
28
28
  };
29
29
  return (React.createElement(Fragment, null,
30
- React.createElement(BottomSheet, __assign({ open: show, actionButton: React.createElement(ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle) }, restProps, { container: getPortalContainer, onClose: handleClose }), content),
30
+ React.createElement(BottomSheet, __assign({ open: show, actionButton: React.createElement(ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle) }, restProps, { container: getPortalContainer, onClose: handleClose, isSwipeMarkerAvailable: false }), content),
31
31
  React.createElement(TargetTag, { ref: targetRef, onClick: handleOpen, className: cn(styles.target, targetClassName, (_b = {},
32
32
  _b[styles.inline] = TargetTag === 'span',
33
33
  _b)) },
@@ -34,7 +34,7 @@ var TooltipMobile = function (_a) {
34
34
  }
35
35
  };
36
36
  return (React__default.default.createElement(React.Fragment, null,
37
- React__default.default.createElement(coreComponentsBottomSheet.BottomSheet, tslib.__assign({ open: show, actionButton: React__default.default.createElement(mobile.ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle) }, restProps, { container: getPortalContainer, onClose: handleClose }), content),
37
+ React__default.default.createElement(coreComponentsBottomSheet.BottomSheet, tslib.__assign({ open: show, actionButton: React__default.default.createElement(mobile.ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle) }, restProps, { container: getPortalContainer, onClose: handleClose, isSwipeMarkerAvailable: false }), content),
38
38
  React__default.default.createElement(TargetTag, { ref: targetRef, onClick: handleOpen, className: cn__default.default(styles.target, targetClassName, (_b = {},
39
39
  _b[styles.inline] = TargetTag === 'span',
40
40
  _b)) },
@@ -24,7 +24,7 @@ const TooltipMobile = ({ onClose, actionButtonTitle = 'Понятно', content,
24
24
  }
25
25
  };
26
26
  return (React.createElement(Fragment, null,
27
- React.createElement(BottomSheet, { open: show, actionButton: React.createElement(ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle), ...restProps, container: getPortalContainer, onClose: handleClose }, content),
27
+ React.createElement(BottomSheet, { open: show, actionButton: React.createElement(ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle), ...restProps, container: getPortalContainer, onClose: handleClose, isSwipeMarkerAvailable: false }, content),
28
28
  React.createElement(TargetTag, { ref: targetRef, onClick: handleOpen, className: cn(styles.target, targetClassName, {
29
29
  [styles.inline]: TargetTag === 'span',
30
30
  }) },
@@ -22,7 +22,7 @@ const TooltipMobile = ({ onClose, actionButtonTitle = 'Понятно', content,
22
22
  }
23
23
  };
24
24
  return (React.createElement(Fragment, null,
25
- React.createElement(BottomSheet, { open: show, actionButton: React.createElement(ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle), ...restProps, container: getPortalContainer, onClose: handleClose }, content),
25
+ React.createElement(BottomSheet, { open: show, actionButton: React.createElement(ButtonMobile, { view: 'secondary', block: true, size: 56, onClick: handleClose }, actionButtonTitle), ...restProps, container: getPortalContainer, onClose: handleClose, isSwipeMarkerAvailable: false }, content),
26
26
  React.createElement(TargetTag, { ref: targetRef, onClick: handleOpen, className: cn(styles.target, targetClassName, {
27
27
  [styles.inline]: TargetTag === 'span',
28
28
  }) },
@@ -29,6 +29,7 @@
29
29
  letter-spacing: 0.1px;
30
30
  font-family: var(--font-family-alfasans)
31
31
  } .alfasans-xlarge.systemCompat {
32
+ line-height: 52px;
32
33
  } .alfasans-large {
33
34
  font-size: 40px;
34
35
  line-height: 48px;
@@ -43,6 +44,9 @@
43
44
  letter-spacing: 0.3px;
44
45
  font-family: var(--font-family-alfasans)
45
46
  } .alfasans-medium.systemCompat {
47
+ font-size: 30px;
48
+ line-height: 36px;
49
+ letter-spacing: 0.1px;
46
50
  } .alfasans-small {
47
51
  font-size: 24px;
48
52
  line-height: 32px;
@@ -50,6 +54,9 @@
50
54
  letter-spacing: 0.39px;
51
55
  font-family: var(--font-family-alfasans)
52
56
  } .alfasans-small.systemCompat {
57
+ font-size: 22px;
58
+ line-height: 26px;
59
+ letter-spacing: 0.2px;
53
60
  } .alfasans-xsmall {
54
61
  font-size: 20px;
55
62
  line-height: 24px;
@@ -57,4 +64,7 @@
57
64
  letter-spacing: 0.33px;
58
65
  font-family: var(--font-family-alfasans)
59
66
  } .alfasans-xsmall.systemCompat {
67
+ font-size: 18px;
68
+ line-height: 22px;
69
+ letter-spacing: 0.38px;
60
70
  }
@@ -7,11 +7,11 @@ import 'react';
7
7
  import 'react-merge-refs';
8
8
  import 'classnames';
9
9
  import '../../skeleton/esm';
10
- import './colors.module-faa4d4fc.js';
10
+ import './colors.module-b73c8885.js';
11
11
  import './title/component.js';
12
12
  import '../../shared/esm';
13
13
  import './title/utils.js';
14
- import './common.module-cfe81402.js';
14
+ import './common.module-f2307db8.js';
15
15
  import '../../mq/esm';
16
16
 
17
17
  var Typography = {
@@ -9,9 +9,9 @@ import 'react';
9
9
  import 'react-merge-refs';
10
10
  import 'classnames';
11
11
  import '../../skeleton/esm';
12
- import './colors.module-faa4d4fc.js';
12
+ import './colors.module-b73c8885.js';
13
13
  import './title/component.js';
14
14
  import '../../shared/esm';
15
15
  import './title/utils.js';
16
- import './common.module-cfe81402.js';
16
+ import './common.module-f2307db8.js';
17
17
  import '../../mq/esm';
@@ -3,7 +3,7 @@ import React, { forwardRef } from 'react';
3
3
  import mergeRefs from 'react-merge-refs';
4
4
  import cn from 'classnames';
5
5
  import { useSkeleton } from '../../../skeleton/esm';
6
- import { c as colors } from '../colors.module-faa4d4fc.js';
6
+ import { c as colors } from '../colors.module-b73c8885.js';
7
7
 
8
8
  var alfasansStyles = {"text":"typography__text_10k8l","component":"typography__component_10k8l","caps":"typography__caps_10k8l","tagline":"typography__tagline_10k8l","primary-large":"typography__primary-large_10k8l","bold":"typography__bold_10k8l","medium":"typography__medium_10k8l","primary-medium":"typography__primary-medium_10k8l","primary-small":"typography__primary-small_10k8l","component-primary":"typography__component-primary_10k8l","secondary-large":"typography__secondary-large_10k8l","secondary-medium":"typography__secondary-medium_10k8l","secondary-small":"typography__secondary-small_10k8l","component-secondary":"typography__component-secondary_10k8l"};
9
9
  require('./alfasans-index.css');
@@ -4,4 +4,4 @@ import 'react';
4
4
  import 'react-merge-refs';
5
5
  import 'classnames';
6
6
  import '../../../skeleton/esm';
7
- import '../colors.module-faa4d4fc.js';
7
+ import '../colors.module-b73c8885.js';
@@ -5,7 +5,7 @@ import cn from 'classnames';
5
5
  import { isObject } from '../../../shared/esm';
6
6
  import { useSkeleton } from '../../../skeleton/esm';
7
7
  import { getDefaultWeight } from './utils.js';
8
- import { c as colors } from '../colors.module-faa4d4fc.js';
8
+ import { c as colors } from '../colors.module-b73c8885.js';
9
9
 
10
10
  var TitleBase = forwardRef(function (_a, ref) {
11
11
  var _b;
@@ -1,13 +1,13 @@
1
1
  import { __assign } from 'tslib';
2
2
  import React, { forwardRef } from 'react';
3
3
  import { TitleBase } from './component.js';
4
- import { c as commonStyles } from '../common.module-cfe81402.js';
4
+ import { c as commonStyles } from '../common.module-f2307db8.js';
5
5
  import 'react-merge-refs';
6
6
  import 'classnames';
7
7
  import '../../../shared/esm';
8
8
  import '../../../skeleton/esm';
9
9
  import './utils.js';
10
- import '../colors.module-faa4d4fc.js';
10
+ import '../colors.module-b73c8885.js';
11
11
 
12
12
  var alfasansStyles = {"alfasans-xlarge":"typography__alfasans-xlarge_fg5ut","systemCompat":"typography__systemCompat_fg5ut","alfasans-large":"typography__alfasans-large_fg5ut","alfasans-medium":"typography__alfasans-medium_fg5ut","alfasans-small":"typography__alfasans-small_fg5ut","alfasans-xsmall":"typography__alfasans-xsmall_fg5ut"};
13
13
  require('./alfasans-index.css');
@@ -1,13 +1,13 @@
1
1
  import { __assign } from 'tslib';
2
2
  import React, { forwardRef } from 'react';
3
3
  import { TitleBase } from '../title/component.js';
4
- import { c as commonStyles } from '../common.module-cfe81402.js';
4
+ import { c as commonStyles } from '../common.module-f2307db8.js';
5
5
  import 'react-merge-refs';
6
6
  import 'classnames';
7
7
  import '../../../shared/esm';
8
8
  import '../../../skeleton/esm';
9
9
  import '../title/utils.js';
10
- import '../colors.module-faa4d4fc.js';
10
+ import '../colors.module-b73c8885.js';
11
11
 
12
12
  var alfasansStyles = {"alfasans-xlarge":"typography__alfasans-xlarge_1xs3p","systemCompat":"typography__systemCompat_1xs3p","alfasans-large":"typography__alfasans-large_1xs3p","alfasans-medium":"typography__alfasans-medium_1xs3p","alfasans-small":"typography__alfasans-small_1xs3p","alfasans-xsmall":"typography__alfasans-xsmall_1xs3p"};
13
13
  require('./alfasans-index.css');
@@ -7,5 +7,5 @@ import 'classnames';
7
7
  import '../../../shared/esm';
8
8
  import '../../../skeleton/esm';
9
9
  import '../title/utils.js';
10
- import '../colors.module-faa4d4fc.js';
11
- import '../common.module-cfe81402.js';
10
+ import '../colors.module-b73c8885.js';
11
+ import '../common.module-f2307db8.js';
@@ -9,8 +9,8 @@ import 'classnames';
9
9
  import '../../../shared/esm';
10
10
  import '../../../skeleton/esm';
11
11
  import '../title/utils.js';
12
- import '../colors.module-faa4d4fc.js';
13
- import '../common.module-cfe81402.js';
12
+ import '../colors.module-b73c8885.js';
13
+ import '../common.module-f2307db8.js';
14
14
 
15
15
  var TitleResponsive = forwardRef(function (_a, ref) {
16
16
  var breakpoint = _a.breakpoint, client = _a.client, restProps = __rest(_a, ["breakpoint", "client"]);
@@ -9,6 +9,6 @@ import 'classnames';
9
9
  import '../../../shared/esm';
10
10
  import '../../../skeleton/esm';
11
11
  import '../title/utils.js';
12
- import '../colors.module-faa4d4fc.js';
13
- import '../common.module-cfe81402.js';
12
+ import '../colors.module-b73c8885.js';
13
+ import '../common.module-f2307db8.js';
14
14
  import '../title-mobile/component.js';
@@ -6,11 +6,11 @@ import 'react';
6
6
  import 'react-merge-refs';
7
7
  import 'classnames';
8
8
  import '../../skeleton/modern';
9
- import './colors.module-571427f1.js';
9
+ import './colors.module-fde05f10.js';
10
10
  import './title/component.js';
11
11
  import '../../shared/modern';
12
12
  import './title/utils.js';
13
- import './common.module-4cd410f7.js';
13
+ import './common.module-a5dc65e9.js';
14
14
  import '../../mq/modern';
15
15
 
16
16
  const Typography = {
@@ -8,9 +8,9 @@ import 'react';
8
8
  import 'react-merge-refs';
9
9
  import 'classnames';
10
10
  import '../../skeleton/modern';
11
- import './colors.module-571427f1.js';
11
+ import './colors.module-fde05f10.js';
12
12
  import './title/component.js';
13
13
  import '../../shared/modern';
14
14
  import './title/utils.js';
15
- import './common.module-4cd410f7.js';
15
+ import './common.module-a5dc65e9.js';
16
16
  import '../../mq/modern';
@@ -2,7 +2,7 @@ import React, { forwardRef } from 'react';
2
2
  import mergeRefs from 'react-merge-refs';
3
3
  import cn from 'classnames';
4
4
  import { useSkeleton } from '../../../skeleton/modern';
5
- import { c as colors } from '../colors.module-571427f1.js';
5
+ import { c as colors } from '../colors.module-fde05f10.js';
6
6
 
7
7
  const alfasansStyles = {"text":"typography__text_10k8l","component":"typography__component_10k8l","caps":"typography__caps_10k8l","tagline":"typography__tagline_10k8l","primary-large":"typography__primary-large_10k8l","bold":"typography__bold_10k8l","medium":"typography__medium_10k8l","primary-medium":"typography__primary-medium_10k8l","primary-small":"typography__primary-small_10k8l","component-primary":"typography__component-primary_10k8l","secondary-large":"typography__secondary-large_10k8l","secondary-medium":"typography__secondary-medium_10k8l","secondary-small":"typography__secondary-small_10k8l","component-secondary":"typography__component-secondary_10k8l"};
8
8
  require('./alfasans-index.css');
@@ -3,4 +3,4 @@ import 'react';
3
3
  import 'react-merge-refs';
4
4
  import 'classnames';
5
5
  import '../../../skeleton/modern';
6
- import '../colors.module-571427f1.js';
6
+ import '../colors.module-fde05f10.js';
@@ -4,7 +4,7 @@ import cn from 'classnames';
4
4
  import { isObject } from '../../../shared/modern';
5
5
  import { useSkeleton } from '../../../skeleton/modern';
6
6
  import { getDefaultWeight } from './utils.js';
7
- import { c as colors } from '../colors.module-571427f1.js';
7
+ import { c as colors } from '../colors.module-fde05f10.js';
8
8
 
9
9
  const TitleBase = forwardRef(({ tag: Component = 'div', view = 'medium', font: fontProp = 'styrene', platform, weight = getDefaultWeight(isObject(fontProp) ? fontProp.font : fontProp, platform), defaultMargins = false, color, className, dataTestId, children, rowLimit, styles, skeletonProps, showSkeleton, ...restProps }, ref) => {
10
10
  const { renderSkeleton, textRef } = useSkeleton(showSkeleton, skeletonProps);
@@ -1,12 +1,12 @@
1
1
  import React, { forwardRef } from 'react';
2
2
  import { TitleBase } from './component.js';
3
- import { c as commonStyles } from '../common.module-4cd410f7.js';
3
+ import { c as commonStyles } from '../common.module-a5dc65e9.js';
4
4
  import 'react-merge-refs';
5
5
  import 'classnames';
6
6
  import '../../../shared/modern';
7
7
  import '../../../skeleton/modern';
8
8
  import './utils.js';
9
- import '../colors.module-571427f1.js';
9
+ import '../colors.module-fde05f10.js';
10
10
 
11
11
  const alfasansStyles = {"alfasans-xlarge":"typography__alfasans-xlarge_fg5ut","systemCompat":"typography__systemCompat_fg5ut","alfasans-large":"typography__alfasans-large_fg5ut","alfasans-medium":"typography__alfasans-medium_fg5ut","alfasans-small":"typography__alfasans-small_fg5ut","alfasans-xsmall":"typography__alfasans-xsmall_fg5ut"};
12
12
  require('./alfasans-index.css');
@@ -1,12 +1,12 @@
1
1
  import React, { forwardRef } from 'react';
2
2
  import { TitleBase } from '../title/component.js';
3
- import { c as commonStyles } from '../common.module-4cd410f7.js';
3
+ import { c as commonStyles } from '../common.module-a5dc65e9.js';
4
4
  import 'react-merge-refs';
5
5
  import 'classnames';
6
6
  import '../../../shared/modern';
7
7
  import '../../../skeleton/modern';
8
8
  import '../title/utils.js';
9
- import '../colors.module-571427f1.js';
9
+ import '../colors.module-fde05f10.js';
10
10
 
11
11
  const alfasansStyles = {"alfasans-xlarge":"typography__alfasans-xlarge_1xs3p","systemCompat":"typography__systemCompat_1xs3p","alfasans-large":"typography__alfasans-large_1xs3p","alfasans-medium":"typography__alfasans-medium_1xs3p","alfasans-small":"typography__alfasans-small_1xs3p","alfasans-xsmall":"typography__alfasans-xsmall_1xs3p"};
12
12
  require('./alfasans-index.css');
@@ -6,5 +6,5 @@ import 'classnames';
6
6
  import '../../../shared/modern';
7
7
  import '../../../skeleton/modern';
8
8
  import '../title/utils.js';
9
- import '../colors.module-571427f1.js';
10
- import '../common.module-4cd410f7.js';
9
+ import '../colors.module-fde05f10.js';
10
+ import '../common.module-a5dc65e9.js';
@@ -8,8 +8,8 @@ import 'classnames';
8
8
  import '../../../shared/modern';
9
9
  import '../../../skeleton/modern';
10
10
  import '../title/utils.js';
11
- import '../colors.module-571427f1.js';
12
- import '../common.module-4cd410f7.js';
11
+ import '../colors.module-fde05f10.js';
12
+ import '../common.module-a5dc65e9.js';
13
13
 
14
14
  const TitleResponsive = forwardRef(({ breakpoint, client, ...restProps }, ref) => {
15
15
  const isDesktop = useIsDesktop(breakpoint, client === 'desktop');
@@ -8,6 +8,6 @@ import 'classnames';
8
8
  import '../../../shared/modern';
9
9
  import '../../../skeleton/modern';
10
10
  import '../title/utils.js';
11
- import '../colors.module-571427f1.js';
12
- import '../common.module-4cd410f7.js';
11
+ import '../colors.module-fde05f10.js';
12
+ import '../common.module-a5dc65e9.js';
13
13
  import '../title-mobile/component.js';
@@ -50,9 +50,7 @@
50
50
  letter-spacing: -0.36px;
51
51
  font-family: var(--font-family-alfasans)
52
52
  } .text.primary-large.bold {
53
- letter-spacing: 0.38px;
54
53
  } .text.primary-large.medium {
55
- letter-spacing: 0.17px;
56
54
  } .text.primary-medium {
57
55
  /* prettier-ignore */
58
56
  font-size: 16px;
@@ -61,9 +59,7 @@
61
59
  letter-spacing: -0.24px;
62
60
  font-family: var(--font-family-alfasans)
63
61
  } .text.primary-medium.bold {
64
- letter-spacing: 0.43px;
65
62
  } .text.primary-medium.medium {
66
- letter-spacing: 0.17px;
67
63
  } .text.primary-small {
68
64
  /* prettier-ignore */
69
65
  font-size: 14px;
@@ -72,9 +68,7 @@
72
68
  letter-spacing: -0.08px;
73
69
  font-family: var(--font-family-alfasans)
74
70
  } .text.primary-small.bold {
75
- letter-spacing: 0.47px;
76
71
  } .text.primary-small.medium {
77
- letter-spacing: 0.27px;
78
72
  } .text.component-primary {
79
73
  font-size: 16px;
80
74
  line-height: 20px;
@@ -82,9 +76,7 @@
82
76
  letter-spacing: -0.24px;
83
77
  font-family: var(--font-family-alfasans)
84
78
  } .text.component-primary.bold {
85
- letter-spacing: 0.43px;
86
79
  } .text.component-primary.medium {
87
- letter-spacing: 0.17px;
88
80
  } .text.secondary-large {
89
81
  /* prettier-ignore */
90
82
  font-size: 13px;
@@ -93,9 +85,7 @@
93
85
  letter-spacing: 0;
94
86
  font-family: var(--font-family-alfasans)
95
87
  } .text.secondary-large.bold {
96
- letter-spacing: 0.54px;
97
88
  } .text.secondary-large.medium {
98
- letter-spacing: 0.33px;
99
89
  } .text.secondary-medium {
100
90
  /* prettier-ignore */
101
91
  font-size: 12px;
@@ -104,9 +94,7 @@
104
94
  letter-spacing: 0.06px;
105
95
  font-family: var(--font-family-alfasans)
106
96
  } .text.secondary-medium.bold {
107
- letter-spacing: 0.57px;
108
97
  } .text.secondary-medium.medium {
109
- letter-spacing: 0.38px;
110
98
  } .text.secondary-small {
111
99
  /* prettier-ignore */
112
100
  font-size: 11px;
@@ -115,9 +103,7 @@
115
103
  letter-spacing: 0.15px;
116
104
  font-family: var(--font-family-alfasans)
117
105
  } .text.secondary-small.bold {
118
- letter-spacing: 0.54px;
119
106
  } .text.secondary-small.medium {
120
- letter-spacing: 0.41px;
121
107
  } .text.component-secondary {
122
108
  font-size: 14px;
123
109
  line-height: 18px;
@@ -125,9 +111,7 @@
125
111
  letter-spacing: -0.08px;
126
112
  font-family: var(--font-family-alfasans)
127
113
  } .text.component-secondary.bold {
128
- letter-spacing: 0.47px;
129
114
  } .text.component-secondary.medium {
130
- letter-spacing: 0.27px;
131
115
  } .text.bold {
132
116
  font-weight: 700;
133
117
  } .text.medium {
@@ -29,6 +29,7 @@
29
29
  letter-spacing: 0.1px;
30
30
  font-family: var(--font-family-alfasans)
31
31
  } .alfasans-xlarge.systemCompat {
32
+ line-height: 52px;
32
33
  } .alfasans-large {
33
34
  font-size: 40px;
34
35
  line-height: 48px;
@@ -43,6 +44,9 @@
43
44
  letter-spacing: 0.3px;
44
45
  font-family: var(--font-family-alfasans)
45
46
  } .alfasans-medium.systemCompat {
47
+ font-size: 30px;
48
+ line-height: 36px;
49
+ letter-spacing: 0.1px;
46
50
  } .alfasans-small {
47
51
  font-size: 24px;
48
52
  line-height: 32px;
@@ -50,6 +54,9 @@
50
54
  letter-spacing: 0.39px;
51
55
  font-family: var(--font-family-alfasans)
52
56
  } .alfasans-small.systemCompat {
57
+ font-size: 22px;
58
+ line-height: 26px;
59
+ letter-spacing: 0.2px;
53
60
  } .alfasans-xsmall {
54
61
  font-size: 20px;
55
62
  line-height: 24px;
@@ -57,4 +64,7 @@
57
64
  letter-spacing: 0.33px;
58
65
  font-family: var(--font-family-alfasans)
59
66
  } .alfasans-xsmall.systemCompat {
67
+ font-size: 18px;
68
+ line-height: 22px;
69
+ letter-spacing: 0.38px;
60
70
  }
@@ -5,7 +5,7 @@ var React = require('react');
5
5
  var mergeRefs = require('react-merge-refs');
6
6
  var cn = require('classnames');
7
7
  var coreComponentsSkeleton = require('../../skeleton');
8
- var colors_module = require('../colors.module-ab3fe803.js');
8
+ var colors_module = require('../colors.module-a6e0da27.js');
9
9
 
10
10
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
11
11
 
@@ -80,7 +80,7 @@ declare const TitleBase: React.ForwardRefExoticComponent<Omit<NativeProps, "colo
80
80
  /**
81
81
  * Цвет текста
82
82
  */
83
- color?: "tertiary" | "disabled" | "accent" | "primary" | "attention" | "positive" | "secondary" | "tertiary-inverted" | "primary-inverted" | "secondary-inverted" | "link" | "negative" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-accent" | "static-positive" | undefined;
83
+ color?: "link" | "tertiary" | "disabled" | "accent" | "primary" | "attention" | "positive" | "secondary" | "tertiary-inverted" | "primary-inverted" | "secondary-inverted" | "negative" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-accent" | "static-positive" | undefined;
84
84
  /**
85
85
  * Толщина шрифта
86
86
  */
@@ -7,7 +7,7 @@ var cn = require('classnames');
7
7
  var coreComponentsShared = require('../../shared');
8
8
  var coreComponentsSkeleton = require('../../skeleton');
9
9
  var title_utils = require('./utils.js');
10
- var colors_module = require('../colors.module-ab3fe803.js');
10
+ var colors_module = require('../colors.module-a6e0da27.js');
11
11
 
12
12
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
13
13
 
@@ -4,7 +4,7 @@ import { TitleProps } from "./component";
4
4
  declare const Title: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLHeadingElement>, "color"> & {
5
5
  tag: "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
6
6
  view?: "small" | "medium" | "xlarge" | "large" | "xsmall" | undefined;
7
- color?: "tertiary" | "disabled" | "accent" | "primary" | "attention" | "positive" | "secondary" | "tertiary-inverted" | "primary-inverted" | "secondary-inverted" | "link" | "negative" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-accent" | "static-positive" | undefined;
7
+ color?: "link" | "tertiary" | "disabled" | "accent" | "primary" | "attention" | "positive" | "secondary" | "tertiary-inverted" | "primary-inverted" | "secondary-inverted" | "negative" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-accent" | "static-positive" | undefined;
8
8
  weight?: "bold" | "regular" | "medium" | "semibold" | undefined;
9
9
  font?: "alfasans" | "styrene" | "system" | {
10
10
  font: "alfasans";
@@ -3,7 +3,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
3
3
  var tslib = require('tslib');
4
4
  var React = require('react');
5
5
  var title_component = require('./component.js');
6
- var common_module = require('../common.module-e96c83f3.js');
6
+ var common_module = require('../common.module-c7f0e486.js');
7
7
 
8
8
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
9
9
 
@@ -3,7 +3,7 @@ import React from 'react';
3
3
  declare const TitleMobile: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLHeadingElement>, "color"> & {
4
4
  tag: "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
5
5
  view?: "small" | "medium" | "xlarge" | "large" | "xsmall" | undefined;
6
- color?: "tertiary" | "disabled" | "accent" | "primary" | "attention" | "positive" | "secondary" | "tertiary-inverted" | "primary-inverted" | "secondary-inverted" | "link" | "negative" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-accent" | "static-positive" | undefined;
6
+ color?: "link" | "tertiary" | "disabled" | "accent" | "primary" | "attention" | "positive" | "secondary" | "tertiary-inverted" | "primary-inverted" | "secondary-inverted" | "negative" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-accent" | "static-positive" | undefined;
7
7
  weight?: "bold" | "regular" | "medium" | "semibold" | undefined;
8
8
  font?: "alfasans" | "styrene" | "system" | {
9
9
  font: "alfasans";
@@ -3,7 +3,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
3
3
  var tslib = require('tslib');
4
4
  var React = require('react');
5
5
  var title_component = require('../title/component.js');
6
- var common_module = require('../common.module-e96c83f3.js');
6
+ var common_module = require('../common.module-c7f0e486.js');
7
7
 
8
8
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
9
9
 
@@ -15,7 +15,7 @@ type TitleResponsiveProps = TitleProps & {
15
15
  declare const TitleResponsive: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLHeadingElement>, "color"> & {
16
16
  tag: "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
17
17
  view?: "small" | "medium" | "xlarge" | "large" | "xsmall" | undefined;
18
- color?: "tertiary" | "disabled" | "accent" | "primary" | "attention" | "positive" | "secondary" | "tertiary-inverted" | "primary-inverted" | "secondary-inverted" | "link" | "negative" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-accent" | "static-positive" | undefined;
18
+ color?: "link" | "tertiary" | "disabled" | "accent" | "primary" | "attention" | "positive" | "secondary" | "tertiary-inverted" | "primary-inverted" | "secondary-inverted" | "negative" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-accent" | "static-positive" | undefined;
19
19
  weight?: "bold" | "regular" | "medium" | "semibold" | undefined;
20
20
  font?: "alfasans" | "styrene" | "system" | {
21
21
  font: "alfasans";
@@ -4,7 +4,7 @@ var React = require('react');
4
4
  var cn = require('classnames');
5
5
  var utils_getBorderCorners = require('./utils/getBorderCorners.js');
6
6
  var utils_getClasses = require('./utils/getClasses.js');
7
- var index_module = require('./index.module-85882065.js');
7
+ var index_module = require('./index.module-749d95bc.js');
8
8
 
9
9
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
10
10
 
@@ -150,31 +150,31 @@
150
150
  height: 100%;
151
151
  } .overflowHide {
152
152
  overflow: hidden;
153
- } .background-accent {
153
+ } .background-accent[class] {
154
154
  background-color: var(--color-light-bg-accent);
155
- } .background-info {
155
+ } .background-info[class] {
156
156
  background-color: var(--color-light-bg-info);
157
- } .background-attention-muted {
157
+ } .background-attention-muted[class] {
158
158
  background-color: var(--color-light-bg-attention-muted);
159
- } .background-positive-muted {
159
+ } .background-positive-muted[class] {
160
160
  background-color: var(--color-light-bg-positive-muted);
161
- } .background-negative-muted {
161
+ } .background-negative-muted[class] {
162
162
  background-color: var(--color-light-bg-negative-muted);
163
- } .background-primary {
163
+ } .background-primary[class] {
164
164
  background-color: var(--color-light-bg-primary);
165
- } .background-primary-inverted {
165
+ } .background-primary-inverted[class] {
166
166
  background-color: var(--color-light-bg-primary-inverted);
167
- } .background-secondary {
167
+ } .background-secondary[class] {
168
168
  background-color: var(--color-light-bg-secondary);
169
- } .background-secondary-inverted {
169
+ } .background-secondary-inverted[class] {
170
170
  background-color: var(--color-light-bg-secondary-inverted);
171
- } .background-tertiary {
171
+ } .background-tertiary[class] {
172
172
  background-color: var(--color-light-bg-tertiary);
173
- } .background-tertiary-inverted {
173
+ } .background-tertiary-inverted[class] {
174
174
  background-color: var(--color-light-bg-tertiary-inverted);
175
- } .background-quaternary {
175
+ } .background-quaternary[class] {
176
176
  background-color: var(--color-light-bg-quaternary);
177
- } .background-quaternary-inverted {
177
+ } .background-quaternary-inverted[class] {
178
178
  background-color: var(--color-light-bg-quaternary-inverted);
179
179
  } .background-specialbg-component {
180
180
  background-color: var(--color-light-specialbg-component);
@@ -2,7 +2,7 @@ import React, { forwardRef } from 'react';
2
2
  import cn from 'classnames';
3
3
  import { getBorderCorners } from './utils/getBorderCorners.js';
4
4
  import { isBackgroundToken, getClasses } from './utils/getClasses.js';
5
- import { s as styles } from './index.module-cca3b871.js';
5
+ import { s as styles } from './index.module-0952e8df.js';
6
6
  import './constants.js';
7
7
 
8
8
  /******************************************************************************