se-design 1.0.3 → 1.0.8-5.dev.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 (559) hide show
  1. package/dist/assets/colors.css +26 -13
  2. package/dist/assets/icons/ai-off.svg +6 -0
  3. package/dist/assets/icons/ai-re-run.svg +5 -0
  4. package/dist/assets/icons/arrow-head.svg +8 -0
  5. package/dist/assets/icons/center-align.svg +3 -0
  6. package/dist/assets/icons/chat.svg +4 -0
  7. package/dist/assets/icons/checkbox-disabled-minus.svg +1 -1
  8. package/dist/assets/icons/checkbox-disabled-tick.svg +1 -1
  9. package/dist/assets/icons/checkbox-fill.svg +1 -1
  10. package/dist/assets/icons/checkbox-hover-fill.svg +2 -2
  11. package/dist/assets/icons/checkbox-hover-minus.svg +1 -1
  12. package/dist/assets/icons/checkbox-hover-tick.svg +1 -1
  13. package/dist/assets/icons/checkbox-minus.svg +1 -1
  14. package/dist/assets/icons/checkbox-tick.svg +1 -1
  15. package/dist/assets/icons/combobox-field.svg +6 -0
  16. package/dist/assets/icons/command.svg +1 -1
  17. package/dist/assets/icons/envelope.svg +4 -0
  18. package/dist/assets/icons/file-filled-checked.svg +8 -0
  19. package/dist/assets/icons/filter.svg +3 -0
  20. package/dist/assets/icons/google-drive.svg +8 -0
  21. package/dist/assets/icons/home.svg +3 -2
  22. package/dist/assets/icons/left-align.svg +3 -0
  23. package/dist/assets/icons/library.svg +6 -0
  24. package/dist/assets/icons/minus.svg +3 -0
  25. package/dist/assets/icons/plus.svg +4 -0
  26. package/dist/assets/icons/reports.svg +4 -0
  27. package/dist/assets/icons/repository.svg +4 -0
  28. package/dist/assets/icons/right-align.svg +3 -0
  29. package/dist/assets/icons/sort-asc.svg +3 -4
  30. package/dist/assets/icons/sort-desc.svg +2 -3
  31. package/dist/assets/icons/tag.svg +2 -2
  32. package/dist/assets/icons/views.svg +7 -0
  33. package/dist/assets/icons/warning.svg +10 -0
  34. package/dist/assets/style.css +1 -1
  35. package/dist/assets/typographyMixin.scss +8 -0
  36. package/dist/components/AccessibleDiv/index.d.ts +46 -0
  37. package/dist/components/Accordion/index.d.ts +2 -0
  38. package/dist/components/AutoCompleteInput/index.d.ts +37 -7
  39. package/dist/components/Avatar/index.d.ts +1 -0
  40. package/dist/components/Badge/index.d.ts +2 -0
  41. package/dist/components/Banner/index.d.ts +17 -4
  42. package/dist/components/BottomSheet/index.d.ts +14 -0
  43. package/dist/components/BreadCrumbs/index.d.ts +5 -0
  44. package/dist/components/Button/index.d.ts +51 -7
  45. package/dist/components/Checkbox/index.d.ts +35 -0
  46. package/dist/components/CustomAccordion/index.d.ts +6 -0
  47. package/dist/components/CustomModal/index.d.ts +56 -1
  48. package/dist/components/DatePicker/index.d.ts +7 -0
  49. package/dist/components/DatePicker/useDatePickerA11y.d.ts +47 -0
  50. package/dist/components/Dropdown/index.d.ts +23 -0
  51. package/dist/components/DropdownWithInputTags/index.d.ts +12 -2
  52. package/dist/components/GuidedTour/index.d.ts +27 -0
  53. package/dist/components/Header/index.d.ts +3 -2
  54. package/dist/components/Icon/index.d.ts +45 -4
  55. package/dist/components/InfoTooltip/index.d.ts +14 -1
  56. package/dist/components/Input/index.d.ts +38 -6
  57. package/dist/components/InputWithIcon/index.d.ts +36 -2
  58. package/dist/components/KebabMenu/index.d.ts +1 -0
  59. package/dist/components/LabelChip/index.d.ts +3 -0
  60. package/dist/components/Link/index.d.ts +64 -0
  61. package/dist/components/MenuItem/index.d.ts +13 -3
  62. package/dist/components/MenuList/index.d.ts +3 -2
  63. package/dist/components/MessageBar/index.d.ts +20 -1
  64. package/dist/components/Modal/index.d.ts +3 -0
  65. package/dist/components/NavigationBar/TabButton.d.ts +20 -0
  66. package/dist/components/NavigationBar/index.d.ts +8 -1
  67. package/dist/components/OTPInput/index.d.ts +1 -0
  68. package/dist/components/OnboardingTour/index.d.ts +35 -0
  69. package/dist/components/Pagination/index.d.ts +2 -0
  70. package/dist/components/Paywall/index.d.ts +47 -0
  71. package/dist/components/PhoneInput/index.d.ts +27 -0
  72. package/dist/components/Popover/index.d.ts +15 -3
  73. package/dist/components/Radio/index.d.ts +7 -1
  74. package/dist/components/RadioGroup/index.d.ts +18 -0
  75. package/dist/components/ShimmerLoader/index.d.ts +4 -2
  76. package/dist/components/SidebarOverlay/index.d.ts +36 -0
  77. package/dist/components/SkipLinksBar/index.d.ts +11 -0
  78. package/dist/components/SnackBar/index.d.ts +5 -2
  79. package/dist/components/Spinner/index.d.ts +13 -1
  80. package/dist/components/TableLayout/index.d.ts +18 -0
  81. package/dist/components/Tabs/index.d.ts +6 -1
  82. package/dist/components/TimePicker/index.d.ts +14 -0
  83. package/dist/components/Toggle/index.d.ts +25 -1
  84. package/dist/components/Tooltip/index.d.ts +19 -2
  85. package/dist/components/index.d.ts +8 -0
  86. package/dist/index.js +153 -108
  87. package/dist/index.js.map +1 -1
  88. package/dist/index10.js +23 -48
  89. package/dist/index10.js.map +1 -1
  90. package/dist/index100.js +1 -1
  91. package/dist/index100.js.map +1 -1
  92. package/dist/index101.js +1 -1
  93. package/dist/index101.js.map +1 -1
  94. package/dist/index102.js +2 -2
  95. package/dist/index102.js.map +1 -1
  96. package/dist/index103.js +1 -1
  97. package/dist/index103.js.map +1 -1
  98. package/dist/index104.js +1 -1
  99. package/dist/index104.js.map +1 -1
  100. package/dist/index105.js +1 -1
  101. package/dist/index105.js.map +1 -1
  102. package/dist/index106.js +1 -1
  103. package/dist/index106.js.map +1 -1
  104. package/dist/index107.js +1 -1
  105. package/dist/index107.js.map +1 -1
  106. package/dist/index108.js +1 -1
  107. package/dist/index108.js.map +1 -1
  108. package/dist/index109.js +1 -1
  109. package/dist/index109.js.map +1 -1
  110. package/dist/index11.js +74 -18
  111. package/dist/index11.js.map +1 -1
  112. package/dist/index110.js +1 -1
  113. package/dist/index110.js.map +1 -1
  114. package/dist/index111.js +1 -1
  115. package/dist/index111.js.map +1 -1
  116. package/dist/index112.js +2 -2
  117. package/dist/index112.js.map +1 -1
  118. package/dist/index113.js +2 -2
  119. package/dist/index113.js.map +1 -1
  120. package/dist/index114.js +2 -2
  121. package/dist/index114.js.map +1 -1
  122. package/dist/index115.js +1 -1
  123. package/dist/index115.js.map +1 -1
  124. package/dist/index116.js +1 -1
  125. package/dist/index116.js.map +1 -1
  126. package/dist/index117.js +1 -1
  127. package/dist/index117.js.map +1 -1
  128. package/dist/index118.js +1 -1
  129. package/dist/index118.js.map +1 -1
  130. package/dist/index119.js +1 -1
  131. package/dist/index119.js.map +1 -1
  132. package/dist/index12.js +76 -11
  133. package/dist/index12.js.map +1 -1
  134. package/dist/index120.js +1 -1
  135. package/dist/index120.js.map +1 -1
  136. package/dist/index121.js +2 -2
  137. package/dist/index121.js.map +1 -1
  138. package/dist/index122.js +2 -2
  139. package/dist/index122.js.map +1 -1
  140. package/dist/index123.js +1 -1
  141. package/dist/index123.js.map +1 -1
  142. package/dist/index124.js +1 -1
  143. package/dist/index124.js.map +1 -1
  144. package/dist/index125.js +2 -2
  145. package/dist/index125.js.map +1 -1
  146. package/dist/index126.js +2 -2
  147. package/dist/index126.js.map +1 -1
  148. package/dist/index127.js +2 -2
  149. package/dist/index127.js.map +1 -1
  150. package/dist/index128.js +1 -1
  151. package/dist/index128.js.map +1 -1
  152. package/dist/index129.js +1 -1
  153. package/dist/index129.js.map +1 -1
  154. package/dist/index13.js +64 -5
  155. package/dist/index13.js.map +1 -1
  156. package/dist/index130.js +2 -2
  157. package/dist/index130.js.map +1 -1
  158. package/dist/index131.js +1 -1
  159. package/dist/index131.js.map +1 -1
  160. package/dist/index132.js +1 -1
  161. package/dist/index132.js.map +1 -1
  162. package/dist/index133.js +1 -1
  163. package/dist/index133.js.map +1 -1
  164. package/dist/index134.js +1 -1
  165. package/dist/index134.js.map +1 -1
  166. package/dist/index135.js +2 -2
  167. package/dist/index135.js.map +1 -1
  168. package/dist/index136.js +2 -2
  169. package/dist/index136.js.map +1 -1
  170. package/dist/index137.js +1 -1
  171. package/dist/index137.js.map +1 -1
  172. package/dist/index138.js +1 -1
  173. package/dist/index138.js.map +1 -1
  174. package/dist/index139.js +1 -1
  175. package/dist/index139.js.map +1 -1
  176. package/dist/index14.js +15 -138
  177. package/dist/index14.js.map +1 -1
  178. package/dist/index140.js +1 -1
  179. package/dist/index140.js.map +1 -1
  180. package/dist/index141.js +1 -1
  181. package/dist/index141.js.map +1 -1
  182. package/dist/index142.js +1 -1
  183. package/dist/index142.js.map +1 -1
  184. package/dist/index143.js +1 -1
  185. package/dist/index143.js.map +1 -1
  186. package/dist/index144.js +2 -2
  187. package/dist/index144.js.map +1 -1
  188. package/dist/index145.js +1 -1
  189. package/dist/index145.js.map +1 -1
  190. package/dist/index146.js +2 -2
  191. package/dist/index146.js.map +1 -1
  192. package/dist/index147.js +1 -1
  193. package/dist/index147.js.map +1 -1
  194. package/dist/index148.js +2 -2
  195. package/dist/index148.js.map +1 -1
  196. package/dist/index149.js +1 -1
  197. package/dist/index149.js.map +1 -1
  198. package/dist/index15.js +10 -54
  199. package/dist/index15.js.map +1 -1
  200. package/dist/index150.js +1 -1
  201. package/dist/index150.js.map +1 -1
  202. package/dist/index151.js +1 -1
  203. package/dist/index151.js.map +1 -1
  204. package/dist/index152.js +1 -1
  205. package/dist/index152.js.map +1 -1
  206. package/dist/index153.js +1 -1
  207. package/dist/index153.js.map +1 -1
  208. package/dist/index154.js +1 -1
  209. package/dist/index154.js.map +1 -1
  210. package/dist/index155.js +2 -2
  211. package/dist/index155.js.map +1 -1
  212. package/dist/index156.js +2 -2
  213. package/dist/index156.js.map +1 -1
  214. package/dist/index157.js +2 -2
  215. package/dist/index157.js.map +1 -1
  216. package/dist/index158.js +2 -2
  217. package/dist/index158.js.map +1 -1
  218. package/dist/index159.js +1 -1
  219. package/dist/index159.js.map +1 -1
  220. package/dist/index16.js +216 -54
  221. package/dist/index16.js.map +1 -1
  222. package/dist/index160.js +2 -149
  223. package/dist/index160.js.map +1 -1
  224. package/dist/index161.js +5 -0
  225. package/dist/index161.js.map +1 -0
  226. package/dist/index162.js +5 -0
  227. package/dist/index162.js.map +1 -0
  228. package/dist/index163.js +5 -0
  229. package/dist/index163.js.map +1 -0
  230. package/dist/index164.js +5 -0
  231. package/dist/index164.js.map +1 -0
  232. package/dist/index165.js +5 -0
  233. package/dist/index165.js.map +1 -0
  234. package/dist/index166.js +5 -0
  235. package/dist/index166.js.map +1 -0
  236. package/dist/index167.js +5 -0
  237. package/dist/index167.js.map +1 -0
  238. package/dist/index168.js +5 -0
  239. package/dist/index168.js.map +1 -0
  240. package/dist/index169.js +5 -0
  241. package/dist/index169.js.map +1 -0
  242. package/dist/index17.js +60 -255
  243. package/dist/index17.js.map +1 -1
  244. package/dist/index170.js +5 -0
  245. package/dist/index170.js.map +1 -0
  246. package/dist/index171.js +5 -0
  247. package/dist/index171.js.map +1 -0
  248. package/dist/index172.js +2 -12
  249. package/dist/index172.js.map +1 -1
  250. package/dist/index173.js +5 -0
  251. package/dist/index173.js.map +1 -0
  252. package/dist/index174.js +5 -0
  253. package/dist/index174.js.map +1 -0
  254. package/dist/index175.js +5 -0
  255. package/dist/index175.js.map +1 -0
  256. package/dist/index176.js +5 -0
  257. package/dist/index176.js.map +1 -0
  258. package/dist/index177.js +5 -0
  259. package/dist/index177.js.map +1 -0
  260. package/dist/index178.js +5 -0
  261. package/dist/index178.js.map +1 -0
  262. package/dist/index179.js +5 -0
  263. package/dist/index179.js.map +1 -0
  264. package/dist/index18.js +128 -11
  265. package/dist/index18.js.map +1 -1
  266. package/dist/index180.js +1 -1232
  267. package/dist/index180.js.map +1 -1
  268. package/dist/index181.js +5 -0
  269. package/dist/index181.js.map +1 -0
  270. package/dist/index182.js +5 -0
  271. package/dist/index182.js.map +1 -0
  272. package/dist/index183.js +5 -0
  273. package/dist/index183.js.map +1 -0
  274. package/dist/index184.js +2 -4
  275. package/dist/index184.js.map +1 -1
  276. package/dist/index185.js +5 -0
  277. package/dist/index185.js.map +1 -0
  278. package/dist/index186.js +5 -0
  279. package/dist/index186.js.map +1 -0
  280. package/dist/index187.js +5 -0
  281. package/dist/index187.js.map +1 -0
  282. package/dist/index188.js +5 -0
  283. package/dist/index188.js.map +1 -0
  284. package/dist/index189.js +2 -10
  285. package/dist/index189.js.map +1 -1
  286. package/dist/index19.js +360 -32
  287. package/dist/index19.js.map +1 -1
  288. package/dist/index190.js +1 -9
  289. package/dist/index190.js.map +1 -1
  290. package/dist/index191.js +2 -5
  291. package/dist/index191.js.map +1 -1
  292. package/dist/index192.js +2 -170
  293. package/dist/index192.js.map +1 -1
  294. package/dist/index193.js +2 -11
  295. package/dist/index193.js.map +1 -1
  296. package/dist/index194.js +1 -5
  297. package/dist/index194.js.map +1 -1
  298. package/dist/index195.js +2 -6
  299. package/dist/index195.js.map +1 -1
  300. package/dist/index196.js +2 -38
  301. package/dist/index196.js.map +1 -1
  302. package/dist/index197.js +2 -2
  303. package/dist/index197.js.map +1 -1
  304. package/dist/index198.js +2 -8
  305. package/dist/index198.js.map +1 -1
  306. package/dist/index199.js +2 -327
  307. package/dist/index199.js.map +1 -1
  308. package/dist/index20.js +18 -55
  309. package/dist/index20.js.map +1 -1
  310. package/dist/index200.js +2 -50
  311. package/dist/index200.js.map +1 -1
  312. package/dist/index201.js +2 -2
  313. package/dist/index201.js.map +1 -1
  314. package/dist/index202.js +2 -76
  315. package/dist/index202.js.map +1 -1
  316. package/dist/index203.js +147 -91
  317. package/dist/index203.js.map +1 -1
  318. package/dist/index204.js +8 -51
  319. package/dist/index204.js.map +1 -1
  320. package/dist/index205.js +5 -7
  321. package/dist/index205.js.map +1 -1
  322. package/dist/index206.js +4 -4
  323. package/dist/index206.js.map +1 -1
  324. package/dist/index207.js +41 -50
  325. package/dist/index207.js.map +1 -1
  326. package/dist/index208.js +21 -2
  327. package/dist/index208.js.map +1 -1
  328. package/dist/index21.js +33 -76
  329. package/dist/index21.js.map +1 -1
  330. package/dist/index215.js +31 -0
  331. package/dist/index215.js.map +1 -0
  332. package/dist/index216.js +75 -0
  333. package/dist/index216.js.map +1 -0
  334. package/dist/index22.js +64 -21
  335. package/dist/index22.js.map +1 -1
  336. package/dist/index224.js +15 -0
  337. package/dist/index224.js.map +1 -0
  338. package/dist/index23.js +84 -187
  339. package/dist/index23.js.map +1 -1
  340. package/dist/index232.js +1236 -0
  341. package/dist/index232.js.map +1 -0
  342. package/dist/index235.js +46 -0
  343. package/dist/index235.js.map +1 -0
  344. package/dist/index24.js +21 -45
  345. package/dist/index24.js.map +1 -1
  346. package/dist/index244.js +173 -0
  347. package/dist/index244.js.map +1 -0
  348. package/dist/index245.js +7 -0
  349. package/dist/index245.js.map +1 -0
  350. package/dist/index247.js +22 -0
  351. package/dist/index247.js.map +1 -0
  352. package/dist/index248.js +13 -0
  353. package/dist/index248.js.map +1 -0
  354. package/dist/index249.js +13 -0
  355. package/dist/index249.js.map +1 -0
  356. package/dist/index25.js +384 -18
  357. package/dist/index25.js.map +1 -1
  358. package/dist/index250.js +8 -0
  359. package/dist/index250.js.map +1 -0
  360. package/dist/index251.js +173 -0
  361. package/dist/index251.js.map +1 -0
  362. package/dist/index252.js +14 -0
  363. package/dist/index252.js.map +1 -0
  364. package/dist/index253.js +9 -0
  365. package/dist/index253.js.map +1 -0
  366. package/dist/index254.js +9 -0
  367. package/dist/index254.js.map +1 -0
  368. package/dist/index255.js +41 -0
  369. package/dist/index255.js.map +1 -0
  370. package/dist/index256.js +5 -0
  371. package/dist/index256.js.map +1 -0
  372. package/dist/index257.js +11 -0
  373. package/dist/index257.js.map +1 -0
  374. package/dist/index258.js +330 -0
  375. package/dist/index258.js.map +1 -0
  376. package/dist/index259.js +53 -0
  377. package/dist/index259.js.map +1 -0
  378. package/dist/index26.js +46 -51
  379. package/dist/index26.js.map +1 -1
  380. package/dist/index260.js +5 -0
  381. package/dist/index260.js.map +1 -0
  382. package/dist/index261.js +79 -0
  383. package/dist/index261.js.map +1 -0
  384. package/dist/index262.js +96 -0
  385. package/dist/index262.js.map +1 -0
  386. package/dist/index263.js +55 -0
  387. package/dist/index263.js.map +1 -0
  388. package/dist/index264.js +11 -0
  389. package/dist/index264.js.map +1 -0
  390. package/dist/index265.js +8 -0
  391. package/dist/index265.js.map +1 -0
  392. package/dist/index266.js +55 -0
  393. package/dist/index266.js.map +1 -0
  394. package/dist/index267.js +5 -0
  395. package/dist/index267.js.map +1 -0
  396. package/dist/{index209.js → index268.js} +1 -1
  397. package/dist/index268.js.map +1 -0
  398. package/dist/index27.js +22 -78
  399. package/dist/index27.js.map +1 -1
  400. package/dist/index28.js +108 -83
  401. package/dist/index28.js.map +1 -1
  402. package/dist/index29.js +148 -49
  403. package/dist/index29.js.map +1 -1
  404. package/dist/index3.js +69 -65
  405. package/dist/index3.js.map +1 -1
  406. package/dist/index30.js +133 -95
  407. package/dist/index30.js.map +1 -1
  408. package/dist/index31.js +77 -56
  409. package/dist/index31.js.map +1 -1
  410. package/dist/index32.js +99 -32
  411. package/dist/index32.js.map +1 -1
  412. package/dist/index33.js +75 -36
  413. package/dist/index33.js.map +1 -1
  414. package/dist/index34.js +42 -46
  415. package/dist/index34.js.map +1 -1
  416. package/dist/index35.js +72 -56
  417. package/dist/index35.js.map +1 -1
  418. package/dist/index36.js +96 -244
  419. package/dist/index36.js.map +1 -1
  420. package/dist/index37.js +50 -37
  421. package/dist/index37.js.map +1 -1
  422. package/dist/index38.js +306 -82
  423. package/dist/index38.js.map +1 -1
  424. package/dist/index39.js +70 -31
  425. package/dist/index39.js.map +1 -1
  426. package/dist/index4.js +108 -42
  427. package/dist/index4.js.map +1 -1
  428. package/dist/index40.js +82 -50
  429. package/dist/index40.js.map +1 -1
  430. package/dist/index41.js +27 -67
  431. package/dist/index41.js.map +1 -1
  432. package/dist/index42.js +45 -51
  433. package/dist/index42.js.map +1 -1
  434. package/dist/index43.js +109 -94
  435. package/dist/index43.js.map +1 -1
  436. package/dist/index44.js +54 -92
  437. package/dist/index44.js.map +1 -1
  438. package/dist/index45.js +143 -35
  439. package/dist/index45.js.map +1 -1
  440. package/dist/index46.js +194 -30
  441. package/dist/index46.js.map +1 -1
  442. package/dist/index47.js +36 -30
  443. package/dist/index47.js.map +1 -1
  444. package/dist/index48.js +34 -53
  445. package/dist/index48.js.map +1 -1
  446. package/dist/index49.js +142 -359
  447. package/dist/index49.js.map +1 -1
  448. package/dist/index5.js +41 -238
  449. package/dist/index5.js.map +1 -1
  450. package/dist/index50.js +82 -61
  451. package/dist/index50.js.map +1 -1
  452. package/dist/index51.js +458 -35
  453. package/dist/index51.js.map +1 -1
  454. package/dist/index52.js +98 -38
  455. package/dist/index52.js.map +1 -1
  456. package/dist/index53.js +42 -84
  457. package/dist/index53.js.map +1 -1
  458. package/dist/index54.js +36 -140
  459. package/dist/index54.js.map +1 -1
  460. package/dist/index55.js +88 -136
  461. package/dist/index55.js.map +1 -1
  462. package/dist/index56.js +163 -29
  463. package/dist/index56.js.map +1 -1
  464. package/dist/index57.js +143 -45
  465. package/dist/index57.js.map +1 -1
  466. package/dist/index58.js +36 -0
  467. package/dist/index58.js.map +1 -0
  468. package/dist/index59.js +86 -2
  469. package/dist/index59.js.map +1 -1
  470. package/dist/index6.js +328 -50
  471. package/dist/index6.js.map +1 -1
  472. package/dist/index60.js +119 -2
  473. package/dist/index60.js.map +1 -1
  474. package/dist/index61.js +78 -2
  475. package/dist/index61.js.map +1 -1
  476. package/dist/index62.js +152 -2
  477. package/dist/index62.js.map +1 -1
  478. package/dist/index63.js +318 -2
  479. package/dist/index63.js.map +1 -1
  480. package/dist/index64.js +47 -2
  481. package/dist/index64.js.map +1 -1
  482. package/dist/index65.js +145 -2
  483. package/dist/index65.js.map +1 -1
  484. package/dist/index66.js +12 -2
  485. package/dist/index66.js.map +1 -1
  486. package/dist/index67.js +46 -2
  487. package/dist/index67.js.map +1 -1
  488. package/dist/index68.js +103 -2
  489. package/dist/index68.js.map +1 -1
  490. package/dist/index69.js +19 -2
  491. package/dist/index69.js.map +1 -1
  492. package/dist/index7.js +44 -51
  493. package/dist/index7.js.map +1 -1
  494. package/dist/index70.js +66 -2
  495. package/dist/index70.js.map +1 -1
  496. package/dist/index71.js +27 -2
  497. package/dist/index71.js.map +1 -1
  498. package/dist/index72.js +108 -2
  499. package/dist/index72.js.map +1 -1
  500. package/dist/index73.js +62 -2
  501. package/dist/index73.js.map +1 -1
  502. package/dist/index74.js +21 -2
  503. package/dist/index74.js.map +1 -1
  504. package/dist/index75.js +171 -2
  505. package/dist/index75.js.map +1 -1
  506. package/dist/index76.js +18 -2
  507. package/dist/index76.js.map +1 -1
  508. package/dist/index77.js +11 -2
  509. package/dist/index77.js.map +1 -1
  510. package/dist/index78.js +5 -2
  511. package/dist/index78.js.map +1 -1
  512. package/dist/index79.js +56 -2
  513. package/dist/index79.js.map +1 -1
  514. package/dist/index8.js +48 -18
  515. package/dist/index8.js.map +1 -1
  516. package/dist/index80.js +27 -2
  517. package/dist/index80.js.map +1 -1
  518. package/dist/index81.js +9 -2
  519. package/dist/index81.js.map +1 -1
  520. package/dist/index83.js +2 -2
  521. package/dist/index83.js.map +1 -1
  522. package/dist/index84.js +1 -1
  523. package/dist/index84.js.map +1 -1
  524. package/dist/index85.js +1 -1
  525. package/dist/index85.js.map +1 -1
  526. package/dist/index86.js +2 -2
  527. package/dist/index86.js.map +1 -1
  528. package/dist/index87.js +1 -1
  529. package/dist/index87.js.map +1 -1
  530. package/dist/index88.js +2 -2
  531. package/dist/index88.js.map +1 -1
  532. package/dist/index89.js +2 -2
  533. package/dist/index89.js.map +1 -1
  534. package/dist/index9.js +91 -59
  535. package/dist/index9.js.map +1 -1
  536. package/dist/index90.js +1 -1
  537. package/dist/index90.js.map +1 -1
  538. package/dist/index91.js +1 -1
  539. package/dist/index91.js.map +1 -1
  540. package/dist/index92.js +1 -1
  541. package/dist/index92.js.map +1 -1
  542. package/dist/index93.js +1 -1
  543. package/dist/index93.js.map +1 -1
  544. package/dist/index94.js +2 -2
  545. package/dist/index94.js.map +1 -1
  546. package/dist/index95.js +2 -2
  547. package/dist/index95.js.map +1 -1
  548. package/dist/index96.js +2 -2
  549. package/dist/index96.js.map +1 -1
  550. package/dist/index97.js +1 -1
  551. package/dist/index97.js.map +1 -1
  552. package/dist/index98.js +2 -2
  553. package/dist/index98.js.map +1 -1
  554. package/dist/index99.js +1 -1
  555. package/dist/index99.js.map +1 -1
  556. package/package.json +1 -1
  557. package/dist/index209.js.map +0 -1
  558. package/dist/index82.js +0 -5
  559. package/dist/index82.js.map +0 -1
