@decisiv/ui-components 2.0.1-alpha.99 → 2.0.2-alpha.2

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 (502) hide show
  1. package/lib/atoms/Calendar/index.d.ts.map +1 -1
  2. package/lib/atoms/Calendar/index.js +38 -5
  3. package/lib/atoms/Calendar/index.test.js +5 -5
  4. package/lib/atoms/Calendar/types.d.ts +1 -1
  5. package/lib/atoms/Calendar/types.d.ts.map +1 -1
  6. package/lib/atoms/InputField/Containers.d.ts +2 -1
  7. package/lib/atoms/InputField/Containers.d.ts.map +1 -1
  8. package/lib/atoms/InputField/Containers.js +3 -1
  9. package/lib/atoms/InputField/HelpMessage.d.ts +1 -1
  10. package/lib/atoms/InputField/HelpMessage.d.ts.map +1 -1
  11. package/lib/atoms/InputField/HelpMessage.js +23 -7
  12. package/lib/atoms/InputField/index.d.ts +6 -1
  13. package/lib/atoms/InputField/index.d.ts.map +1 -1
  14. package/lib/atoms/InputField/index.js +21 -4
  15. package/lib/atoms/InputField/index.test.js +53 -0
  16. package/lib/atoms/InputField/schema.js +2 -2
  17. package/lib/atoms/InputField/styles.d.ts +7 -0
  18. package/lib/atoms/InputField/styles.d.ts.map +1 -0
  19. package/lib/atoms/InputField/styles.js +31 -0
  20. package/lib/atoms/OptionsList/Category/index.d.ts +4 -0
  21. package/lib/atoms/OptionsList/Category/index.d.ts.map +1 -0
  22. package/lib/atoms/OptionsList/Category/index.js +85 -0
  23. package/lib/atoms/OptionsList/Category/styles.d.ts +5 -0
  24. package/lib/atoms/OptionsList/Category/styles.d.ts.map +1 -0
  25. package/lib/atoms/OptionsList/Category/styles.js +35 -0
  26. package/lib/atoms/OptionsList/{Option.d.ts → Option/index.d.ts} +2 -2
  27. package/lib/atoms/OptionsList/Option/index.d.ts.map +1 -0
  28. package/lib/atoms/OptionsList/Option/index.js +182 -0
  29. package/lib/atoms/OptionsList/Option/styles.d.ts +17 -0
  30. package/lib/atoms/OptionsList/Option/styles.d.ts.map +1 -0
  31. package/lib/atoms/OptionsList/Option/styles.js +86 -0
  32. package/lib/atoms/OptionsList/context.d.ts +1 -0
  33. package/lib/atoms/OptionsList/context.d.ts.map +1 -1
  34. package/lib/atoms/OptionsList/index.d.ts +1 -44
  35. package/lib/atoms/OptionsList/index.d.ts.map +1 -1
  36. package/lib/atoms/OptionsList/index.js +259 -40
  37. package/lib/atoms/OptionsList/index.test.js +329 -186
  38. package/lib/atoms/OptionsList/schema.d.ts.map +1 -1
  39. package/lib/atoms/OptionsList/schema.js +7 -1
  40. package/lib/atoms/OptionsList/styles.d.ts +45 -0
  41. package/lib/atoms/OptionsList/styles.d.ts.map +1 -0
  42. package/lib/atoms/OptionsList/styles.js +29 -0
  43. package/lib/atoms/OptionsList/types.d.ts +50 -1
  44. package/lib/atoms/OptionsList/types.d.ts.map +1 -1
  45. package/lib/atoms/OptionsList/utils.d.ts +2 -1
  46. package/lib/atoms/OptionsList/utils.d.ts.map +1 -1
  47. package/lib/atoms/OptionsList/utils.js +49 -2
  48. package/lib/components/Alert/Container.d.ts +201 -0
  49. package/lib/components/Alert/Container.d.ts.map +1 -0
  50. package/lib/components/Alert/Container.js +26 -0
  51. package/lib/components/Alert/StyledButton.d.ts +5 -0
  52. package/lib/components/Alert/StyledButton.d.ts.map +1 -0
  53. package/lib/components/Alert/StyledButton.js +23 -0
  54. package/lib/components/Alert/index.d.ts +27 -0
  55. package/lib/components/Alert/index.d.ts.map +1 -0
  56. package/lib/components/Alert/index.js +112 -0
  57. package/lib/components/Alert/index.test.js +79 -0
  58. package/lib/components/Alert/intents.d.ts +13 -0
  59. package/lib/components/Alert/intents.d.ts.map +1 -0
  60. package/lib/components/Alert/intents.js +72 -0
  61. package/lib/components/{Tabs/schema.tab.d.ts → Alert/schema.d.ts} +1 -1
  62. package/lib/components/Alert/schema.d.ts.map +1 -0
  63. package/lib/components/Alert/schema.js +25 -0
  64. package/lib/components/Alert/types.d.ts +36 -0
  65. package/lib/components/Alert/types.d.ts.map +1 -0
  66. package/lib/components/Alert/types.js +32 -0
  67. package/lib/components/Avatar/AvatarContainer.d.ts +1 -13
  68. package/lib/components/Avatar/AvatarContainer.d.ts.map +1 -1
  69. package/lib/components/Avatar/AvatarContainer.js +12 -13
  70. package/lib/components/Avatar/AvatarContent.d.ts +2 -2
  71. package/lib/components/Avatar/AvatarContent.d.ts.map +1 -1
  72. package/lib/components/Avatar/AvatarContent.js +24 -20
  73. package/lib/components/Avatar/index.d.ts.map +1 -1
  74. package/lib/components/Avatar/index.js +44 -5
  75. package/lib/components/Avatar/index.test.js +4 -0
  76. package/lib/components/Avatar/schema.d.ts.map +1 -1
  77. package/lib/components/Avatar/schema.js +3 -1
  78. package/lib/components/Avatar/types.d.ts +15 -2
  79. package/lib/components/Avatar/types.d.ts.map +1 -1
  80. package/lib/components/Badge/index.d.ts.map +1 -1
  81. package/lib/components/Badge/index.js +2 -58
  82. package/lib/components/Badge/index.test.js +15 -4
  83. package/lib/components/Badge/schema.d.ts.map +1 -1
  84. package/lib/components/Badge/schema.js +1 -0
  85. package/lib/components/Badge/styles.d.ts +3 -0
  86. package/lib/components/Badge/styles.d.ts.map +1 -0
  87. package/lib/components/Badge/styles.js +97 -0
  88. package/lib/components/Badge/types.d.ts +3 -1
  89. package/lib/components/Badge/types.d.ts.map +1 -1
  90. package/lib/components/Badge/types.js +2 -1
  91. package/lib/components/Button/StyledButton.d.ts +3 -6
  92. package/lib/components/Button/StyledButton.d.ts.map +1 -1
  93. package/lib/components/Button/StyledButton.js +39 -11
  94. package/lib/components/Button/index.d.ts.map +1 -1
  95. package/lib/components/Button/index.js +51 -12
  96. package/lib/components/Button/index.test.js +43 -8
  97. package/lib/components/Button/schema.d.ts.map +1 -1
  98. package/lib/components/Button/schema.js +4 -1
  99. package/lib/components/Button/types.d.ts +4 -1
  100. package/lib/components/Button/types.d.ts.map +1 -1
  101. package/lib/components/Combobox/Target.d.ts.map +1 -1
  102. package/lib/components/Combobox/Target.js +10 -0
  103. package/lib/components/Combobox/index.d.ts.map +1 -1
  104. package/lib/components/Combobox/index.js +111 -59
  105. package/lib/components/Combobox/index.test.js +110 -25
  106. package/lib/components/Combobox/schema.d.ts.map +1 -1
  107. package/lib/components/Combobox/schema.js +7 -1
  108. package/lib/components/Combobox/types.d.ts +7 -2
  109. package/lib/components/Combobox/types.d.ts.map +1 -1
  110. package/lib/components/Drawer/index.d.ts +22 -0
  111. package/lib/components/Drawer/index.d.ts.map +1 -0
  112. package/lib/components/Drawer/index.js +122 -0
  113. package/lib/components/Drawer/index.test.js +164 -0
  114. package/lib/components/Drawer/schema.d.ts +3 -0
  115. package/lib/components/Drawer/schema.d.ts.map +1 -0
  116. package/lib/components/Drawer/schema.js +32 -0
  117. package/lib/components/Drawer/styles.d.ts +11 -0
  118. package/lib/components/Drawer/styles.d.ts.map +1 -0
  119. package/lib/components/Drawer/styles.js +79 -0
  120. package/lib/components/DropdownList/index.d.ts.map +1 -1
  121. package/lib/components/DropdownList/index.js +10 -3
  122. package/lib/components/DropdownList/index.test.js +38 -25
  123. package/lib/components/DropdownList/schema.js +1 -1
  124. package/lib/components/Filter/ActionFilter/index.d.ts +5 -0
  125. package/lib/components/Filter/ActionFilter/index.d.ts.map +1 -0
  126. package/lib/components/Filter/ActionFilter/index.js +43 -0
  127. package/lib/components/Filter/IconWrapper/index.d.ts +2 -2
  128. package/lib/components/Filter/IconWrapper/index.d.ts.map +1 -1
  129. package/lib/components/Filter/SimplePrimary/index.d.ts +2 -28
  130. package/lib/components/Filter/SimplePrimary/index.d.ts.map +1 -1
  131. package/lib/components/Filter/SimplePrimary/index.js +9 -21
  132. package/lib/components/Filter/StyledFilter.d.ts +2 -2
  133. package/lib/components/Filter/StyledFilter.d.ts.map +1 -1
  134. package/lib/components/Filter/StyledFilter.js +28 -1
  135. package/lib/components/Filter/StyledLabel/index.d.ts +3 -3
  136. package/lib/components/Filter/StyledLabel/index.d.ts.map +1 -1
  137. package/lib/components/Filter/StyledLabel/index.js +14 -6
  138. package/lib/components/Filter/index.d.ts +4 -25
  139. package/lib/components/Filter/index.d.ts.map +1 -1
  140. package/lib/components/Filter/index.js +41 -29
  141. package/lib/components/Filter/index.test.js +33 -4
  142. package/lib/components/Filter/kind.d.ts +4 -3
  143. package/lib/components/Filter/kind.d.ts.map +1 -1
  144. package/lib/components/Filter/kind.js +20 -22
  145. package/lib/components/Filter/schema.d.ts.map +1 -1
  146. package/lib/components/Filter/schema.js +8 -3
  147. package/lib/components/Filter/types.d.ts +21 -7
  148. package/lib/components/Filter/types.d.ts.map +1 -1
  149. package/lib/components/JumpTo/JumpToMenu.d.ts.map +1 -1
  150. package/lib/components/JumpTo/JumpToMenu.js +50 -9
  151. package/lib/components/JumpTo/index.test.js +84 -0
  152. package/lib/components/JumpTo/schema.d.ts.map +1 -1
  153. package/lib/components/JumpTo/schema.js +2 -1
  154. package/lib/components/JumpTo/types.d.ts +1 -0
  155. package/lib/components/JumpTo/types.d.ts.map +1 -1
  156. package/lib/components/JumpTo/utils.d.ts.map +1 -1
  157. package/lib/components/JumpTo/utils.js +3 -7
  158. package/lib/components/LeftNav/Item/NavExpandedItem/index.js +7 -2
  159. package/lib/components/LeftNav/index.test.js +35 -19
  160. package/lib/components/LeftNav/schema.d.ts.map +1 -1
  161. package/lib/components/LeftNav/schema.js +3 -1
  162. package/lib/components/LeftNav/types.d.ts +1 -0
  163. package/lib/components/LeftNav/types.d.ts.map +1 -1
  164. package/lib/components/Link/DisabledLink.d.ts +7 -0
  165. package/lib/components/Link/DisabledLink.d.ts.map +1 -0
  166. package/lib/components/Link/DisabledLink.js +46 -0
  167. package/lib/components/Link/Link.d.ts +4 -0
  168. package/lib/components/Link/Link.d.ts.map +1 -0
  169. package/lib/components/Link/Link.js +67 -0
  170. package/lib/components/Link/index.d.ts +4 -23
  171. package/lib/components/Link/index.d.ts.map +1 -1
  172. package/lib/components/Link/index.js +19 -157
  173. package/lib/components/Link/index.test.js +62 -49
  174. package/lib/components/Link/schema.d.ts.map +1 -1
  175. package/lib/components/Link/schema.js +1 -0
  176. package/lib/components/Link/styles.d.ts +20 -0
  177. package/lib/components/Link/styles.d.ts.map +1 -0
  178. package/lib/components/Link/styles.js +131 -0
  179. package/lib/components/Link/types.d.ts +28 -0
  180. package/lib/components/Link/types.d.ts.map +1 -0
  181. package/lib/components/List/BaseCell/index.d.ts +6 -0
  182. package/lib/components/List/BaseCell/index.d.ts.map +1 -0
  183. package/lib/components/List/BaseCell/index.js +17 -0
  184. package/lib/components/List/BaseCell/index.test.js +33 -0
  185. package/lib/components/List/BaseCell/styles.d.ts +198 -0
  186. package/lib/components/List/BaseCell/styles.d.ts.map +1 -0
  187. package/lib/components/List/BaseCell/styles.js +26 -0
  188. package/lib/components/List/ContentContainer/index.d.ts +21 -0
  189. package/lib/components/List/ContentContainer/index.d.ts.map +1 -0
  190. package/lib/components/List/ContentContainer/index.js +82 -0
  191. package/lib/components/List/ContentContainer/index.test.js +102 -0
  192. package/lib/components/List/DefaultCell/index.d.ts +6 -0
  193. package/lib/components/List/DefaultCell/index.d.ts.map +1 -0
  194. package/lib/components/List/DefaultCell/index.js +26 -0
  195. package/lib/components/List/EditableCell/index.d.ts +13 -0
  196. package/lib/components/List/EditableCell/index.d.ts.map +1 -0
  197. package/lib/components/List/EditableCell/index.js +47 -0
  198. package/lib/components/List/EditableCell/styles.d.ts +204 -0
  199. package/lib/components/List/EditableCell/styles.d.ts.map +1 -0
  200. package/lib/components/List/EditableCell/styles.js +47 -0
  201. package/lib/components/List/LabelContainer/index.d.ts +9 -0
  202. package/lib/components/List/LabelContainer/index.d.ts.map +1 -0
  203. package/lib/components/List/LabelContainer/index.js +38 -0
  204. package/lib/components/List/LabelContainer/index.test.js +105 -0
  205. package/lib/components/List/LabelContainer/styles.d.ts +4 -0
  206. package/lib/components/List/LabelContainer/styles.d.ts.map +1 -0
  207. package/lib/components/List/LabelContainer/styles.js +28 -0
  208. package/lib/components/List/ListItem/index.d.ts +8 -0
  209. package/lib/components/List/ListItem/index.d.ts.map +1 -0
  210. package/lib/components/List/ListItem/index.js +43 -0
  211. package/lib/components/List/ListItem/index.test.js +76 -0
  212. package/lib/components/List/ListItem/schema.d.ts +4 -0
  213. package/lib/components/List/ListItem/schema.d.ts.map +1 -0
  214. package/lib/components/List/ListItem/schema.js +30 -0
  215. package/lib/components/List/ListItem/styles.d.ts +2 -0
  216. package/lib/components/List/ListItem/styles.d.ts.map +1 -0
  217. package/lib/components/List/ListItem/styles.js +23 -0
  218. package/lib/components/List/constants.d.ts +19 -0
  219. package/lib/components/List/constants.d.ts.map +1 -0
  220. package/lib/components/List/constants.js +28 -0
  221. package/lib/components/List/index.d.ts +15 -0
  222. package/lib/components/List/index.d.ts.map +1 -0
  223. package/lib/components/List/index.js +67 -0
  224. package/lib/components/List/index.test.js +64 -0
  225. package/lib/components/List/schema.d.ts +4 -0
  226. package/lib/components/List/schema.d.ts.map +1 -0
  227. package/lib/components/List/schema.js +26 -0
  228. package/lib/components/List/styles.d.ts +198 -0
  229. package/lib/components/List/styles.d.ts.map +1 -0
  230. package/lib/components/List/styles.js +34 -0
  231. package/lib/components/List/types.d.ts +15 -0
  232. package/lib/components/List/types.d.ts.map +1 -0
  233. package/lib/components/List/types.js +5 -0
  234. package/lib/components/Loading/Loading.d.ts +12 -0
  235. package/lib/components/Loading/Loading.d.ts.map +1 -0
  236. package/lib/components/Loading/Loading.js +70 -0
  237. package/lib/components/Loading/index.d.ts +4 -0
  238. package/lib/components/Loading/index.d.ts.map +1 -0
  239. package/lib/components/Loading/index.js +33 -0
  240. package/lib/components/Loading/index.test.js +55 -0
  241. package/lib/components/Loading/schema.d.ts +4 -0
  242. package/lib/components/Loading/schema.d.ts.map +1 -0
  243. package/lib/components/Loading/schema.js +31 -0
  244. package/lib/components/Loading/styles.d.ts +211 -0
  245. package/lib/components/Loading/styles.d.ts.map +1 -0
  246. package/lib/components/Loading/styles.js +77 -0
  247. package/lib/components/Loading/types.d.ts +10 -0
  248. package/lib/components/Loading/types.d.ts.map +1 -0
  249. package/lib/components/Loading/types.js +5 -0
  250. package/lib/components/Modal/Manager.d.ts +6 -0
  251. package/lib/components/Modal/Manager.d.ts.map +1 -0
  252. package/lib/components/Modal/Manager.js +53 -0
  253. package/lib/components/Modal/ResponsiveModalWrapper.d.ts +11 -0
  254. package/lib/components/Modal/ResponsiveModalWrapper.d.ts.map +1 -0
  255. package/lib/components/Modal/ResponsiveModalWrapper.js +82 -0
  256. package/lib/components/Modal/components.d.ts +199 -1
  257. package/lib/components/Modal/components.d.ts.map +1 -1
  258. package/lib/components/Modal/components.js +16 -24
  259. package/lib/components/Modal/index.d.ts +8 -4
  260. package/lib/components/Modal/index.d.ts.map +1 -1
  261. package/lib/components/Modal/index.js +63 -95
  262. package/lib/components/Modal/index.test.js +99 -0
  263. package/lib/components/Modal/schema.d.ts.map +1 -1
  264. package/lib/components/Modal/schema.js +2 -1
  265. package/lib/components/Modal/types.d.ts +2 -1
  266. package/lib/components/Modal/types.d.ts.map +1 -1
  267. package/lib/components/Modal/utils.d.ts +1 -1
  268. package/lib/components/Modal/utils.d.ts.map +1 -1
  269. package/lib/components/Modal/utils.js +7 -5
  270. package/lib/components/Pagination/Pages.d.ts +1 -7
  271. package/lib/components/Pagination/Pages.d.ts.map +1 -1
  272. package/lib/components/Pagination/Pages.js +17 -0
  273. package/lib/components/Pagination/Pagination.d.ts +13 -14
  274. package/lib/components/Pagination/Pagination.d.ts.map +1 -1
  275. package/lib/components/Pagination/Pagination.js +20 -5
  276. package/lib/components/Pagination/Pagination.test.js +14 -0
  277. package/lib/components/Pagination/paginate.d.ts +1 -1
  278. package/lib/components/Pagination/paginate.d.ts.map +1 -1
  279. package/lib/components/Pagination/paginate.js +4 -0
  280. package/lib/components/Pagination/paginate.test.js +38 -17
  281. package/lib/components/Pagination/schema.d.ts.map +1 -1
  282. package/lib/components/Pagination/schema.js +3 -1
  283. package/lib/components/Pagination/types.d.ts +24 -1
  284. package/lib/components/Pagination/types.d.ts.map +1 -1
  285. package/lib/components/PasswordField/IconWrapper.d.ts +198 -0
  286. package/lib/components/PasswordField/IconWrapper.d.ts.map +1 -0
  287. package/lib/components/PasswordField/IconWrapper.js +32 -0
  288. package/lib/components/PasswordField/Input.d.ts +6 -0
  289. package/lib/components/PasswordField/Input.d.ts.map +1 -0
  290. package/lib/components/PasswordField/Input.js +28 -0
  291. package/lib/components/PasswordField/ShowPasswordButton.d.ts +8 -0
  292. package/lib/components/PasswordField/ShowPasswordButton.d.ts.map +1 -0
  293. package/lib/components/PasswordField/ShowPasswordButton.js +48 -0
  294. package/lib/components/PasswordField/index.d.ts +14 -0
  295. package/lib/components/PasswordField/index.d.ts.map +1 -0
  296. package/lib/components/PasswordField/index.js +113 -0
  297. package/lib/components/PasswordField/index.test.js +217 -0
  298. package/lib/components/PasswordField/schema.d.ts +3 -0
  299. package/lib/components/PasswordField/schema.d.ts.map +1 -0
  300. package/lib/components/PasswordField/schema.js +27 -0
  301. package/lib/components/Popover/Arrow.d.ts +2 -2
  302. package/lib/components/Popover/index.d.ts.map +1 -1
  303. package/lib/components/Popover/index.js +25 -10
  304. package/lib/components/Popover/schema.d.ts.map +1 -1
  305. package/lib/components/Popover/schema.js +28 -20
  306. package/lib/components/Popover/types.d.ts +6 -2
  307. package/lib/components/Popover/types.d.ts.map +1 -1
  308. package/lib/components/SearchInput/index.d.ts +11 -0
  309. package/lib/components/SearchInput/index.d.ts.map +1 -0
  310. package/lib/components/SearchInput/index.js +179 -0
  311. package/lib/components/SearchInput/index.test.js +660 -0
  312. package/lib/components/SearchInput/schema.d.ts +3 -0
  313. package/lib/components/SearchInput/schema.d.ts.map +1 -0
  314. package/lib/components/SearchInput/schema.js +38 -0
  315. package/lib/components/SearchInput/styles.d.ts +1176 -0
  316. package/lib/components/SearchInput/styles.d.ts.map +1 -0
  317. package/lib/components/SearchInput/styles.js +97 -0
  318. package/lib/components/SearchInput/types.d.ts +39 -0
  319. package/lib/components/SearchInput/types.d.ts.map +1 -0
  320. package/lib/components/SearchInput/types.js +5 -0
  321. package/lib/components/Select/Target.d.ts.map +1 -1
  322. package/lib/components/Select/Target.js +5 -1
  323. package/lib/components/Select/index.d.ts.map +1 -1
  324. package/lib/components/Select/index.js +7 -3
  325. package/lib/components/Select/index.test.js +43 -19
  326. package/lib/components/Select/schema.d.ts.map +1 -1
  327. package/lib/components/Select/schema.js +2 -0
  328. package/lib/components/Select/types.d.ts +2 -0
  329. package/lib/components/Select/types.d.ts.map +1 -1
  330. package/lib/components/SelectDate/Target.d.ts.map +1 -1
  331. package/lib/components/SelectDate/Target.js +5 -1
  332. package/lib/components/SelectDate/index.d.ts.map +1 -1
  333. package/lib/components/SelectDate/index.js +7 -3
  334. package/lib/components/SelectDate/schema.d.ts.map +1 -1
  335. package/lib/components/SelectDate/schema.js +1 -0
  336. package/lib/components/SelectDate/types.d.ts +1 -0
  337. package/lib/components/SelectDate/types.d.ts.map +1 -1
  338. package/lib/components/SelectDateRange/index.d.ts.map +1 -1
  339. package/lib/components/SelectDateRange/index.js +6 -2
  340. package/lib/components/SelectDateRange/schema.d.ts.map +1 -1
  341. package/lib/components/SelectDateRange/schema.js +1 -0
  342. package/lib/components/StepTracker/index.d.ts +11 -0
  343. package/lib/components/StepTracker/index.d.ts.map +1 -0
  344. package/lib/components/StepTracker/index.js +56 -0
  345. package/lib/components/StepTracker/index.test.js +89 -0
  346. package/lib/components/StepTracker/schema.d.ts +3 -0
  347. package/lib/components/StepTracker/schema.d.ts.map +1 -0
  348. package/lib/components/StepTracker/schema.js +19 -0
  349. package/lib/components/StepTracker/styles.d.ts +605 -0
  350. package/lib/components/StepTracker/styles.d.ts.map +1 -0
  351. package/lib/components/StepTracker/styles.js +114 -0
  352. package/lib/components/Table/Body.d.ts.map +1 -1
  353. package/lib/components/Table/Body.js +2 -5
  354. package/lib/components/Table/Container.d.ts.map +1 -1
  355. package/lib/components/Table/Container.js +6 -1
  356. package/lib/components/Table/Grip.d.ts +6 -2
  357. package/lib/components/Table/Grip.d.ts.map +1 -1
  358. package/lib/components/Table/Grip.js +9 -3
  359. package/lib/components/Table/index.js +1 -1
  360. package/lib/components/Tabs/Tab/index.d.ts +13 -0
  361. package/lib/components/Tabs/Tab/index.d.ts.map +1 -0
  362. package/lib/components/Tabs/Tab/index.js +94 -0
  363. package/lib/components/Tabs/Tab/schema.d.ts +3 -0
  364. package/lib/components/Tabs/Tab/schema.d.ts.map +1 -0
  365. package/lib/components/Tabs/Tab/styles.d.ts +7 -0
  366. package/lib/components/Tabs/Tab/styles.d.ts.map +1 -0
  367. package/lib/components/Tabs/Tab/styles.js +37 -0
  368. package/lib/components/Tabs/context.d.ts +2 -2
  369. package/lib/components/Tabs/context.d.ts.map +1 -1
  370. package/lib/components/Tabs/context.js +1 -1
  371. package/lib/components/Tabs/index.d.ts +17 -6
  372. package/lib/components/Tabs/index.d.ts.map +1 -1
  373. package/lib/components/Tabs/index.js +104 -163
  374. package/lib/components/Tabs/index.test.js +54 -2
  375. package/lib/components/Tabs/styles.d.ts +4 -0
  376. package/lib/components/Tabs/styles.d.ts.map +1 -0
  377. package/lib/components/Tabs/styles.js +35 -0
  378. package/lib/components/Tag/Action.d.ts +4 -0
  379. package/lib/components/Tag/Action.d.ts.map +1 -0
  380. package/lib/components/Tag/Action.js +39 -0
  381. package/lib/components/Tag/constants.d.ts +2 -2
  382. package/lib/components/Tag/constants.d.ts.map +1 -1
  383. package/lib/components/Tag/constants.js +4 -4
  384. package/lib/components/Tag/index.d.ts +1 -3
  385. package/lib/components/Tag/index.d.ts.map +1 -1
  386. package/lib/components/Tag/index.js +40 -97
  387. package/lib/components/Tag/index.test.js +239 -2
  388. package/lib/components/Tag/propTypes.d.ts +4 -1
  389. package/lib/components/Tag/propTypes.d.ts.map +1 -1
  390. package/lib/components/Tag/propTypes.js +5 -2
  391. package/lib/components/Tag/schema.d.ts.map +1 -1
  392. package/lib/components/Tag/schema.js +3 -1
  393. package/lib/components/Tag/styles.d.ts +13 -0
  394. package/lib/components/Tag/styles.d.ts.map +1 -0
  395. package/lib/components/Tag/styles.js +133 -0
  396. package/lib/components/Tag/types.d.ts +11 -12
  397. package/lib/components/Tag/types.d.ts.map +1 -1
  398. package/lib/components/TagInput/index.d.ts +5 -0
  399. package/lib/components/TagInput/index.d.ts.map +1 -0
  400. package/lib/components/TagInput/index.js +363 -0
  401. package/lib/components/TagInput/index.test.js +1143 -0
  402. package/lib/components/TagInput/schema.d.ts +3 -0
  403. package/lib/components/TagInput/schema.d.ts.map +1 -0
  404. package/lib/components/TagInput/schema.js +36 -0
  405. package/lib/components/TagInput/styles.d.ts +10 -0
  406. package/lib/components/TagInput/styles.d.ts.map +1 -0
  407. package/lib/components/TagInput/styles.js +52 -0
  408. package/lib/components/TagInput/types.d.ts +21 -0
  409. package/lib/components/TagInput/types.d.ts.map +1 -0
  410. package/lib/components/TagInput/types.js +5 -0
  411. package/lib/components/Toggle/Fieldset.d.ts.map +1 -1
  412. package/lib/components/Toggle/Fieldset.js +20 -11
  413. package/lib/components/Toggle/Option.d.ts.map +1 -1
  414. package/lib/components/Toggle/Option.js +1 -1
  415. package/lib/components/Toggle/Slider.d.ts +1 -3
  416. package/lib/components/Toggle/Slider.d.ts.map +1 -1
  417. package/lib/components/Toggle/Slider.js +29 -24
  418. package/lib/components/Toggle/index.d.ts.map +1 -1
  419. package/lib/components/Toggle/index.js +2 -1
  420. package/lib/components/Toggle/propTypes.js +1 -1
  421. package/lib/components/Toggle/schema.js +1 -1
  422. package/lib/components/Toggle/types.d.ts +3 -2
  423. package/lib/components/Toggle/types.d.ts.map +1 -1
  424. package/lib/components/ToggleView/ToggleView.d.ts +5 -0
  425. package/lib/components/ToggleView/ToggleView.d.ts.map +1 -0
  426. package/lib/components/ToggleView/ToggleView.js +80 -0
  427. package/lib/components/ToggleView/index.d.ts +4 -0
  428. package/lib/components/ToggleView/index.d.ts.map +1 -0
  429. package/lib/components/ToggleView/index.js +33 -0
  430. package/lib/components/ToggleView/index.test.js +61 -0
  431. package/lib/components/ToggleView/schema.d.ts +3 -0
  432. package/lib/components/ToggleView/schema.d.ts.map +1 -0
  433. package/lib/components/ToggleView/schema.js +24 -0
  434. package/lib/components/ToggleView/styles.d.ts +6 -0
  435. package/lib/components/ToggleView/styles.d.ts.map +1 -0
  436. package/lib/components/ToggleView/styles.js +23 -0
  437. package/lib/components/ToggleView/types.d.ts +23 -0
  438. package/lib/components/ToggleView/types.d.ts.map +1 -0
  439. package/lib/components/ToggleView/types.js +12 -0
  440. package/lib/components/Tooltip/index.d.ts.map +1 -1
  441. package/lib/components/Tooltip/index.js +3 -13
  442. package/lib/components/Tooltip/schema.d.ts +3 -0
  443. package/lib/components/Tooltip/schema.d.ts.map +1 -0
  444. package/lib/components/Tooltip/schema.js +29 -0
  445. package/lib/components/TopNav/Menu/index.d.ts +1 -1
  446. package/lib/components/TopNav/index.d.ts +1 -1
  447. package/lib/components/Typography/withColors.d.ts +1 -1
  448. package/lib/components/Typography/withColors.d.ts.map +1 -1
  449. package/lib/components/Typography/withColors.js +1 -1
  450. package/lib/components/Wizard/index.d.ts +33 -0
  451. package/lib/components/Wizard/index.d.ts.map +1 -0
  452. package/lib/components/Wizard/index.js +161 -0
  453. package/lib/components/Wizard/index.test.js +940 -0
  454. package/lib/components/Wizard/schema.d.ts +3 -0
  455. package/lib/components/Wizard/schema.d.ts.map +1 -0
  456. package/lib/components/Wizard/schema.js +42 -0
  457. package/lib/components/Wizard/styles.d.ts +990 -0
  458. package/lib/components/Wizard/styles.d.ts.map +1 -0
  459. package/lib/components/Wizard/styles.js +79 -0
  460. package/lib/components/index.d.ts +11 -1
  461. package/lib/components/index.d.ts.map +1 -1
  462. package/lib/components/index.js +196 -1
  463. package/lib/modifiers/palette.d.ts +36 -0
  464. package/lib/modifiers/palette.d.ts.map +1 -0
  465. package/lib/modifiers/palette.js +88 -0
  466. package/lib/modifiers/spacingSchema.d.ts.map +1 -1
  467. package/lib/modifiers/spacingSchema.js +29 -16
  468. package/lib/providers/ConfigProvider/utils/linkRenderer.d.ts +2 -1
  469. package/lib/providers/ConfigProvider/utils/linkRenderer.d.ts.map +1 -1
  470. package/lib/providers/ConfigProvider/utils/translations.d.ts +45 -1
  471. package/lib/providers/ConfigProvider/utils/translations.d.ts.map +1 -1
  472. package/lib/providers/ConfigProvider/utils/translations.js +46 -2
  473. package/lib/types/index.d.ts +2 -0
  474. package/lib/types/index.d.ts.map +1 -0
  475. package/lib/types/index.js +5 -0
  476. package/lib/utils/commonUIColors.d.ts +351 -3
  477. package/lib/utils/commonUIColors.d.ts.map +1 -1
  478. package/lib/utils/commonUIColors.js +6 -2
  479. package/lib/utils/useDebounce.d.ts +2 -0
  480. package/lib/utils/useDebounce.d.ts.map +1 -0
  481. package/lib/utils/useDebounce.js +37 -0
  482. package/lib/utils/useStackingContext.d.ts +12 -0
  483. package/lib/utils/useStackingContext.d.ts.map +1 -0
  484. package/lib/utils/useStackingContext.js +46 -0
  485. package/package.json +26 -13
  486. package/CHANGELOG.md +0 -796
  487. package/lib/atoms/OptionsList/Category.d.ts +0 -4
  488. package/lib/atoms/OptionsList/Category.d.ts.map +0 -1
  489. package/lib/atoms/OptionsList/Category.js +0 -53
  490. package/lib/atoms/OptionsList/Option.d.ts.map +0 -1
  491. package/lib/atoms/OptionsList/Option.js +0 -197
  492. package/lib/components/Tabs/Tab.d.ts +0 -5
  493. package/lib/components/Tabs/Tab.d.ts.map +0 -1
  494. package/lib/components/Tabs/Tab.js +0 -109
  495. package/lib/components/Tabs/schema.tab.d.ts.map +0 -1
  496. package/lib/components/Tabs/types.d.ts +0 -27
  497. package/lib/components/Tabs/types.d.ts.map +0 -1
  498. package/lib/components/Tag/ActionButton.d.ts +0 -5
  499. package/lib/components/Tag/ActionButton.d.ts.map +0 -1
  500. package/lib/components/Tag/ActionButton.js +0 -56
  501. /package/lib/components/{Tabs → Link}/types.js +0 -0
  502. /package/lib/components/Tabs/{schema.tab.js → Tab/schema.js} +0 -0
