infinity-forge 3.8.8 → 3.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (685) hide show
  1. package/dist/infinity-forge.css +0 -3
  2. package/dist/sites/fixed-components/header-link/versions/version-01/component.js +1 -1
  3. package/dist/sites/fixed-components/header-link/versions/version-01/component.js.map +1 -1
  4. package/dist/sites/hooks/use-social-links.js +4 -4
  5. package/dist/system/presentation/components/data/detail-card/component.js +1 -1
  6. package/dist/system/presentation/components/data/detail-card/component.js.map +1 -1
  7. package/dist/system/presentation/components/data/menu/components/menu-item/index.js +1 -1
  8. package/dist/system/presentation/components/data/menu/components/menu-item/index.js.map +1 -1
  9. package/dist/system/presentation/components/data/menu/modes/collapsed-menu/index.js +1 -1
  10. package/dist/system/presentation/components/data/menu/modes/collapsed-menu/index.js.map +1 -1
  11. package/dist/system/presentation/components/layout/header/components/search-modal/search-list/index.js +1 -1
  12. package/dist/system/presentation/hooks/ui/use-table/components/table/active-filters/index.js +3 -3
  13. package/dist/system/presentation/hooks/ui/use-table/components/table/filters/index.js +1 -1
  14. package/dist/system/presentation/hooks/ui/use-table/components/table/pagination/index.d.ts +1 -1
  15. package/dist/system/presentation/hooks/ui/use-table/components/table/pagination/index.js +7 -3
  16. package/dist/system/presentation/hooks/ui/use-table/components/table/pagination/index.js.map +1 -1
  17. package/dist/test/index.js +43 -4
  18. package/dist/test/index.js.map +1 -1
  19. package/dist/ui/components/breadcrumb/component.js +1 -1
  20. package/dist/ui/components/breadcrumb/component.js.map +1 -1
  21. package/dist/ui/components/form/date-picker/index.d.ts +5 -0
  22. package/dist/ui/components/form/date-picker/index.js +58 -0
  23. package/dist/ui/components/form/date-picker/index.js.map +1 -0
  24. package/dist/ui/components/form/date-picker/styles.d.ts +4 -0
  25. package/dist/ui/components/form/date-picker/styles.js +14 -0
  26. package/dist/ui/components/form/date-picker/styles.js.map +1 -0
  27. package/dist/ui/components/form/handler/form-handler/index.js +2 -3
  28. package/dist/ui/components/form/handler/form-handler/index.js.map +1 -1
  29. package/dist/ui/components/form/handler/interfaces.d.ts +2 -5
  30. package/dist/ui/components/form/index.d.ts +3 -0
  31. package/dist/ui/components/form/index.js +3 -0
  32. package/dist/ui/components/form/index.js.map +1 -1
  33. package/dist/ui/components/form/input-color/index.d.ts +2 -0
  34. package/dist/ui/components/form/input-color/index.js +35 -0
  35. package/dist/ui/components/form/input-color/index.js.map +1 -0
  36. package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.d.ts +5 -0
  37. package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.js +45 -0
  38. package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.js.map +1 -0
  39. package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.style.d.ts +6 -0
  40. package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.style.js +52 -0
  41. package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.style.js.map +1 -0
  42. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.d.ts +10 -0
  43. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.js +45 -0
  44. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.js.map +1 -0
  45. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.style.d.ts +8 -0
  46. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.style.js +64 -0
  47. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.style.js.map +1 -0
  48. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.d.ts +13 -0
  49. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.js +109 -0
  50. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.js.map +1 -0
  51. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.style.d.ts +9 -0
  52. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.style.js +58 -0
  53. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.style.js.map +1 -0
  54. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/helper.d.ts +3 -0
  55. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/helper.js +55 -0
  56. package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/helper.js.map +1 -0
  57. package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.d.ts +7 -0
  58. package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.js +45 -0
  59. package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.js.map +1 -0
  60. package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.style.d.ts +4 -0
  61. package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.style.js +30 -0
  62. package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.style.js.map +1 -0
  63. package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.d.ts +16 -0
  64. package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.js +53 -0
  65. package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.js.map +1 -0
  66. package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.style.d.ts +5 -0
  67. package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.style.js +38 -0
  68. package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.style.js.map +1 -0
  69. package/dist/ui/components/form/input-color/react-input-color-lib/components/PresetList/PresetList.d.ts +8 -0
  70. package/dist/ui/components/form/input-color/react-input-color-lib/components/PresetList/PresetList.js +57 -0
  71. package/dist/ui/components/form/input-color/react-input-color-lib/components/PresetList/PresetList.js.map +1 -0
  72. package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.d.ts +7 -0
  73. package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.js +57 -0
  74. package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.js.map +1 -0
  75. package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.style.d.ts +5 -0
  76. package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.style.js +35 -0
  77. package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.style.js.map +1 -0
  78. package/dist/ui/components/form/input-color/react-input-color-lib/hooks/usePosition.d.ts +13 -0
  79. package/dist/ui/components/form/input-color/react-input-color-lib/hooks/usePosition.js +47 -0
  80. package/dist/ui/components/form/input-color/react-input-color-lib/hooks/usePosition.js.map +1 -0
  81. package/dist/ui/components/form/input-color/react-input-color-lib/index.d.ts +7 -0
  82. package/dist/ui/components/form/input-color/react-input-color-lib/index.js +14 -0
  83. package/dist/ui/components/form/input-color/react-input-color-lib/index.js.map +1 -0
  84. package/dist/ui/components/form/input-color/react-input-color-lib/themes.d.ts +7 -0
  85. package/dist/ui/components/form/input-color/react-input-color-lib/themes.js +24 -0
  86. package/dist/ui/components/form/input-color/react-input-color-lib/themes.js.map +1 -0
  87. package/dist/ui/components/form/input-color/react-input-color-lib/types.d.ts +39 -0
  88. package/dist/ui/components/form/input-color/react-input-color-lib/types.js +3 -0
  89. package/dist/ui/components/form/input-color/react-input-color-lib/types.js.map +1 -0
  90. package/dist/ui/components/form/input-control/index.d.ts +1 -1
  91. package/dist/ui/components/form/input-control/index.js +1 -1
  92. package/dist/ui/components/form/input-control/index.js.map +1 -1
  93. package/dist/ui/components/form/input-date-picker/calendar/calendar-header/index.d.ts +1 -1
  94. package/dist/ui/components/form/input-date-picker/calendar/calendar-header/index.js +6 -4
  95. package/dist/ui/components/form/input-date-picker/calendar/calendar-header/index.js.map +1 -1
  96. package/dist/ui/components/form/input-file/hooks/use-file-elements.js +3 -3
  97. package/dist/ui/components/form/input-file/hooks/use-file-elements.js.map +1 -1
  98. package/dist/ui/components/form/input-file/hooks/use-rendered-file.js +2 -2
  99. package/dist/ui/components/form/input-file/hooks/use-rendered-file.js.map +1 -1
  100. package/dist/ui/components/form/input-password/index.js +1 -1
  101. package/dist/ui/components/form/input-password/index.js.map +1 -1
  102. package/dist/ui/components/form/input-seo/index.js +0 -3
  103. package/dist/ui/components/form/input-seo/index.js.map +1 -1
  104. package/dist/ui/components/form/input-seo/input-meta-image/index.js +1 -1
  105. package/dist/ui/components/form/input-seo/input-meta-image/index.js.map +1 -1
  106. package/dist/ui/components/form/input-svg/index.js +1 -1
  107. package/dist/ui/components/form/input-svg/index.js.map +1 -1
  108. package/dist/ui/components/form/range-date-picker/index.d.ts +5 -0
  109. package/dist/ui/components/form/range-date-picker/index.js +61 -0
  110. package/dist/ui/components/form/range-date-picker/index.js.map +1 -0
  111. package/dist/ui/components/form/range-date-picker/styles.d.ts +4 -0
  112. package/dist/ui/components/form/range-date-picker/styles.js +14 -0
  113. package/dist/ui/components/form/range-date-picker/styles.js.map +1 -0
  114. package/dist/ui/components/form/select-icon/index.js +1 -1
  115. package/dist/ui/components/form/select-icon/index.js.map +1 -1
  116. package/dist/ui/components/menu-mobile/components/nav-links/index.js +2 -2
  117. package/dist/ui/components/menu-mobile/components/nav-links/index.js.map +1 -1
  118. package/dist/ui/components/modal/index.js +1 -1
  119. package/dist/ui/components/modal/index.js.map +1 -1
  120. package/dist/ui/components/pagination/index.d.ts +1 -1
  121. package/dist/ui/components/pagination/index.js +7 -3
  122. package/dist/ui/components/pagination/index.js.map +1 -1
  123. package/dist/ui/components/warning/index.js +1 -1
  124. package/dist/ui/components/warning/index.js.map +1 -1
  125. package/dist/ui/contexts/dynamic-sections/use-dynamic-section/edit-section.js +1 -1
  126. package/dist/ui/contexts/dynamic-sections/use-dynamic-section/edit-section.js.map +1 -1
  127. package/dist/ui/contexts/toast/toast-item/index.js +1 -1
  128. package/dist/ui/contexts/toast/toast-item/index.js.map +1 -1
  129. package/dist/ui/hooks/permitions/camera/use-camera.js +1 -1
  130. package/dist/ui/hooks/permitions/camera/use-camera.js.map +1 -1
  131. package/dist/ui/icons/index.d.ts +102 -111
  132. package/dist/ui/icons/index.js +102 -111
  133. package/dist/ui/icons/index.js.map +1 -1
  134. package/dist/ui/icons/interfaces.d.ts +1 -2
  135. package/dist/ui/icons/render/component.d.ts +3 -4
  136. package/dist/ui/icons/render/component.js +2 -2
  137. package/dist/ui/icons/render/component.js.map +1 -1
  138. package/dist/ui/icons/render/icon-Instagram.d.ts +3 -0
  139. package/dist/ui/icons/render/icon-Instagram.js +15 -0
  140. package/dist/ui/icons/render/icon-Instagram.js.map +1 -0
  141. package/dist/ui/icons/render/icon-Linkedin.d.ts +3 -0
  142. package/dist/ui/icons/render/icon-Linkedin.js +15 -0
  143. package/dist/ui/icons/render/icon-Linkedin.js.map +1 -0
  144. package/dist/ui/icons/render/{Close.d.ts → icon-Lupa.d.ts} +1 -1
  145. package/dist/ui/icons/render/icon-Lupa.js +10 -0
  146. package/dist/ui/icons/render/icon-Lupa.js.map +1 -0
  147. package/dist/ui/icons/render/{Lupa.d.ts → icon-Map.d.ts} +1 -1
  148. package/dist/ui/icons/render/{Map.js → icon-Map.js} +3 -3
  149. package/dist/ui/icons/render/icon-Map.js.map +1 -0
  150. package/dist/ui/icons/render/{send-message.d.ts → icon-Microphone.d.ts} +1 -1
  151. package/dist/ui/icons/render/{Microphone.js → icon-Microphone.js} +3 -3
  152. package/dist/ui/icons/render/icon-Microphone.js.map +1 -0
  153. package/dist/ui/icons/render/{Folder.d.ts → icon-Minus.d.ts} +1 -1
  154. package/dist/ui/icons/render/{Minus.js → icon-Minus.js} +3 -3
  155. package/dist/ui/icons/render/icon-Minus.js.map +1 -0
  156. package/dist/ui/icons/render/icon-Phone.d.ts +3 -0
  157. package/dist/ui/icons/render/icon-Phone.js +15 -0
  158. package/dist/ui/icons/render/icon-Phone.js.map +1 -0
  159. package/dist/ui/icons/render/icon-Pin.d.ts +4 -0
  160. package/dist/ui/icons/render/{Pin.js → icon-Pin.js} +7 -7
  161. package/dist/ui/icons/render/icon-Pin.js.map +1 -0
  162. package/dist/ui/icons/render/{Codie.d.ts → icon-Play.d.ts} +1 -1
  163. package/dist/ui/icons/render/icon-Play.js +10 -0
  164. package/dist/ui/icons/render/icon-Play.js.map +1 -0
  165. package/dist/ui/icons/render/{Checked.d.ts → icon-Plus.d.ts} +1 -1
  166. package/dist/ui/icons/render/icon-Plus.js +10 -0
  167. package/dist/ui/icons/render/icon-Plus.js.map +1 -0
  168. package/dist/ui/icons/render/{TikTok.d.ts → icon-Share.d.ts} +1 -1
  169. package/dist/ui/icons/render/icon-Share.js +10 -0
  170. package/dist/ui/icons/render/icon-Share.js.map +1 -0
  171. package/dist/ui/icons/render/{loading.d.ts → icon-TikTok.d.ts} +1 -1
  172. package/dist/ui/icons/render/icon-TikTok.js +10 -0
  173. package/dist/ui/icons/render/icon-TikTok.js.map +1 -0
  174. package/dist/ui/icons/render/{calendar.d.ts → icon-YouTube.d.ts} +1 -1
  175. package/dist/ui/icons/render/icon-YouTube.js +10 -0
  176. package/dist/ui/icons/render/icon-YouTube.js.map +1 -0
  177. package/dist/ui/icons/render/{chalet.d.ts → icon-block.d.ts} +1 -1
  178. package/dist/ui/icons/render/{block.js → icon-block.js} +3 -3
  179. package/dist/ui/icons/render/icon-block.js.map +1 -0
  180. package/dist/ui/icons/render/icon-bottom-chevron.d.ts +1 -0
  181. package/dist/ui/icons/render/icon-bottom-chevron.js +9 -0
  182. package/dist/ui/icons/render/icon-bottom-chevron.js.map +1 -0
  183. package/dist/ui/icons/render/{basic-right-arrow.d.ts → icon-bottom-navigation.d.ts} +1 -1
  184. package/dist/ui/icons/render/icon-bottom-navigation.js +10 -0
  185. package/dist/ui/icons/render/icon-bottom-navigation.js.map +1 -0
  186. package/dist/ui/icons/render/{Edit.d.ts → icon-box.d.ts} +1 -1
  187. package/dist/ui/icons/render/{box.js → icon-box.js} +3 -3
  188. package/dist/ui/icons/render/icon-box.js.map +1 -0
  189. package/dist/ui/icons/render/{arrow-bottom.d.ts → icon-calculator.d.ts} +1 -1
  190. package/dist/ui/icons/render/{calculator.js → icon-calculator.js} +3 -3
  191. package/dist/ui/icons/render/icon-calculator.js.map +1 -0
  192. package/dist/ui/icons/render/{arrow-foward-left.d.ts → icon-calendar-browse.d.ts} +1 -1
  193. package/dist/ui/icons/render/{calendar-browse.js → icon-calendar-browse.js} +3 -3
  194. package/dist/ui/icons/render/icon-calendar-browse.js.map +1 -0
  195. package/dist/ui/icons/render/{fullfield-bell.d.ts → icon-calendar-time.d.ts} +1 -1
  196. package/dist/ui/icons/render/icon-calendar-time.js +10 -0
  197. package/dist/ui/icons/render/icon-calendar-time.js.map +1 -0
  198. package/dist/ui/icons/render/icon-calendar.d.ts +1 -0
  199. package/dist/ui/icons/render/icon-calendar.js +9 -0
  200. package/dist/ui/icons/render/icon-calendar.js.map +1 -0
  201. package/dist/ui/icons/render/{File.d.ts → icon-cam.d.ts} +1 -1
  202. package/dist/ui/icons/render/icon-cam.js +10 -0
  203. package/dist/ui/icons/render/icon-cam.js.map +1 -0
  204. package/dist/ui/icons/render/{NavLeft.d.ts → icon-chalet.d.ts} +1 -1
  205. package/dist/ui/icons/render/{chalet.js → icon-chalet.js} +3 -3
  206. package/dist/ui/icons/render/icon-chalet.js.map +1 -0
  207. package/dist/ui/icons/render/{Globe.d.ts → icon-chat.d.ts} +1 -1
  208. package/dist/ui/icons/render/{chat.js → icon-chat.js} +3 -3
  209. package/dist/ui/icons/render/icon-chat.js.map +1 -0
  210. package/dist/ui/icons/render/{Microphone.d.ts → icon-check.d.ts} +1 -1
  211. package/dist/ui/icons/render/{Check.js → icon-check.js} +3 -3
  212. package/dist/ui/icons/render/icon-check.js.map +1 -0
  213. package/dist/ui/icons/render/{Home.d.ts → icon-checked.d.ts} +1 -1
  214. package/dist/ui/icons/render/{Checked.js → icon-checked.js} +3 -3
  215. package/dist/ui/icons/render/icon-checked.js.map +1 -0
  216. package/dist/ui/icons/render/{keyboard-right-arrow.d.ts → icon-circular-left-arrow.d.ts} +1 -1
  217. package/dist/ui/icons/render/{arrow-foward-left.js → icon-circular-left-arrow.js} +5 -5
  218. package/dist/ui/icons/render/icon-circular-left-arrow.js.map +1 -0
  219. package/dist/ui/icons/render/{interrogation-circle.d.ts → icon-circular-right-arrow.d.ts} +1 -1
  220. package/dist/ui/icons/render/{arrow-foward-right.js → icon-circular-right-arrow.js} +5 -5
  221. package/dist/ui/icons/render/icon-circular-right-arrow.js.map +1 -0
  222. package/dist/ui/icons/render/icon-clip.d.ts +2 -0
  223. package/dist/ui/icons/render/{clip.js → icon-clip.js} +3 -3
  224. package/dist/ui/icons/render/icon-clip.js.map +1 -0
  225. package/dist/ui/icons/render/icon-clock.d.ts +3 -0
  226. package/dist/ui/icons/render/{Clock.js → icon-clock.js} +5 -5
  227. package/dist/ui/icons/render/icon-clock.js.map +1 -0
  228. package/dist/ui/icons/render/{danger.d.ts → icon-close.d.ts} +1 -1
  229. package/dist/ui/icons/render/icon-close.js +10 -0
  230. package/dist/ui/icons/render/icon-close.js.map +1 -0
  231. package/dist/ui/icons/render/icon-codie.d.ts +2 -0
  232. package/dist/ui/icons/render/icon-codie.js +10 -0
  233. package/dist/ui/icons/render/icon-codie.js.map +1 -0
  234. package/dist/ui/icons/render/{Carousel-left-icon.d.ts → icon-computer.d.ts} +1 -1
  235. package/dist/ui/icons/render/{computer.js → icon-computer.js} +3 -3
  236. package/dist/ui/icons/render/icon-computer.js.map +1 -0
  237. package/dist/ui/icons/render/{YouTube.d.ts → icon-danger.d.ts} +1 -1
  238. package/dist/ui/icons/render/{danger.js → icon-danger.js} +3 -3
  239. package/dist/ui/icons/render/icon-danger.js.map +1 -0
  240. package/dist/ui/icons/render/icon-death.d.ts +2 -0
  241. package/dist/ui/icons/render/icon-death.js +10 -0
  242. package/dist/ui/icons/render/icon-death.js.map +1 -0
  243. package/dist/ui/icons/render/{diabets.d.ts → icon-delete.d.ts} +1 -1
  244. package/dist/ui/icons/render/{delete.js → icon-delete.js} +3 -3
  245. package/dist/ui/icons/render/icon-delete.js.map +1 -0
  246. package/dist/ui/icons/render/{computer.d.ts → icon-diabets.d.ts} +1 -1
  247. package/dist/ui/icons/render/icon-diabets.js +10 -0
  248. package/dist/ui/icons/render/icon-diabets.js.map +1 -0
  249. package/dist/ui/icons/render/icon-door.d.ts +2 -0
  250. package/dist/ui/icons/render/{door.js → icon-door.js} +3 -3
  251. package/dist/ui/icons/render/icon-door.js.map +1 -0
  252. package/dist/ui/icons/render/{Check.d.ts → icon-drop-file.d.ts} +1 -1
  253. package/dist/ui/icons/render/{drop-file.js → icon-drop-file.js} +3 -3
  254. package/dist/ui/icons/render/icon-drop-file.js.map +1 -0
  255. package/dist/ui/icons/render/icon-edit-image.d.ts +1 -0
  256. package/dist/ui/icons/render/icon-edit-image.js +9 -0
  257. package/dist/ui/icons/render/icon-edit-image.js.map +1 -0
  258. package/dist/ui/icons/render/icon-edit.d.ts +2 -0
  259. package/dist/ui/icons/render/{Edit.js → icon-edit.js} +3 -3
  260. package/dist/ui/icons/render/icon-edit.js.map +1 -0
  261. package/dist/ui/icons/render/icon-email.d.ts +3 -0
  262. package/dist/ui/icons/render/icon-email.js +15 -0
  263. package/dist/ui/icons/render/icon-email.js.map +1 -0
  264. package/dist/ui/icons/render/{calculator.d.ts → icon-empty-chat.d.ts} +1 -1
  265. package/dist/ui/icons/render/icon-empty-chat.js +10 -0
  266. package/dist/ui/icons/render/icon-empty-chat.js.map +1 -0
  267. package/dist/ui/icons/render/icon-equalizer.d.ts +3 -0
  268. package/dist/ui/icons/render/icon-equalizer.js +15 -0
  269. package/dist/ui/icons/render/icon-equalizer.js.map +1 -0
  270. package/dist/ui/icons/render/icon-excel.d.ts +2 -0
  271. package/dist/ui/icons/render/icon-excel.js +10 -0
  272. package/dist/ui/icons/render/icon-excel.js.map +1 -0
  273. package/dist/ui/icons/render/{arrow-to-right.d.ts → icon-exclamation.d.ts} +1 -1
  274. package/dist/ui/icons/render/{exclamation.js → icon-exclamation.js} +3 -3
  275. package/dist/ui/icons/render/icon-exclamation.js.map +1 -0
  276. package/dist/ui/icons/render/{Exit.js → icon-exit.js} +1 -1
  277. package/dist/ui/icons/render/icon-exit.js.map +1 -0
  278. package/dist/ui/icons/render/{empty-chat.d.ts → icon-eye-slash.d.ts} +1 -1
  279. package/dist/ui/icons/render/icon-eye-slash.js +10 -0
  280. package/dist/ui/icons/render/icon-eye-slash.js.map +1 -0
  281. package/dist/ui/icons/render/icon-eye.d.ts +2 -0
  282. package/dist/ui/icons/render/{Eye.js → icon-eye.js} +3 -3
  283. package/dist/ui/icons/render/icon-eye.js.map +1 -0
  284. package/dist/ui/icons/render/icon-facebook.d.ts +3 -0
  285. package/dist/ui/icons/render/icon-facebook.js +15 -0
  286. package/dist/ui/icons/render/icon-facebook.js.map +1 -0
  287. package/dist/ui/icons/render/icon-file.d.ts +2 -0
  288. package/dist/ui/icons/render/{File.js → icon-file.js} +3 -3
  289. package/dist/ui/icons/render/icon-file.js.map +1 -0
  290. package/dist/ui/icons/render/icon-folder.d.ts +2 -0
  291. package/dist/ui/icons/render/{Folder.js → icon-folder.js} +3 -3
  292. package/dist/ui/icons/render/icon-folder.js.map +1 -0
  293. package/dist/ui/icons/render/{calendar-browse.d.ts → icon-fullfield-bell.d.ts} +1 -1
  294. package/dist/ui/icons/render/{fullfield-bell.js → icon-fullfield-bell.js} +3 -3
  295. package/dist/ui/icons/render/icon-fullfield-bell.js.map +1 -0
  296. package/dist/ui/icons/render/icon-fullfield-chat.d.ts +2 -0
  297. package/dist/ui/icons/render/{fullfield-chat.js → icon-fullfield-chat.js} +3 -3
  298. package/dist/ui/icons/render/icon-fullfield-chat.js.map +1 -0
  299. package/dist/ui/icons/render/{Gear.js → icon-gear.js} +1 -1
  300. package/dist/ui/icons/render/icon-gear.js.map +1 -0
  301. package/dist/ui/icons/render/icon-gender.d.ts +2 -0
  302. package/dist/ui/icons/render/{gender.js → icon-gender.js} +3 -3
  303. package/dist/ui/icons/render/icon-gender.js.map +1 -0
  304. package/dist/ui/icons/render/icon-globe.d.ts +2 -0
  305. package/dist/ui/icons/render/{Globe.js → icon-globe.js} +3 -3
  306. package/dist/ui/icons/render/icon-globe.js.map +1 -0
  307. package/dist/ui/icons/render/icon-heart.d.ts +2 -0
  308. package/dist/ui/icons/render/{heart.js → icon-heart.js} +3 -3
  309. package/dist/ui/icons/render/icon-heart.js.map +1 -0
  310. package/dist/ui/icons/render/icon-home.d.ts +2 -0
  311. package/dist/ui/icons/render/icon-home.js +10 -0
  312. package/dist/ui/icons/render/icon-home.js.map +1 -0
  313. package/dist/ui/icons/render/{arrow-foward-right.d.ts → icon-hospitalization.d.ts} +1 -1
  314. package/dist/ui/icons/render/{hospitalization.js → icon-hospitalization.js} +3 -3
  315. package/dist/ui/icons/render/icon-hospitalization.js.map +1 -0
  316. package/dist/ui/icons/render/{fullfield-chat.d.ts → icon-hypertension.d.ts} +1 -1
  317. package/dist/ui/icons/render/{hypertension.js → icon-hypertension.js} +3 -3
  318. package/dist/ui/icons/render/icon-hypertension.js.map +1 -0
  319. package/dist/ui/icons/render/icon-info.d.ts +2 -0
  320. package/dist/ui/icons/render/{info.js → icon-info.js} +2 -2
  321. package/dist/ui/icons/render/icon-info.js.map +1 -0
  322. package/dist/ui/icons/render/icon-interrogation-circle.d.ts +2 -0
  323. package/dist/ui/icons/render/{interrogation-circle.js → icon-interrogation-circle.js} +3 -3
  324. package/dist/ui/icons/render/icon-interrogation-circle.js.map +1 -0
  325. package/dist/ui/icons/render/{edit-image.d.ts → icon-language.d.ts} +1 -1
  326. package/dist/ui/icons/render/icon-language.js +10 -0
  327. package/dist/ui/icons/render/icon-language.js.map +1 -0
  328. package/dist/ui/icons/render/icon-left-chevron.d.ts +1 -0
  329. package/dist/ui/icons/render/icon-left-chevron.js +9 -0
  330. package/dist/ui/icons/render/icon-left-chevron.js.map +1 -0
  331. package/dist/ui/icons/render/{transparent-mail.d.ts → icon-left-navigation.d.ts} +1 -1
  332. package/dist/ui/icons/render/icon-left-navigation.js +10 -0
  333. package/dist/ui/icons/render/icon-left-navigation.js.map +1 -0
  334. package/dist/ui/icons/render/icon-like.d.ts +2 -0
  335. package/dist/ui/icons/render/{like.js → icon-like.js} +3 -3
  336. package/dist/ui/icons/render/icon-like.js.map +1 -0
  337. package/dist/ui/icons/render/{NavRight.d.ts → icon-loading.d.ts} +1 -1
  338. package/dist/ui/icons/render/{loading.js → icon-loading.js} +3 -3
  339. package/dist/ui/icons/render/icon-loading.js.map +1 -0
  340. package/dist/ui/icons/render/icon-map-floor.d.ts +2 -0
  341. package/dist/ui/icons/render/icon-map-floor.js +10 -0
  342. package/dist/ui/icons/render/icon-map-floor.js.map +1 -0
  343. package/dist/ui/icons/render/{message-balloon.js → icon-message-balloon.js} +1 -1
  344. package/dist/ui/icons/render/icon-message-balloon.js.map +1 -0
  345. package/dist/ui/icons/render/icon-mobile.d.ts +2 -0
  346. package/dist/ui/icons/render/icon-mobile.js +10 -0
  347. package/dist/ui/icons/render/icon-mobile.js.map +1 -0
  348. package/dist/ui/icons/render/{keyboard-left-arrow.d.ts → icon-money-value-symbol.d.ts} +1 -1
  349. package/dist/ui/icons/render/{money-value-symbol.js → icon-money-value-symbol.js} +3 -3
  350. package/dist/ui/icons/render/icon-money-value-symbol.js.map +1 -0
  351. package/dist/ui/icons/render/icon-not-found.d.ts +2 -0
  352. package/dist/ui/icons/render/icon-not-found.js +10 -0
  353. package/dist/ui/icons/render/icon-not-found.js.map +1 -0
  354. package/dist/ui/icons/render/{arrow-top.d.ts → icon-not-like.d.ts} +1 -1
  355. package/dist/ui/icons/render/{not-like.js → icon-not-like.js} +3 -3
  356. package/dist/ui/icons/render/icon-not-like.js.map +1 -0
  357. package/dist/ui/icons/render/icon-padlock.d.ts +2 -0
  358. package/dist/ui/icons/render/{padlock.js → icon-padlock.js} +3 -3
  359. package/dist/ui/icons/render/icon-padlock.js.map +1 -0
  360. package/dist/ui/icons/render/icon-pdf.d.ts +2 -0
  361. package/dist/ui/icons/render/icon-pdf.js +10 -0
  362. package/dist/ui/icons/render/icon-pdf.js.map +1 -0
  363. package/dist/ui/icons/render/icon-person.d.ts +3 -0
  364. package/dist/ui/icons/render/{person.js → icon-person.js} +5 -5
  365. package/dist/ui/icons/render/icon-person.js.map +1 -0
  366. package/dist/ui/icons/render/icon-pet.d.ts +2 -0
  367. package/dist/ui/icons/render/icon-pet.js +10 -0
  368. package/dist/ui/icons/render/icon-pet.js.map +1 -0
  369. package/dist/ui/icons/render/icon-phone-message.d.ts +2 -0
  370. package/dist/ui/icons/render/icon-phone-message.js +10 -0
  371. package/dist/ui/icons/render/icon-phone-message.js.map +1 -0
  372. package/dist/ui/icons/render/{calendar-time.d.ts → icon-play-rounded.d.ts} +1 -1
  373. package/dist/ui/icons/render/{play-rounded.js → icon-play-rounded.js} +3 -3
  374. package/dist/ui/icons/render/icon-play-rounded.js.map +1 -0
  375. package/dist/ui/icons/render/{Carousel-right-icon.d.ts → icon-plus-sharp.d.ts} +1 -1
  376. package/dist/ui/icons/render/{plus-sharp.js → icon-plus-sharp.js} +3 -3
  377. package/dist/ui/icons/render/icon-plus-sharp.js.map +1 -0
  378. package/dist/ui/icons/render/icon-prev.d.ts +2 -0
  379. package/dist/ui/icons/render/{prev.js → icon-prev.js} +3 -3
  380. package/dist/ui/icons/render/icon-prev.js.map +1 -0
  381. package/dist/ui/icons/render/{print.js → icon-print.js} +1 -1
  382. package/dist/ui/icons/render/icon-print.js.map +1 -0
  383. package/dist/ui/icons/render/icon-right-chevron.d.ts +1 -0
  384. package/dist/ui/icons/render/icon-right-chevron.js +9 -0
  385. package/dist/ui/icons/render/icon-right-chevron.js.map +1 -0
  386. package/dist/ui/icons/render/{basic-bottom-arrow.d.ts → icon-right-navigation.d.ts} +1 -1
  387. package/dist/ui/icons/render/icon-right-navigation.js +10 -0
  388. package/dist/ui/icons/render/icon-right-navigation.js.map +1 -0
  389. package/dist/ui/icons/render/{hypertension.d.ts → icon-send-message.d.ts} +1 -1
  390. package/dist/ui/icons/render/{send-message.js → icon-send-message.js} +3 -3
  391. package/dist/ui/icons/render/icon-send-message.js.map +1 -0
  392. package/dist/ui/icons/render/icon-send.d.ts +2 -0
  393. package/dist/ui/icons/render/{arrow-forward.js → icon-send.js} +6 -6
  394. package/dist/ui/icons/render/icon-send.js.map +1 -0
  395. package/dist/ui/icons/render/icon-seo.d.ts +2 -0
  396. package/dist/ui/icons/render/icon-seo.js +10 -0
  397. package/dist/ui/icons/render/icon-seo.js.map +1 -0
  398. package/dist/ui/icons/render/icon-share-v2.d.ts +2 -0
  399. package/dist/ui/icons/render/{share-v2.js → icon-share-v2.js} +3 -3
  400. package/dist/ui/icons/render/icon-share-v2.js.map +1 -0
  401. package/dist/ui/icons/render/icon-shopping.d.ts +3 -0
  402. package/dist/ui/icons/render/{shopping.js → icon-shopping.js} +5 -5
  403. package/dist/ui/icons/render/icon-shopping.js.map +1 -0
  404. package/dist/ui/icons/render/icon-star.d.ts +2 -0
  405. package/dist/ui/icons/render/{star.js → icon-star.js} +3 -3
  406. package/dist/ui/icons/render/icon-star.js.map +1 -0
  407. package/dist/ui/icons/render/icon-starBg.d.ts +2 -0
  408. package/dist/ui/icons/render/{starBg.js → icon-starBg.js} +3 -3
  409. package/dist/ui/icons/render/icon-starBg.js.map +1 -0
  410. package/dist/ui/icons/render/icon-three-dots.d.ts +2 -0
  411. package/dist/ui/icons/render/icon-three-dots.js +10 -0
  412. package/dist/ui/icons/render/icon-three-dots.js.map +1 -0
  413. package/dist/ui/icons/render/icon-top-chevron.d.ts +1 -0
  414. package/dist/ui/icons/render/icon-top-chevron.js +9 -0
  415. package/dist/ui/icons/render/icon-top-chevron.js.map +1 -0
  416. package/dist/ui/icons/render/icon-top-navigation.d.ts +2 -0
  417. package/dist/ui/icons/render/icon-top-navigation.js +10 -0
  418. package/dist/ui/icons/render/icon-top-navigation.js.map +1 -0
  419. package/dist/ui/icons/render/{basic-left-arrow.d.ts → icon-transparent-mail.d.ts} +1 -1
  420. package/dist/ui/icons/render/{transparent-mail.js → icon-transparent-mail.js} +3 -3
  421. package/dist/ui/icons/render/icon-transparent-mail.js.map +1 -0
  422. package/dist/ui/icons/render/icon-transparent-phone.d.ts +2 -0
  423. package/dist/ui/icons/render/icon-transparent-phone.js +10 -0
  424. package/dist/ui/icons/render/icon-transparent-phone.js.map +1 -0
  425. package/dist/ui/icons/render/icon-twitter.d.ts +3 -0
  426. package/dist/ui/icons/render/icon-twitter.js +15 -0
  427. package/dist/ui/icons/render/icon-twitter.js.map +1 -0
  428. package/dist/ui/icons/render/icon-upload.d.ts +2 -0
  429. package/dist/ui/icons/render/{upload.js → icon-upload.js} +3 -3
  430. package/dist/ui/icons/render/icon-upload.js.map +1 -0
  431. package/dist/ui/icons/render/icon-user.d.ts +3 -0
  432. package/dist/ui/icons/render/{user.js → icon-user.js} +5 -5
  433. package/dist/ui/icons/render/icon-user.js.map +1 -0
  434. package/dist/ui/icons/render/icon-weight.d.ts +2 -0
  435. package/dist/ui/icons/render/icon-weight.js +10 -0
  436. package/dist/ui/icons/render/icon-weight.js.map +1 -0
  437. package/dist/ui/icons/render/icon-whats.d.ts +3 -0
  438. package/dist/ui/icons/render/icon-whats.js +15 -0
  439. package/dist/ui/icons/render/icon-whats.js.map +1 -0
  440. package/dist/ui/icons/render/{word.js → icon-word.js} +1 -1
  441. package/dist/ui/icons/render/icon-word.js.map +1 -0
  442. package/dist/ui/icons/render/image.d.ts +1 -1
  443. package/dist/ui/icons/render/image.js +2 -2
  444. package/dist/ui/icons/render/image.js.map +1 -1
  445. package/dist/ui/integrations/message-provider/send-message.d.ts +5 -1
  446. package/dist/ui/integrations/message-provider/send-message.js +12 -6
  447. package/dist/ui/integrations/message-provider/send-message.js.map +1 -1
  448. package/package.json +81 -77
  449. package/dist/ui/icons/render/Carousel-left-icon.js +0 -10
  450. package/dist/ui/icons/render/Carousel-left-icon.js.map +0 -1
  451. package/dist/ui/icons/render/Carousel-right-icon.js +0 -10
  452. package/dist/ui/icons/render/Carousel-right-icon.js.map +0 -1
  453. package/dist/ui/icons/render/Check.js.map +0 -1
  454. package/dist/ui/icons/render/Checked.js.map +0 -1
  455. package/dist/ui/icons/render/Clock.d.ts +0 -3
  456. package/dist/ui/icons/render/Clock.js.map +0 -1
  457. package/dist/ui/icons/render/Close.js +0 -10
  458. package/dist/ui/icons/render/Close.js.map +0 -1
  459. package/dist/ui/icons/render/Codie.js +0 -10
  460. package/dist/ui/icons/render/Codie.js.map +0 -1
  461. package/dist/ui/icons/render/Edit.js.map +0 -1
  462. package/dist/ui/icons/render/Email.d.ts +0 -3
  463. package/dist/ui/icons/render/Email.js +0 -15
  464. package/dist/ui/icons/render/Email.js.map +0 -1
  465. package/dist/ui/icons/render/Exit.js.map +0 -1
  466. package/dist/ui/icons/render/Eye.d.ts +0 -2
  467. package/dist/ui/icons/render/Eye.js.map +0 -1
  468. package/dist/ui/icons/render/Facebook.d.ts +0 -3
  469. package/dist/ui/icons/render/Facebook.js +0 -15
  470. package/dist/ui/icons/render/Facebook.js.map +0 -1
  471. package/dist/ui/icons/render/File.js.map +0 -1
  472. package/dist/ui/icons/render/Folder.js.map +0 -1
  473. package/dist/ui/icons/render/Gear.js.map +0 -1
  474. package/dist/ui/icons/render/Globe.js.map +0 -1
  475. package/dist/ui/icons/render/Home.js +0 -10
  476. package/dist/ui/icons/render/Home.js.map +0 -1
  477. package/dist/ui/icons/render/Insagram.d.ts +0 -3
  478. package/dist/ui/icons/render/Insagram.js +0 -15
  479. package/dist/ui/icons/render/Insagram.js.map +0 -1
  480. package/dist/ui/icons/render/Linkedin.d.ts +0 -3
  481. package/dist/ui/icons/render/Linkedin.js +0 -15
  482. package/dist/ui/icons/render/Linkedin.js.map +0 -1
  483. package/dist/ui/icons/render/LongArrowRight.d.ts +0 -2
  484. package/dist/ui/icons/render/LongArrowRight.js +0 -11
  485. package/dist/ui/icons/render/LongArrowRight.js.map +0 -1
  486. package/dist/ui/icons/render/Lupa.js +0 -10
  487. package/dist/ui/icons/render/Lupa.js.map +0 -1
  488. package/dist/ui/icons/render/Map.d.ts +0 -2
  489. package/dist/ui/icons/render/Map.js.map +0 -1
  490. package/dist/ui/icons/render/Microphone.js.map +0 -1
  491. package/dist/ui/icons/render/Minus.d.ts +0 -2
  492. package/dist/ui/icons/render/Minus.js.map +0 -1
  493. package/dist/ui/icons/render/NavDown.d.ts +0 -3
  494. package/dist/ui/icons/render/NavDown.js +0 -15
  495. package/dist/ui/icons/render/NavDown.js.map +0 -1
  496. package/dist/ui/icons/render/NavLeft.js +0 -10
  497. package/dist/ui/icons/render/NavLeft.js.map +0 -1
  498. package/dist/ui/icons/render/NavRight.js +0 -10
  499. package/dist/ui/icons/render/NavRight.js.map +0 -1
  500. package/dist/ui/icons/render/NavUp.d.ts +0 -2
  501. package/dist/ui/icons/render/NavUp.js +0 -10
  502. package/dist/ui/icons/render/NavUp.js.map +0 -1
  503. package/dist/ui/icons/render/Phone.d.ts +0 -3
  504. package/dist/ui/icons/render/Phone.js +0 -15
  505. package/dist/ui/icons/render/Phone.js.map +0 -1
  506. package/dist/ui/icons/render/Pin.d.ts +0 -4
  507. package/dist/ui/icons/render/Pin.js.map +0 -1
  508. package/dist/ui/icons/render/Play.d.ts +0 -2
  509. package/dist/ui/icons/render/Play.js +0 -10
  510. package/dist/ui/icons/render/Play.js.map +0 -1
  511. package/dist/ui/icons/render/Plus.d.ts +0 -2
  512. package/dist/ui/icons/render/Plus.js +0 -10
  513. package/dist/ui/icons/render/Plus.js.map +0 -1
  514. package/dist/ui/icons/render/Share.d.ts +0 -2
  515. package/dist/ui/icons/render/Share.js +0 -10
  516. package/dist/ui/icons/render/Share.js.map +0 -1
  517. package/dist/ui/icons/render/TikTok.js +0 -10
  518. package/dist/ui/icons/render/TikTok.js.map +0 -1
  519. package/dist/ui/icons/render/Twitter.d.ts +0 -3
  520. package/dist/ui/icons/render/Twitter.js +0 -15
  521. package/dist/ui/icons/render/Twitter.js.map +0 -1
  522. package/dist/ui/icons/render/YouTube.js +0 -10
  523. package/dist/ui/icons/render/YouTube.js.map +0 -1
  524. package/dist/ui/icons/render/arrow-bottom.js +0 -10
  525. package/dist/ui/icons/render/arrow-bottom.js.map +0 -1
  526. package/dist/ui/icons/render/arrow-forward.d.ts +0 -2
  527. package/dist/ui/icons/render/arrow-forward.js.map +0 -1
  528. package/dist/ui/icons/render/arrow-foward-left.js.map +0 -1
  529. package/dist/ui/icons/render/arrow-foward-right.js.map +0 -1
  530. package/dist/ui/icons/render/arrow-to-right.js +0 -10
  531. package/dist/ui/icons/render/arrow-to-right.js.map +0 -1
  532. package/dist/ui/icons/render/arrow-top.js +0 -10
  533. package/dist/ui/icons/render/arrow-top.js.map +0 -1
  534. package/dist/ui/icons/render/basic-bottom-arrow.js +0 -10
  535. package/dist/ui/icons/render/basic-bottom-arrow.js.map +0 -1
  536. package/dist/ui/icons/render/basic-left-arrow.js +0 -10
  537. package/dist/ui/icons/render/basic-left-arrow.js.map +0 -1
  538. package/dist/ui/icons/render/basic-right-arrow.js +0 -10
  539. package/dist/ui/icons/render/basic-right-arrow.js.map +0 -1
  540. package/dist/ui/icons/render/block.d.ts +0 -2
  541. package/dist/ui/icons/render/block.js.map +0 -1
  542. package/dist/ui/icons/render/box.d.ts +0 -2
  543. package/dist/ui/icons/render/box.js.map +0 -1
  544. package/dist/ui/icons/render/calculator.js.map +0 -1
  545. package/dist/ui/icons/render/calendar-browse.js.map +0 -1
  546. package/dist/ui/icons/render/calendar-time.js +0 -10
  547. package/dist/ui/icons/render/calendar-time.js.map +0 -1
  548. package/dist/ui/icons/render/calendar.js +0 -10
  549. package/dist/ui/icons/render/calendar.js.map +0 -1
  550. package/dist/ui/icons/render/cam.d.ts +0 -2
  551. package/dist/ui/icons/render/cam.js +0 -10
  552. package/dist/ui/icons/render/cam.js.map +0 -1
  553. package/dist/ui/icons/render/chalet.js.map +0 -1
  554. package/dist/ui/icons/render/chat.d.ts +0 -2
  555. package/dist/ui/icons/render/chat.js.map +0 -1
  556. package/dist/ui/icons/render/clip.d.ts +0 -2
  557. package/dist/ui/icons/render/clip.js.map +0 -1
  558. package/dist/ui/icons/render/computer.js.map +0 -1
  559. package/dist/ui/icons/render/danger.js.map +0 -1
  560. package/dist/ui/icons/render/death.d.ts +0 -2
  561. package/dist/ui/icons/render/death.js +0 -10
  562. package/dist/ui/icons/render/death.js.map +0 -1
  563. package/dist/ui/icons/render/delete.d.ts +0 -2
  564. package/dist/ui/icons/render/delete.js.map +0 -1
  565. package/dist/ui/icons/render/diabets.js +0 -10
  566. package/dist/ui/icons/render/diabets.js.map +0 -1
  567. package/dist/ui/icons/render/door.d.ts +0 -2
  568. package/dist/ui/icons/render/door.js.map +0 -1
  569. package/dist/ui/icons/render/drop-file.d.ts +0 -2
  570. package/dist/ui/icons/render/drop-file.js.map +0 -1
  571. package/dist/ui/icons/render/edit-image.js +0 -10
  572. package/dist/ui/icons/render/edit-image.js.map +0 -1
  573. package/dist/ui/icons/render/empty-chat.js +0 -10
  574. package/dist/ui/icons/render/empty-chat.js.map +0 -1
  575. package/dist/ui/icons/render/equalizer.d.ts +0 -3
  576. package/dist/ui/icons/render/equalizer.js +0 -15
  577. package/dist/ui/icons/render/equalizer.js.map +0 -1
  578. package/dist/ui/icons/render/excel.d.ts +0 -1
  579. package/dist/ui/icons/render/excel.js +0 -9
  580. package/dist/ui/icons/render/excel.js.map +0 -1
  581. package/dist/ui/icons/render/exclamation.d.ts +0 -2
  582. package/dist/ui/icons/render/exclamation.js.map +0 -1
  583. package/dist/ui/icons/render/eye-off.d.ts +0 -2
  584. package/dist/ui/icons/render/eye-off.js +0 -10
  585. package/dist/ui/icons/render/eye-off.js.map +0 -1
  586. package/dist/ui/icons/render/fullfield-bell.js.map +0 -1
  587. package/dist/ui/icons/render/fullfield-chat.js.map +0 -1
  588. package/dist/ui/icons/render/gender.d.ts +0 -2
  589. package/dist/ui/icons/render/gender.js.map +0 -1
  590. package/dist/ui/icons/render/heart.d.ts +0 -2
  591. package/dist/ui/icons/render/heart.js.map +0 -1
  592. package/dist/ui/icons/render/hospitalization.d.ts +0 -2
  593. package/dist/ui/icons/render/hospitalization.js.map +0 -1
  594. package/dist/ui/icons/render/hut.d.ts +0 -2
  595. package/dist/ui/icons/render/hut.js +0 -10
  596. package/dist/ui/icons/render/hut.js.map +0 -1
  597. package/dist/ui/icons/render/hypertension.js.map +0 -1
  598. package/dist/ui/icons/render/info.d.ts +0 -2
  599. package/dist/ui/icons/render/info.js.map +0 -1
  600. package/dist/ui/icons/render/interrogation-circle.js.map +0 -1
  601. package/dist/ui/icons/render/keyboard-left-arrow.js +0 -10
  602. package/dist/ui/icons/render/keyboard-left-arrow.js.map +0 -1
  603. package/dist/ui/icons/render/keyboard-right-arrow.js +0 -10
  604. package/dist/ui/icons/render/keyboard-right-arrow.js.map +0 -1
  605. package/dist/ui/icons/render/language.d.ts +0 -2
  606. package/dist/ui/icons/render/language.js +0 -10
  607. package/dist/ui/icons/render/language.js.map +0 -1
  608. package/dist/ui/icons/render/like.d.ts +0 -2
  609. package/dist/ui/icons/render/like.js.map +0 -1
  610. package/dist/ui/icons/render/loading.js.map +0 -1
  611. package/dist/ui/icons/render/map-floor.d.ts +0 -2
  612. package/dist/ui/icons/render/map-floor.js +0 -10
  613. package/dist/ui/icons/render/map-floor.js.map +0 -1
  614. package/dist/ui/icons/render/message-balloon.js.map +0 -1
  615. package/dist/ui/icons/render/mobile.d.ts +0 -2
  616. package/dist/ui/icons/render/mobile.js +0 -10
  617. package/dist/ui/icons/render/mobile.js.map +0 -1
  618. package/dist/ui/icons/render/money-value-symbol.d.ts +0 -2
  619. package/dist/ui/icons/render/money-value-symbol.js.map +0 -1
  620. package/dist/ui/icons/render/next.d.ts +0 -2
  621. package/dist/ui/icons/render/next.js +0 -10
  622. package/dist/ui/icons/render/next.js.map +0 -1
  623. package/dist/ui/icons/render/not-found.d.ts +0 -2
  624. package/dist/ui/icons/render/not-found.js +0 -10
  625. package/dist/ui/icons/render/not-found.js.map +0 -1
  626. package/dist/ui/icons/render/not-like.d.ts +0 -2
  627. package/dist/ui/icons/render/not-like.js.map +0 -1
  628. package/dist/ui/icons/render/padlock.d.ts +0 -2
  629. package/dist/ui/icons/render/padlock.js.map +0 -1
  630. package/dist/ui/icons/render/pdf.d.ts +0 -2
  631. package/dist/ui/icons/render/pdf.js +0 -10
  632. package/dist/ui/icons/render/pdf.js.map +0 -1
  633. package/dist/ui/icons/render/person.d.ts +0 -3
  634. package/dist/ui/icons/render/person.js.map +0 -1
  635. package/dist/ui/icons/render/pet.d.ts +0 -2
  636. package/dist/ui/icons/render/pet.js +0 -10
  637. package/dist/ui/icons/render/pet.js.map +0 -1
  638. package/dist/ui/icons/render/phone-message.d.ts +0 -2
  639. package/dist/ui/icons/render/phone-message.js +0 -10
  640. package/dist/ui/icons/render/phone-message.js.map +0 -1
  641. package/dist/ui/icons/render/play-rounded.d.ts +0 -2
  642. package/dist/ui/icons/render/play-rounded.js.map +0 -1
  643. package/dist/ui/icons/render/plus-sharp.d.ts +0 -2
  644. package/dist/ui/icons/render/plus-sharp.js.map +0 -1
  645. package/dist/ui/icons/render/prev.d.ts +0 -2
  646. package/dist/ui/icons/render/prev.js.map +0 -1
  647. package/dist/ui/icons/render/print.js.map +0 -1
  648. package/dist/ui/icons/render/send-icon.d.ts +0 -2
  649. package/dist/ui/icons/render/send-icon.js +0 -10
  650. package/dist/ui/icons/render/send-icon.js.map +0 -1
  651. package/dist/ui/icons/render/send-message.js.map +0 -1
  652. package/dist/ui/icons/render/seo.d.ts +0 -2
  653. package/dist/ui/icons/render/seo.js +0 -10
  654. package/dist/ui/icons/render/seo.js.map +0 -1
  655. package/dist/ui/icons/render/share-v2.d.ts +0 -2
  656. package/dist/ui/icons/render/share-v2.js.map +0 -1
  657. package/dist/ui/icons/render/shopping.d.ts +0 -3
  658. package/dist/ui/icons/render/shopping.js.map +0 -1
  659. package/dist/ui/icons/render/star.d.ts +0 -2
  660. package/dist/ui/icons/render/star.js.map +0 -1
  661. package/dist/ui/icons/render/starBg.d.ts +0 -2
  662. package/dist/ui/icons/render/starBg.js.map +0 -1
  663. package/dist/ui/icons/render/three-dots.d.ts +0 -2
  664. package/dist/ui/icons/render/three-dots.js +0 -10
  665. package/dist/ui/icons/render/three-dots.js.map +0 -1
  666. package/dist/ui/icons/render/transparent-mail.js.map +0 -1
  667. package/dist/ui/icons/render/transparent-phone.d.ts +0 -2
  668. package/dist/ui/icons/render/transparent-phone.js +0 -10
  669. package/dist/ui/icons/render/transparent-phone.js.map +0 -1
  670. package/dist/ui/icons/render/upload.d.ts +0 -2
  671. package/dist/ui/icons/render/upload.js.map +0 -1
  672. package/dist/ui/icons/render/user.d.ts +0 -3
  673. package/dist/ui/icons/render/user.js.map +0 -1
  674. package/dist/ui/icons/render/weight.d.ts +0 -2
  675. package/dist/ui/icons/render/weight.js +0 -10
  676. package/dist/ui/icons/render/weight.js.map +0 -1
  677. package/dist/ui/icons/render/whats.d.ts +0 -3
  678. package/dist/ui/icons/render/whats.js +0 -15
  679. package/dist/ui/icons/render/whats.js.map +0 -1
  680. package/dist/ui/icons/render/word.js.map +0 -1
  681. /package/dist/ui/icons/render/{Exit.d.ts → icon-exit.d.ts} +0 -0
  682. /package/dist/ui/icons/render/{Gear.d.ts → icon-gear.d.ts} +0 -0
  683. /package/dist/ui/icons/render/{message-balloon.d.ts → icon-message-balloon.d.ts} +0 -0
  684. /package/dist/ui/icons/render/{print.d.ts → icon-print.d.ts} +0 -0
  685. /package/dist/ui/icons/render/{word.d.ts → icon-word.d.ts} +0 -0
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SeoIcon = void 0;
4
+ var jsx_runtime_1 = require("react/jsx-runtime");
5
+ function SeoIcon(_a) {
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { version: '1.1', x: '0px', y: '0px', viewBox: '0 0 100 125', "enable-background": 'new 0 0 100 100', fill: color, children: (0, jsx_runtime_1.jsxs)("g", { children: [(0, jsx_runtime_1.jsx)("path", { d: 'M89.43,87.88h-1.79V41.8c0-1.72-0.699-3.29-1.84-4.42c-1.13-1.14-2.7-1.84-4.42-1.85h-9.6c-0.45,0-0.811,0.37-0.811,0.82 c0,0.45,0.36,0.81,0.811,0.81h9.59c1.28,0,2.439,0.52,3.28,1.36c0.84,0.84,1.359,2,1.359,3.27v46.09H60.36 c-0.061,0-0.11,0-0.17,0.01C60.17,87.9,60.15,87.9,60.14,87.91c-0.029,0.01-0.069,0.02-0.1,0.03c-0.03,0.01-0.05,0.02-0.07,0.04 C59.95,87.99,59.92,88,59.9,88.01c-0.04,0.03-0.091,0.07-0.12,0.11l-3.07,3.07H43.3l-3.08-3.07c-0.02-0.03-0.04-0.04-0.06-0.061 c-0.02-0.02-0.04-0.029-0.06-0.05c-0.03-0.02-0.06-0.029-0.09-0.05c-0.02-0.01-0.03-0.02-0.05-0.02 c-0.04-0.021-0.08-0.03-0.11-0.04c-0.02,0-0.03,0-0.04-0.011c-0.05-0.01-0.11-0.01-0.16-0.01H13.99V41.8c0-0.01,0-0.01,0-0.01 c0-2.55,2.08-4.63,4.64-4.63c0,0,0,0,0.01,0h9.9c0.45,0,0.82-0.36,0.82-0.81c0-0.45-0.37-0.82-0.82-0.82h-9.91 c-0.01,0-0.01,0-0.01,0c-3.45,0.01-6.26,2.82-6.26,6.27v46.08h-1.79c-1.78,0-3.22,1.44-3.22,3.22v1.811c0,1.77,1.44,3.22,3.22,3.22 h78.86c1.771,0,3.221-1.439,3.221-3.22V91.1C92.65,89.32,91.2,87.88,89.43,87.88z' }), (0, jsx_runtime_1.jsx)("path", { d: 'M19.613,82.431V42.61h7.521c0.45,0,0.813-0.365,0.813-0.814s-0.363-0.814-0.813-0.814H18.8 c-0.448,0-0.813,0.365-0.813,0.814v41.449c0,0.449,0.365,0.814,0.813,0.814h62.4c0.448,0,0.813-0.365,0.813-0.814V41.796 c0-0.449-0.365-0.814-0.813-0.814h-8.535c-0.449,0-0.813,0.365-0.813,0.814c0,0.45,0.364,0.814,0.813,0.814h7.722v39.82H19.613z' }), (0, jsx_runtime_1.jsx)("path", { d: 'M39.396,56.351h0.135c0.449,0,0.814-0.365,0.814-0.813c0-0.45-0.365-0.813-0.814-0.813h-0.135 c-4.816,0-8.735,3.918-8.735,8.736c0,4.816,3.919,8.736,8.735,8.736c0.619,0,1.231-0.065,1.83-0.191 c2.056,3.164,5.598,5.105,9.393,5.105c5.029,0,9.434-3.387,10.773-8.162c0.389,0.064,0.781,0.101,1.178,0.101 c3.949,0,7.164-3.213,7.164-7.161c0-3.951-3.213-7.164-7.164-7.164h-1.531c-0.449,0-0.814,0.363-0.814,0.813 c0,0.448,0.365,0.813,0.814,0.813h1.531c3.054,0,5.535,2.482,5.535,5.535c0,3.051-2.481,5.534-5.535,5.534 c-0.528,0-1.051-0.073-1.551-0.221c-2.346-0.683-3.982-2.867-3.982-5.313c0-0.101,0.004-0.201,0.01-0.305 c0.021-0.447-0.322-0.831-0.771-0.855c-0.449-0.021-0.832,0.322-0.854,0.772c-0.006,0.129-0.011,0.259-0.011,0.388 c0,2.904,1.783,5.521,4.419,6.616c-1.146,4.083-4.909,6.979-9.209,6.979c-3.42,0-6.603-1.848-8.306-4.817 c-0.824-1.438-1.26-3.08-1.26-4.748c0-0.955,0.141-1.897,0.416-2.803c0.133-0.431-0.109-0.886-0.539-1.017 c-0.432-0.132-0.887,0.11-1.019,0.541c-0.323,1.06-0.487,2.161-0.487,3.277c0,1.583,0.336,3.146,0.979,4.58 c-0.331,0.047-0.668,0.07-1.006,0.07c-3.92,0-7.107-3.188-7.107-7.107C32.289,59.54,35.479,56.351,39.396,56.351z' }), (0, jsx_runtime_1.jsx)("path", { d: 'M29.15,52.75h6.62c0.2,0,0.39-0.07,0.54-0.21l4.36-3.87h5.02c0.01,0,0.01,0,0.01,0h13.63l4.36,3.87 c0.149,0.13,0.34,0.21,0.54,0.21h6.609c0.45,0,0.82-0.37,0.82-0.82c0-16.39-7.82-21.2-11.71-22.58c-0.66-6.73-2.04-12.52-4.12-17.3 c-2.55-5.86-5.23-7.93-5.34-8.01c-0.29-0.22-0.69-0.22-0.98,0c-0.11,0.08-2.8,2.15-5.34,8.01c-2.08,4.78-3.46,10.57-4.13,17.3 c-3.88,1.38-11.7,6.19-11.7,22.58C28.34,52.38,28.7,52.75,29.15,52.75z M70.03,51.12h-5.49l-2.9-2.58 c0.891-0.31,1.54-1.16,1.54-2.16v-1.45c-0.01-1.26-1.029-2.29-2.29-2.29h-0.46v-3.23c0-2.88-0.109-5.63-0.31-8.25 C63.72,32.7,69.79,37.34,70.03,51.12z M52.51,24.07c0,1.39-1.13,2.51-2.51,2.51c-1.39,0-2.51-1.12-2.51-2.51 c0-1.39,1.12-2.51,2.51-2.51C51.38,21.56,52.51,22.68,52.51,24.07z M45.96,12.02c0.06-0.11,0.11-0.22,0.16-0.33 c0.05-0.11,0.11-0.22,0.16-0.33c0.05-0.11,0.1-0.22,0.16-0.32c0.05-0.1,0.1-0.21,0.15-0.3c0.06-0.11,0.11-0.21,0.16-0.31 c0.05-0.09,0.1-0.19,0.15-0.28c0.06-0.1,0.11-0.19,0.16-0.29c0.05-0.08,0.1-0.17,0.15-0.25c0.05-0.1,0.1-0.19,0.16-0.28 c0.04-0.08,0.09-0.16,0.14-0.23c0.05-0.09,0.1-0.17,0.16-0.26c0.04-0.07,0.08-0.14,0.13-0.21c0.05-0.08,0.1-0.16,0.15-0.24 c0.05-0.07,0.09-0.14,0.13-0.2c0.06-0.07,0.11-0.15,0.16-0.22c0.04-0.06,0.08-0.12,0.12-0.18c0.05-0.07,0.1-0.14,0.15-0.21 c0.04-0.05,0.07-0.1,0.11-0.16c0.05-0.06,0.1-0.13,0.15-0.19c0.03-0.05,0.07-0.09,0.11-0.14c0.04-0.06,0.09-0.12,0.13-0.18 c0.04-0.04,0.07-0.08,0.1-0.12c0.05-0.06,0.09-0.11,0.13-0.16c0.04-0.04,0.07-0.08,0.1-0.11c0.04-0.05,0.08-0.1,0.12-0.15 c0.03-0.03,0.06-0.06,0.08-0.09c0.04-0.04,0.08-0.09,0.12-0.13c0.02-0.03,0.04-0.05,0.06-0.07c0.1-0.11,0.2-0.21,0.28-0.29 c0.08,0.08,0.18,0.18,0.28,0.29c0.02,0.02,0.04,0.04,0.06,0.07c0.04,0.04,0.08,0.09,0.12,0.14c0.03,0.02,0.05,0.05,0.08,0.08 c0.04,0.05,0.08,0.1,0.12,0.15c0.03,0.04,0.06,0.07,0.09,0.11c0.05,0.05,0.09,0.11,0.14,0.16l0.091,0.12 c0.05,0.06,0.1,0.12,0.149,0.18c0.03,0.05,0.061,0.09,0.101,0.14c0.05,0.06,0.1,0.13,0.149,0.2c0.04,0.05,0.07,0.1,0.11,0.15 c0.05,0.07,0.1,0.14,0.149,0.21c0.04,0.06,0.08,0.12,0.12,0.17c0.05,0.08,0.101,0.16,0.16,0.24c0.04,0.06,0.08,0.12,0.12,0.18 c0.05,0.08,0.1,0.17,0.16,0.25c0.04,0.07,0.09,0.14,0.13,0.2c0.05,0.09,0.11,0.18,0.16,0.27c0.05,0.08,0.09,0.15,0.13,0.23 c0.06,0.09,0.12,0.18,0.17,0.28c0.05,0.08,0.09,0.16,0.14,0.24c0.061,0.1,0.11,0.2,0.17,0.31c0.051,0.08,0.091,0.17,0.141,0.26 c0.06,0.1,0.109,0.21,0.17,0.32c0.05,0.09,0.09,0.19,0.14,0.28c0.061,0.11,0.12,0.23,0.17,0.34c0.05,0.1,0.101,0.21,0.15,0.31 c0.05,0.12,0.11,0.23,0.17,0.35c0,0.01,0,0.02,0.01,0.03c-1.24,0.68-2.62,1.04-4.05,1.04c-1.43,0-2.81-0.36-4.05-1.04 C45.96,12.04,45.96,12.03,45.96,12.02z M60.88,44.27c0.37,0,0.67,0.3,0.67,0.66v1.45c0,0.37-0.3,0.66-0.67,0.66H39.11 c-0.36,0-0.66-0.29-0.66-0.65v-1.46c0-0.36,0.3-0.66,0.66-0.66H60.88z M39.88,31.16c-0.2,2.62-0.31,5.37-0.31,8.25v3.23h-0.46 c-1.26,0-2.28,1.03-2.28,2.29v1.45c0,1,0.64,1.85,1.53,2.16l-2.9,2.58h-5.48C30.21,37.34,36.28,32.7,39.88,31.16z' })] }) }));
8
+ }
9
+ exports.SeoIcon = SeoIcon;
10
+ //# sourceMappingURL=icon-seo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-seo.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-seo.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,OAAO,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC7B,OAAO,CACL,gCAAK,OAAO,EAAC,KAAK,EAAC,CAAC,EAAC,KAAK,EAAC,CAAC,EAAC,KAAK,EAAC,OAAO,EAAC,aAAa,uBAAmB,iBAAiB,EAAC,IAAI,EAAE,KAAK,YACtG,0CACE,iCAAM,CAAC,EAAC,w/BAAw/B,GAAG,EACngC,iCAAM,CAAC,EAAC,8UAA8U,GAAG,EACzV,iCAAM,CAAC,EAAC,moCAAmoC,GAAG,EAC9oC,iCAAM,CAAC,EAAC,m3FAAm3F,GAAG,IAC53F,GACA,CACP,CAAA;AACH,CAAC;AAXD,0BAWC"}
@@ -0,0 +1,2 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconShareV2({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IconShareV2 = void 0;
4
4
  var jsx_runtime_1 = require("react/jsx-runtime");
5
5
  function IconShareV2(_a) {
6
- var fill = _a.fill;
7
- return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '15', height: '16', viewBox: '0 0 15 16', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M13.5537 14.3202C13.6516 14.5166 13.8511 14.6347 14.0625 14.6347C14.1059 14.6347 14.1495 14.6297 14.1924 14.6198L14.1933 14.6197C14.4496 14.5586 14.6313 14.3298 14.6313 14.0659C14.6313 11.9385 14.4986 9.95877 13.5338 8.49245C12.5722 7.03081 10.8018 6.10243 7.6 6.00541V2.81593C7.6 2.58984 7.46619 2.38555 7.25952 2.29487L7.25932 2.29478L13.5537 14.3202ZM13.5537 14.3202C13.5537 14.3203 13.5538 14.3203 13.5538 14.3203L13.6432 14.2756L13.5537 14.3202C13.1187 13.4503 12.7055 12.6273 11.8569 12.0025C11.0223 11.3879 9.75351 10.9567 7.6 10.8929V14.0659C7.6 14.292 7.46619 14.4963 7.25946 14.5869C7.05283 14.6774 6.81144 14.6374 6.64526 14.4836L13.5537 14.3202ZM0.551698 8.85877L6.64513 14.4835L0.55165 8.02302L0.619336 8.09663L0.551508 8.02315L0.551578 8.02309C0.434753 8.13055 0.36875 8.28233 0.36875 8.44093C0.36875 8.59952 0.434755 8.75135 0.551649 8.85872C0.551666 8.85874 0.551682 8.85875 0.551698 8.85877ZM6.64513 2.39827L6.71309 2.47163L6.64526 2.39815L6.64513 2.39827ZM6.4625 4.11507V6.56593C6.4625 6.88026 6.71692 7.13468 7.03125 7.13468C9.61124 7.13468 11.1528 7.6343 12.0785 8.5086C12.9393 9.32163 13.286 10.4759 13.418 11.9159C12.9454 11.3535 12.3216 10.8441 11.4202 10.4606C10.3831 10.0195 8.98338 9.74718 7.03125 9.74718C6.71692 9.74718 6.4625 10.0016 6.4625 10.3159V12.7668L1.7761 8.44093L6.4625 4.11507Z', fill: fill, stroke: fill, "stroke-width": '0.2' }) }));
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '15', height: '16', viewBox: '0 0 15 16', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M13.5537 14.3202C13.6516 14.5166 13.8511 14.6347 14.0625 14.6347C14.1059 14.6347 14.1495 14.6297 14.1924 14.6198L14.1933 14.6197C14.4496 14.5586 14.6313 14.3298 14.6313 14.0659C14.6313 11.9385 14.4986 9.95877 13.5338 8.49245C12.5722 7.03081 10.8018 6.10243 7.6 6.00541V2.81593C7.6 2.58984 7.46619 2.38555 7.25952 2.29487L7.25932 2.29478L13.5537 14.3202ZM13.5537 14.3202C13.5537 14.3203 13.5538 14.3203 13.5538 14.3203L13.6432 14.2756L13.5537 14.3202C13.1187 13.4503 12.7055 12.6273 11.8569 12.0025C11.0223 11.3879 9.75351 10.9567 7.6 10.8929V14.0659C7.6 14.292 7.46619 14.4963 7.25946 14.5869C7.05283 14.6774 6.81144 14.6374 6.64526 14.4836L13.5537 14.3202ZM0.551698 8.85877L6.64513 14.4835L0.55165 8.02302L0.619336 8.09663L0.551508 8.02315L0.551578 8.02309C0.434753 8.13055 0.36875 8.28233 0.36875 8.44093C0.36875 8.59952 0.434755 8.75135 0.551649 8.85872C0.551666 8.85874 0.551682 8.85875 0.551698 8.85877ZM6.64513 2.39827L6.71309 2.47163L6.64526 2.39815L6.64513 2.39827ZM6.4625 4.11507V6.56593C6.4625 6.88026 6.71692 7.13468 7.03125 7.13468C9.61124 7.13468 11.1528 7.6343 12.0785 8.5086C12.9393 9.32163 13.286 10.4759 13.418 11.9159C12.9454 11.3535 12.3216 10.8441 11.4202 10.4606C10.3831 10.0195 8.98338 9.74718 7.03125 9.74718C6.71692 9.74718 6.4625 10.0016 6.4625 10.3159V12.7668L1.7761 8.44093L6.4625 4.11507Z', fill: color, stroke: color, "stroke-width": '0.2' }) }));
8
8
  }
9
9
  exports.IconShareV2 = IconShareV2;
10
- //# sourceMappingURL=share-v2.js.map
10
+ //# sourceMappingURL=icon-share-v2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-share-v2.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-share-v2.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,WAAW,CAAC,EAAgB;QAAd,KAAK,WAAA;IACjC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,syCAAsyC,EACxyC,IAAI,EAAE,KAAK,EACX,MAAM,EAAE,KAAK,kBACA,KAAK,GAClB,GACE,CACP,CAAA;AACH,CAAC;AAXD,kCAWC"}
@@ -0,0 +1,3 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconShopping({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
3
+ export declare function IconShopping2({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -3,13 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IconShopping2 = exports.IconShopping = void 0;
4
4
  var jsx_runtime_1 = require("react/jsx-runtime");
5
5
  function IconShopping(_a) {
6
- var fill = _a.fill;
7
- return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '16', height: '18', viewBox: '0 0 16 18', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M3.42076 0.666687H12.5874C12.8497 0.666687 13.0967 0.790179 13.2541 1.00002L15.5041 4.00002V16.5C15.5041 16.9603 15.131 17.3334 14.6708 17.3334H1.33742C0.877189 17.3334 0.504089 16.9603 0.504089 16.5V4.00002L2.75409 1.00002C2.91147 0.790179 3.15846 0.666687 3.42076 0.666687ZM13.8374 5.66669H2.17076V15.6667H13.8374V5.66669ZM13.4208 4.00002L12.1708 2.33335H3.83742L2.58742 4.00002H13.4208ZM5.50409 7.33335V9.00002C5.50409 10.3808 6.62336 11.5 8.00411 11.5C9.38477 11.5 10.5041 10.3808 10.5041 9.00002V7.33335H12.1708V9.00002C12.1708 11.3012 10.3053 13.1667 8.00411 13.1667C5.70291 13.1667 3.83742 11.3012 3.83742 9.00002V7.33335H5.50409Z', fill: fill }) }));
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '16', height: '18', viewBox: '0 0 16 18', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M3.42076 0.666687H12.5874C12.8497 0.666687 13.0967 0.790179 13.2541 1.00002L15.5041 4.00002V16.5C15.5041 16.9603 15.131 17.3334 14.6708 17.3334H1.33742C0.877189 17.3334 0.504089 16.9603 0.504089 16.5V4.00002L2.75409 1.00002C2.91147 0.790179 3.15846 0.666687 3.42076 0.666687ZM13.8374 5.66669H2.17076V15.6667H13.8374V5.66669ZM13.4208 4.00002L12.1708 2.33335H3.83742L2.58742 4.00002H13.4208ZM5.50409 7.33335V9.00002C5.50409 10.3808 6.62336 11.5 8.00411 11.5C9.38477 11.5 10.5041 10.3808 10.5041 9.00002V7.33335H12.1708V9.00002C12.1708 11.3012 10.3053 13.1667 8.00411 13.1667C5.70291 13.1667 3.83742 11.3012 3.83742 9.00002V7.33335H5.50409Z', fill: color }) }));
8
8
  }
9
9
  exports.IconShopping = IconShopping;
10
10
  function IconShopping2(_a) {
11
- var fill = _a.fill;
12
- return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M22.4088 23.2111L20.5847 5.8405C20.5464 5.47686 20.2399 5.20073 19.8743 5.20073H16.4458V4.41906C16.4458 1.98248 14.4633 0 12.0267 0C9.58998 0 7.6075 1.98248 7.6075 4.41906V5.20073H4.17904C3.81338 5.20073 3.50687 5.47686 3.4686 5.8405L1.6445 23.2111C1.62345 23.4124 1.68881 23.6132 1.82413 23.7637C1.95963 23.9141 2.15262 24 2.35495 24H21.6982C21.9007 24 22.0937 23.9141 22.229 23.7637C22.3647 23.6132 22.4299 23.4124 22.4088 23.2111ZM9.03609 4.41906C9.03609 2.7702 10.3777 1.42859 12.0267 1.42859C13.6756 1.42859 15.0172 2.7702 15.0172 4.41906V5.20073H9.03609V4.41906ZM3.14816 22.5714L4.82229 6.62932H7.6075V8.20347C7.6075 8.59788 7.92739 8.91777 8.3218 8.91777C8.71621 8.91777 9.03609 8.59788 9.03609 8.20347V6.62932H15.0172V8.20347C15.0172 8.59788 15.3371 8.91777 15.7315 8.91777C16.1259 8.91777 16.4458 8.59788 16.4458 8.20347V6.62932H19.231L20.9051 22.5714H3.14816Z', fill: fill }) }));
11
+ var color = _a.color;
12
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M22.4088 23.2111L20.5847 5.8405C20.5464 5.47686 20.2399 5.20073 19.8743 5.20073H16.4458V4.41906C16.4458 1.98248 14.4633 0 12.0267 0C9.58998 0 7.6075 1.98248 7.6075 4.41906V5.20073H4.17904C3.81338 5.20073 3.50687 5.47686 3.4686 5.8405L1.6445 23.2111C1.62345 23.4124 1.68881 23.6132 1.82413 23.7637C1.95963 23.9141 2.15262 24 2.35495 24H21.6982C21.9007 24 22.0937 23.9141 22.229 23.7637C22.3647 23.6132 22.4299 23.4124 22.4088 23.2111ZM9.03609 4.41906C9.03609 2.7702 10.3777 1.42859 12.0267 1.42859C13.6756 1.42859 15.0172 2.7702 15.0172 4.41906V5.20073H9.03609V4.41906ZM3.14816 22.5714L4.82229 6.62932H7.6075V8.20347C7.6075 8.59788 7.92739 8.91777 8.3218 8.91777C8.71621 8.91777 9.03609 8.59788 9.03609 8.20347V6.62932H15.0172V8.20347C15.0172 8.59788 15.3371 8.91777 15.7315 8.91777C16.1259 8.91777 16.4458 8.59788 16.4458 8.20347V6.62932H19.231L20.9051 22.5714H3.14816Z', fill: color }) }));
13
13
  }
14
14
  exports.IconShopping2 = IconShopping2;
15
- //# sourceMappingURL=shopping.js.map
15
+ //# sourceMappingURL=icon-shopping.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-shopping.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-shopping.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,YAAY,CAAC,EAAgB;QAAd,KAAK,WAAA;IAClC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,+nBAA+nB,EACjoB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,oCASC;AAED,SAAgB,aAAa,CAAC,EAAgB;QAAd,KAAK,WAAA;IACnC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,u2BAAu2B,EACz2B,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,sCASC"}
@@ -0,0 +1,2 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconStar({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IconStar = void 0;
4
4
  var jsx_runtime_1 = require("react/jsx-runtime");
5
5
  function IconStar(_a) {
6
- var fill = _a.fill;
7
- return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', children: [(0, jsx_runtime_1.jsx)("g", { clipPath: 'url(#clip0_13_2318)', children: (0, jsx_runtime_1.jsx)("path", { d: 'M18.1655 23.5C17.7383 23.4984 17.3227 23.3611 16.9787 23.108L12.3611 19.7512C12.2565 19.6753 12.1305 19.6345 12.0011 19.6345C11.8718 19.6345 11.7458 19.6753 11.6411 19.7512L7.02355 23.108C6.67848 23.3586 6.26285 23.4936 5.83625 23.4936C5.40965 23.4936 4.99399 23.3587 4.64888 23.1082C4.30377 22.8577 4.04693 22.5044 3.91519 22.099C3.78345 21.6937 3.78357 21.257 3.91555 20.8517L5.67955 15.4293C5.7199 15.3061 5.72003 15.1733 5.67991 15.0501C5.63979 14.9268 5.5615 14.8195 5.45635 14.7436L0.841148 11.3916C0.496156 11.1414 0.239254 10.7886 0.107229 10.3836C-0.0247956 9.97867 -0.0251717 9.54236 0.106155 9.13718C0.237481 8.732 0.493775 8.37873 0.838335 8.12795C1.1829 7.87717 1.59805 7.74175 2.02435 7.74108H7.73155C7.86143 7.74145 7.98806 7.70052 8.09312 7.62423C8.19818 7.54794 8.27622 7.44023 8.31595 7.31669L10.0811 1.89427C10.2133 1.48959 10.4702 1.13703 10.815 0.887037C11.1599 0.637039 11.5751 0.502411 12.0011 0.502411C12.4272 0.502411 12.8424 0.637039 13.1873 0.887037C13.5321 1.13703 13.789 1.48959 13.9211 1.89427L15.6851 7.31669C15.7249 7.44023 15.8029 7.54794 15.908 7.62423C16.013 7.70052 16.1397 7.74145 16.2695 7.74108H21.9767C22.4032 7.7415 22.8185 7.87674 23.1632 8.12742C23.508 8.37811 23.7645 8.73138 23.896 9.13661C24.0274 9.54185 24.0272 9.97827 23.8952 10.3833C23.7632 10.7884 23.5062 11.1413 23.1611 11.3916L18.5435 14.7484C18.4384 14.8243 18.3601 14.9316 18.32 15.0549C18.2799 15.1781 18.28 15.3109 18.3203 15.4341L20.0843 20.8565C20.2211 21.2614 20.2236 21.6995 20.0916 22.1059C19.9595 22.5123 19.6999 22.8654 19.3511 23.1128C19.0072 23.3659 18.5916 23.5032 18.1643 23.5048L18.1655 23.5ZM12.0011 18.2334C12.4278 18.2339 12.8433 18.3695 13.1879 18.6207L17.8055 21.9775C17.9105 22.0531 18.0367 22.0937 18.1661 22.0935C18.2955 22.0933 18.4216 22.0523 18.5263 21.9762C18.631 21.9002 18.709 21.7931 18.7491 21.6702C18.7893 21.5473 18.7896 21.4148 18.7499 21.2917L16.9859 15.8693C16.8533 15.4641 16.8527 15.0273 16.9845 14.6218C17.1163 14.2163 17.3735 13.8631 17.7191 13.6131L22.3368 10.2563C22.4415 10.1801 22.5195 10.0728 22.5596 9.94967C22.5996 9.82655 22.5997 9.69393 22.5597 9.57077C22.5198 9.44761 22.4419 9.34022 22.3372 9.26396C22.2325 9.18769 22.1063 9.14645 21.9767 9.14614H16.2683C15.8418 9.14671 15.4261 9.01202 15.081 8.76146C14.736 8.5109 14.4794 8.1574 14.3483 7.75187L12.5843 2.32826C12.544 2.20537 12.4658 2.09835 12.361 2.02247C12.2562 1.9466 12.13 1.90574 12.0005 1.90574C11.8711 1.90574 11.7449 1.9466 11.6401 2.02247C11.5353 2.09835 11.4571 2.20537 11.4167 2.32826L9.65275 7.75187C9.52166 8.1574 9.26512 8.5109 8.92008 8.76146C8.57504 9.01202 8.15931 9.14671 7.73275 9.14614H2.02435C1.89476 9.14645 1.7686 9.18769 1.66389 9.26396C1.55918 9.34022 1.48129 9.44761 1.44135 9.57077C1.40141 9.69393 1.40147 9.82655 1.44152 9.94967C1.48158 10.0728 1.55957 10.1801 1.66435 10.2563L6.28195 13.6131C6.62757 13.8631 6.88481 14.2163 7.01658 14.6218C7.14835 15.0273 7.14785 15.4641 7.01515 15.8693L5.25115 21.2917C5.21119 21.415 5.2113 21.5477 5.25146 21.6709C5.29162 21.7941 5.36978 21.9015 5.47473 21.9776C5.57969 22.0537 5.70607 22.0947 5.83576 22.0947C5.96546 22.0946 6.09182 22.0536 6.19675 21.9775L10.8143 18.6207C11.159 18.3694 11.5745 18.2338 12.0011 18.2334Z', fill: fill }) }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'clip0_13_2318', children: (0, jsx_runtime_1.jsx)("rect", { width: '24', height: '23', fill: fill, transform: 'translate(0 0.5)' }) }) })] }));
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', children: [(0, jsx_runtime_1.jsx)("g", { clipPath: 'url(#clip0_13_2318)', children: (0, jsx_runtime_1.jsx)("path", { d: 'M18.1655 23.5C17.7383 23.4984 17.3227 23.3611 16.9787 23.108L12.3611 19.7512C12.2565 19.6753 12.1305 19.6345 12.0011 19.6345C11.8718 19.6345 11.7458 19.6753 11.6411 19.7512L7.02355 23.108C6.67848 23.3586 6.26285 23.4936 5.83625 23.4936C5.40965 23.4936 4.99399 23.3587 4.64888 23.1082C4.30377 22.8577 4.04693 22.5044 3.91519 22.099C3.78345 21.6937 3.78357 21.257 3.91555 20.8517L5.67955 15.4293C5.7199 15.3061 5.72003 15.1733 5.67991 15.0501C5.63979 14.9268 5.5615 14.8195 5.45635 14.7436L0.841148 11.3916C0.496156 11.1414 0.239254 10.7886 0.107229 10.3836C-0.0247956 9.97867 -0.0251717 9.54236 0.106155 9.13718C0.237481 8.732 0.493775 8.37873 0.838335 8.12795C1.1829 7.87717 1.59805 7.74175 2.02435 7.74108H7.73155C7.86143 7.74145 7.98806 7.70052 8.09312 7.62423C8.19818 7.54794 8.27622 7.44023 8.31595 7.31669L10.0811 1.89427C10.2133 1.48959 10.4702 1.13703 10.815 0.887037C11.1599 0.637039 11.5751 0.502411 12.0011 0.502411C12.4272 0.502411 12.8424 0.637039 13.1873 0.887037C13.5321 1.13703 13.789 1.48959 13.9211 1.89427L15.6851 7.31669C15.7249 7.44023 15.8029 7.54794 15.908 7.62423C16.013 7.70052 16.1397 7.74145 16.2695 7.74108H21.9767C22.4032 7.7415 22.8185 7.87674 23.1632 8.12742C23.508 8.37811 23.7645 8.73138 23.896 9.13661C24.0274 9.54185 24.0272 9.97827 23.8952 10.3833C23.7632 10.7884 23.5062 11.1413 23.1611 11.3916L18.5435 14.7484C18.4384 14.8243 18.3601 14.9316 18.32 15.0549C18.2799 15.1781 18.28 15.3109 18.3203 15.4341L20.0843 20.8565C20.2211 21.2614 20.2236 21.6995 20.0916 22.1059C19.9595 22.5123 19.6999 22.8654 19.3511 23.1128C19.0072 23.3659 18.5916 23.5032 18.1643 23.5048L18.1655 23.5ZM12.0011 18.2334C12.4278 18.2339 12.8433 18.3695 13.1879 18.6207L17.8055 21.9775C17.9105 22.0531 18.0367 22.0937 18.1661 22.0935C18.2955 22.0933 18.4216 22.0523 18.5263 21.9762C18.631 21.9002 18.709 21.7931 18.7491 21.6702C18.7893 21.5473 18.7896 21.4148 18.7499 21.2917L16.9859 15.8693C16.8533 15.4641 16.8527 15.0273 16.9845 14.6218C17.1163 14.2163 17.3735 13.8631 17.7191 13.6131L22.3368 10.2563C22.4415 10.1801 22.5195 10.0728 22.5596 9.94967C22.5996 9.82655 22.5997 9.69393 22.5597 9.57077C22.5198 9.44761 22.4419 9.34022 22.3372 9.26396C22.2325 9.18769 22.1063 9.14645 21.9767 9.14614H16.2683C15.8418 9.14671 15.4261 9.01202 15.081 8.76146C14.736 8.5109 14.4794 8.1574 14.3483 7.75187L12.5843 2.32826C12.544 2.20537 12.4658 2.09835 12.361 2.02247C12.2562 1.9466 12.13 1.90574 12.0005 1.90574C11.8711 1.90574 11.7449 1.9466 11.6401 2.02247C11.5353 2.09835 11.4571 2.20537 11.4167 2.32826L9.65275 7.75187C9.52166 8.1574 9.26512 8.5109 8.92008 8.76146C8.57504 9.01202 8.15931 9.14671 7.73275 9.14614H2.02435C1.89476 9.14645 1.7686 9.18769 1.66389 9.26396C1.55918 9.34022 1.48129 9.44761 1.44135 9.57077C1.40141 9.69393 1.40147 9.82655 1.44152 9.94967C1.48158 10.0728 1.55957 10.1801 1.66435 10.2563L6.28195 13.6131C6.62757 13.8631 6.88481 14.2163 7.01658 14.6218C7.14835 15.0273 7.14785 15.4641 7.01515 15.8693L5.25115 21.2917C5.21119 21.415 5.2113 21.5477 5.25146 21.6709C5.29162 21.7941 5.36978 21.9015 5.47473 21.9776C5.57969 22.0537 5.70607 22.0947 5.83576 22.0947C5.96546 22.0946 6.09182 22.0536 6.19675 21.9775L10.8143 18.6207C11.159 18.3694 11.5745 18.2338 12.0011 18.2334Z', fill: color }) }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'clip0_13_2318', children: (0, jsx_runtime_1.jsx)("rect", { width: '24', height: '23', fill: color, transform: 'translate(0 0.5)' }) }) })] }));
8
8
  }
9
9
  exports.IconStar = IconStar;
10
- //# sourceMappingURL=star.js.map
10
+ //# sourceMappingURL=icon-star.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-star.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-star.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,QAAQ,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC9B,OAAO,CACL,iCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,aAC5F,8BAAG,QAAQ,EAAC,qBAAqB,YAC/B,iCACE,CAAC,EAAC,6nGAA6nG,EAC/nG,IAAI,EAAE,KAAK,GACX,GACA,EACJ,2CACE,qCAAU,EAAE,EAAC,eAAe,YAC1B,iCAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAE,KAAK,EAAE,SAAS,EAAC,kBAAkB,GAAG,GAChE,GACN,IACH,CACP,CAAA;AACH,CAAC;AAhBD,4BAgBC"}
@@ -0,0 +1,2 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconStarBg({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IconStarBg = void 0;
4
4
  var jsx_runtime_1 = require("react/jsx-runtime");
5
5
  function IconStarBg(_a) {
6
- var fill = _a.fill;
7
- return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '20', height: '21', viewBox: '0 0 20 21', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M9.07294 2.78894C9.41 1.95549 10.59 1.95549 10.9271 2.78894L12.3639 6.34186C12.5072 6.69608 12.8397 6.93771 13.2209 6.96449L17.0439 7.2331C17.9407 7.29611 18.3054 8.41837 17.6169 8.99647L14.6819 11.4609C14.3892 11.7066 14.2622 12.0976 14.3545 12.4683L15.2804 16.1873C15.4977 17.0597 14.543 17.7533 13.7804 17.2771L10.5296 15.2473C10.2055 15.0449 9.79446 15.0449 9.47036 15.2473L6.21957 17.2771C5.45699 17.7533 4.50235 17.0597 4.71955 16.1873L5.64547 12.4683C5.73779 12.0976 5.61075 11.7066 5.31814 11.4609L2.38312 8.99647C1.69462 8.41836 2.05926 7.29611 2.95607 7.2331L6.77912 6.96449C7.16027 6.93771 7.49284 6.69608 7.63609 6.34187L9.07294 2.78894Z', fill: fill }) }));
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '20', height: '21', viewBox: '0 0 20 21', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M9.07294 2.78894C9.41 1.95549 10.59 1.95549 10.9271 2.78894L12.3639 6.34186C12.5072 6.69608 12.8397 6.93771 13.2209 6.96449L17.0439 7.2331C17.9407 7.29611 18.3054 8.41837 17.6169 8.99647L14.6819 11.4609C14.3892 11.7066 14.2622 12.0976 14.3545 12.4683L15.2804 16.1873C15.4977 17.0597 14.543 17.7533 13.7804 17.2771L10.5296 15.2473C10.2055 15.0449 9.79446 15.0449 9.47036 15.2473L6.21957 17.2771C5.45699 17.7533 4.50235 17.0597 4.71955 16.1873L5.64547 12.4683C5.73779 12.0976 5.61075 11.7066 5.31814 11.4609L2.38312 8.99647C1.69462 8.41836 2.05926 7.29611 2.95607 7.2331L6.77912 6.96449C7.16027 6.93771 7.49284 6.69608 7.63609 6.34187L9.07294 2.78894Z', fill: color }) }));
8
8
  }
9
9
  exports.IconStarBg = IconStarBg;
10
- //# sourceMappingURL=starBg.js.map
10
+ //# sourceMappingURL=icon-starBg.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-starBg.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-starBg.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,UAAU,CAAC,EAAgB;QAAd,KAAK,WAAA;IAChC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,2oBAA2oB,EAC7oB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,gCASC"}
@@ -0,0 +1,2 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconThreeDots({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IconThreeDots = void 0;
4
+ var jsx_runtime_1 = require("react/jsx-runtime");
5
+ function IconThreeDots(_a) {
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '800px', height: '800px', viewBox: '0 0 16 16', fill: color, children: (0, jsx_runtime_1.jsx)("path", { d: 'M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z' }) }));
8
+ }
9
+ exports.IconThreeDots = IconThreeDots;
10
+ //# sourceMappingURL=icon-three-dots.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-three-dots.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-three-dots.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,aAAa,CAAC,EAAgB;QAAd,KAAK,WAAA;IACnC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,OAAO,EAAC,MAAM,EAAC,OAAO,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,YAClG,iCAAM,CAAC,EAAC,gIAAgI,GAAG,GACvI,CACP,CAAA;AACH,CAAC;AAND,sCAMC"}
@@ -0,0 +1 @@
1
+ export declare function IconTopChevron(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IconTopChevron = void 0;
4
+ var jsx_runtime_1 = require("react/jsx-runtime");
5
+ function IconTopChevron() {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 24 24', version: '1.1', xmlnsXlink: 'http://www.w3.org/1999/xlink', transform: 'matrix(6.123233995736766e-17,1,1,-6.123233995736766e-17,0,0)', children: (0, jsx_runtime_1.jsx)("path", { d: 'M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z' }) }));
7
+ }
8
+ exports.IconTopChevron = IconTopChevron;
9
+ //# sourceMappingURL=icon-top-chevron.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-top-chevron.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-top-chevron.tsx"],"names":[],"mappings":";;;;AAAA,SAAgB,cAAc;IAC5B,OAAO,CACL,gCACE,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,OAAO,EAAC,KAAK,EACb,UAAU,EAAC,8BAA8B,EACzC,SAAS,EAAC,8DAA8D,YAExE,iCAAM,CAAC,EAAC,0DAA0D,GAAQ,GACtE,CACP,CAAA;AACH,CAAC;AAZD,wCAYC"}
@@ -0,0 +1,2 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconTopNavigation({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IconTopNavigation = void 0;
4
+ var jsx_runtime_1 = require("react/jsx-runtime");
5
+ function IconTopNavigation(_a) {
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { fill: color, viewBox: '0 0 15 15', xmlns: 'http://www.w3.org/2000/svg', id: 'arrow', version: '1.1', xmlnsXlink: 'http://www.w3.org/1999/xlink', transform: 'matrix(-1.8369701987210297e-16,-1,-1,1.8369701987210297e-16,0,0)', children: (0, jsx_runtime_1.jsx)("path", { d: 'M8.29289 2.29289C8.68342 1.90237 9.31658 1.90237 9.70711 2.29289L14.2071 6.79289C14.5976 7.18342 14.5976 7.81658 14.2071 8.20711L9.70711 12.7071C9.31658 13.0976 8.68342 13.0976 8.29289 12.7071C7.90237 12.3166 7.90237 11.6834 8.29289 11.2929L11 8.5H1.5C0.947715 8.5 0.5 8.05228 0.5 7.5C0.5 6.94772 0.947715 6.5 1.5 6.5H11L8.29289 3.70711C7.90237 3.31658 7.90237 2.68342 8.29289 2.29289Z' }) }));
8
+ }
9
+ exports.IconTopNavigation = IconTopNavigation;
10
+ //# sourceMappingURL=icon-top-navigation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-top-navigation.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-top-navigation.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,iBAAiB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACvC,OAAO,CACL,gCACE,IAAI,EAAE,KAAK,EACX,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,4BAA4B,EAClC,EAAE,EAAC,OAAO,EACV,OAAO,EAAC,KAAK,EACb,UAAU,EAAC,8BAA8B,EACzC,SAAS,EAAC,kEAAkE,YAE5E,iCAAM,CAAC,EAAC,mYAAmY,GAAQ,GAC/Y,CACP,CAAA;AACH,CAAC;AAdD,8CAcC"}
@@ -1,2 +1,2 @@
1
1
  import { IIcon } from '../interfaces.js';
2
- export declare function IconBasicLeftArrow({ stroke }: IIcon): import("react/jsx-runtime").JSX.Element;
2
+ export declare function TransparentMailIcon({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TransparentMailIcon = void 0;
4
4
  var jsx_runtime_1 = require("react/jsx-runtime");
5
5
  function TransparentMailIcon(_a) {
6
- var fill = _a.fill;
7
- return ((0, jsx_runtime_1.jsx)("svg", { viewBox: '0 0 20 18', children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("path", { fill: fill, d: 'M17.502 2l-7.441 6.662L2.511 2zM18 16H2V4.216l8.072 7.122L18 4.238zM0 1v16a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1z' }) }) }) }));
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: '0 0 20 18', children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: 'M17.502 2l-7.441 6.662L2.511 2zM18 16H2V4.216l8.072 7.122L18 4.238zM0 1v16a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1z' }) }) }) }));
8
8
  }
9
9
  exports.TransparentMailIcon = TransparentMailIcon;
10
- //# sourceMappingURL=transparent-mail.js.map
10
+ //# sourceMappingURL=icon-transparent-mail.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-transparent-mail.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-transparent-mail.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,mBAAmB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACzC,OAAO,CACL,gCAAK,OAAO,EAAC,WAAW,YACtB,wCACE,wCACE,iCACE,IAAI,EAAE,KAAK,EACX,CAAC,EAAC,4IAA4I,GAC9I,GACA,GACF,GACA,CACP,CAAA;AACH,CAAC;AAbD,kDAaC"}
@@ -0,0 +1,2 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconTransparentPhone({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IconTransparentPhone = void 0;
4
+ var jsx_runtime_1 = require("react/jsx-runtime");
5
+ function IconTransparentPhone(_a) {
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: '0 0 20 20', children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: 'M17.183 18.26a17.253 17.253 0 0 1-7.485-2.667 17.014 17.014 0 0 1-5.205-5.208A17.251 17.251 0 0 1 1.83 2.872a.916.916 0 0 1 .91-.99h2.759c.451 0 .839.336.904.782.124.943.356 1.872.69 2.764a.916.916 0 0 1-.205.963L5.73 7.55a.914.914 0 0 0-.148 1.098 15.54 15.54 0 0 0 5.825 5.825.914.914 0 0 0 1.097-.148l1.159-1.159a.909.909 0 0 1 .964-.203c.89.332 1.82.564 2.763.689a.914.914 0 0 1 .782.95v2.744a.916.916 0 0 1-.99.915zm.075 1.83c.688 0 1.346-.256 1.853-.721.567-.52.891-1.26.888-2.03v-2.728a2.74 2.74 0 0 0-2.365-2.771 10.83 10.83 0 0 1-2.366-.59 2.731 2.731 0 0 0-.964-.175 2.725 2.725 0 0 0-1.931.796l-.656.655a13.716 13.716 0 0 1-4.19-4.19l.655-.655.004-.004c.75-.758.992-1.893.618-2.89a10.835 10.835 0 0 1-.591-2.375A2.741 2.741 0 0 0 5.499.054h-2.76C1.97.054 1.233.38.716.947a2.747 2.747 0 0 0-.705 2.11 19.087 19.087 0 0 0 2.945 8.318 18.854 18.854 0 0 0 5.758 5.758 19.09 19.09 0 0 0 8.297 2.946c.081.007.164.011.246.011z' }) }) }) }));
8
+ }
9
+ exports.IconTransparentPhone = IconTransparentPhone;
10
+ //# sourceMappingURL=icon-transparent-phone.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-transparent-phone.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-transparent-phone.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,oBAAoB,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC1C,OAAO,CACL,gCAAK,OAAO,EAAC,WAAW,YACtB,wCACE,wCACE,iCACE,IAAI,EAAE,KAAK,EACX,CAAC,EAAC,o6BAAo6B,GACt6B,GACA,GACF,GACA,CACP,CAAA;AACH,CAAC;AAbD,oDAaC"}
@@ -0,0 +1,3 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function TwitterIcon({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
3
+ export declare function TwitterInverseIcon({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TwitterInverseIcon = exports.TwitterIcon = void 0;
4
+ var jsx_runtime_1 = require("react/jsx-runtime");
5
+ function TwitterIcon(_a) {
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: '0 0 512 512', children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: 'M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z' }) }));
8
+ }
9
+ exports.TwitterIcon = TwitterIcon;
10
+ function TwitterInverseIcon(_a) {
11
+ var color = _a.color;
12
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: '0 0 448 512', children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: 'M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM351.3 199.3v0c0 86.7-66 186.6-186.6 186.6c-37.2 0-71.7-10.8-100.7-29.4c5.3 .6 10.4 .8 15.8 .8c30.7 0 58.9-10.4 81.4-28c-28.8-.6-53-19.5-61.3-45.5c10.1 1.5 19.2 1.5 29.6-1.2c-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3c-9-6-16.4-14.1-21.5-23.6s-7.8-20.2-7.7-31c0-12.2 3.2-23.4 8.9-33.1c32.3 39.8 80.8 65.8 135.2 68.6c-9.3-44.5 24-80.6 64-80.6c18.9 0 35.9 7.9 47.9 20.7c14.8-2.8 29-8.3 41.6-15.8c-4.9 15.2-15.2 28-28.8 36.1c13.2-1.4 26-5.1 37.8-10.2c-8.9 13.1-20.1 24.7-32.9 34c.2 2.8 .2 5.7 .2 8.5z' }) }));
13
+ }
14
+ exports.TwitterInverseIcon = TwitterInverseIcon;
15
+ //# sourceMappingURL=icon-twitter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-twitter.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-twitter.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,WAAW,CAAC,EAAgB;QAAd,KAAK,WAAA;IACjC,OAAO,CACL,gCAAK,OAAO,EAAC,aAAa,YACxB,iCACE,IAAI,EAAE,KAAK,EACX,CAAC,EAAC,yxBAAyxB,GAC3xB,GACE,CACP,CAAA;AACH,CAAC;AATD,kCASC;AAED,SAAgB,kBAAkB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACxC,OAAO,CACL,gCAAK,OAAO,EAAC,aAAa,YACxB,iCACE,IAAI,EAAE,KAAK,EACX,CAAC,EAAC,ymBAAymB,GAC3mB,GACE,CACP,CAAA;AACH,CAAC;AATD,gDASC"}
@@ -0,0 +1,2 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconUpload({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IconUpload = void 0;
4
4
  var jsx_runtime_1 = require("react/jsx-runtime");
5
5
  function IconUpload(_a) {
6
- var fill = _a.fill;
7
- return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '16', height: '17', viewBox: '0 0 16 17', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M0.5 14.8333H15.5V16.5H0.5V14.8333ZM8.83333 3.85703V13.1667H7.16667V3.85703L2.10744 8.91625L0.928933 7.73775L8 0.666672L15.0711 7.73775L13.8926 8.91625L8.83333 3.85703Z', fill: fill }) }));
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '16', height: '17', viewBox: '0 0 16 17', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M0.5 14.8333H15.5V16.5H0.5V14.8333ZM8.83333 3.85703V13.1667H7.16667V3.85703L2.10744 8.91625L0.928933 7.73775L8 0.666672L15.0711 7.73775L13.8926 8.91625L8.83333 3.85703Z', fill: color }) }));
8
8
  }
9
9
  exports.IconUpload = IconUpload;
10
- //# sourceMappingURL=upload.js.map
10
+ //# sourceMappingURL=icon-upload.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-upload.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-upload.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,UAAU,CAAC,EAAgB;QAAd,KAAK,WAAA;IAChC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,0KAA0K,EAC5K,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,gCASC"}
@@ -0,0 +1,3 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconUser({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
3
+ export declare function IconUseroBg({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -3,13 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IconUseroBg = exports.IconUser = void 0;
4
4
  var jsx_runtime_1 = require("react/jsx-runtime");
5
5
  function IconUser(_a) {
6
- var fill = _a.fill;
7
- return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '40', height: '40', viewBox: '50 30 40 40', children: (0, jsx_runtime_1.jsx)("path", { d: 'M84.142 35.858A19.87 19.87 0 0 0 70 30a19.869 19.869 0 0 0-14.142 5.858A19.869 19.869 0 0 0 50 50a19.87 19.87 0 0 0 5.858 14.142A19.869 19.869 0 0 0 70 70a19.87 19.87 0 0 0 14.142-5.858A19.87 19.87 0 0 0 90 50c0-5.342-2.08-10.365-5.858-14.142ZM60.027 64.56A10.098 10.098 0 0 1 70 56.193c4.964 0 9.137 3.552 9.973 8.368A17.556 17.556 0 0 1 70 67.656a17.556 17.556 0 0 1-9.973-3.095ZM63.64 47.49A6.366 6.366 0 0 1 70 41.13a6.366 6.366 0 0 1 6.36 6.36A6.366 6.366 0 0 1 70 53.849a6.366 6.366 0 0 1-6.36-6.36Zm18.362 15.446a12.458 12.458 0 0 0-3.64-5.866 12.456 12.456 0 0 0-3.62-2.286 8.702 8.702 0 0 0 3.96-7.294c0-4.8-3.904-8.703-8.703-8.703-4.799 0-8.703 3.904-8.703 8.703 0 3.05 1.578 5.74 3.96 7.294a12.46 12.46 0 0 0-3.62 2.286 12.46 12.46 0 0 0-3.64 5.865c-3.475-3.226-5.653-7.83-5.653-12.935 0-9.736 7.92-17.656 17.656-17.656 9.736 0 17.656 7.92 17.656 17.656 0 5.105-2.178 9.71-5.653 12.936Zm0 0', fill: fill, fillRule: 'evenodd', "data-name": 'Path 2516' }) }));
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '40', height: '40', viewBox: '50 30 40 40', children: (0, jsx_runtime_1.jsx)("path", { d: 'M84.142 35.858A19.87 19.87 0 0 0 70 30a19.869 19.869 0 0 0-14.142 5.858A19.869 19.869 0 0 0 50 50a19.87 19.87 0 0 0 5.858 14.142A19.869 19.869 0 0 0 70 70a19.87 19.87 0 0 0 14.142-5.858A19.87 19.87 0 0 0 90 50c0-5.342-2.08-10.365-5.858-14.142ZM60.027 64.56A10.098 10.098 0 0 1 70 56.193c4.964 0 9.137 3.552 9.973 8.368A17.556 17.556 0 0 1 70 67.656a17.556 17.556 0 0 1-9.973-3.095ZM63.64 47.49A6.366 6.366 0 0 1 70 41.13a6.366 6.366 0 0 1 6.36 6.36A6.366 6.366 0 0 1 70 53.849a6.366 6.366 0 0 1-6.36-6.36Zm18.362 15.446a12.458 12.458 0 0 0-3.64-5.866 12.456 12.456 0 0 0-3.62-2.286 8.702 8.702 0 0 0 3.96-7.294c0-4.8-3.904-8.703-8.703-8.703-4.799 0-8.703 3.904-8.703 8.703 0 3.05 1.578 5.74 3.96 7.294a12.46 12.46 0 0 0-3.62 2.286 12.46 12.46 0 0 0-3.64 5.865c-3.475-3.226-5.653-7.83-5.653-12.935 0-9.736 7.92-17.656 17.656-17.656 9.736 0 17.656 7.92 17.656 17.656 0 5.105-2.178 9.71-5.653 12.936Zm0 0', fill: color, fillRule: 'evenodd', "data-name": 'Path 2516' }) }));
8
8
  }