package/dist/index160.js CHANGED
@@ -1,152 +1,5 @@
1
- import N from "./index189.js";
2
- import R from "./index190.js";
3
- import D from "./index191.js";
4
- import { SVGInjector as A } from "./index192.js";
5
- import { p as t } from "./index193.js";
6
- import * as h from "react";
7
- var O = function(s) {
8
- var o = s?.ownerDocument || document;
9
- return o.defaultView || window;
10
- }, U = function(s, o) {
11
- for (var r in s)
12
- if (!(r in o))
13
- return !0;
14
- for (var e in o)
15
- if (s[e] !== o[e])
16
- return !0;
17
- return !1;
18
- }, H = ["afterInjection", "beforeInjection", "desc", "evalScripts", "fallback", "httpRequestWithCredentials", "loading", "renumerateIRIElements", "src", "title", "useRequestCache", "wrapper"], v = "http://www.w3.org/2000/svg", q = "http://www.w3.org/1999/xlink", V = /* @__PURE__ */ function(c) {
19
- function s() {
20
- for (var r, e = arguments.length, n = new Array(e), a = 0; a < e; a++)
21
- n[a] = arguments[a];
22
- return r = c.call.apply(c, [this].concat(n)) || this, r.initialState = {
23
- hasError: !1,
24
- isLoading: !0
25
- }, r.state = r.initialState, r._isMounted = !1, r.reactWrapper = void 0, r.nonReactWrapper = void 0, r.refCallback = function(u) {
26
- r.reactWrapper = u;
27
- }, r;
28
- }
29
- D(s, c);
30
- var o = s.prototype;
31
- return o.renderSVG = function() {
32
- var e = this;
33
- if (this.reactWrapper instanceof O(this.reactWrapper).Node) {
34
- var n = this.props, a = n.desc, u = n.evalScripts, S = n.httpRequestWithCredentials, E = n.renumerateIRIElements, G = n.src, b = n.title, g = n.useRequestCache, w = this.props.onError, x = this.props.beforeInjection, y = this.props.afterInjection, f = this.props.wrapper, l, p;
35
- f === "svg" ? (l = document.createElementNS(v, f), l.setAttribute("xmlns", v), l.setAttribute("xmlns:xlink", q), p = document.createElementNS(v, f)) : (l = document.createElement(f), p = document.createElement(f)), l.appendChild(p), p.dataset.src = G, this.nonReactWrapper = this.reactWrapper.appendChild(l);
36
- var I = function(i) {
37
- if (e.removeSVG(), !e._isMounted) {
38
- w(i);
39
- return;
40
- }
41
- e.setState(function() {
42
- return {
43
- hasError: !0,
44
- isLoading: !1
45
- };
46
- }, function() {
47
- w(i);
48
- });
49
- }, L = function(i, d) {
50
- if (i) {
51
- I(i);
52
- return;
53
- }
54
- e._isMounted && e.setState(function() {
55
- return {
56
- isLoading: !1
57
- };
58
- }, function() {
59
- try {
60
- y(d);
61
- } catch (m) {
62
- I(m);
63
- }
64
- });
65
- }, M = function(i) {
66
- if (i.setAttribute("role", "img"), a) {
67
- var d = i.querySelector(":scope > desc");
68
- d && i.removeChild(d);
69
- var m = document.createElement("desc");
70
- m.innerHTML = a, i.prepend(m);
71
- }
72
- if (b) {
73
- var j = i.querySelector(":scope > title");
74
- j && i.removeChild(j);
75
- var C = document.createElement("title");
76
- C.innerHTML = b, i.prepend(C);
77
- }
78
- try {
79
- x(i);
80
- } catch (k) {
81
- I(k);
82
- }
83
- };
84
- A(p, {
85
- afterEach: L,
86
- beforeEach: M,
87
- cacheRequests: g,
88
- evalScripts: u,
89
- httpRequestWithCredentials: S,
90
- renumerateIRIElements: E
91
- });
92
- }
93
- }, o.removeSVG = function() {
94
- var e;
95
- (e = this.nonReactWrapper) != null && e.parentNode && (this.nonReactWrapper.parentNode.removeChild(this.nonReactWrapper), this.nonReactWrapper = null);
96
- }, o.componentDidMount = function() {
97
- this._isMounted = !0, this.renderSVG();
98
- }, o.componentDidUpdate = function(e) {
99
- var n = this;
100
- U(R({}, e), this.props) && this.setState(function() {
101
- return n.initialState;
102
- }, function() {
103
- n.removeSVG(), n.renderSVG();
104
- });
105
- }, o.componentWillUnmount = function() {
106
- this._isMounted = !1, this.removeSVG();
107
- }, o.render = function() {
108
- var e = this.props, n = e.fallback, a = e.loading, u = e.wrapper, S = N(e, H), E = u;
109
- return /* @__PURE__ */ h.createElement(E, R({}, S, {
110
- ref: this.refCallback
111
- }, u === "svg" ? {
112
- xmlns: v,
113
- xmlnsXlink: q
114
- } : {}), this.state.isLoading && a && /* @__PURE__ */ h.createElement(a, null), this.state.hasError && n && /* @__PURE__ */ h.createElement(n, null));
115
- }, s;
116
- }(h.Component);
117
- V.defaultProps = {
118
- afterInjection: function() {
119
- },
120
- beforeInjection: function() {
121
- },
122
- desc: "",
123
- evalScripts: "never",
124
- fallback: null,
125
- httpRequestWithCredentials: !1,
126
- loading: null,
127
- onError: function() {
128
- },
129
- renumerateIRIElements: !0,
130
- title: "",
131
- useRequestCache: !0,
132
- wrapper: "div"
133
- };
134
- V.propTypes = {
135
- afterInjection: t.func,
136
- beforeInjection: t.func,
137
- desc: t.string,
138
- evalScripts: t.oneOf(["always", "once", "never"]),
139
- fallback: t.oneOfType([t.func, t.object, t.string]),
140
- httpRequestWithCredentials: t.bool,
141
- loading: t.oneOfType([t.func, t.object, t.string]),
142
- onError: t.func,
143
- renumerateIRIElements: t.bool,
144
- src: t.string.isRequired,
145
- title: t.string,
146
- useRequestCache: t.bool,
147
- wrapper: t.oneOf(["div", "span", "svg"])
148
- };
1
+ const e = "data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.9091%2013.9999H15.0909V13.4545C15.0909%2011.1182%2013.4589%209.16312%2011.2727%208.66705M9.63633%202.06875C9.81067%202.02388%209.99344%202.00001%2010.1818%202.00001C11.3868%202.00001%2012.3636%202.97685%2012.3636%204.18183C12.3636%205.38682%2011.3868%206.36365%2010.1818%206.36365C9.99344%206.36365%209.81067%206.33978%209.63633%206.29491M5.81815%208.54547C3.10693%208.54547%200.909058%2010.7433%200.909058%2013.4546V14H10.7272V13.4546C10.7272%2010.7433%208.52936%208.54547%205.81815%208.54547ZM5.81815%206.36365C7.02314%206.36365%207.99997%205.38682%207.99997%204.18183C7.99997%202.97685%207.02314%202.00001%205.81815%202.00001C4.61317%202.00001%203.63634%202.97685%203.63634%204.18183C3.63634%205.38682%204.61317%206.36365%205.81815%206.36365Z'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e";
149
2
  export {
150
- V as ReactSVG
3
+ e as default
151
4
  };
