@namuna-nur/ui-kit 1.0.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 (465) hide show
  1. package/README.md +338 -0
  2. package/lib/.gitkeep +0 -0
  3. package/lib/atoms/index.js +39 -0
  4. package/lib/hooks/index.js +8 -0
  5. package/lib/index.d.ts +2 -0
  6. package/lib/index.js +152 -0
  7. package/lib/molecules/index.js +101 -0
  8. package/lib/setupTests.d.ts +0 -0
  9. package/lib/shared/Avatar.tokens.js +7510 -0
  10. package/lib/shared/MessageSettings.tokens.js +8693 -0
  11. package/lib/shared/TabDots.tokens.js +1075 -0
  12. package/lib/shared/twMerge.js +3535 -0
  13. package/lib/shared/useClickOutside.js +16 -0
  14. package/lib/shared/useDebounce.js +15 -0
  15. package/lib/shared/useOption.js +8 -0
  16. package/lib/src/_shared/Accordion.utils.d.ts +15 -0
  17. package/lib/src/_shared/Dropdown.utils.d.ts +27 -0
  18. package/lib/src/_shared/Modal.utils.d.ts +16 -0
  19. package/lib/src/_shared/Popover.utils.d.ts +5 -0
  20. package/lib/src/_shared/Tab.utils.d.ts +6 -0
  21. package/lib/src/_shared/index.d.ts +5 -0
  22. package/lib/src/_shared/types.d.ts +7 -0
  23. package/lib/src/assets/icons/index.d.ts +151 -0
  24. package/lib/src/assets/images/index.d.ts +11 -0
  25. package/lib/src/atoms/Avatar/Avatar.d.ts +2 -0
  26. package/lib/src/atoms/Avatar/Avatar.stories.d.ts +9 -0
  27. package/lib/src/atoms/Avatar/Avatar.test.d.ts +1 -0
  28. package/lib/src/atoms/Avatar/Avatar.tokens.d.ts +8 -0
  29. package/lib/src/atoms/Avatar/Avatar.types.d.ts +24 -0
  30. package/lib/src/atoms/Avatar/index.d.ts +3 -0
  31. package/lib/src/atoms/Button/Button.d.ts +16 -0
  32. package/lib/src/atoms/Button/Button.stories.d.ts +8 -0
  33. package/lib/src/atoms/Button/Button.test.d.ts +1 -0
  34. package/lib/src/atoms/Button/Button.tokens.d.ts +52 -0
  35. package/lib/src/atoms/Button/Button.types.d.ts +23 -0
  36. package/lib/src/atoms/Button/index.d.ts +3 -0
  37. package/lib/src/atoms/Checkbox/Checkbox.d.ts +5 -0
  38. package/lib/src/atoms/Checkbox/Checkbox.stories.d.ts +8 -0
  39. package/lib/src/atoms/Checkbox/Checkbox.test.d.ts +1 -0
  40. package/lib/src/atoms/Checkbox/Checkbox.tokens.d.ts +18 -0
  41. package/lib/src/atoms/Checkbox/Checkbox.types.d.ts +7 -0
  42. package/lib/src/atoms/Checkbox/index.d.ts +3 -0
  43. package/lib/src/atoms/Headline/Headline.d.ts +3 -0
  44. package/lib/src/atoms/Headline/Headline.stories.d.ts +8 -0
  45. package/lib/src/atoms/Headline/Headline.test.d.ts +1 -0
  46. package/lib/src/atoms/Headline/Headline.types.d.ts +13 -0
  47. package/lib/src/atoms/Headline/index.d.ts +2 -0
  48. package/lib/src/atoms/IconButton/IconButton.d.ts +13 -0
  49. package/lib/src/atoms/IconButton/IconButton.stories.d.ts +9 -0
  50. package/lib/src/atoms/IconButton/IconButton.test.d.ts +1 -0
  51. package/lib/src/atoms/IconButton/IconButton.tokens.d.ts +47 -0
  52. package/lib/src/atoms/IconButton/IconButton.types.d.ts +24 -0
  53. package/lib/src/atoms/IconButton/index.d.ts +3 -0
  54. package/lib/src/atoms/Input/Input.d.ts +11 -0
  55. package/lib/src/atoms/Input/Input.stories.d.ts +12 -0
  56. package/lib/src/atoms/Input/Input.test.d.ts +1 -0
  57. package/lib/src/atoms/Input/Input.tokens.d.ts +21 -0
  58. package/lib/src/atoms/Input/Input.types.d.ts +27 -0
  59. package/lib/src/atoms/Input/index.d.ts +3 -0
  60. package/lib/src/atoms/Label/Label.d.ts +4 -0
  61. package/lib/src/atoms/Label/Label.stories.d.ts +6 -0
  62. package/lib/src/atoms/Label/Label.test.d.ts +1 -0
  63. package/lib/src/atoms/Label/Label.tokens.d.ts +2 -0
  64. package/lib/src/atoms/Label/Label.types.d.ts +11 -0
  65. package/lib/src/atoms/Label/index.d.ts +3 -0
  66. package/lib/src/atoms/Message/Message.d.ts +8 -0
  67. package/lib/src/atoms/Message/Message.stories.d.ts +10 -0
  68. package/lib/src/atoms/Message/Message.test.d.ts +1 -0
  69. package/lib/src/atoms/Message/Message.tokens.d.ts +2 -0
  70. package/lib/src/atoms/Message/Message.types.d.ts +38 -0
  71. package/lib/src/atoms/Message/index.d.ts +3 -0
  72. package/lib/src/atoms/Notification/Notification.d.ts +2 -0
  73. package/lib/src/atoms/Notification/Notification.data.d.ts +7 -0
  74. package/lib/src/atoms/Notification/Notification.stories.d.ts +9 -0
  75. package/lib/src/atoms/Notification/Notification.test.d.ts +1 -0
  76. package/lib/src/atoms/Notification/Notification.types.d.ts +8 -0
  77. package/lib/src/atoms/Notification/Notification.utils.d.ts +20 -0
  78. package/lib/src/atoms/Notification/index.d.ts +2 -0
  79. package/lib/src/atoms/Radio/Radio.d.ts +5 -0
  80. package/lib/src/atoms/Radio/Radio.stories.d.ts +7 -0
  81. package/lib/src/atoms/Radio/Radio.test.d.ts +1 -0
  82. package/lib/src/atoms/Radio/Radio.tokens.d.ts +20 -0
  83. package/lib/src/atoms/Radio/Radio.types.d.ts +10 -0
  84. package/lib/src/atoms/Radio/index.d.ts +3 -0
  85. package/lib/src/atoms/Select/Select.d.ts +2 -0
  86. package/lib/src/atoms/Select/Select.stories.d.ts +13 -0
  87. package/lib/src/atoms/Select/Select.test.d.ts +1 -0
  88. package/lib/src/atoms/Select/Select.tokens.d.ts +43 -0
  89. package/lib/src/atoms/Select/Select.types.d.ts +30 -0
  90. package/lib/src/atoms/Select/index.d.ts +3 -0
  91. package/lib/src/atoms/Status/Status.d.ts +2 -0
  92. package/lib/src/atoms/Status/Status.stories.d.ts +9 -0
  93. package/lib/src/atoms/Status/Status.test.d.ts +1 -0
  94. package/lib/src/atoms/Status/Status.tokens.d.ts +10 -0
  95. package/lib/src/atoms/Status/Status.types.d.ts +8 -0
  96. package/lib/src/atoms/Status/index.d.ts +3 -0
  97. package/lib/src/atoms/Switch/Switch.d.ts +8 -0
  98. package/lib/src/atoms/Switch/Switch.stories.d.ts +6 -0
  99. package/lib/src/atoms/Switch/Switch.test.d.ts +1 -0
  100. package/lib/src/atoms/Switch/Switch.tokens.d.ts +2 -0
  101. package/lib/src/atoms/Switch/Switch.types.d.ts +19 -0
  102. package/lib/src/atoms/Switch/index.d.ts +3 -0
  103. package/lib/src/atoms/Tab/Tab.d.ts +10 -0
  104. package/lib/src/atoms/Tab/Tab.stories.d.ts +14 -0
  105. package/lib/src/atoms/Tab/Tab.test.d.ts +1 -0
  106. package/lib/src/atoms/Tab/Tab.tokens.d.ts +31 -0
  107. package/lib/src/atoms/Tab/Tab.types.d.ts +14 -0
  108. package/lib/src/atoms/Tab/index.d.ts +3 -0
  109. package/lib/src/atoms/TabDots/TabDots.d.ts +2 -0
  110. package/lib/src/atoms/TabDots/TabDots.stories.d.ts +5 -0
  111. package/lib/src/atoms/TabDots/TabDots.test.d.ts +1 -0
  112. package/lib/src/atoms/TabDots/TabDots.tokens.d.ts +5 -0
  113. package/lib/src/atoms/TabDots/TabDots.types.d.ts +12 -0
  114. package/lib/src/atoms/TabDots/index.d.ts +3 -0
  115. package/lib/src/atoms/Text/Text.d.ts +2 -0
  116. package/lib/src/atoms/Text/Text.stories.d.ts +10 -0
  117. package/lib/src/atoms/Text/Text.test.d.ts +1 -0
  118. package/lib/src/atoms/Text/Text.types.d.ts +14 -0
  119. package/lib/src/atoms/Text/index.d.ts +2 -0
  120. package/lib/src/atoms/Textarea/Teaxtarea.test.d.ts +1 -0
  121. package/lib/src/atoms/Textarea/Textarea.d.ts +5 -0
  122. package/lib/src/atoms/Textarea/Textarea.stories.d.ts +12 -0
  123. package/lib/src/atoms/Textarea/Textarea.tokens.d.ts +2 -0
  124. package/lib/src/atoms/Textarea/Textarea.types.d.ts +24 -0
  125. package/lib/src/atoms/Textarea/index.d.ts +3 -0
  126. package/lib/src/atoms/Toggle/Toggle.d.ts +11 -0
  127. package/lib/src/atoms/Toggle/Toggle.stories.d.ts +10 -0
  128. package/lib/src/atoms/Toggle/Toggle.test.d.ts +1 -0
  129. package/lib/src/atoms/Toggle/Toggle.tokens.d.ts +2 -0
  130. package/lib/src/atoms/Toggle/Toggle.types.d.ts +15 -0
  131. package/lib/src/atoms/Toggle/index.d.ts +3 -0
  132. package/lib/src/atoms/Tooltip/Tooltip.d.ts +2 -0
  133. package/lib/src/atoms/Tooltip/Tooltip.stories.d.ts +9 -0
  134. package/lib/src/atoms/Tooltip/Tooltip.test.d.ts +1 -0
  135. package/lib/src/atoms/Tooltip/Tooltip.tokens.d.ts +4 -0
  136. package/lib/src/atoms/Tooltip/Tooltip.types.d.ts +8 -0
  137. package/lib/src/atoms/Tooltip/index.d.ts +3 -0
  138. package/lib/src/atoms/index.d.ts +19 -0
  139. package/lib/src/context/use-toast.context.d.ts +10 -0
  140. package/lib/src/hooks/index.d.ts +3 -0
  141. package/lib/src/hooks/use-toast.d.ts +11 -0
  142. package/lib/src/hooks/use-toast.types.d.ts +32 -0
  143. package/lib/src/hooks/useClickOutside.d.ts +2 -0
  144. package/lib/src/hooks/useDebounce.d.ts +1 -0
  145. package/lib/src/hooks/useOption.d.ts +6 -0
  146. package/lib/src/index.d.ts +5 -0
  147. package/lib/src/molecules/Accordion/Accordion.d.ts +2 -0
  148. package/lib/src/molecules/Accordion/Accordion.stories.d.ts +7 -0
  149. package/lib/src/molecules/Accordion/Accordion.test.d.ts +1 -0
  150. package/lib/src/molecules/Accordion/Accordion.tokens.d.ts +19 -0
  151. package/lib/src/molecules/Accordion/Accordion.types.d.ts +27 -0
  152. package/lib/src/molecules/Accordion/index.d.ts +3 -0
  153. package/lib/src/molecules/ApartmentCard/ApartmentCard.d.ts +2 -0
  154. package/lib/src/molecules/ApartmentCard/ApartmentCard.data.d.ts +2 -0
  155. package/lib/src/molecules/ApartmentCard/ApartmentCard.stories.d.ts +5 -0
  156. package/lib/src/molecules/ApartmentCard/ApartmentCard.test.d.ts +1 -0
  157. package/lib/src/molecules/ApartmentCard/ApartmentCard.tokens.d.ts +12 -0
  158. package/lib/src/molecules/ApartmentCard/ApartmentCard.types.d.ts +26 -0
  159. package/lib/src/molecules/ApartmentCard/index.d.ts +3 -0
  160. package/lib/src/molecules/AvatarGroup/AvatarGroup.d.ts +2 -0
  161. package/lib/src/molecules/AvatarGroup/AvatarGroup.stories.d.ts +9 -0
  162. package/lib/src/molecules/AvatarGroup/AvatarGroup.test.d.ts +1 -0
  163. package/lib/src/molecules/AvatarGroup/AvatarGroup.tokens.d.ts +6 -0
  164. package/lib/src/molecules/AvatarGroup/AvatarGroup.types.d.ts +22 -0
  165. package/lib/src/molecules/AvatarGroup/index.d.ts +3 -0
  166. package/lib/src/molecules/Breadcrumb/Breadcrumb.d.ts +4 -0
  167. package/lib/src/molecules/Breadcrumb/Breadcrumb.stories.d.ts +8 -0
  168. package/lib/src/molecules/Breadcrumb/Breadcrumb.test.d.ts +1 -0
  169. package/lib/src/molecules/Breadcrumb/Breadcrumb.tokens.d.ts +7 -0
  170. package/lib/src/molecules/Breadcrumb/Breadcrumb.types.d.ts +16 -0
  171. package/lib/src/molecules/Breadcrumb/Breadcrumb.utils.d.ts +11 -0
  172. package/lib/src/molecules/Breadcrumb/index.d.ts +3 -0
  173. package/lib/src/molecules/CardFiles/CardFiles.d.ts +2 -0
  174. package/lib/src/molecules/CardFiles/CardFiles.stories.d.ts +7 -0
  175. package/lib/src/molecules/CardFiles/CardFiles.test.d.ts +1 -0
  176. package/lib/src/molecules/CardFiles/CardFiles.tokens.d.ts +28 -0
  177. package/lib/src/molecules/CardFiles/CardFiles.types.d.ts +40 -0
  178. package/lib/src/molecules/CardFiles/index.d.ts +3 -0
  179. package/lib/src/molecules/CardServices/CardServices.d.ts +5 -0
  180. package/lib/src/molecules/CardServices/CardServices.stories.d.ts +6 -0
  181. package/lib/src/molecules/CardServices/CardServices.test.d.ts +1 -0
  182. package/lib/src/molecules/CardServices/CardServices.tokens.d.ts +17 -0
  183. package/lib/src/molecules/CardServices/CardServices.types.d.ts +18 -0
  184. package/lib/src/molecules/CardServices/index.d.ts +3 -0
  185. package/lib/src/molecules/ChatButton/ChatButton.d.ts +2 -0
  186. package/lib/src/molecules/ChatButton/ChatButton.stories.d.ts +6 -0
  187. package/lib/src/molecules/ChatButton/ChatButton.test.d.ts +1 -0
  188. package/lib/src/molecules/ChatButton/ChatButton.tokens.d.ts +12 -0
  189. package/lib/src/molecules/ChatButton/ChatButton.types.d.ts +18 -0
  190. package/lib/src/molecules/ChatButton/index.d.ts +3 -0
  191. package/lib/src/molecules/ChatCard/ChatCard.d.ts +3 -0
  192. package/lib/src/molecules/ChatCard/ChatCard.stories.d.ts +8 -0
  193. package/lib/src/molecules/ChatCard/ChatCard.test.d.ts +1 -0
  194. package/lib/src/molecules/ChatCard/ChatCard.tokens.d.ts +9 -0
  195. package/lib/src/molecules/ChatCard/ChatCard.types.d.ts +18 -0
  196. package/lib/src/molecules/ChatCard/index.d.ts +3 -0
  197. package/lib/src/molecules/ChatList/ChatList.d.ts +3 -0
  198. package/lib/src/molecules/ChatList/ChatList.stories.d.ts +5 -0
  199. package/lib/src/molecules/ChatList/ChatList.test.d.ts +1 -0
  200. package/lib/src/molecules/ChatList/ChatList.tokens.d.ts +4 -0
  201. package/lib/src/molecules/ChatList/ChatList.types.d.ts +14 -0
  202. package/lib/src/molecules/ChatList/index.d.ts +3 -0
  203. package/lib/src/molecules/ChatMessage/ChatMessage.d.ts +2 -0
  204. package/lib/src/molecules/ChatMessage/ChatMessage.data.d.ts +3 -0
  205. package/lib/src/molecules/ChatMessage/ChatMessage.stories.d.ts +9 -0
  206. package/lib/src/molecules/ChatMessage/ChatMessage.test.d.ts +1 -0
  207. package/lib/src/molecules/ChatMessage/ChatMessage.tokens.d.ts +6 -0
  208. package/lib/src/molecules/ChatMessage/ChatMessage.types.d.ts +19 -0
  209. package/lib/src/molecules/ChatMessage/index.d.ts +3 -0
  210. package/lib/src/molecules/ChatSidebar/ChatSidebar.d.ts +2 -0
  211. package/lib/src/molecules/ChatSidebar/ChatSidebar.data.d.ts +4 -0
  212. package/lib/src/molecules/ChatSidebar/ChatSidebar.stories.d.ts +36 -0
  213. package/lib/src/molecules/ChatSidebar/ChatSidebar.test.d.ts +1 -0
  214. package/lib/src/molecules/ChatSidebar/ChatSidebar.tokens.d.ts +7 -0
  215. package/lib/src/molecules/ChatSidebar/ChatSidebar.types.d.ts +35 -0
  216. package/lib/src/molecules/ChatSidebar/index.d.ts +3 -0
  217. package/lib/src/molecules/CheckboxGroup/CheckboxGroup.d.ts +2 -0
  218. package/lib/src/molecules/CheckboxGroup/CheckboxGroup.stories.d.ts +8 -0
  219. package/lib/src/molecules/CheckboxGroup/CheckboxGroup.test.d.ts +1 -0
  220. package/lib/src/molecules/CheckboxGroup/CheckboxGroup.tokens.d.ts +16 -0
  221. package/lib/src/molecules/CheckboxGroup/CheckboxGroup.types.d.ts +8 -0
  222. package/lib/src/molecules/CheckboxGroup/index.d.ts +3 -0
  223. package/lib/src/molecules/CommentInput/CommentInput.d.ts +3 -0
  224. package/lib/src/molecules/CommentInput/CommentInput.stories.d.ts +8 -0
  225. package/lib/src/molecules/CommentInput/CommentInput.test.d.ts +1 -0
  226. package/lib/src/molecules/CommentInput/CommentInput.tokens.d.ts +9 -0
  227. package/lib/src/molecules/CommentInput/CommentInput.types.d.ts +29 -0
  228. package/lib/src/molecules/CommentInput/index.d.ts +3 -0
  229. package/lib/src/molecules/CommentList/CommentList.d.ts +3 -0
  230. package/lib/src/molecules/CommentList/CommentList.stories.d.ts +7 -0
  231. package/lib/src/molecules/CommentList/CommentList.test.d.ts +1 -0
  232. package/lib/src/molecules/CommentList/CommentList.tokens.d.ts +35 -0
  233. package/lib/src/molecules/CommentList/CommentList.types.d.ts +21 -0
  234. package/lib/src/molecules/CommentList/index.d.ts +3 -0
  235. package/lib/src/molecules/DateOfBirth/DateOfBirth.d.ts +2 -0
  236. package/lib/src/molecules/DateOfBirth/DateOfBirth.stories.d.ts +10 -0
  237. package/lib/src/molecules/DateOfBirth/DateOfBirth.test.d.ts +1 -0
  238. package/lib/src/molecules/DateOfBirth/DateOfBirth.tokens.d.ts +6 -0
  239. package/lib/src/molecules/DateOfBirth/DateOfBirth.types.d.ts +13 -0
  240. package/lib/src/molecules/DateOfBirth/index.d.ts +3 -0
  241. package/lib/src/molecules/DatePicker/DatePicker.d.ts +2 -0
  242. package/lib/src/molecules/DatePicker/DatePicker.stories.d.ts +8 -0
  243. package/lib/src/molecules/DatePicker/DatePicker.test.d.ts +1 -0
  244. package/lib/src/molecules/DatePicker/DatePicker.tokens.d.ts +57 -0
  245. package/lib/src/molecules/DatePicker/DatePicker.types.d.ts +18 -0
  246. package/lib/src/molecules/DatePicker/index.d.ts +3 -0
  247. package/lib/src/molecules/DeleteMessage/DeleteMessage.d.ts +2 -0
  248. package/lib/src/molecules/DeleteMessage/DeleteMessage.stories.d.ts +6 -0
  249. package/lib/src/molecules/DeleteMessage/DeleteMessage.test.d.ts +1 -0
  250. package/lib/src/molecules/DeleteMessage/DeleteMessage.tokens.d.ts +9 -0
  251. package/lib/src/molecules/DeleteMessage/DeleteMessage.types.d.ts +13 -0
  252. package/lib/src/molecules/DeleteMessage/index.d.ts +3 -0
  253. package/lib/src/molecules/DragAndDrop/DragAndDrop.d.ts +2 -0
  254. package/lib/src/molecules/DragAndDrop/DragAndDrop.stories.d.ts +14 -0
  255. package/lib/src/molecules/DragAndDrop/DragAndDrop.test.d.ts +1 -0
  256. package/lib/src/molecules/DragAndDrop/DragAndDrop.tokens.d.ts +2 -0
  257. package/lib/src/molecules/DragAndDrop/DragAndDrop.types.d.ts +19 -0
  258. package/lib/src/molecules/DragAndDrop/index.d.ts +3 -0
  259. package/lib/src/molecules/Dropdown/Dropdown.d.ts +3 -0
  260. package/lib/src/molecules/Dropdown/Dropdown.stories.d.ts +6 -0
  261. package/lib/src/molecules/Dropdown/Dropdown.test.d.ts +1 -0
  262. package/lib/src/molecules/Dropdown/Dropdown.tokens.d.ts +13 -0
  263. package/lib/src/molecules/Dropdown/Dropdown.types.d.ts +20 -0
  264. package/lib/src/molecules/Dropdown/index.d.ts +3 -0
  265. package/lib/src/molecules/FileUploader/FileUploader.d.ts +2 -0
  266. package/lib/src/molecules/FileUploader/FileUploader.stories.d.ts +7 -0
  267. package/lib/src/molecules/FileUploader/FileUploader.test.d.ts +1 -0
  268. package/lib/src/molecules/FileUploader/FileUploader.tokens.d.ts +19 -0
  269. package/lib/src/molecules/FileUploader/FileUploader.types.d.ts +18 -0
  270. package/lib/src/molecules/FileUploader/index.d.ts +3 -0
  271. package/lib/src/molecules/FilterTable/FilterTable.d.ts +2 -0
  272. package/lib/src/molecules/FilterTable/FilterTable.stories.d.ts +8 -0
  273. package/lib/src/molecules/FilterTable/FilterTable.test.d.ts +1 -0
  274. package/lib/src/molecules/FilterTable/FilterTable.tokens.d.ts +19 -0
  275. package/lib/src/molecules/FilterTable/FilterTable.types.d.ts +35 -0
  276. package/lib/src/molecules/FilterTable/index.d.ts +3 -0
  277. package/lib/src/molecules/IconTitle/IconTitle.d.ts +2 -0
  278. package/lib/src/molecules/IconTitle/IconTitle.stories.d.ts +6 -0
  279. package/lib/src/molecules/IconTitle/IconTitle.test.d.ts +1 -0
  280. package/lib/src/molecules/IconTitle/IconTitle.tokens.d.ts +5 -0
  281. package/lib/src/molecules/IconTitle/IconTitle.types.d.ts +20 -0
  282. package/lib/src/molecules/IconTitle/index.d.ts +3 -0
  283. package/lib/src/molecules/InputGroup/InputGroup.d.ts +2 -0
  284. package/lib/src/molecules/InputGroup/InputGroup.stories.d.ts +11 -0
  285. package/lib/src/molecules/InputGroup/InputGroup.test.d.ts +1 -0
  286. package/lib/src/molecules/InputGroup/InputGroup.tokens.d.ts +34 -0
  287. package/lib/src/molecules/InputGroup/InputGroup.types.d.ts +34 -0
  288. package/lib/src/molecules/InputGroup/index.d.ts +3 -0
  289. package/lib/src/molecules/LabelWithValue/LabelWithValue.d.ts +2 -0
  290. package/lib/src/molecules/LabelWithValue/LabelWithValue.stories.d.ts +5 -0
  291. package/lib/src/molecules/LabelWithValue/LabelWithValue.test.d.ts +1 -0
  292. package/lib/src/molecules/LabelWithValue/LabelWithValue.tokens.d.ts +4 -0
  293. package/lib/src/molecules/LabelWithValue/LabelWithValue.types.d.ts +12 -0
  294. package/lib/src/molecules/LabelWithValue/index.d.ts +3 -0
  295. package/lib/src/molecules/Languages/Languages.d.ts +2 -0
  296. package/lib/src/molecules/Languages/Languages.stories.d.ts +5 -0
  297. package/lib/src/molecules/Languages/Languages.test.d.ts +1 -0
  298. package/lib/src/molecules/Languages/Languages.tokens.d.ts +4 -0
  299. package/lib/src/molecules/Languages/Languages.types.d.ts +23 -0
  300. package/lib/src/molecules/Languages/index.d.ts +3 -0
  301. package/lib/src/molecules/Link/Link.d.ts +2 -0
  302. package/lib/src/molecules/Link/Link.stories.d.ts +7 -0
  303. package/lib/src/molecules/Link/Link.test.d.ts +1 -0
  304. package/lib/src/molecules/Link/Link.tokens.d.ts +9 -0
  305. package/lib/src/molecules/Link/Link.types.d.ts +15 -0
  306. package/lib/src/molecules/Link/index.d.ts +3 -0
  307. package/lib/src/molecules/MessageSettings/MessageSettings.d.ts +2 -0
  308. package/lib/src/molecules/MessageSettings/MessageSettings.stories.d.ts +5 -0
  309. package/lib/src/molecules/MessageSettings/MessageSettings.test.d.ts +1 -0
  310. package/lib/src/molecules/MessageSettings/MessageSettings.tokens.d.ts +13 -0
  311. package/lib/src/molecules/MessageSettings/MessageSettings.types.d.ts +21 -0
  312. package/lib/src/molecules/MessageSettings/MessageSettings.utils.d.ts +2 -0
  313. package/lib/src/molecules/MessageSettings/index.d.ts +3 -0
  314. package/lib/src/molecules/MultiSelect/MultiSelect.d.ts +2 -0
  315. package/lib/src/molecules/MultiSelect/MultiSelect.stories.d.ts +7 -0
  316. package/lib/src/molecules/MultiSelect/MultiSelect.test.d.ts +1 -0
  317. package/lib/src/molecules/MultiSelect/MultiSelect.tokens.d.ts +2 -0
  318. package/lib/src/molecules/MultiSelect/MultiSelect.types.d.ts +60 -0
  319. package/lib/src/molecules/MultiSelect/index.d.ts +3 -0
  320. package/lib/src/molecules/NavButton/NavButton.d.ts +2 -0
  321. package/lib/src/molecules/NavButton/NavButton.stories.d.ts +9 -0
  322. package/lib/src/molecules/NavButton/NavButton.test.d.ts +1 -0
  323. package/lib/src/molecules/NavButton/NavButton.tokens.d.ts +15 -0
  324. package/lib/src/molecules/NavButton/NavButton.types.d.ts +26 -0
  325. package/lib/src/molecules/NavButton/index.d.ts +3 -0
  326. package/lib/src/molecules/Pagination/Pagination.d.ts +2 -0
  327. package/lib/src/molecules/Pagination/Pagination.stories.d.ts +7 -0
  328. package/lib/src/molecules/Pagination/Pagination.test.d.ts +1 -0
  329. package/lib/src/molecules/Pagination/Pagination.tokens.d.ts +28 -0
  330. package/lib/src/molecules/Pagination/Pagination.types.d.ts +16 -0
  331. package/lib/src/molecules/Pagination/Pagination.utils.d.ts +1 -0
  332. package/lib/src/molecules/Pagination/index.d.ts +3 -0
  333. package/lib/src/molecules/PasswordInput/PasswordInput.d.ts +2 -0
  334. package/lib/src/molecules/PasswordInput/PasswordInput.stories.d.ts +12 -0
  335. package/lib/src/molecules/PasswordInput/PasswordInput.test.d.ts +1 -0
  336. package/lib/src/molecules/PasswordInput/PasswordInput.tokens.d.ts +2 -0
  337. package/lib/src/molecules/PasswordInput/PasswordInput.types.d.ts +19 -0
  338. package/lib/src/molecules/PasswordInput/index.d.ts +3 -0
  339. package/lib/src/molecules/PaymentCard/PaymentCard.d.ts +2 -0
  340. package/lib/src/molecules/PaymentCard/PaymentCard.stories.d.ts +5 -0
  341. package/lib/src/molecules/PaymentCard/PaymentCard.test.d.ts +1 -0
  342. package/lib/src/molecules/PaymentCard/PaymentCard.tokens.d.ts +20 -0
  343. package/lib/src/molecules/PaymentCard/PaymentCard.types.d.ts +19 -0
  344. package/lib/src/molecules/PaymentCard/index.d.ts +3 -0
  345. package/lib/src/molecules/PhoneInput/PhoneInput.d.ts +2 -0
  346. package/lib/src/molecules/PhoneInput/PhoneInput.stories.d.ts +10 -0
  347. package/lib/src/molecules/PhoneInput/PhoneInput.test.d.ts +1 -0
  348. package/lib/src/molecules/PhoneInput/PhoneInput.tokens.d.ts +2 -0
  349. package/lib/src/molecules/PhoneInput/PhoneInput.types.d.ts +27 -0
  350. package/lib/src/molecules/PhoneInput/index.d.ts +3 -0
  351. package/lib/src/molecules/Plate/Plate.d.ts +4 -0
  352. package/lib/src/molecules/Plate/Plate.stories.d.ts +7 -0
  353. package/lib/src/molecules/Plate/Plate.test.d.ts +1 -0
  354. package/lib/src/molecules/Plate/Plate.tokens.d.ts +2 -0
  355. package/lib/src/molecules/Plate/Plate.types.d.ts +36 -0
  356. package/lib/src/molecules/Plate/index.d.ts +3 -0
  357. package/lib/src/molecules/RadioGroup/RadioGroup.d.ts +11 -0
  358. package/lib/src/molecules/RadioGroup/RadioGroup.stories.d.ts +7 -0
  359. package/lib/src/molecules/RadioGroup/RadioGroup.test.d.ts +1 -0
  360. package/lib/src/molecules/RadioGroup/RadioGroup.tokens.d.ts +13 -0
  361. package/lib/src/molecules/RadioGroup/RadioGroup.types.d.ts +14 -0
  362. package/lib/src/molecules/RadioGroup/index.d.ts +3 -0
  363. package/lib/src/molecules/SearchInput/SearchInput.d.ts +22 -0
  364. package/lib/src/molecules/SearchInput/SearchInput.stories.d.ts +7 -0
  365. package/lib/src/molecules/SearchInput/SearchInput.test.d.ts +1 -0
  366. package/lib/src/molecules/SearchInput/SearchInput.tokens.d.ts +42 -0
  367. package/lib/src/molecules/SearchInput/SearchInput.types.d.ts +38 -0
  368. package/lib/src/molecules/SearchInput/index.d.ts +3 -0
  369. package/lib/src/molecules/SelectGroup/SelectGroup.d.ts +2 -0
  370. package/lib/src/molecules/SelectGroup/SelectGroup.stories.d.ts +6 -0
  371. package/lib/src/molecules/SelectGroup/SelectGroup.test.d.ts +1 -0
  372. package/lib/src/molecules/SelectGroup/SelectGroup.tokens.d.ts +3 -0
  373. package/lib/src/molecules/SelectGroup/SelectGroup.types.d.ts +12 -0
  374. package/lib/src/molecules/SelectGroup/index.d.ts +3 -0
  375. package/lib/src/molecules/SelectList/SelectList.d.ts +2 -0
  376. package/lib/src/molecules/SelectList/SelectList.stories.d.ts +7 -0
  377. package/lib/src/molecules/SelectList/SelectList.test.d.ts +1 -0
  378. package/lib/src/molecules/SelectList/SelectList.tokens.d.ts +29 -0
  379. package/lib/src/molecules/SelectList/SelectList.types.d.ts +20 -0
  380. package/lib/src/molecules/SelectList/index.d.ts +3 -0
  381. package/lib/src/molecules/ServiceOrders/ServiceOrders.d.ts +2 -0
  382. package/lib/src/molecules/ServiceOrders/ServiceOrders.data.d.ts +2 -0
  383. package/lib/src/molecules/ServiceOrders/ServiceOrders.stories.d.ts +5 -0
  384. package/lib/src/molecules/ServiceOrders/ServiceOrders.test.d.ts +1 -0
  385. package/lib/src/molecules/ServiceOrders/ServiceOrders.tokens.d.ts +11 -0
  386. package/lib/src/molecules/ServiceOrders/ServiceOrders.types.d.ts +19 -0
  387. package/lib/src/molecules/ServiceOrders/index.d.ts +3 -0
  388. package/lib/src/molecules/Sidebar/Sidebar.d.ts +2 -0
  389. package/lib/src/molecules/Sidebar/Sidebar.data.d.ts +2 -0
  390. package/lib/src/molecules/Sidebar/Sidebar.stories.d.ts +7 -0
  391. package/lib/src/molecules/Sidebar/Sidebar.test.d.ts +1 -0
  392. package/lib/src/molecules/Sidebar/Sidebar.tokens.d.ts +12 -0
  393. package/lib/src/molecules/Sidebar/Sidebar.types.d.ts +20 -0
  394. package/lib/src/molecules/Sidebar/Sidebar.utils.d.ts +2 -0
  395. package/lib/src/molecules/Sidebar/index.d.ts +3 -0
  396. package/lib/src/molecules/StatusSelect/StatusSelect.d.ts +2 -0
  397. package/lib/src/molecules/StatusSelect/StatusSelect.stories.d.ts +5 -0
  398. package/lib/src/molecules/StatusSelect/StatusSelect.test.d.ts +1 -0
  399. package/lib/src/molecules/StatusSelect/StatusSelect.tokens.d.ts +28 -0
  400. package/lib/src/molecules/StatusSelect/StatusSelect.types.d.ts +25 -0
  401. package/lib/src/molecules/StatusSelect/index.d.ts +3 -0
  402. package/lib/src/molecules/Stepper/Stepper.d.ts +2 -0
  403. package/lib/src/molecules/Stepper/Stepper.stories.d.ts +8 -0
  404. package/lib/src/molecules/Stepper/Stepper.test.d.ts +1 -0
  405. package/lib/src/molecules/Stepper/Stepper.tokens.d.ts +21 -0
  406. package/lib/src/molecules/Stepper/Stepper.types.d.ts +33 -0
  407. package/lib/src/molecules/Stepper/index.d.ts +3 -0
  408. package/lib/src/molecules/TabGroup/TabGroup.d.ts +3 -0
  409. package/lib/src/molecules/TabGroup/TabGroup.stories.d.ts +6 -0
  410. package/lib/src/molecules/TabGroup/TabGroup.test.d.ts +1 -0
  411. package/lib/src/molecules/TabGroup/TabGroup.tokens.d.ts +26 -0
  412. package/lib/src/molecules/TabGroup/TabGroup.types.d.ts +33 -0
  413. package/lib/src/molecules/TabGroup/TabGroup.utils.d.ts +2 -0
  414. package/lib/src/molecules/TabGroup/index.d.ts +3 -0
  415. package/lib/src/molecules/TabSwitch/TabSwitch.d.ts +3 -0
  416. package/lib/src/molecules/TabSwitch/TabSwitch.stories.d.ts +5 -0
  417. package/lib/src/molecules/TabSwitch/TabSwitch.test.d.ts +1 -0
  418. package/lib/src/molecules/TabSwitch/TabSwitch.tokens.d.ts +10 -0
  419. package/lib/src/molecules/TabSwitch/TabSwitch.types.d.ts +28 -0
  420. package/lib/src/molecules/TabSwitch/TabSwitch.utils.d.ts +2 -0
  421. package/lib/src/molecules/TabSwitch/index.d.ts +3 -0
  422. package/lib/src/molecules/Table/Table.d.ts +2 -0
  423. package/lib/src/molecules/Table/Table.stories.d.ts +5 -0
  424. package/lib/src/molecules/Table/Table.test.d.ts +1 -0
  425. package/lib/src/molecules/Table/Table.tokens.d.ts +14 -0
  426. package/lib/src/molecules/Table/Table.types.d.ts +18 -0
  427. package/lib/src/molecules/Table/index.d.ts +3 -0
  428. package/lib/src/molecules/Table/mocks/data.d.ts +15 -0
  429. package/lib/src/molecules/TextareaGroup/TextareaGroup.d.ts +2 -0
  430. package/lib/src/molecules/TextareaGroup/TextareaGroup.stories.d.ts +8 -0
  431. package/lib/src/molecules/TextareaGroup/TextareaGroup.test.d.ts +1 -0
  432. package/lib/src/molecules/TextareaGroup/TextareaGroup.tokens.d.ts +2 -0
  433. package/lib/src/molecules/TextareaGroup/TextareaGroup.types.d.ts +13 -0
  434. package/lib/src/molecules/TextareaGroup/index.d.ts +3 -0
  435. package/lib/src/molecules/ToggleGroup/ToggleGroup.d.ts +2 -0
  436. package/lib/src/molecules/ToggleGroup/ToggleGroup.stories.d.ts +9 -0
  437. package/lib/src/molecules/ToggleGroup/ToggleGroup.test.d.ts +1 -0
  438. package/lib/src/molecules/ToggleGroup/ToggleGroup.types.d.ts +12 -0
  439. package/lib/src/molecules/ToggleGroup/ToogleGroup.tokens.d.ts +3 -0
  440. package/lib/src/molecules/ToggleGroup/index.d.ts +3 -0
  441. package/lib/src/molecules/UploadInput/UploadInput.d.ts +18 -0
  442. package/lib/src/molecules/UploadInput/UploadInput.stories.d.ts +8 -0
  443. package/lib/src/molecules/UploadInput/UploadInput.test.d.ts +1 -0
  444. package/lib/src/molecules/UploadInput/UploadInput.tokens.d.ts +17 -0
  445. package/lib/src/molecules/UploadInput/UploadInput.types.d.ts +30 -0
  446. package/lib/src/molecules/UploadInput/UploadInput.utils.d.ts +3 -0
  447. package/lib/src/molecules/UploadInput/index.d.ts +3 -0
  448. package/lib/src/molecules/UserContact/UserContact.d.ts +2 -0
  449. package/lib/src/molecules/UserContact/UserContact.stories.d.ts +8 -0
  450. package/lib/src/molecules/UserContact/UserContact.test.d.ts +1 -0
  451. package/lib/src/molecules/UserContact/UserContact.tokens.d.ts +10 -0
  452. package/lib/src/molecules/UserContact/UserContact.types.d.ts +15 -0
  453. package/lib/src/molecules/UserContact/index.d.ts +3 -0
  454. package/lib/src/molecules/index.d.ts +49 -0
  455. package/lib/src/tokens/colors.d.ts +2 -0
  456. package/lib/src/tokens/index.d.ts +3 -0
  457. package/lib/src/tokens/types.d.ts +36 -0
  458. package/lib/src/tokens/typography.d.ts +2 -0
  459. package/lib/src/utils/date.d.ts +1 -0
  460. package/lib/src/utils/index.d.ts +2 -0
  461. package/lib/src/utils/twMerge.d.ts +7 -0
  462. package/lib/tokens/index.js +248 -0
  463. package/lib/utils/index.js +11 -0
  464. package/lib/vite.config.d.ts +2 -0
  465. package/package.json +163 -0
