@veracity/vui 0.3.1 → 0.4.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 (438) hide show
  1. package/avatar/avatar.d.ts +2 -2
  2. package/avatar/avatar.js +9 -29
  3. package/avatar/avatar.types.d.ts +9 -2
  4. package/avatar/helpers.d.ts +2 -0
  5. package/avatar/helpers.js +26 -0
  6. package/avatar/index.d.ts +1 -1
  7. package/avatar/index.js +1 -1
  8. package/avatar/theme.d.ts +1 -0
  9. package/avatar/theme.js +7 -0
  10. package/box/box.d.ts +2 -2
  11. package/box/box.js +9 -8
  12. package/box/box.types.d.ts +13 -2
  13. package/box/index.d.ts +1 -1
  14. package/box/index.js +1 -1
  15. package/box/theme.d.ts +1 -0
  16. package/box/theme.js +2 -0
  17. package/button/button.d.ts +7 -3
  18. package/button/button.js +24 -14
  19. package/button/button.types.d.ts +16 -34
  20. package/button/buttonIcon.d.ts +1 -0
  21. package/button/buttonIcon.js +3 -5
  22. package/button/buttonText.d.ts +1 -0
  23. package/button/buttonText.js +3 -5
  24. package/button/buttons.js +1 -1
  25. package/button/consts.js +2 -2
  26. package/button/index.d.ts +2 -2
  27. package/button/index.js +3 -3
  28. package/button/theme.d.ts +1 -0
  29. package/button/theme.js +5 -3
  30. package/buttonGroup/buttonGroup.d.ts +5 -2
  31. package/buttonGroup/buttonGroup.js +12 -8
  32. package/buttonGroup/buttonGroup.types.d.ts +4 -2
  33. package/buttonGroup/helpers.d.ts +1 -1
  34. package/buttonGroup/helpers.js +1 -1
  35. package/buttonGroup/index.d.ts +1 -1
  36. package/buttonGroup/index.js +2 -2
  37. package/card/card.d.ts +4 -0
  38. package/card/card.js +8 -0
  39. package/card/card.types.d.ts +3 -2
  40. package/card/index.d.ts +1 -1
  41. package/card/index.js +1 -1
  42. package/card/theme.d.ts +1 -0
  43. package/card/theme.js +2 -0
  44. package/checkbox/checkbox.d.ts +5 -4
  45. package/checkbox/checkbox.js +20 -10
  46. package/checkbox/checkbox.types.d.ts +21 -4
  47. package/checkbox/checkboxGroup.d.ts +5 -2
  48. package/checkbox/checkboxGroup.js +11 -7
  49. package/checkbox/checkboxGroup.types.d.ts +9 -2
  50. package/checkbox/index.d.ts +1 -1
  51. package/checkbox/index.js +2 -2
  52. package/checkbox/theme.d.ts +1 -0
  53. package/checkbox/theme.js +2 -0
  54. package/core/index.d.ts +4 -5
  55. package/core/index.js +4 -12
  56. package/core/media.d.ts +38 -0
  57. package/core/media.js +79 -0
  58. package/core/styled.d.ts +3 -0
  59. package/core/styled.js +21 -3
  60. package/core/theme.d.ts +41 -0
  61. package/core/theme.js +94 -0
  62. package/core/vui.d.ts +31 -0
  63. package/core/vui.js +20 -0
  64. package/core/vuiProvider/fontFaces.js +4 -0
  65. package/core/{globalStyle.d.ts → vuiProvider/globalStyle.d.ts} +7 -0
  66. package/core/{globalStyle.js → vuiProvider/globalStyle.js} +17 -9
  67. package/core/vuiProvider/index.d.ts +5 -0
  68. package/core/vuiProvider/index.js +26 -0
  69. package/core/{resetCSS.d.ts → vuiProvider/resetCSS.d.ts} +1 -0
  70. package/core/{resetCSS.js → vuiProvider/resetCSS.js} +2 -1
  71. package/core/vuiProvider/vuiProvider.d.ts +13 -0
  72. package/core/{vuiProvider.js → vuiProvider/vuiProvider.js} +3 -2
  73. package/divider/divider.d.ts +2 -2
  74. package/divider/divider.js +5 -4
  75. package/divider/divider.types.d.ts +5 -2
  76. package/divider/index.d.ts +1 -1
  77. package/divider/index.js +1 -1
  78. package/divider/theme.d.ts +1 -0
  79. package/divider/theme.js +2 -0
  80. package/footer/consts.d.ts +108 -8
  81. package/footer/consts.js +21 -9
  82. package/footer/footer.d.ts +3 -1
  83. package/footer/footer.js +21 -10
  84. package/footer/footer.types.d.ts +5 -0
  85. package/footer/footerColumn.d.ts +122 -121
  86. package/footer/footerColumn.js +1 -0
  87. package/footer/footerHeading.d.ts +1 -0
  88. package/footer/footerHeading.js +1 -0
  89. package/footer/footerLink.d.ts +1 -0
  90. package/footer/footerLink.js +1 -0
  91. package/footer/footerRow.d.ts +1 -0
  92. package/footer/footerRow.js +1 -0
  93. package/footer/footerSection.d.ts +1 -0
  94. package/footer/footerSection.js +2 -1
  95. package/footer/footerTrademark.d.ts +1 -0
  96. package/footer/footerTrademark.js +1 -0
  97. package/footer/helpers.d.ts +2 -3
  98. package/footer/helpers.js +16 -16
  99. package/footer/index.d.ts +2 -1
  100. package/footer/index.js +2 -2
  101. package/footer/theme.d.ts +1 -0
  102. package/footer/theme.js +2 -0
  103. package/header/consts.d.ts +58 -0
  104. package/header/consts.js +76 -0
  105. package/header/context.d.ts +4 -0
  106. package/header/context.js +23 -0
  107. package/header/header.d.ts +34 -0
  108. package/header/header.js +133 -0
  109. package/header/header.types.d.ts +103 -0
  110. package/header/headerAccount.d.ts +4 -0
  111. package/header/headerAccount.js +109 -0
  112. package/header/headerAccount.types.d.ts +35 -0
  113. package/header/headerContent.d.ts +4 -0
  114. package/header/headerContent.js +28 -0
  115. package/header/headerCreateAccount.d.ts +4 -0
  116. package/header/headerCreateAccount.js +47 -0
  117. package/header/headerDivider.d.ts +4 -0
  118. package/header/headerDivider.js +28 -0
  119. package/header/headerLinkItem.d.ts +4 -0
  120. package/header/headerLinkItem.js +53 -0
  121. package/header/headerLinksList.d.ts +4 -0
  122. package/header/headerLinksList.js +44 -0
  123. package/header/headerLogo.d.ts +4 -0
  124. package/header/headerLogo.js +44 -0
  125. package/header/headerMobileContent.d.ts +4 -0
  126. package/header/headerMobileContent.js +31 -0
  127. package/header/headerMobileToggle.d.ts +4 -0
  128. package/header/headerMobileToggle.js +33 -0
  129. package/header/headerNotifications.d.ts +4 -0
  130. package/header/headerNotifications.js +51 -0
  131. package/header/headerServices.d.ts +4 -0
  132. package/header/headerServices.js +55 -0
  133. package/header/headerSignIn.d.ts +4 -0
  134. package/header/headerSignIn.js +40 -0
  135. package/header/helpers.d.ts +17 -0
  136. package/header/helpers.js +66 -0
  137. package/header/index.d.ts +21 -0
  138. package/header/index.js +38 -0
  139. package/header/loggedInHeader.d.ts +4 -0
  140. package/header/loggedInHeader.js +57 -0
  141. package/header/loggedOutHeader.d.ts +4 -0
  142. package/header/loggedOutHeader.js +57 -0
  143. package/header/theme.d.ts +85 -0
  144. package/header/theme.js +89 -0
  145. package/heading/heading.d.ts +2 -2
  146. package/heading/heading.js +5 -4
  147. package/heading/heading.types.d.ts +7 -2
  148. package/heading/headings.js +1 -1
  149. package/heading/index.d.ts +1 -1
  150. package/heading/index.js +2 -2
  151. package/heading/theme.d.ts +1 -0
  152. package/heading/theme.js +2 -0
  153. package/icon/helpers.js +2 -2
  154. package/icon/icon.d.ts +1 -0
  155. package/icon/icon.js +2 -2
  156. package/icon/icon.types.d.ts +7 -4
  157. package/icon/index.d.ts +1 -1
  158. package/icon/index.js +1 -1
  159. package/icon/theme.d.ts +1 -0
  160. package/icon/theme.js +2 -0
  161. package/icons/baseIcons/fal/falFileInvoiceDollar.d.ts +3 -0
  162. package/icons/baseIcons/fal/falFileInvoiceDollar.js +7 -0
  163. package/icons/baseIcons/fas/fasCalendarAlt.js +1 -1
  164. package/icons/baseIcons/icons.d.ts +1 -0
  165. package/icons/baseIcons/icons.js +5 -3
  166. package/icons/baseIcons/types.d.ts +1 -1
  167. package/icons/cache.d.ts +15 -0
  168. package/icons/{library.js → cache.js} +10 -6
  169. package/icons/index.d.ts +1 -1
  170. package/icons/index.js +3 -3
  171. package/icons/types.d.ts +10 -3
  172. package/image/image.d.ts +2 -0
  173. package/image/image.js +11 -2
  174. package/image/image.types.d.ts +3 -2
  175. package/image/index.d.ts +1 -1
  176. package/image/index.js +1 -1
  177. package/image/theme.d.ts +1 -0
  178. package/image/theme.js +2 -0
  179. package/index.d.ts +3 -1
  180. package/index.js +3 -1
  181. package/input/consts.js +2 -2
  182. package/input/helpers.d.ts +1 -0
  183. package/input/helpers.js +1 -0
  184. package/input/index.d.ts +1 -1
  185. package/input/index.js +2 -2
  186. package/input/input.d.ts +7 -3
  187. package/input/input.js +17 -7
  188. package/input/input.types.d.ts +36 -7
  189. package/input/inputIcon.d.ts +1 -0
  190. package/input/inputIcon.js +2 -1
  191. package/input/inputInput.d.ts +2 -2
  192. package/input/inputInput.js +10 -5
  193. package/input/theme.d.ts +1 -0
  194. package/input/theme.js +2 -0
  195. package/link/index.d.ts +1 -1
  196. package/link/index.js +2 -2
  197. package/link/link.d.ts +6 -3
  198. package/link/link.js +15 -9
  199. package/link/link.types.d.ts +15 -7
  200. package/link/linkIcon.d.ts +1 -0
  201. package/link/linkIcon.js +3 -5
  202. package/link/linkText.d.ts +1 -0
  203. package/link/linkText.js +3 -5
  204. package/link/theme.d.ts +6 -0
  205. package/link/theme.js +9 -1
  206. package/list/index.d.ts +1 -1
  207. package/list/index.js +2 -2
  208. package/list/list.d.ts +3 -3
  209. package/list/list.js +13 -8
  210. package/list/list.types.d.ts +29 -8
  211. package/list/listDivider.d.ts +1 -0
  212. package/list/listDivider.js +3 -5
  213. package/list/listHeading.d.ts +1 -0
  214. package/list/listHeading.js +4 -6
  215. package/list/listIcon.d.ts +1 -0
  216. package/list/listIcon.js +3 -5
  217. package/list/listItem.d.ts +5 -2
  218. package/list/listItem.js +52 -19
  219. package/list/listText.d.ts +1 -0
  220. package/list/listText.js +3 -5
  221. package/list/theme.d.ts +1 -0
  222. package/list/theme.js +5 -2
  223. package/menu/menu.d.ts +1 -0
  224. package/menu/menu.js +1 -0
  225. package/menu/menu.types.d.ts +3 -0
  226. package/menu/menuButton.d.ts +1 -0
  227. package/menu/menuButton.js +3 -4
  228. package/menu/menuItem.d.ts +1 -0
  229. package/menu/menuItem.js +9 -23
  230. package/menu/menuList.d.ts +1 -0
  231. package/menu/menuList.js +3 -4
  232. package/menu/theme.d.ts +16 -2
  233. package/menu/theme.js +18 -3
  234. package/modal/context.d.ts +4 -0
  235. package/modal/context.js +23 -0
  236. package/modal/focusLock.d.ts +9 -0
  237. package/modal/focusLock.js +47 -0
  238. package/modal/focusLock.types.d.ts +28 -0
  239. package/modal/focusLock.types.js +2 -0
  240. package/modal/index.d.ts +7 -0
  241. package/modal/index.js +24 -0
  242. package/modal/modal.d.ts +10 -0
  243. package/modal/modal.js +109 -0
  244. package/modal/modal.types.d.ts +40 -0
  245. package/modal/modal.types.js +2 -0
  246. package/modal/modalBackdrop.d.ts +4 -0
  247. package/modal/modalBackdrop.js +38 -0
  248. package/modal/modalManager.d.ts +12 -0
  249. package/modal/modalManager.js +33 -0
  250. package/modal/theme.d.ts +7 -0
  251. package/modal/theme.js +12 -0
  252. package/notification/consts.js +2 -2
  253. package/notification/index.d.ts +2 -2
  254. package/notification/index.js +3 -3
  255. package/notification/notification.d.ts +5 -1
  256. package/notification/notification.js +12 -27
  257. package/notification/notification.types.d.ts +11 -4
  258. package/notification/notificationButton.d.ts +1 -0
  259. package/notification/notificationButton.js +4 -5
  260. package/notification/notificationIcon.d.ts +1 -0
  261. package/notification/notificationIcon.js +7 -7
  262. package/notification/notificationText.d.ts +1 -0
  263. package/notification/notificationText.js +3 -5
  264. package/notification/notificationTitle.d.ts +1 -0
  265. package/notification/notificationTitle.js +3 -5
  266. package/notification/theme.d.ts +1 -0
  267. package/notification/theme.js +2 -0
  268. package/p/index.d.ts +1 -1
  269. package/p/index.js +1 -1
  270. package/p/p.d.ts +2 -2
  271. package/p/p.js +5 -4
  272. package/p/p.types.d.ts +7 -2
  273. package/p/theme.d.ts +1 -0
  274. package/p/theme.js +2 -0
  275. package/package.json +3 -1
  276. package/panel/index.d.ts +1 -1
  277. package/panel/index.js +1 -1
  278. package/panel/panel.d.ts +4 -0
  279. package/panel/panel.js +4 -0
  280. package/panel/panel.types.d.ts +1 -2
  281. package/panel/theme.d.ts +1 -0
  282. package/panel/theme.js +2 -0
  283. package/popover/consts.d.ts +6 -0
  284. package/popover/consts.js +42 -0
  285. package/popover/index.d.ts +1 -1
  286. package/popover/index.js +1 -1
  287. package/popover/popover.d.ts +6 -2
  288. package/popover/popover.js +20 -4
  289. package/popover/popover.types.d.ts +4 -1
  290. package/popover/popoverContent.d.ts +2 -1
  291. package/popover/popoverContent.js +6 -1
  292. package/popover/popoverTrigger.d.ts +4 -0
  293. package/popover/popoverTrigger.js +4 -0
  294. package/popover/theme.d.ts +1 -0
  295. package/popover/theme.js +2 -0
  296. package/popover/usePopover.d.ts +5 -0
  297. package/popover/usePopover.js +26 -18
  298. package/popover/usePopover.types.d.ts +17 -6
  299. package/portal/index.d.ts +3 -0
  300. package/{styles → portal}/index.js +5 -5
  301. package/portal/portal.d.ts +5 -0
  302. package/portal/portal.js +56 -0
  303. package/portal/portal.types.d.ts +7 -0
  304. package/portal/portal.types.js +2 -0
  305. package/radio/index.d.ts +1 -1
  306. package/radio/index.js +2 -2
  307. package/radio/radio.d.ts +5 -4
  308. package/radio/radio.js +20 -10
  309. package/radio/radio.types.d.ts +19 -4
  310. package/radio/radioGroup.d.ts +5 -2
  311. package/radio/radioGroup.js +11 -7
  312. package/radio/radioGroup.types.d.ts +10 -2
  313. package/radio/theme.d.ts +1 -0
  314. package/radio/theme.js +2 -0
  315. package/skeleton/index.d.ts +1 -1
  316. package/skeleton/index.js +1 -1
  317. package/skeleton/skeleton.d.ts +2 -2
  318. package/skeleton/skeleton.js +4 -3
  319. package/skeleton/skeleton.types.d.ts +5 -2
  320. package/skeleton/theme.d.ts +1 -0
  321. package/skeleton/theme.js +2 -0
  322. package/spinner/index.d.ts +1 -1
  323. package/spinner/index.js +1 -1
  324. package/spinner/spinner.d.ts +6 -2
  325. package/spinner/spinner.js +12 -5
  326. package/spinner/spinner.types.d.ts +10 -6
  327. package/spinner/theme.d.ts +1 -0
  328. package/spinner/theme.js +2 -0
  329. package/svg/helpers.d.ts +1 -1
  330. package/svg/index.d.ts +1 -1
  331. package/svg/index.js +1 -1
  332. package/svg/svg.d.ts +6 -1
  333. package/svg/svg.js +16 -5
  334. package/svg/svg.types.d.ts +7 -5
  335. package/switch/context.d.ts +2 -2
  336. package/switch/index.d.ts +1 -1
  337. package/switch/index.js +2 -2
  338. package/switch/switch.d.ts +6 -3
  339. package/switch/switch.js +15 -12
  340. package/switch/switch.types.d.ts +37 -4
  341. package/switch/switchButton.d.ts +5 -5
  342. package/switch/switchButton.js +34 -26
  343. package/switch/switchLabel.d.ts +1 -0
  344. package/switch/switchLabel.js +3 -5
  345. package/switch/theme.d.ts +1 -0
  346. package/switch/theme.js +2 -0
  347. package/system/animations.d.ts +3 -4
  348. package/system/backgrounds.d.ts +4 -5
  349. package/system/borders.d.ts +60 -61
  350. package/system/custom.d.ts +4 -4
  351. package/system/effects.d.ts +7 -8
  352. package/system/flexboxGrids.d.ts +5 -6
  353. package/system/flexboxes.d.ts +28 -29
  354. package/system/grids.d.ts +25 -26
  355. package/system/index.d.ts +0 -1
  356. package/system/index.js +0 -6
  357. package/system/interactivity.d.ts +11 -12
  358. package/system/layout.d.ts +31 -32
  359. package/system/sizing.d.ts +13 -14
  360. package/system/space.d.ts +37 -38
  361. package/system/system.d.ts +4 -5
  362. package/system/system.js +3 -1
  363. package/system/tables.d.ts +5 -6
  364. package/system/transforms.d.ts +22 -23
  365. package/system/transitions.d.ts +11 -12
  366. package/system/typography.d.ts +33 -34
  367. package/t/index.d.ts +1 -1
  368. package/t/index.js +1 -1
  369. package/t/t.d.ts +2 -2
  370. package/t/t.js +5 -4
  371. package/t/t.types.d.ts +8 -2
  372. package/t/theme.d.ts +1 -0
  373. package/t/theme.js +2 -0
  374. package/tag/index.d.ts +1 -1
  375. package/tag/index.js +2 -2
  376. package/tag/tag.d.ts +6 -3
  377. package/tag/tag.js +14 -7
  378. package/tag/tag.types.d.ts +19 -6
  379. package/tag/tagButton.d.ts +1 -0
  380. package/tag/tagButton.js +4 -16
  381. package/tag/tagIcon.d.ts +1 -0
  382. package/tag/tagIcon.js +3 -5
  383. package/tag/tagText.d.ts +1 -0
  384. package/tag/tagText.js +3 -5
  385. package/tag/theme.d.ts +1 -0
  386. package/tag/theme.js +8 -0
  387. package/textarea/helpers.d.ts +1 -0
  388. package/textarea/helpers.js +1 -0
  389. package/textarea/index.d.ts +1 -1
  390. package/textarea/index.js +1 -1
  391. package/textarea/textarea.d.ts +5 -3
  392. package/textarea/textarea.js +23 -10
  393. package/textarea/textarea.types.d.ts +22 -2
  394. package/textarea/theme.d.ts +1 -0
  395. package/textarea/theme.js +2 -0
  396. package/theme/components.d.ts +129 -2
  397. package/theme/components.js +38 -36
  398. package/theme/defaultTheme.d.ts +134 -2
  399. package/theme/foundations/colors.d.ts +10 -0
  400. package/theme/foundations/colors.js +8 -2
  401. package/theme/foundations/index.d.ts +5 -0
  402. package/theme/foundations/shadows.js +3 -3
  403. package/theme/foundations/transformers.js +3 -2
  404. package/theme/index.d.ts +1 -3
  405. package/theme/index.js +4 -5
  406. package/theme/types.d.ts +3 -2
  407. package/utils/assertion.d.ts +5 -5
  408. package/utils/assertion.js +8 -4
  409. package/utils/index.d.ts +1 -0
  410. package/utils/index.js +1 -0
  411. package/utils/object.d.ts +2 -2
  412. package/utils/object.js +3 -1
  413. package/utils/react.d.ts +10 -5
  414. package/utils/react.js +64 -9
  415. package/utils/string.d.ts +5 -0
  416. package/utils/string.js +19 -0
  417. package/utils/styles.d.ts +2 -2
  418. package/utils/styles.js +4 -4
  419. package/utils/types.d.ts +11 -4
  420. package/core/types/component.d.ts +0 -25
  421. package/core/types/index.d.ts +0 -2
  422. package/core/types/index.js +0 -14
  423. package/core/types/themeGet.d.ts +0 -24
  424. package/core/utils.d.ts +0 -56
  425. package/core/utils.js +0 -194
  426. package/core/vuiProvider.d.ts +0 -20
  427. package/icons/library.d.ts +0 -11
  428. package/popover/plugins.d.ts +0 -3
  429. package/popover/plugins.js +0 -24
  430. package/styles/fontFaces.js +0 -4
  431. package/styles/helpers.d.ts +0 -4
  432. package/styles/helpers.js +0 -8
  433. package/styles/index.d.ts +0 -3
  434. /package/{styles → core/vuiProvider}/animations.d.ts +0 -0
  435. /package/{styles → core/vuiProvider}/animations.js +0 -0
  436. /package/{styles → core/vuiProvider}/fontFaces.d.ts +0 -0
  437. /package/{core/types/component.js → header/header.types.js} +0 -0
  438. /package/{core/types/themeGet.js → header/headerAccount.types.js} +0 -0