152
5
  //# sourceMappingURL=index160.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index160.js","sources":["../node_modules/react-svg/dist/react-svg.esm.js"],"sourcesContent":["import _objectWithoutPropertiesLoose from '@babel/runtime/helpers/objectWithoutPropertiesLoose';\nimport _extends from '@babel/runtime/helpers/extends';\nimport _inheritsLoose from '@babel/runtime/helpers/inheritsLoose';\nimport { SVGInjector } from '@tanem/svg-injector';\nimport * as PropTypes from 'prop-types';\nimport * as React from 'react';\n\n// Hat-tip: https://github.com/mui/material-ui/tree/master/packages/mui-utils/src.\nvar ownerWindow = function ownerWindow(node) {\n var doc = (node == null ? void 0 : node.ownerDocument) || document;\n return doc.defaultView || window;\n};\n\n// Hat-tip: https://github.com/developit/preact-compat/blob/master/src/index.js#L402.\nvar shallowDiffers = function shallowDiffers(a, b) {\n for (var i in a) {\n if (!(i in b)) {\n return true;\n }\n }\n for (var _i in b) {\n if (a[_i] !== b[_i]) {\n return true;\n }\n }\n return false;\n};\n\nvar _excluded = [\"afterInjection\", \"beforeInjection\", \"desc\", \"evalScripts\", \"fallback\", \"httpRequestWithCredentials\", \"loading\", \"renumerateIRIElements\", \"src\", \"title\", \"useRequestCache\", \"wrapper\"];\nvar svgNamespace = 'http://www.w3.org/2000/svg';\nvar xlinkNamespace = 'http://www.w3.org/1999/xlink';\nvar ReactSVG = /*#__PURE__*/function (_React$Component) {\n function ReactSVG() {\n var _this;\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;\n _this.initialState = {\n hasError: false,\n isLoading: true\n };\n _this.state = _this.initialState;\n _this._isMounted = false;\n _this.reactWrapper = void 0;\n _this.nonReactWrapper = void 0;\n _this.refCallback = function (reactWrapper) {\n _this.reactWrapper = reactWrapper;\n };\n return _this;\n }\n _inheritsLoose(ReactSVG, _React$Component);\n var _proto = ReactSVG.prototype;\n _proto.renderSVG = function renderSVG() {\n var _this2 = this;\n /* istanbul ignore else */\n if (this.reactWrapper instanceof ownerWindow(this.reactWrapper).Node) {\n var _this$props = this.props,\n desc = _this$props.desc,\n evalScripts = _this$props.evalScripts,\n httpRequestWithCredentials = _this$props.httpRequestWithCredentials,\n renumerateIRIElements = _this$props.renumerateIRIElements,\n src = _this$props.src,\n title = _this$props.title,\n useRequestCache = _this$props.useRequestCache;\n /* eslint-disable @typescript-eslint/no-non-null-assertion */\n var onError = this.props.onError;\n var beforeInjection = this.props.beforeInjection;\n var afterInjection = this.props.afterInjection;\n var wrapper = this.props.wrapper;\n var nonReactWrapper;\n var nonReactTarget;\n if (wrapper === 'svg') {\n nonReactWrapper = document.createElementNS(svgNamespace, wrapper);\n nonReactWrapper.setAttribute('xmlns', svgNamespace);\n nonReactWrapper.setAttribute('xmlns:xlink', xlinkNamespace);\n nonReactTarget = document.createElementNS(svgNamespace, wrapper);\n } else {\n nonReactWrapper = document.createElement(wrapper);\n nonReactTarget = document.createElement(wrapper);\n }\n nonReactWrapper.appendChild(nonReactTarget);\n nonReactTarget.dataset.src = src;\n this.nonReactWrapper = this.reactWrapper.appendChild(nonReactWrapper);\n var handleError = function handleError(error) {\n _this2.removeSVG();\n if (!_this2._isMounted) {\n onError(error);\n return;\n }\n _this2.setState(function () {\n return {\n hasError: true,\n isLoading: false\n };\n }, function () {\n onError(error);\n });\n };\n var afterEach = function afterEach(error, svg) {\n if (error) {\n handleError(error);\n return;\n }\n // TODO (Tane): It'd be better to cleanly unsubscribe from SVGInjector\n // callbacks instead of tracking a property like this.\n if (_this2._isMounted) {\n _this2.setState(function () {\n return {\n isLoading: false\n };\n }, function () {\n try {\n afterInjection(svg);\n } catch (afterInjectionError) {\n handleError(afterInjectionError);\n }\n });\n }\n };\n var beforeEach = function beforeEach(svg) {\n svg.setAttribute('role', 'img');\n if (desc) {\n var originalDesc = svg.querySelector(':scope > desc');\n if (originalDesc) {\n svg.removeChild(originalDesc);\n }\n var newDesc = document.createElement('desc');\n newDesc.innerHTML = desc;\n svg.prepend(newDesc);\n }\n if (title) {\n var originalTitle = svg.querySelector(':scope > title');\n if (originalTitle) {\n svg.removeChild(originalTitle);\n }\n var newTitle = document.createElement('title');\n newTitle.innerHTML = title;\n svg.prepend(newTitle);\n }\n try {\n beforeInjection(svg);\n } catch (error) {\n handleError(error);\n }\n };\n SVGInjector(nonReactTarget, {\n afterEach: afterEach,\n beforeEach: beforeEach,\n cacheRequests: useRequestCache,\n evalScripts: evalScripts,\n httpRequestWithCredentials: httpRequestWithCredentials,\n renumerateIRIElements: renumerateIRIElements\n });\n }\n };\n _proto.removeSVG = function removeSVG() {\n var _this$nonReactWrapper;\n if ((_this$nonReactWrapper = this.nonReactWrapper) != null && _this$nonReactWrapper.parentNode) {\n this.nonReactWrapper.parentNode.removeChild(this.nonReactWrapper);\n this.nonReactWrapper = null;\n }\n };\n _proto.componentDidMount = function componentDidMount() {\n this._isMounted = true;\n this.renderSVG();\n };\n _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n var _this3 = this;\n if (shallowDiffers(_extends({}, prevProps), this.props)) {\n this.setState(function () {\n return _this3.initialState;\n }, function () {\n _this3.removeSVG();\n _this3.renderSVG();\n });\n }\n };\n _proto.componentWillUnmount = function componentWillUnmount() {\n this._isMounted = false;\n this.removeSVG();\n };\n _proto.render = function render() {\n /* eslint-disable @typescript-eslint/no-unused-vars */\n var _this$props2 = this.props;\n _this$props2.afterInjection;\n _this$props2.beforeInjection;\n _this$props2.desc;\n _this$props2.evalScripts;\n var Fallback = _this$props2.fallback;\n _this$props2.httpRequestWithCredentials;\n var Loading = _this$props2.loading;\n _this$props2.renumerateIRIElements;\n _this$props2.src;\n _this$props2.title;\n _this$props2.useRequestCache;\n var wrapper = _this$props2.wrapper,\n rest = _objectWithoutPropertiesLoose(_this$props2, _excluded);\n /* eslint-enable @typescript-eslint/no-unused-vars */\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n var Wrapper = wrapper;\n return /*#__PURE__*/React.createElement(Wrapper, _extends({}, rest, {\n ref: this.refCallback\n }, wrapper === 'svg' ? {\n xmlns: svgNamespace,\n xmlnsXlink: xlinkNamespace\n } : {}), this.state.isLoading && Loading && /*#__PURE__*/React.createElement(Loading, null), this.state.hasError && Fallback && /*#__PURE__*/React.createElement(Fallback, null));\n };\n return ReactSVG;\n}(React.Component);\nReactSVG.defaultProps = {\n afterInjection: function afterInjection() {\n return undefined;\n },\n beforeInjection: function beforeInjection() {\n return undefined;\n },\n desc: '',\n evalScripts: 'never',\n fallback: null,\n httpRequestWithCredentials: false,\n loading: null,\n onError: function onError() {\n return undefined;\n },\n renumerateIRIElements: true,\n title: '',\n useRequestCache: true,\n wrapper: 'div'\n};\nReactSVG.propTypes = {\n afterInjection: PropTypes.func,\n beforeInjection: PropTypes.func,\n desc: PropTypes.string,\n evalScripts: PropTypes.oneOf(['always', 'once', 'never']),\n fallback: PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.string]),\n httpRequestWithCredentials: PropTypes.bool,\n loading: PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.string]),\n onError: PropTypes.func,\n renumerateIRIElements: PropTypes.bool,\n src: PropTypes.string.isRequired,\n title: PropTypes.string,\n useRequestCache: PropTypes.bool,\n wrapper: PropTypes.oneOf(['div', 'span', 'svg'])\n} ;\n\nexport { ReactSVG };\n//# sourceMappingURL=react-svg.esm.js.map\n"],"names":["_objectWithoutPropertiesLoose","_extends","_inheritsLoose","SVGInjector","propTypesExports","React","ownerWindow","node","doc","shallowDiffers","a","b","i","_i","_excluded","svgNamespace","xlinkNamespace","ReactSVG","_React$Component","_this","_len","args","_key","reactWrapper","_proto","_this2","_this$props","desc","evalScripts","httpRequestWithCredentials","renumerateIRIElements","src","title","useRequestCache","onError","beforeInjection","afterInjection","wrapper","nonReactWrapper","nonReactTarget","handleError","error","afterEach","svg","afterInjectionError","beforeEach","originalDesc","newDesc","originalTitle","newTitle","_this$nonReactWrapper","prevProps","_this3","_this$props2","Fallback","Loading","rest","Wrapper","PropTypes.func","PropTypes.string","PropTypes.oneOf","PropTypes.oneOfType","PropTypes.object","PropTypes.bool"],"mappings":"AAOA,OAAAA,OAAA;AAAA,OAAAC,OAAA;AAAA,OAAAC,OAAA;AAAA,SAAA,eAAAC,SAAA;AAAA,SAAA,KAAAC,SAAA;AAAA,YAAAC,OAAA;AACA,IAAIC,IAAc,SAAqBC,GAAM;AAC3C,MAAIC,IAA+BD,GAAK,iBAAkB;AAC1D,SAAOC,EAAI,eAAe;AAC5B,GAGIC,IAAiB,SAAwBC,GAAGC,GAAG;AACjD,WAASC,KAAKF;AACZ,QAAI,EAAEE,KAAKD;AACT,aAAO;AAGX,WAASE,KAAMF;AACb,QAAID,EAAEG,CAAE,MAAMF,EAAEE,CAAE;AAChB,aAAO;AAGX,SAAO;AACT,GAEIC,IAAY,CAAC,kBAAkB,mBAAmB,QAAQ,eAAe,YAAY,8BAA8B,WAAW,yBAAyB,OAAO,SAAS,mBAAmB,SAAS,GACnMC,IAAe,8BACfC,IAAiB,gCACjBC,IAAwB,yBAAUC,GAAkB;AACtD,WAASD,IAAW;AAElB,aADIE,GACKC,IAAO,UAAU,QAAQC,IAAO,IAAI,MAAMD,CAAI,GAAGE,IAAO,GAAGA,IAAOF,GAAME;AAC/E,MAAAD,EAAKC,CAAI,IAAI,UAAUA,CAAI;AAE7B,WAAAH,IAAQD,EAAiB,KAAK,MAAMA,GAAkB,CAAC,IAAI,EAAE,OAAOG,CAAI,CAAC,KAAK,MAC9EF,EAAM,eAAe;AAAA,MACnB,UAAU;AAAA,MACV,WAAW;AAAA,IACjB,GACIA,EAAM,QAAQA,EAAM,cACpBA,EAAM,aAAa,IACnBA,EAAM,eAAe,QACrBA,EAAM,kBAAkB,QACxBA,EAAM,cAAc,SAAUI,GAAc;AAC1C,MAAAJ,EAAM,eAAeI;AAAA,IAC3B,GACWJ;AAAA,EACR;AACD,EAAAjB,EAAee,GAAUC,CAAgB;AACzC,MAAIM,IAASP,EAAS;AACtB,SAAAO,EAAO,YAAY,WAAqB;AACtC,QAAIC,IAAS;AAEb,QAAI,KAAK,wBAAwBnB,EAAY,KAAK,YAAY,EAAE,MAAM;AACpE,UAAIoB,IAAc,KAAK,OACrBC,IAAOD,EAAY,MACnBE,IAAcF,EAAY,aAC1BG,IAA6BH,EAAY,4BACzCI,IAAwBJ,EAAY,uBACpCK,IAAML,EAAY,KAClBM,IAAQN,EAAY,OACpBO,IAAkBP,EAAY,iBAE5BQ,IAAU,KAAK,MAAM,SACrBC,IAAkB,KAAK,MAAM,iBAC7BC,IAAiB,KAAK,MAAM,gBAC5BC,IAAU,KAAK,MAAM,SACrBC,GACAC;AACJ,MAAIF,MAAY,SACdC,IAAkB,SAAS,gBAAgBvB,GAAcsB,CAAO,GAChEC,EAAgB,aAAa,SAASvB,CAAY,GAClDuB,EAAgB,aAAa,eAAetB,CAAc,GAC1DuB,IAAiB,SAAS,gBAAgBxB,GAAcsB,CAAO,MAE/DC,IAAkB,SAAS,cAAcD,CAAO,GAChDE,IAAiB,SAAS,cAAcF,CAAO,IAEjDC,EAAgB,YAAYC,CAAc,GAC1CA,EAAe,QAAQ,MAAMR,GAC7B,KAAK,kBAAkB,KAAK,aAAa,YAAYO,CAAe;AACpE,UAAIE,IAAc,SAAqBC,GAAO;AAE5C,YADAhB,EAAO,UAAS,GACZ,CAACA,EAAO,YAAY;AACtB,UAAAS,EAAQO,CAAK;AACb;AAAA,QACD;AACD,QAAAhB,EAAO,SAAS,WAAY;AAC1B,iBAAO;AAAA,YACL,UAAU;AAAA,YACV,WAAW;AAAA,UACvB;AAAA,QACA,GAAW,WAAY;AACb,UAAAS,EAAQO,CAAK;AAAA,QACvB,CAAS;AAAA,MACT,GACUC,IAAY,SAAmBD,GAAOE,GAAK;AAC7C,YAAIF,GAAO;AACT,UAAAD,EAAYC,CAAK;AACjB;AAAA,QACD;AAGD,QAAIhB,EAAO,cACTA,EAAO,SAAS,WAAY;AAC1B,iBAAO;AAAA,YACL,WAAW;AAAA,UACzB;AAAA,QACA,GAAa,WAAY;AACb,cAAI;AACF,YAAAW,EAAeO,CAAG;AAAA,UACnB,SAAQC,GAAqB;AAC5B,YAAAJ,EAAYI,CAAmB;AAAA,UAChC;AAAA,QACb,CAAW;AAAA,MAEX,GACUC,IAAa,SAAoBF,GAAK;AAExC,YADAA,EAAI,aAAa,QAAQ,KAAK,GAC1BhB,GAAM;AACR,cAAImB,IAAeH,EAAI,cAAc,eAAe;AACpD,UAAIG,KACFH,EAAI,YAAYG,CAAY;AAE9B,cAAIC,IAAU,SAAS,cAAc,MAAM;AAC3C,UAAAA,EAAQ,YAAYpB,GACpBgB,EAAI,QAAQI,CAAO;AAAA,QACpB;AACD,YAAIf,GAAO;AACT,cAAIgB,IAAgBL,EAAI,cAAc,gBAAgB;AACtD,UAAIK,KACFL,EAAI,YAAYK,CAAa;AAE/B,cAAIC,IAAW,SAAS,cAAc,OAAO;AAC7C,UAAAA,EAAS,YAAYjB,GACrBW,EAAI,QAAQM,CAAQ;AAAA,QACrB;AACD,YAAI;AACF,UAAAd,EAAgBQ,CAAG;AAAA,QACpB,SAAQF,GAAO;AACd,UAAAD,EAAYC,CAAK;AAAA,QAClB;AAAA,MACT;AACM,MAAAtC,EAAYoC,GAAgB;AAAA,QAC1B,WAAWG;AAAA,QACX,YAAYG;AAAA,QACZ,eAAeZ;AAAA,QACf,aAAaL;AAAA,QACb,4BAA4BC;AAAA,QAC5B,uBAAuBC;AAAA,MAC/B,CAAO;AAAA,IACF;AAAA,EACL,GACEN,EAAO,YAAY,WAAqB;AACtC,QAAI0B;AACJ,KAAKA,IAAwB,KAAK,oBAAoB,QAAQA,EAAsB,eAClF,KAAK,gBAAgB,WAAW,YAAY,KAAK,eAAe,GAChE,KAAK,kBAAkB;AAAA,EAE7B,GACE1B,EAAO,oBAAoB,WAA6B;AACtD,SAAK,aAAa,IAClB,KAAK,UAAS;AAAA,EAClB,GACEA,EAAO,qBAAqB,SAA4B2B,GAAW;AACjE,QAAIC,IAAS;AACb,IAAI3C,EAAeR,EAAS,CAAE,GAAEkD,CAAS,GAAG,KAAK,KAAK,KACpD,KAAK,SAAS,WAAY;AACxB,aAAOC,EAAO;AAAA,IACtB,GAAS,WAAY;AACb,MAAAA,EAAO,UAAS,GAChBA,EAAO,UAAS;AAAA,IACxB,CAAO;AAAA,EAEP,GACE5B,EAAO,uBAAuB,WAAgC;AAC5D,SAAK,aAAa,IAClB,KAAK,UAAS;AAAA,EAClB,GACEA,EAAO,SAAS,WAAkB;AAEhC,QAAI6B,IAAe,KAAK,OAKlBC,IAAWD,EAAa,UAExBE,IAAUF,EAAa,SAKvBhB,IAAUgB,EAAa,SAC3BG,IAAOxD,EAA8BqD,GAAcvC,CAAS,GAG1D2C,IAAUpB;AACd,WAAoB,gBAAAhC,EAAM,cAAcoD,GAASxD,EAAS,CAAA,GAAIuD,GAAM;AAAA,MAClE,KAAK,KAAK;AAAA,IAChB,GAAOnB,MAAY,QAAQ;AAAA,MACrB,OAAOtB;AAAA,MACP,YAAYC;AAAA,IAClB,IAAQ,CAAE,CAAA,GAAG,KAAK,MAAM,aAAauC,KAAwB,gBAAAlD,EAAM,cAAckD,GAAS,IAAI,GAAG,KAAK,MAAM,YAAYD,KAAyB,gBAAAjD,EAAM,cAAciD,GAAU,IAAI,CAAC;AAAA,EACpL,GACSrC;AACT,EAAEZ,EAAM,SAAS;AACjBY,EAAS,eAAe;AAAA,EACtB,gBAAgB,WAA0B;AAAA,EAEzC;AAAA,EACD,iBAAiB,WAA2B;AAAA,EAE3C;AAAA,EACD,MAAM;AAAA,EACN,aAAa;AAAA,EACb,UAAU;AAAA,EACV,4BAA4B;AAAA,EAC5B,SAAS;AAAA,EACT,SAAS,WAAmB;AAAA,EAE3B;AAAA,EACD,uBAAuB;AAAA,EACvB,OAAO;AAAA,EACP,iBAAiB;AAAA,EACjB,SAAS;AACX;AACAA,EAAS,YAAY;AAAA,EACnB,gBAAgByC,EAAc;AAAA,EAC9B,iBAAiBA,EAAc;AAAA,EAC/B,MAAMC,EAAgB;AAAA,EACtB,aAAaC,EAAAA,MAAgB,CAAC,UAAU,QAAQ,OAAO,CAAC;AAAA,EACxD,UAAUC,EAAAA,UAAoB,CAACH,EAAc,MAAEI,EAAgB,QAAEH,EAAgB,MAAA,CAAC;AAAA,EAClF,4BAA4BI,EAAc;AAAA,EAC1C,SAASF,EAAAA,UAAoB,CAACH,EAAc,MAAEI,EAAgB,QAAEH,EAAgB,MAAA,CAAC;AAAA,EACjF,SAASD,EAAc;AAAA,EACvB,uBAAuBK,EAAc;AAAA,EACrC,KAAKJ,EAAgB,OAAC;AAAA,EACtB,OAAOA,EAAgB;AAAA,EACvB,iBAAiBI,EAAc;AAAA,EAC/B,SAASH,EAAAA,MAAgB,CAAC,OAAO,QAAQ,KAAK,CAAC;AACjD;","x_google_ignoreList":[0]}