@@ -0,0 +1,990 @@
1
+ /// <reference types="react" />
2
+ export declare const WizardContainer: import("styled-components").StyledComponent<"div", any, Partial<{
3
+ readonly alignContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
4
+ readonly XS: "XS";
5
+ readonly SM: "SM";
6
+ readonly MD: "MD";
7
+ readonly LG: "LG";
8
+ readonly XL: "XL";
9
+ }> | undefined;
10
+ readonly alignItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
11
+ readonly XS: "XS";
12
+ readonly SM: "SM";
13
+ readonly MD: "MD";
14
+ readonly LG: "LG";
15
+ readonly XL: "XL";
16
+ }> | undefined;
17
+ readonly alignSelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
18
+ readonly XS: "XS";
19
+ readonly SM: "SM";
20
+ readonly MD: "MD";
21
+ readonly LG: "LG";
22
+ readonly XL: "XL";
23
+ }> | undefined;
24
+ readonly flex?: string | number | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("react").ReactText, {
25
+ readonly XS: "XS";
26
+ readonly SM: "SM";
27
+ readonly MD: "MD";
28
+ readonly LG: "LG";
29
+ readonly XL: "XL";
30
+ }> | undefined;
31
+ readonly flexBasis?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
32
+ readonly XS: "XS";
33
+ readonly SM: "SM";
34
+ readonly MD: "MD";
35
+ readonly LG: "LG";
36
+ readonly XL: "XL";
37
+ }> | undefined;
38
+ readonly flexDirection?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "row" | "column" | "column-reverse" | "row-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexDirectionProperty, {
39
+ readonly XS: "XS";
40
+ readonly SM: "SM";
41
+ readonly MD: "MD";
42
+ readonly LG: "LG";
43
+ readonly XL: "XL";
44
+ }> | undefined;
45
+ readonly flexGrow?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
46
+ readonly XS: "XS";
47
+ readonly SM: "SM";
48
+ readonly MD: "MD";
49
+ readonly LG: "LG";
50
+ readonly XL: "XL";
51
+ }> | undefined;
52
+ readonly flexShrink?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
53
+ readonly XS: "XS";
54
+ readonly SM: "SM";
55
+ readonly MD: "MD";
56
+ readonly LG: "LG";
57
+ readonly XL: "XL";
58
+ }> | undefined;
59
+ readonly flexWrap?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "nowrap" | "wrap" | "wrap-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexWrapProperty, {
60
+ readonly XS: "XS";
61
+ readonly SM: "SM";
62
+ readonly MD: "MD";
63
+ readonly LG: "LG";
64
+ readonly XL: "XL";
65
+ }> | undefined;
66
+ readonly justifyContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
67
+ readonly XS: "XS";
68
+ readonly SM: "SM";
69
+ readonly MD: "MD";
70
+ readonly LG: "LG";
71
+ readonly XL: "XL";
72
+ }> | undefined;
73
+ readonly justifyItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
74
+ readonly XS: "XS";
75
+ readonly SM: "SM";
76
+ readonly MD: "MD";
77
+ readonly LG: "LG";
78
+ readonly XL: "XL";
79
+ }> | undefined;
80
+ readonly justifySelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
81
+ readonly XS: "XS";
82
+ readonly SM: "SM";
83
+ readonly MD: "MD";
84
+ readonly LG: "LG";
85
+ readonly XL: "XL";
86
+ }> | undefined;
87
+ readonly order?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
88
+ readonly XS: "XS";
89
+ readonly SM: "SM";
90
+ readonly MD: "MD";
91
+ readonly LG: "LG";
92
+ readonly XL: "XL";
93
+ }> | undefined;
94
+ readonly size?: "XS" | "SM" | "MD" | "LG" | "XL" | undefined;
95
+ }> & Partial<{
96
+ readonly margin: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
97
+ readonly XS: "XS";
98
+ readonly SM: "SM";
99
+ readonly MD: "MD";
100
+ readonly LG: "LG";
101
+ readonly XL: "XL";
102
+ }>;
103
+ readonly marginBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
104
+ readonly XS: "XS";
105
+ readonly SM: "SM";
106
+ readonly MD: "MD";
107
+ readonly LG: "LG";
108
+ readonly XL: "XL";
109
+ }>;
110
+ readonly marginLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
111
+ readonly XS: "XS";
112
+ readonly SM: "SM";
113
+ readonly MD: "MD";
114
+ readonly LG: "LG";
115
+ readonly XL: "XL";
116
+ }>;
117
+ readonly marginRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
118
+ readonly XS: "XS";
119
+ readonly SM: "SM";
120
+ readonly MD: "MD";
121
+ readonly LG: "LG";
122
+ readonly XL: "XL";
123
+ }>;
124
+ readonly marginTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
125
+ readonly XS: "XS";
126
+ readonly SM: "SM";
127
+ readonly MD: "MD";
128
+ readonly LG: "LG";
129
+ readonly XL: "XL";
130
+ }>;
131
+ readonly marginX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
132
+ readonly XS: "XS";
133
+ readonly SM: "SM";
134
+ readonly MD: "MD";
135
+ readonly LG: "LG";
136
+ readonly XL: "XL";
137
+ }>;
138
+ readonly marginY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
139
+ readonly XS: "XS";
140
+ readonly SM: "SM";
141
+ readonly MD: "MD";
142
+ readonly LG: "LG";
143
+ readonly XL: "XL";
144
+ }>;
145
+ readonly padding: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
146
+ readonly XS: "XS";
147
+ readonly SM: "SM";
148
+ readonly MD: "MD";
149
+ readonly LG: "LG";
150
+ readonly XL: "XL";
151
+ }>;
152
+ readonly paddingBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
153
+ readonly XS: "XS";
154
+ readonly SM: "SM";
155
+ readonly MD: "MD";
156
+ readonly LG: "LG";
157
+ readonly XL: "XL";
158
+ }>;
159
+ readonly paddingLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
160
+ readonly XS: "XS";
161
+ readonly SM: "SM";
162
+ readonly MD: "MD";
163
+ readonly LG: "LG";
164
+ readonly XL: "XL";
165
+ }>;
166
+ readonly paddingRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
167
+ readonly XS: "XS";
168
+ readonly SM: "SM";
169
+ readonly MD: "MD";
170
+ readonly LG: "LG";
171
+ readonly XL: "XL";
172
+ }>;
173
+ readonly paddingTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
174
+ readonly XS: "XS";
175
+ readonly SM: "SM";
176
+ readonly MD: "MD";
177
+ readonly LG: "LG";
178
+ readonly XL: "XL";
179
+ }>;
180
+ readonly paddingX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
181
+ readonly XS: "XS";
182
+ readonly SM: "SM";
183
+ readonly MD: "MD";
184
+ readonly LG: "LG";
185
+ readonly XL: "XL";
186
+ }>;
187
+ readonly paddingY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
188
+ readonly XS: "XS";
189
+ readonly SM: "SM";
190
+ readonly MD: "MD";
191
+ readonly LG: "LG";
192
+ readonly XL: "XL";
193
+ }>;
194
+ }> & {
195
+ flex: number;
196
+ flexDirection: string;
197
+ alignItems: string;
198
+ }, "alignItems" | "flexDirection" | "flex">;
199
+ export declare const Header: import("styled-components").StyledComponent<"div", any, Partial<{
200
+ readonly alignContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
201
+ readonly XS: "XS";
202
+ readonly SM: "SM";
203
+ readonly MD: "MD";
204
+ readonly LG: "LG";
205
+ readonly XL: "XL";
206
+ }> | undefined;
207
+ readonly alignItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
208
+ readonly XS: "XS";
209
+ readonly SM: "SM";
210
+ readonly MD: "MD";
211
+ readonly LG: "LG";
212
+ readonly XL: "XL";
213
+ }> | undefined;
214
+ readonly alignSelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
215
+ readonly XS: "XS";
216
+ readonly SM: "SM";
217
+ readonly MD: "MD";
218
+ readonly LG: "LG";
219
+ readonly XL: "XL";
220
+ }> | undefined;
221
+ readonly flex?: string | number | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("react").ReactText, {
222
+ readonly XS: "XS";
223
+ readonly SM: "SM";
224
+ readonly MD: "MD";
225
+ readonly LG: "LG";
226
+ readonly XL: "XL";
227
+ }> | undefined;
228
+ readonly flexBasis?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
229
+ readonly XS: "XS";
230
+ readonly SM: "SM";
231
+ readonly MD: "MD";
232
+ readonly LG: "LG";
233
+ readonly XL: "XL";
234
+ }> | undefined;
235
+ readonly flexDirection?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "row" | "column" | "column-reverse" | "row-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexDirectionProperty, {
236
+ readonly XS: "XS";
237
+ readonly SM: "SM";
238
+ readonly MD: "MD";
239
+ readonly LG: "LG";
240
+ readonly XL: "XL";
241
+ }> | undefined;
242
+ readonly flexGrow?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
243
+ readonly XS: "XS";
244
+ readonly SM: "SM";
245
+ readonly MD: "MD";
246
+ readonly LG: "LG";
247
+ readonly XL: "XL";
248
+ }> | undefined;
249
+ readonly flexShrink?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
250
+ readonly XS: "XS";
251
+ readonly SM: "SM";
252
+ readonly MD: "MD";
253
+ readonly LG: "LG";
254
+ readonly XL: "XL";
255
+ }> | undefined;
256
+ readonly flexWrap?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "nowrap" | "wrap" | "wrap-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexWrapProperty, {
257
+ readonly XS: "XS";
258
+ readonly SM: "SM";
259
+ readonly MD: "MD";
260
+ readonly LG: "LG";
261
+ readonly XL: "XL";
262
+ }> | undefined;
263
+ readonly justifyContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
264
+ readonly XS: "XS";
265
+ readonly SM: "SM";
266
+ readonly MD: "MD";
267
+ readonly LG: "LG";
268
+ readonly XL: "XL";
269
+ }> | undefined;
270
+ readonly justifyItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
271
+ readonly XS: "XS";
272
+ readonly SM: "SM";
273
+ readonly MD: "MD";
274
+ readonly LG: "LG";
275
+ readonly XL: "XL";
276
+ }> | undefined;
277
+ readonly justifySelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
278
+ readonly XS: "XS";
279
+ readonly SM: "SM";
280
+ readonly MD: "MD";
281
+ readonly LG: "LG";
282
+ readonly XL: "XL";
283
+ }> | undefined;
284
+ readonly order?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
285
+ readonly XS: "XS";
286
+ readonly SM: "SM";
287
+ readonly MD: "MD";
288
+ readonly LG: "LG";
289
+ readonly XL: "XL";
290
+ }> | undefined;
291
+ readonly size?: "XS" | "SM" | "MD" | "LG" | "XL" | undefined;
292
+ }> & Partial<{
293
+ readonly margin: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
294
+ readonly XS: "XS";
295
+ readonly SM: "SM";
296
+ readonly MD: "MD";
297
+ readonly LG: "LG";
298
+ readonly XL: "XL";
299
+ }>;
300
+ readonly marginBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
301
+ readonly XS: "XS";
302
+ readonly SM: "SM";
303
+ readonly MD: "MD";
304
+ readonly LG: "LG";
305
+ readonly XL: "XL";
306
+ }>;
307
+ readonly marginLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
308
+ readonly XS: "XS";
309
+ readonly SM: "SM";
310
+ readonly MD: "MD";
311
+ readonly LG: "LG";
312
+ readonly XL: "XL";
313
+ }>;
314
+ readonly marginRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
315
+ readonly XS: "XS";
316
+ readonly SM: "SM";
317
+ readonly MD: "MD";
318
+ readonly LG: "LG";
319
+ readonly XL: "XL";
320
+ }>;
321
+ readonly marginTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
322
+ readonly XS: "XS";
323
+ readonly SM: "SM";
324
+ readonly MD: "MD";
325
+ readonly LG: "LG";
326
+ readonly XL: "XL";
327
+ }>;
328
+ readonly marginX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
329
+ readonly XS: "XS";
330
+ readonly SM: "SM";
331
+ readonly MD: "MD";
332
+ readonly LG: "LG";
333
+ readonly XL: "XL";
334
+ }>;
335
+ readonly marginY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
336
+ readonly XS: "XS";
337
+ readonly SM: "SM";
338
+ readonly MD: "MD";
339
+ readonly LG: "LG";
340
+ readonly XL: "XL";
341
+ }>;
342
+ readonly padding: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
343
+ readonly XS: "XS";
344
+ readonly SM: "SM";
345
+ readonly MD: "MD";
346
+ readonly LG: "LG";
347
+ readonly XL: "XL";
348
+ }>;
349
+ readonly paddingBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
350
+ readonly XS: "XS";
351
+ readonly SM: "SM";
352
+ readonly MD: "MD";
353
+ readonly LG: "LG";
354
+ readonly XL: "XL";
355
+ }>;
356
+ readonly paddingLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
357
+ readonly XS: "XS";
358
+ readonly SM: "SM";
359
+ readonly MD: "MD";
360
+ readonly LG: "LG";
361
+ readonly XL: "XL";
362
+ }>;
363
+ readonly paddingRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
364
+ readonly XS: "XS";
365
+ readonly SM: "SM";
366
+ readonly MD: "MD";
367
+ readonly LG: "LG";
368
+ readonly XL: "XL";
369
+ }>;
370
+ readonly paddingTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
371
+ readonly XS: "XS";
372
+ readonly SM: "SM";
373
+ readonly MD: "MD";
374
+ readonly LG: "LG";
375
+ readonly XL: "XL";
376
+ }>;
377
+ readonly paddingX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
378
+ readonly XS: "XS";
379
+ readonly SM: "SM";
380
+ readonly MD: "MD";
381
+ readonly LG: "LG";
382
+ readonly XL: "XL";
383
+ }>;
384
+ readonly paddingY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
385
+ readonly XS: "XS";
386
+ readonly SM: "SM";
387
+ readonly MD: "MD";
388
+ readonly LG: "LG";
389
+ readonly XL: "XL";
390
+ }>;
391
+ }> & {
392
+ flex: number;
393
+ padding: number;
394
+ paddingBottom: number;
395
+ flexDirection: string;
396
+ justifyContent: string;
397
+ }, "flexDirection" | "justifyContent" | "paddingBottom" | "flex" | "padding">;
398
+ export declare const StepContainer: import("styled-components").StyledComponent<"div", any, Partial<{
399
+ readonly alignContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
400
+ readonly XS: "XS";
401
+ readonly SM: "SM";
402
+ readonly MD: "MD";
403
+ readonly LG: "LG";
404
+ readonly XL: "XL";
405
+ }> | undefined;
406
+ readonly alignItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
407
+ readonly XS: "XS";
408
+ readonly SM: "SM";
409
+ readonly MD: "MD";
410
+ readonly LG: "LG";
411
+ readonly XL: "XL";
412
+ }> | undefined;
413
+ readonly alignSelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
414
+ readonly XS: "XS";
415
+ readonly SM: "SM";
416
+ readonly MD: "MD";
417
+ readonly LG: "LG";
418
+ readonly XL: "XL";
419
+ }> | undefined;
420
+ readonly flex?: string | number | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("react").ReactText, {
421
+ readonly XS: "XS";
422
+ readonly SM: "SM";
423
+ readonly MD: "MD";
424
+ readonly LG: "LG";
425
+ readonly XL: "XL";
426
+ }> | undefined;
427
+ readonly flexBasis?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
428
+ readonly XS: "XS";
429
+ readonly SM: "SM";
430
+ readonly MD: "MD";
431
+ readonly LG: "LG";
432
+ readonly XL: "XL";
433
+ }> | undefined;
434
+ readonly flexDirection?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "row" | "column" | "column-reverse" | "row-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexDirectionProperty, {
435
+ readonly XS: "XS";
436
+ readonly SM: "SM";
437
+ readonly MD: "MD";
438
+ readonly LG: "LG";
439
+ readonly XL: "XL";
440
+ }> | undefined;
441
+ readonly flexGrow?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
442
+ readonly XS: "XS";
443
+ readonly SM: "SM";
444
+ readonly MD: "MD";
445
+ readonly LG: "LG";
446
+ readonly XL: "XL";
447
+ }> | undefined;
448
+ readonly flexShrink?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
449
+ readonly XS: "XS";
450
+ readonly SM: "SM";
451
+ readonly MD: "MD";
452
+ readonly LG: "LG";
453
+ readonly XL: "XL";
454
+ }> | undefined;
455
+ readonly flexWrap?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "nowrap" | "wrap" | "wrap-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexWrapProperty, {
456
+ readonly XS: "XS";
457
+ readonly SM: "SM";
458
+ readonly MD: "MD";
459
+ readonly LG: "LG";
460
+ readonly XL: "XL";
461
+ }> | undefined;
462
+ readonly justifyContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
463
+ readonly XS: "XS";
464
+ readonly SM: "SM";
465
+ readonly MD: "MD";
466
+ readonly LG: "LG";
467
+ readonly XL: "XL";
468
+ }> | undefined;
469
+ readonly justifyItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
470
+ readonly XS: "XS";
471
+ readonly SM: "SM";
472
+ readonly MD: "MD";
473
+ readonly LG: "LG";
474
+ readonly XL: "XL";
475
+ }> | undefined;
476
+ readonly justifySelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
477
+ readonly XS: "XS";
478
+ readonly SM: "SM";
479
+ readonly MD: "MD";
480
+ readonly LG: "LG";
481
+ readonly XL: "XL";
482
+ }> | undefined;
483
+ readonly order?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
484
+ readonly XS: "XS";
485
+ readonly SM: "SM";
486
+ readonly MD: "MD";
487
+ readonly LG: "LG";
488
+ readonly XL: "XL";
489
+ }> | undefined;
490
+ readonly size?: "XS" | "SM" | "MD" | "LG" | "XL" | undefined;
491
+ }> & Partial<{
492
+ readonly margin: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
493
+ readonly XS: "XS";
494
+ readonly SM: "SM";
495
+ readonly MD: "MD";
496
+ readonly LG: "LG";
497
+ readonly XL: "XL";
498
+ }>;
499
+ readonly marginBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
500
+ readonly XS: "XS";
501
+ readonly SM: "SM";
502
+ readonly MD: "MD";
503
+ readonly LG: "LG";
504
+ readonly XL: "XL";
505
+ }>;
506
+ readonly marginLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
507
+ readonly XS: "XS";
508
+ readonly SM: "SM";
509
+ readonly MD: "MD";
510
+ readonly LG: "LG";
511
+ readonly XL: "XL";
512
+ }>;
513
+ readonly marginRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
514
+ readonly XS: "XS";
515
+ readonly SM: "SM";
516
+ readonly MD: "MD";
517
+ readonly LG: "LG";
518
+ readonly XL: "XL";
519
+ }>;
520
+ readonly marginTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
521
+ readonly XS: "XS";
522
+ readonly SM: "SM";
523
+ readonly MD: "MD";
524
+ readonly LG: "LG";
525
+ readonly XL: "XL";
526
+ }>;
527
+ readonly marginX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
528
+ readonly XS: "XS";
529
+ readonly SM: "SM";
530
+ readonly MD: "MD";
531
+ readonly LG: "LG";
532
+ readonly XL: "XL";
533
+ }>;
534
+ readonly marginY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
535
+ readonly XS: "XS";
536
+ readonly SM: "SM";
537
+ readonly MD: "MD";
538
+ readonly LG: "LG";
539
+ readonly XL: "XL";
540
+ }>;
541
+ readonly padding: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
542
+ readonly XS: "XS";
543
+ readonly SM: "SM";
544
+ readonly MD: "MD";
545
+ readonly LG: "LG";
546
+ readonly XL: "XL";
547
+ }>;
548
+ readonly paddingBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
549
+ readonly XS: "XS";
550
+ readonly SM: "SM";
551
+ readonly MD: "MD";
552
+ readonly LG: "LG";
553
+ readonly XL: "XL";
554
+ }>;
555
+ readonly paddingLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
556
+ readonly XS: "XS";
557
+ readonly SM: "SM";
558
+ readonly MD: "MD";
559
+ readonly LG: "LG";
560
+ readonly XL: "XL";
561
+ }>;
562
+ readonly paddingRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
563
+ readonly XS: "XS";
564
+ readonly SM: "SM";
565
+ readonly MD: "MD";
566
+ readonly LG: "LG";
567
+ readonly XL: "XL";
568
+ }>;
569
+ readonly paddingTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
570
+ readonly XS: "XS";
571
+ readonly SM: "SM";
572
+ readonly MD: "MD";
573
+ readonly LG: "LG";
574
+ readonly XL: "XL";
575
+ }>;
576
+ readonly paddingX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
577
+ readonly XS: "XS";
578
+ readonly SM: "SM";
579
+ readonly MD: "MD";
580
+ readonly LG: "LG";
581
+ readonly XL: "XL";
582
+ }>;
583
+ readonly paddingY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
584
+ readonly XS: "XS";
585
+ readonly SM: "SM";
586
+ readonly MD: "MD";
587
+ readonly LG: "LG";
588
+ readonly XL: "XL";
589
+ }>;
590
+ }> & {
591
+ flex: number;
592
+ padding: number;
593
+ flexDirection: string;
594
+ }, "flexDirection" | "flex" | "padding">;
595
+ export declare const ScrollYBox: import("styled-components").StyledComponent<"div", any, {
596
+ size?: "XS" | "SM" | "MD" | "LG" | "XL" | undefined;
597
+ hasFooter?: boolean | undefined;
598
+ }, never>;
599
+ export declare const Footer: import("styled-components").StyledComponent<"div", any, Partial<{
600
+ readonly alignContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
601
+ readonly XS: "XS";
602
+ readonly SM: "SM";
603
+ readonly MD: "MD";
604
+ readonly LG: "LG";
605
+ readonly XL: "XL";
606
+ }> | undefined;
607
+ readonly alignItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
608
+ readonly XS: "XS";
609
+ readonly SM: "SM";
610
+ readonly MD: "MD";
611
+ readonly LG: "LG";
612
+ readonly XL: "XL";
613
+ }> | undefined;
614
+ readonly alignSelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
615
+ readonly XS: "XS";
616
+ readonly SM: "SM";
617
+ readonly MD: "MD";
618
+ readonly LG: "LG";
619
+ readonly XL: "XL";
620
+ }> | undefined;
621
+ readonly flex?: string | number | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("react").ReactText, {
622
+ readonly XS: "XS";
623
+ readonly SM: "SM";
624
+ readonly MD: "MD";
625
+ readonly LG: "LG";
626
+ readonly XL: "XL";
627
+ }> | undefined;
628
+ readonly flexBasis?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
629
+ readonly XS: "XS";
630
+ readonly SM: "SM";
631
+ readonly MD: "MD";
632
+ readonly LG: "LG";
633
+ readonly XL: "XL";
634
+ }> | undefined;
635
+ readonly flexDirection?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "row" | "column" | "column-reverse" | "row-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexDirectionProperty, {
636
+ readonly XS: "XS";
637
+ readonly SM: "SM";
638
+ readonly MD: "MD";
639
+ readonly LG: "LG";
640
+ readonly XL: "XL";
641
+ }> | undefined;
642
+ readonly flexGrow?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
643
+ readonly XS: "XS";
644
+ readonly SM: "SM";
645
+ readonly MD: "MD";
646
+ readonly LG: "LG";
647
+ readonly XL: "XL";
648
+ }> | undefined;
649
+ readonly flexShrink?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
650
+ readonly XS: "XS";
651
+ readonly SM: "SM";
652
+ readonly MD: "MD";
653
+ readonly LG: "LG";
654
+ readonly XL: "XL";
655
+ }> | undefined;
656
+ readonly flexWrap?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "nowrap" | "wrap" | "wrap-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexWrapProperty, {
657
+ readonly XS: "XS";
658
+ readonly SM: "SM";
659
+ readonly MD: "MD";
660
+ readonly LG: "LG";
661
+ readonly XL: "XL";
662
+ }> | undefined;
663
+ readonly justifyContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
664
+ readonly XS: "XS";
665
+ readonly SM: "SM";
666
+ readonly MD: "MD";
667
+ readonly LG: "LG";
668
+ readonly XL: "XL";
669
+ }> | undefined;
670
+ readonly justifyItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
671
+ readonly XS: "XS";
672
+ readonly SM: "SM";
673
+ readonly MD: "MD";
674
+ readonly LG: "LG";
675
+ readonly XL: "XL";
676
+ }> | undefined;
677
+ readonly justifySelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
678
+ readonly XS: "XS";
679
+ readonly SM: "SM";
680
+ readonly MD: "MD";
681
+ readonly LG: "LG";
682
+ readonly XL: "XL";
683
+ }> | undefined;
684
+ readonly order?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
685
+ readonly XS: "XS";
686
+ readonly SM: "SM";
687
+ readonly MD: "MD";
688
+ readonly LG: "LG";
689
+ readonly XL: "XL";
690
+ }> | undefined;
691
+ readonly size?: "XS" | "SM" | "MD" | "LG" | "XL" | undefined;
692
+ }> & Partial<{
693
+ readonly margin: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
694
+ readonly XS: "XS";
695
+ readonly SM: "SM";
696
+ readonly MD: "MD";
697
+ readonly LG: "LG";
698
+ readonly XL: "XL";
699
+ }>;
700
+ readonly marginBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
701
+ readonly XS: "XS";
702
+ readonly SM: "SM";
703
+ readonly MD: "MD";
704
+ readonly LG: "LG";
705
+ readonly XL: "XL";
706
+ }>;
707
+ readonly marginLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
708
+ readonly XS: "XS";
709
+ readonly SM: "SM";
710
+ readonly MD: "MD";
711
+ readonly LG: "LG";
712
+ readonly XL: "XL";
713
+ }>;
714
+ readonly marginRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
715
+ readonly XS: "XS";
716
+ readonly SM: "SM";
717
+ readonly MD: "MD";
718
+ readonly LG: "LG";
719
+ readonly XL: "XL";
720
+ }>;
721
+ readonly marginTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
722
+ readonly XS: "XS";
723
+ readonly SM: "SM";
724
+ readonly MD: "MD";
725
+ readonly LG: "LG";
726
+ readonly XL: "XL";
727
+ }>;
728
+ readonly marginX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
729
+ readonly XS: "XS";
730
+ readonly SM: "SM";
731
+ readonly MD: "MD";
732
+ readonly LG: "LG";
733
+ readonly XL: "XL";
734
+ }>;
735
+ readonly marginY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
736
+ readonly XS: "XS";
737
+ readonly SM: "SM";
738
+ readonly MD: "MD";
739
+ readonly LG: "LG";
740
+ readonly XL: "XL";
741
+ }>;
742
+ readonly padding: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
743
+ readonly XS: "XS";
744
+ readonly SM: "SM";
745
+ readonly MD: "MD";
746
+ readonly LG: "LG";
747
+ readonly XL: "XL";
748
+ }>;
749
+ readonly paddingBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
750
+ readonly XS: "XS";
751
+ readonly SM: "SM";
752
+ readonly MD: "MD";
753
+ readonly LG: "LG";
754
+ readonly XL: "XL";
755
+ }>;
756
+ readonly paddingLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
757
+ readonly XS: "XS";
758
+ readonly SM: "SM";
759
+ readonly MD: "MD";
760
+ readonly LG: "LG";
761
+ readonly XL: "XL";
762
+ }>;
763
+ readonly paddingRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
764
+ readonly XS: "XS";
765
+ readonly SM: "SM";
766
+ readonly MD: "MD";
767
+ readonly LG: "LG";
768
+ readonly XL: "XL";
769
+ }>;
770
+ readonly paddingTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
771
+ readonly XS: "XS";
772
+ readonly SM: "SM";
773
+ readonly MD: "MD";
774
+ readonly LG: "LG";
775
+ readonly XL: "XL";
776
+ }>;
777
+ readonly paddingX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
778
+ readonly XS: "XS";
779
+ readonly SM: "SM";
780
+ readonly MD: "MD";
781
+ readonly LG: "LG";
782
+ readonly XL: "XL";
783
+ }>;
784
+ readonly paddingY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
785
+ readonly XS: "XS";
786
+ readonly SM: "SM";
787
+ readonly MD: "MD";
788
+ readonly LG: "LG";
789
+ readonly XL: "XL";
790
+ }>;
791
+ }> & {
792
+ hasIcon?: boolean | undefined;
793
+ }, never>;
794
+ export declare const ActionButtonsContainer: import("styled-components").StyledComponent<"div", any, Partial<{
795
+ readonly alignContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
796
+ readonly XS: "XS";
797
+ readonly SM: "SM";
798
+ readonly MD: "MD";
799
+ readonly LG: "LG";
800
+ readonly XL: "XL";
801
+ }> | undefined;
802
+ readonly alignItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
803
+ readonly XS: "XS";
804
+ readonly SM: "SM";
805
+ readonly MD: "MD";
806
+ readonly LG: "LG";
807
+ readonly XL: "XL";
808
+ }> | undefined;
809
+ readonly alignSelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
810
+ readonly XS: "XS";
811
+ readonly SM: "SM";
812
+ readonly MD: "MD";
813
+ readonly LG: "LG";
814
+ readonly XL: "XL";
815
+ }> | undefined;
816
+ readonly flex?: string | number | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("react").ReactText, {
817
+ readonly XS: "XS";
818
+ readonly SM: "SM";
819
+ readonly MD: "MD";
820
+ readonly LG: "LG";
821
+ readonly XL: "XL";
822
+ }> | undefined;
823
+ readonly flexBasis?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
824
+ readonly XS: "XS";
825
+ readonly SM: "SM";
826
+ readonly MD: "MD";
827
+ readonly LG: "LG";
828
+ readonly XL: "XL";
829
+ }> | undefined;
830
+ readonly flexDirection?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "row" | "column" | "column-reverse" | "row-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexDirectionProperty, {
831
+ readonly XS: "XS";
832
+ readonly SM: "SM";
833
+ readonly MD: "MD";
834
+ readonly LG: "LG";
835
+ readonly XL: "XL";
836
+ }> | undefined;
837
+ readonly flexGrow?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
838
+ readonly XS: "XS";
839
+ readonly SM: "SM";
840
+ readonly MD: "MD";
841
+ readonly LG: "LG";
842
+ readonly XL: "XL";
843
+ }> | undefined;
844
+ readonly flexShrink?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
845
+ readonly XS: "XS";
846
+ readonly SM: "SM";
847
+ readonly MD: "MD";
848
+ readonly LG: "LG";
849
+ readonly XL: "XL";
850
+ }> | undefined;
851
+ readonly flexWrap?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "nowrap" | "wrap" | "wrap-reverse" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").FlexWrapProperty, {
852
+ readonly XS: "XS";
853
+ readonly SM: "SM";
854
+ readonly MD: "MD";
855
+ readonly LG: "LG";
856
+ readonly XL: "XL";
857
+ }> | undefined;
858
+ readonly justifyContent?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
859
+ readonly XS: "XS";
860
+ readonly SM: "SM";
861
+ readonly MD: "MD";
862
+ readonly LG: "LG";
863
+ readonly XL: "XL";
864
+ }> | undefined;
865
+ readonly justifyItems?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
866
+ readonly XS: "XS";
867
+ readonly SM: "SM";
868
+ readonly MD: "MD";
869
+ readonly LG: "LG";
870
+ readonly XL: "XL";
871
+ }> | undefined;
872
+ readonly justifySelf?: string | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<string, {
873
+ readonly XS: "XS";
874
+ readonly SM: "SM";
875
+ readonly MD: "MD";
876
+ readonly LG: "LG";
877
+ readonly XL: "XL";
878
+ }> | undefined;
879
+ readonly order?: number | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | import("../../utils/dynamicModifiers").DynamicResponsiveModifiersProp<import("csstype").GlobalsNumber, {
880
+ readonly XS: "XS";
881
+ readonly SM: "SM";
882
+ readonly MD: "MD";
883
+ readonly LG: "LG";
884
+ readonly XL: "XL";
885
+ }> | undefined;
886
+ readonly size?: "XS" | "SM" | "MD" | "LG" | "XL" | undefined;
887
+ }> & Partial<{
888
+ readonly margin: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
889
+ readonly XS: "XS";
890
+ readonly SM: "SM";
891
+ readonly MD: "MD";
892
+ readonly LG: "LG";
893
+ readonly XL: "XL";
894
+ }>;
895
+ readonly marginBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
896
+ readonly XS: "XS";
897
+ readonly SM: "SM";
898
+ readonly MD: "MD";
899
+ readonly LG: "LG";
900
+ readonly XL: "XL";
901
+ }>;
902
+ readonly marginLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
903
+ readonly XS: "XS";
904
+ readonly SM: "SM";
905
+ readonly MD: "MD";
906
+ readonly LG: "LG";
907
+ readonly XL: "XL";
908
+ }>;
909
+ readonly marginRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
910
+ readonly XS: "XS";
911
+ readonly SM: "SM";
912
+ readonly MD: "MD";
913
+ readonly LG: "LG";
914
+ readonly XL: "XL";
915
+ }>;
916
+ readonly marginTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
917
+ readonly XS: "XS";
918
+ readonly SM: "SM";
919
+ readonly MD: "MD";
920
+ readonly LG: "LG";
921
+ readonly XL: "XL";
922
+ }>;
923
+ readonly marginX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
924
+ readonly XS: "XS";
925
+ readonly SM: "SM";
926
+ readonly MD: "MD";
927
+ readonly LG: "LG";
928
+ readonly XL: "XL";
929
+ }>;
930
+ readonly marginY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
931
+ readonly XS: "XS";
932
+ readonly SM: "SM";
933
+ readonly MD: "MD";
934
+ readonly LG: "LG";
935
+ readonly XL: "XL";
936
+ }>;
937
+ readonly padding: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
938
+ readonly XS: "XS";
939
+ readonly SM: "SM";
940
+ readonly MD: "MD";
941
+ readonly LG: "LG";
942
+ readonly XL: "XL";
943
+ }>;
944
+ readonly paddingBottom: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
945
+ readonly XS: "XS";
946
+ readonly SM: "SM";
947
+ readonly MD: "MD";
948
+ readonly LG: "LG";
949
+ readonly XL: "XL";
950
+ }>;
951
+ readonly paddingLeft: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
952
+ readonly XS: "XS";
953
+ readonly SM: "SM";
954
+ readonly MD: "MD";
955
+ readonly LG: "LG";
956
+ readonly XL: "XL";
957
+ }>;
958
+ readonly paddingRight: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
959
+ readonly XS: "XS";
960
+ readonly SM: "SM";
961
+ readonly MD: "MD";
962
+ readonly LG: "LG";
963
+ readonly XL: "XL";
964
+ }>;
965
+ readonly paddingTop: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
966
+ readonly XS: "XS";
967
+ readonly SM: "SM";
968
+ readonly MD: "MD";
969
+ readonly LG: "LG";
970
+ readonly XL: "XL";
971
+ }>;
972
+ readonly paddingX: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
973
+ readonly XS: "XS";
974
+ readonly SM: "SM";
975
+ readonly MD: "MD";
976
+ readonly LG: "LG";
977
+ readonly XL: "XL";
978
+ }>;
979
+ readonly paddingY: import("../../utils/dynamicModifiers").DynamicModifiersProp<number, {
980
+ readonly XS: "XS";
981
+ readonly SM: "SM";
982
+ readonly MD: "MD";
983
+ readonly LG: "LG";
984
+ readonly XL: "XL";
985
+ }>;
986
+ }> & {
987
+ flex: number;
988
+ justifyContent: string;
989
+ }, "justifyContent" | "flex">;
990
+ //# sourceMappingURL=styles.d.ts.map