9
9
  exports.IconUser = IconUser;
10
10
  function IconUseroBg(_a) {
11
- var fill = _a.fill;
12
- return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M4 22C4 17.5817 7.58172 14 12 14C16.4183 14 20 17.5817 20 22H18C18 18.6863 15.3137 16 12 16C8.68629 16 6 18.6863 6 22H4ZM12 13C8.685 13 6 10.315 6 7C6 3.685 8.685 1 12 1C15.315 1 18 3.685 18 7C18 10.315 15.315 13 12 13ZM12 11C14.21 11 16 9.21 16 7C16 4.79 14.21 3 12 3C9.79 3 8 4.79 8 7C8 9.21 9.79 11 12 11Z', fill: fill }) }));
11
+ var color = _a.color;
12
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M4 22C4 17.5817 7.58172 14 12 14C16.4183 14 20 17.5817 20 22H18C18 18.6863 15.3137 16 12 16C8.68629 16 6 18.6863 6 22H4ZM12 13C8.685 13 6 10.315 6 7C6 3.685 8.685 1 12 1C15.315 1 18 3.685 18 7C18 10.315 15.315 13 12 13ZM12 11C14.21 11 16 9.21 16 7C16 4.79 14.21 3 12 3C9.79 3 8 4.79 8 7C8 9.21 9.79 11 12 11Z', fill: color }) }));
13
13
  }