1
+ {"version":3,"file":"index160.js","sources":["../src/assets/icons/people.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.9091%2013.9999H15.0909V13.4545C15.0909%2011.1182%2013.4589%209.16312%2011.2727%208.66705M9.63633%202.06875C9.81067%202.02388%209.99344%202.00001%2010.1818%202.00001C11.3868%202.00001%2012.3636%202.97685%2012.3636%204.18183C12.3636%205.38682%2011.3868%206.36365%2010.1818%206.36365C9.99344%206.36365%209.81067%206.33978%209.63633%206.29491M5.81815%208.54547C3.10693%208.54547%200.909058%2010.7433%200.909058%2013.4546V14H10.7272V13.4546C10.7272%2010.7433%208.52936%208.54547%205.81815%208.54547ZM5.81815%206.36365C7.02314%206.36365%207.99997%205.38682%207.99997%204.18183C7.99997%202.97685%207.02314%202.00001%205.81815%202.00001C4.61317%202.00001%203.63634%202.97685%203.63634%204.18183C3.63634%205.38682%204.61317%206.36365%205.81815%206.36365Z'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_77"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20width='26'%20height='26'%20viewBox='0%200%2026%2026'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M23.1538%2026C24.7258%2026%2026%2024.7258%2026%2023.1538V2.84616C26%201.27426%2024.7258%200%2023.1538%200H2.84616C1.27426%200%200%201.27426%200%202.84616V23.1538C0%2024.7258%201.27426%2026%202.84616%2026H23.1538Z'%20fill='%23CFE7FA'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.5%205C19.433%205%2021%206.567%2021%208.5C21%2010.433%2019.433%2012%2017.5%2012C15.567%2012%2014%2010.433%2014%208.5C14%206.567%2015.567%205%2017.5%205Z'%20fill='%231088E7'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M24.9494%2025.3622C24.4596%2025.761%2023.8346%2026%2023.1538%2026H2.84616C1.27426%2026%200%2024.7258%200%2023.1538V17.8281L8.00054%209.82756C8.39106%209.43704%209.02422%209.43704%209.41474%209.82756L24.9494%2025.3622Z'%20fill='%231088E7'/%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index161.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index161.js","sources":["../src/assets/icons/photo.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20width='26'%20height='26'%20viewBox='0%200%2026%2026'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M23.1538%2026C24.7258%2026%2026%2024.7258%2026%2023.1538V2.84616C26%201.27426%2024.7258%200%2023.1538%200H2.84616C1.27426%200%200%201.27426%200%202.84616V23.1538C0%2024.7258%201.27426%2026%202.84616%2026H23.1538Z'%20fill='%23CFE7FA'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.5%205C19.433%205%2021%206.567%2021%208.5C21%2010.433%2019.433%2012%2017.5%2012C15.567%2012%2014%2010.433%2014%208.5C14%206.567%2015.567%205%2017.5%205Z'%20fill='%231088E7'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M24.9494%2025.3622C24.4596%2025.761%2023.8346%2026%2023.1538%2026H2.84616C1.27426%2026%200%2024.7258%200%2023.1538V17.8281L8.00054%209.82756C8.39106%209.43704%209.02422%209.43704%209.41474%209.82756L24.9494%2025.3622Z'%20fill='%231088E7'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_78"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M8%203V14'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M2.5%208.46329H13.5'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index162.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index162.js","sources":["../src/assets/icons/plus.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M8%203V14'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M2.5%208.46329H13.5'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_79"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%3e%3cg%20clip-path='url(%23clip0_7236_76584)'%3e%3cpath%20d='M8.00012%2011.6224C10.0022%2011.6224%2011.6251%209.99943%2011.6251%207.99739C11.6251%205.99536%2010.0022%204.37239%208.00012%204.37239C5.99809%204.37239%204.37512%205.99536%204.37512%207.99739C4.37512%209.99943%205.99809%2011.6224%208.00012%2011.6224Z'%20fill='black'%20/%3e%3cpath%20d='M14.2349%207.99805C14.2349%204.55622%2011.4453%201.76578%208.00342%201.76562C4.5615%201.76562%201.771%204.55613%201.771%207.99805C1.77115%2011.4399%204.56159%2014.2295%208.00342%2014.2295C11.4452%2014.2293%2014.2347%2011.4398%2014.2349%207.99805ZM11.1255%207.99707C11.1253%206.27145%209.72611%204.87227%208.00049%204.87207C6.2747%204.87207%204.87566%206.27132%204.87549%207.99707C4.87549%209.72296%206.2746%2011.1221%208.00049%2011.1221C9.72621%2011.1219%2011.1255%209.72284%2011.1255%207.99707ZM15.2349%207.99805C15.2347%2011.9921%2011.9974%2015.2293%208.00342%2015.2295C4.00931%2015.2295%200.771147%2011.9922%200.770996%207.99805C0.770996%204.00385%204.00922%200.765625%208.00342%200.765625C11.9975%200.765776%2015.2349%204.00394%2015.2349%207.99805ZM12.1255%207.99707C12.1255%2010.2751%2010.2785%2012.1219%208.00049%2012.1221C5.72231%2012.1221%203.87549%2010.2752%203.87549%207.99707C3.87566%205.71904%205.72242%203.87207%208.00049%203.87207C10.2784%203.87227%2012.1253%205.71916%2012.1255%207.99707Z'%20fill='black'%20/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_7236_76584'%3e%3crect%20width='16'%20height='16'%20fill='white'%20/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index163.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index163.js","sources":["../src/assets/icons/radio-field.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%3e%3cg%20clip-path='url(%23clip0_7236_76584)'%3e%3cpath%20d='M8.00012%2011.6224C10.0022%2011.6224%2011.6251%209.99943%2011.6251%207.99739C11.6251%205.99536%2010.0022%204.37239%208.00012%204.37239C5.99809%204.37239%204.37512%205.99536%204.37512%207.99739C4.37512%209.99943%205.99809%2011.6224%208.00012%2011.6224Z'%20fill='black'%20/%3e%3cpath%20d='M14.2349%207.99805C14.2349%204.55622%2011.4453%201.76578%208.00342%201.76562C4.5615%201.76562%201.771%204.55613%201.771%207.99805C1.77115%2011.4399%204.56159%2014.2295%208.00342%2014.2295C11.4452%2014.2293%2014.2347%2011.4398%2014.2349%207.99805ZM11.1255%207.99707C11.1253%206.27145%209.72611%204.87227%208.00049%204.87207C6.2747%204.87207%204.87566%206.27132%204.87549%207.99707C4.87549%209.72296%206.2746%2011.1221%208.00049%2011.1221C9.72621%2011.1219%2011.1255%209.72284%2011.1255%207.99707ZM15.2349%207.99805C15.2347%2011.9921%2011.9974%2015.2293%208.00342%2015.2295C4.00931%2015.2295%200.771147%2011.9922%200.770996%207.99805C0.770996%204.00385%204.00922%200.765625%208.00342%200.765625C11.9975%200.765776%2015.2349%204.00394%2015.2349%207.99805ZM12.1255%207.99707C12.1255%2010.2751%2010.2785%2012.1219%208.00049%2012.1221C5.72231%2012.1221%203.87549%2010.2752%203.87549%207.99707C3.87566%205.71904%205.72242%203.87207%208.00049%203.87207C10.2784%203.87227%2012.1253%205.71916%2012.1255%207.99707Z'%20fill='black'%20/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_7236_76584'%3e%3crect%20width='16'%20height='16'%20fill='white'%20/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\""],"names":["__vite_glob_0_80"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='10'%20cy='10'%20r='6.4'%20fill='%231088E7'%20stroke='%231088E7'%20stroke-width='1.2'/%3e%3cpath%20d='M10%2013.5C11.933%2013.5%2013.5%2011.933%2013.5%2010C13.5%208.067%2011.933%206.5%2010%206.5C8.067%206.5%206.5%208.067%206.5%2010C6.5%2011.933%208.067%2013.5%2010%2013.5Z'%20fill='white'/%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index164.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index164.js","sources":["../src/assets/icons/radio-filled.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='10'%20cy='10'%20r='6.4'%20fill='%231088E7'%20stroke='%231088E7'%20stroke-width='1.2'/%3e%3cpath%20d='M10%2013.5C11.933%2013.5%2013.5%2011.933%2013.5%2010C13.5%208.067%2011.933%206.5%2010%206.5C8.067%206.5%206.5%208.067%206.5%2010C6.5%2011.933%208.067%2013.5%2010%2013.5Z'%20fill='white'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_81"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='7'%20cy='7'%20r='6.4'%20stroke='%23C9D4E3'%20stroke-width='1.2'/%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index165.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index165.js","sources":["../src/assets/icons/radio.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='7'%20cy='7'%20r='6.4'%20stroke='%23C9D4E3'%20stroke-width='1.2'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_82"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12%2020.9998C16.9706%2020.9998%2021%2016.9704%2021%2011.9998C21%207.02919%2016.9706%202.99976%2012%202.99976C7.02944%202.99976%203%207.02919%203%2011.9998C3%2016.9704%207.02944%2020.9998%2012%2020.9998Z'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%202.99976V11.9998L18.3692%2018.369'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index166.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index166.js","sources":["../src/assets/icons/reports.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12%2020.9998C16.9706%2020.9998%2021%2016.9704%2021%2011.9998C21%207.02919%2016.9706%202.99976%2012%202.99976C7.02944%202.99976%203%207.02919%203%2011.9998C3%2016.9704%207.02944%2020.9998%2012%2020.9998Z'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%202.99976V11.9998L18.3692%2018.369'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_83"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M18.6462%2010.5231V8.30772C18.6462%207.49205%2017.9849%206.8308%2017.1692%206.8308H9.78462L9.32584%204.99566C9.16146%204.3382%208.57072%203.87695%207.893%203.87695H3.87692C3.06124%203.87695%202.4%204.5382%202.4%205.35388V18.6462C2.4%2019.4619%203.06124%2020.1231%203.87692%2020.1231H11.2615'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.2615%2020.1232H18.2314C18.9092%2020.1232%2019.5%2019.662%2019.6643%2019.0044L21.5804%2011.3402C21.5934%2011.288%2021.6%2011.2345%2021.6%2011.1807C21.6%2010.8176%2021.3056%2010.5232%2020.9425%2010.5232H8.72043C8.04362%2010.5232%207.45342%2010.9832%207.2882%2011.6396L6.08198%2016.4309'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index167.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index167.js","sources":["../src/assets/icons/repository.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M18.6462%2010.5231V8.30772C18.6462%207.49205%2017.9849%206.8308%2017.1692%206.8308H9.78462L9.32584%204.99566C9.16146%204.3382%208.57072%203.87695%207.893%203.87695H3.87692C3.06124%203.87695%202.4%204.5382%202.4%205.35388V18.6462C2.4%2019.4619%203.06124%2020.1231%203.87692%2020.1231H11.2615'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.2615%2020.1232H18.2314C18.9092%2020.1232%2019.5%2019.662%2019.6643%2019.0044L21.5804%2011.3402C21.5934%2011.288%2021.6%2011.2345%2021.6%2011.1807C21.6%2010.8176%2021.3056%2010.5232%2020.9425%2010.5232H8.72043C8.04362%2010.5232%207.45342%2010.9832%207.2882%2011.6396L6.08198%2016.4309'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_84"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M6.18503%202.00115L3.87742%204.30876L6.18503%206.61637M3.41821%209.15518C3.41821%2011.8315%205.58784%2014.0012%208.2642%2014.0012C10.9406%2014.0012%2013.1102%2011.8315%2013.1102%209.15518C13.1102%206.47882%2010.9406%204.30919%208.2642%204.30919H3.87974'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index168.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index168.js","sources":["../src/assets/icons/reset.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M6.18503%202.00115L3.87742%204.30876L6.18503%206.61637M3.41821%209.15518C3.41821%2011.8315%205.58784%2014.0012%208.2642%2014.0012C10.9406%2014.0012%2013.1102%2011.8315%2013.1102%209.15518C13.1102%206.47882%2010.9406%204.30919%208.2642%204.30919H3.87974'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_85"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.988281%208.62031H9.66016C11.512%208.62031%2013.0133%207.11907%2013.0133%205.26719C13.0133%203.41531%2011.512%201.91406%209.66016%201.91406H6.53828'%20stroke='%236580A6'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.45703%205.15039L0.988281%208.61914L4.45703%2012.0879'%20stroke='%236580A6'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index169.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index169.js","sources":["../src/assets/icons/return.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.988281%208.62031H9.66016C11.512%208.62031%2013.0133%207.11907%2013.0133%205.26719C13.0133%203.41531%2011.512%201.91406%209.66016%201.91406H6.53828'%20stroke='%236580A6'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.45703%205.15039L0.988281%208.61914L4.45703%2012.0879'%20stroke='%236580A6'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_86"],"mappings":"AAAA,MAAAA,IAAe;"}
package/dist/index17.js CHANGED
@@ -1,260 +1,65 @@
1
- import R, { forwardRef as ee, useState as D, useRef as F, useEffect as C, useImperativeHandle as te } from "react";
2
- import oe from "react-dom";
3
- function H() {
4
- return H = Object.assign ? Object.assign.bind() : function(g) {
5
- for (var v = 1; v < arguments.length; v++) {
6
- var f = arguments[v];
7
- for (var m in f) ({}).hasOwnProperty.call(f, m) && (g[m] = f[m]);
8
- }
9
- return g;
10
- }, H.apply(null, arguments);
11
- }
12
- const ie = /* @__PURE__ */ ee(({
13
- className: g = "",
14
- automationId: v = "",
15
- position: f = "bottom-center",
16
- popoverContentAutomationId: m = "",
17
- contentWidth: L = "max",
18
- renderPopoverContents: I,
19
- renderPopoverSrcElement: N,
20
- onPopoverToggle: j,
21
- isPopoverOpen: B,
22
- disabled: w = !1,
23
- isWithPortal: b = !1,
24
- ariaLabel: W,
25
- sourceRole: _ = "button",
26
- popoverContentStyleProperty: T = {
27
- zIndex: 1e3,
28
- borderColor: "var(--color-gray-200)",
29
- color: "var(--color-gray-900)",
30
- backgroundColor: "var(--color-white)"
31
- },
32
- disableClickToggle: X = !1,
33
- ...z
34
- }, G) => {
35
- const [c, u] = D(!1), [h, O] = D(f), [J, $] = D(!1), a = F(null), l = F(null), [q, y] = D({
36
- top: 0,
37
- left: 0
38
- }), k = (e = "bottom-center") => {
39
- if (!a.current) return {
40
- top: 0,
41
- left: 0
42
- };
43
- let o = e;
44
- const t = a.current.getBoundingClientRect(), i = window.innerWidth, s = window.innerHeight;
45
- let r = 0, n = 0;
46
- switch (o) {
47
- case "bottom-left":
48
- r = t.bottom, n = t.left;
49
- break;
50
- case "bottom-right":
51
- r = t.bottom, n = t.right - t.width * 0.5;
52
- break;
53
- case "bottom-center":
54
- r = t.bottom, n = t.left + t.width / 2;
55
- break;
56
- case "top-left":
57
- r = t.top - t.height * 1.9, n = t.left;
58
- break;
59
- case "top-right":
60
- r = t.top - t.height * 1.9, n = t.right - t.width * 0.5;
61
- break;
62
- case "top-center":
63
- r = t.top - t.height * 1.9, n = t.left + t.width / 2;
64
- break;
65
- default:
66
- r = t.bottom, n = t.left;
67
- break;
68
- }
69
- const p = l.current?.getBoundingClientRect(), E = p?.width || 0, d = p?.height || 0;
70
- if ((o === "bottom-center" || o === "top-center") && (n = n - E / 2), n + E > i && (n = Math.max(0, i - E)), n < 0 && (n = 0), r + d > s) {
71
- const V = t.top, Z = s - t.bottom;
72
- V >= d || V > Z ? (r = t.top - d, r < 0 && (r = 0)) : r = Math.max(0, s - d);
73
- }
74
- return r < 0 && (r = t.bottom, r + d > s && (r = Math.max(0, s - d))), {
75
- top: r,
76
- left: n
77
- };
78
- };
79
- C(() => {
80
- if (j && j(c), c && !b)
81
- return document.body.addEventListener("click", K, !0), Q(), () => document.body.removeEventListener("click", K, !0);
82
- if (c && b) {
83
- document.body.addEventListener("click", P, !0), window.addEventListener("scroll", P), window.addEventListener("resize", M);
84
- const e = setTimeout(() => {
85
- const t = k(h);
86
- A(), t && y(t);
87
- }, 0), o = setTimeout(() => {
88
- const t = k(h);
89
- t && y(t);
90
- }, 10);
91
- return () => {
92
- document.body.removeEventListener("click", P, !0), window.removeEventListener("scroll", P), window.removeEventListener("resize", M), clearTimeout(e), clearTimeout(o);
93
- };
94
- }
95
- }, [c, b]);
96
- const A = () => {
97
- if (!a.current) {
98
- $(!1);
99
- return;
100
- }
101
- const e = a.current.getBoundingClientRect(), o = window.innerHeight, t = window.innerWidth, i = e.top < o && e.bottom > 0 && e.left < t && e.right > 0;
102
- $(i);
103
- };
104
- C(() => {
105
- u(B ?? !1);
106
- }, [B]), C(() => {
107
- c && l.current && setTimeout(() => {
108
- const e = ['[role="menuitem"]', '[role="option"]', '[role="menuitemcheckbox"]', '[role="menuitemradio"]', "button:not([disabled])", "a[href]", '[tabindex]:not([tabindex="-1"])'].join(", "), o = l.current?.querySelector(e);
109
- o && document.activeElement === a.current && o.focus();
110
- }, 0);
111
- }, [c]);
112
- const Q = () => {
113
- if (!l.current) return;
114
- const e = l.current.getBoundingClientRect(), o = window.innerHeight;
115
- e?.bottom > o ? O(f.includes("left") ? "top-left" : f.includes("right") ? "top-right" : "top-center") : e?.top < 0 && O(f.includes("left") ? "bottom-left" : f.includes("right") ? "bottom-right" : "bottom-center");
116
- }, K = (e) => {
117
- const o = a.current;
118
- if (!o) return;
119
- const t = e.target, i = o.contains(t), s = l.current?.contains(t), n = t.closest?.(".se-design-popover-wrapper");
120
- (!i && !s || n && n !== o) && u(!1);
121
- }, P = (e) => {
122
- const o = a.current, t = l.current;
123
- if (!o) return;
124
- if (A(), e.type === "scroll" && c) {
125
- const d = k(h);
126
- d && y(d);
127
- }
128
- const i = e.target, s = o.contains(i), r = t?.contains(i), p = i.closest?.(".se-design-popover-wrapper");
129
- (!s && !r || p && p !== o) && u(!1);
130
- }, M = () => {
131
- if (c && b && a.current) {
132
- A();
133
- const e = k(h);
134
- e && y(e);
135
- }
136
- }, x = () => {
137
- u((e) => !e);
138
- }, S = (e, o) => {
139
- if (!o) return;
140
- const t = ['[role="menuitem"]', '[role="option"]', '[role="menuitemcheckbox"]', '[role="menuitemradio"]', "button:not([disabled])", "a[href]", "input:not([disabled])", "select:not([disabled])", "textarea:not([disabled])", '[tabindex]:not([tabindex="-1"])'].join(", "), i = Array.from(o.querySelectorAll(t)).filter((n) => {
141
- const p = window.getComputedStyle(n);
142
- return !n.hasAttribute("disabled") && !n.hasAttribute("aria-disabled") && p.display !== "none" && p.visibility !== "hidden" && (n.tabIndex >= 0 || n.hasAttribute("role"));
143
- });
144
- if (i.length === 0) return;
145
- const s = i.findIndex((n) => n === document.activeElement);
146
- let r = -1;
147
- e.key === "ArrowDown" ? (e.preventDefault(), e.stopPropagation(), r = s < i.length - 1 ? s + 1 : 0) : e.key === "ArrowUp" ? (e.preventDefault(), e.stopPropagation(), r = s > 0 ? s - 1 : i.length - 1) : e.key === "Home" ? (e.preventDefault(), e.stopPropagation(), r = 0) : e.key === "End" && (e.preventDefault(), e.stopPropagation(), r = i.length - 1), r >= 0 && i[r] ? i[r].focus() : s === -1 && i.length > 0 && i[0].focus();
148
- };
149
- te(G, () => ({
150
- togglePopover: x
151
- }), []);
152
- const Y = {
153
- "bottom-left": {
154
- left: "0",
155
- top: "100%"
1
+ import e, { forwardRef as x } from "react";
2
+ import { Badge as E } from "./index10.js";
3
+ import { Icon as f } from "./index6.js";
4
+ const h = /* @__PURE__ */ x((m, g) => {
5
+ const {
6
+ label: r = "",
7
+ icon: a,
8
+ tag: n = "",
9
+ iconPosition: l = "right",
10
+ onClick: s,
11
+ isActive: i = !1,
12
+ showCheckMarkForSelected: c = !1,
13
+ isDisabled: t = !1,
14
+ automationId: b = "",
15
+ renderJSX: u = null,
16
+ tabIndex: v,
17
+ onKeyDown: p,
18
+ onFocus: y,
19
+ ariaLabel: k
20
+ } = m, d = (o) => /* @__PURE__ */ e.createElement(f, {
21
+ name: o
22
+ });
23
+ return /* @__PURE__ */ e.createElement("div", {
24
+ ref: g,
25
+ className: `se-design-menu-item flex items-center justify-between p-2 mx-1 text-[var(--color-gray-900)] hover:bg-[var(--color-gray-100)] focus-visible:bg-[var(--color-gray-100)] focus-outline rounded-[6px] gap-2
26
+ ${i && !c ? "bg-[var(--color-blue-100)]" : ""}
27
+ ${t ? "opacity-50 cursor-not-allowed" : "cursor-pointer"}
28
+ `,
29
+ onClick: t ? void 0 : () => s?.({
30
+ label: r,
31
+ tag: n,
32
+ icon: a,
33
+ iconPosition: l
34
+ }),
35
+ onKeyDown: (o) => {
36
+ p?.(o), !t && (o.key === "Enter" || o.key === " ") && (o.preventDefault(), s?.({
37
+ label: r,
38
+ tag: n,
39
+ icon: a,
40
+ iconPosition: l
41
+ }));
156
42
  },
157
- "bottom-right": {
158
- right: "0",
159
- top: "100%"
160
- },
161
- "bottom-center": {
162
- left: "50%",
163
- transform: "translateX(-50%)",
164
- top: "100%"
165
- },
166
- "top-left": {
167
- left: "0",
168
- bottom: "100%"
169
- },
170
- "top-right": {
171
- right: "0",
172
- bottom: "100%"
173
- },
174
- "top-center": {
175
- left: "50%",
176
- transform: "translateX(-50%)",
177
- bottom: "100%"
178
- }
179
- }, U = z?.noBorder ? "" : "shadow-md border rounded-md";
180
- return /* @__PURE__ */ R.createElement("div", H({
181
- className: "se-design-popover-wrapper cursor-pointer relative" + (g.length > 0 ? ` ${g}` : "") + (c ? " open" : "") + (w ? " opacity-50 cursor-not-allowed pointer-events-none" : ""),
182
- ref: a,
183
- onClick: (e) => {
184
- w || X || (e.stopPropagation(), x());
185
- },
186
- onKeyDown: (e) => {
187
- if (!w)
188
- if (e.key === "Enter" || e.key === " ") {
189
- e.preventDefault(), e.stopPropagation();
190
- const o = c;
191
- x(), o || setTimeout(() => {
192
- const t = l.current;
193
- if (t) {
194
- const i = ['[role="menuitem"]', '[role="option"]', '[role="menuitemcheckbox"]', '[role="menuitemradio"]', "button:not([disabled])", "a[href]", '[tabindex]:not([tabindex="-1"])'].join(", "), s = t.querySelector(i);
195
- s && s.focus();
196
- }
197
- }, 0);
198
- } else if (e.key === "Escape" && c)
199
- e.preventDefault(), e.stopPropagation(), u(!1);
200
- else if ((e.key === "ArrowDown" || e.key === "ArrowUp") && c) {
201
- const o = l.current;
202
- o && S(e, o);
203
- } else e.key === "ArrowDown" && !c && (e.preventDefault(), e.stopPropagation(), u(!0), setTimeout(() => {
204
- const o = l.current;
205
- if (o) {
206
- const t = ['[role="menuitem"]', '[role="option"]', '[role="menuitemcheckbox"]', '[role="menuitemradio"]', "button:not([disabled])", "a[href]", '[tabindex]:not([tabindex="-1"])'].join(", "), i = o.querySelector(t);
207
- i && i.focus();
208
- }
209
- }, 0));
210
- },
211
- role: _,
212
- "aria-expanded": c ? "true" : "false",
213
- "aria-haspopup": "true",
214
- tabIndex: 0,
215
- "aria-disabled": w ? "true" : "false",
216
- "aria-label": W,
217
- "data-automation-id": v
218
- }, z), N({
219
- displayPopover: c,
220
- togglePopover: x
221
- }), c && !b && /* @__PURE__ */ R.createElement("div", {
222
- className: `popover-content absolute ${U} z-[1000] ${L == "full" ? "w-full" : "w-max"}`,
223
- style: {
224
- ...T,
225
- ...Y[h]
226
- },
227
- onClick: (e) => e.stopPropagation(),
228
- onKeyDown: (e) => {
229
- e.key === "Escape" ? (e.preventDefault(), e.stopPropagation(), u(!1), a.current?.focus()) : (e.key === "ArrowDown" || e.key === "ArrowUp" || e.key === "Home" || e.key === "End") && S(e, l.current);
230
- },
231
- role: "dialog",
232
- "aria-modal": "false",
233
- ref: l,
234
- "data-automation-id": m
235
- }, I({
236
- closePopoverCb: () => u(!1)
237
- })), b && c && J && /* @__PURE__ */ oe.createPortal(/* @__PURE__ */ R.createElement("div", {
238
- className: `popover-content-with-portal ${U} ${L == "full" ? "w-full" : "w-max"}`,
239
- style: {
240
- position: "fixed",
241
- top: q.top,
242
- left: q.left,
243
- ...T
244
- },
245
- onClick: (e) => e.stopPropagation(),
246
- onKeyDown: (e) => {
247
- e.key === "Escape" ? (e.preventDefault(), e.stopPropagation(), u(!1), a.current?.focus()) : (e.key === "ArrowDown" || e.key === "ArrowUp" || e.key === "Home" || e.key === "End") && S(e, l.current);
248
- },
249
- role: "dialog",
250
- "aria-modal": "false",
251
- ref: l,
252
- "data-automation-id": m
253
- }, I({
254
- closePopoverCb: () => u(!1)
255
- })), document.body));
43
+ role: c ? "menuitemradio" : "menuitem",
44
+ "aria-checked": c ? i : void 0,
45
+ "aria-disabled": t,
46
+ "aria-label": k || r,
47
+ tabIndex: t ? -1 : v ?? 0,
48
+ "data-automation-id": b,
49
+ onFocus: y
50
+ }, u ? u(m) : /* @__PURE__ */ e.createElement(e.Fragment, null, /* @__PURE__ */ e.createElement("div", {
51
+ className: "flex items-center gap-1"
52
+ }, l === "left" && a && d(a), /* @__PURE__ */ e.createElement("span", {
53
+ className: "text-[var(--color-gray-900)]"
54
+ }, r), l === "right" && a && d(a)), n && /* @__PURE__ */ e.createElement(E, {
55
+ label: n
56
+ }), c && i && /* @__PURE__ */ e.createElement(f, {
57
+ name: "checkmark",
58
+ stroke: "var(--color-blue-500)"
59
+ })));
256
60
  });
61
+ h.displayName = "MenuItem";
257
62
  export {
258
- ie as Popover
63
+ h as MenuItem
259
64
  };
260
65
  //# sourceMappingURL=index17.js.map