@vkontakte/vkui-tokens 4.54.1-dev-3ef202.0 → 4.55.0

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 (1387) hide show
  1. package/build/compilers/structJSON/compileStructJSON.js +58 -0
  2. package/build/compilers/structJSON/compileStructJSON.test.js +19 -2
  3. package/build/helpers/convertSnakeToCamel.d.ts +4 -0
  4. package/build/helpers/convertSnakeToCamel.js +14 -0
  5. package/build/helpers/convertSnakeToCamel.test.d.ts +1 -0
  6. package/build/helpers/convertSnakeToCamel.test.js +18 -0
  7. package/build/helpers/getGradientPointsFromColor.d.ts +10 -1
  8. package/build/helpers/getGradientPointsFromColor.js +27 -6
  9. package/build/helpers/tokenHelpers.d.ts +22 -2
  10. package/build/helpers/tokenHelpers.js +53 -2
  11. package/build/helpers/tokenHelpers.test.js +46 -0
  12. package/build/themeProcessors/customMedia/customMedia.js +1 -10
  13. package/build/themeProcessors/extractGeneralTokens/extractGeneralTokens.js +8 -1
  14. package/interfaces/general/colors/index.d.ts +5 -0
  15. package/interfaces/general/gradients/index.d.ts +1 -1
  16. package/package.json +20 -9
  17. package/themeDescriptions/base/paradigm.js +2 -0
  18. package/themeDescriptions/base/vk.js +8 -3
  19. package/themes/calendar/cssVars/declarations/index.css +3 -0
  20. package/themes/calendar/cssVars/declarations/noSizes.css +3 -0
  21. package/themes/calendar/cssVars/declarations/onlyColors.css +3 -0
  22. package/themes/calendar/cssVars/declarations/onlyColors.js +2 -2
  23. package/themes/calendar/cssVars/declarations/onlyVariables.css +3 -0
  24. package/themes/calendar/cssVars/declarations/onlyVariables.js +2 -2
  25. package/themes/calendar/cssVars/declarations/onlyVariablesLocal.css +3 -0
  26. package/themes/calendar/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  27. package/themes/calendar/cssVars/theme/fallbacks/index.css +3 -0
  28. package/themes/calendar/cssVars/theme/fallbacks/index.less +3 -0
  29. package/themes/calendar/cssVars/theme/fallbacks/index.pcss +3 -0
  30. package/themes/calendar/cssVars/theme/fallbacks/index.scss +3 -0
  31. package/themes/calendar/cssVars/theme/fallbacks/index.styl +3 -0
  32. package/themes/calendar/cssVars/theme/index.js +14 -0
  33. package/themes/calendar/cssVars/theme/index.json +14 -0
  34. package/themes/calendar/docs.json +12 -0
  35. package/themes/calendar/index.css +3 -0
  36. package/themes/calendar/index.js +5 -0
  37. package/themes/calendar/index.json +5 -0
  38. package/themes/calendar/index.less +3 -0
  39. package/themes/calendar/index.pcss +3 -0
  40. package/themes/calendar/index.scss +3 -0
  41. package/themes/calendar/index.styl +3 -0
  42. package/themes/calendar/struct.json +133 -4
  43. package/themes/calendarDark/cssVars/declarations/index.css +3 -0
  44. package/themes/calendarDark/cssVars/declarations/noSizes.css +3 -0
  45. package/themes/calendarDark/cssVars/declarations/onlyColors.css +3 -0
  46. package/themes/calendarDark/cssVars/declarations/onlyColors.js +2 -2
  47. package/themes/calendarDark/cssVars/declarations/onlyVariables.css +3 -0
  48. package/themes/calendarDark/cssVars/declarations/onlyVariables.js +2 -2
  49. package/themes/calendarDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  50. package/themes/calendarDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  51. package/themes/calendarDark/cssVars/theme/fallbacks/index.css +3 -0
  52. package/themes/calendarDark/cssVars/theme/fallbacks/index.less +3 -0
  53. package/themes/calendarDark/cssVars/theme/fallbacks/index.pcss +3 -0
  54. package/themes/calendarDark/cssVars/theme/fallbacks/index.scss +3 -0
  55. package/themes/calendarDark/cssVars/theme/fallbacks/index.styl +3 -0
  56. package/themes/calendarDark/cssVars/theme/index.js +14 -0
  57. package/themes/calendarDark/cssVars/theme/index.json +14 -0
  58. package/themes/calendarDark/docs.json +12 -0
  59. package/themes/calendarDark/index.css +3 -0
  60. package/themes/calendarDark/index.js +5 -0
  61. package/themes/calendarDark/index.json +5 -0
  62. package/themes/calendarDark/index.less +3 -0
  63. package/themes/calendarDark/index.pcss +3 -0
  64. package/themes/calendarDark/index.scss +3 -0
  65. package/themes/calendarDark/index.styl +3 -0
  66. package/themes/calendarDark/struct.json +133 -4
  67. package/themes/calls/cssVars/declarations/index.css +3 -0
  68. package/themes/calls/cssVars/declarations/noSizes.css +3 -0
  69. package/themes/calls/cssVars/declarations/onlyColors.css +3 -0
  70. package/themes/calls/cssVars/declarations/onlyColors.js +2 -2
  71. package/themes/calls/cssVars/declarations/onlyVariables.css +3 -0
  72. package/themes/calls/cssVars/declarations/onlyVariables.js +2 -2
  73. package/themes/calls/cssVars/declarations/onlyVariablesLocal.css +3 -0
  74. package/themes/calls/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  75. package/themes/calls/cssVars/theme/fallbacks/index.css +3 -0
  76. package/themes/calls/cssVars/theme/fallbacks/index.less +3 -0
  77. package/themes/calls/cssVars/theme/fallbacks/index.pcss +3 -0
  78. package/themes/calls/cssVars/theme/fallbacks/index.scss +3 -0
  79. package/themes/calls/cssVars/theme/fallbacks/index.styl +3 -0
  80. package/themes/calls/cssVars/theme/index.js +14 -0
  81. package/themes/calls/cssVars/theme/index.json +14 -0
  82. package/themes/calls/docs.json +12 -0
  83. package/themes/calls/index.css +3 -0
  84. package/themes/calls/index.js +5 -0
  85. package/themes/calls/index.json +5 -0
  86. package/themes/calls/index.less +3 -0
  87. package/themes/calls/index.pcss +3 -0
  88. package/themes/calls/index.scss +3 -0
  89. package/themes/calls/index.styl +3 -0
  90. package/themes/calls/struct.json +133 -4
  91. package/themes/cloud/cssVars/declarations/index.css +3 -0
  92. package/themes/cloud/cssVars/declarations/noSizes.css +3 -0
  93. package/themes/cloud/cssVars/declarations/onlyColors.css +3 -0
  94. package/themes/cloud/cssVars/declarations/onlyColors.js +2 -2
  95. package/themes/cloud/cssVars/declarations/onlyVariables.css +3 -0
  96. package/themes/cloud/cssVars/declarations/onlyVariables.js +2 -2
  97. package/themes/cloud/cssVars/declarations/onlyVariablesLocal.css +3 -0
  98. package/themes/cloud/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  99. package/themes/cloud/cssVars/theme/fallbacks/index.css +3 -0
  100. package/themes/cloud/cssVars/theme/fallbacks/index.less +3 -0
  101. package/themes/cloud/cssVars/theme/fallbacks/index.pcss +3 -0
  102. package/themes/cloud/cssVars/theme/fallbacks/index.scss +3 -0
  103. package/themes/cloud/cssVars/theme/fallbacks/index.styl +3 -0
  104. package/themes/cloud/cssVars/theme/index.js +14 -0
  105. package/themes/cloud/cssVars/theme/index.json +14 -0
  106. package/themes/cloud/docs.json +12 -0
  107. package/themes/cloud/index.css +3 -0
  108. package/themes/cloud/index.js +5 -0
  109. package/themes/cloud/index.json +5 -0
  110. package/themes/cloud/index.less +3 -0
  111. package/themes/cloud/index.pcss +3 -0
  112. package/themes/cloud/index.scss +3 -0
  113. package/themes/cloud/index.styl +3 -0
  114. package/themes/cloud/struct.json +133 -4
  115. package/themes/cloudDark/cssVars/declarations/index.css +3 -0
  116. package/themes/cloudDark/cssVars/declarations/noSizes.css +3 -0
  117. package/themes/cloudDark/cssVars/declarations/onlyColors.css +3 -0
  118. package/themes/cloudDark/cssVars/declarations/onlyColors.js +2 -2
  119. package/themes/cloudDark/cssVars/declarations/onlyVariables.css +3 -0
  120. package/themes/cloudDark/cssVars/declarations/onlyVariables.js +2 -2
  121. package/themes/cloudDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  122. package/themes/cloudDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  123. package/themes/cloudDark/cssVars/theme/fallbacks/index.css +3 -0
  124. package/themes/cloudDark/cssVars/theme/fallbacks/index.less +3 -0
  125. package/themes/cloudDark/cssVars/theme/fallbacks/index.pcss +3 -0
  126. package/themes/cloudDark/cssVars/theme/fallbacks/index.scss +3 -0
  127. package/themes/cloudDark/cssVars/theme/fallbacks/index.styl +3 -0
  128. package/themes/cloudDark/cssVars/theme/index.js +14 -0
  129. package/themes/cloudDark/cssVars/theme/index.json +14 -0
  130. package/themes/cloudDark/docs.json +12 -0
  131. package/themes/cloudDark/index.css +3 -0
  132. package/themes/cloudDark/index.js +5 -0
  133. package/themes/cloudDark/index.json +5 -0
  134. package/themes/cloudDark/index.less +3 -0
  135. package/themes/cloudDark/index.pcss +3 -0
  136. package/themes/cloudDark/index.scss +3 -0
  137. package/themes/cloudDark/index.styl +3 -0
  138. package/themes/cloudDark/struct.json +133 -4
  139. package/themes/dobro/cssVars/declarations/index.css +6 -3
  140. package/themes/dobro/cssVars/declarations/noSizes.css +6 -3
  141. package/themes/dobro/cssVars/declarations/onlyColors.css +6 -3
  142. package/themes/dobro/cssVars/declarations/onlyColors.js +2 -2
  143. package/themes/dobro/cssVars/declarations/onlyVariables.css +6 -3
  144. package/themes/dobro/cssVars/declarations/onlyVariables.js +2 -2
  145. package/themes/dobro/cssVars/declarations/onlyVariablesLocal.css +6 -3
  146. package/themes/dobro/cssVars/declarations/onlyVariablesLocalIncremental.css +6 -3
  147. package/themes/dobro/cssVars/theme/fallbacks/index.css +6 -3
  148. package/themes/dobro/cssVars/theme/fallbacks/index.less +6 -3
  149. package/themes/dobro/cssVars/theme/fallbacks/index.pcss +6 -3
  150. package/themes/dobro/cssVars/theme/fallbacks/index.scss +6 -3
  151. package/themes/dobro/cssVars/theme/fallbacks/index.styl +6 -3
  152. package/themes/dobro/cssVars/theme/index.js +17 -3
  153. package/themes/dobro/cssVars/theme/index.json +17 -3
  154. package/themes/dobro/docs.json +12 -0
  155. package/themes/dobro/index.css +6 -3
  156. package/themes/dobro/index.js +8 -3
  157. package/themes/dobro/index.json +8 -3
  158. package/themes/dobro/index.less +6 -3
  159. package/themes/dobro/index.pcss +6 -3
  160. package/themes/dobro/index.scss +6 -3
  161. package/themes/dobro/index.styl +6 -3
  162. package/themes/dobro/struct.json +136 -7
  163. package/themes/dobroDark/cssVars/declarations/index.css +6 -3
  164. package/themes/dobroDark/cssVars/declarations/noSizes.css +6 -3
  165. package/themes/dobroDark/cssVars/declarations/onlyColors.css +6 -3
  166. package/themes/dobroDark/cssVars/declarations/onlyColors.js +2 -2
  167. package/themes/dobroDark/cssVars/declarations/onlyVariables.css +6 -3
  168. package/themes/dobroDark/cssVars/declarations/onlyVariables.js +2 -2
  169. package/themes/dobroDark/cssVars/declarations/onlyVariablesLocal.css +6 -3
  170. package/themes/dobroDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -3
  171. package/themes/dobroDark/cssVars/theme/fallbacks/index.css +6 -3
  172. package/themes/dobroDark/cssVars/theme/fallbacks/index.less +6 -3
  173. package/themes/dobroDark/cssVars/theme/fallbacks/index.pcss +6 -3
  174. package/themes/dobroDark/cssVars/theme/fallbacks/index.scss +6 -3
  175. package/themes/dobroDark/cssVars/theme/fallbacks/index.styl +6 -3
  176. package/themes/dobroDark/cssVars/theme/index.js +17 -3
  177. package/themes/dobroDark/cssVars/theme/index.json +17 -3
  178. package/themes/dobroDark/docs.json +12 -0
  179. package/themes/dobroDark/index.css +6 -3
  180. package/themes/dobroDark/index.js +8 -3
  181. package/themes/dobroDark/index.json +8 -3
  182. package/themes/dobroDark/index.less +6 -3
  183. package/themes/dobroDark/index.pcss +6 -3
  184. package/themes/dobroDark/index.scss +6 -3
  185. package/themes/dobroDark/index.styl +6 -3
  186. package/themes/dobroDark/struct.json +136 -7
  187. package/themes/home/cssVars/declarations/index.css +3 -0
  188. package/themes/home/cssVars/declarations/noSizes.css +3 -0
  189. package/themes/home/cssVars/declarations/onlyColors.css +3 -0
  190. package/themes/home/cssVars/declarations/onlyColors.js +2 -2
  191. package/themes/home/cssVars/declarations/onlyVariables.css +3 -0
  192. package/themes/home/cssVars/declarations/onlyVariables.js +2 -2
  193. package/themes/home/cssVars/declarations/onlyVariablesLocal.css +3 -0
  194. package/themes/home/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  195. package/themes/home/cssVars/theme/fallbacks/index.css +3 -0
  196. package/themes/home/cssVars/theme/fallbacks/index.less +3 -0
  197. package/themes/home/cssVars/theme/fallbacks/index.pcss +3 -0
  198. package/themes/home/cssVars/theme/fallbacks/index.scss +3 -0
  199. package/themes/home/cssVars/theme/fallbacks/index.styl +3 -0
  200. package/themes/home/cssVars/theme/index.js +14 -0
  201. package/themes/home/cssVars/theme/index.json +14 -0
  202. package/themes/home/docs.json +12 -0
  203. package/themes/home/index.css +3 -0
  204. package/themes/home/index.js +5 -0
  205. package/themes/home/index.json +5 -0
  206. package/themes/home/index.less +3 -0
  207. package/themes/home/index.pcss +3 -0
  208. package/themes/home/index.scss +3 -0
  209. package/themes/home/index.styl +3 -0
  210. package/themes/home/struct.json +133 -4
  211. package/themes/homeDark/cssVars/declarations/index.css +3 -0
  212. package/themes/homeDark/cssVars/declarations/noSizes.css +3 -0
  213. package/themes/homeDark/cssVars/declarations/onlyColors.css +3 -0
  214. package/themes/homeDark/cssVars/declarations/onlyColors.js +2 -2
  215. package/themes/homeDark/cssVars/declarations/onlyVariables.css +3 -0
  216. package/themes/homeDark/cssVars/declarations/onlyVariables.js +2 -2
  217. package/themes/homeDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  218. package/themes/homeDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  219. package/themes/homeDark/cssVars/theme/fallbacks/index.css +3 -0
  220. package/themes/homeDark/cssVars/theme/fallbacks/index.less +3 -0
  221. package/themes/homeDark/cssVars/theme/fallbacks/index.pcss +3 -0
  222. package/themes/homeDark/cssVars/theme/fallbacks/index.scss +3 -0
  223. package/themes/homeDark/cssVars/theme/fallbacks/index.styl +3 -0
  224. package/themes/homeDark/cssVars/theme/index.js +14 -0
  225. package/themes/homeDark/cssVars/theme/index.json +14 -0
  226. package/themes/homeDark/docs.json +12 -0
  227. package/themes/homeDark/index.css +3 -0
  228. package/themes/homeDark/index.js +5 -0
  229. package/themes/homeDark/index.json +5 -0
  230. package/themes/homeDark/index.less +3 -0
  231. package/themes/homeDark/index.pcss +3 -0
  232. package/themes/homeDark/index.scss +3 -0
  233. package/themes/homeDark/index.styl +3 -0
  234. package/themes/homeDark/struct.json +133 -4
  235. package/themes/media/cssVars/declarations/index.css +3 -0
  236. package/themes/media/cssVars/declarations/noSizes.css +3 -0
  237. package/themes/media/cssVars/declarations/onlyColors.css +3 -0
  238. package/themes/media/cssVars/declarations/onlyColors.js +2 -2
  239. package/themes/media/cssVars/declarations/onlyVariables.css +3 -0
  240. package/themes/media/cssVars/declarations/onlyVariables.js +2 -2
  241. package/themes/media/cssVars/declarations/onlyVariablesLocal.css +3 -0
  242. package/themes/media/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  243. package/themes/media/cssVars/theme/fallbacks/index.css +3 -0
  244. package/themes/media/cssVars/theme/fallbacks/index.less +3 -0
  245. package/themes/media/cssVars/theme/fallbacks/index.pcss +3 -0
  246. package/themes/media/cssVars/theme/fallbacks/index.scss +3 -0
  247. package/themes/media/cssVars/theme/fallbacks/index.styl +3 -0
  248. package/themes/media/cssVars/theme/index.js +14 -0
  249. package/themes/media/cssVars/theme/index.json +14 -0
  250. package/themes/media/docs.json +12 -0
  251. package/themes/media/index.css +3 -0
  252. package/themes/media/index.js +5 -0
  253. package/themes/media/index.json +5 -0
  254. package/themes/media/index.less +3 -0
  255. package/themes/media/index.pcss +3 -0
  256. package/themes/media/index.scss +3 -0
  257. package/themes/media/index.styl +3 -0
  258. package/themes/media/struct.json +133 -4
  259. package/themes/mediaDark/cssVars/declarations/index.css +3 -0
  260. package/themes/mediaDark/cssVars/declarations/noSizes.css +3 -0
  261. package/themes/mediaDark/cssVars/declarations/onlyColors.css +3 -0
  262. package/themes/mediaDark/cssVars/declarations/onlyColors.js +2 -2
  263. package/themes/mediaDark/cssVars/declarations/onlyVariables.css +3 -0
  264. package/themes/mediaDark/cssVars/declarations/onlyVariables.js +2 -2
  265. package/themes/mediaDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  266. package/themes/mediaDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  267. package/themes/mediaDark/cssVars/theme/fallbacks/index.css +3 -0
  268. package/themes/mediaDark/cssVars/theme/fallbacks/index.less +3 -0
  269. package/themes/mediaDark/cssVars/theme/fallbacks/index.pcss +3 -0
  270. package/themes/mediaDark/cssVars/theme/fallbacks/index.scss +3 -0
  271. package/themes/mediaDark/cssVars/theme/fallbacks/index.styl +3 -0
  272. package/themes/mediaDark/cssVars/theme/index.js +14 -0
  273. package/themes/mediaDark/cssVars/theme/index.json +14 -0
  274. package/themes/mediaDark/docs.json +12 -0
  275. package/themes/mediaDark/index.css +3 -0
  276. package/themes/mediaDark/index.js +5 -0
  277. package/themes/mediaDark/index.json +5 -0
  278. package/themes/mediaDark/index.less +3 -0
  279. package/themes/mediaDark/index.pcss +3 -0
  280. package/themes/mediaDark/index.scss +3 -0
  281. package/themes/mediaDark/index.styl +3 -0
  282. package/themes/mediaDark/struct.json +133 -4
  283. package/themes/mycom/cssVars/declarations/index.css +3 -0
  284. package/themes/mycom/cssVars/declarations/noSizes.css +3 -0
  285. package/themes/mycom/cssVars/declarations/onlyColors.css +3 -0
  286. package/themes/mycom/cssVars/declarations/onlyColors.js +2 -2
  287. package/themes/mycom/cssVars/declarations/onlyVariables.css +3 -0
  288. package/themes/mycom/cssVars/declarations/onlyVariables.js +2 -2
  289. package/themes/mycom/cssVars/declarations/onlyVariablesLocal.css +3 -0
  290. package/themes/mycom/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  291. package/themes/mycom/cssVars/theme/fallbacks/index.css +3 -0
  292. package/themes/mycom/cssVars/theme/fallbacks/index.less +3 -0
  293. package/themes/mycom/cssVars/theme/fallbacks/index.pcss +3 -0
  294. package/themes/mycom/cssVars/theme/fallbacks/index.scss +3 -0
  295. package/themes/mycom/cssVars/theme/fallbacks/index.styl +3 -0
  296. package/themes/mycom/cssVars/theme/index.js +14 -0
  297. package/themes/mycom/cssVars/theme/index.json +14 -0
  298. package/themes/mycom/docs.json +12 -0
  299. package/themes/mycom/index.css +3 -0
  300. package/themes/mycom/index.js +5 -0
  301. package/themes/mycom/index.json +5 -0
  302. package/themes/mycom/index.less +3 -0
  303. package/themes/mycom/index.pcss +3 -0
  304. package/themes/mycom/index.scss +3 -0
  305. package/themes/mycom/index.styl +3 -0
  306. package/themes/mycom/struct.json +133 -4
  307. package/themes/octavius/cssVars/declarations/index.css +3 -0
  308. package/themes/octavius/cssVars/declarations/noSizes.css +3 -0
  309. package/themes/octavius/cssVars/declarations/onlyColors.css +3 -0
  310. package/themes/octavius/cssVars/declarations/onlyColors.js +2 -2
  311. package/themes/octavius/cssVars/declarations/onlyVariables.css +3 -0
  312. package/themes/octavius/cssVars/declarations/onlyVariables.js +2 -2
  313. package/themes/octavius/cssVars/declarations/onlyVariablesLocal.css +3 -0
  314. package/themes/octavius/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  315. package/themes/octavius/cssVars/theme/fallbacks/index.css +3 -0
  316. package/themes/octavius/cssVars/theme/fallbacks/index.less +3 -0
  317. package/themes/octavius/cssVars/theme/fallbacks/index.pcss +3 -0
  318. package/themes/octavius/cssVars/theme/fallbacks/index.scss +3 -0
  319. package/themes/octavius/cssVars/theme/fallbacks/index.styl +3 -0
  320. package/themes/octavius/cssVars/theme/index.js +14 -0
  321. package/themes/octavius/cssVars/theme/index.json +14 -0
  322. package/themes/octavius/docs.json +12 -0
  323. package/themes/octavius/index.css +3 -0
  324. package/themes/octavius/index.js +5 -0
  325. package/themes/octavius/index.json +5 -0
  326. package/themes/octavius/index.less +3 -0
  327. package/themes/octavius/index.pcss +3 -0
  328. package/themes/octavius/index.scss +3 -0
  329. package/themes/octavius/index.styl +3 -0
  330. package/themes/octavius/struct.json +133 -4
  331. package/themes/octaviusCompact/cssVars/declarations/index.css +3 -0
  332. package/themes/octaviusCompact/cssVars/declarations/noSizes.css +3 -0
  333. package/themes/octaviusCompact/cssVars/declarations/onlyColors.css +3 -0
  334. package/themes/octaviusCompact/cssVars/declarations/onlyColors.js +2 -2
  335. package/themes/octaviusCompact/cssVars/declarations/onlyVariables.css +3 -0
  336. package/themes/octaviusCompact/cssVars/declarations/onlyVariables.js +2 -2
  337. package/themes/octaviusCompact/cssVars/declarations/onlyVariablesLocal.css +3 -0
  338. package/themes/octaviusCompact/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  339. package/themes/octaviusCompact/cssVars/theme/fallbacks/index.css +3 -0
  340. package/themes/octaviusCompact/cssVars/theme/fallbacks/index.less +3 -0
  341. package/themes/octaviusCompact/cssVars/theme/fallbacks/index.pcss +3 -0
  342. package/themes/octaviusCompact/cssVars/theme/fallbacks/index.scss +3 -0
  343. package/themes/octaviusCompact/cssVars/theme/fallbacks/index.styl +3 -0
  344. package/themes/octaviusCompact/cssVars/theme/index.js +14 -0
  345. package/themes/octaviusCompact/cssVars/theme/index.json +14 -0
  346. package/themes/octaviusCompact/docs.json +12 -0
  347. package/themes/octaviusCompact/index.css +3 -0
  348. package/themes/octaviusCompact/index.js +5 -0
  349. package/themes/octaviusCompact/index.json +5 -0
  350. package/themes/octaviusCompact/index.less +3 -0
  351. package/themes/octaviusCompact/index.pcss +3 -0
  352. package/themes/octaviusCompact/index.scss +3 -0
  353. package/themes/octaviusCompact/index.styl +3 -0
  354. package/themes/octaviusCompact/struct.json +133 -4
  355. package/themes/octaviusCompactDark/cssVars/declarations/index.css +3 -0
  356. package/themes/octaviusCompactDark/cssVars/declarations/noSizes.css +3 -0
  357. package/themes/octaviusCompactDark/cssVars/declarations/onlyColors.css +3 -0
  358. package/themes/octaviusCompactDark/cssVars/declarations/onlyColors.js +2 -2
  359. package/themes/octaviusCompactDark/cssVars/declarations/onlyVariables.css +3 -0
  360. package/themes/octaviusCompactDark/cssVars/declarations/onlyVariables.js +2 -2
  361. package/themes/octaviusCompactDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  362. package/themes/octaviusCompactDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  363. package/themes/octaviusCompactDark/cssVars/theme/fallbacks/index.css +3 -0
  364. package/themes/octaviusCompactDark/cssVars/theme/fallbacks/index.less +3 -0
  365. package/themes/octaviusCompactDark/cssVars/theme/fallbacks/index.pcss +3 -0
  366. package/themes/octaviusCompactDark/cssVars/theme/fallbacks/index.scss +3 -0
  367. package/themes/octaviusCompactDark/cssVars/theme/fallbacks/index.styl +3 -0
  368. package/themes/octaviusCompactDark/cssVars/theme/index.js +14 -0
  369. package/themes/octaviusCompactDark/cssVars/theme/index.json +14 -0
  370. package/themes/octaviusCompactDark/docs.json +12 -0
  371. package/themes/octaviusCompactDark/index.css +3 -0
  372. package/themes/octaviusCompactDark/index.js +5 -0
  373. package/themes/octaviusCompactDark/index.json +5 -0
  374. package/themes/octaviusCompactDark/index.less +3 -0
  375. package/themes/octaviusCompactDark/index.pcss +3 -0
  376. package/themes/octaviusCompactDark/index.scss +3 -0
  377. package/themes/octaviusCompactDark/index.styl +3 -0
  378. package/themes/octaviusCompactDark/struct.json +133 -4
  379. package/themes/octaviusDark/cssVars/declarations/index.css +3 -0
  380. package/themes/octaviusDark/cssVars/declarations/noSizes.css +3 -0
  381. package/themes/octaviusDark/cssVars/declarations/onlyColors.css +3 -0
  382. package/themes/octaviusDark/cssVars/declarations/onlyColors.js +2 -2
  383. package/themes/octaviusDark/cssVars/declarations/onlyVariables.css +3 -0
  384. package/themes/octaviusDark/cssVars/declarations/onlyVariables.js +2 -2
  385. package/themes/octaviusDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  386. package/themes/octaviusDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  387. package/themes/octaviusDark/cssVars/theme/fallbacks/index.css +3 -0
  388. package/themes/octaviusDark/cssVars/theme/fallbacks/index.less +3 -0
  389. package/themes/octaviusDark/cssVars/theme/fallbacks/index.pcss +3 -0
  390. package/themes/octaviusDark/cssVars/theme/fallbacks/index.scss +3 -0
  391. package/themes/octaviusDark/cssVars/theme/fallbacks/index.styl +3 -0
  392. package/themes/octaviusDark/cssVars/theme/index.js +14 -0
  393. package/themes/octaviusDark/cssVars/theme/index.json +14 -0
  394. package/themes/octaviusDark/docs.json +12 -0
  395. package/themes/octaviusDark/index.css +3 -0
  396. package/themes/octaviusDark/index.js +5 -0
  397. package/themes/octaviusDark/index.json +5 -0
  398. package/themes/octaviusDark/index.less +3 -0
  399. package/themes/octaviusDark/index.pcss +3 -0
  400. package/themes/octaviusDark/index.scss +3 -0
  401. package/themes/octaviusDark/index.styl +3 -0
  402. package/themes/octaviusDark/struct.json +133 -4
  403. package/themes/octaviusVK/cssVars/declarations/index.css +6 -3
  404. package/themes/octaviusVK/cssVars/declarations/noSizes.css +6 -3
  405. package/themes/octaviusVK/cssVars/declarations/onlyColors.css +6 -3
  406. package/themes/octaviusVK/cssVars/declarations/onlyColors.js +2 -2
  407. package/themes/octaviusVK/cssVars/declarations/onlyVariables.css +6 -3
  408. package/themes/octaviusVK/cssVars/declarations/onlyVariables.js +2 -2
  409. package/themes/octaviusVK/cssVars/declarations/onlyVariablesLocal.css +6 -3
  410. package/themes/octaviusVK/cssVars/declarations/onlyVariablesLocalIncremental.css +6 -3
  411. package/themes/octaviusVK/cssVars/theme/fallbacks/index.css +6 -3
  412. package/themes/octaviusVK/cssVars/theme/fallbacks/index.less +6 -3
  413. package/themes/octaviusVK/cssVars/theme/fallbacks/index.pcss +6 -3
  414. package/themes/octaviusVK/cssVars/theme/fallbacks/index.scss +6 -3
  415. package/themes/octaviusVK/cssVars/theme/fallbacks/index.styl +6 -3
  416. package/themes/octaviusVK/cssVars/theme/index.js +17 -3
  417. package/themes/octaviusVK/cssVars/theme/index.json +17 -3
  418. package/themes/octaviusVK/docs.json +12 -0
  419. package/themes/octaviusVK/index.css +6 -3
  420. package/themes/octaviusVK/index.js +8 -3
  421. package/themes/octaviusVK/index.json +8 -3
  422. package/themes/octaviusVK/index.less +6 -3
  423. package/themes/octaviusVK/index.pcss +6 -3
  424. package/themes/octaviusVK/index.scss +6 -3
  425. package/themes/octaviusVK/index.styl +6 -3
  426. package/themes/octaviusVK/struct.json +136 -7
  427. package/themes/octaviusVKDark/cssVars/declarations/index.css +6 -3
  428. package/themes/octaviusVKDark/cssVars/declarations/noSizes.css +6 -3
  429. package/themes/octaviusVKDark/cssVars/declarations/onlyColors.css +6 -3
  430. package/themes/octaviusVKDark/cssVars/declarations/onlyColors.js +2 -2
  431. package/themes/octaviusVKDark/cssVars/declarations/onlyVariables.css +6 -3
  432. package/themes/octaviusVKDark/cssVars/declarations/onlyVariables.js +2 -2
  433. package/themes/octaviusVKDark/cssVars/declarations/onlyVariablesLocal.css +6 -3
  434. package/themes/octaviusVKDark/cssVars/declarations/onlyVariablesLocalIncremental.css +6 -3
  435. package/themes/octaviusVKDark/cssVars/theme/fallbacks/index.css +6 -3
  436. package/themes/octaviusVKDark/cssVars/theme/fallbacks/index.less +6 -3
  437. package/themes/octaviusVKDark/cssVars/theme/fallbacks/index.pcss +6 -3
  438. package/themes/octaviusVKDark/cssVars/theme/fallbacks/index.scss +6 -3
  439. package/themes/octaviusVKDark/cssVars/theme/fallbacks/index.styl +6 -3
  440. package/themes/octaviusVKDark/cssVars/theme/index.js +17 -3
  441. package/themes/octaviusVKDark/cssVars/theme/index.json +17 -3
  442. package/themes/octaviusVKDark/docs.json +12 -0
  443. package/themes/octaviusVKDark/index.css +6 -3
  444. package/themes/octaviusVKDark/index.js +8 -3
  445. package/themes/octaviusVKDark/index.json +8 -3
  446. package/themes/octaviusVKDark/index.less +6 -3
  447. package/themes/octaviusVKDark/index.pcss +6 -3
  448. package/themes/octaviusVKDark/index.scss +6 -3
  449. package/themes/octaviusVKDark/index.styl +6 -3
  450. package/themes/octaviusVKDark/struct.json +136 -7
  451. package/themes/octaviusWhite/cssVars/declarations/index.css +3 -0
  452. package/themes/octaviusWhite/cssVars/declarations/noSizes.css +3 -0
  453. package/themes/octaviusWhite/cssVars/declarations/onlyColors.css +3 -0
  454. package/themes/octaviusWhite/cssVars/declarations/onlyColors.js +2 -2
  455. package/themes/octaviusWhite/cssVars/declarations/onlyVariables.css +3 -0
  456. package/themes/octaviusWhite/cssVars/declarations/onlyVariables.js +2 -2
  457. package/themes/octaviusWhite/cssVars/declarations/onlyVariablesLocal.css +3 -0
  458. package/themes/octaviusWhite/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  459. package/themes/octaviusWhite/cssVars/theme/fallbacks/index.css +3 -0
  460. package/themes/octaviusWhite/cssVars/theme/fallbacks/index.less +3 -0
  461. package/themes/octaviusWhite/cssVars/theme/fallbacks/index.pcss +3 -0
  462. package/themes/octaviusWhite/cssVars/theme/fallbacks/index.scss +3 -0
  463. package/themes/octaviusWhite/cssVars/theme/fallbacks/index.styl +3 -0
  464. package/themes/octaviusWhite/cssVars/theme/index.js +14 -0
  465. package/themes/octaviusWhite/cssVars/theme/index.json +14 -0
  466. package/themes/octaviusWhite/docs.json +12 -0
  467. package/themes/octaviusWhite/index.css +3 -0
  468. package/themes/octaviusWhite/index.js +5 -0
  469. package/themes/octaviusWhite/index.json +5 -0
  470. package/themes/octaviusWhite/index.less +3 -0
  471. package/themes/octaviusWhite/index.pcss +3 -0
  472. package/themes/octaviusWhite/index.scss +3 -0
  473. package/themes/octaviusWhite/index.styl +3 -0
  474. package/themes/octaviusWhite/struct.json +133 -4
  475. package/themes/octaviusWhiteDark/cssVars/declarations/index.css +3 -0
  476. package/themes/octaviusWhiteDark/cssVars/declarations/noSizes.css +3 -0
  477. package/themes/octaviusWhiteDark/cssVars/declarations/onlyColors.css +3 -0
  478. package/themes/octaviusWhiteDark/cssVars/declarations/onlyColors.js +2 -2
  479. package/themes/octaviusWhiteDark/cssVars/declarations/onlyVariables.css +3 -0
  480. package/themes/octaviusWhiteDark/cssVars/declarations/onlyVariables.js +2 -2
  481. package/themes/octaviusWhiteDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  482. package/themes/octaviusWhiteDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  483. package/themes/octaviusWhiteDark/cssVars/theme/fallbacks/index.css +3 -0
  484. package/themes/octaviusWhiteDark/cssVars/theme/fallbacks/index.less +3 -0
  485. package/themes/octaviusWhiteDark/cssVars/theme/fallbacks/index.pcss +3 -0
  486. package/themes/octaviusWhiteDark/cssVars/theme/fallbacks/index.scss +3 -0
  487. package/themes/octaviusWhiteDark/cssVars/theme/fallbacks/index.styl +3 -0
  488. package/themes/octaviusWhiteDark/cssVars/theme/index.js +14 -0
  489. package/themes/octaviusWhiteDark/cssVars/theme/index.json +14 -0
  490. package/themes/octaviusWhiteDark/docs.json +12 -0
  491. package/themes/octaviusWhiteDark/index.css +3 -0
  492. package/themes/octaviusWhiteDark/index.js +5 -0
  493. package/themes/octaviusWhiteDark/index.json +5 -0
  494. package/themes/octaviusWhiteDark/index.less +3 -0
  495. package/themes/octaviusWhiteDark/index.pcss +3 -0
  496. package/themes/octaviusWhiteDark/index.scss +3 -0
  497. package/themes/octaviusWhiteDark/index.styl +3 -0
  498. package/themes/octaviusWhiteDark/struct.json +133 -4
  499. package/themes/otvet/cssVars/declarations/index.css +3 -0
  500. package/themes/otvet/cssVars/declarations/noSizes.css +3 -0
  501. package/themes/otvet/cssVars/declarations/onlyColors.css +3 -0
  502. package/themes/otvet/cssVars/declarations/onlyColors.js +2 -2
  503. package/themes/otvet/cssVars/declarations/onlyVariables.css +3 -0
  504. package/themes/otvet/cssVars/declarations/onlyVariables.js +2 -2
  505. package/themes/otvet/cssVars/declarations/onlyVariablesLocal.css +3 -0
  506. package/themes/otvet/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  507. package/themes/otvet/cssVars/theme/fallbacks/index.css +3 -0
  508. package/themes/otvet/cssVars/theme/fallbacks/index.less +3 -0
  509. package/themes/otvet/cssVars/theme/fallbacks/index.pcss +3 -0
  510. package/themes/otvet/cssVars/theme/fallbacks/index.scss +3 -0
  511. package/themes/otvet/cssVars/theme/fallbacks/index.styl +3 -0
  512. package/themes/otvet/cssVars/theme/index.js +14 -0
  513. package/themes/otvet/cssVars/theme/index.json +14 -0
  514. package/themes/otvet/docs.json +12 -0
  515. package/themes/otvet/index.css +3 -0
  516. package/themes/otvet/index.js +5 -0
  517. package/themes/otvet/index.json +5 -0
  518. package/themes/otvet/index.less +3 -0
  519. package/themes/otvet/index.pcss +3 -0
  520. package/themes/otvet/index.scss +3 -0
  521. package/themes/otvet/index.styl +3 -0
  522. package/themes/otvet/struct.json +133 -4
  523. package/themes/otvetDark/cssVars/declarations/index.css +3 -0
  524. package/themes/otvetDark/cssVars/declarations/noSizes.css +3 -0
  525. package/themes/otvetDark/cssVars/declarations/onlyColors.css +3 -0
  526. package/themes/otvetDark/cssVars/declarations/onlyColors.js +2 -2
  527. package/themes/otvetDark/cssVars/declarations/onlyVariables.css +3 -0
  528. package/themes/otvetDark/cssVars/declarations/onlyVariables.js +2 -2
  529. package/themes/otvetDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  530. package/themes/otvetDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  531. package/themes/otvetDark/cssVars/theme/fallbacks/index.css +3 -0
  532. package/themes/otvetDark/cssVars/theme/fallbacks/index.less +3 -0
  533. package/themes/otvetDark/cssVars/theme/fallbacks/index.pcss +3 -0
  534. package/themes/otvetDark/cssVars/theme/fallbacks/index.scss +3 -0
  535. package/themes/otvetDark/cssVars/theme/fallbacks/index.styl +3 -0
  536. package/themes/otvetDark/cssVars/theme/index.js +14 -0
  537. package/themes/otvetDark/cssVars/theme/index.json +14 -0
  538. package/themes/otvetDark/docs.json +12 -0
  539. package/themes/otvetDark/index.css +3 -0
  540. package/themes/otvetDark/index.js +5 -0
  541. package/themes/otvetDark/index.json +5 -0
  542. package/themes/otvetDark/index.less +3 -0
  543. package/themes/otvetDark/index.pcss +3 -0
  544. package/themes/otvetDark/index.scss +3 -0
  545. package/themes/otvetDark/index.styl +3 -0
  546. package/themes/otvetDark/struct.json +133 -4
  547. package/themes/paradigmBase/cssVars/declarations/index.css +3 -0
  548. package/themes/paradigmBase/cssVars/declarations/noSizes.css +3 -0
  549. package/themes/paradigmBase/cssVars/declarations/onlyColors.css +3 -0
  550. package/themes/paradigmBase/cssVars/declarations/onlyColors.js +2 -2
  551. package/themes/paradigmBase/cssVars/declarations/onlyVariables.css +3 -0
  552. package/themes/paradigmBase/cssVars/declarations/onlyVariables.js +2 -2
  553. package/themes/paradigmBase/cssVars/declarations/onlyVariablesLocal.css +3 -0
  554. package/themes/paradigmBase/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  555. package/themes/paradigmBase/cssVars/theme/fallbacks/index.css +3 -0
  556. package/themes/paradigmBase/cssVars/theme/fallbacks/index.less +3 -0
  557. package/themes/paradigmBase/cssVars/theme/fallbacks/index.pcss +3 -0
  558. package/themes/paradigmBase/cssVars/theme/fallbacks/index.scss +3 -0
  559. package/themes/paradigmBase/cssVars/theme/fallbacks/index.styl +3 -0
  560. package/themes/paradigmBase/cssVars/theme/index.js +14 -0
  561. package/themes/paradigmBase/cssVars/theme/index.json +14 -0
  562. package/themes/paradigmBase/docs.json +12 -0
  563. package/themes/paradigmBase/index.css +3 -0
  564. package/themes/paradigmBase/index.js +5 -0
  565. package/themes/paradigmBase/index.json +5 -0
  566. package/themes/paradigmBase/index.less +3 -0
  567. package/themes/paradigmBase/index.pcss +3 -0
  568. package/themes/paradigmBase/index.scss +3 -0
  569. package/themes/paradigmBase/index.styl +3 -0
  570. package/themes/paradigmBase/struct.json +133 -4
  571. package/themes/paradigmBaseDark/cssVars/declarations/index.css +3 -0
  572. package/themes/paradigmBaseDark/cssVars/declarations/noSizes.css +3 -0
  573. package/themes/paradigmBaseDark/cssVars/declarations/onlyColors.css +3 -0
  574. package/themes/paradigmBaseDark/cssVars/declarations/onlyColors.js +2 -2
  575. package/themes/paradigmBaseDark/cssVars/declarations/onlyVariables.css +3 -0
  576. package/themes/paradigmBaseDark/cssVars/declarations/onlyVariables.js +2 -2
  577. package/themes/paradigmBaseDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  578. package/themes/paradigmBaseDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  579. package/themes/paradigmBaseDark/cssVars/theme/fallbacks/index.css +3 -0
  580. package/themes/paradigmBaseDark/cssVars/theme/fallbacks/index.less +3 -0
  581. package/themes/paradigmBaseDark/cssVars/theme/fallbacks/index.pcss +3 -0
  582. package/themes/paradigmBaseDark/cssVars/theme/fallbacks/index.scss +3 -0
  583. package/themes/paradigmBaseDark/cssVars/theme/fallbacks/index.styl +3 -0
  584. package/themes/paradigmBaseDark/cssVars/theme/index.js +14 -0
  585. package/themes/paradigmBaseDark/cssVars/theme/index.json +14 -0
  586. package/themes/paradigmBaseDark/docs.json +12 -0
  587. package/themes/paradigmBaseDark/index.css +3 -0
  588. package/themes/paradigmBaseDark/index.js +5 -0
  589. package/themes/paradigmBaseDark/index.json +5 -0
  590. package/themes/paradigmBaseDark/index.less +3 -0
  591. package/themes/paradigmBaseDark/index.pcss +3 -0
  592. package/themes/paradigmBaseDark/index.scss +3 -0
  593. package/themes/paradigmBaseDark/index.styl +3 -0
  594. package/themes/paradigmBaseDark/struct.json +133 -4
  595. package/themes/pharma/cssVars/declarations/index.css +3 -0
  596. package/themes/pharma/cssVars/declarations/noSizes.css +3 -0
  597. package/themes/pharma/cssVars/declarations/onlyColors.css +3 -0
  598. package/themes/pharma/cssVars/declarations/onlyColors.js +2 -2
  599. package/themes/pharma/cssVars/declarations/onlyVariables.css +3 -0
  600. package/themes/pharma/cssVars/declarations/onlyVariables.js +2 -2
  601. package/themes/pharma/cssVars/declarations/onlyVariablesLocal.css +3 -0
  602. package/themes/pharma/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  603. package/themes/pharma/cssVars/theme/fallbacks/index.css +3 -0
  604. package/themes/pharma/cssVars/theme/fallbacks/index.less +3 -0
  605. package/themes/pharma/cssVars/theme/fallbacks/index.pcss +3 -0
  606. package/themes/pharma/cssVars/theme/fallbacks/index.scss +3 -0
  607. package/themes/pharma/cssVars/theme/fallbacks/index.styl +3 -0
  608. package/themes/pharma/cssVars/theme/index.js +14 -0
  609. package/themes/pharma/cssVars/theme/index.json +14 -0
  610. package/themes/pharma/docs.json +12 -0
  611. package/themes/pharma/index.css +3 -0
  612. package/themes/pharma/index.js +5 -0
  613. package/themes/pharma/index.json +5 -0
  614. package/themes/pharma/index.less +3 -0
  615. package/themes/pharma/index.pcss +3 -0
  616. package/themes/pharma/index.scss +3 -0
  617. package/themes/pharma/index.styl +3 -0
  618. package/themes/pharma/struct.json +133 -4
  619. package/themes/portalUI/cssVars/declarations/index.css +3 -0
  620. package/themes/portalUI/cssVars/declarations/noSizes.css +3 -0
  621. package/themes/portalUI/cssVars/declarations/onlyColors.css +3 -0
  622. package/themes/portalUI/cssVars/declarations/onlyColors.js +2 -2
  623. package/themes/portalUI/cssVars/declarations/onlyVariables.css +3 -0
  624. package/themes/portalUI/cssVars/declarations/onlyVariables.js +2 -2
  625. package/themes/portalUI/cssVars/declarations/onlyVariablesLocal.css +3 -0
  626. package/themes/portalUI/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  627. package/themes/portalUI/cssVars/theme/fallbacks/index.css +3 -0
  628. package/themes/portalUI/cssVars/theme/fallbacks/index.less +3 -0
  629. package/themes/portalUI/cssVars/theme/fallbacks/index.pcss +3 -0
  630. package/themes/portalUI/cssVars/theme/fallbacks/index.scss +3 -0
  631. package/themes/portalUI/cssVars/theme/fallbacks/index.styl +3 -0
  632. package/themes/portalUI/cssVars/theme/index.js +14 -0
  633. package/themes/portalUI/cssVars/theme/index.json +14 -0
  634. package/themes/portalUI/docs.json +12 -0
  635. package/themes/portalUI/index.css +3 -0
  636. package/themes/portalUI/index.js +5 -0
  637. package/themes/portalUI/index.json +5 -0
  638. package/themes/portalUI/index.less +3 -0
  639. package/themes/portalUI/index.pcss +3 -0
  640. package/themes/portalUI/index.scss +3 -0
  641. package/themes/portalUI/index.styl +3 -0
  642. package/themes/portalUI/struct.json +133 -4
  643. package/themes/portalUIDark/cssVars/declarations/index.css +3 -0
  644. package/themes/portalUIDark/cssVars/declarations/noSizes.css +3 -0
  645. package/themes/portalUIDark/cssVars/declarations/onlyColors.css +3 -0
  646. package/themes/portalUIDark/cssVars/declarations/onlyColors.js +2 -2
  647. package/themes/portalUIDark/cssVars/declarations/onlyVariables.css +3 -0
  648. package/themes/portalUIDark/cssVars/declarations/onlyVariables.js +2 -2
  649. package/themes/portalUIDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  650. package/themes/portalUIDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  651. package/themes/portalUIDark/cssVars/theme/fallbacks/index.css +3 -0
  652. package/themes/portalUIDark/cssVars/theme/fallbacks/index.less +3 -0
  653. package/themes/portalUIDark/cssVars/theme/fallbacks/index.pcss +3 -0
  654. package/themes/portalUIDark/cssVars/theme/fallbacks/index.scss +3 -0
  655. package/themes/portalUIDark/cssVars/theme/fallbacks/index.styl +3 -0
  656. package/themes/portalUIDark/cssVars/theme/index.js +14 -0
  657. package/themes/portalUIDark/cssVars/theme/index.json +14 -0
  658. package/themes/portalUIDark/docs.json +12 -0
  659. package/themes/portalUIDark/index.css +3 -0
  660. package/themes/portalUIDark/index.js +5 -0
  661. package/themes/portalUIDark/index.json +5 -0
  662. package/themes/portalUIDark/index.less +3 -0
  663. package/themes/portalUIDark/index.pcss +3 -0
  664. package/themes/portalUIDark/index.scss +3 -0
  665. package/themes/portalUIDark/index.styl +3 -0
  666. package/themes/portalUIDark/struct.json +133 -4
  667. package/themes/promo/cssVars/declarations/index.css +3 -0
  668. package/themes/promo/cssVars/declarations/noSizes.css +3 -0
  669. package/themes/promo/cssVars/declarations/onlyColors.css +3 -0
  670. package/themes/promo/cssVars/declarations/onlyColors.js +2 -2
  671. package/themes/promo/cssVars/declarations/onlyVariables.css +3 -0
  672. package/themes/promo/cssVars/declarations/onlyVariables.js +2 -2
  673. package/themes/promo/cssVars/declarations/onlyVariablesLocal.css +3 -0
  674. package/themes/promo/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  675. package/themes/promo/cssVars/theme/fallbacks/index.css +3 -0
  676. package/themes/promo/cssVars/theme/fallbacks/index.less +3 -0
  677. package/themes/promo/cssVars/theme/fallbacks/index.pcss +3 -0
  678. package/themes/promo/cssVars/theme/fallbacks/index.scss +3 -0
  679. package/themes/promo/cssVars/theme/fallbacks/index.styl +3 -0
  680. package/themes/promo/cssVars/theme/index.js +14 -0
  681. package/themes/promo/cssVars/theme/index.json +14 -0
  682. package/themes/promo/docs.json +12 -0
  683. package/themes/promo/index.css +3 -0
  684. package/themes/promo/index.js +5 -0
  685. package/themes/promo/index.json +5 -0
  686. package/themes/promo/index.less +3 -0
  687. package/themes/promo/index.pcss +3 -0
  688. package/themes/promo/index.scss +3 -0
  689. package/themes/promo/index.styl +3 -0
  690. package/themes/promo/struct.json +133 -4
  691. package/themes/pulse/struct.json +1 -1
  692. package/themes/pulseDark/struct.json +1 -1
  693. package/themes/search/cssVars/declarations/index.css +3 -0
  694. package/themes/search/cssVars/declarations/noSizes.css +3 -0
  695. package/themes/search/cssVars/declarations/onlyColors.css +3 -0
  696. package/themes/search/cssVars/declarations/onlyColors.js +2 -2
  697. package/themes/search/cssVars/declarations/onlyVariables.css +3 -0
  698. package/themes/search/cssVars/declarations/onlyVariables.js +2 -2
  699. package/themes/search/cssVars/declarations/onlyVariablesLocal.css +3 -0
  700. package/themes/search/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  701. package/themes/search/cssVars/theme/fallbacks/index.css +3 -0
  702. package/themes/search/cssVars/theme/fallbacks/index.less +3 -0
  703. package/themes/search/cssVars/theme/fallbacks/index.pcss +3 -0
  704. package/themes/search/cssVars/theme/fallbacks/index.scss +3 -0
  705. package/themes/search/cssVars/theme/fallbacks/index.styl +3 -0
  706. package/themes/search/cssVars/theme/index.js +14 -0
  707. package/themes/search/cssVars/theme/index.json +14 -0
  708. package/themes/search/docs.json +12 -0
  709. package/themes/search/index.css +3 -0
  710. package/themes/search/index.js +5 -0
  711. package/themes/search/index.json +5 -0
  712. package/themes/search/index.less +3 -0
  713. package/themes/search/index.pcss +3 -0
  714. package/themes/search/index.scss +3 -0
  715. package/themes/search/index.styl +3 -0
  716. package/themes/search/struct.json +133 -4
  717. package/themes/todo/cssVars/declarations/index.css +3 -0
  718. package/themes/todo/cssVars/declarations/noSizes.css +3 -0
  719. package/themes/todo/cssVars/declarations/onlyColors.css +3 -0
  720. package/themes/todo/cssVars/declarations/onlyColors.js +2 -2
  721. package/themes/todo/cssVars/declarations/onlyVariables.css +3 -0
  722. package/themes/todo/cssVars/declarations/onlyVariables.js +2 -2
  723. package/themes/todo/cssVars/declarations/onlyVariablesLocal.css +3 -0
  724. package/themes/todo/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  725. package/themes/todo/cssVars/theme/fallbacks/index.css +3 -0
  726. package/themes/todo/cssVars/theme/fallbacks/index.less +3 -0
  727. package/themes/todo/cssVars/theme/fallbacks/index.pcss +3 -0
  728. package/themes/todo/cssVars/theme/fallbacks/index.scss +3 -0
  729. package/themes/todo/cssVars/theme/fallbacks/index.styl +3 -0
  730. package/themes/todo/cssVars/theme/index.js +14 -0
  731. package/themes/todo/cssVars/theme/index.json +14 -0
  732. package/themes/todo/docs.json +12 -0
  733. package/themes/todo/index.css +3 -0
  734. package/themes/todo/index.js +5 -0
  735. package/themes/todo/index.json +5 -0
  736. package/themes/todo/index.less +3 -0
  737. package/themes/todo/index.pcss +3 -0
  738. package/themes/todo/index.scss +3 -0
  739. package/themes/todo/index.styl +3 -0
  740. package/themes/todo/struct.json +133 -4
  741. package/themes/tutoria/cssVars/declarations/index.css +6 -3
  742. package/themes/tutoria/cssVars/declarations/noSizes.css +6 -3
  743. package/themes/tutoria/cssVars/declarations/onlyColors.css +6 -3
  744. package/themes/tutoria/cssVars/declarations/onlyColors.js +2 -2
  745. package/themes/tutoria/cssVars/declarations/onlyVariables.css +6 -3
  746. package/themes/tutoria/cssVars/declarations/onlyVariables.js +2 -2
  747. package/themes/tutoria/cssVars/declarations/onlyVariablesLocal.css +6 -3
  748. package/themes/tutoria/cssVars/declarations/onlyVariablesLocalIncremental.css +6 -3
  749. package/themes/tutoria/cssVars/theme/fallbacks/index.css +6 -3
  750. package/themes/tutoria/cssVars/theme/fallbacks/index.less +6 -3
  751. package/themes/tutoria/cssVars/theme/fallbacks/index.pcss +6 -3
  752. package/themes/tutoria/cssVars/theme/fallbacks/index.scss +6 -3
  753. package/themes/tutoria/cssVars/theme/fallbacks/index.styl +6 -3
  754. package/themes/tutoria/cssVars/theme/index.js +17 -3
  755. package/themes/tutoria/cssVars/theme/index.json +17 -3
  756. package/themes/tutoria/docs.json +12 -0
  757. package/themes/tutoria/index.css +6 -3
  758. package/themes/tutoria/index.js +8 -3
  759. package/themes/tutoria/index.json +8 -3
  760. package/themes/tutoria/index.less +6 -3
  761. package/themes/tutoria/index.pcss +6 -3
  762. package/themes/tutoria/index.scss +6 -3
  763. package/themes/tutoria/index.styl +6 -3
  764. package/themes/tutoria/struct.json +136 -7
  765. package/themes/tutoriaDark/cssVars/declarations/index.css +6 -3
  766. package/themes/tutoriaDark/cssVars/declarations/noSizes.css +6 -3
  767. package/themes/tutoriaDark/cssVars/declarations/onlyColors.css +6 -3
  768. package/themes/tutoriaDark/cssVars/declarations/onlyColors.js +2 -2
  769. package/themes/tutoriaDark/cssVars/declarations/onlyVariables.css +6 -3
  770. package/themes/tutoriaDark/cssVars/declarations/onlyVariables.js +2 -2
  771. package/themes/tutoriaDark/cssVars/declarations/onlyVariablesLocal.css +6 -3
  772. package/themes/tutoriaDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -3
  773. package/themes/tutoriaDark/cssVars/theme/fallbacks/index.css +6 -3
  774. package/themes/tutoriaDark/cssVars/theme/fallbacks/index.less +6 -3
  775. package/themes/tutoriaDark/cssVars/theme/fallbacks/index.pcss +6 -3
  776. package/themes/tutoriaDark/cssVars/theme/fallbacks/index.scss +6 -3
  777. package/themes/tutoriaDark/cssVars/theme/fallbacks/index.styl +6 -3
  778. package/themes/tutoriaDark/cssVars/theme/index.js +17 -3
  779. package/themes/tutoriaDark/cssVars/theme/index.json +17 -3
  780. package/themes/tutoriaDark/docs.json +12 -0
  781. package/themes/tutoriaDark/index.css +6 -3
  782. package/themes/tutoriaDark/index.js +8 -3
  783. package/themes/tutoriaDark/index.json +8 -3
  784. package/themes/tutoriaDark/index.less +6 -3
  785. package/themes/tutoriaDark/index.pcss +6 -3
  786. package/themes/tutoriaDark/index.scss +6 -3
  787. package/themes/tutoriaDark/index.styl +6 -3
  788. package/themes/tutoriaDark/struct.json +136 -7
  789. package/themes/vkAccessibility/cssVars/declarations/index.css +6 -3
  790. package/themes/vkAccessibility/cssVars/declarations/noSizes.css +6 -3
  791. package/themes/vkAccessibility/cssVars/declarations/onlyColors.css +6 -3
  792. package/themes/vkAccessibility/cssVars/declarations/onlyColors.js +2 -2
  793. package/themes/vkAccessibility/cssVars/declarations/onlyVariables.css +6 -3
  794. package/themes/vkAccessibility/cssVars/declarations/onlyVariables.js +2 -2
  795. package/themes/vkAccessibility/cssVars/declarations/onlyVariablesLocal.css +6 -3
  796. package/themes/vkAccessibility/cssVars/theme/fallbacks/index.css +6 -3
  797. package/themes/vkAccessibility/cssVars/theme/fallbacks/index.less +6 -3
  798. package/themes/vkAccessibility/cssVars/theme/fallbacks/index.pcss +6 -3
  799. package/themes/vkAccessibility/cssVars/theme/fallbacks/index.scss +6 -3
  800. package/themes/vkAccessibility/cssVars/theme/fallbacks/index.styl +6 -3
  801. package/themes/vkAccessibility/cssVars/theme/index.js +17 -3
  802. package/themes/vkAccessibility/cssVars/theme/index.json +17 -3
  803. package/themes/vkAccessibility/docs.json +12 -0
  804. package/themes/vkAccessibility/index.css +6 -3
  805. package/themes/vkAccessibility/index.js +8 -3
  806. package/themes/vkAccessibility/index.json +8 -3
  807. package/themes/vkAccessibility/index.less +6 -3
  808. package/themes/vkAccessibility/index.pcss +6 -3
  809. package/themes/vkAccessibility/index.scss +6 -3
  810. package/themes/vkAccessibility/index.styl +6 -3
  811. package/themes/vkAccessibility/struct.json +136 -7
  812. package/themes/vkAccessibilityDark/cssVars/declarations/index.css +6 -3
  813. package/themes/vkAccessibilityDark/cssVars/declarations/noSizes.css +6 -3
  814. package/themes/vkAccessibilityDark/cssVars/declarations/onlyColors.css +6 -3
  815. package/themes/vkAccessibilityDark/cssVars/declarations/onlyColors.js +2 -2
  816. package/themes/vkAccessibilityDark/cssVars/declarations/onlyVariables.css +6 -3
  817. package/themes/vkAccessibilityDark/cssVars/declarations/onlyVariables.js +2 -2
  818. package/themes/vkAccessibilityDark/cssVars/declarations/onlyVariablesLocal.css +6 -3
  819. package/themes/vkAccessibilityDark/cssVars/theme/fallbacks/index.css +6 -3
  820. package/themes/vkAccessibilityDark/cssVars/theme/fallbacks/index.less +6 -3
  821. package/themes/vkAccessibilityDark/cssVars/theme/fallbacks/index.pcss +6 -3
  822. package/themes/vkAccessibilityDark/cssVars/theme/fallbacks/index.scss +6 -3
  823. package/themes/vkAccessibilityDark/cssVars/theme/fallbacks/index.styl +6 -3
  824. package/themes/vkAccessibilityDark/cssVars/theme/index.js +17 -3
  825. package/themes/vkAccessibilityDark/cssVars/theme/index.json +17 -3
  826. package/themes/vkAccessibilityDark/docs.json +12 -0
  827. package/themes/vkAccessibilityDark/index.css +6 -3
  828. package/themes/vkAccessibilityDark/index.js +8 -3
  829. package/themes/vkAccessibilityDark/index.json +8 -3
  830. package/themes/vkAccessibilityDark/index.less +6 -3
  831. package/themes/vkAccessibilityDark/index.pcss +6 -3
  832. package/themes/vkAccessibilityDark/index.scss +6 -3
  833. package/themes/vkAccessibilityDark/index.styl +6 -3
  834. package/themes/vkAccessibilityDark/struct.json +136 -7
  835. package/themes/vkAccessibilityIOS/cssVars/declarations/index.css +6 -3
  836. package/themes/vkAccessibilityIOS/cssVars/declarations/noSizes.css +6 -3
  837. package/themes/vkAccessibilityIOS/cssVars/declarations/onlyColors.css +6 -3
  838. package/themes/vkAccessibilityIOS/cssVars/declarations/onlyColors.js +2 -2
  839. package/themes/vkAccessibilityIOS/cssVars/declarations/onlyVariables.css +6 -3
  840. package/themes/vkAccessibilityIOS/cssVars/declarations/onlyVariables.js +2 -2
  841. package/themes/vkAccessibilityIOS/cssVars/declarations/onlyVariablesLocal.css +6 -3
  842. package/themes/vkAccessibilityIOS/cssVars/theme/fallbacks/index.css +6 -3
  843. package/themes/vkAccessibilityIOS/cssVars/theme/fallbacks/index.less +6 -3
  844. package/themes/vkAccessibilityIOS/cssVars/theme/fallbacks/index.pcss +6 -3
  845. package/themes/vkAccessibilityIOS/cssVars/theme/fallbacks/index.scss +6 -3
  846. package/themes/vkAccessibilityIOS/cssVars/theme/fallbacks/index.styl +6 -3
  847. package/themes/vkAccessibilityIOS/cssVars/theme/index.js +17 -3
  848. package/themes/vkAccessibilityIOS/cssVars/theme/index.json +17 -3
  849. package/themes/vkAccessibilityIOS/docs.json +12 -0
  850. package/themes/vkAccessibilityIOS/index.css +6 -3
  851. package/themes/vkAccessibilityIOS/index.js +8 -3
  852. package/themes/vkAccessibilityIOS/index.json +8 -3
  853. package/themes/vkAccessibilityIOS/index.less +6 -3
  854. package/themes/vkAccessibilityIOS/index.pcss +6 -3
  855. package/themes/vkAccessibilityIOS/index.scss +6 -3
  856. package/themes/vkAccessibilityIOS/index.styl +6 -3
  857. package/themes/vkAccessibilityIOS/struct.json +136 -7
  858. package/themes/vkAccessibilityIOSDark/cssVars/declarations/index.css +6 -3
  859. package/themes/vkAccessibilityIOSDark/cssVars/declarations/noSizes.css +6 -3
  860. package/themes/vkAccessibilityIOSDark/cssVars/declarations/onlyColors.css +6 -3
  861. package/themes/vkAccessibilityIOSDark/cssVars/declarations/onlyColors.js +2 -2
  862. package/themes/vkAccessibilityIOSDark/cssVars/declarations/onlyVariables.css +6 -3
  863. package/themes/vkAccessibilityIOSDark/cssVars/declarations/onlyVariables.js +2 -2
  864. package/themes/vkAccessibilityIOSDark/cssVars/declarations/onlyVariablesLocal.css +6 -3
  865. package/themes/vkAccessibilityIOSDark/cssVars/theme/fallbacks/index.css +6 -3
  866. package/themes/vkAccessibilityIOSDark/cssVars/theme/fallbacks/index.less +6 -3
  867. package/themes/vkAccessibilityIOSDark/cssVars/theme/fallbacks/index.pcss +6 -3
  868. package/themes/vkAccessibilityIOSDark/cssVars/theme/fallbacks/index.scss +6 -3
  869. package/themes/vkAccessibilityIOSDark/cssVars/theme/fallbacks/index.styl +6 -3
  870. package/themes/vkAccessibilityIOSDark/cssVars/theme/index.js +17 -3
  871. package/themes/vkAccessibilityIOSDark/cssVars/theme/index.json +17 -3
  872. package/themes/vkAccessibilityIOSDark/docs.json +12 -0
  873. package/themes/vkAccessibilityIOSDark/index.css +6 -3
  874. package/themes/vkAccessibilityIOSDark/index.js +8 -3
  875. package/themes/vkAccessibilityIOSDark/index.json +8 -3
  876. package/themes/vkAccessibilityIOSDark/index.less +6 -3
  877. package/themes/vkAccessibilityIOSDark/index.pcss +6 -3
  878. package/themes/vkAccessibilityIOSDark/index.scss +6 -3
  879. package/themes/vkAccessibilityIOSDark/index.styl +6 -3
  880. package/themes/vkAccessibilityIOSDark/struct.json +136 -7
  881. package/themes/vkBase/cssVars/declarations/index.css +6 -3
  882. package/themes/vkBase/cssVars/declarations/noSizes.css +6 -3
  883. package/themes/vkBase/cssVars/declarations/onlyColors.css +6 -3
  884. package/themes/vkBase/cssVars/declarations/onlyColors.js +2 -2
  885. package/themes/vkBase/cssVars/declarations/onlyVariables.css +6 -3
  886. package/themes/vkBase/cssVars/declarations/onlyVariables.js +2 -2
  887. package/themes/vkBase/cssVars/declarations/onlyVariablesLocal.css +6 -3
  888. package/themes/vkBase/cssVars/declarations/onlyVariablesLocalIncremental.css +6 -3
  889. package/themes/vkBase/cssVars/theme/fallbacks/index.css +6 -3
  890. package/themes/vkBase/cssVars/theme/fallbacks/index.less +6 -3
  891. package/themes/vkBase/cssVars/theme/fallbacks/index.pcss +6 -3
  892. package/themes/vkBase/cssVars/theme/fallbacks/index.scss +6 -3
  893. package/themes/vkBase/cssVars/theme/fallbacks/index.styl +6 -3
  894. package/themes/vkBase/cssVars/theme/index.js +17 -3
  895. package/themes/vkBase/cssVars/theme/index.json +17 -3
  896. package/themes/vkBase/docs.json +12 -0
  897. package/themes/vkBase/index.css +6 -3
  898. package/themes/vkBase/index.js +8 -3
  899. package/themes/vkBase/index.json +8 -3
  900. package/themes/vkBase/index.less +6 -3
  901. package/themes/vkBase/index.pcss +6 -3
  902. package/themes/vkBase/index.scss +6 -3
  903. package/themes/vkBase/index.styl +6 -3
  904. package/themes/vkBase/struct.json +136 -7
  905. package/themes/vkBaseDark/cssVars/declarations/index.css +6 -3
  906. package/themes/vkBaseDark/cssVars/declarations/noSizes.css +6 -3
  907. package/themes/vkBaseDark/cssVars/declarations/onlyColors.css +6 -3
  908. package/themes/vkBaseDark/cssVars/declarations/onlyColors.js +2 -2
  909. package/themes/vkBaseDark/cssVars/declarations/onlyVariables.css +6 -3
  910. package/themes/vkBaseDark/cssVars/declarations/onlyVariables.js +2 -2
  911. package/themes/vkBaseDark/cssVars/declarations/onlyVariablesLocal.css +6 -3
  912. package/themes/vkBaseDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -3
  913. package/themes/vkBaseDark/cssVars/theme/fallbacks/index.css +6 -3
  914. package/themes/vkBaseDark/cssVars/theme/fallbacks/index.less +6 -3
  915. package/themes/vkBaseDark/cssVars/theme/fallbacks/index.pcss +6 -3
  916. package/themes/vkBaseDark/cssVars/theme/fallbacks/index.scss +6 -3
  917. package/themes/vkBaseDark/cssVars/theme/fallbacks/index.styl +6 -3
  918. package/themes/vkBaseDark/cssVars/theme/index.js +17 -3
  919. package/themes/vkBaseDark/cssVars/theme/index.json +17 -3
  920. package/themes/vkBaseDark/docs.json +12 -0
  921. package/themes/vkBaseDark/index.css +6 -3
  922. package/themes/vkBaseDark/index.js +8 -3
  923. package/themes/vkBaseDark/index.json +8 -3
  924. package/themes/vkBaseDark/index.less +6 -3
  925. package/themes/vkBaseDark/index.pcss +6 -3
  926. package/themes/vkBaseDark/index.scss +6 -3
  927. package/themes/vkBaseDark/index.styl +6 -3
  928. package/themes/vkBaseDark/struct.json +136 -7
  929. package/themes/vkCom/cssVars/declarations/index.css +6 -3
  930. package/themes/vkCom/cssVars/declarations/noSizes.css +6 -3
  931. package/themes/vkCom/cssVars/declarations/onlyColors.css +6 -3
  932. package/themes/vkCom/cssVars/declarations/onlyColors.js +2 -2
  933. package/themes/vkCom/cssVars/declarations/onlyVariables.css +6 -3
  934. package/themes/vkCom/cssVars/declarations/onlyVariables.js +2 -2
  935. package/themes/vkCom/cssVars/declarations/onlyVariablesLocal.css +6 -3
  936. package/themes/vkCom/cssVars/declarations/onlyVariablesLocalIncremental.css +6 -3
  937. package/themes/vkCom/cssVars/theme/fallbacks/index.css +6 -3
  938. package/themes/vkCom/cssVars/theme/fallbacks/index.less +6 -3
  939. package/themes/vkCom/cssVars/theme/fallbacks/index.pcss +6 -3
  940. package/themes/vkCom/cssVars/theme/fallbacks/index.scss +6 -3
  941. package/themes/vkCom/cssVars/theme/fallbacks/index.styl +6 -3
  942. package/themes/vkCom/cssVars/theme/index.js +17 -3
  943. package/themes/vkCom/cssVars/theme/index.json +17 -3
  944. package/themes/vkCom/docs.json +12 -0
  945. package/themes/vkCom/index.css +6 -3
  946. package/themes/vkCom/index.js +8 -3
  947. package/themes/vkCom/index.json +8 -3
  948. package/themes/vkCom/index.less +6 -3
  949. package/themes/vkCom/index.pcss +6 -3
  950. package/themes/vkCom/index.scss +6 -3
  951. package/themes/vkCom/index.styl +6 -3
  952. package/themes/vkCom/struct.json +136 -7
  953. package/themes/vkComDark/cssVars/declarations/index.css +7 -4
  954. package/themes/vkComDark/cssVars/declarations/noColors.css +2 -2
  955. package/themes/vkComDark/cssVars/declarations/noSizes.css +7 -4
  956. package/themes/vkComDark/cssVars/declarations/onlyColors.css +5 -2
  957. package/themes/vkComDark/cssVars/declarations/onlyColors.js +2 -2
  958. package/themes/vkComDark/cssVars/declarations/onlyVariables.css +7 -4
  959. package/themes/vkComDark/cssVars/declarations/onlyVariables.js +2 -2
  960. package/themes/vkComDark/cssVars/declarations/onlyVariablesLocal.css +7 -4
  961. package/themes/vkComDark/cssVars/declarations/onlyVariablesLocalIncremental.css +8 -0
  962. package/themes/vkComDark/cssVars/theme/fallbacks/index.css +7 -4
  963. package/themes/vkComDark/cssVars/theme/fallbacks/index.less +7 -4
  964. package/themes/vkComDark/cssVars/theme/fallbacks/index.pcss +7 -4
  965. package/themes/vkComDark/cssVars/theme/fallbacks/index.scss +7 -4
  966. package/themes/vkComDark/cssVars/theme/fallbacks/index.styl +7 -4
  967. package/themes/vkComDark/cssVars/theme/index.js +18 -4
  968. package/themes/vkComDark/cssVars/theme/index.json +18 -4
  969. package/themes/vkComDark/docs.json +12 -0
  970. package/themes/vkComDark/index.css +7 -4
  971. package/themes/vkComDark/index.js +9 -4
  972. package/themes/vkComDark/index.json +9 -4
  973. package/themes/vkComDark/index.less +7 -4
  974. package/themes/vkComDark/index.pcss +7 -4
  975. package/themes/vkComDark/index.scss +7 -4
  976. package/themes/vkComDark/index.styl +7 -4
  977. package/themes/vkComDark/struct.json +135 -6
  978. package/themes/vkIOS/cssVars/declarations/index.css +6 -3
  979. package/themes/vkIOS/cssVars/declarations/noSizes.css +6 -3
  980. package/themes/vkIOS/cssVars/declarations/onlyColors.css +6 -3
  981. package/themes/vkIOS/cssVars/declarations/onlyColors.js +2 -2
  982. package/themes/vkIOS/cssVars/declarations/onlyVariables.css +6 -3
  983. package/themes/vkIOS/cssVars/declarations/onlyVariables.js +2 -2
  984. package/themes/vkIOS/cssVars/declarations/onlyVariablesLocal.css +6 -3
  985. package/themes/vkIOS/cssVars/theme/fallbacks/index.css +6 -3
  986. package/themes/vkIOS/cssVars/theme/fallbacks/index.less +6 -3
  987. package/themes/vkIOS/cssVars/theme/fallbacks/index.pcss +6 -3
  988. package/themes/vkIOS/cssVars/theme/fallbacks/index.scss +6 -3
  989. package/themes/vkIOS/cssVars/theme/fallbacks/index.styl +6 -3
  990. package/themes/vkIOS/cssVars/theme/index.js +17 -3
  991. package/themes/vkIOS/cssVars/theme/index.json +17 -3
  992. package/themes/vkIOS/docs.json +12 -0
  993. package/themes/vkIOS/index.css +6 -3
  994. package/themes/vkIOS/index.js +8 -3
  995. package/themes/vkIOS/index.json +8 -3
  996. package/themes/vkIOS/index.less +6 -3
  997. package/themes/vkIOS/index.pcss +6 -3
  998. package/themes/vkIOS/index.scss +6 -3
  999. package/themes/vkIOS/index.styl +6 -3
  1000. package/themes/vkIOS/struct.json +136 -7
  1001. package/themes/vkIOSDark/cssVars/declarations/index.css +6 -3
  1002. package/themes/vkIOSDark/cssVars/declarations/noSizes.css +6 -3
  1003. package/themes/vkIOSDark/cssVars/declarations/onlyColors.css +6 -3
  1004. package/themes/vkIOSDark/cssVars/declarations/onlyColors.js +2 -2
  1005. package/themes/vkIOSDark/cssVars/declarations/onlyVariables.css +6 -3
  1006. package/themes/vkIOSDark/cssVars/declarations/onlyVariables.js +2 -2
  1007. package/themes/vkIOSDark/cssVars/declarations/onlyVariablesLocal.css +6 -3
  1008. package/themes/vkIOSDark/cssVars/theme/fallbacks/index.css +6 -3
  1009. package/themes/vkIOSDark/cssVars/theme/fallbacks/index.less +6 -3
  1010. package/themes/vkIOSDark/cssVars/theme/fallbacks/index.pcss +6 -3
  1011. package/themes/vkIOSDark/cssVars/theme/fallbacks/index.scss +6 -3
  1012. package/themes/vkIOSDark/cssVars/theme/fallbacks/index.styl +6 -3
  1013. package/themes/vkIOSDark/cssVars/theme/index.js +17 -3
  1014. package/themes/vkIOSDark/cssVars/theme/index.json +17 -3
  1015. package/themes/vkIOSDark/docs.json +12 -0
  1016. package/themes/vkIOSDark/index.css +6 -3
  1017. package/themes/vkIOSDark/index.js +8 -3
  1018. package/themes/vkIOSDark/index.json +8 -3
  1019. package/themes/vkIOSDark/index.less +6 -3
  1020. package/themes/vkIOSDark/index.pcss +6 -3
  1021. package/themes/vkIOSDark/index.scss +6 -3
  1022. package/themes/vkIOSDark/index.styl +6 -3
  1023. package/themes/vkIOSDark/struct.json +136 -7
  1024. package/themes/vkIdOk/cssVars/declarations/index.css +6 -3
  1025. package/themes/vkIdOk/cssVars/declarations/noSizes.css +6 -3
  1026. package/themes/vkIdOk/cssVars/declarations/onlyColors.css +6 -3
  1027. package/themes/vkIdOk/cssVars/declarations/onlyColors.js +2 -2
  1028. package/themes/vkIdOk/cssVars/declarations/onlyVariables.css +6 -3
  1029. package/themes/vkIdOk/cssVars/declarations/onlyVariables.js +2 -2
  1030. package/themes/vkIdOk/cssVars/declarations/onlyVariablesLocal.css +6 -3
  1031. package/themes/vkIdOk/cssVars/declarations/onlyVariablesLocalIncremental.css +6 -3
  1032. package/themes/vkIdOk/cssVars/theme/fallbacks/index.css +6 -3
  1033. package/themes/vkIdOk/cssVars/theme/fallbacks/index.less +6 -3
  1034. package/themes/vkIdOk/cssVars/theme/fallbacks/index.pcss +6 -3
  1035. package/themes/vkIdOk/cssVars/theme/fallbacks/index.scss +6 -3
  1036. package/themes/vkIdOk/cssVars/theme/fallbacks/index.styl +6 -3
  1037. package/themes/vkIdOk/cssVars/theme/index.js +17 -3
  1038. package/themes/vkIdOk/cssVars/theme/index.json +17 -3
  1039. package/themes/vkIdOk/docs.json +12 -0
  1040. package/themes/vkIdOk/index.css +6 -3
  1041. package/themes/vkIdOk/index.js +8 -3
  1042. package/themes/vkIdOk/index.json +8 -3
  1043. package/themes/vkIdOk/index.less +6 -3
  1044. package/themes/vkIdOk/index.pcss +6 -3
  1045. package/themes/vkIdOk/index.scss +6 -3
  1046. package/themes/vkIdOk/index.styl +6 -3
  1047. package/themes/vkIdOk/struct.json +136 -7
  1048. package/themes/vkIdOkDark/cssVars/declarations/index.css +6 -3
  1049. package/themes/vkIdOkDark/cssVars/declarations/noSizes.css +6 -3
  1050. package/themes/vkIdOkDark/cssVars/declarations/onlyColors.css +6 -3
  1051. package/themes/vkIdOkDark/cssVars/declarations/onlyColors.js +2 -2
  1052. package/themes/vkIdOkDark/cssVars/declarations/onlyVariables.css +6 -3
  1053. package/themes/vkIdOkDark/cssVars/declarations/onlyVariables.js +2 -2
  1054. package/themes/vkIdOkDark/cssVars/declarations/onlyVariablesLocal.css +6 -3
  1055. package/themes/vkIdOkDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -3
  1056. package/themes/vkIdOkDark/cssVars/theme/fallbacks/index.css +6 -3
  1057. package/themes/vkIdOkDark/cssVars/theme/fallbacks/index.less +6 -3
  1058. package/themes/vkIdOkDark/cssVars/theme/fallbacks/index.pcss +6 -3
  1059. package/themes/vkIdOkDark/cssVars/theme/fallbacks/index.scss +6 -3
  1060. package/themes/vkIdOkDark/cssVars/theme/fallbacks/index.styl +6 -3
  1061. package/themes/vkIdOkDark/cssVars/theme/index.js +17 -3
  1062. package/themes/vkIdOkDark/cssVars/theme/index.json +17 -3
  1063. package/themes/vkIdOkDark/docs.json +12 -0
  1064. package/themes/vkIdOkDark/index.css +6 -3
  1065. package/themes/vkIdOkDark/index.js +8 -3
  1066. package/themes/vkIdOkDark/index.json +8 -3
  1067. package/themes/vkIdOkDark/index.less +6 -3
  1068. package/themes/vkIdOkDark/index.pcss +6 -3
  1069. package/themes/vkIdOkDark/index.scss +6 -3
  1070. package/themes/vkIdOkDark/index.styl +6 -3
  1071. package/themes/vkIdOkDark/struct.json +136 -7
  1072. package/themes/vkIdOkIOS/cssVars/declarations/index.css +6 -3
  1073. package/themes/vkIdOkIOS/cssVars/declarations/noSizes.css +6 -3
  1074. package/themes/vkIdOkIOS/cssVars/declarations/onlyColors.css +6 -3
  1075. package/themes/vkIdOkIOS/cssVars/declarations/onlyColors.js +2 -2
  1076. package/themes/vkIdOkIOS/cssVars/declarations/onlyVariables.css +6 -3
  1077. package/themes/vkIdOkIOS/cssVars/declarations/onlyVariables.js +2 -2
  1078. package/themes/vkIdOkIOS/cssVars/declarations/onlyVariablesLocal.css +6 -3
  1079. package/themes/vkIdOkIOS/cssVars/theme/fallbacks/index.css +6 -3
  1080. package/themes/vkIdOkIOS/cssVars/theme/fallbacks/index.less +6 -3
  1081. package/themes/vkIdOkIOS/cssVars/theme/fallbacks/index.pcss +6 -3
  1082. package/themes/vkIdOkIOS/cssVars/theme/fallbacks/index.scss +6 -3
  1083. package/themes/vkIdOkIOS/cssVars/theme/fallbacks/index.styl +6 -3
  1084. package/themes/vkIdOkIOS/cssVars/theme/index.js +17 -3
  1085. package/themes/vkIdOkIOS/cssVars/theme/index.json +17 -3
  1086. package/themes/vkIdOkIOS/docs.json +12 -0
  1087. package/themes/vkIdOkIOS/index.css +6 -3
  1088. package/themes/vkIdOkIOS/index.js +8 -3
  1089. package/themes/vkIdOkIOS/index.json +8 -3
  1090. package/themes/vkIdOkIOS/index.less +6 -3
  1091. package/themes/vkIdOkIOS/index.pcss +6 -3
  1092. package/themes/vkIdOkIOS/index.scss +6 -3
  1093. package/themes/vkIdOkIOS/index.styl +6 -3
  1094. package/themes/vkIdOkIOS/struct.json +136 -7
  1095. package/themes/vkIdOkIOSDark/cssVars/declarations/index.css +6 -3
  1096. package/themes/vkIdOkIOSDark/cssVars/declarations/noSizes.css +6 -3
  1097. package/themes/vkIdOkIOSDark/cssVars/declarations/onlyColors.css +6 -3
  1098. package/themes/vkIdOkIOSDark/cssVars/declarations/onlyColors.js +2 -2
  1099. package/themes/vkIdOkIOSDark/cssVars/declarations/onlyVariables.css +6 -3
  1100. package/themes/vkIdOkIOSDark/cssVars/declarations/onlyVariables.js +2 -2
  1101. package/themes/vkIdOkIOSDark/cssVars/declarations/onlyVariablesLocal.css +6 -3
  1102. package/themes/vkIdOkIOSDark/cssVars/theme/fallbacks/index.css +6 -3
  1103. package/themes/vkIdOkIOSDark/cssVars/theme/fallbacks/index.less +6 -3
  1104. package/themes/vkIdOkIOSDark/cssVars/theme/fallbacks/index.pcss +6 -3
  1105. package/themes/vkIdOkIOSDark/cssVars/theme/fallbacks/index.scss +6 -3
  1106. package/themes/vkIdOkIOSDark/cssVars/theme/fallbacks/index.styl +6 -3
  1107. package/themes/vkIdOkIOSDark/cssVars/theme/index.js +17 -3
  1108. package/themes/vkIdOkIOSDark/cssVars/theme/index.json +17 -3
  1109. package/themes/vkIdOkIOSDark/docs.json +12 -0
  1110. package/themes/vkIdOkIOSDark/index.css +6 -3
  1111. package/themes/vkIdOkIOSDark/index.js +8 -3
  1112. package/themes/vkIdOkIOSDark/index.json +8 -3
  1113. package/themes/vkIdOkIOSDark/index.less +6 -3
  1114. package/themes/vkIdOkIOSDark/index.pcss +6 -3
  1115. package/themes/vkIdOkIOSDark/index.scss +6 -3
  1116. package/themes/vkIdOkIOSDark/index.styl +6 -3
  1117. package/themes/vkIdOkIOSDark/struct.json +136 -7
  1118. package/themes/vkontakteAndroid/cssVars/declarations/index.css +44 -41
  1119. package/themes/vkontakteAndroid/cssVars/declarations/noColors.css +38 -38
  1120. package/themes/vkontakteAndroid/cssVars/declarations/noSizes.css +44 -41
  1121. package/themes/vkontakteAndroid/cssVars/declarations/onlyColors.css +6 -3
  1122. package/themes/vkontakteAndroid/cssVars/declarations/onlyColors.js +2 -2
  1123. package/themes/vkontakteAndroid/cssVars/declarations/onlyVariables.css +44 -41
  1124. package/themes/vkontakteAndroid/cssVars/declarations/onlyVariables.js +2 -2
  1125. package/themes/vkontakteAndroid/cssVars/declarations/onlyVariablesLocal.css +44 -41
  1126. package/themes/vkontakteAndroid/cssVars/declarations/onlyVariablesLocalIncremental.css +38 -34
  1127. package/themes/vkontakteAndroid/cssVars/theme/fallbacks/index.css +44 -41
  1128. package/themes/vkontakteAndroid/cssVars/theme/fallbacks/index.less +44 -41
  1129. package/themes/vkontakteAndroid/cssVars/theme/fallbacks/index.pcss +44 -41
  1130. package/themes/vkontakteAndroid/cssVars/theme/fallbacks/index.scss +44 -41
  1131. package/themes/vkontakteAndroid/cssVars/theme/fallbacks/index.styl +44 -41
  1132. package/themes/vkontakteAndroid/cssVars/theme/index.js +127 -113
  1133. package/themes/vkontakteAndroid/cssVars/theme/index.json +127 -113
  1134. package/themes/vkontakteAndroid/docs.json +12 -0
  1135. package/themes/vkontakteAndroid/index.css +44 -41
  1136. package/themes/vkontakteAndroid/index.js +46 -41
  1137. package/themes/vkontakteAndroid/index.json +46 -41
  1138. package/themes/vkontakteAndroid/index.less +44 -41
  1139. package/themes/vkontakteAndroid/index.pcss +44 -41
  1140. package/themes/vkontakteAndroid/index.scss +44 -41
  1141. package/themes/vkontakteAndroid/index.styl +44 -41
  1142. package/themes/vkontakteAndroid/struct.json +96 -43
  1143. package/themes/vkontakteAndroidDark/cssVars/declarations/index.css +44 -41
  1144. package/themes/vkontakteAndroidDark/cssVars/declarations/noColors.css +38 -38
  1145. package/themes/vkontakteAndroidDark/cssVars/declarations/noSizes.css +44 -41
  1146. package/themes/vkontakteAndroidDark/cssVars/declarations/onlyColors.css +6 -3
  1147. package/themes/vkontakteAndroidDark/cssVars/declarations/onlyColors.js +2 -2
  1148. package/themes/vkontakteAndroidDark/cssVars/declarations/onlyVariables.css +44 -41
  1149. package/themes/vkontakteAndroidDark/cssVars/declarations/onlyVariables.js +2 -2
  1150. package/themes/vkontakteAndroidDark/cssVars/declarations/onlyVariablesLocal.css +44 -41
  1151. package/themes/vkontakteAndroidDark/cssVars/declarations/onlyVariablesLocalIncremental.css +38 -34
  1152. package/themes/vkontakteAndroidDark/cssVars/theme/fallbacks/index.css +44 -41
  1153. package/themes/vkontakteAndroidDark/cssVars/theme/fallbacks/index.less +44 -41
  1154. package/themes/vkontakteAndroidDark/cssVars/theme/fallbacks/index.pcss +44 -41
  1155. package/themes/vkontakteAndroidDark/cssVars/theme/fallbacks/index.scss +44 -41
  1156. package/themes/vkontakteAndroidDark/cssVars/theme/fallbacks/index.styl +44 -41
  1157. package/themes/vkontakteAndroidDark/cssVars/theme/index.js +127 -113
  1158. package/themes/vkontakteAndroidDark/cssVars/theme/index.json +127 -113
  1159. package/themes/vkontakteAndroidDark/docs.json +12 -0
  1160. package/themes/vkontakteAndroidDark/index.css +44 -41
  1161. package/themes/vkontakteAndroidDark/index.js +46 -41
  1162. package/themes/vkontakteAndroidDark/index.json +46 -41
  1163. package/themes/vkontakteAndroidDark/index.less +44 -41
  1164. package/themes/vkontakteAndroidDark/index.pcss +44 -41
  1165. package/themes/vkontakteAndroidDark/index.scss +44 -41
  1166. package/themes/vkontakteAndroidDark/index.styl +44 -41
  1167. package/themes/vkontakteAndroidDark/struct.json +96 -43
  1168. package/themes/vkontakteCom/cssVars/declarations/index.css +40 -37
  1169. package/themes/vkontakteCom/cssVars/declarations/noColors.css +34 -34
  1170. package/themes/vkontakteCom/cssVars/declarations/noSizes.css +40 -37
  1171. package/themes/vkontakteCom/cssVars/declarations/onlyColors.css +6 -3
  1172. package/themes/vkontakteCom/cssVars/declarations/onlyColors.js +2 -2
  1173. package/themes/vkontakteCom/cssVars/declarations/onlyVariables.css +40 -37
  1174. package/themes/vkontakteCom/cssVars/declarations/onlyVariables.js +2 -2
  1175. package/themes/vkontakteCom/cssVars/declarations/onlyVariablesLocal.css +40 -37
  1176. package/themes/vkontakteCom/cssVars/declarations/onlyVariablesLocalIncremental.css +34 -34
  1177. package/themes/vkontakteCom/cssVars/theme/fallbacks/index.css +40 -37
  1178. package/themes/vkontakteCom/cssVars/theme/fallbacks/index.less +40 -37
  1179. package/themes/vkontakteCom/cssVars/theme/fallbacks/index.pcss +40 -37
  1180. package/themes/vkontakteCom/cssVars/theme/fallbacks/index.scss +40 -37
  1181. package/themes/vkontakteCom/cssVars/theme/fallbacks/index.styl +40 -37
  1182. package/themes/vkontakteCom/cssVars/theme/index.js +99 -85
  1183. package/themes/vkontakteCom/cssVars/theme/index.json +99 -85
  1184. package/themes/vkontakteCom/docs.json +12 -0
  1185. package/themes/vkontakteCom/index.css +40 -37
  1186. package/themes/vkontakteCom/index.js +42 -37
  1187. package/themes/vkontakteCom/index.json +42 -37
  1188. package/themes/vkontakteCom/index.less +40 -37
  1189. package/themes/vkontakteCom/index.pcss +40 -37
  1190. package/themes/vkontakteCom/index.scss +40 -37
  1191. package/themes/vkontakteCom/index.styl +40 -37
  1192. package/themes/vkontakteCom/struct.json +170 -41
  1193. package/themes/vkontakteComDark/cssVars/declarations/index.css +41 -38
  1194. package/themes/vkontakteComDark/cssVars/declarations/noColors.css +36 -36
  1195. package/themes/vkontakteComDark/cssVars/declarations/noSizes.css +41 -38
  1196. package/themes/vkontakteComDark/cssVars/declarations/onlyColors.css +5 -2
  1197. package/themes/vkontakteComDark/cssVars/declarations/onlyColors.js +2 -2
  1198. package/themes/vkontakteComDark/cssVars/declarations/onlyVariables.css +41 -38
  1199. package/themes/vkontakteComDark/cssVars/declarations/onlyVariables.js +2 -2
  1200. package/themes/vkontakteComDark/cssVars/declarations/onlyVariablesLocal.css +41 -38
  1201. package/themes/vkontakteComDark/cssVars/declarations/onlyVariablesLocalIncremental.css +34 -34
  1202. package/themes/vkontakteComDark/cssVars/theme/fallbacks/index.css +41 -38
  1203. package/themes/vkontakteComDark/cssVars/theme/fallbacks/index.less +41 -38
  1204. package/themes/vkontakteComDark/cssVars/theme/fallbacks/index.pcss +41 -38
  1205. package/themes/vkontakteComDark/cssVars/theme/fallbacks/index.scss +41 -38
  1206. package/themes/vkontakteComDark/cssVars/theme/fallbacks/index.styl +41 -38
  1207. package/themes/vkontakteComDark/cssVars/theme/index.js +100 -86
  1208. package/themes/vkontakteComDark/cssVars/theme/index.json +100 -86
  1209. package/themes/vkontakteComDark/docs.json +12 -0
  1210. package/themes/vkontakteComDark/index.css +41 -38
  1211. package/themes/vkontakteComDark/index.js +43 -38
  1212. package/themes/vkontakteComDark/index.json +43 -38
  1213. package/themes/vkontakteComDark/index.less +41 -38
  1214. package/themes/vkontakteComDark/index.pcss +41 -38
  1215. package/themes/vkontakteComDark/index.scss +41 -38
  1216. package/themes/vkontakteComDark/index.styl +41 -38
  1217. package/themes/vkontakteComDark/struct.json +169 -40
  1218. package/themes/vkontakteIOS/cssVars/declarations/index.css +40 -37
  1219. package/themes/vkontakteIOS/cssVars/declarations/noColors.css +34 -34
  1220. package/themes/vkontakteIOS/cssVars/declarations/noSizes.css +40 -37
  1221. package/themes/vkontakteIOS/cssVars/declarations/onlyColors.css +6 -3
  1222. package/themes/vkontakteIOS/cssVars/declarations/onlyColors.js +2 -2
  1223. package/themes/vkontakteIOS/cssVars/declarations/onlyVariables.css +40 -37
  1224. package/themes/vkontakteIOS/cssVars/declarations/onlyVariables.js +2 -2
  1225. package/themes/vkontakteIOS/cssVars/declarations/onlyVariablesLocal.css +40 -37
  1226. package/themes/vkontakteIOS/cssVars/declarations/onlyVariablesLocalIncremental.css +34 -34
  1227. package/themes/vkontakteIOS/cssVars/theme/fallbacks/index.css +40 -37
  1228. package/themes/vkontakteIOS/cssVars/theme/fallbacks/index.less +40 -37
  1229. package/themes/vkontakteIOS/cssVars/theme/fallbacks/index.pcss +40 -37
  1230. package/themes/vkontakteIOS/cssVars/theme/fallbacks/index.scss +40 -37
  1231. package/themes/vkontakteIOS/cssVars/theme/fallbacks/index.styl +40 -37
  1232. package/themes/vkontakteIOS/cssVars/theme/index.js +99 -85
  1233. package/themes/vkontakteIOS/cssVars/theme/index.json +99 -85
  1234. package/themes/vkontakteIOS/docs.json +12 -0
  1235. package/themes/vkontakteIOS/index.css +40 -37
  1236. package/themes/vkontakteIOS/index.js +42 -37
  1237. package/themes/vkontakteIOS/index.json +42 -37
  1238. package/themes/vkontakteIOS/index.less +40 -37
  1239. package/themes/vkontakteIOS/index.pcss +40 -37
  1240. package/themes/vkontakteIOS/index.scss +40 -37
  1241. package/themes/vkontakteIOS/index.styl +40 -37
  1242. package/themes/vkontakteIOS/struct.json +170 -41
  1243. package/themes/vkontakteIOSDark/cssVars/declarations/index.css +40 -37
  1244. package/themes/vkontakteIOSDark/cssVars/declarations/noColors.css +34 -34
  1245. package/themes/vkontakteIOSDark/cssVars/declarations/noSizes.css +40 -37
  1246. package/themes/vkontakteIOSDark/cssVars/declarations/onlyColors.css +6 -3
  1247. package/themes/vkontakteIOSDark/cssVars/declarations/onlyColors.js +2 -2
  1248. package/themes/vkontakteIOSDark/cssVars/declarations/onlyVariables.css +40 -37
  1249. package/themes/vkontakteIOSDark/cssVars/declarations/onlyVariables.js +2 -2
  1250. package/themes/vkontakteIOSDark/cssVars/declarations/onlyVariablesLocal.css +40 -37
  1251. package/themes/vkontakteIOSDark/cssVars/declarations/onlyVariablesLocalIncremental.css +34 -34
  1252. package/themes/vkontakteIOSDark/cssVars/theme/fallbacks/index.css +40 -37
  1253. package/themes/vkontakteIOSDark/cssVars/theme/fallbacks/index.less +40 -37
  1254. package/themes/vkontakteIOSDark/cssVars/theme/fallbacks/index.pcss +40 -37
  1255. package/themes/vkontakteIOSDark/cssVars/theme/fallbacks/index.scss +40 -37
  1256. package/themes/vkontakteIOSDark/cssVars/theme/fallbacks/index.styl +40 -37
  1257. package/themes/vkontakteIOSDark/cssVars/theme/index.js +99 -85
  1258. package/themes/vkontakteIOSDark/cssVars/theme/index.json +99 -85
  1259. package/themes/vkontakteIOSDark/docs.json +12 -0
  1260. package/themes/vkontakteIOSDark/index.css +40 -37
  1261. package/themes/vkontakteIOSDark/index.js +42 -37
  1262. package/themes/vkontakteIOSDark/index.json +42 -37
  1263. package/themes/vkontakteIOSDark/index.less +40 -37
  1264. package/themes/vkontakteIOSDark/index.pcss +40 -37
  1265. package/themes/vkontakteIOSDark/index.scss +40 -37
  1266. package/themes/vkontakteIOSDark/index.styl +40 -37
  1267. package/themes/vkontakteIOSDark/struct.json +170 -41
  1268. package/themes/widgets/cssVars/declarations/index.css +3 -0
  1269. package/themes/widgets/cssVars/declarations/noSizes.css +3 -0
  1270. package/themes/widgets/cssVars/declarations/onlyColors.css +3 -0
  1271. package/themes/widgets/cssVars/declarations/onlyColors.js +2 -2
  1272. package/themes/widgets/cssVars/declarations/onlyVariables.css +3 -0
  1273. package/themes/widgets/cssVars/declarations/onlyVariables.js +2 -2
  1274. package/themes/widgets/cssVars/declarations/onlyVariablesLocal.css +3 -0
  1275. package/themes/widgets/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  1276. package/themes/widgets/cssVars/theme/fallbacks/index.css +3 -0
  1277. package/themes/widgets/cssVars/theme/fallbacks/index.less +3 -0
  1278. package/themes/widgets/cssVars/theme/fallbacks/index.pcss +3 -0
  1279. package/themes/widgets/cssVars/theme/fallbacks/index.scss +3 -0
  1280. package/themes/widgets/cssVars/theme/fallbacks/index.styl +3 -0
  1281. package/themes/widgets/cssVars/theme/index.js +14 -0
  1282. package/themes/widgets/cssVars/theme/index.json +14 -0
  1283. package/themes/widgets/docs.json +12 -0
  1284. package/themes/widgets/index.css +3 -0
  1285. package/themes/widgets/index.js +5 -0
  1286. package/themes/widgets/index.json +5 -0
  1287. package/themes/widgets/index.less +3 -0
  1288. package/themes/widgets/index.pcss +3 -0
  1289. package/themes/widgets/index.scss +3 -0
  1290. package/themes/widgets/index.styl +3 -0
  1291. package/themes/widgets/struct.json +133 -4
  1292. package/themes/widgetsDark/cssVars/declarations/index.css +3 -0
  1293. package/themes/widgetsDark/cssVars/declarations/noSizes.css +3 -0
  1294. package/themes/widgetsDark/cssVars/declarations/onlyColors.css +3 -0
  1295. package/themes/widgetsDark/cssVars/declarations/onlyColors.js +2 -2
  1296. package/themes/widgetsDark/cssVars/declarations/onlyVariables.css +3 -0
  1297. package/themes/widgetsDark/cssVars/declarations/onlyVariables.js +2 -2
  1298. package/themes/widgetsDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  1299. package/themes/widgetsDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  1300. package/themes/widgetsDark/cssVars/theme/fallbacks/index.css +3 -0
  1301. package/themes/widgetsDark/cssVars/theme/fallbacks/index.less +3 -0
  1302. package/themes/widgetsDark/cssVars/theme/fallbacks/index.pcss +3 -0
  1303. package/themes/widgetsDark/cssVars/theme/fallbacks/index.scss +3 -0
  1304. package/themes/widgetsDark/cssVars/theme/fallbacks/index.styl +3 -0
  1305. package/themes/widgetsDark/cssVars/theme/index.js +14 -0
  1306. package/themes/widgetsDark/cssVars/theme/index.json +14 -0
  1307. package/themes/widgetsDark/docs.json +12 -0
  1308. package/themes/widgetsDark/index.css +3 -0
  1309. package/themes/widgetsDark/index.js +5 -0
  1310. package/themes/widgetsDark/index.json +5 -0
  1311. package/themes/widgetsDark/index.less +3 -0
  1312. package/themes/widgetsDark/index.pcss +3 -0
  1313. package/themes/widgetsDark/index.scss +3 -0
  1314. package/themes/widgetsDark/index.styl +3 -0
  1315. package/themes/widgetsDark/struct.json +133 -4
  1316. package/themes/workspaceAdmin/cssVars/declarations/index.css +3 -0
  1317. package/themes/workspaceAdmin/cssVars/declarations/noSizes.css +3 -0
  1318. package/themes/workspaceAdmin/cssVars/declarations/onlyColors.css +3 -0
  1319. package/themes/workspaceAdmin/cssVars/declarations/onlyColors.js +2 -2
  1320. package/themes/workspaceAdmin/cssVars/declarations/onlyVariables.css +3 -0
  1321. package/themes/workspaceAdmin/cssVars/declarations/onlyVariables.js +2 -2
  1322. package/themes/workspaceAdmin/cssVars/declarations/onlyVariablesLocal.css +3 -0
  1323. package/themes/workspaceAdmin/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  1324. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.css +3 -0
  1325. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.less +3 -0
  1326. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.pcss +3 -0
  1327. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.scss +3 -0
  1328. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.styl +3 -0
  1329. package/themes/workspaceAdmin/cssVars/theme/index.js +14 -0
  1330. package/themes/workspaceAdmin/cssVars/theme/index.json +14 -0
  1331. package/themes/workspaceAdmin/docs.json +12 -0
  1332. package/themes/workspaceAdmin/index.css +3 -0
  1333. package/themes/workspaceAdmin/index.js +5 -0
  1334. package/themes/workspaceAdmin/index.json +5 -0
  1335. package/themes/workspaceAdmin/index.less +3 -0
  1336. package/themes/workspaceAdmin/index.pcss +3 -0
  1337. package/themes/workspaceAdmin/index.scss +3 -0
  1338. package/themes/workspaceAdmin/index.styl +3 -0
  1339. package/themes/workspaceAdmin/struct.json +133 -4
  1340. package/themes/workspaceAdminDark/cssVars/declarations/index.css +3 -0
  1341. package/themes/workspaceAdminDark/cssVars/declarations/noSizes.css +3 -0
  1342. package/themes/workspaceAdminDark/cssVars/declarations/onlyColors.css +3 -0
  1343. package/themes/workspaceAdminDark/cssVars/declarations/onlyColors.js +2 -2
  1344. package/themes/workspaceAdminDark/cssVars/declarations/onlyVariables.css +3 -0
  1345. package/themes/workspaceAdminDark/cssVars/declarations/onlyVariables.js +2 -2
  1346. package/themes/workspaceAdminDark/cssVars/declarations/onlyVariablesLocal.css +3 -0
  1347. package/themes/workspaceAdminDark/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  1348. package/themes/workspaceAdminDark/cssVars/theme/fallbacks/index.css +3 -0
  1349. package/themes/workspaceAdminDark/cssVars/theme/fallbacks/index.less +3 -0
  1350. package/themes/workspaceAdminDark/cssVars/theme/fallbacks/index.pcss +3 -0
  1351. package/themes/workspaceAdminDark/cssVars/theme/fallbacks/index.scss +3 -0
  1352. package/themes/workspaceAdminDark/cssVars/theme/fallbacks/index.styl +3 -0
  1353. package/themes/workspaceAdminDark/cssVars/theme/index.js +14 -0
  1354. package/themes/workspaceAdminDark/cssVars/theme/index.json +14 -0
  1355. package/themes/workspaceAdminDark/docs.json +12 -0
  1356. package/themes/workspaceAdminDark/index.css +3 -0
  1357. package/themes/workspaceAdminDark/index.js +5 -0
  1358. package/themes/workspaceAdminDark/index.json +5 -0
  1359. package/themes/workspaceAdminDark/index.less +3 -0
  1360. package/themes/workspaceAdminDark/index.pcss +3 -0
  1361. package/themes/workspaceAdminDark/index.scss +3 -0
  1362. package/themes/workspaceAdminDark/index.styl +3 -0
  1363. package/themes/workspaceAdminDark/struct.json +133 -4
  1364. package/themes/workspaceLandings/cssVars/declarations/index.css +3 -0
  1365. package/themes/workspaceLandings/cssVars/declarations/noSizes.css +3 -0
  1366. package/themes/workspaceLandings/cssVars/declarations/onlyColors.css +3 -0
  1367. package/themes/workspaceLandings/cssVars/declarations/onlyColors.js +2 -2
  1368. package/themes/workspaceLandings/cssVars/declarations/onlyVariables.css +3 -0
  1369. package/themes/workspaceLandings/cssVars/declarations/onlyVariables.js +2 -2
  1370. package/themes/workspaceLandings/cssVars/declarations/onlyVariablesLocal.css +3 -0
  1371. package/themes/workspaceLandings/cssVars/declarations/onlyVariablesLocalIncremental.css +3 -0
  1372. package/themes/workspaceLandings/cssVars/theme/fallbacks/index.css +3 -0
  1373. package/themes/workspaceLandings/cssVars/theme/fallbacks/index.less +3 -0
  1374. package/themes/workspaceLandings/cssVars/theme/fallbacks/index.pcss +3 -0
  1375. package/themes/workspaceLandings/cssVars/theme/fallbacks/index.scss +3 -0
  1376. package/themes/workspaceLandings/cssVars/theme/fallbacks/index.styl +3 -0
  1377. package/themes/workspaceLandings/cssVars/theme/index.js +14 -0
  1378. package/themes/workspaceLandings/cssVars/theme/index.json +14 -0
  1379. package/themes/workspaceLandings/docs.json +12 -0
  1380. package/themes/workspaceLandings/index.css +3 -0
  1381. package/themes/workspaceLandings/index.js +5 -0
  1382. package/themes/workspaceLandings/index.json +5 -0
  1383. package/themes/workspaceLandings/index.less +3 -0
  1384. package/themes/workspaceLandings/index.pcss +3 -0
  1385. package/themes/workspaceLandings/index.scss +3 -0
  1386. package/themes/workspaceLandings/index.styl +3 -0
  1387. package/themes/workspaceLandings/struct.json +133 -4