14
14
  exports.IconUseroBg = IconUseroBg;
15
- //# sourceMappingURL=user.js.map
15
+ //# sourceMappingURL=icon-user.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-user.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-user.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,QAAQ,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC9B,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,aAAa,YAClF,iCACE,CAAC,EAAC,u4BAAu4B,EACz4B,IAAI,EAAE,KAAK,EACX,QAAQ,EAAC,SAAS,eACR,WAAW,GACrB,GACE,CACP,CAAA;AACH,CAAC;AAXD,4BAWC;AAED,SAAgB,WAAW,CAAC,EAAgB;QAAd,KAAK,WAAA;IACjC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,sTAAsT,EACxT,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,kCASC"}
@@ -0,0 +1,2 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconWeight({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IconWeight = void 0;
4
+ var jsx_runtime_1 = require("react/jsx-runtime");
5
+ function IconWeight(_a) {
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: 'url(#clip0_2001_174)', children: [(0, jsx_runtime_1.jsx)("path", { d: 'M21.8906 0H2.10938C0.946289 0 0 0.946289 0 2.10938V21.8906C0 23.0537 0.946289 24 2.10938 24H21.8906C23.0537 24 24 23.0537 24 21.8906V2.10938C24 0.946289 23.0537 0 21.8906 0ZM22.5938 21.8906C22.5938 22.2783 22.2783 22.5938 21.8906 22.5938H2.10938C1.72174 22.5938 1.40625 22.2783 1.40625 21.8906V2.10938C1.40625 1.72174 1.72174 1.40625 2.10938 1.40625H21.8906C22.2783 1.40625 22.5938 1.72174 22.5938 2.10938V21.8906Z', fill: color }), (0, jsx_runtime_1.jsx)("path", { d: 'M20.1094 5.6087C17.7521 3.84082 14.9478 2.90625 12 2.90625C9.0522 2.90625 6.24794 3.84082 3.89064 5.6087C3.74141 5.72076 3.64272 5.88739 3.61635 6.07214C3.59017 6.2569 3.63832 6.44458 3.75038 6.59381L7.46211 11.5318C7.60036 11.7156 7.8113 11.8125 8.0248 11.8125C8.17146 11.8125 8.3196 11.7667 8.44612 11.6719C9.4792 10.8972 10.708 10.4875 12 10.4875C13.2918 10.4875 14.5208 10.8972 15.5539 11.6719C15.8643 11.9048 16.3046 11.842 16.5377 11.5318L20.2495 6.59381C20.3617 6.44458 20.4099 6.2569 20.3835 6.07214C20.3573 5.88757 20.2586 5.72076 20.1094 5.6087ZM15.8159 10.1517C14.8674 9.57129 13.8106 9.21973 12.7031 9.11499V6.97192C12.7031 6.58356 12.3884 6.2688 12 6.2688C11.6117 6.2688 11.2969 6.58356 11.2969 6.97192V9.11499C10.1895 9.21973 9.13259 9.57129 8.1841 10.1517L5.30953 6.32739C7.29604 5.00702 9.59474 4.3125 12 4.3125C14.4053 4.3125 16.704 5.00702 18.6905 6.32739L15.8159 10.1517Z', fill: color })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'clip0_2001_174', children: (0, jsx_runtime_1.jsx)("rect", { width: '24', height: '24', fill: 'white' }) }) })] }));
8
+ }
9
+ exports.IconWeight = IconWeight;
10
+ //# sourceMappingURL=icon-weight.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-weight.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-weight.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,UAAU,CAAC,EAAgB;QAAd,KAAK,WAAA;IAChC,OAAO,CACL,iCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,aAC5F,+BAAG,QAAQ,EAAC,sBAAsB,aAChC,iCACE,CAAC,EAAC,gaAAga,EACla,IAAI,EAAE,KAAK,GACX,EACF,iCACE,CAAC,EAAC,43BAA43B,EAC93B,IAAI,EAAE,KAAK,GACX,IACA,EACJ,2CACE,qCAAU,EAAE,EAAC,gBAAgB,YAC3B,iCAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAC,OAAO,GAAG,GACnC,GACN,IACH,CACP,CAAA;AACH,CAAC;AApBD,gCAoBC"}
@@ -0,0 +1,3 @@
1
+ import { IIcon } from '../interfaces.js';
2
+ export declare function IconWhats({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
3
+ export declare function IconWhatsInverse({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IconWhatsInverse = exports.IconWhats = void 0;
4
+ var jsx_runtime_1 = require("react/jsx-runtime");
5
+ function IconWhats(_a) {
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: '0 0 30 30', children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: 'M21.77 17.98c-.368-.188-2.196-1.085-2.538-1.205-.341-.128-.59-.188-.837.187-.248.375-.958 1.205-1.178 1.46-.215.248-.436.281-.804.094-2.183-1.092-3.616-1.949-5.056-4.42-.382-.656.382-.61 1.092-2.029.12-.248.06-.462-.034-.65-.094-.187-.837-2.015-1.145-2.759-.301-.723-.61-.622-.837-.636-.214-.013-.462-.013-.71-.013-.248 0-.65.094-.99.462-.342.375-1.3 1.272-1.3 3.1 0 1.829 1.333 3.596 1.513 3.844.188.248 2.619 3.998 6.349 5.612 2.357 1.018 3.28 1.105 4.46.93.716-.107 2.196-.897 2.504-1.767.308-.87.308-1.614.214-1.768-.087-.168-.335-.261-.703-.442zm-6.777 9.254c-2.223 0-4.4-.596-6.294-1.72l-.449-.268-4.674 1.225 1.245-4.56-.294-.469a12.315 12.315 0 0 1-1.889-6.576C2.638 8.056 8.183 2.511 15 2.511c3.301 0 6.402 1.286 8.732 3.623 2.33 2.337 3.764 5.437 3.757 8.739 0 6.817-5.685 12.361-12.496 12.361zM25.507 4.36A14.754 14.754 0 0 0 14.993 0C6.797 0 .127 6.67.127 14.866c0 2.618.683 5.176 1.982 7.433L0 30l7.882-2.07a14.82 14.82 0 0 0 7.105 1.809h.006c8.19 0 15.007-6.67 15.007-14.866 0-3.971-1.688-7.701-4.493-10.514z' }) }) }) }));
8
+ }
9
+ exports.IconWhats = IconWhats;
10
+ function IconWhatsInverse(_a) {
11
+ var color = _a.color;
12
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: '0 0 20 20', children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("g", { children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: 'M15.064 13.442c-.231.573-1.276 1.096-1.737 1.12-.46.024-.474.357-2.984-.734-2.51-1.09-4.02-3.743-4.14-3.914-.118-.17-.971-1.386-.925-2.61.046-1.223.716-1.8.955-2.04a.961.961 0 0 1 .68-.287c.198-.003.326-.006.472 0 .146.005.366-.031.556.474.19.506.645 1.748.703 1.875.058.127.094.273.004.436-.09.163-.135.265-.266.406-.13.14-.275.314-.392.422-.13.118-.267.248-.13.503.137.254.61 1.087 1.33 1.774.925.882 1.723 1.175 1.968 1.308.247.134.394.12.546-.041.152-.16.654-.703.83-.945.177-.243.342-.195.57-.104.226.091 1.435.739 1.681.873.246.133.41.202.47.308.058.106.04.604-.191 1.176zM10.18 0C4.76 0 .363 4.362.363 9.742c0 1.841.515 3.563 1.409 5.031L0 20l5.436-1.727a9.838 9.838 0 0 0 4.745 1.212c5.423 0 9.819-4.362 9.819-9.742C20 4.362 15.604 0 10.181 0z' }) }) }) }));
13
+ }
14
+ exports.IconWhatsInverse = IconWhatsInverse;
15
+ //# sourceMappingURL=icon-whats.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-whats.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-whats.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,SAAS,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC/B,OAAO,CACL,gCAAK,OAAO,EAAC,WAAW,YACtB,wCACE,wCACE,iCACE,IAAI,EAAE,KAAK,EACX,CAAC,EAAC,ggCAAggC,GAClgC,GACA,GACF,GACA,CACP,CAAA;AACH,CAAC;AAbD,8BAaC;AAED,SAAgB,gBAAgB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACtC,OAAO,CACL,gCAAK,OAAO,EAAC,WAAW,YACtB,wCACE,wCACE,iCACE,IAAI,EAAE,KAAK,EACX,CAAC,EAAC,ivBAAivB,GACnvB,GACA,GACF,GACA,CACP,CAAA;AACH,CAAC;AAbD,4CAaC"}
@@ -6,4 +6,4 @@ function IconWord() {
6
6
  return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '800px', height: '800px', viewBox: '0 0 32 32', children: [(0, jsx_runtime_1.jsx)("path", { d: 'M18.536,2.323V4.868c3.4.019,7.12-.035,10.521.019a.783.783,0,0,1,.912.861c.054,6.266-.013,12.89.032,19.157-.02.4.009,1.118-.053,1.517-.079.509-.306.607-.817.676-.286.039-.764.034-1.045.047-2.792-.014-5.582-.011-8.374-.01l-1.175,0v2.547L2,27.133Q2,16,2,4.873L18.536,2.322', style: { fill: '#283c82' } }), (0, jsx_runtime_1.jsx)("path", { d: 'M18.536,5.822h10.5V26.18h-10.5V23.635h8.27V22.363h-8.27v-1.59h8.27V19.5h-8.27v-1.59h8.27V16.637h-8.27v-1.59h8.27V13.774h-8.27v-1.59h8.27V10.911h-8.27V9.321h8.27V8.048h-8.27V5.822', style: { fill: '#fff' } }), (0, jsx_runtime_1.jsx)("path", { d: 'M8.573,11.443c.6-.035,1.209-.06,1.813-.092.423,2.147.856,4.291,1.314,6.429.359-2.208.757-4.409,1.142-6.613.636-.022,1.272-.057,1.905-.1-.719,3.082-1.349,6.19-2.134,9.254-.531.277-1.326-.013-1.956.032-.423-2.106-.916-4.2-1.295-6.314C8.99,16.1,8.506,18.133,8.08,20.175q-.916-.048-1.839-.111c-.528-2.8-1.148-5.579-1.641-8.385.544-.025,1.091-.048,1.635-.067.328,2.026.7,4.043.986,6.072.448-2.08.907-4.161,1.352-6.241', style: { fill: '#fff' } })] }));
