se-design 1.0.3 → 1.0.8-5.dev.1

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 +353 -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 +400 -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 +116 -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 +55 -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
@@ -1 +1 @@
1
- {"version":3,"file":"index180.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index180.js","sources":["../src/assets/icons/shipment.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%3cpath%20d='M8%201.65625V5.55955'%20stroke='%231BBA5F'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M1.65723%205.55859H14.3429V13.3652C14.3429%2013.6239%2014.2401%2013.8722%2014.0571%2014.0552C13.8741%2014.2381%2013.6259%2014.341%2013.3671%2014.341H2.63305C2.37424%2014.341%202.12604%2014.2381%201.94304%2014.0552C1.76003%2013.8722%201.65723%2013.6239%201.65723%2013.3652V5.55859Z'%20stroke='%231BBA5F'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3.22077%202.26063C3.39571%201.89154%203.76761%201.65625%204.17605%201.65625H11.8241C12.2326%201.65625%2012.6045%201.89154%2012.7794%202.26063L14.3429%205.55955H1.65723L3.22077%202.26063Z'%20stroke='%231BBA5F'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_97"],"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='M10.6406%201.65625V14.342M13.2848%2014.342H2.71339C2.12955%2014.342%201.65625%2013.8687%201.65625%2013.2848V2.71339C1.65625%202.12954%202.12955%201.65625%202.71339%201.65625H13.2848C13.8687%201.65625%2014.342%202.12954%2014.342%202.71339V13.2848C14.342%2013.8687%2013.8687%2014.342%2013.2848%2014.342Z'%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=index181.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index181.js","sources":["../src/assets/icons/sidebar.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='M10.6406%201.65625V14.342M13.2848%2014.342H2.71339C2.12955%2014.342%201.65625%2013.8687%201.65625%2013.2848V2.71339C1.65625%202.12954%202.12955%201.65625%202.71339%201.65625H13.2848C13.8687%201.65625%2014.342%202.12954%2014.342%202.71339V13.2848C14.342%2013.8687%2013.8687%2014.342%2013.2848%2014.342Z'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_98"],"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_7225_19501)'%3e%3cpath%20d='M2.82457%206.4442C2.30671%206.09896%201.271%205.09777%201.271%203.85491C1.271%202.30134%202.30671%201.26562%203.86028%201.26562C5.41385%201.26562%206.96742%202.8192%207.48528%206.4442C8.00314%2010.0692%205.93171%2014.7299%203.34242%2014.7299C0.753139%2014.7299%202.30671%207.99777%208.00314%205.92634C11.4181%204.68453%2011.6281%207.99777%2011.1103%2010.0692C12.146%208.51562%2013.1817%206.96205%2014.7353%207.99777M9.04185%2012.6589H14.7383'%20stroke='black'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'%20/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_7225_19501'%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=index182.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index182.js","sources":["../src/assets/icons/signature-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_7225_19501)'%3e%3cpath%20d='M2.82457%206.4442C2.30671%206.09896%201.271%205.09777%201.271%203.85491C1.271%202.30134%202.30671%201.26562%203.86028%201.26562C5.41385%201.26562%206.96742%202.8192%207.48528%206.4442C8.00314%2010.0692%205.93171%2014.7299%203.34242%2014.7299C0.753139%2014.7299%202.30671%207.99777%208.00314%205.92634C11.4181%204.68453%2011.6281%207.99777%2011.1103%2010.0692C12.146%208.51562%2013.1817%206.96205%2014.7353%207.99777M9.04185%2012.6589H14.7383'%20stroke='black'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'%20/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_7225_19501'%3e%3crect%20width='16'%20height='16'%20fill='white'%20/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\""],"names":["__vite_glob_0_99"],"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%3cpath%20d='M11.9108%204.2362L5.57875%2010.5683L2.65625%2011.0554L3.14333%208.13287L9.47542%201.80078L11.9108%204.2362Z'%20stroke='%231B2636'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M2.65625%2013.4898H9.15547C9.67221%2013.4898%2010.1678%2013.2845%2010.5332%2012.9191L10.9367%2012.5156L11.3402%2012.9191C11.7056%2013.2845%2012.2011%2013.4898%2012.7178%2013.4898H14.3462'%20stroke='%231B2636'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.47656%2010.4871C9.47656%209.72618%2010.0934%209.10938%2010.8542%209.10938H11.0214C11.7822%209.10938%2012.3991%209.72618%2012.3991%2010.4871C12.3991%2010.8525%2012.2539%2011.2029%2011.9956%2011.4612L10.9378%2012.519L9.88007%2011.4612C9.62171%2011.2029%209.47656%2010.8525%209.47656%2010.4871Z'%20stroke='%231B2636'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e";
2
+ export {
3
+ e as default
4
+ };
5
+ //# sourceMappingURL=index183.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index183.js","sources":["../src/assets/icons/signer.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%3cpath%20d='M11.9108%204.2362L5.57875%2010.5683L2.65625%2011.0554L3.14333%208.13287L9.47542%201.80078L11.9108%204.2362Z'%20stroke='%231B2636'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M2.65625%2013.4898H9.15547C9.67221%2013.4898%2010.1678%2013.2845%2010.5332%2012.9191L10.9367%2012.5156L11.3402%2012.9191C11.7056%2013.2845%2012.2011%2013.4898%2012.7178%2013.4898H14.3462'%20stroke='%231B2636'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.47656%2010.4871C9.47656%209.72618%2010.0934%209.10938%2010.8542%209.10938H11.0214C11.7822%209.10938%2012.3991%209.72618%2012.3991%2010.4871C12.3991%2010.8525%2012.2539%2011.2029%2011.9956%2011.4612L10.9378%2012.519L9.88007%2011.4612C9.62171%2011.2029%209.47656%2010.8525%209.47656%2010.4871Z'%20stroke='%231B2636'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_100"],"mappings":"AAAA,MAAAA,IAAe;"}
package/dist/index184.js CHANGED
@@ -1,7 +1,5 @@
1
- function n(e) {
2
- return new Promise((t) => setTimeout(t, e));
3
- }
1
+ const e = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%3e%3cg%20clip-path='url(%23clip0_72_2399)'%3e%3cpath%20d='M1.37388%206.99414H10.4141'%20stroke='%23111111'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.44197%202.02539L10.4141%206.99749L5.44197%2011.9696'%20stroke='%23111111'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.127%2011.9696V2.02539'%20stroke='%23111111'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_72_2399'%3e%3crect%20width='13.5'%20height='13.5'%20fill='white'%20transform='matrix(-1%200%200%201%2014%200.25)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
4
2
  export {
5
- n as delay
3
+ e as default
6
4
  };
7
5
  //# sourceMappingURL=index184.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index184.js","sources":["../src/utils/delay.ts"],"sourcesContent":["/**\n * Delays execution by the specified number of milliseconds\n * @param ms - The number of milliseconds to delay\n * @returns A Promise that resolves after the specified delay\n */\nexport function delay(ms: number): Promise<void> {\n return new Promise(resolve => setTimeout(resolve, ms));\n} "],"names":["delay","ms","Promise","resolve","setTimeout"],"mappings":"AAKO,SAASA,EAAMC,GAA2B;AAC7C,SAAO,IAAIC,QAAQC,CAAAA,MAAWC,WAAWD,GAASF,CAAE,CAAC;AACzD;"}
1
+ {"version":3,"file":"index184.js","sources":["../src/assets/icons/slideout.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%3e%3cg%20clip-path='url(%23clip0_72_2399)'%3e%3cpath%20d='M1.37388%206.99414H10.4141'%20stroke='%23111111'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.44197%202.02539L10.4141%206.99749L5.44197%2011.9696'%20stroke='%23111111'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.127%2011.9696V2.02539'%20stroke='%23111111'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_72_2399'%3e%3crect%20width='13.5'%20height='13.5'%20fill='white'%20transform='matrix(-1%200%200%201%2014%200.25)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\""],"names":["__vite_glob_0_101"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const t = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='13'%20viewBox='0%200%2012%2013'%20fill='none'%3e%3cpath%20d='M10.5152%201H1.71523C1.11023%201%200.615234%201.495%200.615234%202.1V12L2.81523%209.8H10.5152C11.1202%209.8%2011.6152%209.305%2011.6152%208.7V2.1C11.6152%201.495%2011.1202%201%2010.5152%201ZM10.5152%208.7H2.81523L1.71523%209.8V2.1H10.5152V8.7ZM3.36523%204.85H4.46523V5.95H3.36523V4.85ZM5.56523%204.85H6.66523V5.95H5.56523V4.85ZM7.76523%204.85H8.86523V5.95H7.76523V4.85Z'%20fill='%23415575'%20stroke='%23F2F4F8'%20stroke-width='0.2'/%3e%3c/svg%3e";
2
+ export {
3
+ t as default
4
+ };
5
+ //# sourceMappingURL=index185.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index185.js","sources":["../src/assets/icons/sms.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='13'%20viewBox='0%200%2012%2013'%20fill='none'%3e%3cpath%20d='M10.5152%201H1.71523C1.11023%201%200.615234%201.495%200.615234%202.1V12L2.81523%209.8H10.5152C11.1202%209.8%2011.6152%209.305%2011.6152%208.7V2.1C11.6152%201.495%2011.1202%201%2010.5152%201ZM10.5152%208.7H2.81523L1.71523%209.8V2.1H10.5152V8.7ZM3.36523%204.85H4.46523V5.95H3.36523V4.85ZM5.56523%204.85H6.66523V5.95H5.56523V4.85ZM7.76523%204.85H8.86523V5.95H7.76523V4.85Z'%20fill='%23415575'%20stroke='%23F2F4F8'%20stroke-width='0.2'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_102"],"mappings":"AAAA,MAAAA,IAAe;"}
@@ -0,0 +1,5 @@
1
+ const e = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='14'%20viewBox='0%200%2013%2014'%20fill='none'%3e%3cpath%20d='M6.09729%2012.6V0.599998M0.599976%206.13846L6.09998%200.599998L11.6%206.13846'%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=index186.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index186.js","sources":["../src/assets/icons/sort-asc.svg?url"],"sourcesContent":["export default \"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='14'%20viewBox='0%200%2013%2014'%20fill='none'%3e%3cpath%20d='M6.09729%2012.6V0.599998M0.599976%206.13846L6.09998%200.599998L11.6%206.13846'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_103"],"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%3cpath%20d='M7.99731%202V14M2.5%208.46154L8%2014L13.5%208.46154'%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=index187.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index187.js","sources":["../src/assets/icons/sort-desc.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%3cpath%20d='M7.99731%202V14M2.5%208.46154L8%2014L13.5%208.46154'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_104"],"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='M14.705%2010.3125L12.001%2013.0166L9.29688%2010.3125'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.0039%202.95117V12.9512'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.70504%205.65234L4.00096%202.94826L1.29688%205.65234'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.00391%2013.0098V3.00977'%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=index188.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index188.js","sources":["../src/assets/icons/sort.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='M14.705%2010.3125L12.001%2013.0166L9.29688%2010.3125'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.0039%202.95117V12.9512'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.70504%205.65234L4.00096%202.94826L1.29688%205.65234'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.00391%2013.0098V3.00977'%20stroke='%23415575'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_105"],"mappings":"AAAA,MAAAA,IAAe;"}
package/dist/index189.js CHANGED
@@ -1,13 +1,5 @@
1
- function r(t, i) {
2
- if (t == null) return {};
3
- var o = {};
4
- for (var e in t) if ({}.hasOwnProperty.call(t, e)) {
5
- if (i.indexOf(e) >= 0) continue;
6
- o[e] = t[e];
7
- }
8
- return o;
9
- }
1
+ const C = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.31825%201.62467C7.24366%201.63988%201.22813%203.94961%201.07809%204.02065C0.98891%204.06287%200.850115%204.17259%200.784466%204.25277C0.710632%204.34293%200.635259%204.4953%200.603951%204.61773C0.574405%204.73328%200.574032%204.78117%200.574256%208.47036C0.574495%2012.5912%200.56728%2012.284%200.668987%2012.5022C0.76203%2012.7018%200.922963%2012.8736%201.10978%2012.9728C1.15606%2012.9974%202.54163%2013.5357%204.18882%2014.1691C5.83601%2014.8025%207.20724%2015.3315%207.23599%2015.3447C7.32984%2015.3876%207.4212%2015.4097%207.50486%2015.4097C7.58424%2015.4097%207.71566%2015.379%207.7497%2015.3525C7.75881%2015.3454%207.79651%2015.3294%207.83348%2015.317C8.03258%2015.2501%2013.8291%2013.0101%2013.9%2012.9726C14.0796%2012.8777%2014.2379%2012.7114%2014.3314%2012.5197C14.4449%2012.2869%2014.4364%2012.631%2014.4321%208.43142L14.4282%204.66273L14.3951%204.56542C14.3033%204.29565%2014.0769%204.04918%2013.8158%203.93474C13.7153%203.89068%207.92525%201.69931%207.78269%201.65138C7.67583%201.61545%207.43218%201.60143%207.31825%201.62467ZM5.05097%203.62847C3.69824%204.14987%202.61311%204.57599%202.62369%204.58166C2.63422%204.5873%203.73657%205.01286%205.07338%205.52734L7.50392%206.46276L9.97276%205.5126C11.3306%204.99002%2012.4432%204.56097%2012.4452%204.55915C12.4483%204.55638%207.55586%202.7024%207.51233%202.68985C7.50412%202.68749%206.39651%203.10987%205.05097%203.62847ZM1.63457%208.69313C1.63457%2011.3485%201.63839%2012.0348%201.65324%2012.044C1.66352%2012.0504%202.86165%2012.5136%204.31578%2013.0734L6.95966%2014.0912L6.96342%2010.752C6.9655%208.91538%206.96214%207.40806%206.95595%207.40237C6.945%207.39229%201.71269%205.37513%201.66071%205.36096C1.63587%205.35417%201.63457%205.52008%201.63457%208.69313ZM10.6939%206.37895L8.05007%207.3981L8.0463%2010.7466L8.04254%2014.0951L8.12075%2014.0643C8.16377%2014.0473%209.35184%2013.5896%2010.7609%2013.0472C12.17%2012.5047%2013.3346%2012.0546%2013.349%2012.047C13.3738%2012.0339%2013.3752%2011.859%2013.3752%208.69524C13.3752%206.03419%2013.3714%205.35756%2013.3565%205.35857C13.3462%205.35925%2012.1481%205.81844%2010.6939%206.37895Z'%20fill='%2356CF8A'/%3e%3c/svg%3e";
10
2
  export {
11
- r as default
3
+ C as default
12
4
  };
13
5
  //# sourceMappingURL=index189.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index189.js","sources":["../node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js"],"sourcesContent":["function _objectWithoutPropertiesLoose(r, e) {\n if (null == r) return {};\n var t = {};\n for (var n in r) if ({}.hasOwnProperty.call(r, n)) {\n if (e.indexOf(n) >= 0) continue;\n t[n] = r[n];\n }\n return t;\n}\nexport { _objectWithoutPropertiesLoose as default };"],"names":["_objectWithoutPropertiesLoose","r","e","t","n"],"mappings":"AAAA,SAASA,EAA8BC,GAAGC,GAAG;AAC3C,MAAYD,KAAR,KAAW,QAAO;AACtB,MAAIE,IAAI,CAAA;AACR,WAASC,KAAKH,EAAG,KAAI,CAAA,EAAG,eAAe,KAAKA,GAAGG,CAAC,GAAG;AACjD,QAAIF,EAAE,QAAQE,CAAC,KAAK,EAAG;AACvB,IAAAD,EAAEC,CAAC,IAAIH,EAAEG,CAAC;AAAA,EACX;AACD,SAAOD;AACT;","x_google_ignoreList":[0]}
1
+ {"version":3,"file":"index189.js","sources":["../src/assets/icons/space.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%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.31825%201.62467C7.24366%201.63988%201.22813%203.94961%201.07809%204.02065C0.98891%204.06287%200.850115%204.17259%200.784466%204.25277C0.710632%204.34293%200.635259%204.4953%200.603951%204.61773C0.574405%204.73328%200.574032%204.78117%200.574256%208.47036C0.574495%2012.5912%200.56728%2012.284%200.668987%2012.5022C0.76203%2012.7018%200.922963%2012.8736%201.10978%2012.9728C1.15606%2012.9974%202.54163%2013.5357%204.18882%2014.1691C5.83601%2014.8025%207.20724%2015.3315%207.23599%2015.3447C7.32984%2015.3876%207.4212%2015.4097%207.50486%2015.4097C7.58424%2015.4097%207.71566%2015.379%207.7497%2015.3525C7.75881%2015.3454%207.79651%2015.3294%207.83348%2015.317C8.03258%2015.2501%2013.8291%2013.0101%2013.9%2012.9726C14.0796%2012.8777%2014.2379%2012.7114%2014.3314%2012.5197C14.4449%2012.2869%2014.4364%2012.631%2014.4321%208.43142L14.4282%204.66273L14.3951%204.56542C14.3033%204.29565%2014.0769%204.04918%2013.8158%203.93474C13.7153%203.89068%207.92525%201.69931%207.78269%201.65138C7.67583%201.61545%207.43218%201.60143%207.31825%201.62467ZM5.05097%203.62847C3.69824%204.14987%202.61311%204.57599%202.62369%204.58166C2.63422%204.5873%203.73657%205.01286%205.07338%205.52734L7.50392%206.46276L9.97276%205.5126C11.3306%204.99002%2012.4432%204.56097%2012.4452%204.55915C12.4483%204.55638%207.55586%202.7024%207.51233%202.68985C7.50412%202.68749%206.39651%203.10987%205.05097%203.62847ZM1.63457%208.69313C1.63457%2011.3485%201.63839%2012.0348%201.65324%2012.044C1.66352%2012.0504%202.86165%2012.5136%204.31578%2013.0734L6.95966%2014.0912L6.96342%2010.752C6.9655%208.91538%206.96214%207.40806%206.95595%207.40237C6.945%207.39229%201.71269%205.37513%201.66071%205.36096C1.63587%205.35417%201.63457%205.52008%201.63457%208.69313ZM10.6939%206.37895L8.05007%207.3981L8.0463%2010.7466L8.04254%2014.0951L8.12075%2014.0643C8.16377%2014.0473%209.35184%2013.5896%2010.7609%2013.0472C12.17%2012.5047%2013.3346%2012.0546%2013.349%2012.047C13.3738%2012.0339%2013.3752%2011.859%2013.3752%208.69524C13.3752%206.03419%2013.3714%205.35756%2013.3565%205.35857C13.3462%205.35925%2012.1481%205.81844%2010.6939%206.37895Z'%20fill='%2356CF8A'/%3e%3c/svg%3e\""],"names":["__vite_glob_0_106"],"mappings":"AAAA,MAAAA,IAAe;"}
package/dist/index19.js CHANGED
@@ -1,36 +1,357 @@
1
- import e from "react";
2
- import { Popover as l } from "./index17.js";
3
- import { Icon as s } from "./index5.js";
4
- const t = {
5
- base: "se-design-hamburger-menu rounded-[6px] transition-all duration-300 p-[3px] flex items-center",
6
- active: "bg-[var(--color-blue-450)]",
7
- hover: "hover:bg-[var(--color-blue-450)]"
8
- }, u = ({
9
- className: a = "",
10
- automationId: n = "",
11
- popoverContentAutomationId: m = "",
12
- menuContent: o,
13
- popoverClassName: c = ""
14
- }) => /* @__PURE__ */ e.createElement(l, {
15
- className: a,
16
- position: "bottom-left",
17
- automationId: n,
18
- popoverContentAutomationId: m,
19
- renderPopoverSrcElement: ({
20
- displayPopover: r
21
- }) => /* @__PURE__ */ e.createElement("div", {
22
- className: `${t.base} ${r ? t.active : ""} ${t.hover}`
23
- }, /* @__PURE__ */ e.createElement(s, {
24
- name: "hamburger",
25
- stroke: "var(--color-white)"
26
- })),
27
- renderPopoverContents: (r) => /* @__PURE__ */ e.createElement("div", {
28
- className: `min-w-[212px] ${c}`
29
- }, o && /* @__PURE__ */ e.createElement("div", {
30
- className: "menu-content"
31
- }, o(r)))
1
+ import S, { forwardRef as we, useState as F, useRef as te, useEffect as B, useImperativeHandle as ge } from "react";
2
+ import he from "react-dom";
3
+ import { getA11yNameAttributes as be } from "./index81.js";
4
+ import { useDismissOnFocusOut as ye } from "./index80.js";
5
+ import { getFirstFocusableElement as M, getLastFocusableElement as Ee, getFocusableElements as N, FOCUSABLE_WITH_ROLES_SELECTOR as Pe } from "./index71.js";
6
+ import "./index72.js";
7
+ import { useRegisterPortalWithFocusTrap as ke } from "./index208.js";
8
+ function q() {
9
+ return q = Object.assign ? Object.assign.bind() : function(y) {
10
+ for (var E = 1; E < arguments.length; E++) {
11
+ var m = arguments[E];
12
+ for (var h in m) ({}).hasOwnProperty.call(m, h) && (y[h] = m[h]);
13
+ }
14
+ return y;
15
+ }, q.apply(null, arguments);
16
+ }
17
+ const He = /* @__PURE__ */ we(({
18
+ className: y = "",
19
+ automationId: E = "",
20
+ position: m = "bottom-center",
21
+ popoverContentAutomationId: h = "",
22
+ contentWidth: D = "max",
23
+ renderPopoverContents: K,
24
+ renderPopoverSrcElement: oe,
25
+ onPopoverToggle: T,
26
+ isPopoverOpen: z,
27
+ disabled: P = !1,
28
+ isWithPortal: p = !1,
29
+ ariaLabel: ne,
30
+ ariaLabelledBy: re,
31
+ sourceRole: C = "button",
32
+ popupType: _ = "true",
33
+ popoverContentStyleProperty: $ = {
34
+ zIndex: 1e3,
35
+ borderColor: "var(--color-gray-200)",
36
+ color: "var(--color-gray-900)",
37
+ backgroundColor: "var(--color-white)"
38
+ },
39
+ disableClickToggle: g = !1,
40
+ noBorder: se = !1,
41
+ disableAutoClose: v = !1,
42
+ focusFirstOnOpen: ie = !1,
43
+ ...ce
44
+ }, ae) => {
45
+ const [i, f] = F(!1), [k, U] = F(m), [le, W] = F(!1), l = te(null), a = te(null);
46
+ ke(a, p && i);
47
+ const ue = be({
48
+ ariaLabel: ne,
49
+ ariaLabelledBy: re,
50
+ ariaDescribedBy: void 0
51
+ // Popover doesn't support describedBy yet
52
+ }), {
53
+ onBlurCapture: fe
54
+ } = ye({
55
+ disabled: !i || v || p,
56
+ onFocusOut: () => f(!1),
57
+ closeOnEscape: !1
58
+ }), [R, A] = F({
59
+ top: 0,
60
+ left: 0,
61
+ srcWidth: 0
62
+ }), [pe, V] = F(!1), b = () => {
63
+ g ? (M({
64
+ container: l.current,
65
+ includeRoles: !0
66
+ }) ?? l.current)?.focus() : l.current?.focus();
67
+ }, X = (e) => {
68
+ f(!1), e?.returnFocus !== !1 && requestAnimationFrame(() => {
69
+ e?.returnFocusTo ? (e.returnFocusTo instanceof HTMLElement ? e.returnFocusTo : e.returnFocusTo.current)?.focus() : b();
70
+ });
71
+ }, L = (e = "bottom-center") => {
72
+ if (!l.current) return {
73
+ top: 0,
74
+ left: 0,
75
+ srcWidth: 0
76
+ };
77
+ let o = e;
78
+ const t = l.current.getBoundingClientRect(), r = window.innerWidth - document.documentElement.clientWidth, u = window.innerWidth - Math.max(r, 16), c = window.innerHeight;
79
+ let n = 0, s = 0;
80
+ switch (o) {
81
+ case "bottom-left":
82
+ n = t.bottom, s = t.left;
83
+ break;
84
+ case "bottom-right":
85
+ n = t.bottom, s = t.right - t.width * 0.5;
86
+ break;
87
+ case "bottom-center":
88
+ n = t.bottom, s = t.left + t.width / 2;
89
+ break;
90
+ case "top-left":
91
+ n = t.top - t.height * 1.9, s = t.left;
92
+ break;
93
+ case "top-right":
94
+ n = t.top - t.height * 1.9, s = t.right - t.width * 0.5;
95
+ break;
96
+ case "top-center":
97
+ n = t.top - t.height * 1.9, s = t.left + t.width / 2;
98
+ break;
99
+ default:
100
+ n = t.bottom, s = t.left;
101
+ break;
102
+ }
103
+ const d = a.current?.getBoundingClientRect(), x = (D === "full" ? Math.max(t.width, d?.width || 0) : d?.width) || 0, w = d?.height || 0;
104
+ if ((o === "bottom-center" || o === "top-center") && (s = s - x / 2), s + x > u && (s = Math.max(0, u - x)), s < 0 && (s = 0), n + w > c) {
105
+ const ee = t.top, ve = c - t.bottom;
106
+ ee >= w || ee > ve ? (n = t.top - w, n < 48 && (n = 48)) : n = Math.max(48, c - w);
107
+ }
108
+ return n < 48 && (n = t.bottom, n + w > c && (n = Math.max(48, c - w))), {
109
+ top: Math.round(n),
110
+ left: Math.round(s),
111
+ srcWidth: t.width
112
+ };
113
+ };
114
+ B(() => {
115
+ if (T && T(i), i && !p)
116
+ return v || document.body.addEventListener("click", j, !0), de(), () => {
117
+ v || document.body.removeEventListener("click", j, !0);
118
+ };
119
+ if (i && p) {
120
+ v ? window.addEventListener("scroll", G) : (document.body.addEventListener("click", H, !0), window.addEventListener("scroll", H)), window.addEventListener("resize", Y);
121
+ const e = (r) => {
122
+ r.key === "Escape" && a.current?.contains(document.activeElement) && (r.preventDefault(), r.stopPropagation(), f(!1), requestAnimationFrame(() => b()));
123
+ };
124
+ window.addEventListener("keydown", e, !0), I();
125
+ let o, t;
126
+ return o = requestAnimationFrame(() => {
127
+ t = requestAnimationFrame(() => {
128
+ const r = L(k);
129
+ r && A(r), V(!0);
130
+ });
131
+ }), () => {
132
+ v ? window.removeEventListener("scroll", G) : (document.body.removeEventListener("click", H, !0), window.removeEventListener("scroll", H)), window.removeEventListener("resize", Y), window.removeEventListener("keydown", e, !0), cancelAnimationFrame(o), cancelAnimationFrame(t), V(!1);
133
+ };
134
+ }
135
+ }, [i, p, v]);
136
+ const I = () => {
137
+ if (!l.current) {
138
+ W(!1);
139
+ return;
140
+ }
141
+ const e = l.current.getBoundingClientRect(), o = window.innerHeight, t = window.innerWidth, r = e.top < o && e.bottom > 0 && e.left < t && e.right > 0;
142
+ W(r);
143
+ };
144
+ B(() => {
145
+ f(z ?? !1);
146
+ }, [z]), B(() => {
147
+ if (i) {
148
+ let e, o;
149
+ return e = requestAnimationFrame(() => {
150
+ o = requestAnimationFrame(() => {
151
+ const t = M({
152
+ container: a.current,
153
+ includeRoles: !0
154
+ });
155
+ t && (ie || document.activeElement === l.current) && t.focus();
156
+ });
157
+ }), () => {
158
+ cancelAnimationFrame(e), cancelAnimationFrame(o);
159
+ };
160
+ }
161
+ }, [i]);
162
+ const de = () => {
163
+ if (!a.current) return;
164
+ const e = a.current.getBoundingClientRect(), o = window.innerHeight;
165
+ e?.bottom > o ? U(m.includes("left") ? "top-left" : m.includes("right") ? "top-right" : "top-center") : e?.top < 0 && U(m.includes("left") ? "bottom-left" : m.includes("right") ? "bottom-right" : "bottom-center");
166
+ }, j = (e) => {
167
+ const o = l.current;
168
+ if (!o) return;
169
+ const t = e.target, r = o.contains(t), u = a.current?.contains(t), n = t.closest?.(".se-design-popover-wrapper"), s = n && n !== o, d = a.current?.contains(n);
170
+ v || (!r && !u || s && !d) && f(!1);
171
+ }, H = (e) => {
172
+ const o = l.current, t = a.current;
173
+ if (!o) return;
174
+ if (I(), e.type === "scroll" && i) {
175
+ const w = L(k);
176
+ w && A(w);
177
+ }
178
+ const r = e.target, u = o.contains(r), c = t?.contains(r), s = r.closest?.(".se-design-popover-wrapper"), d = s && s !== o, x = a.current?.contains(s);
179
+ v || (!u && !c || d && !x) && f(!1);
180
+ }, Y = () => {
181
+ if (i && p && l.current) {
182
+ I();
183
+ const e = L(k);
184
+ e && A(e);
185
+ }
186
+ }, G = () => {
187
+ if (i && p && l.current) {
188
+ I();
189
+ const e = L(k);
190
+ e && A(e);
191
+ }
192
+ }, O = (e = !1) => {
193
+ const o = i;
194
+ f((t) => !t), !o && e && setTimeout(() => {
195
+ if (e === "last") {
196
+ const t = Ee({
197
+ container: a.current,
198
+ includeRoles: !0
199
+ });
200
+ t && t.focus();
201
+ } else {
202
+ const t = M({
203
+ container: a.current,
204
+ includeRoles: !0
205
+ });
206
+ t && t.focus();
207
+ }
208
+ }, 50);
209
+ }, J = (e, o) => {
210
+ if (!o) return;
211
+ const t = document.activeElement;
212
+ if (t?.tagName === "INPUT" || t?.tagName === "TEXTAREA" || t?.tagName === "SELECT")
213
+ return;
214
+ const r = Array.from(o.querySelectorAll(Pe)).filter((n) => {
215
+ const s = window.getComputedStyle(n);
216
+ return !n.hasAttribute("disabled") && n.getAttribute("aria-disabled") !== "true" && s.display !== "none" && s.visibility !== "hidden" && (n.tabIndex >= 0 || n.hasAttribute("role"));
217
+ });
218
+ if (r.length === 0) return;
219
+ const u = r.findIndex((n) => n === document.activeElement);
220
+ let c = -1;
221
+ e.key === "ArrowDown" ? (e.preventDefault(), e.stopPropagation(), c = u < r.length - 1 ? u + 1 : 0) : e.key === "ArrowUp" ? (e.preventDefault(), e.stopPropagation(), c = u > 0 ? u - 1 : r.length - 1) : e.key === "Home" ? (e.preventDefault(), e.stopPropagation(), c = 0) : e.key === "End" && (e.preventDefault(), e.stopPropagation(), c = r.length - 1), c >= 0 && r[c] ? r[c].focus() : u === -1 && r.length > 0 && r[0].focus();
222
+ }, Q = (e) => {
223
+ if (e.key === "Escape")
224
+ e.preventDefault(), e.stopPropagation(), f(!1), requestAnimationFrame(() => b());
225
+ else if (e.key === "Tab") {
226
+ if (_ === "dialog") {
227
+ const o = N({
228
+ container: a.current,
229
+ filterHidden: !0
230
+ }), t = o.indexOf(e.target), r = t === o.length - 1, u = t === 0 || t === -1;
231
+ if (e.shiftKey && u)
232
+ e.preventDefault(), f(!1), b();
233
+ else if (!e.shiftKey && r && (f(!1), p)) {
234
+ e.preventDefault();
235
+ const c = l.current, n = N({
236
+ container: document.body,
237
+ filterHidden: !0
238
+ }), s = c ? n.indexOf(c) : -1, d = n[s + 1];
239
+ d ? d.focus() : c?.focus();
240
+ }
241
+ } else if (f(!1), e.shiftKey)
242
+ e.preventDefault(), b();
243
+ else if (p) {
244
+ e.preventDefault();
245
+ const o = l.current, t = N({
246
+ container: document.body,
247
+ filterHidden: !0
248
+ }), r = o ? t.indexOf(o) : -1, u = t[r + 1];
249
+ u ? u.focus() : o?.focus();
250
+ }
251
+ } else e.key === "ArrowDown" || e.key === "ArrowUp" || e.key === "Home" || e.key === "End" ? J(e, a.current) : (e.key === "Enter" || e.key === " ") && e.stopPropagation();
252
+ };
253
+ ge(ae, () => ({
254
+ togglePopover: O,
255
+ focusTrigger: () => b(),
256
+ element: l.current
257
+ }), []);
258
+ const me = {
259
+ "bottom-left": {
260
+ left: "0",
261
+ top: "100%"
262
+ },
263
+ "bottom-right": {
264
+ right: "0",
265
+ top: "100%"
266
+ },
267
+ "bottom-center": {
268
+ left: "50%",
269
+ transform: "translateX(-50%)",
270
+ top: "100%"
271
+ },
272
+ "top-left": {
273
+ left: "0",
274
+ bottom: "100%"
275
+ },
276
+ "top-right": {
277
+ right: "0",
278
+ bottom: "100%"
279
+ },
280
+ "top-center": {
281
+ left: "50%",
282
+ transform: "translateX(-50%)",
283
+ bottom: "100%"
284
+ }
285
+ }, Z = se ? "" : "shadow-md border rounded-md";
286
+ return /* @__PURE__ */ S.createElement("div", q({
287
+ className: "se-design-popover-wrapper cursor-pointer relative focus-outline rounded-md" + (y.length > 0 ? ` ${y}` : "") + (i ? " open" : "") + (P ? " opacity-50 cursor-not-allowed pointer-events-none" : ""),
288
+ ref: l,
289
+ onClick: (e) => {
290
+ P || g || (e.stopPropagation(), O());
291
+ },
292
+ onKeyDown: (e) => {
293
+ if (!(P || g))
294
+ if (e.key === "Enter" || e.key === " ")
295
+ e.preventDefault(), e.stopPropagation(), O();
296
+ else if (e.key === "Escape" && i)
297
+ e.preventDefault(), e.stopPropagation(), f(!1);
298
+ else if ((e.key === "ArrowDown" || e.key === "ArrowUp") && i) {
299
+ const o = a.current;
300
+ o && J(e, o);
301
+ } else e.key === "ArrowDown" && !i && (e.preventDefault(), e.stopPropagation(), f(!0));
302
+ },
303
+ onBlurCapture: fe,
304
+ onBlur: (e) => {
305
+ if (!i || v || !p) return;
306
+ const o = e.relatedTarget, t = !!(o && l.current?.contains(o)), r = !!(o && a.current?.contains(o));
307
+ !t && !r && f(!1);
308
+ },
309
+ role: g ? "none" : C,
310
+ "aria-expanded": g ? void 0 : i ? "true" : "false",
311
+ "aria-haspopup": g ? void 0 : C === "combobox" ? "listbox" : _,
312
+ tabIndex: P || g ? -1 : 0,
313
+ "aria-disabled": g ? void 0 : P ? "true" : void 0
314
+ }, ue, {
315
+ "data-automation-id": E
316
+ }, ce), oe({
317
+ displayPopover: i,
318
+ togglePopover: O
319
+ }), i && !p && /* @__PURE__ */ S.createElement("div", {
320
+ className: `popover-content absolute ${Z} z-[1000] ${D == "full" ? "w-full" : "w-max"}`,
321
+ style: {
322
+ ...$,
323
+ ...me[k]
324
+ },
325
+ onClick: (e) => e.stopPropagation(),
326
+ onKeyDown: Q,
327
+ ref: a,
328
+ "data-automation-id": h
329
+ }, K({
330
+ closePopoverCb: X
331
+ })), p && i && le && /* @__PURE__ */ he.createPortal(/* @__PURE__ */ S.createElement("div", {
332
+ className: `popover-content-with-portal z-[2002] ${Z} ${D == "full" ? "" : "w-max"}`,
333
+ style: {
334
+ position: "fixed",
335
+ top: R.top,
336
+ left: R.left,
337
+ visibility: pe ? "visible" : "hidden",
338
+ maxHeight: "calc(100vh - 96px)",
339
+ overflowY: "hidden",
340
+ ...D === "full" && R.srcWidth ? {
341
+ width: `${R.srcWidth}px`
342
+ } : {},
343
+ ...$,
344
+ zIndex: 2002
345
+ },
346
+ onClick: (e) => e.stopPropagation(),
347
+ onKeyDown: Q,
348
+ ref: a,
349
+ "data-automation-id": h
350
+ }, K({
351
+ closePopoverCb: X
352
+ })), document.body));
32
353
  });
33
354
  export {
34
- u as HamburgerMenu
355
+ He as Popover
35
356
  };
36
357
  //# sourceMappingURL=index19.js.map