@@ -1,5 +1,6 @@
1
1
  declare const _default: {
2
2
  Avatar: {
3
+ baseStyle: {};
3
4
  defaultProps: {
4
5
  colorScheme: string;
5
6
  size: string;
@@ -48,11 +49,13 @@ declare const _default: {
48
49
  };
49
50
  };
50
51
  Box: {
52
+ baseStyle: {};
51
53
  defaultProps: {};
52
54
  sizes: {};
53
55
  variants: {};
54
56
  };
55
57
  Button: {
58
+ baseStyle: {};
56
59
  defaultProps: {
57
60
  colorScheme: string;
58
61
  size: string;
@@ -157,11 +160,13 @@ declare const _default: {
157
160
  };
158
161
  };
159
162
  Card: {
163
+ baseStyle: {};
160
164
  defaultProps: {};
161
165
  sizes: {};
162
166
  variants: {};
163
167
  };
164
168
  Checkbox: {
169
+ baseStyle: {};
165
170
  defaultProps: {
166
171
  colorScheme: string;
167
172
  size: string;
@@ -207,17 +212,104 @@ declare const _default: {
207
212
  };
208
213
  };
209
214
  Divider: {
215
+ baseStyle: {};
210
216
  defaultProps: {};
211
217
  sizes: {};
212
218
  variants: {};
213
219
  };
214
220
  Footer: {
221
+ baseStyle: {};
215
222
  defaultProps: {};
216
223
  parts: string[];
217
224
  sizes: {};
218
225
  variants: {};
219
226
  };
227
+ Header: {
228
+ baseStyle: {};
229
+ defaultProps: {};
230
+ parts: string[];
231
+ sizes: {};
232
+ variants: {
233
+ dark: {
234
+ container: {
235
+ bg: string;
236
+ borderBottom: number;
237
+ };
238
+ account: {
239
+ trigger: {
240
+ bg: string;
241
+ color: string;
242
+ hoverBg: string;
243
+ activeBg: string;
244
+ };
245
+ };
246
+ createAccount: {
247
+ link: {
248
+ color: {
249
+ xs: string;
250
+ md: string;
251
+ };
252
+ hoverColor: {
253
+ xs: string;
254
+ md: string;
255
+ };
256
+ };
257
+ text: {
258
+ color: {
259
+ md: string;
260
+ };
261
+ };
262
+ };
263
+ divider: {
264
+ borderColor: string;
265
+ };
266
+ linkItem: {
267
+ container: {
268
+ hoverBg: {
269
+ xs: string;
270
+ md: string;
271
+ };
272
+ activeBg: {
273
+ xs: string;
274
+ md: string;
275
+ };
276
+ };
277
+ link: {
278
+ borderColor: string;
279
+ };
280
+ };
281
+ linksList: {
282
+ color: {
283
+ md: string;
284
+ };
285
+ };
286
+ logo: {
287
+ svg: {
288
+ pathFill: string;
289
+ };
290
+ };
291
+ mobileContent: {
292
+ top: string;
293
+ };
294
+ mobileToggle: {
295
+ variant: string;
296
+ };
297
+ notifications: {
298
+ variant: string;
299
+ };
300
+ services: {
301
+ button: {
302
+ variant: string;
303
+ };
304
+ };
305
+ signIn: {
306
+ colorScheme: string;
307
+ };
308
+ };
309
+ };
310
+ };
220
311
  Heading: {
312
+ baseStyle: {};
221
313
  defaultProps: {
222
314
  size: string;
223
315
  };
@@ -256,6 +348,7 @@ declare const _default: {
256
348
  variants: {};
257
349
  };
258
350
  Icon: {
351
+ baseStyle: {};
259
352
  defaultProps: {
260
353
  size: string;
261
354
  };
@@ -280,11 +373,13 @@ declare const _default: {
280
373
  variants: {};
281
374
  };
282
375
  Image: {
376
+ baseStyle: {};
283
377
  defaultProps: {};
284
378
  sizes: {};
285
379
  variants: {};
286
380
  };
287
381
  Input: {
382
+ baseStyle: {};
288
383
  defaultProps: {
289
384
  colorScheme: string;
290
385
  size: string;
@@ -346,6 +441,7 @@ declare const _default: {
346
441
  };
347
442
  };
348
443
  Link: {
444
+ baseStyle: {};
349
445
  defaultProps: {
350
446
  colorScheme: string;
351
447
  size: string;
@@ -391,9 +487,15 @@ declare const _default: {
391
487
  hoverColor: string;
392
488
  };
393
489
  };
490
+ plain: {
491
+ container: {
492
+ hoverTextDecoration: string;
493
+ };
494
+ };
394
495
  };
395
496
  };
396
497
  List: {
498
+ baseStyle: {};
397
499
  defaultProps: {
398
500
  colorScheme: string;
399
501
  size: string;
@@ -469,12 +571,27 @@ declare const _default: {
469
571
  };
470
572
  };
471
573
  Menu: {
472
- defaultProps: {};
574
+ baseStyle: {};
575
+ defaultProps: {
576
+ size: string;
577
+ };
473
578
  parts: string[];
474
- sizes: {};
579
+ sizes: {
580
+ md: {
581
+ list: {
582
+ size: string;
583
+ };
584
+ };
585
+ lg: {
586
+ list: {
587
+ size: string;
588
+ };
589
+ };
590
+ };
475
591
  variants: {};
476
592
  };
477
593
  Notification: {
594
+ baseStyle: {};
478
595
  defaultProps: {
479
596
  colorScheme: string;
480
597
  variant: string;
@@ -498,6 +615,7 @@ declare const _default: {
498
615
  };
499
616
  };
500
617
  P: {
618
+ baseStyle: {};
501
619
  defaultProps: {
502
620
  size: string;
503
621
  };
@@ -526,6 +644,7 @@ declare const _default: {
526
644
  variants: {};
527
645
  };
528
646
  Panel: {
647
+ baseStyle: {};
529
648
  defaultProps: {
530
649
  variant: string;
531
650
  };
@@ -541,12 +660,14 @@ declare const _default: {
541
660
  };
542
661
  };
543
662
  Popover: {
663
+ baseStyle: {};
544
664
  defaultProps: {};
545
665
  parts: string[];
546
666
  sizes: {};
547
667
  variants: {};
548
668
  };
549
669
  Radio: {
670
+ baseStyle: {};
550
671
  defaultProps: {
551
672
  colorScheme: string;
552
673
  size: string;
@@ -592,6 +713,7 @@ declare const _default: {
592
713
  };
593
714
  };
594
715
  Skeleton: {
716
+ baseStyle: {};
595
717
  defaultProps: {
596
718
  colorScheme: string;
597
719
  size: string;
@@ -624,6 +746,7 @@ declare const _default: {
624
746
  };
625
747
  };
626
748
  Spinner: {
749
+ baseStyle: {};
627
750
  defaultProps: {
628
751
  colorScheme: string;
629
752
  size: string;
@@ -688,6 +811,7 @@ declare const _default: {
688
811
  };
689
812
  };
690
813
  Switch: {
814
+ baseStyle: {};
691
815
  defaultProps: {
692
816
  colorScheme: string;
693
817
  size: string;
@@ -759,6 +883,7 @@ declare const _default: {
759
883
  };
760
884
  };
761
885
  T: {
886
+ baseStyle: {};
762
887
  defaultProps: {
763
888
  size: string;
764
889
  };
@@ -779,6 +904,7 @@ declare const _default: {
779
904
  variants: {};
780
905
  };
781
906
  Tag: {
907
+ baseStyle: {};
782
908
  defaultProps: {
783
909
  colorScheme: string;
784
910
  size: string;
@@ -857,6 +983,7 @@ declare const _default: {
857
983
  };
858
984
  };
859
985
  Textarea: {
986
+ baseStyle: {};
860
987
  defaultProps: {
861
988
  colorScheme: string;
862
989
  variant: string;
@@ -10,24 +10,25 @@ var theme_4 = __importDefault(require("../card/theme"));
10
10
  var theme_5 = __importDefault(require("../checkbox/theme"));
11
11
  var theme_6 = __importDefault(require("../divider/theme"));
12
12
  var theme_7 = __importDefault(require("../footer/theme"));
13
- var theme_8 = __importDefault(require("../heading/theme"));
14
- var theme_9 = __importDefault(require("../icon/theme"));
15
- var theme_10 = __importDefault(require("../image/theme"));
16
- var theme_11 = __importDefault(require("../input/theme"));
17
- var theme_12 = __importDefault(require("../link/theme"));
18
- var theme_13 = __importDefault(require("../list/theme"));
19
- var theme_14 = __importDefault(require("../menu/theme"));
20
- var theme_15 = __importDefault(require("../notification/theme"));
21
- var theme_16 = __importDefault(require("../p/theme"));
22
- var theme_17 = __importDefault(require("../panel/theme"));
23
- var theme_18 = __importDefault(require("../popover/theme"));
24
- var theme_19 = __importDefault(require("../radio/theme"));
25
- var theme_20 = __importDefault(require("../skeleton/theme"));
26
- var theme_21 = __importDefault(require("../spinner/theme"));
27
- var theme_22 = __importDefault(require("../switch/theme"));
28
- var theme_23 = __importDefault(require("../t/theme"));
29
- var theme_24 = __importDefault(require("../tag/theme"));
30
- var theme_25 = __importDefault(require("../textarea/theme"));
13
+ var theme_8 = __importDefault(require("../header/theme"));
14
+ var theme_9 = __importDefault(require("../heading/theme"));
15
+ var theme_10 = __importDefault(require("../icon/theme"));
16
+ var theme_11 = __importDefault(require("../image/theme"));
17
+ var theme_12 = __importDefault(require("../input/theme"));
18
+ var theme_13 = __importDefault(require("../link/theme"));
19
+ var theme_14 = __importDefault(require("../list/theme"));
20
+ var theme_15 = __importDefault(require("../menu/theme"));
21
+ var theme_16 = __importDefault(require("../notification/theme"));
22
+ var theme_17 = __importDefault(require("../p/theme"));
23
+ var theme_18 = __importDefault(require("../panel/theme"));
24
+ var theme_19 = __importDefault(require("../popover/theme"));
25
+ var theme_20 = __importDefault(require("../radio/theme"));
26
+ var theme_21 = __importDefault(require("../skeleton/theme"));
27
+ var theme_22 = __importDefault(require("../spinner/theme"));
28
+ var theme_23 = __importDefault(require("../switch/theme"));
29
+ var theme_24 = __importDefault(require("../t/theme"));
30
+ var theme_25 = __importDefault(require("../tag/theme"));
31
+ var theme_26 = __importDefault(require("../textarea/theme"));
31
32
  exports.default = {
32
33
  Avatar: theme_1.default,
33
34
  Box: theme_2.default,
@@ -36,22 +37,23 @@ exports.default = {
36
37
  Checkbox: theme_5.default,
37
38
  Divider: theme_6.default,
38
39
  Footer: theme_7.default,
39
- Heading: theme_8.default,
40
- Icon: theme_9.default,
41
- Image: theme_10.default,
42
- Input: theme_11.default,
43
- Link: theme_12.default,
44
- List: theme_13.default,
45
- Menu: theme_14.default,
46
- Notification: theme_15.default,
47
- P: theme_16.default,
48
- Panel: theme_17.default,
49
- Popover: theme_18.default,
50
- Radio: theme_19.default,
51
- Skeleton: theme_20.default,
52
- Spinner: theme_21.default,
53
- Switch: theme_22.default,
54
- T: theme_23.default,
55
- Tag: theme_24.default,
56
- Textarea: theme_25.default
40
+ Header: theme_8.default,
41
+ Heading: theme_9.default,
42
+ Icon: theme_10.default,
43
+ Image: theme_11.default,
44
+ Input: theme_12.default,
45
+ Link: theme_13.default,
46
+ List: theme_14.default,
47
+ Menu: theme_15.default,
48
+ Notification: theme_16.default,
49
+ P: theme_17.default,
50
+ Panel: theme_18.default,
51
+ Popover: theme_19.default,
52
+ Radio: theme_20.default,
53
+ Skeleton: theme_21.default,
54
+ Spinner: theme_22.default,
55
+ Switch: theme_23.default,
56
+ T: theme_24.default,
57
+ Tag: theme_25.default,
58
+ Textarea: theme_26.default
57
59
  };
@@ -96,6 +96,11 @@ declare const defaultTheme: {
96
96
  90: string;
97
97
  100: string;
98
98
  };
99
+ disabled: {
100
+ bg: string;
101
+ border: string;
102
+ color: string;
103
+ };
99
104
  };
100
105
  durations: {
101
106
  instant: string;
@@ -163,6 +168,7 @@ declare const defaultTheme: {
163
168
  zIndices: {};
164
169
  components: {
165
170
  Avatar: {
171
+ baseStyle: {};
166
172
  defaultProps: {
167
173
  colorScheme: string;
168
174
  size: string;
@@ -211,11 +217,13 @@ declare const defaultTheme: {
211
217
  };
212
218
  };
213
219
  Box: {
220
+ baseStyle: {};
214
221
  defaultProps: {};
215
222
  sizes: {};
216
223
  variants: {};
217
224
  };
218
225
  Button: {
226
+ baseStyle: {};
219
227
  defaultProps: {
220
228
  colorScheme: string;
221
229
  size: string;
@@ -320,11 +328,13 @@ declare const defaultTheme: {
320
328
  };
321
329
  };
322
330
  Card: {
331
+ baseStyle: {};
323
332
  defaultProps: {};
324
333
  sizes: {};
325
334
  variants: {};
326
335
  };
327
336
  Checkbox: {
337
+ baseStyle: {};
328
338
  defaultProps: {
329
339
  colorScheme: string;
330
340
  size: string;
@@ -370,17 +380,104 @@ declare const defaultTheme: {
370
380
  };
371
381
  };
372
382
  Divider: {
383
+ baseStyle: {};
373
384
  defaultProps: {};
374
385
  sizes: {};
375
386
  variants: {};
376
387
  };
377
388
  Footer: {
389
+ baseStyle: {};
378
390
  defaultProps: {};
379
391
  parts: string[];
380
392
  sizes: {};
381
393
  variants: {};
382
394
  };
395
+ Header: {
396
+ baseStyle: {};
397
+ defaultProps: {};
398
+ parts: string[];
399
+ sizes: {};
400
+ variants: {
401
+ dark: {
402
+ container: {
403
+ bg: string;
404
+ borderBottom: number;
405
+ };
406
+ account: {
407
+ trigger: {
408
+ bg: string;
409
+ color: string;
410
+ hoverBg: string;
411
+ activeBg: string;
412
+ };
413
+ };
414
+ createAccount: {
415
+ link: {
416
+ color: {
417
+ xs: string;
418
+ md: string;
419
+ };
420
+ hoverColor: {
421
+ xs: string;
422
+ md: string;
423
+ };
424
+ };
425
+ text: {
426
+ color: {
427
+ md: string;
428
+ };
429
+ };
430
+ };
431
+ divider: {
432
+ borderColor: string;
433
+ };
434
+ linkItem: {
435
+ container: {
436
+ hoverBg: {
437
+ xs: string;
438
+ md: string;
439
+ };
440
+ activeBg: {
441
+ xs: string;
442
+ md: string;
443
+ };
444
+ };
445
+ link: {
446
+ borderColor: string;
447
+ };
448
+ };
449
+ linksList: {
450
+ color: {
451
+ md: string;
452
+ };
453
+ };
454
+ logo: {
455
+ svg: {
456
+ pathFill: string;
457
+ };
458
+ };
459
+ mobileContent: {
460
+ top: string;
461
+ };
462
+ mobileToggle: {
463
+ variant: string;
464
+ };
465
+ notifications: {
466
+ variant: string;
467
+ };
468
+ services: {
469
+ button: {
470
+ variant: string;
471
+ };
472
+ };
473
+ signIn: {
474
+ colorScheme: string;
475
+ };
476
+ };
477
+ };
478
+ };
383
479
  Heading: {
480
+ baseStyle: {};
384
481
  defaultProps: {
385
482
  size: string;
386
483
  };
@@ -419,6 +516,7 @@ declare const defaultTheme: {
419
516
  variants: {};
420
517
  };
421
518
  Icon: {
519
+ baseStyle: {};
422
520
  defaultProps: {
423
521
  size: string;
424
522
  };
@@ -443,11 +541,13 @@ declare const defaultTheme: {
443
541
  variants: {};
444
542
  };
445
543
  Image: {
544
+ baseStyle: {};
446
545
  defaultProps: {};
447
546
  sizes: {};
448
547
  variants: {};
449
548
  };
450
549
  Input: {
550
+ baseStyle: {};
451
551
  defaultProps: {
452
552
  colorScheme: string;
453
553
  size: string;
@@ -509,6 +609,7 @@ declare const defaultTheme: {
509
609
  };
510
610
  };
511
611
  Link: {
612
+ baseStyle: {};
512
613
  defaultProps: {
513
614
  colorScheme: string;
514
615
  size: string;
@@ -554,9 +655,15 @@ declare const defaultTheme: {
554
655
  hoverColor: string;
555
656
  };
556
657
  };
658
+ plain: {
659
+ container: {
660
+ hoverTextDecoration: string;
661
+ };
662
+ };
557
663
  };
558
664
  };
559
665
  List: {
666
+ baseStyle: {};
560
667
  defaultProps: {
561
668
  colorScheme: string;
562
669
  size: string;
@@ -632,12 +739,27 @@ declare const defaultTheme: {
632
739
  };
633
740
  };
634
741
  Menu: {
635
- defaultProps: {};
742
+ baseStyle: {};
743
+ defaultProps: {
744
+ size: string;
745
+ };
636
746
  parts: string[];
637
- sizes: {};
747
+ sizes: {
748
+ md: {
749
+ list: {
750
+ size: string;
751
+ };
752
+ };
753
+ lg: {
754
+ list: {
755
+ size: string;
756
+ };
757
+ };
758
+ };
638
759
  variants: {};
639
760
  };
640
761
  Notification: {
762
+ baseStyle: {};
641
763
  defaultProps: {
642
764
  colorScheme: string;
643
765
  variant: string;
@@ -661,6 +783,7 @@ declare const defaultTheme: {
661
783
  };
662
784
  };
663
785
  P: {
786
+ baseStyle: {};
664
787
  defaultProps: {
665
788
  size: string;
666
789
  };
@@ -689,6 +812,7 @@ declare const defaultTheme: {
689
812
  variants: {};
690
813
  };
691
814
  Panel: {
815
+ baseStyle: {};
692
816
  defaultProps: {
693
817
  variant: string;
694
818
  };
@@ -704,12 +828,14 @@ declare const defaultTheme: {
704
828
  };
705
829
  };
706
830
  Popover: {
831
+ baseStyle: {};
707
832
  defaultProps: {};
708
833
  parts: string[];
709
834
  sizes: {};
710
835
  variants: {};
711
836
  };
712
837
  Radio: {
838
+ baseStyle: {};
713
839
  defaultProps: {
714
840
  colorScheme: string;
715
841
  size: string;
@@ -755,6 +881,7 @@ declare const defaultTheme: {
755
881
  };
756
882
  };
757
883
  Skeleton: {
884
+ baseStyle: {};
758
885
  defaultProps: {
759
886
  colorScheme: string;
760
887
  size: string;
@@ -787,6 +914,7 @@ declare const defaultTheme: {
787
914
  };
788
915
  };
789
916
  Spinner: {
917
+ baseStyle: {};
790
918
  defaultProps: {
791
919
  colorScheme: string;
792
920
  size: string;
@@ -851,6 +979,7 @@ declare const defaultTheme: {
851
979
  };
852
980
  };
853
981
  Switch: {
982
+ baseStyle: {};
854
983
  defaultProps: {
855
984
  colorScheme: string;
856
985
  size: string;
@@ -922,6 +1051,7 @@ declare const defaultTheme: {
922
1051
  };
923
1052
  };
924
1053
  T: {
1054
+ baseStyle: {};
925
1055
  defaultProps: {
926
1056
  size: string;
927
1057
  };
@@ -942,6 +1072,7 @@ declare const defaultTheme: {
942
1072
  variants: {};
943
1073
  };
944
1074
  Tag: {
1075
+ baseStyle: {};
945
1076
  defaultProps: {
946
1077
  colorScheme: string;
947
1078
  size: string;
@@ -1020,6 +1151,7 @@ declare const defaultTheme: {
1020
1151
  };
1021
1152
  };
1022
1153
  Textarea: {
1154
+ baseStyle: {};
1023
1155
  defaultProps: {
1024
1156
  colorScheme: string;
1025
1157
  variant: string;
@@ -82,6 +82,11 @@ export declare const yellow: {
82
82
  90: string;
83
83
  100: string;
84
84
  };
85
+ export declare const disabled: {
86
+ bg: string;
87
+ border: string;
88
+ color: string;
89
+ };
85
90
  declare const _default: {
86
91
  blue: {
87
92
  10: string;
@@ -167,5 +172,10 @@ declare const _default: {
167
172
  90: string;
168
173
  100: string;
169
174
  };
175
+ disabled: {
176
+ bg: string;
177
+ border: string;
178
+ color: string;
179
+ };
170
180
  };
171
181
  export default _default;