7
7
  }
8
8
  exports.IconWord = IconWord;
9
- //# sourceMappingURL=word.js.map
9
+ //# sourceMappingURL=icon-word.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-word.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-word.tsx"],"names":[],"mappings":";;;;AAAA,SAAgB,QAAQ;IACtB,OAAO,CACL,iCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,OAAO,EAAC,MAAM,EAAC,OAAO,EAAC,OAAO,EAAC,WAAW,aACtF,iCACE,CAAC,EAAC,+QAA+Q,EACjR,KAAK,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAC1B,EACF,iCACE,CAAC,EAAC,oLAAoL,EACtL,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,GACvB,EACF,iCACE,CAAC,EAAC,8ZAA8Z,EACha,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,GACvB,IACE,CACP,CAAA;AACH,CAAC;AAjBD,4BAiBC"}
@@ -1,2 +1,2 @@
1
1
  import { IIcon } from '../interfaces.js';
2
- export declare function IconImage({ fill }: IIcon): import("react/jsx-runtime").JSX.Element;
2
+ export declare function IconImage({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IconImage = void 0;
4
4
  var jsx_runtime_1 = require("react/jsx-runtime");
5
5
  function IconImage(_a) {
6
- var fill = _a.fill;
7
- return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '16', height: '16', viewBox: '0 0 16 16', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M2.16667 7.25042L3.83333 5.58375L8.41667 10.1671L11.3333 7.25042L13.8333 9.75042V2.16667H2.16667V7.25042ZM2.16667 9.60742V13.8333H4.75042L7.23817 11.3456L3.83333 7.94075L2.16667 9.60742ZM7.10742 13.8333H13.8333V12.1074L11.3333 9.60742L7.10742 13.8333ZM1.33333 0.5H14.6667C15.1269 0.5 15.5 0.8731 15.5 1.33333V14.6667C15.5 15.1269 15.1269 15.5 14.6667 15.5H1.33333C0.8731 15.5 0.5 15.1269 0.5 14.6667V1.33333C0.5 0.8731 0.8731 0.5 1.33333 0.5ZM10.9167 6.33333C10.2263 6.33333 9.66667 5.77369 9.66667 5.08333C9.66667 4.39297 10.2263 3.83333 10.9167 3.83333C11.607 3.83333 12.1667 4.39297 12.1667 5.08333C12.1667 5.77369 11.607 6.33333 10.9167 6.33333Z', fill: fill }) }));
6
+ var color = _a.color;
7
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '16', height: '16', viewBox: '0 0 16 16', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M2.16667 7.25042L3.83333 5.58375L8.41667 10.1671L11.3333 7.25042L13.8333 9.75042V2.16667H2.16667V7.25042ZM2.16667 9.60742V13.8333H4.75042L7.23817 11.3456L3.83333 7.94075L2.16667 9.60742ZM7.10742 13.8333H13.8333V12.1074L11.3333 9.60742L7.10742 13.8333ZM1.33333 0.5H14.6667C15.1269 0.5 15.5 0.8731 15.5 1.33333V14.6667C15.5 15.1269 15.1269 15.5 14.6667 15.5H1.33333C0.8731 15.5 0.5 15.1269 0.5 14.6667V1.33333C0.5 0.8731 0.8731 0.5 1.33333 0.5ZM10.9167 6.33333C10.2263 6.33333 9.66667 5.77369 9.66667 5.08333C9.66667 4.39297 10.2263 3.83333 10.9167 3.83333C11.607 3.83333 12.1667 4.39297 12.1667 5.08333C12.1667 5.77369 11.607 6.33333 10.9167 6.33333Z', fill: color }) }));
8
8
  }
9
9
  exports.IconImage = IconImage;
10
10
  //# sourceMappingURL=image.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"image.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/image.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,SAAS,CAAC,EAAe;QAAb,IAAI,UAAA;IAC9B,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,2oBAA2oB,EAC7oB,IAAI,EAAE,IAAI,GACV,GACE,CACP,CAAA;AACH,CAAC;AATD,8BASC"}
1
+ {"version":3,"file":"image.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/image.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,SAAS,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC/B,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,2oBAA2oB,EAC7oB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,8BASC"}
@@ -1,3 +1,7 @@
1
- export declare function useMessageProvider(): {
1
+ export type MessageProviderProps = {
2
+ messageProviderKey?: string;
3
+ enabled?: boolean;
4
+ };
5
+ export declare function useMessageProvider({ enabled, messageProviderKey }: MessageProviderProps): {
2
6
  sendMessage: (data: any) => Promise<void>;
3
7
  };
@@ -39,17 +39,23 @@ Object.defineProperty(exports, "__esModule", { value: true });
39
39
  exports.useMessageProvider = void 0;
40
40
  var sites_1 = require("../../../sites/index.js");
41
41
  var router_1 = require("next/router");
42
- function useMessageProvider() {
42
+ function useMessageProvider(_a) {
43
+ var enabled = _a.enabled, messageProviderKey = _a.messageProviderKey;
43
44
  var router = (0, router_1.useRouter)();
45
+ var url = messageProviderKey ? ("/" + messageProviderKey) : router.pathname === "/" ? "/home" : router.pathname;
44
46
  function sendMessage(data) {
45
47
  return __awaiter(this, void 0, void 0, function () {
46
48
  return __generator(this, function (_a) {
47
49
  switch (_a.label) {
48
- case 0: return [4 /*yield*/, (0, sites_1.api)({
49
- method: 'post',
50
- url: router.pathname === "/" ? "/home" : router.pathname,
51
- body: data,
52
- }, (process.env.development ? "http://localhost:3333" : "https://messageprovider.codiehost.com.br") + '/SendDispatcher')];
50
+ case 0:
51
+ if (!enabled) {
52
+ throw new Error('Message provider is not enabled');
53
+ }
54
+ return [4 /*yield*/, (0, sites_1.api)({
55
+ method: 'post',
56
+ url: url,
57
+ body: data,
58
+ }, (process.env.development ? "http://localhost:3333" : "https://messageprovider.codiehost.com.br") + '/SendDispatcher')];
53
59
  case 1:
54
60
  _a.sent();
55
61
  return [2 /*return*/];
@@ -1 +1 @@
1
- {"version":3,"file":"send-message.js","sourceRoot":"","sources":["../../../../src/ui/integrations/message-provider/send-message.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iCAA6B;AAC7B,sCAAuC;AAEvC,SAAgB,kBAAkB;IAChC,IAAM,MAAM,GAAG,IAAA,kBAAS,GAAE,CAAA;IAE1B,SAAe,WAAW,CAAC,IAAS;;;;4BAClC,qBAAM,IAAA,WAAG,EACP;4BACE,MAAM,EAAE,MAAM;4BACd,GAAG,EAAE,MAAM,CAAC,QAAQ,KAAK,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ;4BACxD,IAAI,EAAE,IAAI;yBACX,EACD,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,uBAAuB,CAAC,CAAC,CAAC,0CAA0C,CAAC,GAAI,iBAAiB,CACtH,EAAA;;wBAPD,SAOC,CAAA;;;;;KACF;IAED,OAAO,EAAE,WAAW,aAAA,EAAE,CAAA;AACxB,CAAC;AAfD,gDAeC"}
1
+ {"version":3,"file":"send-message.js","sourceRoot":"","sources":["../../../../src/ui/integrations/message-provider/send-message.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iCAA6B;AAC7B,sCAAuC;AAOvC,SAAgB,kBAAkB,CAAC,EAAqD;QAAnD,OAAO,aAAA,EAAE,kBAAkB,wBAAA;IAC9D,IAAM,MAAM,GAAG,IAAA,kBAAS,GAAE,CAAA;IAE1B,IAAM,GAAG,GAAI,kBAAkB,CAAC,CAAC,CAAE,CAAC,GAAG,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,KAAK,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAA;IAEnH,SAAe,WAAW,CAAC,IAAS;;;;;wBAClC,IAAG,CAAC,OAAO,EAAE,CAAC;4BACZ,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAA;wBACpD,CAAC;wBAED,qBAAM,IAAA,WAAG,EACP;gCACE,MAAM,EAAE,MAAM;gCACd,GAAG,KAAA;gCACH,IAAI,EAAE,IAAI;6BACX,EACD,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,uBAAuB,CAAC,CAAC,CAAC,0CAA0C,CAAC,GAAI,iBAAiB,CACtH,EAAA;;wBAPD,SAOC,CAAA;;;;;KACF;IAED,OAAO,EAAE,WAAW,aAAA,EAAE,CAAA;AACxB,CAAC;AArBD,gDAqBC"}