@@ -1,6 +1,22 @@
1
1
  "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __importDefault = (this && this.__importDefault) || function (mod) {
14
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
+ };
2
16
  Object.defineProperty(exports, "__esModule", { value: true });
3
17
  exports.compileStructJSON = void 0;
18
+ var color_1 = __importDefault(require("color"));
19
+ var convertSnakeToCamel_1 = require("../../helpers/convertSnakeToCamel");
4
20
  var groups = [
5
21
  'fontFamily',
6
22
  'fontWeight',
@@ -16,6 +32,45 @@ var groups = [
16
32
  'theme',
17
33
  'other',
18
34
  ];
35
+ function parseRawToken(rawToken) {
36
+ var percentMatch = rawToken.match(/\d+$/);
37
+ var step = percentMatch && percentMatch.length > 0 ? parseFloat(percentMatch[0]) / 100 : undefined;
38
+ rawToken = rawToken.replace(/^,\s/g, '').replace(/\d+$/g, '').trim();
39
+ if (rawToken.startsWith('var(')) {
40
+ var varNameRaw = /^var\(([\w\-_]+)/.exec(rawToken);
41
+ if (varNameRaw) {
42
+ var varName = varNameRaw[1];
43
+ var varValue = rawToken.slice(varNameRaw[0].length, -1).trim().slice(1).trim();
44
+ return {
45
+ color: varValue,
46
+ token: (0, convertSnakeToCamel_1.convertSnakeToCamel)(varName),
47
+ step: step,
48
+ alpha: new color_1.default(varValue).alpha(),
49
+ };
50
+ }
51
+ }
52
+ return {
53
+ color: rawToken,
54
+ step: step,
55
+ alpha: new color_1.default(rawToken).alpha(),
56
+ };
57
+ }
58
+ function compileStructGradients(cssGradients) {
59
+ var structGradients = {};
60
+ var keys = Object.keys(cssGradients);
61
+ for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) {
62
+ var key = keys_1[_i];
63
+ var rawPoints = cssGradients[key].split('%').slice(0, -1);
64
+ structGradients[key] = rawPoints.map(parseRawToken).map(function (structToken, index, array) {
65
+ var _a;
66
+ if (index > 0 && !structToken.token) {
67
+ return __assign(__assign({}, structToken), { token: (_a = structToken.token) !== null && _a !== void 0 ? _a : array[0].token });
68
+ }
69
+ return structToken;
70
+ });
71
+ }
72
+ return structGradients;
73
+ }
19
74
  /**
20
75
  * Компилирует структурируемый json с темой
21
76
  */
@@ -28,6 +83,9 @@ var compileStructJSON = function (theme) {
28
83
  }
29
84
  structTheme[group][key] = theme[key];
30
85
  });