@@ -0,0 +1,16 @@
1
+ import { useEffect as o } from "react";
2
+ const r = (e, t) => {
3
+ o(() => {
4
+ const d = (n) => {
5
+ e.current && !e.current.contains(n.target) && t();
6
+ }, c = (n) => {
7
+ n.key === "Escape" && t();
8
+ };
9
+ return document.addEventListener("mousedown", d), document.addEventListener("keydown", c), () => {
10
+ document.removeEventListener("mousedown", d), document.removeEventListener("keydown", c);
11
+ };
12
+ }, [e, t]);
13
+ };
14
+ export {
15
+ r as u
16
+ };
@@ -0,0 +1,15 @@
1
+ import { useState as r, useEffect as s } from "react";
2
+ const m = (e, t) => {
3
+ const [o, u] = r(e);
4
+ return s(() => {
5
+ const n = setTimeout(() => {
6
+ u(e);
7
+ }, t);
8
+ return () => {
9
+ clearTimeout(n);
10
+ };
11
+ }, [e, t]), o;
12
+ };
13
+ export {
14
+ m as u
15
+ };
@@ -0,0 +1,8 @@
1
+ import { useCallback as a } from "react";
2
+ const l = (e) => a(
3
+ (r) => e.find((u) => u.value === r),
4
+ [e]
5
+ );
6
+ export {
7
+ l as u
8
+ };
@@ -0,0 +1,15 @@
1
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
2
+ import * as React from 'react';
3
+ export declare const Accordion: React.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React.RefAttributes<HTMLDivElement>>;
4
+ export declare const AccordionItem: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
5
+ type AccordionIcon = {
6
+ icon?: {
7
+ width?: number;
8
+ height?: number;
9
+ viewBox?: string;
10
+ className?: string;
11
+ };
12
+ };
13
+ export declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & AccordionIcon & React.RefAttributes<HTMLButtonElement>>;
14
+ export declare const AccordionContent: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
15
+ export {};
@@ -0,0 +1,27 @@
1
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
2
+ import * as React from 'react';
3
+ declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
4
+ declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
5
+ declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
6
+ declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
7
+ declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
8
+ declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
9
+ declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
10
+ inset?: boolean;
11
+ } & React.RefAttributes<HTMLDivElement>>;
12
+ declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
13
+ declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
14
+ declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
15
+ inset?: boolean;
16
+ } & React.RefAttributes<HTMLDivElement>>;
17
+ declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
18
+ declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
19
+ declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
20
+ inset?: boolean;
21
+ } & React.RefAttributes<HTMLDivElement>>;
22
+ declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
23
+ declare const DropdownMenuShortcut: {
24
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
25
+ displayName: string;
26
+ };
27
+ export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuGroup, DropdownMenuPortal, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuRadioGroup, DropdownMenuRadioItem, };
@@ -0,0 +1,16 @@
1
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
2
+ import * as React from 'react';
3
+ export declare const Modal: React.FC<DialogPrimitive.DialogProps>;
4
+ export declare const ModalClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
5
+ export declare const ModalContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
6
+ isCloseIcon?: boolean;
7
+ headerIcon?: React.ReactNode;
8
+ classNames?: {
9
+ content?: string;
10
+ iconBackground?: string;
11
+ };
12
+ } & React.RefAttributes<HTMLDivElement>>;
13
+ export declare const ModalFooter: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
14
+ export declare const ModalTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
15
+ export declare const ModalHeader: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
16
+ export declare const ModalDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
@@ -0,0 +1,5 @@
1
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
2
+ import * as React from 'react';
3
+ export declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
4
+ export declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
5
+ export declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
3
+ export declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
4
+ export declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
5
+ export declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
6
+ export declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,5 @@
1
+ export * from './Accordion.utils';
2
+ export * from './Popover.utils';
3
+ export * from './Dropdown.utils';
4
+ export * from './Tab.utils';
5
+ export * from './Modal.utils';
@@ -0,0 +1,7 @@
1
+ export type OptionsProps = {
2
+ label: string;
3
+ value: string;
4
+ disabled?: boolean;
5
+ icon?: React.ReactNode;
6
+ description?: string;
7
+ };
@@ -0,0 +1,151 @@
1
+ import { default as AddHomeIcon } from './add-home.svg?react';
2
+ import { default as AddUserIcon } from './add-user.svg?react';
3
+ import { default as AdjustmentsIcon } from './adjustments.svg?react';
4
+ import { default as AnalyticsIcon } from './analytics.svg?react';
5
+ import { default as ArrowDownDownloadIcon } from './arrow-down-download.svg?react';
6
+ import { default as ArrowDownMiniIcon } from './arrow-down-mini.svg?react';
7
+ import { default as ArrowDownSmallIcon } from './arrow-down-small.svg?react';
8
+ import { default as ArrowDownIcon } from './arrow-down.svg?react';
9
+ import { default as ArrowUpIcon } from './arrow-up.svg?react';
10
+ import { default as ArrowIcon } from './arrow.svg?react';
11
+ import { default as AvatarIcon } from './avatar.svg?react';
12
+ import { default as BackIcon } from './back.svg?react';
13
+ import { default as BellIcon } from './bell.svg?react';
14
+ import { default as BotIcon } from './bot.svg?react';
15
+ import { default as BuildingIcon } from './building.svg?react';
16
+ import { default as BurgerIcon } from './burger.svg?react';
17
+ import { default as BurgerFilterIcon } from './burgerFilter.svg?react';
18
+ import { default as CalendarIcon } from './calendar.svg?react';
19
+ import { default as CameraMiniIcon } from './camera-mini.svg?react';
20
+ import { default as CameraServiceIcon } from './camera-service.svg?react';
21
+ import { default as CameraIcon } from './camera.svg?react';
22
+ import { default as CarMultipleIcon } from './car-multiple.svg?react';
23
+ import { default as CarbonFilterIcon } from './carbon-filter.svg?react';
24
+ import { default as CardIcon } from './card.svg?react';
25
+ import { default as ChatCheckIcon } from './chat-check.svg?react';
26
+ import { default as ChatMessageIcon } from './chat-message.svg?react';
27
+ import { default as ChatsIcon } from './chats.svg?react';
28
+ import { default as CheckDoubleIcon } from './check-double.svg?react';
29
+ import { default as CheckIcon } from './check.svg?react';
30
+ import { default as CheckMarkIcon } from './checkmark.svg?react';
31
+ import { default as CleaningServiceIcon } from './cleaning-service.svg?react';
32
+ import { default as CloseIcon } from './close.svg?react';
33
+ import { default as ColdWaterIcon } from './cold-water.svg?react';
34
+ import { default as CommentIcon } from './comment.svg?react';
35
+ import { default as ControlIcon } from './control.svg?react';
36
+ import { default as CreateGroupIcon } from './create-group.svg?react';
37
+ import { default as CrossProfileIcon } from './cross-profile.svg?react';
38
+ import { default as CrossIcon } from './cross.svg?react';
39
+ import { default as DangerIcon } from './danger-icon.svg?react';
40
+ import { default as DeleteIcon } from './delete.svg?react';
41
+ import { default as DocumentFillIcon } from './document-fill.svg?react';
42
+ import { default as DocumentTextIcon } from './document-text.svg?react';
43
+ import { default as DocumentIcon } from './document.svg?react';
44
+ import { default as DotableSettings } from './dotable-settings.svg?react';
45
+ import { default as DotListIcon } from './dotList.svg?react';
46
+ import { default as DoubleChatIcon } from './double-chat.svg?react';
47
+ import { default as DownloadIcon } from './download.svg?react';
48
+ import { default as DropDownIcon } from './dropDown.svg?react';
49
+ import { default as DropUpIcon } from './dropUp.svg?react';
50
+ import { default as EditPencilIcon } from './edit-pencil.svg?react';
51
+ import { default as EditIcon } from './edit.svg?react';
52
+ import { default as ElectricalEnergyIcon } from './electrical-energy.svg?react';
53
+ import { default as ElectricianSereviceIcon } from './electrician-service.svg?react';
54
+ import { default as EmailIcon } from './email.svg?react';
55
+ import { default as EmployeesIcon } from './employees.svg?react';
56
+ import { default as EmptyDoc } from './empty-doc.svg?react';
57
+ import { default as ExitIcon } from './exit.svg?react';
58
+ import { default as ExportIcon } from './export.svg?react';
59
+ import { default as EyeCardIcon } from './eye-card.svg?react';
60
+ import { default as EyeClosedIcon } from './eye-closed.svg?react';
61
+ import { default as EyeIcon } from './eye.svg?react';
62
+ import { default as FeedbacksIcon } from './feedbacks.svg?react';
63
+ import { default as FileReportIcon } from './file-report.svg?react';
64
+ import { default as FileUploadIcon } from './file-upload.svg?react';
65
+ import { default as FileIcon } from './file.svg?react';
66
+ import { default as FilterIcon } from './filter.svg?react';
67
+ import { default as FinanceIcon } from './finance.svg?react';
68
+ import { default as FireIcon } from './fire.svg?react';
69
+ import { default as FolderSolidIcon } from './folder-active.svg?react';
70
+ import { default as FolderHomeIcon } from './folder-home.svg?react';
71
+ import { default as FolderInputIcon } from './folder-input.svg?react';
72
+ import { default as FolderIcon } from './folder.svg?react';
73
+ import { default as FullFolderIcon } from './full-folder.svg?react';
74
+ import { default as GarbageIcon } from './garbage.svg?react';
75
+ import { default as GisHomeIcon } from './gis_home.svg?react';
76
+ import { default as GridIcon } from './grid.svg?react';
77
+ import { default as GroupUserIcon } from './group-user.svg?react';
78
+ import { default as HistoryBoldIcon } from './history-bold.svg?react';
79
+ import { default as HomeDotIcon } from './home-dot.svg?react';
80
+ import { default as HomeSuccessIcon } from './home-success.svg?react';
81
+ import { default as HomeIcon } from './home.svg?react';
82
+ import { default as HotWaterIcon } from './hot-water.svg?react';
83
+ import { default as HouseIcon } from './house.svg?react';
84
+ import { default as LeaveIcon } from './leave.svg?react';
85
+ import { default as LeftIcon } from './left.svg?react';
86
+ import { default as LinkDownloadIcon } from './link-download-icon.svg?react';
87
+ import { default as ListIcon } from './list.svg?react';
88
+ import { default as LoadIcon } from './load.svg?react';
89
+ import { default as LockIcon } from './lock.svg?react';
90
+ import { default as LogoWithTextIcon } from './logo-with-text.svg?react';
91
+ import { default as LogoutIcon } from './logout.svg?react';
92
+ import { default as MagnifyIcon } from './magnify.svg?react';
93
+ import { default as ManageObjectsIcon } from './manage-objects-icon.svg?react';
94
+ import { default as MapIcon } from './map.svg?react';
95
+ import { default as MenuDotsIcon } from './menu-dots-mini.svg?react';
96
+ import { default as MobileIcon } from './mobile-icon.svg?react';
97
+ import { default as ModalPlusIcon } from './modal-plus.svg?react';
98
+ import { default as NewsIcon } from './news.svg?react';
99
+ import { default as NotificationBellIcon } from './notification-bell.svg?react';
100
+ import { default as NotificationIcon } from './notification.svg?react';
101
+ import { default as OfficeIcon } from './office.svg?react';
102
+ import { default as OperatorIcon } from './operator.svg?react';
103
+ import { default as OptionsIcon } from './options.svg?react';
104
+ import { default as OrderDoneIcon } from './order-done.svg?react';
105
+ import { default as ParkingPlaceIcon } from './parking-place.svg?react';
106
+ import { default as ParkingIcon } from './parking.svg?react';
107
+ import { default as PdfFileIcon } from './pdf-file.svg?react';
108
+ import { default as PdfIcon } from './pdf.svg?react';
109
+ import { default as PencilIcon } from './pencil.svg?react';
110
+ import { default as PhoneIcon } from './phone.svg?react';
111
+ import { default as PickerLeftIcon } from './pickerLeft.svg?react';
112
+ import { default as PickerRightIcon } from './pickerRight.svg?react';
113
+ import { default as PlaneIcon } from './plane.svg?react';
114
+ import { default as PlumberServiceIcon } from './plumber-service.svg?react';
115
+ import { default as PlusInputIcon } from './plus-input.svg?react';
116
+ import { default as PlusIcon } from './plus.svg?react';
117
+ import { default as PrintIcon } from './print.svg?react';
118
+ import { default as RatingIcon } from './rating.svg?react';
119
+ import { default as RentServiceIcon } from './rent-service.svg?react';
120
+ import { default as RepairServiceIcon } from './repair-service.svg?react';
121
+ import { default as ReportIcon } from './report.svg?react';
122
+ import { default as ResponseArrowIcon } from './response-arrow.svg?react';
123
+ import { default as RightIcon } from './right.svg?react';
124
+ import { default as RoleSettingIcon } from './role-setting.svg?react';
125
+ import { default as RoundedCopyIcon } from './rounded-copy.svg?react';
126
+ import { default as ServiceManagementIcon } from './service-management.svg?react';
127
+ import { default as SettingIcon } from './setting.svg?react';
128
+ import { default as ShareIcon } from './share.svg?react';
129
+ import { default as SolarEyeIcon } from './solar-eye.svg?react';
130
+ import { default as StarIcon } from './star.svg?react';
131
+ import { default as StatusCheckIcon } from './statusCheck.svg?react';
132
+ import { default as StatusCloseIcon } from './statusClose.svg?react';
133
+ import { default as StatusInfoIcon } from './statusInfo.svg?react';
134
+ import { default as StatusWarningIcon } from './statusWarning.svg?react';
135
+ import { default as StepperReloadIcon } from './stepperReload.svg?react';
136
+ import { default as TelegramIcon } from './telegram.svg?react';
137
+ import { default as ThinPlusIcon } from './thinPlus.svg?react';
138
+ import { default as TimeLineIcon } from './time-line.svg?react';
139
+ import { default as TrashIcon } from './trash.svg?react';
140
+ import { default as UserProfileAvatarIcon } from './user-profile-avatar.svg?react';
141
+ import { default as UserSettingsIcon } from './user-settings.svg?react';
142
+ import { default as UserStarIcon } from './user-star.svg?react';
143
+ import { default as UserSuccesIcon } from './user-success.svg?react';
144
+ import { default as UserTimeIcon } from './user-time.svg?react';
145
+ import { default as UserIcon } from './user.svg?react';
146
+ import { default as UsersSettingsIcon } from './users-settings.svg?react';
147
+ import { default as UsersIcon } from './users.svg?react';
148
+ import { default as UtilityServiceIcon } from './utility-services.svg?react';
149
+ import { default as XmarkIcon } from './x-mark.svg?react';
150
+ import { default as LogoIcon } from '../images/logo.svg?react';
151
+ export { AddHomeIcon, AddUserIcon, AdjustmentsIcon, AnalyticsIcon, ArrowDownIcon, ArrowDownDownloadIcon, ArrowDownMiniIcon, ArrowDownSmallIcon, ArrowIcon, ArrowUpIcon, AvatarIcon, BackIcon, BellIcon, BotIcon, BuildingIcon, BurgerFilterIcon, BurgerIcon, CalendarIcon, CameraIcon, CameraMiniIcon, CameraServiceIcon, CarMultipleIcon, CarbonFilterIcon, CardIcon, ChatCheckIcon, ChatMessageIcon, CheckIcon, CheckDoubleIcon, ChatsIcon, CheckMarkIcon, CleaningServiceIcon, CloseIcon, ColdWaterIcon, CommentIcon, ControlIcon, CreateGroupIcon, CrossIcon, CrossProfileIcon, DangerIcon, DeleteIcon, DocumentFillIcon, DocumentIcon, DocumentTextIcon, DotListIcon, DotableSettings, DoubleChatIcon, DownloadIcon, DropDownIcon, DropUpIcon, EditIcon, EditPencilIcon, ElectricianSereviceIcon, ElectricalEnergyIcon, EmailIcon, EmployeesIcon, EmptyDoc, ExitIcon, ExportIcon, EyeCardIcon, EyeClosedIcon, EyeIcon, FeedbacksIcon, FileIcon, FileReportIcon, FileUploadIcon, FilterIcon, FinanceIcon, FireIcon, FolderHomeIcon, FolderIcon, FolderInputIcon, FolderSolidIcon, FullFolderIcon, GarbageIcon, GisHomeIcon, GridIcon, GroupUserIcon, HistoryBoldIcon, HomeDotIcon, HomeIcon, HomeSuccessIcon, HotWaterIcon, HouseIcon, LogoIcon, LogoWithTextIcon, LeftIcon, LeaveIcon, LinkDownloadIcon, ListIcon, LoadIcon, LockIcon, LogoutIcon, MagnifyIcon, ManageObjectsIcon, MapIcon, MenuDotsIcon, ModalPlusIcon, MobileIcon, NewsIcon, NotificationBellIcon, NotificationIcon, OfficeIcon, OperatorIcon, OptionsIcon, OrderDoneIcon, ParkingIcon, ParkingPlaceIcon, PdfFileIcon, PdfIcon, PencilIcon, PhoneIcon, PickerLeftIcon, PickerRightIcon, PlaneIcon, PlusIcon, PlusInputIcon, PlumberServiceIcon, PrintIcon, RatingIcon, RentServiceIcon, RepairServiceIcon, ReportIcon, RightIcon, RoleSettingIcon, ResponseArrowIcon, RoundedCopyIcon, ServiceManagementIcon, SettingIcon, ShareIcon, SolarEyeIcon, StarIcon, StatusCheckIcon, StatusCloseIcon, StatusInfoIcon, StatusWarningIcon, StepperReloadIcon, TelegramIcon, ThinPlusIcon, TimeLineIcon, TrashIcon, UserIcon, UserStarIcon, UserSuccesIcon, UserTimeIcon, UserProfileAvatarIcon, UserSettingsIcon, UsersIcon, UsersSettingsIcon, UtilityServiceIcon, XmarkIcon, };
@@ -0,0 +1,11 @@
1
+ import { default as AvatarPhoto } from './avatar-photo.svg';
2
+ import { default as Botim } from './botim.svg';
3
+ import { default as ChatCardIcon } from './chat-card.svg';
4
+ import { default as Comera } from './comera.svg';
5
+ import { default as Imo } from './imo.svg';
6
+ import { default as Logo } from './logo.svg';
7
+ import { default as ProfilePhoto } from './profile-photo.svg';
8
+ import { default as Telegram } from './telegram.svg';
9
+ import { default as Wechat } from './wechat.svg';
10
+ import { default as WhatsApp } from './whatApp.svg';
11
+ export { AvatarPhoto, ChatCardIcon, ProfilePhoto, Botim, Comera, Imo, Telegram, Wechat, WhatsApp, Logo, };
@@ -0,0 +1,2 @@
1
+ import { AvatarProps } from '..';
2
+ export declare const Avatar: ({ imageSrc, alt, hasBadge, iconSize, isActive, isHasCamera, classNames, }: AvatarProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { Meta } from '@storybook/react';
2
+ import { Avatar, AvatarStory } from '..';
3
+ declare const meta: Meta<typeof Avatar>;
4
+ export declare const Default: AvatarStory;
5
+ export declare const WithPhotoOnly: AvatarStory;
6
+ export declare const WithBadgeOnly: AvatarStory;
7
+ export declare const WithPhotoAndBadge: AvatarStory;
8
+ export declare const ActivePhotoAndBadge: AvatarStory;
9
+ export default meta;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ export declare const avatarIconTokens: {
2
+ root: string;
3
+ image: string;
4
+ badge: {
5
+ wrapper: string;
6
+ };
7
+ active: string;
8
+ };
@@ -0,0 +1,24 @@
1
+ import { StoryObj } from '@storybook/react';
2
+ import { Avatar } from './Avatar';
3
+ export type AvatarStory = StoryObj<typeof Avatar>;
4
+ export type AvatarClassNames = {
5
+ wrapper?: string;
6
+ img?: string;
7
+ fallbackIcon?: string;
8
+ badge?: string;
9
+ badgeIcon?: string;
10
+ };
11
+ export type AvatarIconSize = {
12
+ width?: number;
13
+ height?: number;
14
+ viewBox?: string;
15
+ };
16
+ export type AvatarProps = {
17
+ imageSrc?: string;
18
+ alt?: string;
19
+ hasBadge?: boolean;
20
+ iconSize?: AvatarIconSize;
21
+ classNames?: AvatarClassNames;
22
+ isActive?: boolean;
23
+ isHasCamera?: boolean;
24
+ };
@@ -0,0 +1,3 @@
1
+ export { Avatar } from './Avatar';
2
+ export * from './Avatar.tokens';
3
+ export type * from './Avatar.types';
@@ -0,0 +1,16 @@
1
+ export declare const Button: import('react').ForwardRefExoticComponent<import('react').ButtonHTMLAttributes<HTMLButtonElement> & {
2
+ variant?: import('..').ButtonVariant;
3
+ size?: import('..').ButtonSize;
4
+ icon?: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
5
+ iconDimensions?: {
6
+ height?: number;
7
+ width?: number;
8
+ viewBox?: string;
9
+ };
10
+ iconPosition?: "left" | "right";
11
+ isShadow?: boolean;
12
+ classNames?: {
13
+ base?: string;
14
+ icon?: string;
15
+ };
16
+ } & import('react').RefAttributes<HTMLButtonElement>>;
@@ -0,0 +1,8 @@
1
+ import { Meta } from '@storybook/react-vite';
2
+ import { Button, ButtonStory } from '..';
3
+ declare const meta: Meta<typeof Button>;
4
+ export declare const Primary: ButtonStory;
5
+ export declare const PrimaryNoIcon: ButtonStory;
6
+ export declare const Secondary: ButtonStory;
7
+ export declare const TextButton: ButtonStory;
8
+ export default meta;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,52 @@
1
+ export declare const buttonTokens: {
2
+ base: string;
3
+ icon: {
4
+ disabled: {
5
+ primary: string;
6
+ secondary: string;
7
+ text: string;
8
+ };
9
+ parent: string;
10
+ variants: {
11
+ primary: string;
12
+ secondary: string;
13
+ text: string;
14
+ };
15
+ };
16
+ sizes: {
17
+ medium: {
18
+ fontSize: string;
19
+ padding: string;
20
+ };
21
+ };
22
+ badgeStyles: {
23
+ base: string;
24
+ badgeStyles: string;
25
+ };
26
+ shape: {
27
+ circle: string;
28
+ };
29
+ variants: {
30
+ primary: {
31
+ active: string;
32
+ base: string;
33
+ disabled: string;
34
+ focus: string;
35
+ hover: string;
36
+ };
37
+ secondary: {
38
+ active: string;
39
+ base: string;
40
+ disabled: string;
41
+ focus: string;
42
+ hover: string;
43
+ };
44
+ text: {
45
+ active: string;
46
+ base: string;
47
+ disabled: string;
48
+ focus: string;
49
+ hover: string;
50
+ };
51
+ };
52
+ };
@@ -0,0 +1,23 @@
1
+ import { StoryObj } from '@storybook/react';
2
+ import { ButtonHTMLAttributes, FunctionComponent, SVGProps } from 'react';
3
+ import { Button } from './Button';
4
+ import { buttonTokens } from './Button.tokens';
5
+ export type ButtonStory = StoryObj<typeof Button>;
6
+ export type ButtonVariant = keyof (typeof buttonTokens)['variants'];
7
+ export type ButtonSize = keyof (typeof buttonTokens)['sizes'];
8
+ export type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
9
+ variant?: ButtonVariant;
10
+ size?: ButtonSize;
11
+ icon?: FunctionComponent<SVGProps<SVGSVGElement>>;
12
+ iconDimensions?: {
13
+ height?: number;
14
+ width?: number;
15
+ viewBox?: string;
16
+ };
17
+ iconPosition?: 'left' | 'right';
18
+ isShadow?: boolean;
19
+ classNames?: {
20
+ base?: string;
21
+ icon?: string;
22
+ };
23
+ };
@@ -0,0 +1,3 @@
1
+ export { Button } from './Button';
2
+ export * from './Button.tokens';
3
+ export type * from './Button.types';
@@ -0,0 +1,5 @@
1
+ export declare const Checkbox: import('react').ForwardRefExoticComponent<Omit<import('react').InputHTMLAttributes<HTMLInputElement>, "size"> & {
2
+ id: string;
3
+ size?: import('..').CheckboxSize;
4
+ disabled?: boolean;
5
+ } & import('react').RefAttributes<HTMLInputElement>>;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { Checkbox } from '..';
3
+ type Story = StoryObj<typeof Checkbox>;
4
+ declare const meta: Meta<typeof Checkbox>;
5
+ export declare const Default: Story;
6
+ export declare const Checked: Story;
7
+ export declare const Disabled: Story;
8
+ export default meta;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,18 @@
1
+ export declare const checkboxTokens: {
2
+ active: string;
3
+ base: string;
4
+ checked: string;
5
+ disabled: string;
6
+ hover: string;
7
+ sizes: {
8
+ large: {
9
+ label: string;
10
+ };
11
+ medium: {
12
+ label: string;
13
+ };
14
+ small: {
15
+ label: string;
16
+ };
17
+ };
18
+ };
@@ -0,0 +1,7 @@
1
+ import { checkboxTokens } from '..';
2
+ export type CheckboxSize = keyof (typeof checkboxTokens)['sizes'];
3
+ export type CheckboxProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> & {
4
+ id: string;
5
+ size?: CheckboxSize;
6
+ disabled?: boolean;
7
+ };
@@ -0,0 +1,3 @@
1
+ export { Checkbox } from './Checkbox';
2
+ export * from './Checkbox.tokens';
3
+ export type * from './Checkbox.types';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { HeadlineProps } from '..';
3
+ export declare const Headline: React.FC<HeadlineProps>;
@@ -0,0 +1,8 @@
1
+ import { Meta } from '@storybook/react-vite';
2
+ import { Headline } from './Headline';
3
+ import { HeadlineStory } from './Headline.types';
4
+ declare const meta: Meta<typeof Headline>;
5
+ export declare const Regular: HeadlineStory;
6
+ export declare const Medium: HeadlineStory;
7
+ export declare const Bold: HeadlineStory;
8
+ export default meta;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,13 @@
1
+ import { StoryObj } from '@storybook/react';
2
+ import { ReactNode } from 'react';
3
+ import { Headline } from './Headline';
4
+ import { FontWeightClass, TypographyTokens } from 'src/tokens/types';
5
+ export type HeadlineStory = StoryObj<typeof Headline>;
6
+ export type HeadlineVariant = keyof TypographyTokens['textStyles']['headings'];
7
+ export type HeadlineProps = {
8
+ children: ReactNode | string | null;
9
+ className?: string;
10
+ variant?: HeadlineVariant;
11
+ weight?: FontWeightClass;
12
+ onClick?: () => void;
13
+ };
@@ -0,0 +1,2 @@
1
+ export { Headline } from './Headline';
2
+ export type * from './Headline.types';
@@ -0,0 +1,13 @@
1
+ export declare const IconButton: import('react').ForwardRefExoticComponent<import('react').ButtonHTMLAttributes<HTMLButtonElement> & {
2
+ variant?: import('..').IconButtonVariant;
3
+ icon: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
4
+ shape: "circle" | "square";
5
+ badge?: number;
6
+ text?: string;
7
+ classNames?: import('..').IconButtonClassNames;
8
+ iconSizes?: {
9
+ height?: number;
10
+ width?: number;
11
+ viewBox?: string;
12
+ };
13
+ } & import('react').RefAttributes<HTMLButtonElement>>;
@@ -0,0 +1,9 @@
1
+ import { Meta } from '@storybook/react-vite';
2
+ import { IconButton, IconButtonStory } from '..';
3
+ declare const meta: Meta<typeof IconButton>;
4
+ export declare const Default: IconButtonStory;
5
+ export declare const Primary: IconButtonStory;
6
+ export declare const Text: IconButtonStory;
7
+ export declare const ButtonWithText: IconButtonStory;
8
+ export declare const PrimaryWithBadge: IconButtonStory;
9
+ export default meta;
@@ -0,0 +1 @@
1
+ export {};