86
+ if (structTheme['gradient']) {
87
+ structTheme['gradient'] = compileStructGradients(structTheme['gradient']);
88
+ }
31
89
  return JSON.stringify(structTheme, null, '\t');
32
90
  };
33
91
  exports.compileStructJSON = compileStructJSON;
@@ -3,12 +3,29 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var globals_1 = require("@jest/globals");
4
4
  var compileStructJSON_1 = require("./compileStructJSON");
5
5
  (0, globals_1.describe)('compileJSON', function () {
6
- (0, globals_1.it)('should correct stringify', function () {
6
+ (0, globals_1.it)('should stringify correctly', function () {
7
7
  var testData = {
8
8
  colorA: '#fff',
9
9
  colorsScheme: 'scheme',
10
10
  randomToken: 123,
11
+ gradientTest: 'var(--vkui--color_background_content, rgba(255, 255, 255, 1)) 0%, rgba(0, 0, 0, 0) 100%',
12
+ gradientOneColor: [
13
+ 'rgba(0, 0, 255, 0) 0%',
14
+ 'rgba(0, 0, 255, 0.05) 15%',
15
+ 'rgba(0, 0, 255, 0.2) 30%',
16
+ 'rgba(0, 0, 255, 0.8) 70%',
17
+ 'rgba(0, 0, 255, 0.95) 85%',
18
+ 'rgba(0, 0, 255, 1) 100%',
19
+ ].join(', '),
20
+ gradientOneVariable: [
21
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0)) 0%',
22
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0.05)) 15%',
23
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0.2)) 30%',
24
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0.8)) 70%',
25
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0.95)) 85%',
26
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 1)) 100%',
27
+ ].join(', '),
11
28
  };
12
- (0, globals_1.expect)((0, compileStructJSON_1.compileStructJSON)(testData)).toBe("{\n\t\"color\": {\n\t\t\"colorA\": \"#fff\"\n\t},\n\t\"colorsScheme\": {\n\t\t\"colorsScheme\": \"scheme\"\n\t},\n\t\"other\": {\n\t\t\"randomToken\": 123\n\t}\n}");
29
+ (0, globals_1.expect)((0, compileStructJSON_1.compileStructJSON)(testData)).toBe("{\n\t\"color\": {\n\t\t\"colorA\": \"#fff\"\n\t},\n\t\"colorsScheme\": {\n\t\t\"colorsScheme\": \"scheme\"\n\t},\n\t\"other\": {\n\t\t\"randomToken\": 123\n\t},\n\t\"gradient\": {\n\t\t\"gradientTest\": [\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(255, 255, 255, 1)\",\n\t\t\t\t\"token\": \"colorBackgroundContent\",\n\t\t\t\t\"step\": 0,\n\t\t\t\t\"alpha\": 1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 0, 0)\",\n\t\t\t\t\"step\": 1,\n\t\t\t\t\"alpha\": 0,\n\t\t\t\t\"token\": \"colorBackgroundContent\"\n\t\t\t}\n\t\t],\n\t\t\"gradientOneColor\": [\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0)\",\n\t\t\t\t\"step\": 0,\n\t\t\t\t\"alpha\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0.05)\",\n\t\t\t\t\"step\": 0.15,\n\t\t\t\t\"alpha\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0.2)\",\n\t\t\t\t\"step\": 0.3,\n\t\t\t\t\"alpha\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0.8)\",\n\t\t\t\t\"step\": 0.7,\n\t\t\t\t\"alpha\": 0.8\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0.95)\",\n\t\t\t\t\"step\": 0.85,\n\t\t\t\t\"alpha\": 0.95\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 1)\",\n\t\t\t\t\"step\": 1,\n\t\t\t\t\"alpha\": 1\n\t\t\t}\n\t\t],\n\t\t\"gradientOneVariable\": [\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0)\",\n\t\t\t\t\"token\": \"colorIconPrimary\",\n\t\t\t\t\"step\": 0,\n\t\t\t\t\"alpha\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0.05)\",\n\t\t\t\t\"token\": \"colorIconPrimary\",\n\t\t\t\t\"step\": 0.15,\n\t\t\t\t\"alpha\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0.2)\",\n\t\t\t\t\"token\": \"colorIconPrimary\",\n\t\t\t\t\"step\": 0.3,\n\t\t\t\t\"alpha\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0.8)\",\n\t\t\t\t\"token\": \"colorIconPrimary\",\n\t\t\t\t\"step\": 0.7,\n\t\t\t\t\"alpha\": 0.8\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 0.95)\",\n\t\t\t\t\"token\": \"colorIconPrimary\",\n\t\t\t\t\"step\": 0.85,\n\t\t\t\t\"alpha\": 0.95\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"color\": \"rgba(0, 0, 255, 1)\",\n\t\t\t\t\"token\": \"colorIconPrimary\",\n\t\t\t\t\"step\": 1,\n\t\t\t\t\"alpha\": 1\n\t\t\t}\n\t\t]\n\t}\n}");
13
30
  });
14
31
  });
@@ -0,0 +1,4 @@
1
+ /**
2
+ * snake_case -> camelCase
3
+ */
4
+ export declare function convertSnakeToCamel(snake: string, prefix?: string): string;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.convertSnakeToCamel = void 0;
4
+ /**
5
+ * snake_case -> camelCase
6
+ */
7
+ function convertSnakeToCamel(snake, prefix) {
8
+ if (prefix === void 0) { prefix = 'vkui'; }
9
+ return snake
10
+ .replace(new RegExp("^--".concat(prefix, "--")), '')
11
+ .toLowerCase()
12
+ .replace(/([-_][a-z])/g, function (group) { return group.toUpperCase().replace('-', '').replace('_', ''); });
13
+ }
14
+ exports.convertSnakeToCamel = convertSnakeToCamel;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var globals_1 = require("@jest/globals");
4
+ var convertSnakeToCamel_1 = require("./convertSnakeToCamel");
5
+ (0, globals_1.describe)('convertSnakeToCamel', function () {
6
+ (0, globals_1.test)('convert empty string', function () {
7
+ (0, globals_1.expect)((0, convertSnakeToCamel_1.convertSnakeToCamel)('')).toEqual('');
8
+ });
9
+ (0, globals_1.test)('replaces prefix', function () {
10
+ (0, globals_1.expect)((0, convertSnakeToCamel_1.convertSnakeToCamel)('--vkui--')).toEqual('');
11
+ });
12
+ (0, globals_1.test)('replaces prefix and converts to lower case', function () {
13
+ (0, globals_1.expect)((0, convertSnakeToCamel_1.convertSnakeToCamel)('--vkui--Test')).toEqual('test');
14
+ });
15
+ (0, globals_1.test)('replaces prefix and converts to camel case', function () {
16
+ (0, globals_1.expect)((0, convertSnakeToCamel_1.convertSnakeToCamel)('--vkui--Test_var')).toEqual('testVar');
17
+ });
18
+ });
@@ -1,3 +1,12 @@
1
1
  import type { Property } from 'csstype';
2
2
  import { GradientPoints } from '../../interfaces/general/gradients';
3
- export declare function getGradientPointsFromColor(colorArg: Property.Color, opacityMultiplier?: number): GradientPoints;
3
+ export type OpacityPoints = [number, number][];
4
+ type GradientPointRaw = () => {
5
+ value: Property.Color;
6
+ key?: string;
7
+ prefix?: string;
8
+ };
9
+ export declare const defaultOpacityPoints: OpacityPoints;
10
+ export declare function makeGradientPointRaw(value: Property.Color, key?: string, prefix?: string): GradientPointRaw;
11
+ export declare function getGradientPointsFromColor(colorArg: Property.Color | GradientPointRaw, opacityMultiplier?: number, opacityPoints?: OpacityPoints): GradientPoints;
12
+ export {};
@@ -3,17 +3,38 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.getGradientPointsFromColor = void 0;
6
+ exports.getGradientPointsFromColor = exports.makeGradientPointRaw = exports.defaultOpacityPoints = void 0;
7
7
  var color_1 = __importDefault(require("color"));
8
- // opacityMap.json требуется для android и ios клиентов
8
+ var extractVarsNames_1 = require("../themeProcessors/extractVarsNames/extractVarsNames");
9
9
  var opacityMap_json_1 = __importDefault(require("./opacityMap.json"));
10
- function getGradientPointsFromColor(colorArg, opacityMultiplier) {
10
+ exports.defaultOpacityPoints = opacityMap_json_1.default;
11
+ function makeGradientPointRaw(value, key, prefix) {
12
+ return function () { return ({
13
+ value: value,
14
+ key: key,
15
+ prefix: prefix,
16
+ }); };
17
+ }
18
+ exports.makeGradientPointRaw = makeGradientPointRaw;
19
+ function getGradientPointsFromColor(colorArg, opacityMultiplier, opacityPoints) {
11
20
  if (opacityMultiplier === void 0) { opacityMultiplier = 1; }
12
- var colorRGB = (0, color_1.default)(colorArg).rgb().array().join(', ');
13
- return opacityMap_json_1.default
21
+ if (opacityPoints === void 0) { opacityPoints = exports.defaultOpacityPoints; }
22
+ var gradientPointData = typeof colorArg === 'function' ? colorArg() : { value: colorArg };
23
+ var colorRGB = (0, color_1.default)(gradientPointData.value).rgb().array().slice(0, 3).join(', ');
24
+ var colorAlpha = (0, color_1.default)(gradientPointData.value).alpha();
25
+ return opacityPoints
14
26
  .map(function (_a) {
15
27
  var pointOpacity = _a[0], pointCoordinate = _a[1];
16
- return "rgba(".concat(colorRGB, ", ").concat(Math.round(pointOpacity * opacityMultiplier * 1000) / 1000, ") ").concat(pointCoordinate, "%");
28
+ var targetOpacity = colorAlpha * pointOpacity;
29
+ var colorValue = "rgba(".concat(colorRGB, ", ").concat(Math.round(targetOpacity * opacityMultiplier * 1000) / 1000, ")");
30
+ if (typeof gradientPointData.key === 'string') {
31
+ var tokenName = (0, extractVarsNames_1.getVariableName)({
32
+ key: gradientPointData.key,
33
+ prefix: gradientPointData.prefix,
34
+ });
35
+ return "var(".concat(tokenName, ", ").concat(colorValue, ") ").concat(pointCoordinate, "%");
36
+ }
37
+ return "".concat(colorValue, " ").concat(pointCoordinate, "%");
17
38
  })
18
39
  .join(', ');
19
40
  }
@@ -1,4 +1,24 @@
1
- import { ThemeGeneral } from '../../interfaces/general';
1
+ import type { Property } from 'csstype';
2
+ import { ThemeDescription } from '../../interfaces/general';
2
3
  import { Token } from '../../interfaces/general/tools/tokenValue';
3
- export declare function alias<T extends ThemeGeneral>(token: string): (theme: Partial<T>) => Token<any, T>;
4
+ export type TokenFunction<T extends ThemeDescription> = (theme: Partial<T>) => Token<any, T>;
5
+ export type NamedTokenFunction<T extends ThemeDescription> = (theme: Partial<T>) => [string | undefined, Token<any, T>];
6
+ export type OpacityPoint = [number, number];
7
+ /**
8
+ * Функция выполняет подстановку значения другого токена.
9
+ * @param token Имя токена. Можно использовать токены из текущей темы либо из всех тем,
10
+ * от которой наследуется текущая.
11
+ */
12
+ export declare function alias<T extends ThemeDescription>(token: string): TokenFunction<T>;
13
+ /**
14
+ * Функция создаёт runtime-ссылку на другой токен темы выполняет подстановку fallback-значения этого токена.
15
+ * @param token Имя токена. Можно использовать токены из текущей темы либо из всех тем,
16
+ * от которой наследуется текущая.
17
+ */
18
+ export declare function namedAlias<T extends ThemeDescription>(token: string): NamedTokenFunction<T>;
19
+ /**
20
+ * Функция создаёт runtime-ссылку на другой токен темы.
21
+ * @param token Имя токена. Можно использовать любые токены, которые находятся в контексте страницы.
22
+ */
4
23
  export declare function staticRef<T>(value: Token<T, any>): T;
24
+ export declare function gradient<T extends ThemeDescription>(...stops: (Property.Color | NamedTokenFunction<T>)[]): TokenFunction<T>;
@@ -1,10 +1,33 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.staticRef = exports.alias = void 0;
3
+ exports.gradient = exports.staticRef = exports.namedAlias = exports.alias = void 0;
4
+ var getGradientPointsFromColor_1 = require("./getGradientPointsFromColor");
5
+ function readThemeToken(theme, token) {
6
+ var _a, _b;
7
+ return (_a = theme[token]) !== null && _a !== void 0 ? _a : ((_b = theme['colors']) !== null && _b !== void 0 ? _b : {})[token];
8
+ }
9
+ /**
10
+ * Функция выполняет подстановку значения другого токена.
11
+ * @param token Имя токена. Можно использовать токены из текущей темы либо из всех тем,
12
+ * от которой наследуется текущая.
13
+ */
4
14
  function alias(token) {
5
- return function (theme) { return theme[token]; };
15
+ return function (theme) { return readThemeToken(theme, token); };
6
16
  }
7
17
  exports.alias = alias;
18
+ /**
19
+ * Функция создаёт runtime-ссылку на другой токен темы выполняет подстановку fallback-значения этого токена.
20
+ * @param token Имя токена. Можно использовать токены из текущей темы либо из всех тем,
21
+ * от которой наследуется текущая.
22
+ */
23
+ function namedAlias(token) {
24
+ return function (theme) { return [token, readThemeToken(theme, token)]; };
25
+ }
26
+ exports.namedAlias = namedAlias;
27
+ /**
28
+ * Функция создаёт runtime-ссылку на другой токен темы.
29
+ * @param token Имя токена. Можно использовать любые токены, которые находятся в контексте страницы.
30
+ */
8
31
  function staticRef(value) {
9
32
  if (typeof value === 'function') {
10
33
  throw new Error('Cannot use callable token value in static ref');
@@ -12,3 +35,31 @@ function staticRef(value) {
12
35
  return value;
13
36
  }
14
37
  exports.staticRef = staticRef;
38
+ function makeOpacityPoints(count) {
39
+ var result = [];
40
+ for (var i = 0; i < count; i++) {
41
+ var percent = Math.round(i * (1 / (count - 1)) * 100);
42
+ result.push([1, percent]);
43
+ }
44
+ return result;
45
+ }
46
+ function gradient() {
47
+ var stops = [];
48
+ for (var _i = 0; _i < arguments.length; _i++) {
49
+ stops[_i] = arguments[_i];
50
+ }
51
+ var opacityPoints = stops.length > 1 ? makeOpacityPoints(stops.length) : getGradientPointsFromColor_1.defaultOpacityPoints;
52
+ return function (theme) {
53
+ return opacityPoints
54
+ .map(function (_a, index) {
55
+ var _b;
56
+ var pointOpacity = _a[0], pointCoordinate = _a[1];
57
+ var stop = (_b = stops[index]) !== null && _b !== void 0 ? _b : stops[stops.length - 1];
58
+ var _c = typeof stop === 'function' ? stop(theme) : [undefined, stop], stopKey = _c[0], stopValue = _c[1];
59
+ var pointRaw = (0, getGradientPointsFromColor_1.makeGradientPointRaw)(stopValue, stopKey);
60
+ return (0, getGradientPointsFromColor_1.getGradientPointsFromColor)(pointRaw, 1, [[pointOpacity, pointCoordinate]]);
61
+ })
62
+ .join(', ');
63
+ };
64
+ }
65
+ exports.gradient = gradient;
@@ -10,6 +10,16 @@ var tokenHelpers_1 = require("./tokenHelpers");
10
10
  });
11
11
  });
12
12
  });
13
+ (0, globals_1.describe)('namedAlias', function () {
14
+ (0, globals_1.test)('maps token to another token, preserving name', function () {
15
+ (0, globals_1.expect)((0, tokenHelpers_1.namedAlias)('sizeArrow')({ sizeArrow: { regular: 10 } })).toEqual([
16
+ 'sizeArrow',
17
+ {
18
+ regular: 10,
19
+ },
20
+ ]);
21
+ });
22
+ });
13
23
  (0, globals_1.describe)('staticRef', function () {
14
24
  (0, globals_1.test)('returns static value', function () {
15
25
  (0, globals_1.expect)((0, tokenHelpers_1.staticRef)(10)).toEqual(10);
@@ -18,4 +28,40 @@ var tokenHelpers_1 = require("./tokenHelpers");
18
28
  (0, globals_1.expect)(function () { return (0, tokenHelpers_1.staticRef)((0, tokenHelpers_1.alias)('sizeArrow')); }).toThrowError('Cannot use callable token value in static ref');
19
29
  });
20
30
  });
31
+ (0, globals_1.describe)('gradient', function () {
32
+ (0, globals_1.test)('calculates gradient string from 1 color with value', function () {
33
+ var gradientToken = (0, tokenHelpers_1.gradient)('blue');
34
+ var gradientValue = gradientToken({});
35
+ (0, globals_1.expect)(gradientValue).toEqual([
36
+ 'rgba(0, 0, 255, 0) 0%',
37
+ 'rgba(0, 0, 255, 0.05) 15%',
38
+ 'rgba(0, 0, 255, 0.2) 30%',
39
+ 'rgba(0, 0, 255, 0.8) 70%',
40
+ 'rgba(0, 0, 255, 0.95) 85%',
41
+ 'rgba(0, 0, 255, 1) 100%',
42
+ ].join(', '));
43
+ });
44
+ (0, globals_1.test)('calculates gradient string from 1 color with variable', function () {
45
+ var gradientToken = (0, tokenHelpers_1.gradient)((0, tokenHelpers_1.namedAlias)('colorIconPrimary'));
46
+ var gradientValue = gradientToken({ colors: { colorIconPrimary: 'blue' } });
47
+ (0, globals_1.expect)(gradientValue).toEqual([
48
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0)) 0%',
49
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0.05)) 15%',
50
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0.2)) 30%',
51
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0.8)) 70%',
52
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 0.95)) 85%',
53
+ 'var(--vkui--color_icon_primary, rgba(0, 0, 255, 1)) 100%',
54
+ ].join(', '));
55
+ });
56
+ (0, globals_1.test)('calculates gradient string from 2 colors', function () {
57
+ var gradientToken = (0, tokenHelpers_1.gradient)((0, tokenHelpers_1.namedAlias)('colorIconPrimary'), 'transparent');
58
+ var gradientValue = gradientToken({ colors: { colorIconPrimary: 'blue' } });
59
+ (0, globals_1.expect)(gradientValue).toEqual('var(--vkui--color_icon_primary, rgba(0, 0, 255, 1)) 0%, rgba(0, 0, 0, 0) 100%');
60
+ });
61
+ (0, globals_1.test)('calculates gradient string from 3 colors', function () {
62
+ var gradientToken = (0, tokenHelpers_1.gradient)('blue', 'black', 'red');
63
+ var gradientValue = gradientToken({});
64
+ (0, globals_1.expect)(gradientValue).toEqual('rgba(0, 0, 255, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(255, 0, 0, 1) 100%');
65
+ });
66
+ });
21
67
  });
@@ -1,19 +1,10 @@
1
1
  "use strict";
2
- var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
3
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
4
- if (ar || !(i in from)) {
5
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
6
- ar[i] = from[i];
7
- }
8
- }
9
- return to.concat(ar || Array.prototype.slice.call(from));
10
- };
11
2
  Object.defineProperty(exports, "__esModule", { value: true });
12
3
  exports.processCustomMedia = exports.getCustomMediaKey = exports.getUsingViewports = void 0;
13
4
  var capitalize_1 = require("../../helpers/capitalize");
14
5
  var viewports_1 = require("../../../interfaces/general/tools/viewports");
15
6
  var getUsingViewports = function (breakpoints) {
16
- var usingViewports = __spreadArray([], Object.keys(breakpoints), true);
7
+ var usingViewports = Object.keys(breakpoints);
17
8
  return usingViewports.sort(function (a, b) {
18
9
  return viewports_1.viewports.indexOf(a) > viewports_1.viewports.indexOf(b) ? 1 : -1;
19
10
  });
@@ -16,7 +16,14 @@ function extractGeneralTokens(themeDescription) {
16
16
  var token = tokens_1[_i];
17
17
  var tokenValue = themeDescription[token];
18
18
  if (typeof tokenValue === 'function') {
19
- copyDescription[token] = tokenValue(themeDescription);
19
+ copyDescription[token] = tokenValue;
20
+ }
21
+ }
22
+ for (var _a = 0, tokens_2 = tokens; _a < tokens_2.length; _a++) {
23
+ var token = tokens_2[_a];
24
+ var tokenValue = copyDescription[token];
25
+ if (typeof tokenValue === 'function') {
26
+ copyDescription[token] = tokenValue(copyDescription);
20
27
  }
21
28
  }
22
29
  delete copyDescription.colors;
@@ -56,6 +56,11 @@ export interface ColorsDescriptionStruct {
56
56
  * @tags color, background
57
57
  */
58
58
  colorBackgroundContent: ColorDescription;
59
+ /**
60
+ * @desc Цвет фона, противоположный фону контента.
61
+ * @tags color, background
62
+ */
63
+ colorBackgroundContentInverse: ColorDescription;
59
64
  /**
60
65
  * @desc Второстепенный цвет фона
61
66
  * @tags color, background
@@ -1,4 +1,4 @@
1
- export type GradientPoints = string;
1
+ export type GradientPoints = string | unknown;
2
2
  export interface Gradients {
3
3
  /**
4
4
  * @desc Параметры градиента черного цвета
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/vkui-tokens",
3
- "version": "4.54.1-dev-3ef202.0",
3
+ "version": "4.55.0",
4
4
  "description": "Репозиторий, который содержит в себе дизайн-токены и другие инструменты объединенной дизайн-системы VKUI и Paradigm",
5
5
  "license": "MIT",
6
6
  "homepage": "https://vkcom.github.io/vkui-tokens",
@@ -24,8 +24,8 @@
24
24
  "clear:dist": "find dist -regex '.*[^d]\\.ts' -delete",
25
25
  "open:coverage": "open .coverage/index.html",
26
26
  "styleguide": "sh ./tasks/styleguide.sh",
27
- "docs:dev": "cd docs/webpack && webpack-dev-server --config webpack.client.js --mode development",
28
- "docs:build": "cd docs/webpack && webpack --config webpack.client.js --mode production",
27
+ "docs:dev": "cd docs/webpack && webpack-dev-server --config webpack.client.mjs --mode development",
28
+ "docs:build": "cd docs/webpack && webpack --config webpack.client.mjs --mode production",
29
29
  "docs:prepare-data": "ts-node tasks/docs/prepareTokensData.ts",
30
30
  "pre-commit": "lint-staged"
31
31
  },
@@ -50,7 +50,7 @@
50
50
  "@types/fs-extra": "11.0.4",
51
51
  "@types/lodash": "4.17.7",
52
52
  "@types/node": "18.11.10",
53
- "@types/react": "18.3.5",
53
+ "@types/react": "18.3.3",
54
54
  "@types/react-dom": "18.3.0",
55
55
  "@vkontakte/appearance": "https://github.com/VKCOM/Appearance#v10.2.0",
56
56
  "@vkontakte/icons": "2.124.0",
@@ -80,19 +80,26 @@
80
80
  "eslint-plugin-sonarjs": "0.24.0",
81
81
  "eslint-plugin-unicorn": "51.0.1",
82
82
  "fs-extra": "11.2.0",
83
+ "highlight.js": "11.10.0",
84
+ "html-loader": "5.1.0",
83
85
  "html-webpack-plugin": "5.6.0",
84
86
  "husky": "9.1.4",
85
87
  "jest": "29.7.0",
86
88
  "jest-junit": "16.0.0",
87
- "lint-staged": "15.2.9",
89
+ "lint-staged": "15.2.10",
88
90
  "lodash": "4.17.21",
89
91
  "prettier": "3.3.2",
90
92
  "react": "18.3.1",
91
93
  "react-dom": "18.3.1",
94
+ "react-router-dom": "6.26.2",
95
+ "remark": "15.0.1",
96
+ "remark-html": "16.0.1",
97
+ "remark-loader": "6.0.0",
92
98
  "rimraf": "5.0.7",
93
99
  "style-loader": "4.0.0",
94
100
  "terser-webpack-plugin": "5.3.10",
95
- "ts-jest": "29.2.4",
101
+ "tree-sitter": "0.21.1",
102
+ "ts-jest": "29.2.5",
96
103
  "ts-loader": "9.5.1",
97
104
  "ts-morph": "20.0.0",
98
105
  "ts-node": "10.9.2",
@@ -100,15 +107,19 @@
100
107
  "tscpaths": "0.0.9",
101
108
  "type-fest": "4.26.1",
102
109
  "typescript": "5.2.2",
103
- "typescript-eslint": "7.0.1",
110
+ "typescript-eslint": "7.7.1",
104
111
  "webpack": "5.94.0",
105
112
  "webpack-cli": "5.1.4",
106
- "webpack-dev-server": "5.0.4",
113
+ "webpack-dev-server": "5.1.0",
107
114
  "webpack-notifier": "1.15.0"
108
115
  },
109
116
  "engines": {
110
117
  "npm": ">=9.3.1",
111
118
  "yarn": ">=1.21.1 <2"
112
119
  },
113
- "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
120
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
121
+ "resolutions": {
122
+ "@types/node": "18.11.10",
123
+ "@types/react": "18.3.3"
124
+ }
114
125
  }
@@ -37,6 +37,7 @@ exports.lightColors = {
37
37
  colorBackgroundAccentThemedAlpha: 'rgba(0, 119, 255, 0.2)',
38
38
  colorBackgroundAccentAlternative: '#FF9E00',
39
39
  colorBackgroundContent: '#FFFFFF',
40
+ colorBackgroundContentInverse: colorBackgroundContentDark,
40
41
  colorBackgroundSecondary: '#F0F1F3',
41
42
  colorBackgroundSecondaryAlpha: {
42
43
  normal: 'rgba(0, 16, 61, 0.06)',
@@ -170,6 +171,7 @@ exports.darkColors = {
170
171
  colorBackgroundAccentThemedAlpha: 'rgba(255, 255, 255, 0.2)',
171
172
  colorBackgroundAccentAlternative: '#FF9E00',
172
173
  colorBackgroundContent: colorBackgroundContentDark,
174
+ colorBackgroundContentInverse: '#FFFFFF',
173
175
  colorBackgroundSecondary: '#2A2A2B',
174
176
  colorBackgroundSecondaryAlpha: {
175
177
  normal: 'rgba(255, 255, 255, 0.12)',
@@ -45,6 +45,10 @@ var colorFromFigma = function (colorsScheme) {
45
45
  }[colorsScheme],
46
46
  colorBackground: background.background,
47
47
  colorBackgroundContent: background.background_content,
48
+ colorBackgroundContentInverse: {
49
+ light: '#19191A',
50
+ dark: '#FFFFFF',
51
+ }[colorsScheme],
48
52
  colorBackgroundSecondary: background.background_secondary,
49
53
  colorBackgroundSecondaryAlpha: {
50
54
  light: {
@@ -226,9 +230,10 @@ var colorFromFigma = function (colorsScheme) {
226
230
  // Other
227
231
  colorOverlayPrimary: other.overlay_primary,
228
232
  colorOverlaySecondary: {
229
- light: 'rgba(44, 45, 46, 0.5)',
230
- dark: 'rgba(55, 56, 57, 0.5)',
231
- }[colorsScheme],
233
+ normal: 'rgba(0, 0, 0, 0.27)',
234
+ hover: 'rgba(0, 0, 0, 0.31)',
235
+ active: 'rgba(0, 0, 0, 0.35)',
236
+ },
232
237
  colorAvatarOverlay: other.avatar_overlay_alpha,
233
238
  colorAvatarOverlayInverseAlpha: other.avatar_overlay_inverse_alpha,
234
239
  colorActionSheetText: other.action_sheet_text,
@@ -430,6 +430,9 @@
430
430
  --vkui--color_background_content: #FFFFFF;
431
431
  --vkui--color_background_content--hover: #F5F5F7;
432
432
  --vkui--color_background_content--active: #EBECEF;
433
+ --vkui--color_background_content_inverse: #232324;
434
+ --vkui--color_background_content_inverse--hover: #222225;
435
+ --vkui--color_background_content_inverse--active: #202126;
433
436
  --vkui--color_background_secondary: #EBECEF;
434
437
  --vkui--color_background_secondary--hover: #E2E3E8;
435
438
  --vkui--color_background_secondary--active: #D8DAE1;
@@ -57,6 +57,9 @@
57
57
  --vkui--color_background_content: #FFFFFF;
58
58
  --vkui--color_background_content--hover: #F5F5F7;
59
59
  --vkui--color_background_content--active: #EBECEF;
60
+ --vkui--color_background_content_inverse: #232324;
61
+ --vkui--color_background_content_inverse--hover: #222225;
62
+ --vkui--color_background_content_inverse--active: #202126;
60
63
  --vkui--color_background_secondary: #EBECEF;
61
64
  --vkui--color_background_secondary--hover: #E2E3E8;
62
65
  --vkui--color_background_secondary--active: #D8DAE1;
@@ -14,6 +14,9 @@
14
14
  --vkui--color_background_content: #FFFFFF;
15
15
  --vkui--color_background_content--hover: #F5F5F7;
16
16
  --vkui--color_background_content--active: #EBECEF;
17
+ --vkui--color_background_content_inverse: #232324;
18
+ --vkui--color_background_content_inverse--hover: #222225;
19
+ --vkui--color_background_content_inverse--active: #202126;
17
20
  --vkui--color_background_secondary: #EBECEF;
18
21
  --vkui--color_background_secondary--hover: #E2E3E8;
19
22
  --vkui--color_background_secondary--active: #D8DAE1;