ab-ui-library 1.0.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 (1257) hide show
  1. package/README.md +76 -0
  2. package/assets/images/ArCa.svg +3 -0
  3. package/assets/images/Avatar.png +0 -0
  4. package/assets/images/Mastercard.svg +5 -0
  5. package/assets/images/Visa.svg +3 -0
  6. package/assets/images/avatar.jpg +0 -0
  7. package/assets/images/cards-img.png +0 -0
  8. package/assets/images/illustrations.svg +15 -0
  9. package/assets/images/image-placeholder.png +0 -0
  10. package/assets/images/logo-closed.svg +8 -0
  11. package/assets/images/logo.svg +14 -0
  12. package/assets/images/no-result.svg +35 -0
  13. package/assets/styles/helpers/_mixin.scss +718 -0
  14. package/assets/styles/styles.css +9841 -0
  15. package/assets/styles/styles.scss +1 -0
  16. package/components/AdvancedTable/AdvancedPagination.d.ts +7 -0
  17. package/components/AdvancedTable/AdvancedPagination.js +221 -0
  18. package/components/AdvancedTable/ColumnHeader.d.ts +7 -0
  19. package/components/AdvancedTable/ColumnHeader.js +61 -0
  20. package/components/AdvancedTable/ColumnSettings.d.ts +6 -0
  21. package/components/AdvancedTable/ColumnSettings.js +93 -0
  22. package/components/AdvancedTable/IndeterminateCheckbox.d.ts +13 -0
  23. package/components/AdvancedTable/IndeterminateCheckbox.js +55 -0
  24. package/components/AdvancedTable/Table.d.ts +2 -0
  25. package/components/AdvancedTable/Table.js +129 -0
  26. package/components/AdvancedTable/index.d.ts +3 -0
  27. package/components/AdvancedTable/index.js +94 -0
  28. package/components/AdvancedTable/types.d.ts +37 -0
  29. package/components/AdvancedTable/types.js +1 -0
  30. package/components/AdvancedTable/useTable.d.ts +18 -0
  31. package/components/AdvancedTable/useTable.js +211 -0
  32. package/components/Alert/Alert.d.ts +3 -0
  33. package/components/Alert/Alert.js +86 -0
  34. package/components/Alert/consts.d.ts +7 -0
  35. package/components/Alert/consts.js +18 -0
  36. package/components/Alert/index.d.ts +1 -0
  37. package/components/Alert/index.js +33 -0
  38. package/components/Alert/types.d.ts +19 -0
  39. package/components/Alert/types.js +1 -0
  40. package/components/Avatar/Avatar.d.ts +3 -0
  41. package/components/Avatar/Avatar.js +100 -0
  42. package/components/Avatar/AvatarGroup.d.ts +3 -0
  43. package/components/Avatar/AvatarGroup.js +102 -0
  44. package/components/Avatar/index.d.ts +2 -0
  45. package/components/Avatar/index.js +46 -0
  46. package/components/Avatar/types.d.ts +25 -0
  47. package/components/Avatar/types.js +1 -0
  48. package/components/Badge/Badge.d.ts +3 -0
  49. package/components/Badge/Badge.js +25 -0
  50. package/components/Badge/consts.d.ts +7 -0
  51. package/components/Badge/consts.js +13 -0
  52. package/components/Badge/index.d.ts +1 -0
  53. package/components/Badge/index.js +7 -0
  54. package/components/Badge/types.d.ts +6 -0
  55. package/components/Badge/types.js +1 -0
  56. package/components/Breadcrumb/Breadcrumb.d.ts +3 -0
  57. package/components/Breadcrumb/Breadcrumb.js +24 -0
  58. package/components/Breadcrumb/index.d.ts +1 -0
  59. package/components/Breadcrumb/index.js +2 -0
  60. package/components/Breadcrumb/types.d.ts +12 -0
  61. package/components/Breadcrumb/types.js +1 -0
  62. package/components/Button/Button.d.ts +3 -0
  63. package/components/Button/Button.js +80 -0
  64. package/components/Button/consts.d.ts +8 -0
  65. package/components/Button/consts.js +15 -0
  66. package/components/Button/index.d.ts +1 -0
  67. package/components/Button/index.js +30 -0
  68. package/components/Button/types.d.ts +22 -0
  69. package/components/Button/types.js +1 -0
  70. package/components/ButtonIcon/ButtonIcon.d.ts +3 -0
  71. package/components/ButtonIcon/ButtonIcon.js +66 -0
  72. package/components/ButtonIcon/consts.d.ts +4 -0
  73. package/components/ButtonIcon/consts.js +7 -0
  74. package/components/ButtonIcon/index.d.ts +1 -0
  75. package/components/ButtonIcon/index.js +30 -0
  76. package/components/ButtonIcon/types.d.ts +16 -0
  77. package/components/ButtonIcon/types.js +1 -0
  78. package/components/CardBody/CardBody.d.ts +3 -0
  79. package/components/CardBody/CardBody.js +61 -0
  80. package/components/CardBody/index.d.ts +1 -0
  81. package/components/CardBody/index.js +32 -0
  82. package/components/CardBody/types.d.ts +11 -0
  83. package/components/CardBody/types.js +1 -0
  84. package/components/CardSelect/CardSelect.d.ts +3 -0
  85. package/components/CardSelect/CardSelect.js +122 -0
  86. package/components/CardSelect/CardSelectGroup.d.ts +3 -0
  87. package/components/CardSelect/CardSelectGroup.js +95 -0
  88. package/components/CardSelect/components/CardAdditionalInfo.d.ts +8 -0
  89. package/components/CardSelect/components/CardAdditionalInfo.js +35 -0
  90. package/components/CardSelect/components/CardChips.d.ts +8 -0
  91. package/components/CardSelect/components/CardChips.js +28 -0
  92. package/components/CardSelect/components/CardDescription.d.ts +7 -0
  93. package/components/CardSelect/components/CardDescription.js +16 -0
  94. package/components/CardSelect/components/CardInput.d.ts +8 -0
  95. package/components/CardSelect/components/CardInput.js +51 -0
  96. package/components/CardSelect/components/index.d.ts +4 -0
  97. package/components/CardSelect/components/index.js +47 -0
  98. package/components/CardSelect/index.d.ts +2 -0
  99. package/components/CardSelect/index.js +52 -0
  100. package/components/CardSelect/types.d.ts +37 -0
  101. package/components/CardSelect/types.js +1 -0
  102. package/components/Cards/CardItem.d.ts +3 -0
  103. package/components/Cards/CardItem.js +41 -0
  104. package/components/Cards/index.d.ts +1 -0
  105. package/components/Cards/index.js +8 -0
  106. package/components/Cards/types.d.ts +15 -0
  107. package/components/Cards/types.js +1 -0
  108. package/components/Checkbox/Checkbox.d.ts +3 -0
  109. package/components/Checkbox/Checkbox.js +137 -0
  110. package/components/Checkbox/index.d.ts +1 -0
  111. package/components/Checkbox/index.js +26 -0
  112. package/components/Checkbox/types.d.ts +19 -0
  113. package/components/Checkbox/types.js +1 -0
  114. package/components/Chips/Chips.d.ts +3 -0
  115. package/components/Chips/Chips.js +55 -0
  116. package/components/Chips/consts.d.ts +7 -0
  117. package/components/Chips/consts.js +14 -0
  118. package/components/Chips/index.d.ts +1 -0
  119. package/components/Chips/index.js +12 -0
  120. package/components/Chips/types.d.ts +20 -0
  121. package/components/Chips/types.js +7 -0
  122. package/components/Collapse/CollapseGroup/CollapseGroup.d.ts +3 -0
  123. package/components/Collapse/CollapseGroup/CollapseGroup.js +77 -0
  124. package/components/Collapse/CollapseItem/CollapseItem.d.ts +3 -0
  125. package/components/Collapse/CollapseItem/CollapseItem.js +87 -0
  126. package/components/Collapse/index.d.ts +2 -0
  127. package/components/Collapse/index.js +17 -0
  128. package/components/Collapse/types.d.ts +38 -0
  129. package/components/Collapse/types.js +1 -0
  130. package/components/Container/Container.d.ts +3 -0
  131. package/components/Container/Container.js +10 -0
  132. package/components/Container/index.d.ts +1 -0
  133. package/components/Container/index.js +2 -0
  134. package/components/Container/types.d.ts +4 -0
  135. package/components/Container/types.js +1 -0
  136. package/components/Copy/Copy.d.ts +3 -0
  137. package/components/Copy/Copy.js +72 -0
  138. package/components/Copy/index.d.ts +1 -0
  139. package/components/Copy/index.js +32 -0
  140. package/components/Copy/types.d.ts +6 -0
  141. package/components/Copy/types.js +1 -0
  142. package/components/Counter/Counter.d.ts +3 -0
  143. package/components/Counter/Counter.js +121 -0
  144. package/components/Counter/index.d.ts +1 -0
  145. package/components/Counter/index.js +43 -0
  146. package/components/Counter/types.d.ts +9 -0
  147. package/components/Counter/types.js +1 -0
  148. package/components/DatePicker/CustomHeader/CustomHeader.d.ts +11 -0
  149. package/components/DatePicker/CustomHeader/CustomHeader.js +154 -0
  150. package/components/DatePicker/RangeDatePicker.d.ts +3 -0
  151. package/components/DatePicker/RangeDatePicker.js +161 -0
  152. package/components/DatePicker/SimpleDatePicker.d.ts +3 -0
  153. package/components/DatePicker/SimpleDatePicker.js +171 -0
  154. package/components/DatePicker/TimePicker.d.ts +3 -0
  155. package/components/DatePicker/TimePicker.js +119 -0
  156. package/components/DatePicker/hooks.d.ts +4 -0
  157. package/components/DatePicker/hooks.js +1954 -0
  158. package/components/DatePicker/index.d.ts +3 -0
  159. package/components/DatePicker/index.js +88 -0
  160. package/components/DatePicker/types.d.ts +44 -0
  161. package/components/DatePicker/types.js +7 -0
  162. package/components/Divider/Divider.d.ts +3 -0
  163. package/components/Divider/Divider.js +19 -0
  164. package/components/Divider/index.d.ts +1 -0
  165. package/components/Divider/index.js +3 -0
  166. package/components/Divider/types.d.ts +6 -0
  167. package/components/Divider/types.js +1 -0
  168. package/components/Empty/Empty.d.ts +3 -0
  169. package/components/Empty/Empty.js +63 -0
  170. package/components/Empty/index.d.ts +1 -0
  171. package/components/Empty/index.js +32 -0
  172. package/components/Empty/types.d.ts +9 -0
  173. package/components/Empty/types.js +1 -0
  174. package/components/FileUpload/FileUpload.d.ts +3 -0
  175. package/components/FileUpload/FileUpload.js +174 -0
  176. package/components/FileUpload/UploadItems.d.ts +3 -0
  177. package/components/FileUpload/UploadItems.js +81 -0
  178. package/components/FileUpload/index.d.ts +2 -0
  179. package/components/FileUpload/index.js +42 -0
  180. package/components/FileUpload/types.d.ts +35 -0
  181. package/components/FileUpload/types.js +7 -0
  182. package/components/FormContainer/FormContainer.d.ts +3 -0
  183. package/components/FormContainer/FormContainer.js +112 -0
  184. package/components/FormContainer/index.d.ts +1 -0
  185. package/components/FormContainer/index.js +33 -0
  186. package/components/FormContainer/types.d.ts +21 -0
  187. package/components/FormContainer/types.js +1 -0
  188. package/components/FormField/FormField.d.ts +3 -0
  189. package/components/FormField/FormField.js +89 -0
  190. package/components/FormField/index.d.ts +1 -0
  191. package/components/FormField/index.js +30 -0
  192. package/components/FormField/types.d.ts +9 -0
  193. package/components/FormField/types.js +1 -0
  194. package/components/FramedIcon/FramedIcon.d.ts +3 -0
  195. package/components/FramedIcon/FramedIcon.js +19 -0
  196. package/components/FramedIcon/consts.d.ts +7 -0
  197. package/components/FramedIcon/consts.js +12 -0
  198. package/components/FramedIcon/index.d.ts +1 -0
  199. package/components/FramedIcon/index.js +4 -0
  200. package/components/FramedIcon/types.d.ts +6 -0
  201. package/components/FramedIcon/types.js +1 -0
  202. package/components/Heading/Heading.d.ts +3 -0
  203. package/components/Heading/Heading.js +29 -0
  204. package/components/Heading/index.d.ts +1 -0
  205. package/components/Heading/index.js +5 -0
  206. package/components/Heading/types.d.ts +11 -0
  207. package/components/Heading/types.js +1 -0
  208. package/components/Image/Image.d.ts +3 -0
  209. package/components/Image/Image.js +33 -0
  210. package/components/Image/index.d.ts +1 -0
  211. package/components/Image/index.js +2 -0
  212. package/components/Image/types.d.ts +10 -0
  213. package/components/Image/types.js +1 -0
  214. package/components/Input/Input.d.ts +3 -0
  215. package/components/Input/Input.js +208 -0
  216. package/components/Input/InputPassword.d.ts +3 -0
  217. package/components/Input/InputPassword.js +215 -0
  218. package/components/Input/index.d.ts +2 -0
  219. package/components/Input/index.js +40 -0
  220. package/components/Input/types.d.ts +56 -0
  221. package/components/Input/types.js +1 -0
  222. package/components/ItemSelect/ItemSelect.d.ts +3 -0
  223. package/components/ItemSelect/ItemSelect.js +82 -0
  224. package/components/ItemSelect/ItemSelectGroup.d.ts +3 -0
  225. package/components/ItemSelect/ItemSelectGroup.js +69 -0
  226. package/components/ItemSelect/index.d.ts +2 -0
  227. package/components/ItemSelect/index.js +32 -0
  228. package/components/ItemSelect/types.d.ts +25 -0
  229. package/components/ItemSelect/types.js +1 -0
  230. package/components/Link/Link.d.ts +3 -0
  231. package/components/Link/Link.js +52 -0
  232. package/components/Link/index.d.ts +1 -0
  233. package/components/Link/index.js +5 -0
  234. package/components/Link/types.d.ts +20 -0
  235. package/components/Link/types.js +1 -0
  236. package/components/Menu/Menu.d.ts +3 -0
  237. package/components/Menu/Menu.js +146 -0
  238. package/components/Menu/NestedMenu.d.ts +3 -0
  239. package/components/Menu/NestedMenu.js +162 -0
  240. package/components/Menu/index.d.ts +2 -0
  241. package/components/Menu/index.js +56 -0
  242. package/components/Menu/types.d.ts +33 -0
  243. package/components/Menu/types.js +1 -0
  244. package/components/Modal/Modal.d.ts +3 -0
  245. package/components/Modal/Modal.js +145 -0
  246. package/components/Modal/ModalConfirmation.d.ts +3 -0
  247. package/components/Modal/ModalConfirmation.js +126 -0
  248. package/components/Modal/index.d.ts +2 -0
  249. package/components/Modal/index.js +41 -0
  250. package/components/Modal/types.d.ts +38 -0
  251. package/components/Modal/types.js +1 -0
  252. package/components/More/More.d.ts +3 -0
  253. package/components/More/More.js +64 -0
  254. package/components/More/index.d.ts +1 -0
  255. package/components/More/index.js +31 -0
  256. package/components/More/types.d.ts +10 -0
  257. package/components/More/types.js +1 -0
  258. package/components/OneTimePassword/OneTimePassword.d.ts +3 -0
  259. package/components/OneTimePassword/OneTimePassword.js +151 -0
  260. package/components/OneTimePassword/index.d.ts +1 -0
  261. package/components/OneTimePassword/index.js +42 -0
  262. package/components/OneTimePassword/types.d.ts +22 -0
  263. package/components/OneTimePassword/types.js +1 -0
  264. package/components/Pagination/Pagination.d.ts +3 -0
  265. package/components/Pagination/Pagination.js +60 -0
  266. package/components/Pagination/consts.d.ts +5 -0
  267. package/components/Pagination/consts.js +8 -0
  268. package/components/Pagination/index.d.ts +1 -0
  269. package/components/Pagination/index.js +11 -0
  270. package/components/Pagination/types.d.ts +15 -0
  271. package/components/Pagination/types.js +1 -0
  272. package/components/Popover/Popover.d.ts +3 -0
  273. package/components/Popover/Popover.js +97 -0
  274. package/components/Popover/index.d.ts +1 -0
  275. package/components/Popover/index.js +20 -0
  276. package/components/Popover/types.d.ts +13 -0
  277. package/components/Popover/types.js +1 -0
  278. package/components/Progress/Progress.d.ts +3 -0
  279. package/components/Progress/Progress.js +71 -0
  280. package/components/Progress/ProgressBarWrapper.d.ts +3 -0
  281. package/components/Progress/ProgressBarWrapper.js +16 -0
  282. package/components/Progress/index.d.ts +2 -0
  283. package/components/Progress/index.js +6 -0
  284. package/components/Progress/types.d.ts +14 -0
  285. package/components/Progress/types.js +1 -0
  286. package/components/ProgressStep/ProgressStep.d.ts +3 -0
  287. package/components/ProgressStep/ProgressStep.js +40 -0
  288. package/components/ProgressStep/Step.d.ts +3 -0
  289. package/components/ProgressStep/Step.js +102 -0
  290. package/components/ProgressStep/consts.d.ts +6 -0
  291. package/components/ProgressStep/consts.js +9 -0
  292. package/components/ProgressStep/index.d.ts +1 -0
  293. package/components/ProgressStep/index.js +13 -0
  294. package/components/ProgressStep/types.d.ts +31 -0
  295. package/components/ProgressStep/types.js +7 -0
  296. package/components/Radio/Radio.d.ts +3 -0
  297. package/components/Radio/Radio.js +59 -0
  298. package/components/Radio/RadioGroup.d.ts +3 -0
  299. package/components/Radio/RadioGroup.js +88 -0
  300. package/components/Radio/index.d.ts +2 -0
  301. package/components/Radio/index.js +29 -0
  302. package/components/Radio/types.d.ts +28 -0
  303. package/components/Radio/types.js +1 -0
  304. package/components/SVGIcons/IconAdd.d.ts +4 -0
  305. package/components/SVGIcons/IconAdd.js +30 -0
  306. package/components/SVGIcons/IconAddCircle.d.ts +4 -0
  307. package/components/SVGIcons/IconAddCircle.js +33 -0
  308. package/components/SVGIcons/IconAddCircleFilled.d.ts +4 -0
  309. package/components/SVGIcons/IconAddCircleFilled.js +33 -0
  310. package/components/SVGIcons/IconAddFilled.d.ts +4 -0
  311. package/components/SVGIcons/IconAddFilled.js +30 -0
  312. package/components/SVGIcons/IconAlert.d.ts +4 -0
  313. package/components/SVGIcons/IconAlert.js +33 -0
  314. package/components/SVGIcons/IconAlertBadge.d.ts +4 -0
  315. package/components/SVGIcons/IconAlertBadge.js +33 -0
  316. package/components/SVGIcons/IconAlertBadgeFilled.d.ts +4 -0
  317. package/components/SVGIcons/IconAlertBadgeFilled.js +33 -0
  318. package/components/SVGIcons/IconAlertFilled.d.ts +4 -0
  319. package/components/SVGIcons/IconAlertFilled.js +33 -0
  320. package/components/SVGIcons/IconAm.d.ts +4 -0
  321. package/components/SVGIcons/IconAm.js +59 -0
  322. package/components/SVGIcons/IconAmd.d.ts +4 -0
  323. package/components/SVGIcons/IconAmd.js +30 -0
  324. package/components/SVGIcons/IconAmdFilled.d.ts +4 -0
  325. package/components/SVGIcons/IconAmdFilled.js +30 -0
  326. package/components/SVGIcons/IconApple.d.ts +4 -0
  327. package/components/SVGIcons/IconApple.js +33 -0
  328. package/components/SVGIcons/IconAppsList.d.ts +4 -0
  329. package/components/SVGIcons/IconAppsList.js +30 -0
  330. package/components/SVGIcons/IconAppsListFilled.d.ts +4 -0
  331. package/components/SVGIcons/IconAppsListFilled.js +30 -0
  332. package/components/SVGIcons/IconArrowDown.d.ts +4 -0
  333. package/components/SVGIcons/IconArrowDown.js +33 -0
  334. package/components/SVGIcons/IconArrowDownFilled.d.ts +4 -0
  335. package/components/SVGIcons/IconArrowDownFilled.js +33 -0
  336. package/components/SVGIcons/IconArrowDownLeft.d.ts +4 -0
  337. package/components/SVGIcons/IconArrowDownLeft.js +33 -0
  338. package/components/SVGIcons/IconArrowDownLeftFilled.d.ts +4 -0
  339. package/components/SVGIcons/IconArrowDownLeftFilled.js +33 -0
  340. package/components/SVGIcons/IconArrowDownload.d.ts +4 -0
  341. package/components/SVGIcons/IconArrowDownload.js +33 -0
  342. package/components/SVGIcons/IconArrowDownloadFilled.d.ts +4 -0
  343. package/components/SVGIcons/IconArrowDownloadFilled.js +33 -0
  344. package/components/SVGIcons/IconArrowEnter.d.ts +4 -0
  345. package/components/SVGIcons/IconArrowEnter.js +30 -0
  346. package/components/SVGIcons/IconArrowEnterFilled.d.ts +4 -0
  347. package/components/SVGIcons/IconArrowEnterFilled.js +30 -0
  348. package/components/SVGIcons/IconArrowExit.d.ts +4 -0
  349. package/components/SVGIcons/IconArrowExit.js +30 -0
  350. package/components/SVGIcons/IconArrowExitFilled.d.ts +4 -0
  351. package/components/SVGIcons/IconArrowExitFilled.js +30 -0
  352. package/components/SVGIcons/IconArrowExportLeftToRight.d.ts +4 -0
  353. package/components/SVGIcons/IconArrowExportLeftToRight.js +33 -0
  354. package/components/SVGIcons/IconArrowExportLeftToRightFilled.d.ts +4 -0
  355. package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +33 -0
  356. package/components/SVGIcons/IconArrowExportRightToLeft.d.ts +4 -0
  357. package/components/SVGIcons/IconArrowExportRightToLeft.js +33 -0
  358. package/components/SVGIcons/IconArrowExportRightToLeftFilled.d.ts +4 -0
  359. package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +33 -0
  360. package/components/SVGIcons/IconArrowExportUp.d.ts +4 -0
  361. package/components/SVGIcons/IconArrowExportUp.js +33 -0
  362. package/components/SVGIcons/IconArrowExportUpFilled.d.ts +4 -0
  363. package/components/SVGIcons/IconArrowExportUpFilled.js +33 -0
  364. package/components/SVGIcons/IconArrowImport.d.ts +4 -0
  365. package/components/SVGIcons/IconArrowImport.js +33 -0
  366. package/components/SVGIcons/IconArrowImportFilled.d.ts +4 -0
  367. package/components/SVGIcons/IconArrowImportFilled.js +33 -0
  368. package/components/SVGIcons/IconArrowLeft.d.ts +4 -0
  369. package/components/SVGIcons/IconArrowLeft.js +33 -0
  370. package/components/SVGIcons/IconArrowLeftFilled.d.ts +4 -0
  371. package/components/SVGIcons/IconArrowLeftFilled.js +33 -0
  372. package/components/SVGIcons/IconArrowRepeatAll.d.ts +4 -0
  373. package/components/SVGIcons/IconArrowRepeatAll.js +33 -0
  374. package/components/SVGIcons/IconArrowRepeatAllFilled.d.ts +4 -0
  375. package/components/SVGIcons/IconArrowRepeatAllFilled.js +33 -0
  376. package/components/SVGIcons/IconArrowReset.d.ts +4 -0
  377. package/components/SVGIcons/IconArrowReset.js +33 -0
  378. package/components/SVGIcons/IconArrowResetFilled.d.ts +4 -0
  379. package/components/SVGIcons/IconArrowResetFilled.js +33 -0
  380. package/components/SVGIcons/IconArrowRight.d.ts +4 -0
  381. package/components/SVGIcons/IconArrowRight.js +33 -0
  382. package/components/SVGIcons/IconArrowRightFilled.d.ts +4 -0
  383. package/components/SVGIcons/IconArrowRightFilled.js +33 -0
  384. package/components/SVGIcons/IconArrowSort.d.ts +4 -0
  385. package/components/SVGIcons/IconArrowSort.js +30 -0
  386. package/components/SVGIcons/IconArrowSortFilled.d.ts +4 -0
  387. package/components/SVGIcons/IconArrowSortFilled.js +30 -0
  388. package/components/SVGIcons/IconArrowSync.d.ts +4 -0
  389. package/components/SVGIcons/IconArrowSync.js +30 -0
  390. package/components/SVGIcons/IconArrowSyncFilled.d.ts +4 -0
  391. package/components/SVGIcons/IconArrowSyncFilled.js +30 -0
  392. package/components/SVGIcons/IconArrowUp.d.ts +4 -0
  393. package/components/SVGIcons/IconArrowUp.js +33 -0
  394. package/components/SVGIcons/IconArrowUpFilled.d.ts +4 -0
  395. package/components/SVGIcons/IconArrowUpFilled.js +33 -0
  396. package/components/SVGIcons/IconArrowUpLeft.d.ts +4 -0
  397. package/components/SVGIcons/IconArrowUpLeft.js +33 -0
  398. package/components/SVGIcons/IconArrowUpLeftFilled.d.ts +4 -0
  399. package/components/SVGIcons/IconArrowUpLeftFilled.js +33 -0
  400. package/components/SVGIcons/IconArrowUpRight.d.ts +4 -0
  401. package/components/SVGIcons/IconArrowUpRight.js +33 -0
  402. package/components/SVGIcons/IconArrowUpRightFilled.d.ts +4 -0
  403. package/components/SVGIcons/IconArrowUpRightFilled.js +33 -0
  404. package/components/SVGIcons/IconAttach.d.ts +4 -0
  405. package/components/SVGIcons/IconAttach.js +33 -0
  406. package/components/SVGIcons/IconAttachFilled.d.ts +4 -0
  407. package/components/SVGIcons/IconAttachFilled.js +33 -0
  408. package/components/SVGIcons/IconBeach.d.ts +4 -0
  409. package/components/SVGIcons/IconBeach.js +30 -0
  410. package/components/SVGIcons/IconBeachFilled.d.ts +4 -0
  411. package/components/SVGIcons/IconBeachFilled.js +30 -0
  412. package/components/SVGIcons/IconBed.d.ts +4 -0
  413. package/components/SVGIcons/IconBed.js +30 -0
  414. package/components/SVGIcons/IconBedFilled.d.ts +4 -0
  415. package/components/SVGIcons/IconBedFilled.js +30 -0
  416. package/components/SVGIcons/IconBook.d.ts +4 -0
  417. package/components/SVGIcons/IconBook.js +33 -0
  418. package/components/SVGIcons/IconBookFilled.d.ts +4 -0
  419. package/components/SVGIcons/IconBookFilled.js +33 -0
  420. package/components/SVGIcons/IconBookmark.d.ts +4 -0
  421. package/components/SVGIcons/IconBookmark.js +33 -0
  422. package/components/SVGIcons/IconBookmarkFilled.d.ts +4 -0
  423. package/components/SVGIcons/IconBookmarkFilled.js +33 -0
  424. package/components/SVGIcons/IconBriefcase.d.ts +4 -0
  425. package/components/SVGIcons/IconBriefcase.js +33 -0
  426. package/components/SVGIcons/IconBriefcaseFilled.d.ts +4 -0
  427. package/components/SVGIcons/IconBriefcaseFilled.js +33 -0
  428. package/components/SVGIcons/IconBroom.d.ts +4 -0
  429. package/components/SVGIcons/IconBroom.js +30 -0
  430. package/components/SVGIcons/IconBroomFilled.d.ts +4 -0
  431. package/components/SVGIcons/IconBroomFilled.js +30 -0
  432. package/components/SVGIcons/IconBuilding.d.ts +4 -0
  433. package/components/SVGIcons/IconBuilding.js +56 -0
  434. package/components/SVGIcons/IconBuildingBank.d.ts +4 -0
  435. package/components/SVGIcons/IconBuildingBank.js +30 -0
  436. package/components/SVGIcons/IconBuildingBankFilled.d.ts +4 -0
  437. package/components/SVGIcons/IconBuildingBankFilled.js +30 -0
  438. package/components/SVGIcons/IconBuildingFilled.d.ts +4 -0
  439. package/components/SVGIcons/IconBuildingFilled.js +33 -0
  440. package/components/SVGIcons/IconBulletListAdd.d.ts +4 -0
  441. package/components/SVGIcons/IconBulletListAdd.js +33 -0
  442. package/components/SVGIcons/IconBulletListAddFilled.d.ts +4 -0
  443. package/components/SVGIcons/IconBulletListAddFilled.js +33 -0
  444. package/components/SVGIcons/IconCalculator.d.ts +4 -0
  445. package/components/SVGIcons/IconCalculator.js +33 -0
  446. package/components/SVGIcons/IconCalculatorFilled.d.ts +4 -0
  447. package/components/SVGIcons/IconCalculatorFilled.js +33 -0
  448. package/components/SVGIcons/IconCalendarClock.d.ts +4 -0
  449. package/components/SVGIcons/IconCalendarClock.js +30 -0
  450. package/components/SVGIcons/IconCalendarClockFilled.d.ts +4 -0
  451. package/components/SVGIcons/IconCalendarClockFilled.js +30 -0
  452. package/components/SVGIcons/IconCalendarDay.d.ts +4 -0
  453. package/components/SVGIcons/IconCalendarDay.js +33 -0
  454. package/components/SVGIcons/IconCalendarDayFilled.d.ts +4 -0
  455. package/components/SVGIcons/IconCalendarDayFilled.js +33 -0
  456. package/components/SVGIcons/IconCalendarLeft.d.ts +4 -0
  457. package/components/SVGIcons/IconCalendarLeft.js +30 -0
  458. package/components/SVGIcons/IconCalendarLeftFilled.d.ts +4 -0
  459. package/components/SVGIcons/IconCalendarLeftFilled.js +30 -0
  460. package/components/SVGIcons/IconCalendarRight.d.ts +4 -0
  461. package/components/SVGIcons/IconCalendarRight.js +30 -0
  462. package/components/SVGIcons/IconCalendarRightFilled.d.ts +4 -0
  463. package/components/SVGIcons/IconCalendarRightFilled.js +30 -0
  464. package/components/SVGIcons/IconCall.d.ts +4 -0
  465. package/components/SVGIcons/IconCall.js +33 -0
  466. package/components/SVGIcons/IconCallFilled.d.ts +4 -0
  467. package/components/SVGIcons/IconCallFilled.js +33 -0
  468. package/components/SVGIcons/IconCameraDome.d.ts +4 -0
  469. package/components/SVGIcons/IconCameraDome.js +30 -0
  470. package/components/SVGIcons/IconCameraDomeFilled.d.ts +4 -0
  471. package/components/SVGIcons/IconCameraDomeFilled.js +30 -0
  472. package/components/SVGIcons/IconCard.d.ts +4 -0
  473. package/components/SVGIcons/IconCard.js +30 -0
  474. package/components/SVGIcons/IconCardFilled.d.ts +4 -0
  475. package/components/SVGIcons/IconCardFilled.js +30 -0
  476. package/components/SVGIcons/IconCaretDown.d.ts +4 -0
  477. package/components/SVGIcons/IconCaretDown.js +30 -0
  478. package/components/SVGIcons/IconCaretDownFilled.d.ts +4 -0
  479. package/components/SVGIcons/IconCaretDownFilled.js +30 -0
  480. package/components/SVGIcons/IconCaretDownRight.d.ts +4 -0
  481. package/components/SVGIcons/IconCaretDownRight.js +30 -0
  482. package/components/SVGIcons/IconCaretDownRightFilled.d.ts +4 -0
  483. package/components/SVGIcons/IconCaretDownRightFilled.js +30 -0
  484. package/components/SVGIcons/IconCaretLeft.d.ts +4 -0
  485. package/components/SVGIcons/IconCaretLeft.js +30 -0
  486. package/components/SVGIcons/IconCaretLeftFilled.d.ts +4 -0
  487. package/components/SVGIcons/IconCaretLeftFilled.js +30 -0
  488. package/components/SVGIcons/IconCaretRight.d.ts +4 -0
  489. package/components/SVGIcons/IconCaretRight.js +30 -0
  490. package/components/SVGIcons/IconCaretRightFilled.d.ts +4 -0
  491. package/components/SVGIcons/IconCaretRightFilled.js +30 -0
  492. package/components/SVGIcons/IconCaretUp.d.ts +4 -0
  493. package/components/SVGIcons/IconCaretUp.js +30 -0
  494. package/components/SVGIcons/IconCaretUpFilled.d.ts +4 -0
  495. package/components/SVGIcons/IconCaretUpFilled.js +30 -0
  496. package/components/SVGIcons/IconChat.d.ts +4 -0
  497. package/components/SVGIcons/IconChat.js +30 -0
  498. package/components/SVGIcons/IconChatFilled.d.ts +4 -0
  499. package/components/SVGIcons/IconChatFilled.js +30 -0
  500. package/components/SVGIcons/IconChatMultiple.d.ts +4 -0
  501. package/components/SVGIcons/IconChatMultiple.js +30 -0
  502. package/components/SVGIcons/IconChatMultipleFilled.d.ts +4 -0
  503. package/components/SVGIcons/IconChatMultipleFilled.js +30 -0
  504. package/components/SVGIcons/IconCheckboxArrowRight.d.ts +4 -0
  505. package/components/SVGIcons/IconCheckboxArrowRight.js +33 -0
  506. package/components/SVGIcons/IconCheckboxArrowRightFilled.d.ts +4 -0
  507. package/components/SVGIcons/IconCheckboxArrowRightFilled.js +33 -0
  508. package/components/SVGIcons/IconCheckmark.d.ts +4 -0
  509. package/components/SVGIcons/IconCheckmark.js +30 -0
  510. package/components/SVGIcons/IconCheckmarkCircle.d.ts +4 -0
  511. package/components/SVGIcons/IconCheckmarkCircle.js +30 -0
  512. package/components/SVGIcons/IconCheckmarkCircleFilled.d.ts +4 -0
  513. package/components/SVGIcons/IconCheckmarkCircleFilled.js +30 -0
  514. package/components/SVGIcons/IconCheckmarkFilled.d.ts +4 -0
  515. package/components/SVGIcons/IconCheckmarkFilled.js +30 -0
  516. package/components/SVGIcons/IconChevronDoubleLeft.d.ts +4 -0
  517. package/components/SVGIcons/IconChevronDoubleLeft.js +30 -0
  518. package/components/SVGIcons/IconChevronDoubleLeftFilled.d.ts +4 -0
  519. package/components/SVGIcons/IconChevronDoubleLeftFilled.js +30 -0
  520. package/components/SVGIcons/IconChevronDoubleRight.d.ts +4 -0
  521. package/components/SVGIcons/IconChevronDoubleRight.js +30 -0
  522. package/components/SVGIcons/IconChevronDoubleRightFilled.d.ts +4 -0
  523. package/components/SVGIcons/IconChevronDoubleRightFilled.js +30 -0
  524. package/components/SVGIcons/IconChevronDown.d.ts +4 -0
  525. package/components/SVGIcons/IconChevronDown.js +30 -0
  526. package/components/SVGIcons/IconChevronDownFilled.d.ts +4 -0
  527. package/components/SVGIcons/IconChevronDownFilled.js +30 -0
  528. package/components/SVGIcons/IconChevronLeft.d.ts +4 -0
  529. package/components/SVGIcons/IconChevronLeft.js +30 -0
  530. package/components/SVGIcons/IconChevronLeftFilled.d.ts +4 -0
  531. package/components/SVGIcons/IconChevronLeftFilled.js +30 -0
  532. package/components/SVGIcons/IconChevronRight.d.ts +4 -0
  533. package/components/SVGIcons/IconChevronRight.js +30 -0
  534. package/components/SVGIcons/IconChevronRightFilled.d.ts +4 -0
  535. package/components/SVGIcons/IconChevronRightFilled.js +30 -0
  536. package/components/SVGIcons/IconChevronUp.d.ts +4 -0
  537. package/components/SVGIcons/IconChevronUp.js +30 -0
  538. package/components/SVGIcons/IconChevronUpDown.d.ts +4 -0
  539. package/components/SVGIcons/IconChevronUpDown.js +33 -0
  540. package/components/SVGIcons/IconChevronUpDownFilled.d.ts +4 -0
  541. package/components/SVGIcons/IconChevronUpDownFilled.js +33 -0
  542. package/components/SVGIcons/IconChevronUpFilled.d.ts +4 -0
  543. package/components/SVGIcons/IconChevronUpFilled.js +30 -0
  544. package/components/SVGIcons/IconClock.d.ts +4 -0
  545. package/components/SVGIcons/IconClock.js +33 -0
  546. package/components/SVGIcons/IconClockDismiss.d.ts +4 -0
  547. package/components/SVGIcons/IconClockDismiss.js +30 -0
  548. package/components/SVGIcons/IconClockDismissFilled.d.ts +4 -0
  549. package/components/SVGIcons/IconClockDismissFilled.js +30 -0
  550. package/components/SVGIcons/IconClockFilled.d.ts +4 -0
  551. package/components/SVGIcons/IconClockFilled.js +33 -0
  552. package/components/SVGIcons/IconComment.d.ts +4 -0
  553. package/components/SVGIcons/IconComment.js +33 -0
  554. package/components/SVGIcons/IconCommentFilled.d.ts +4 -0
  555. package/components/SVGIcons/IconCommentFilled.js +33 -0
  556. package/components/SVGIcons/IconContractCard.d.ts +4 -0
  557. package/components/SVGIcons/IconContractCard.js +30 -0
  558. package/components/SVGIcons/IconContractCardFilled.d.ts +4 -0
  559. package/components/SVGIcons/IconContractCardFilled.js +30 -0
  560. package/components/SVGIcons/IconCopy.d.ts +4 -0
  561. package/components/SVGIcons/IconCopy.js +30 -0
  562. package/components/SVGIcons/IconCopyFilled.d.ts +4 -0
  563. package/components/SVGIcons/IconCopyFilled.js +30 -0
  564. package/components/SVGIcons/IconCubeTree.d.ts +4 -0
  565. package/components/SVGIcons/IconCubeTree.js +30 -0
  566. package/components/SVGIcons/IconCubeTreeFilled.d.ts +4 -0
  567. package/components/SVGIcons/IconCubeTreeFilled.js +33 -0
  568. package/components/SVGIcons/IconDatabase.d.ts +4 -0
  569. package/components/SVGIcons/IconDatabase.js +33 -0
  570. package/components/SVGIcons/IconDatabaseFilled.d.ts +4 -0
  571. package/components/SVGIcons/IconDatabaseFilled.js +33 -0
  572. package/components/SVGIcons/IconDelete.d.ts +4 -0
  573. package/components/SVGIcons/IconDelete.js +30 -0
  574. package/components/SVGIcons/IconDeleteFilled.d.ts +4 -0
  575. package/components/SVGIcons/IconDeleteFilled.js +30 -0
  576. package/components/SVGIcons/IconDesignIdeas.d.ts +4 -0
  577. package/components/SVGIcons/IconDesignIdeas.js +30 -0
  578. package/components/SVGIcons/IconDesignIdeasFilled.d.ts +4 -0
  579. package/components/SVGIcons/IconDesignIdeasFilled.js +30 -0
  580. package/components/SVGIcons/IconDeviceMeetingRoom.d.ts +4 -0
  581. package/components/SVGIcons/IconDeviceMeetingRoom.js +30 -0
  582. package/components/SVGIcons/IconDeviceMeetingRoomFilled.d.ts +4 -0
  583. package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +30 -0
  584. package/components/SVGIcons/IconDismiss.d.ts +4 -0
  585. package/components/SVGIcons/IconDismiss.js +30 -0
  586. package/components/SVGIcons/IconDismissCircle.d.ts +4 -0
  587. package/components/SVGIcons/IconDismissCircle.js +33 -0
  588. package/components/SVGIcons/IconDismissCircleFilled.d.ts +4 -0
  589. package/components/SVGIcons/IconDismissCircleFilled.js +33 -0
  590. package/components/SVGIcons/IconDismissFilled.d.ts +4 -0
  591. package/components/SVGIcons/IconDismissFilled.js +30 -0
  592. package/components/SVGIcons/IconDocument.d.ts +4 -0
  593. package/components/SVGIcons/IconDocument.js +30 -0
  594. package/components/SVGIcons/IconDocumentBulletList.d.ts +4 -0
  595. package/components/SVGIcons/IconDocumentBulletList.js +33 -0
  596. package/components/SVGIcons/IconDocumentBulletListFilled.d.ts +4 -0
  597. package/components/SVGIcons/IconDocumentBulletListFilled.js +33 -0
  598. package/components/SVGIcons/IconDocumentEdit.d.ts +4 -0
  599. package/components/SVGIcons/IconDocumentEdit.js +30 -0
  600. package/components/SVGIcons/IconDocumentEditFilled.d.ts +4 -0
  601. package/components/SVGIcons/IconDocumentEditFilled.js +30 -0
  602. package/components/SVGIcons/IconDocumentFilled.d.ts +4 -0
  603. package/components/SVGIcons/IconDocumentFilled.js +30 -0
  604. package/components/SVGIcons/IconEdit.d.ts +4 -0
  605. package/components/SVGIcons/IconEdit.js +30 -0
  606. package/components/SVGIcons/IconEditFilled.d.ts +4 -0
  607. package/components/SVGIcons/IconEditFilled.js +30 -0
  608. package/components/SVGIcons/IconErrorCircle.d.ts +4 -0
  609. package/components/SVGIcons/IconErrorCircle.js +30 -0
  610. package/components/SVGIcons/IconErrorCircleFilled.d.ts +4 -0
  611. package/components/SVGIcons/IconErrorCircleFilled.js +30 -0
  612. package/components/SVGIcons/IconEur.d.ts +4 -0
  613. package/components/SVGIcons/IconEur.js +30 -0
  614. package/components/SVGIcons/IconEurFilled.d.ts +4 -0
  615. package/components/SVGIcons/IconEurFilled.js +30 -0
  616. package/components/SVGIcons/IconExpandUpLeft.d.ts +4 -0
  617. package/components/SVGIcons/IconExpandUpLeft.js +33 -0
  618. package/components/SVGIcons/IconExpandUpLeftFilled.d.ts +4 -0
  619. package/components/SVGIcons/IconExpandUpLeftFilled.js +33 -0
  620. package/components/SVGIcons/IconExpandUpRight.d.ts +4 -0
  621. package/components/SVGIcons/IconExpandUpRight.js +33 -0
  622. package/components/SVGIcons/IconExpandUpRightFilled.d.ts +4 -0
  623. package/components/SVGIcons/IconExpandUpRightFilled.js +33 -0
  624. package/components/SVGIcons/IconEyeOff.d.ts +4 -0
  625. package/components/SVGIcons/IconEyeOff.js +35 -0
  626. package/components/SVGIcons/IconEyeOffFilled.d.ts +4 -0
  627. package/components/SVGIcons/IconEyeOffFilled.js +33 -0
  628. package/components/SVGIcons/IconEyeOn.d.ts +4 -0
  629. package/components/SVGIcons/IconEyeOn.js +35 -0
  630. package/components/SVGIcons/IconEyeOnFilled.d.ts +4 -0
  631. package/components/SVGIcons/IconEyeOnFilled.js +33 -0
  632. package/components/SVGIcons/IconFacebook.d.ts +4 -0
  633. package/components/SVGIcons/IconFacebook.js +40 -0
  634. package/components/SVGIcons/IconFilter.d.ts +4 -0
  635. package/components/SVGIcons/IconFilter.js +30 -0
  636. package/components/SVGIcons/IconFilterFilled.d.ts +4 -0
  637. package/components/SVGIcons/IconFilterFilled.js +30 -0
  638. package/components/SVGIcons/IconFlag.d.ts +4 -0
  639. package/components/SVGIcons/IconFlag.js +33 -0
  640. package/components/SVGIcons/IconFlagFilled.d.ts +4 -0
  641. package/components/SVGIcons/IconFlagFilled.js +33 -0
  642. package/components/SVGIcons/IconFlash.d.ts +4 -0
  643. package/components/SVGIcons/IconFlash.js +30 -0
  644. package/components/SVGIcons/IconFlashFilled.d.ts +4 -0
  645. package/components/SVGIcons/IconFlashFilled.js +30 -0
  646. package/components/SVGIcons/IconFolderLink.d.ts +4 -0
  647. package/components/SVGIcons/IconFolderLink.js +30 -0
  648. package/components/SVGIcons/IconFolderLinkFilled.d.ts +4 -0
  649. package/components/SVGIcons/IconFolderLinkFilled.js +30 -0
  650. package/components/SVGIcons/IconGas.d.ts +4 -0
  651. package/components/SVGIcons/IconGas.js +33 -0
  652. package/components/SVGIcons/IconGb.d.ts +4 -0
  653. package/components/SVGIcons/IconGb.js +73 -0
  654. package/components/SVGIcons/IconGlobe.d.ts +4 -0
  655. package/components/SVGIcons/IconGlobe.js +30 -0
  656. package/components/SVGIcons/IconGlobeFilled.d.ts +4 -0
  657. package/components/SVGIcons/IconGlobeFilled.js +30 -0
  658. package/components/SVGIcons/IconGoogle.d.ts +4 -0
  659. package/components/SVGIcons/IconGoogle.js +42 -0
  660. package/components/SVGIcons/IconHandOpenHeart.d.ts +4 -0
  661. package/components/SVGIcons/IconHandOpenHeart.js +33 -0
  662. package/components/SVGIcons/IconHandOpenHeartFilled.d.ts +4 -0
  663. package/components/SVGIcons/IconHandOpenHeartFilled.js +33 -0
  664. package/components/SVGIcons/IconHandWave.d.ts +4 -0
  665. package/components/SVGIcons/IconHandWave.js +30 -0
  666. package/components/SVGIcons/IconHandWaveFilled.d.ts +4 -0
  667. package/components/SVGIcons/IconHandWaveFilled.js +30 -0
  668. package/components/SVGIcons/IconHeart.d.ts +4 -0
  669. package/components/SVGIcons/IconHeart.js +33 -0
  670. package/components/SVGIcons/IconHeartFilled.d.ts +4 -0
  671. package/components/SVGIcons/IconHeartFilled.js +33 -0
  672. package/components/SVGIcons/IconHistory.d.ts +4 -0
  673. package/components/SVGIcons/IconHistory.js +33 -0
  674. package/components/SVGIcons/IconHistoryFilled.d.ts +4 -0
  675. package/components/SVGIcons/IconHistoryFilled.js +33 -0
  676. package/components/SVGIcons/IconHome.d.ts +4 -0
  677. package/components/SVGIcons/IconHome.js +33 -0
  678. package/components/SVGIcons/IconHomeAdd.d.ts +4 -0
  679. package/components/SVGIcons/IconHomeAdd.js +30 -0
  680. package/components/SVGIcons/IconHomeAddFilled.d.ts +4 -0
  681. package/components/SVGIcons/IconHomeAddFilled.js +30 -0
  682. package/components/SVGIcons/IconHomeFilled.d.ts +4 -0
  683. package/components/SVGIcons/IconHomeFilled.js +33 -0
  684. package/components/SVGIcons/IconImage.d.ts +4 -0
  685. package/components/SVGIcons/IconImage.js +33 -0
  686. package/components/SVGIcons/IconImageFilled.d.ts +4 -0
  687. package/components/SVGIcons/IconImageFilled.js +33 -0
  688. package/components/SVGIcons/IconInfo.d.ts +4 -0
  689. package/components/SVGIcons/IconInfo.js +30 -0
  690. package/components/SVGIcons/IconInfoFilled.d.ts +4 -0
  691. package/components/SVGIcons/IconInfoFilled.js +30 -0
  692. package/components/SVGIcons/IconInstagram.d.ts +4 -0
  693. package/components/SVGIcons/IconInstagram.js +41 -0
  694. package/components/SVGIcons/IconKey.d.ts +4 -0
  695. package/components/SVGIcons/IconKey.js +30 -0
  696. package/components/SVGIcons/IconKeyFilled.d.ts +4 -0
  697. package/components/SVGIcons/IconKeyFilled.js +30 -0
  698. package/components/SVGIcons/IconKeyReset.d.ts +4 -0
  699. package/components/SVGIcons/IconKeyReset.js +33 -0
  700. package/components/SVGIcons/IconKeyResetFilled.d.ts +4 -0
  701. package/components/SVGIcons/IconKeyResetFilled.js +33 -0
  702. package/components/SVGIcons/IconLaptop.d.ts +4 -0
  703. package/components/SVGIcons/IconLaptop.js +30 -0
  704. package/components/SVGIcons/IconLaptopFilled.d.ts +4 -0
  705. package/components/SVGIcons/IconLaptopFilled.js +30 -0
  706. package/components/SVGIcons/IconLeaf.d.ts +4 -0
  707. package/components/SVGIcons/IconLeaf.js +30 -0
  708. package/components/SVGIcons/IconLeafFilled.d.ts +4 -0
  709. package/components/SVGIcons/IconLeafFilled.js +30 -0
  710. package/components/SVGIcons/IconLightbulb.d.ts +4 -0
  711. package/components/SVGIcons/IconLightbulb.js +30 -0
  712. package/components/SVGIcons/IconLightbulbFilled.d.ts +4 -0
  713. package/components/SVGIcons/IconLightbulbFilled.js +30 -0
  714. package/components/SVGIcons/IconLink.d.ts +4 -0
  715. package/components/SVGIcons/IconLink.js +33 -0
  716. package/components/SVGIcons/IconLinkFilled.d.ts +4 -0
  717. package/components/SVGIcons/IconLinkFilled.js +33 -0
  718. package/components/SVGIcons/IconLinkedin.d.ts +4 -0
  719. package/components/SVGIcons/IconLinkedin.js +33 -0
  720. package/components/SVGIcons/IconList.d.ts +4 -0
  721. package/components/SVGIcons/IconList.js +30 -0
  722. package/components/SVGIcons/IconListFilled.d.ts +4 -0
  723. package/components/SVGIcons/IconListFilled.js +33 -0
  724. package/components/SVGIcons/IconLoan.d.ts +4 -0
  725. package/components/SVGIcons/IconLoan.js +39 -0
  726. package/components/SVGIcons/IconLoanFilled.d.ts +4 -0
  727. package/components/SVGIcons/IconLoanFilled.js +30 -0
  728. package/components/SVGIcons/IconLocation.d.ts +4 -0
  729. package/components/SVGIcons/IconLocation.js +33 -0
  730. package/components/SVGIcons/IconLocationFilled.d.ts +4 -0
  731. package/components/SVGIcons/IconLocationFilled.js +33 -0
  732. package/components/SVGIcons/IconLockClosed.d.ts +4 -0
  733. package/components/SVGIcons/IconLockClosed.js +33 -0
  734. package/components/SVGIcons/IconLockClosedFilled.d.ts +4 -0
  735. package/components/SVGIcons/IconLockClosedFilled.js +33 -0
  736. package/components/SVGIcons/IconLockOpen.d.ts +4 -0
  737. package/components/SVGIcons/IconLockOpen.js +33 -0
  738. package/components/SVGIcons/IconLockOpenFilled.d.ts +4 -0
  739. package/components/SVGIcons/IconLockOpenFilled.js +33 -0
  740. package/components/SVGIcons/IconMail.d.ts +4 -0
  741. package/components/SVGIcons/IconMail.js +33 -0
  742. package/components/SVGIcons/IconMailAdd.d.ts +4 -0
  743. package/components/SVGIcons/IconMailAdd.js +33 -0
  744. package/components/SVGIcons/IconMailAddFilled.d.ts +4 -0
  745. package/components/SVGIcons/IconMailAddFilled.js +33 -0
  746. package/components/SVGIcons/IconMailArrowForward.d.ts +4 -0
  747. package/components/SVGIcons/IconMailArrowForward.js +33 -0
  748. package/components/SVGIcons/IconMailArrowForwardFilled.d.ts +4 -0
  749. package/components/SVGIcons/IconMailArrowForwardFilled.js +33 -0
  750. package/components/SVGIcons/IconMailFilled.d.ts +4 -0
  751. package/components/SVGIcons/IconMailFilled.js +33 -0
  752. package/components/SVGIcons/IconMailLink.d.ts +4 -0
  753. package/components/SVGIcons/IconMailLink.js +33 -0
  754. package/components/SVGIcons/IconMailLinkFilled.d.ts +4 -0
  755. package/components/SVGIcons/IconMailLinkFilled.js +33 -0
  756. package/components/SVGIcons/IconMedium.d.ts +4 -0
  757. package/components/SVGIcons/IconMedium.js +33 -0
  758. package/components/SVGIcons/IconMore.d.ts +4 -0
  759. package/components/SVGIcons/IconMore.js +33 -0
  760. package/components/SVGIcons/IconMoreFilled.d.ts +4 -0
  761. package/components/SVGIcons/IconMoreFilled.js +33 -0
  762. package/components/SVGIcons/IconMoreVertical.d.ts +4 -0
  763. package/components/SVGIcons/IconMoreVertical.js +33 -0
  764. package/components/SVGIcons/IconMoreVerticalFilled.d.ts +4 -0
  765. package/components/SVGIcons/IconMoreVerticalFilled.js +33 -0
  766. package/components/SVGIcons/IconNavigation.d.ts +4 -0
  767. package/components/SVGIcons/IconNavigation.js +33 -0
  768. package/components/SVGIcons/IconNavigationFilled.d.ts +4 -0
  769. package/components/SVGIcons/IconNavigationFilled.js +33 -0
  770. package/components/SVGIcons/IconNotebook.d.ts +4 -0
  771. package/components/SVGIcons/IconNotebook.js +33 -0
  772. package/components/SVGIcons/IconNotebookAdd.d.ts +4 -0
  773. package/components/SVGIcons/IconNotebookAdd.js +49 -0
  774. package/components/SVGIcons/IconNotebookAddFilled.d.ts +4 -0
  775. package/components/SVGIcons/IconNotebookAddFilled.js +46 -0
  776. package/components/SVGIcons/IconNotebookFilled.d.ts +4 -0
  777. package/components/SVGIcons/IconNotebookFilled.js +33 -0
  778. package/components/SVGIcons/IconOnlyEmployee.d.ts +4 -0
  779. package/components/SVGIcons/IconOnlyEmployee.js +30 -0
  780. package/components/SVGIcons/IconOpen.d.ts +4 -0
  781. package/components/SVGIcons/IconOpen.js +33 -0
  782. package/components/SVGIcons/IconOpenFilled.d.ts +4 -0
  783. package/components/SVGIcons/IconOpenFilled.js +33 -0
  784. package/components/SVGIcons/IconPaintBrush.d.ts +4 -0
  785. package/components/SVGIcons/IconPaintBrush.js +30 -0
  786. package/components/SVGIcons/IconPaintBrushFilled.d.ts +4 -0
  787. package/components/SVGIcons/IconPaintBrushFilled.js +30 -0
  788. package/components/SVGIcons/IconPatient.d.ts +4 -0
  789. package/components/SVGIcons/IconPatient.js +30 -0
  790. package/components/SVGIcons/IconPatientFilled.d.ts +4 -0
  791. package/components/SVGIcons/IconPatientFilled.js +30 -0
  792. package/components/SVGIcons/IconPeople.d.ts +4 -0
  793. package/components/SVGIcons/IconPeople.js +30 -0
  794. package/components/SVGIcons/IconPeopleAdd.d.ts +4 -0
  795. package/components/SVGIcons/IconPeopleAdd.js +33 -0
  796. package/components/SVGIcons/IconPeopleAddFilled.d.ts +4 -0
  797. package/components/SVGIcons/IconPeopleAddFilled.js +33 -0
  798. package/components/SVGIcons/IconPeopleFilled.d.ts +4 -0
  799. package/components/SVGIcons/IconPeopleFilled.js +33 -0
  800. package/components/SVGIcons/IconPercent.d.ts +4 -0
  801. package/components/SVGIcons/IconPercent.js +35 -0
  802. package/components/SVGIcons/IconPerson.d.ts +4 -0
  803. package/components/SVGIcons/IconPerson.js +33 -0
  804. package/components/SVGIcons/IconPersonAccount.d.ts +4 -0
  805. package/components/SVGIcons/IconPersonAccount.js +30 -0
  806. package/components/SVGIcons/IconPersonAccountFilled.d.ts +4 -0
  807. package/components/SVGIcons/IconPersonAccountFilled.js +30 -0
  808. package/components/SVGIcons/IconPersonAdd.d.ts +4 -0
  809. package/components/SVGIcons/IconPersonAdd.js +33 -0
  810. package/components/SVGIcons/IconPersonAddFilled.d.ts +4 -0
  811. package/components/SVGIcons/IconPersonAddFilled.js +33 -0
  812. package/components/SVGIcons/IconPersonFilled.d.ts +4 -0
  813. package/components/SVGIcons/IconPersonFilled.js +33 -0
  814. package/components/SVGIcons/IconPersonStar.d.ts +4 -0
  815. package/components/SVGIcons/IconPersonStar.js +33 -0
  816. package/components/SVGIcons/IconPersonStarFilled.d.ts +4 -0
  817. package/components/SVGIcons/IconPersonStarFilled.js +33 -0
  818. package/components/SVGIcons/IconPersonSubtract.d.ts +4 -0
  819. package/components/SVGIcons/IconPersonSubtract.js +33 -0
  820. package/components/SVGIcons/IconPersonSubtractFilled.d.ts +4 -0
  821. package/components/SVGIcons/IconPersonSubtractFilled.js +33 -0
  822. package/components/SVGIcons/IconPhone.d.ts +4 -0
  823. package/components/SVGIcons/IconPhone.js +33 -0
  824. package/components/SVGIcons/IconPhoneFilled.d.ts +4 -0
  825. package/components/SVGIcons/IconPhoneFilled.js +33 -0
  826. package/components/SVGIcons/IconPos.d.ts +4 -0
  827. package/components/SVGIcons/IconPos.js +35 -0
  828. package/components/SVGIcons/IconPosFilled.d.ts +4 -0
  829. package/components/SVGIcons/IconPosFilled.js +35 -0
  830. package/components/SVGIcons/IconProhibited.d.ts +4 -0
  831. package/components/SVGIcons/IconProhibited.js +33 -0
  832. package/components/SVGIcons/IconProhibitedFilled.d.ts +4 -0
  833. package/components/SVGIcons/IconProhibitedFilled.js +33 -0
  834. package/components/SVGIcons/IconProjectProduct.d.ts +4 -0
  835. package/components/SVGIcons/IconProjectProduct.js +30 -0
  836. package/components/SVGIcons/IconQuestion.d.ts +4 -0
  837. package/components/SVGIcons/IconQuestion.js +33 -0
  838. package/components/SVGIcons/IconQuestionFilled.d.ts +4 -0
  839. package/components/SVGIcons/IconQuestionFilled.js +33 -0
  840. package/components/SVGIcons/IconRedo.d.ts +4 -0
  841. package/components/SVGIcons/IconRedo.js +33 -0
  842. package/components/SVGIcons/IconRedoFilled.d.ts +4 -0
  843. package/components/SVGIcons/IconRedoFilled.js +33 -0
  844. package/components/SVGIcons/IconRu.d.ts +4 -0
  845. package/components/SVGIcons/IconRu.js +62 -0
  846. package/components/SVGIcons/IconRub.d.ts +4 -0
  847. package/components/SVGIcons/IconRub.js +30 -0
  848. package/components/SVGIcons/IconRubFilled.d.ts +4 -0
  849. package/components/SVGIcons/IconRubFilled.js +30 -0
  850. package/components/SVGIcons/IconSave.d.ts +4 -0
  851. package/components/SVGIcons/IconSave.js +33 -0
  852. package/components/SVGIcons/IconSaveFilled.d.ts +4 -0
  853. package/components/SVGIcons/IconSaveFilled.js +33 -0
  854. package/components/SVGIcons/IconSavings.d.ts +4 -0
  855. package/components/SVGIcons/IconSavings.js +33 -0
  856. package/components/SVGIcons/IconSavingsFilled.d.ts +4 -0
  857. package/components/SVGIcons/IconSavingsFilled.js +33 -0
  858. package/components/SVGIcons/IconSearch.d.ts +4 -0
  859. package/components/SVGIcons/IconSearch.js +33 -0
  860. package/components/SVGIcons/IconSearchFilled.d.ts +4 -0
  861. package/components/SVGIcons/IconSearchFilled.js +33 -0
  862. package/components/SVGIcons/IconSelectAllOff.d.ts +4 -0
  863. package/components/SVGIcons/IconSelectAllOff.js +33 -0
  864. package/components/SVGIcons/IconSelectAllOffFilled.d.ts +4 -0
  865. package/components/SVGIcons/IconSelectAllOffFilled.js +33 -0
  866. package/components/SVGIcons/IconSelectAllOn.d.ts +4 -0
  867. package/components/SVGIcons/IconSelectAllOn.js +33 -0
  868. package/components/SVGIcons/IconSelectAllOnFilled.d.ts +4 -0
  869. package/components/SVGIcons/IconSelectAllOnFilled.js +33 -0
  870. package/components/SVGIcons/IconSend.d.ts +4 -0
  871. package/components/SVGIcons/IconSend.js +33 -0
  872. package/components/SVGIcons/IconSendFilled.d.ts +4 -0
  873. package/components/SVGIcons/IconSendFilled.js +33 -0
  874. package/components/SVGIcons/IconSettings.d.ts +4 -0
  875. package/components/SVGIcons/IconSettings.js +30 -0
  876. package/components/SVGIcons/IconSettingsFilled.d.ts +4 -0
  877. package/components/SVGIcons/IconSettingsFilled.js +33 -0
  878. package/components/SVGIcons/IconShare.d.ts +4 -0
  879. package/components/SVGIcons/IconShare.js +33 -0
  880. package/components/SVGIcons/IconShareAndroid.d.ts +4 -0
  881. package/components/SVGIcons/IconShareAndroid.js +33 -0
  882. package/components/SVGIcons/IconShareAndroidFilled.d.ts +4 -0
  883. package/components/SVGIcons/IconShareAndroidFilled.js +33 -0
  884. package/components/SVGIcons/IconShareFilled.d.ts +4 -0
  885. package/components/SVGIcons/IconShareFilled.js +33 -0
  886. package/components/SVGIcons/IconShower.d.ts +4 -0
  887. package/components/SVGIcons/IconShower.js +30 -0
  888. package/components/SVGIcons/IconSignOut.d.ts +4 -0
  889. package/components/SVGIcons/IconSignOut.js +33 -0
  890. package/components/SVGIcons/IconSignOutFilled.d.ts +4 -0
  891. package/components/SVGIcons/IconSignOutFilled.js +33 -0
  892. package/components/SVGIcons/IconSpinner.d.ts +4 -0
  893. package/components/SVGIcons/IconSpinner.js +33 -0
  894. package/components/SVGIcons/IconSpinnerFilled.d.ts +4 -0
  895. package/components/SVGIcons/IconSpinnerFilled.js +33 -0
  896. package/components/SVGIcons/IconStar.d.ts +4 -0
  897. package/components/SVGIcons/IconStar.js +30 -0
  898. package/components/SVGIcons/IconStarFilled.d.ts +4 -0
  899. package/components/SVGIcons/IconStarFilled.js +30 -0
  900. package/components/SVGIcons/IconStatus.d.ts +4 -0
  901. package/components/SVGIcons/IconStatus.js +33 -0
  902. package/components/SVGIcons/IconStatusFilled.d.ts +4 -0
  903. package/components/SVGIcons/IconStatusFilled.js +33 -0
  904. package/components/SVGIcons/IconSubtract.d.ts +4 -0
  905. package/components/SVGIcons/IconSubtract.js +33 -0
  906. package/components/SVGIcons/IconSubtractCircle.d.ts +4 -0
  907. package/components/SVGIcons/IconSubtractCircle.js +33 -0
  908. package/components/SVGIcons/IconSubtractCircleFilled.d.ts +4 -0
  909. package/components/SVGIcons/IconSubtractCircleFilled.js +33 -0
  910. package/components/SVGIcons/IconSubtractFilled.d.ts +4 -0
  911. package/components/SVGIcons/IconSubtractFilled.js +33 -0
  912. package/components/SVGIcons/IconTableCellEdit.d.ts +4 -0
  913. package/components/SVGIcons/IconTableCellEdit.js +37 -0
  914. package/components/SVGIcons/IconTableCellEditFilled.d.ts +4 -0
  915. package/components/SVGIcons/IconTableCellEditFilled.js +43 -0
  916. package/components/SVGIcons/IconTelegram.d.ts +4 -0
  917. package/components/SVGIcons/IconTelegram.js +42 -0
  918. package/components/SVGIcons/IconTextBulletListSquarePerson.d.ts +4 -0
  919. package/components/SVGIcons/IconTextBulletListSquarePerson.js +30 -0
  920. package/components/SVGIcons/IconTextBulletListSquarePersonFilled.d.ts +4 -0
  921. package/components/SVGIcons/IconTextBulletListSquarePersonFilled.js +30 -0
  922. package/components/SVGIcons/IconTextboxSettings.d.ts +4 -0
  923. package/components/SVGIcons/IconTextboxSettings.js +30 -0
  924. package/components/SVGIcons/IconTextboxSettingsFilled.d.ts +4 -0
  925. package/components/SVGIcons/IconTextboxSettingsFilled.js +30 -0
  926. package/components/SVGIcons/IconTimer.d.ts +4 -0
  927. package/components/SVGIcons/IconTimer.js +33 -0
  928. package/components/SVGIcons/IconTimerFilled.d.ts +4 -0
  929. package/components/SVGIcons/IconTimerFilled.js +33 -0
  930. package/components/SVGIcons/IconTin.d.ts +4 -0
  931. package/components/SVGIcons/IconTin.js +39 -0
  932. package/components/SVGIcons/IconTinFilled.d.ts +4 -0
  933. package/components/SVGIcons/IconTinFilled.js +42 -0
  934. package/components/SVGIcons/IconTv.d.ts +4 -0
  935. package/components/SVGIcons/IconTv.js +30 -0
  936. package/components/SVGIcons/IconTvFilled.d.ts +4 -0
  937. package/components/SVGIcons/IconTvFilled.js +30 -0
  938. package/components/SVGIcons/IconTwitter.d.ts +4 -0
  939. package/components/SVGIcons/IconTwitter.js +33 -0
  940. package/components/SVGIcons/IconUndo.d.ts +4 -0
  941. package/components/SVGIcons/IconUndo.js +33 -0
  942. package/components/SVGIcons/IconUndoFilled.d.ts +4 -0
  943. package/components/SVGIcons/IconUndoFilled.js +33 -0
  944. package/components/SVGIcons/IconUnitsEmployee.d.ts +4 -0
  945. package/components/SVGIcons/IconUnitsEmployee.js +30 -0
  946. package/components/SVGIcons/IconUsd.d.ts +4 -0
  947. package/components/SVGIcons/IconUsd.js +30 -0
  948. package/components/SVGIcons/IconUsdFilled.d.ts +4 -0
  949. package/components/SVGIcons/IconUsdFilled.js +30 -0
  950. package/components/SVGIcons/IconVehicleTruckProfile.d.ts +4 -0
  951. package/components/SVGIcons/IconVehicleTruckProfile.js +30 -0
  952. package/components/SVGIcons/IconVehicleTruckProfileFilled.d.ts +4 -0
  953. package/components/SVGIcons/IconVehicleTruckProfileFilled.js +30 -0
  954. package/components/SVGIcons/IconVideo.d.ts +4 -0
  955. package/components/SVGIcons/IconVideo.js +30 -0
  956. package/components/SVGIcons/IconVideoFilled.d.ts +4 -0
  957. package/components/SVGIcons/IconVideoFilled.js +30 -0
  958. package/components/SVGIcons/IconWallet.d.ts +4 -0
  959. package/components/SVGIcons/IconWallet.js +33 -0
  960. package/components/SVGIcons/IconWalletFilled.d.ts +4 -0
  961. package/components/SVGIcons/IconWalletFilled.js +33 -0
  962. package/components/SVGIcons/IconWarning.d.ts +4 -0
  963. package/components/SVGIcons/IconWarning.js +30 -0
  964. package/components/SVGIcons/IconWarningFilled.d.ts +4 -0
  965. package/components/SVGIcons/IconWarningFilled.js +30 -0
  966. package/components/SVGIcons/IconWrenchScrewdriver.d.ts +4 -0
  967. package/components/SVGIcons/IconWrenchScrewdriver.js +30 -0
  968. package/components/SVGIcons/IconWrenchScrewdriverFilled.d.ts +4 -0
  969. package/components/SVGIcons/IconWrenchScrewdriverFilled.js +30 -0
  970. package/components/SVGIcons/IconYoutube.d.ts +4 -0
  971. package/components/SVGIcons/IconYoutube.js +33 -0
  972. package/components/SVGIcons/IconZoomIn.d.ts +4 -0
  973. package/components/SVGIcons/IconZoomIn.js +30 -0
  974. package/components/SVGIcons/IconZoomInFilled.d.ts +4 -0
  975. package/components/SVGIcons/IconZoomInFilled.js +30 -0
  976. package/components/SVGIcons/IconZoomOut.d.ts +4 -0
  977. package/components/SVGIcons/IconZoomOut.js +30 -0
  978. package/components/SVGIcons/IconZoomOutFilled.d.ts +4 -0
  979. package/components/SVGIcons/IconZoomOutFilled.js +30 -0
  980. package/components/SVGIcons/index.d.ts +338 -0
  981. package/components/SVGIcons/index.js +342 -0
  982. package/components/SVGIcons/types.d.ts +18 -0
  983. package/components/SVGIcons/types.js +1 -0
  984. package/components/Select/ButtonSelect/ButtonSelect.d.ts +3 -0
  985. package/components/Select/ButtonSelect/ButtonSelect.js +180 -0
  986. package/components/Select/FilterSelect/FilterDropdown.d.ts +3 -0
  987. package/components/Select/FilterSelect/FilterDropdown.js +80 -0
  988. package/components/Select/FilterSelect/FilterGroupDropdown.d.ts +3 -0
  989. package/components/Select/FilterSelect/FilterGroupDropdown.js +65 -0
  990. package/components/Select/FilterSelect/FilterSelect.d.ts +3 -0
  991. package/components/Select/FilterSelect/FilterSelect.js +195 -0
  992. package/components/Select/MultiSelect/MultiBase/MultiBase.d.ts +3 -0
  993. package/components/Select/MultiSelect/MultiBase/MultiBase.js +207 -0
  994. package/components/Select/MultiSelect/MultiSelect.d.ts +3 -0
  995. package/components/Select/MultiSelect/MultiSelect.js +227 -0
  996. package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.d.ts +3 -0
  997. package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +256 -0
  998. package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.d.ts +3 -0
  999. package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +244 -0
  1000. package/components/Select/MultiSelect/OptionsWrapper.d.ts +17 -0
  1001. package/components/Select/MultiSelect/OptionsWrapper.js +176 -0
  1002. package/components/Select/NestedSelect/NestedSelect.d.ts +3 -0
  1003. package/components/Select/NestedSelect/NestedSelect.js +190 -0
  1004. package/components/Select/ProfileDropdown/index.d.ts +4 -0
  1005. package/components/Select/ProfileDropdown/index.js +83 -0
  1006. package/components/Select/Select/Select.d.ts +3 -0
  1007. package/components/Select/Select/Select.js +331 -0
  1008. package/components/Select/SharedComponents/Actions.d.ts +8 -0
  1009. package/components/Select/SharedComponents/Actions.js +100 -0
  1010. package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.d.ts +15 -0
  1011. package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +45 -0
  1012. package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.d.ts +3 -0
  1013. package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +102 -0
  1014. package/components/Select/SharedComponents/ContentTop.d.ts +19 -0
  1015. package/components/Select/SharedComponents/ContentTop.js +158 -0
  1016. package/components/Select/SharedComponents/Footer.d.ts +3 -0
  1017. package/components/Select/SharedComponents/Footer.js +67 -0
  1018. package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.d.ts +3 -0
  1019. package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +154 -0
  1020. package/components/Select/SharedComponents/Loading.d.ts +6 -0
  1021. package/components/Select/SharedComponents/Loading.js +17 -0
  1022. package/components/Select/SharedComponents/index.d.ts +6 -0
  1023. package/components/Select/SharedComponents/index.js +79 -0
  1024. package/components/Select/constants.d.ts +7 -0
  1025. package/components/Select/constants.js +9 -0
  1026. package/components/Select/index.d.ts +5 -0
  1027. package/components/Select/index.js +96 -0
  1028. package/components/Select/types.d.ts +240 -0
  1029. package/components/Select/types.js +1 -0
  1030. package/components/SideNavigation/Block.d.ts +3 -0
  1031. package/components/SideNavigation/Block.js +28 -0
  1032. package/components/SideNavigation/NavigationItem/index.d.ts +3 -0
  1033. package/components/SideNavigation/NavigationItem/index.js +73 -0
  1034. package/components/SideNavigation/NavigationItem/types.d.ts +25 -0
  1035. package/components/SideNavigation/NavigationItem/types.js +11 -0
  1036. package/components/SideNavigation/SideNavigation.d.ts +3 -0
  1037. package/components/SideNavigation/SideNavigation.js +57 -0
  1038. package/components/SideNavigation/index.d.ts +2 -0
  1039. package/components/SideNavigation/index.js +37 -0
  1040. package/components/SideNavigation/types.d.ts +18 -0
  1041. package/components/SideNavigation/types.js +1 -0
  1042. package/components/SideSheet/Footer/Footer.d.ts +16 -0
  1043. package/components/SideSheet/Footer/Footer.js +79 -0
  1044. package/components/SideSheet/SideSheet.d.ts +3 -0
  1045. package/components/SideSheet/SideSheet.js +193 -0
  1046. package/components/SideSheet/index.d.ts +1 -0
  1047. package/components/SideSheet/index.js +38 -0
  1048. package/components/SideSheet/types.d.ts +34 -0
  1049. package/components/SideSheet/types.js +1 -0
  1050. package/components/Snackbar/Snackbar.d.ts +5 -0
  1051. package/components/Snackbar/Snackbar.js +105 -0
  1052. package/components/Snackbar/consts.d.ts +8 -0
  1053. package/components/Snackbar/consts.js +15 -0
  1054. package/components/Snackbar/index.d.ts +1 -0
  1055. package/components/Snackbar/index.js +33 -0
  1056. package/components/Snackbar/types.d.ts +15 -0
  1057. package/components/Snackbar/types.js +1 -0
  1058. package/components/Status/Status.d.ts +3 -0
  1059. package/components/Status/Status.js +48 -0
  1060. package/components/Status/index.d.ts +1 -0
  1061. package/components/Status/index.js +9 -0
  1062. package/components/Status/types.d.ts +14 -0
  1063. package/components/Status/types.js +1 -0
  1064. package/components/Stepper/Stepper.d.ts +3 -0
  1065. package/components/Stepper/Stepper.js +45 -0
  1066. package/components/Stepper/index.d.ts +1 -0
  1067. package/components/Stepper/index.js +3 -0
  1068. package/components/Stepper/types.d.ts +16 -0
  1069. package/components/Stepper/types.js +1 -0
  1070. package/components/Switcher/Switcher.d.ts +3 -0
  1071. package/components/Switcher/Switcher.js +91 -0
  1072. package/components/Switcher/index.d.ts +1 -0
  1073. package/components/Switcher/index.js +29 -0
  1074. package/components/Switcher/types.d.ts +12 -0
  1075. package/components/Switcher/types.js +1 -0
  1076. package/components/Tab/Tab.d.ts +3 -0
  1077. package/components/Tab/Tab.js +45 -0
  1078. package/components/Tab/TabItem.d.ts +3 -0
  1079. package/components/Tab/TabItem.js +58 -0
  1080. package/components/Tab/consts.d.ts +7 -0
  1081. package/components/Tab/consts.js +12 -0
  1082. package/components/Tab/index.d.ts +1 -0
  1083. package/components/Tab/index.js +12 -0
  1084. package/components/Tab/types.d.ts +51 -0
  1085. package/components/Tab/types.js +1 -0
  1086. package/components/Table/Header.d.ts +16 -0
  1087. package/components/Table/Header.js +100 -0
  1088. package/components/Table/IndeterminateCheckbox.d.ts +12 -0
  1089. package/components/Table/IndeterminateCheckbox.js +53 -0
  1090. package/components/Table/Row.d.ts +10 -0
  1091. package/components/Table/Row.js +69 -0
  1092. package/components/Table/Table.d.ts +3 -0
  1093. package/components/Table/Table.js +149 -0
  1094. package/components/Table/index.d.ts +1 -0
  1095. package/components/Table/index.js +42 -0
  1096. package/components/Table/types.d.ts +44 -0
  1097. package/components/Table/types.js +1 -0
  1098. package/components/Table/utils.d.ts +5 -0
  1099. package/components/Table/utils.js +53 -0
  1100. package/components/Text/Text.d.ts +3 -0
  1101. package/components/Text/Text.js +36 -0
  1102. package/components/Text/index.d.ts +1 -0
  1103. package/components/Text/index.js +5 -0
  1104. package/components/Text/types.d.ts +19 -0
  1105. package/components/Text/types.js +1 -0
  1106. package/components/Textarea/Textarea.d.ts +3 -0
  1107. package/components/Textarea/Textarea.js +115 -0
  1108. package/components/Textarea/index.d.ts +1 -0
  1109. package/components/Textarea/index.js +31 -0
  1110. package/components/Textarea/types.d.ts +18 -0
  1111. package/components/Textarea/types.js +1 -0
  1112. package/components/Tooltip/Tooltip.d.ts +3 -0
  1113. package/components/Tooltip/Tooltip.js +103 -0
  1114. package/components/Tooltip/index.d.ts +1 -0
  1115. package/components/Tooltip/index.js +16 -0
  1116. package/components/Tooltip/types.d.ts +21 -0
  1117. package/components/Tooltip/types.js +13 -0
  1118. package/consts/index.d.ts +23 -0
  1119. package/consts/index.js +62 -0
  1120. package/context/FormContextProvider.d.ts +5 -0
  1121. package/context/FormContextProvider.js +12 -0
  1122. package/context/index.d.ts +2 -0
  1123. package/context/index.js +5 -0
  1124. package/context/types.d.ts +21 -0
  1125. package/context/types.js +12 -0
  1126. package/defineProperty-7db32082.js +28 -0
  1127. package/extends-e8ef956f.js +11 -0
  1128. package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.d.ts +6 -0
  1129. package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +15 -0
  1130. package/helperComponents/AnimatePresenceWrapper/index.d.ts +1 -0
  1131. package/helperComponents/AnimatePresenceWrapper/index.js +3 -0
  1132. package/helperComponents/CodeBlock/CodeBlock.d.ts +8 -0
  1133. package/helperComponents/CodeBlock/CodeBlock.js +178 -0
  1134. package/helperComponents/CodeBlock/index.d.ts +2 -0
  1135. package/helperComponents/CodeBlock/index.js +3 -0
  1136. package/helperComponents/ErrorMessage/ErrorMessage.d.ts +3 -0
  1137. package/helperComponents/ErrorMessage/ErrorMessage.js +27 -0
  1138. package/helperComponents/ErrorMessage/index.d.ts +1 -0
  1139. package/helperComponents/ErrorMessage/index.js +8 -0
  1140. package/helperComponents/ErrorMessage/types.d.ts +7 -0
  1141. package/helperComponents/ErrorMessage/types.js +1 -0
  1142. package/helperComponents/IconDynamicComponent/IconDynamicComponent.d.ts +9 -0
  1143. package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +26 -0
  1144. package/helperComponents/IconDynamicComponent/constants.d.ts +3 -0
  1145. package/helperComponents/IconDynamicComponent/constants.js +34 -0
  1146. package/helperComponents/IconDynamicComponent/index.d.ts +1 -0
  1147. package/helperComponents/IconDynamicComponent/index.js +3 -0
  1148. package/helperComponents/Label/Label.d.ts +3 -0
  1149. package/helperComponents/Label/Label.js +29 -0
  1150. package/helperComponents/Label/index.d.ts +1 -0
  1151. package/helperComponents/Label/index.js +6 -0
  1152. package/helperComponents/Label/types.d.ts +11 -0
  1153. package/helperComponents/Label/types.js +1 -0
  1154. package/helperComponents/Loader/Loader.d.ts +3 -0
  1155. package/helperComponents/Loader/Loader.js +15 -0
  1156. package/helperComponents/Loader/index.d.ts +1 -0
  1157. package/helperComponents/Loader/index.js +2 -0
  1158. package/helperComponents/Loader/types.d.ts +4 -0
  1159. package/helperComponents/Loader/types.js +1 -0
  1160. package/helperComponents/OptionItem/OptionItem.d.ts +3 -0
  1161. package/helperComponents/OptionItem/OptionItem.js +119 -0
  1162. package/helperComponents/OptionItem/index.d.ts +1 -0
  1163. package/helperComponents/OptionItem/index.js +46 -0
  1164. package/helperComponents/OptionItem/types.d.ts +17 -0
  1165. package/helperComponents/OptionItem/types.js +1 -0
  1166. package/helperComponents/index.d.ts +6 -0
  1167. package/helperComponents/index.js +47 -0
  1168. package/hooks/index.d.ts +12 -0
  1169. package/hooks/index.js +19 -0
  1170. package/hooks/useChangePositionsOnScroll.d.ts +6 -0
  1171. package/hooks/useChangePositionsOnScroll.js +42 -0
  1172. package/hooks/useDispatchEventOnScroll.d.ts +1 -0
  1173. package/hooks/useDispatchEventOnScroll.js +12 -0
  1174. package/hooks/useFieldArray.d.ts +1 -0
  1175. package/hooks/useFieldArray.js +1 -0
  1176. package/hooks/useFormContext.d.ts +9 -0
  1177. package/hooks/useFormContext.js +10 -0
  1178. package/hooks/useFormProps.d.ts +2 -0
  1179. package/hooks/useFormProps.js +10 -0
  1180. package/hooks/useGetElemPositions.d.ts +10 -0
  1181. package/hooks/useGetElemPositions.js +19 -0
  1182. package/hooks/useGetElemSizes.d.ts +13 -0
  1183. package/hooks/useGetElemSizes.js +16 -0
  1184. package/hooks/useGetHasBottomSpace.d.ts +11 -0
  1185. package/hooks/useGetHasBottomSpace.js +26 -0
  1186. package/hooks/useGetTooltipPosition.d.ts +1 -0
  1187. package/hooks/useGetTooltipPosition.js +85 -0
  1188. package/hooks/useGetTooltipStyles.d.ts +14 -0
  1189. package/hooks/useGetTooltipStyles.js +89 -0
  1190. package/hooks/useHideBodyScroll.d.ts +1 -0
  1191. package/hooks/useHideBodyScroll.js +35 -0
  1192. package/hooks/useHideOnScroll.d.ts +1 -0
  1193. package/hooks/useHideOnScroll.js +24 -0
  1194. package/hooks/useOnOutsideClick.d.ts +3 -0
  1195. package/hooks/useOnOutsideClick.js +65 -0
  1196. package/hooks/useScreenSize.d.ts +3 -0
  1197. package/hooks/useScreenSize.js +36 -0
  1198. package/index.d.ts +54 -0
  1199. package/index.js +495 -0
  1200. package/objectWithoutProperties-fcd64cc7.js +23 -0
  1201. package/package.json +39 -0
  1202. package/slicedToArray-0c706912.js +55 -0
  1203. package/stories/AdvancedTable.stories.d.ts +8 -0
  1204. package/stories/Alert.stories.d.ts +22 -0
  1205. package/stories/Avatar.stories.d.ts +29 -0
  1206. package/stories/Badge.stories.d.ts +22 -0
  1207. package/stories/Breadcrumb.stories.d.ts +8 -0
  1208. package/stories/Button.stories.d.ts +22 -0
  1209. package/stories/ButtonIcon.stories.d.ts +16 -0
  1210. package/stories/CardBody.stories.d.ts +8 -0
  1211. package/stories/CardSelect.stories.d.ts +24 -0
  1212. package/stories/Cards.stories.d.ts +8 -0
  1213. package/stories/Checkbox.stories.d.ts +9 -0
  1214. package/stories/Chips.stories.d.ts +28 -0
  1215. package/stories/Collapse.stories.d.ts +12 -0
  1216. package/stories/Container.stories.d.ts +8 -0
  1217. package/stories/Copy.stories.d.ts +9 -0
  1218. package/stories/Counter.stories.d.ts +8 -0
  1219. package/stories/DatePicker.stories.d.ts +17 -0
  1220. package/stories/Divider.stories.d.ts +4 -0
  1221. package/stories/Empty.stories.d.ts +16 -0
  1222. package/stories/FileUpload.stories.d.ts +8 -0
  1223. package/stories/Form.stories.d.ts +7 -0
  1224. package/stories/FramedIcon.stories.d.ts +16 -0
  1225. package/stories/Heading.stories.d.ts +36 -0
  1226. package/stories/Image.stories.d.ts +4 -0
  1227. package/stories/Input.stories.d.ts +18 -0
  1228. package/stories/ItemSelect.stories.d.ts +9 -0
  1229. package/stories/Link.stories.d.ts +22 -0
  1230. package/stories/Menu.stories.d.ts +17 -0
  1231. package/stories/Modal.stories.d.ts +23 -0
  1232. package/stories/More.stories.d.ts +7 -0
  1233. package/stories/NavigationItem.stories.d.ts +13 -0
  1234. package/stories/OneTimePassword.stories.d.ts +34 -0
  1235. package/stories/Pagination.stories.d.ts +16 -0
  1236. package/stories/Popover.stories.d.ts +16 -0
  1237. package/stories/Progress.stories.d.ts +23 -0
  1238. package/stories/ProgressStep.stories.d.ts +28 -0
  1239. package/stories/Radio.stories.d.ts +10 -0
  1240. package/stories/SVGIcons.stories.d.ts +29 -0
  1241. package/stories/Select.stories.d.ts +21 -0
  1242. package/stories/SideNavigation.stories.d.ts +9 -0
  1243. package/stories/SideSheet.stories.d.ts +16 -0
  1244. package/stories/Snackbar.stories.d.ts +17 -0
  1245. package/stories/Status.stories.d.ts +22 -0
  1246. package/stories/Stepper.stories.d.ts +7 -0
  1247. package/stories/Switcher.stories.d.ts +16 -0
  1248. package/stories/Tab.stories.d.ts +28 -0
  1249. package/stories/Table.stories.d.ts +8 -0
  1250. package/stories/Text.stories.d.ts +42 -0
  1251. package/stories/Textarea.stories.d.ts +8 -0
  1252. package/stories/Tooltip.stories.d.ts +22 -0
  1253. package/toConsumableArray-e0031ed3.js +19 -0
  1254. package/typeof-ecd92d7f.js +11 -0
  1255. package/types.d.js +1 -0
  1256. package/utils/helpers.d.ts +15 -0
  1257. package/utils/helpers.js +86 -0
@@ -0,0 +1,1954 @@
1
+ import { _ as _slicedToArray } from '../../slicedToArray-0c706912.js';
2
+ import { useState, useEffect } from 'react';
3
+ import { registerLocale } from 'react-datepicker';
4
+ import dayjs, { locale as locale$3 } from 'dayjs';
5
+ import { _ as _typeof$1 } from '../../typeof-ecd92d7f.js';
6
+
7
+ function asyncGeneratorStep(n, t, e, r, o, a, c) {
8
+ try {
9
+ var i = n[a](c),
10
+ u = i.value;
11
+ } catch (n) {
12
+ return void e(n);
13
+ }
14
+ i.done ? t(u) : Promise.resolve(u).then(r, o);
15
+ }
16
+ function _asyncToGenerator(n) {
17
+ return function () {
18
+ var t = this,
19
+ e = arguments;
20
+ return new Promise(function (r, o) {
21
+ var a = n.apply(t, e);
22
+ function _next(n) {
23
+ asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
24
+ }
25
+ function _throw(n) {
26
+ asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
27
+ }
28
+ _next(void 0);
29
+ });
30
+ };
31
+ }
32
+
33
+ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
34
+
35
+ var regeneratorRuntime$1 = {exports: {}};
36
+
37
+ var _typeof = {exports: {}};
38
+
39
+ (function (module) {
40
+ function _typeof(o) {
41
+ "@babel/helpers - typeof";
42
+
43
+ return module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
44
+ return typeof o;
45
+ } : function (o) {
46
+ return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
47
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports, _typeof(o);
48
+ }
49
+ module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
50
+ } (_typeof));
51
+
52
+ (function (module) {
53
+ var _typeof$1 = _typeof.exports["default"];
54
+ function _regeneratorRuntime() {
55
+ module.exports = _regeneratorRuntime = function _regeneratorRuntime() {
56
+ return e;
57
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports;
58
+ var t,
59
+ e = {},
60
+ r = Object.prototype,
61
+ n = r.hasOwnProperty,
62
+ o = Object.defineProperty || function (t, e, r) {
63
+ t[e] = r.value;
64
+ },
65
+ i = "function" == typeof Symbol ? Symbol : {},
66
+ a = i.iterator || "@@iterator",
67
+ c = i.asyncIterator || "@@asyncIterator",
68
+ u = i.toStringTag || "@@toStringTag";
69
+ function define(t, e, r) {
70
+ return Object.defineProperty(t, e, {
71
+ value: r,
72
+ enumerable: !0,
73
+ configurable: !0,
74
+ writable: !0
75
+ }), t[e];
76
+ }
77
+ try {
78
+ define({}, "");
79
+ } catch (t) {
80
+ define = function define(t, e, r) {
81
+ return t[e] = r;
82
+ };
83
+ }
84
+ function wrap(t, e, r, n) {
85
+ var i = e && e.prototype instanceof Generator ? e : Generator,
86
+ a = Object.create(i.prototype),
87
+ c = new Context(n || []);
88
+ return o(a, "_invoke", {
89
+ value: makeInvokeMethod(t, r, c)
90
+ }), a;
91
+ }
92
+ function tryCatch(t, e, r) {
93
+ try {
94
+ return {
95
+ type: "normal",
96
+ arg: t.call(e, r)
97
+ };
98
+ } catch (t) {
99
+ return {
100
+ type: "throw",
101
+ arg: t
102
+ };
103
+ }
104
+ }
105
+ e.wrap = wrap;
106
+ var h = "suspendedStart",
107
+ l = "suspendedYield",
108
+ f = "executing",
109
+ s = "completed",
110
+ y = {};
111
+ function Generator() {}
112
+ function GeneratorFunction() {}
113
+ function GeneratorFunctionPrototype() {}
114
+ var p = {};
115
+ define(p, a, function () {
116
+ return this;
117
+ });
118
+ var d = Object.getPrototypeOf,
119
+ v = d && d(d(values([])));
120
+ v && v !== r && n.call(v, a) && (p = v);
121
+ var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
122
+ function defineIteratorMethods(t) {
123
+ ["next", "throw", "return"].forEach(function (e) {
124
+ define(t, e, function (t) {
125
+ return this._invoke(e, t);
126
+ });
127
+ });
128
+ }
129
+ function AsyncIterator(t, e) {
130
+ function invoke(r, o, i, a) {
131
+ var c = tryCatch(t[r], t, o);
132
+ if ("throw" !== c.type) {
133
+ var u = c.arg,
134
+ h = u.value;
135
+ return h && "object" == _typeof$1(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
136
+ invoke("next", t, i, a);
137
+ }, function (t) {
138
+ invoke("throw", t, i, a);
139
+ }) : e.resolve(h).then(function (t) {
140
+ u.value = t, i(u);
141
+ }, function (t) {
142
+ return invoke("throw", t, i, a);
143
+ });
144
+ }
145
+ a(c.arg);
146
+ }
147
+ var r;
148
+ o(this, "_invoke", {
149
+ value: function value(t, n) {
150
+ function callInvokeWithMethodAndArg() {
151
+ return new e(function (e, r) {
152
+ invoke(t, n, e, r);
153
+ });
154
+ }
155
+ return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
156
+ }
157
+ });
158
+ }
159
+ function makeInvokeMethod(e, r, n) {
160
+ var o = h;
161
+ return function (i, a) {
162
+ if (o === f) throw Error("Generator is already running");
163
+ if (o === s) {
164
+ if ("throw" === i) throw a;
165
+ return {
166
+ value: t,
167
+ done: !0
168
+ };
169
+ }
170
+ for (n.method = i, n.arg = a;;) {
171
+ var c = n.delegate;
172
+ if (c) {
173
+ var u = maybeInvokeDelegate(c, n);
174
+ if (u) {
175
+ if (u === y) continue;
176
+ return u;
177
+ }
178
+ }
179
+ if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
180
+ if (o === h) throw o = s, n.arg;
181
+ n.dispatchException(n.arg);
182
+ } else "return" === n.method && n.abrupt("return", n.arg);
183
+ o = f;
184
+ var p = tryCatch(e, r, n);
185
+ if ("normal" === p.type) {
186
+ if (o = n.done ? s : l, p.arg === y) continue;
187
+ return {
188
+ value: p.arg,
189
+ done: n.done
190
+ };
191
+ }
192
+ "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
193
+ }
194
+ };
195
+ }
196
+ function maybeInvokeDelegate(e, r) {
197
+ var n = r.method,
198
+ o = e.iterator[n];
199
+ if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
200
+ var i = tryCatch(o, e.iterator, r.arg);
201
+ if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
202
+ var a = i.arg;
203
+ return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
204
+ }
205
+ function pushTryEntry(t) {
206
+ var e = {
207
+ tryLoc: t[0]
208
+ };
209
+ 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
210
+ }
211
+ function resetTryEntry(t) {
212
+ var e = t.completion || {};
213
+ e.type = "normal", delete e.arg, t.completion = e;
214
+ }
215
+ function Context(t) {
216
+ this.tryEntries = [{
217
+ tryLoc: "root"
218
+ }], t.forEach(pushTryEntry, this), this.reset(!0);
219
+ }
220
+ function values(e) {
221
+ if (e || "" === e) {
222
+ var r = e[a];
223
+ if (r) return r.call(e);
224
+ if ("function" == typeof e.next) return e;
225
+ if (!isNaN(e.length)) {
226
+ var o = -1,
227
+ i = function next() {
228
+ for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
229
+ return next.value = t, next.done = !0, next;
230
+ };
231
+ return i.next = i;
232
+ }
233
+ }
234
+ throw new TypeError(_typeof$1(e) + " is not iterable");
235
+ }
236
+ return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
237
+ value: GeneratorFunctionPrototype,
238
+ configurable: !0
239
+ }), o(GeneratorFunctionPrototype, "constructor", {
240
+ value: GeneratorFunction,
241
+ configurable: !0
242
+ }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
243
+ var e = "function" == typeof t && t.constructor;
244
+ return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
245
+ }, e.mark = function (t) {
246
+ return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
247
+ }, e.awrap = function (t) {
248
+ return {
249
+ __await: t
250
+ };
251
+ }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
252
+ return this;
253
+ }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
254
+ void 0 === i && (i = Promise);
255
+ var a = new AsyncIterator(wrap(t, r, n, o), i);
256
+ return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
257
+ return t.done ? t.value : a.next();
258
+ });
259
+ }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
260
+ return this;
261
+ }), define(g, "toString", function () {
262
+ return "[object Generator]";
263
+ }), e.keys = function (t) {
264
+ var e = Object(t),
265
+ r = [];
266
+ for (var n in e) r.push(n);
267
+ return r.reverse(), function next() {
268
+ for (; r.length;) {
269
+ var t = r.pop();
270
+ if (t in e) return next.value = t, next.done = !1, next;
271
+ }
272
+ return next.done = !0, next;
273
+ };
274
+ }, e.values = values, Context.prototype = {
275
+ constructor: Context,
276
+ reset: function reset(e) {
277
+ if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
278
+ },
279
+ stop: function stop() {
280
+ this.done = !0;
281
+ var t = this.tryEntries[0].completion;
282
+ if ("throw" === t.type) throw t.arg;
283
+ return this.rval;
284
+ },
285
+ dispatchException: function dispatchException(e) {
286
+ if (this.done) throw e;
287
+ var r = this;
288
+ function handle(n, o) {
289
+ return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
290
+ }
291
+ for (var o = this.tryEntries.length - 1; o >= 0; --o) {
292
+ var i = this.tryEntries[o],
293
+ a = i.completion;
294
+ if ("root" === i.tryLoc) return handle("end");
295
+ if (i.tryLoc <= this.prev) {
296
+ var c = n.call(i, "catchLoc"),
297
+ u = n.call(i, "finallyLoc");
298
+ if (c && u) {
299
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
300
+ if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
301
+ } else if (c) {
302
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
303
+ } else {
304
+ if (!u) throw Error("try statement without catch or finally");
305
+ if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
306
+ }
307
+ }
308
+ }
309
+ },
310
+ abrupt: function abrupt(t, e) {
311
+ for (var r = this.tryEntries.length - 1; r >= 0; --r) {
312
+ var o = this.tryEntries[r];
313
+ if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
314
+ var i = o;
315
+ break;
316
+ }
317
+ }
318
+ i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
319
+ var a = i ? i.completion : {};
320
+ return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
321
+ },
322
+ complete: function complete(t, e) {
323
+ if ("throw" === t.type) throw t.arg;
324
+ return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
325
+ },
326
+ finish: function finish(t) {
327
+ for (var e = this.tryEntries.length - 1; e >= 0; --e) {
328
+ var r = this.tryEntries[e];
329
+ if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
330
+ }
331
+ },
332
+ "catch": function _catch(t) {
333
+ for (var e = this.tryEntries.length - 1; e >= 0; --e) {
334
+ var r = this.tryEntries[e];
335
+ if (r.tryLoc === t) {
336
+ var n = r.completion;
337
+ if ("throw" === n.type) {
338
+ var o = n.arg;
339
+ resetTryEntry(r);
340
+ }
341
+ return o;
342
+ }
343
+ }
344
+ throw Error("illegal catch attempt");
345
+ },
346
+ delegateYield: function delegateYield(e, r, n) {
347
+ return this.delegate = {
348
+ iterator: values(e),
349
+ resultName: r,
350
+ nextLoc: n
351
+ }, "next" === this.method && (this.arg = t), y;
352
+ }
353
+ }, e;
354
+ }
355
+ module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports;
356
+ } (regeneratorRuntime$1));
357
+
358
+ // TODO(Babel 8): Remove this file.
359
+
360
+ var runtime = regeneratorRuntime$1.exports();
361
+ var regenerator = runtime;
362
+
363
+ // Copied from https://github.com/facebook/regenerator/blob/main/packages/runtime/runtime.js#L736=
364
+ try {
365
+ regeneratorRuntime = runtime;
366
+ } catch (accidentalStrictMode) {
367
+ if (typeof globalThis === "object") {
368
+ globalThis.regeneratorRuntime = runtime;
369
+ } else {
370
+ Function("r", "regeneratorRuntime = r")(runtime);
371
+ }
372
+ }
373
+
374
+ var formatDistanceLocale$2 = {
375
+ lessThanXSeconds: {
376
+ one: 'ավելի քիչ քան 1 վայրկյան',
377
+ other: 'ավելի քիչ քան {{count}} վայրկյան'
378
+ },
379
+ xSeconds: {
380
+ one: '1 վայրկյան',
381
+ other: '{{count}} վայրկյան'
382
+ },
383
+ halfAMinute: 'կես րոպե',
384
+ lessThanXMinutes: {
385
+ one: 'ավելի քիչ քան 1 րոպե',
386
+ other: 'ավելի քիչ քան {{count}} րոպե'
387
+ },
388
+ xMinutes: {
389
+ one: '1 րոպե',
390
+ other: '{{count}} րոպե'
391
+ },
392
+ aboutXHours: {
393
+ one: 'մոտ 1 ժամ',
394
+ other: 'մոտ {{count}} ժամ'
395
+ },
396
+ xHours: {
397
+ one: '1 ժամ',
398
+ other: '{{count}} ժամ'
399
+ },
400
+ xDays: {
401
+ one: '1 օր',
402
+ other: '{{count}} օր'
403
+ },
404
+ aboutXWeeks: {
405
+ one: 'մոտ 1 շաբաթ',
406
+ other: 'մոտ {{count}} շաբաթ'
407
+ },
408
+ xWeeks: {
409
+ one: '1 շաբաթ',
410
+ other: '{{count}} շաբաթ'
411
+ },
412
+ aboutXMonths: {
413
+ one: 'մոտ 1 ամիս',
414
+ other: 'մոտ {{count}} ամիս'
415
+ },
416
+ xMonths: {
417
+ one: '1 ամիս',
418
+ other: '{{count}} ամիս'
419
+ },
420
+ aboutXYears: {
421
+ one: 'մոտ 1 տարի',
422
+ other: 'մոտ {{count}} տարի'
423
+ },
424
+ xYears: {
425
+ one: '1 տարի',
426
+ other: '{{count}} տարի'
427
+ },
428
+ overXYears: {
429
+ one: 'ավելի քան 1 տարի',
430
+ other: 'ավելի քան {{count}} տարի'
431
+ },
432
+ almostXYears: {
433
+ one: 'համարյա 1 տարի',
434
+ other: 'համարյա {{count}} տարի'
435
+ }
436
+ };
437
+ var formatDistance$2 = function formatDistance(token, count, options) {
438
+ var result;
439
+ var tokenValue = formatDistanceLocale$2[token];
440
+ if (typeof tokenValue === 'string') {
441
+ result = tokenValue;
442
+ } else if (count === 1) {
443
+ result = tokenValue.one;
444
+ } else {
445
+ result = tokenValue.other.replace('{{count}}', String(count));
446
+ }
447
+ if (options !== null && options !== void 0 && options.addSuffix) {
448
+ if (options.comparison && options.comparison > 0) {
449
+ return result + ' հետո';
450
+ } else {
451
+ return result + ' առաջ';
452
+ }
453
+ }
454
+ return result;
455
+ };
456
+
457
+ function buildFormatLongFn(args) {
458
+ return function () {
459
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
460
+ // TODO: Remove String()
461
+ var width = options.width ? String(options.width) : args.defaultWidth;
462
+ var format = args.formats[width] || args.formats[args.defaultWidth];
463
+ return format;
464
+ };
465
+ }
466
+
467
+ var dateFormats$2 = {
468
+ full: 'd MMMM, y, EEEE',
469
+ long: 'd MMMM, y',
470
+ medium: 'd MMM, y',
471
+ short: 'dd.MM.yyyy'
472
+ };
473
+ var timeFormats$2 = {
474
+ full: 'HH:mm:ss zzzz',
475
+ long: 'HH:mm:ss z',
476
+ medium: 'HH:mm:ss',
477
+ short: 'HH:mm'
478
+ };
479
+ var dateTimeFormats$2 = {
480
+ full: "{{date}} 'ժ․'{{time}}",
481
+ long: "{{date}} 'ժ․'{{time}}",
482
+ medium: '{{date}}, {{time}}',
483
+ short: '{{date}}, {{time}}'
484
+ };
485
+ var formatLong$2 = {
486
+ date: buildFormatLongFn({
487
+ formats: dateFormats$2,
488
+ defaultWidth: 'full'
489
+ }),
490
+ time: buildFormatLongFn({
491
+ formats: timeFormats$2,
492
+ defaultWidth: 'full'
493
+ }),
494
+ dateTime: buildFormatLongFn({
495
+ formats: dateTimeFormats$2,
496
+ defaultWidth: 'full'
497
+ })
498
+ };
499
+
500
+ var formatRelativeLocale$2 = {
501
+ lastWeek: "'նախորդ' eeee p'֊ին'",
502
+ yesterday: "'երեկ' p'֊ին'",
503
+ today: "'այսօր' p'֊ին'",
504
+ tomorrow: "'վաղը' p'֊ին'",
505
+ nextWeek: "'հաջորդ' eeee p'֊ին'",
506
+ other: 'P'
507
+ };
508
+ var formatRelative$2 = function formatRelative(token, _date, _baseDate, _options) {
509
+ return formatRelativeLocale$2[token];
510
+ };
511
+
512
+ function buildLocalizeFn(args) {
513
+ return function (dirtyIndex, options) {
514
+ var context = options !== null && options !== void 0 && options.context ? String(options.context) : 'standalone';
515
+ var valuesArray;
516
+ if (context === 'formatting' && args.formattingValues) {
517
+ var defaultWidth = args.defaultFormattingWidth || args.defaultWidth;
518
+ var width = options !== null && options !== void 0 && options.width ? String(options.width) : defaultWidth;
519
+ valuesArray = args.formattingValues[width] || args.formattingValues[defaultWidth];
520
+ } else {
521
+ var _defaultWidth = args.defaultWidth;
522
+ var _width = options !== null && options !== void 0 && options.width ? String(options.width) : args.defaultWidth;
523
+ valuesArray = args.values[_width] || args.values[_defaultWidth];
524
+ }
525
+ var index = args.argumentCallback ? args.argumentCallback(dirtyIndex) : dirtyIndex;
526
+ // @ts-ignore: For some reason TypeScript just don't want to match it, no matter how hard we try. I challenge you to try to remove it!
527
+ return valuesArray[index];
528
+ };
529
+ }
530
+
531
+ var eraValues$2 = {
532
+ narrow: ['Ք', 'Մ'],
533
+ abbreviated: ['ՔԱ', 'ՄԹ'],
534
+ wide: ['Քրիստոսից առաջ', 'Մեր թվարկության']
535
+ };
536
+ var quarterValues$2 = {
537
+ narrow: ['1', '2', '3', '4'],
538
+ abbreviated: ['Ք1', 'Ք2', 'Ք3', 'Ք4'],
539
+ wide: ['1֊ին քառորդ', '2֊րդ քառորդ', '3֊րդ քառորդ', '4֊րդ քառորդ']
540
+ };
541
+ var monthValues$2 = {
542
+ narrow: ['Հ', 'Փ', 'Մ', 'Ա', 'Մ', 'Հ', 'Հ', 'Օ', 'Ս', 'Հ', 'Ն', 'Դ'],
543
+ abbreviated: ['հուն', 'փետ', 'մար', 'ապր', 'մայ', 'հուն', 'հուլ', 'օգս', 'սեպ', 'հոկ', 'նոյ', 'դեկ'],
544
+ wide: ['հունվար', 'փետրվար', 'մարտ', 'ապրիլ', 'մայիս', 'հունիս', 'հուլիս', 'օգոստոս', 'սեպտեմբեր', 'հոկտեմբեր', 'նոյեմբեր', 'դեկտեմբեր']
545
+ };
546
+ var dayValues$2 = {
547
+ narrow: ['Կ', 'Ե', 'Ե', 'Չ', 'Հ', 'Ո', 'Շ'],
548
+ short: ['կր', 'եր', 'եք', 'չք', 'հգ', 'ուր', 'շբ'],
549
+ abbreviated: ['կիր', 'երկ', 'երք', 'չոր', 'հնգ', 'ուրբ', 'շաբ'],
550
+ wide: ['կիրակի', 'երկուշաբթի', 'երեքշաբթի', 'չորեքշաբթի', 'հինգշաբթի', 'ուրբաթ', 'շաբաթ']
551
+ };
552
+ var dayPeriodValues$2 = {
553
+ narrow: {
554
+ am: 'a',
555
+ pm: 'p',
556
+ midnight: 'կեսգշ',
557
+ noon: 'կեսօր',
558
+ morning: 'առավոտ',
559
+ afternoon: 'ցերեկ',
560
+ evening: 'երեկո',
561
+ night: 'գիշեր'
562
+ },
563
+ abbreviated: {
564
+ am: 'AM',
565
+ pm: 'PM',
566
+ midnight: 'կեսգիշեր',
567
+ noon: 'կեսօր',
568
+ morning: 'առավոտ',
569
+ afternoon: 'ցերեկ',
570
+ evening: 'երեկո',
571
+ night: 'գիշեր'
572
+ },
573
+ wide: {
574
+ am: 'a.m.',
575
+ pm: 'p.m.',
576
+ midnight: 'կեսգիշեր',
577
+ noon: 'կեսօր',
578
+ morning: 'առավոտ',
579
+ afternoon: 'ցերեկ',
580
+ evening: 'երեկո',
581
+ night: 'գիշեր'
582
+ }
583
+ };
584
+ var formattingDayPeriodValues$2 = {
585
+ narrow: {
586
+ am: 'a',
587
+ pm: 'p',
588
+ midnight: 'կեսգշ',
589
+ noon: 'կեսօր',
590
+ morning: 'առավոտը',
591
+ afternoon: 'ցերեկը',
592
+ evening: 'երեկոյան',
593
+ night: 'գիշերը'
594
+ },
595
+ abbreviated: {
596
+ am: 'AM',
597
+ pm: 'PM',
598
+ midnight: 'կեսգիշերին',
599
+ noon: 'կեսօրին',
600
+ morning: 'առավոտը',
601
+ afternoon: 'ցերեկը',
602
+ evening: 'երեկոյան',
603
+ night: 'գիշերը'
604
+ },
605
+ wide: {
606
+ am: 'a.m.',
607
+ pm: 'p.m.',
608
+ midnight: 'կեսգիշերին',
609
+ noon: 'կեսօրին',
610
+ morning: 'առավոտը',
611
+ afternoon: 'ցերեկը',
612
+ evening: 'երեկոյան',
613
+ night: 'գիշերը'
614
+ }
615
+ };
616
+ var ordinalNumber$2 = function ordinalNumber(dirtyNumber, _options) {
617
+ var number = Number(dirtyNumber);
618
+
619
+ // If ordinal numbers depend on context, for example,
620
+ // if they are different for different grammatical genders,
621
+ // use `options.unit`.
622
+ //
623
+ // `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear',
624
+ // 'day', 'hour', 'minute', 'second'.
625
+
626
+ var rem100 = number % 100;
627
+ if (rem100 < 10) {
628
+ if (rem100 % 10 === 1) {
629
+ return number + '֊ին';
630
+ }
631
+ }
632
+ return number + '֊րդ';
633
+ };
634
+ var localize$2 = {
635
+ ordinalNumber: ordinalNumber$2,
636
+ era: buildLocalizeFn({
637
+ values: eraValues$2,
638
+ defaultWidth: 'wide'
639
+ }),
640
+ quarter: buildLocalizeFn({
641
+ values: quarterValues$2,
642
+ defaultWidth: 'wide',
643
+ argumentCallback: function argumentCallback(quarter) {
644
+ return quarter - 1;
645
+ }
646
+ }),
647
+ month: buildLocalizeFn({
648
+ values: monthValues$2,
649
+ defaultWidth: 'wide'
650
+ }),
651
+ day: buildLocalizeFn({
652
+ values: dayValues$2,
653
+ defaultWidth: 'wide'
654
+ }),
655
+ dayPeriod: buildLocalizeFn({
656
+ values: dayPeriodValues$2,
657
+ defaultWidth: 'wide',
658
+ formattingValues: formattingDayPeriodValues$2,
659
+ defaultFormattingWidth: 'wide'
660
+ })
661
+ };
662
+
663
+ function buildMatchFn(args) {
664
+ return function (string) {
665
+ var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
666
+ var width = options.width;
667
+ var matchPattern = width && args.matchPatterns[width] || args.matchPatterns[args.defaultMatchWidth];
668
+ var matchResult = string.match(matchPattern);
669
+ if (!matchResult) {
670
+ return null;
671
+ }
672
+ var matchedString = matchResult[0];
673
+ var parsePatterns = width && args.parsePatterns[width] || args.parsePatterns[args.defaultParseWidth];
674
+ var key = Array.isArray(parsePatterns) ? findIndex(parsePatterns, function (pattern) {
675
+ return pattern.test(matchedString);
676
+ }) : findKey(parsePatterns, function (pattern) {
677
+ return pattern.test(matchedString);
678
+ });
679
+ var value;
680
+ value = args.valueCallback ? args.valueCallback(key) : key;
681
+ value = options.valueCallback ? options.valueCallback(value) : value;
682
+ var rest = string.slice(matchedString.length);
683
+ return {
684
+ value: value,
685
+ rest: rest
686
+ };
687
+ };
688
+ }
689
+ function findKey(object, predicate) {
690
+ for (var key in object) {
691
+ if (object.hasOwnProperty(key) && predicate(object[key])) {
692
+ return key;
693
+ }
694
+ }
695
+ return undefined;
696
+ }
697
+ function findIndex(array, predicate) {
698
+ for (var key = 0; key < array.length; key++) {
699
+ if (predicate(array[key])) {
700
+ return key;
701
+ }
702
+ }
703
+ return undefined;
704
+ }
705
+
706
+ function buildMatchPatternFn(args) {
707
+ return function (string) {
708
+ var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
709
+ var matchResult = string.match(args.matchPattern);
710
+ if (!matchResult) return null;
711
+ var matchedString = matchResult[0];
712
+ var parseResult = string.match(args.parsePattern);
713
+ if (!parseResult) return null;
714
+ var value = args.valueCallback ? args.valueCallback(parseResult[0]) : parseResult[0];
715
+ value = options.valueCallback ? options.valueCallback(value) : value;
716
+ var rest = string.slice(matchedString.length);
717
+ return {
718
+ value: value,
719
+ rest: rest
720
+ };
721
+ };
722
+ }
723
+
724
+ var matchOrdinalNumberPattern$2 = /^(\d+)((-|֊)?(ին|րդ))?/i;
725
+ var parseOrdinalNumberPattern$2 = /\d+/i;
726
+ var matchEraPatterns$2 = {
727
+ narrow: /^(Ք|Մ)/i,
728
+ abbreviated: /^(Ք\.?\s?Ա\.?|Մ\.?\s?Թ\.?\s?Ա\.?|Մ\.?\s?Թ\.?|Ք\.?\s?Հ\.?)/i,
729
+ wide: /^(քրիստոսից առաջ|մեր թվարկությունից առաջ|մեր թվարկության|քրիստոսից հետո)/i
730
+ };
731
+ var parseEraPatterns$2 = {
732
+ any: [/^ք/i, /^մ/i]
733
+ };
734
+ var matchQuarterPatterns$2 = {
735
+ narrow: /^[1234]/i,
736
+ abbreviated: /^ք[1234]/i,
737
+ wide: /^[1234]((-|֊)?(ին|րդ)) քառորդ/i
738
+ };
739
+ var parseQuarterPatterns$2 = {
740
+ any: [/1/i, /2/i, /3/i, /4/i]
741
+ };
742
+ var matchMonthPatterns$2 = {
743
+ narrow: /^[հփմաօսնդ]/i,
744
+ abbreviated: /^(հուն|փետ|մար|ապր|մայ|հուն|հուլ|օգս|սեպ|հոկ|նոյ|դեկ)/i,
745
+ wide: /^(հունվար|փետրվար|մարտ|ապրիլ|մայիս|հունիս|հուլիս|օգոստոս|սեպտեմբեր|հոկտեմբեր|նոյեմբեր|դեկտեմբեր)/i
746
+ };
747
+ var parseMonthPatterns$2 = {
748
+ narrow: [/^հ/i, /^փ/i, /^մ/i, /^ա/i, /^մ/i, /^հ/i, /^հ/i, /^օ/i, /^ս/i, /^հ/i, /^ն/i, /^դ/i],
749
+ any: [/^հու/i, /^փ/i, /^մար/i, /^ա/i, /^մայ/i, /^հուն/i, /^հուլ/i, /^օ/i, /^ս/i, /^հոկ/i, /^ն/i, /^դ/i]
750
+ };
751
+ var matchDayPatterns$2 = {
752
+ narrow: /^[եչհոշկ]/i,
753
+ short: /^(կր|եր|եք|չք|հգ|ուր|շբ)/i,
754
+ abbreviated: /^(կիր|երկ|երք|չոր|հնգ|ուրբ|շաբ)/i,
755
+ wide: /^(կիրակի|երկուշաբթի|երեքշաբթի|չորեքշաբթի|հինգշաբթի|ուրբաթ|շաբաթ)/i
756
+ };
757
+ var parseDayPatterns$2 = {
758
+ narrow: [/^կ/i, /^ե/i, /^ե/i, /^չ/i, /^հ/i, /^(ո|Ո)/, /^շ/i],
759
+ short: [/^կ/i, /^եր/i, /^եք/i, /^չ/i, /^հ/i, /^(ո|Ո)/, /^շ/i],
760
+ abbreviated: [/^կ/i, /^երկ/i, /^երք/i, /^չ/i, /^հ/i, /^(ո|Ո)/, /^շ/i],
761
+ wide: [/^կ/i, /^երկ/i, /^երե/i, /^չ/i, /^հ/i, /^(ո|Ո)/, /^շ/i]
762
+ };
763
+ var matchDayPeriodPatterns$2 = {
764
+ narrow: /^([ap]|կեսգշ|կեսօր|(առավոտը?|ցերեկը?|երեկո(յան)?|գիշերը?))/i,
765
+ any: /^([ap]\.?\s?m\.?|կեսգիշեր(ին)?|կեսօր(ին)?|(առավոտը?|ցերեկը?|երեկո(յան)?|գիշերը?))/i
766
+ };
767
+ var parseDayPeriodPatterns$2 = {
768
+ any: {
769
+ am: /^a/i,
770
+ pm: /^p/i,
771
+ midnight: /կեսգիշեր/i,
772
+ noon: /կեսօր/i,
773
+ morning: /առավոտ/i,
774
+ afternoon: /ցերեկ/i,
775
+ evening: /երեկո/i,
776
+ night: /գիշեր/i
777
+ }
778
+ };
779
+ var match$2 = {
780
+ ordinalNumber: buildMatchPatternFn({
781
+ matchPattern: matchOrdinalNumberPattern$2,
782
+ parsePattern: parseOrdinalNumberPattern$2,
783
+ valueCallback: function valueCallback(value) {
784
+ return parseInt(value, 10);
785
+ }
786
+ }),
787
+ era: buildMatchFn({
788
+ matchPatterns: matchEraPatterns$2,
789
+ defaultMatchWidth: 'wide',
790
+ parsePatterns: parseEraPatterns$2,
791
+ defaultParseWidth: 'any'
792
+ }),
793
+ quarter: buildMatchFn({
794
+ matchPatterns: matchQuarterPatterns$2,
795
+ defaultMatchWidth: 'wide',
796
+ parsePatterns: parseQuarterPatterns$2,
797
+ defaultParseWidth: 'any',
798
+ valueCallback: function valueCallback(index) {
799
+ return index + 1;
800
+ }
801
+ }),
802
+ month: buildMatchFn({
803
+ matchPatterns: matchMonthPatterns$2,
804
+ defaultMatchWidth: 'wide',
805
+ parsePatterns: parseMonthPatterns$2,
806
+ defaultParseWidth: 'any'
807
+ }),
808
+ day: buildMatchFn({
809
+ matchPatterns: matchDayPatterns$2,
810
+ defaultMatchWidth: 'wide',
811
+ parsePatterns: parseDayPatterns$2,
812
+ defaultParseWidth: 'wide'
813
+ }),
814
+ dayPeriod: buildMatchFn({
815
+ matchPatterns: matchDayPeriodPatterns$2,
816
+ defaultMatchWidth: 'any',
817
+ parsePatterns: parseDayPeriodPatterns$2,
818
+ defaultParseWidth: 'any'
819
+ })
820
+ };
821
+
822
+ /**
823
+ * @type {Locale}
824
+ * @category Locales
825
+ * @summary Armenian locale
826
+ * @language Armenian
827
+ * @iso-639-2 arm
828
+ * @author Alex Igityan [@alexigityan]{@link https://github.com/alexigityan}
829
+ */
830
+ var locale$2 = {
831
+ code: 'hy',
832
+ formatDistance: formatDistance$2,
833
+ formatLong: formatLong$2,
834
+ formatRelative: formatRelative$2,
835
+ localize: localize$2,
836
+ match: match$2,
837
+ options: {
838
+ weekStartsOn: 1 /* Monday */,
839
+ firstWeekContainsDate: 1
840
+ }
841
+ };
842
+
843
+ var formatDistanceLocale$1 = {
844
+ lessThanXSeconds: {
845
+ one: 'less than a second',
846
+ other: 'less than {{count}} seconds'
847
+ },
848
+ xSeconds: {
849
+ one: '1 second',
850
+ other: '{{count}} seconds'
851
+ },
852
+ halfAMinute: 'half a minute',
853
+ lessThanXMinutes: {
854
+ one: 'less than a minute',
855
+ other: 'less than {{count}} minutes'
856
+ },
857
+ xMinutes: {
858
+ one: '1 minute',
859
+ other: '{{count}} minutes'
860
+ },
861
+ aboutXHours: {
862
+ one: 'about 1 hour',
863
+ other: 'about {{count}} hours'
864
+ },
865
+ xHours: {
866
+ one: '1 hour',
867
+ other: '{{count}} hours'
868
+ },
869
+ xDays: {
870
+ one: '1 day',
871
+ other: '{{count}} days'
872
+ },
873
+ aboutXWeeks: {
874
+ one: 'about 1 week',
875
+ other: 'about {{count}} weeks'
876
+ },
877
+ xWeeks: {
878
+ one: '1 week',
879
+ other: '{{count}} weeks'
880
+ },
881
+ aboutXMonths: {
882
+ one: 'about 1 month',
883
+ other: 'about {{count}} months'
884
+ },
885
+ xMonths: {
886
+ one: '1 month',
887
+ other: '{{count}} months'
888
+ },
889
+ aboutXYears: {
890
+ one: 'about 1 year',
891
+ other: 'about {{count}} years'
892
+ },
893
+ xYears: {
894
+ one: '1 year',
895
+ other: '{{count}} years'
896
+ },
897
+ overXYears: {
898
+ one: 'over 1 year',
899
+ other: 'over {{count}} years'
900
+ },
901
+ almostXYears: {
902
+ one: 'almost 1 year',
903
+ other: 'almost {{count}} years'
904
+ }
905
+ };
906
+ var formatDistance$1 = function formatDistance(token, count, options) {
907
+ var result;
908
+ var tokenValue = formatDistanceLocale$1[token];
909
+ if (typeof tokenValue === 'string') {
910
+ result = tokenValue;
911
+ } else if (count === 1) {
912
+ result = tokenValue.one;
913
+ } else {
914
+ result = tokenValue.other.replace('{{count}}', count.toString());
915
+ }
916
+ if (options !== null && options !== void 0 && options.addSuffix) {
917
+ if (options.comparison && options.comparison > 0) {
918
+ return 'in ' + result;
919
+ } else {
920
+ return result + ' ago';
921
+ }
922
+ }
923
+ return result;
924
+ };
925
+
926
+ var formatRelativeLocale$1 = {
927
+ lastWeek: "'last' eeee 'at' p",
928
+ yesterday: "'yesterday at' p",
929
+ today: "'today at' p",
930
+ tomorrow: "'tomorrow at' p",
931
+ nextWeek: "eeee 'at' p",
932
+ other: 'P'
933
+ };
934
+ var formatRelative$1 = function formatRelative(token, _date, _baseDate, _options) {
935
+ return formatRelativeLocale$1[token];
936
+ };
937
+
938
+ var eraValues$1 = {
939
+ narrow: ['B', 'A'],
940
+ abbreviated: ['BC', 'AD'],
941
+ wide: ['Before Christ', 'Anno Domini']
942
+ };
943
+ var quarterValues$1 = {
944
+ narrow: ['1', '2', '3', '4'],
945
+ abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
946
+ wide: ['1st quarter', '2nd quarter', '3rd quarter', '4th quarter']
947
+ };
948
+
949
+ // Note: in English, the names of days of the week and months are capitalized.
950
+ // If you are making a new locale based on this one, check if the same is true for the language you're working on.
951
+ // Generally, formatted dates should look like they are in the middle of a sentence,
952
+ // e.g. in Spanish language the weekdays and months should be in the lowercase.
953
+ var monthValues$1 = {
954
+ narrow: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],
955
+ abbreviated: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
956
+ wide: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
957
+ };
958
+ var dayValues$1 = {
959
+ narrow: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
960
+ short: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
961
+ abbreviated: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
962
+ wide: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']
963
+ };
964
+ var dayPeriodValues$1 = {
965
+ narrow: {
966
+ am: 'a',
967
+ pm: 'p',
968
+ midnight: 'mi',
969
+ noon: 'n',
970
+ morning: 'morning',
971
+ afternoon: 'afternoon',
972
+ evening: 'evening',
973
+ night: 'night'
974
+ },
975
+ abbreviated: {
976
+ am: 'AM',
977
+ pm: 'PM',
978
+ midnight: 'midnight',
979
+ noon: 'noon',
980
+ morning: 'morning',
981
+ afternoon: 'afternoon',
982
+ evening: 'evening',
983
+ night: 'night'
984
+ },
985
+ wide: {
986
+ am: 'a.m.',
987
+ pm: 'p.m.',
988
+ midnight: 'midnight',
989
+ noon: 'noon',
990
+ morning: 'morning',
991
+ afternoon: 'afternoon',
992
+ evening: 'evening',
993
+ night: 'night'
994
+ }
995
+ };
996
+ var formattingDayPeriodValues$1 = {
997
+ narrow: {
998
+ am: 'a',
999
+ pm: 'p',
1000
+ midnight: 'mi',
1001
+ noon: 'n',
1002
+ morning: 'in the morning',
1003
+ afternoon: 'in the afternoon',
1004
+ evening: 'in the evening',
1005
+ night: 'at night'
1006
+ },
1007
+ abbreviated: {
1008
+ am: 'AM',
1009
+ pm: 'PM',
1010
+ midnight: 'midnight',
1011
+ noon: 'noon',
1012
+ morning: 'in the morning',
1013
+ afternoon: 'in the afternoon',
1014
+ evening: 'in the evening',
1015
+ night: 'at night'
1016
+ },
1017
+ wide: {
1018
+ am: 'a.m.',
1019
+ pm: 'p.m.',
1020
+ midnight: 'midnight',
1021
+ noon: 'noon',
1022
+ morning: 'in the morning',
1023
+ afternoon: 'in the afternoon',
1024
+ evening: 'in the evening',
1025
+ night: 'at night'
1026
+ }
1027
+ };
1028
+ var ordinalNumber$1 = function ordinalNumber(dirtyNumber, _options) {
1029
+ var number = Number(dirtyNumber);
1030
+
1031
+ // If ordinal numbers depend on context, for example,
1032
+ // if they are different for different grammatical genders,
1033
+ // use `options.unit`.
1034
+ //
1035
+ // `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear',
1036
+ // 'day', 'hour', 'minute', 'second'.
1037
+
1038
+ var rem100 = number % 100;
1039
+ if (rem100 > 20 || rem100 < 10) {
1040
+ switch (rem100 % 10) {
1041
+ case 1:
1042
+ return number + 'st';
1043
+ case 2:
1044
+ return number + 'nd';
1045
+ case 3:
1046
+ return number + 'rd';
1047
+ }
1048
+ }
1049
+ return number + 'th';
1050
+ };
1051
+ var localize$1 = {
1052
+ ordinalNumber: ordinalNumber$1,
1053
+ era: buildLocalizeFn({
1054
+ values: eraValues$1,
1055
+ defaultWidth: 'wide'
1056
+ }),
1057
+ quarter: buildLocalizeFn({
1058
+ values: quarterValues$1,
1059
+ defaultWidth: 'wide',
1060
+ argumentCallback: function argumentCallback(quarter) {
1061
+ return quarter - 1;
1062
+ }
1063
+ }),
1064
+ month: buildLocalizeFn({
1065
+ values: monthValues$1,
1066
+ defaultWidth: 'wide'
1067
+ }),
1068
+ day: buildLocalizeFn({
1069
+ values: dayValues$1,
1070
+ defaultWidth: 'wide'
1071
+ }),
1072
+ dayPeriod: buildLocalizeFn({
1073
+ values: dayPeriodValues$1,
1074
+ defaultWidth: 'wide',
1075
+ formattingValues: formattingDayPeriodValues$1,
1076
+ defaultFormattingWidth: 'wide'
1077
+ })
1078
+ };
1079
+
1080
+ var matchOrdinalNumberPattern$1 = /^(\d+)(th|st|nd|rd)?/i;
1081
+ var parseOrdinalNumberPattern$1 = /\d+/i;
1082
+ var matchEraPatterns$1 = {
1083
+ narrow: /^(b|a)/i,
1084
+ abbreviated: /^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,
1085
+ wide: /^(before christ|before common era|anno domini|common era)/i
1086
+ };
1087
+ var parseEraPatterns$1 = {
1088
+ any: [/^b/i, /^(a|c)/i]
1089
+ };
1090
+ var matchQuarterPatterns$1 = {
1091
+ narrow: /^[1234]/i,
1092
+ abbreviated: /^q[1234]/i,
1093
+ wide: /^[1234](th|st|nd|rd)? quarter/i
1094
+ };
1095
+ var parseQuarterPatterns$1 = {
1096
+ any: [/1/i, /2/i, /3/i, /4/i]
1097
+ };
1098
+ var matchMonthPatterns$1 = {
1099
+ narrow: /^[jfmasond]/i,
1100
+ abbreviated: /^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,
1101
+ wide: /^(january|february|march|april|may|june|july|august|september|october|november|december)/i
1102
+ };
1103
+ var parseMonthPatterns$1 = {
1104
+ narrow: [/^j/i, /^f/i, /^m/i, /^a/i, /^m/i, /^j/i, /^j/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i],
1105
+ any: [/^ja/i, /^f/i, /^mar/i, /^ap/i, /^may/i, /^jun/i, /^jul/i, /^au/i, /^s/i, /^o/i, /^n/i, /^d/i]
1106
+ };
1107
+ var matchDayPatterns$1 = {
1108
+ narrow: /^[smtwf]/i,
1109
+ short: /^(su|mo|tu|we|th|fr|sa)/i,
1110
+ abbreviated: /^(sun|mon|tue|wed|thu|fri|sat)/i,
1111
+ wide: /^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i
1112
+ };
1113
+ var parseDayPatterns$1 = {
1114
+ narrow: [/^s/i, /^m/i, /^t/i, /^w/i, /^t/i, /^f/i, /^s/i],
1115
+ any: [/^su/i, /^m/i, /^tu/i, /^w/i, /^th/i, /^f/i, /^sa/i]
1116
+ };
1117
+ var matchDayPeriodPatterns$1 = {
1118
+ narrow: /^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,
1119
+ any: /^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i
1120
+ };
1121
+ var parseDayPeriodPatterns$1 = {
1122
+ any: {
1123
+ am: /^a/i,
1124
+ pm: /^p/i,
1125
+ midnight: /^mi/i,
1126
+ noon: /^no/i,
1127
+ morning: /morning/i,
1128
+ afternoon: /afternoon/i,
1129
+ evening: /evening/i,
1130
+ night: /night/i
1131
+ }
1132
+ };
1133
+ var match$1 = {
1134
+ ordinalNumber: buildMatchPatternFn({
1135
+ matchPattern: matchOrdinalNumberPattern$1,
1136
+ parsePattern: parseOrdinalNumberPattern$1,
1137
+ valueCallback: function valueCallback(value) {
1138
+ return parseInt(value, 10);
1139
+ }
1140
+ }),
1141
+ era: buildMatchFn({
1142
+ matchPatterns: matchEraPatterns$1,
1143
+ defaultMatchWidth: 'wide',
1144
+ parsePatterns: parseEraPatterns$1,
1145
+ defaultParseWidth: 'any'
1146
+ }),
1147
+ quarter: buildMatchFn({
1148
+ matchPatterns: matchQuarterPatterns$1,
1149
+ defaultMatchWidth: 'wide',
1150
+ parsePatterns: parseQuarterPatterns$1,
1151
+ defaultParseWidth: 'any',
1152
+ valueCallback: function valueCallback(index) {
1153
+ return index + 1;
1154
+ }
1155
+ }),
1156
+ month: buildMatchFn({
1157
+ matchPatterns: matchMonthPatterns$1,
1158
+ defaultMatchWidth: 'wide',
1159
+ parsePatterns: parseMonthPatterns$1,
1160
+ defaultParseWidth: 'any'
1161
+ }),
1162
+ day: buildMatchFn({
1163
+ matchPatterns: matchDayPatterns$1,
1164
+ defaultMatchWidth: 'wide',
1165
+ parsePatterns: parseDayPatterns$1,
1166
+ defaultParseWidth: 'any'
1167
+ }),
1168
+ dayPeriod: buildMatchFn({
1169
+ matchPatterns: matchDayPeriodPatterns$1,
1170
+ defaultMatchWidth: 'any',
1171
+ parsePatterns: parseDayPeriodPatterns$1,
1172
+ defaultParseWidth: 'any'
1173
+ })
1174
+ };
1175
+
1176
+ var dateFormats$1 = {
1177
+ full: 'EEEE, d MMMM yyyy',
1178
+ long: 'd MMMM yyyy',
1179
+ medium: 'd MMM yyyy',
1180
+ short: 'dd/MM/yyyy'
1181
+ };
1182
+ var timeFormats$1 = {
1183
+ full: 'HH:mm:ss zzzz',
1184
+ long: 'HH:mm:ss z',
1185
+ medium: 'HH:mm:ss',
1186
+ short: 'HH:mm'
1187
+ };
1188
+ var dateTimeFormats$1 = {
1189
+ full: "{{date}} 'at' {{time}}",
1190
+ long: "{{date}} 'at' {{time}}",
1191
+ medium: '{{date}}, {{time}}',
1192
+ short: '{{date}}, {{time}}'
1193
+ };
1194
+ var formatLong$1 = {
1195
+ date: buildFormatLongFn({
1196
+ formats: dateFormats$1,
1197
+ defaultWidth: 'full'
1198
+ }),
1199
+ time: buildFormatLongFn({
1200
+ formats: timeFormats$1,
1201
+ defaultWidth: 'full'
1202
+ }),
1203
+ dateTime: buildFormatLongFn({
1204
+ formats: dateTimeFormats$1,
1205
+ defaultWidth: 'full'
1206
+ })
1207
+ };
1208
+
1209
+ /**
1210
+ * @type {Locale}
1211
+ * @category Locales
1212
+ * @summary English locale (United Kingdom).
1213
+ * @language English
1214
+ * @iso-639-2 eng
1215
+ * @author Alex [@glintik]{@link https://github.com/glintik}
1216
+ */
1217
+ var locale$1 = {
1218
+ code: 'en-GB',
1219
+ formatDistance: formatDistance$1,
1220
+ formatLong: formatLong$1,
1221
+ formatRelative: formatRelative$1,
1222
+ localize: localize$1,
1223
+ match: match$1,
1224
+ options: {
1225
+ weekStartsOn: 1 /* Monday */,
1226
+ firstWeekContainsDate: 4
1227
+ }
1228
+ };
1229
+
1230
+ function declension(scheme, count) {
1231
+ // scheme for count=1 exists
1232
+ if (scheme.one !== undefined && count === 1) {
1233
+ return scheme.one;
1234
+ }
1235
+ var rem10 = count % 10;
1236
+ var rem100 = count % 100;
1237
+
1238
+ // 1, 21, 31, ...
1239
+ if (rem10 === 1 && rem100 !== 11) {
1240
+ return scheme.singularNominative.replace('{{count}}', String(count));
1241
+
1242
+ // 2, 3, 4, 22, 23, 24, 32 ...
1243
+ } else if (rem10 >= 2 && rem10 <= 4 && (rem100 < 10 || rem100 > 20)) {
1244
+ return scheme.singularGenitive.replace('{{count}}', String(count));
1245
+
1246
+ // 5, 6, 7, 8, 9, 10, 11, ...
1247
+ } else {
1248
+ return scheme.pluralGenitive.replace('{{count}}', String(count));
1249
+ }
1250
+ }
1251
+ function buildLocalizeTokenFn(scheme) {
1252
+ return function (count, options) {
1253
+ if (options !== null && options !== void 0 && options.addSuffix) {
1254
+ if (options.comparison && options.comparison > 0) {
1255
+ if (scheme.future) {
1256
+ return declension(scheme.future, count);
1257
+ } else {
1258
+ return 'через ' + declension(scheme.regular, count);
1259
+ }
1260
+ } else {
1261
+ if (scheme.past) {
1262
+ return declension(scheme.past, count);
1263
+ } else {
1264
+ return declension(scheme.regular, count) + ' назад';
1265
+ }
1266
+ }
1267
+ } else {
1268
+ return declension(scheme.regular, count);
1269
+ }
1270
+ };
1271
+ }
1272
+ var formatDistanceLocale = {
1273
+ lessThanXSeconds: buildLocalizeTokenFn({
1274
+ regular: {
1275
+ one: 'меньше секунды',
1276
+ singularNominative: 'меньше {{count}} секунды',
1277
+ singularGenitive: 'меньше {{count}} секунд',
1278
+ pluralGenitive: 'меньше {{count}} секунд'
1279
+ },
1280
+ future: {
1281
+ one: 'меньше, чем через секунду',
1282
+ singularNominative: 'меньше, чем через {{count}} секунду',
1283
+ singularGenitive: 'меньше, чем через {{count}} секунды',
1284
+ pluralGenitive: 'меньше, чем через {{count}} секунд'
1285
+ }
1286
+ }),
1287
+ xSeconds: buildLocalizeTokenFn({
1288
+ regular: {
1289
+ singularNominative: '{{count}} секунда',
1290
+ singularGenitive: '{{count}} секунды',
1291
+ pluralGenitive: '{{count}} секунд'
1292
+ },
1293
+ past: {
1294
+ singularNominative: '{{count}} секунду назад',
1295
+ singularGenitive: '{{count}} секунды назад',
1296
+ pluralGenitive: '{{count}} секунд назад'
1297
+ },
1298
+ future: {
1299
+ singularNominative: 'через {{count}} секунду',
1300
+ singularGenitive: 'через {{count}} секунды',
1301
+ pluralGenitive: 'через {{count}} секунд'
1302
+ }
1303
+ }),
1304
+ halfAMinute: function halfAMinute(_count, options) {
1305
+ if (options !== null && options !== void 0 && options.addSuffix) {
1306
+ if (options.comparison && options.comparison > 0) {
1307
+ return 'через полминуты';
1308
+ } else {
1309
+ return 'полминуты назад';
1310
+ }
1311
+ }
1312
+ return 'полминуты';
1313
+ },
1314
+ lessThanXMinutes: buildLocalizeTokenFn({
1315
+ regular: {
1316
+ one: 'меньше минуты',
1317
+ singularNominative: 'меньше {{count}} минуты',
1318
+ singularGenitive: 'меньше {{count}} минут',
1319
+ pluralGenitive: 'меньше {{count}} минут'
1320
+ },
1321
+ future: {
1322
+ one: 'меньше, чем через минуту',
1323
+ singularNominative: 'меньше, чем через {{count}} минуту',
1324
+ singularGenitive: 'меньше, чем через {{count}} минуты',
1325
+ pluralGenitive: 'меньше, чем через {{count}} минут'
1326
+ }
1327
+ }),
1328
+ xMinutes: buildLocalizeTokenFn({
1329
+ regular: {
1330
+ singularNominative: '{{count}} минута',
1331
+ singularGenitive: '{{count}} минуты',
1332
+ pluralGenitive: '{{count}} минут'
1333
+ },
1334
+ past: {
1335
+ singularNominative: '{{count}} минуту назад',
1336
+ singularGenitive: '{{count}} минуты назад',
1337
+ pluralGenitive: '{{count}} минут назад'
1338
+ },
1339
+ future: {
1340
+ singularNominative: 'через {{count}} минуту',
1341
+ singularGenitive: 'через {{count}} минуты',
1342
+ pluralGenitive: 'через {{count}} минут'
1343
+ }
1344
+ }),
1345
+ aboutXHours: buildLocalizeTokenFn({
1346
+ regular: {
1347
+ singularNominative: 'около {{count}} часа',
1348
+ singularGenitive: 'около {{count}} часов',
1349
+ pluralGenitive: 'около {{count}} часов'
1350
+ },
1351
+ future: {
1352
+ singularNominative: 'приблизительно через {{count}} час',
1353
+ singularGenitive: 'приблизительно через {{count}} часа',
1354
+ pluralGenitive: 'приблизительно через {{count}} часов'
1355
+ }
1356
+ }),
1357
+ xHours: buildLocalizeTokenFn({
1358
+ regular: {
1359
+ singularNominative: '{{count}} час',
1360
+ singularGenitive: '{{count}} часа',
1361
+ pluralGenitive: '{{count}} часов'
1362
+ }
1363
+ }),
1364
+ xDays: buildLocalizeTokenFn({
1365
+ regular: {
1366
+ singularNominative: '{{count}} день',
1367
+ singularGenitive: '{{count}} дня',
1368
+ pluralGenitive: '{{count}} дней'
1369
+ }
1370
+ }),
1371
+ aboutXWeeks: buildLocalizeTokenFn({
1372
+ regular: {
1373
+ singularNominative: 'около {{count}} недели',
1374
+ singularGenitive: 'около {{count}} недель',
1375
+ pluralGenitive: 'около {{count}} недель'
1376
+ },
1377
+ future: {
1378
+ singularNominative: 'приблизительно через {{count}} неделю',
1379
+ singularGenitive: 'приблизительно через {{count}} недели',
1380
+ pluralGenitive: 'приблизительно через {{count}} недель'
1381
+ }
1382
+ }),
1383
+ xWeeks: buildLocalizeTokenFn({
1384
+ regular: {
1385
+ singularNominative: '{{count}} неделя',
1386
+ singularGenitive: '{{count}} недели',
1387
+ pluralGenitive: '{{count}} недель'
1388
+ }
1389
+ }),
1390
+ aboutXMonths: buildLocalizeTokenFn({
1391
+ regular: {
1392
+ singularNominative: 'около {{count}} месяца',
1393
+ singularGenitive: 'около {{count}} месяцев',
1394
+ pluralGenitive: 'около {{count}} месяцев'
1395
+ },
1396
+ future: {
1397
+ singularNominative: 'приблизительно через {{count}} месяц',
1398
+ singularGenitive: 'приблизительно через {{count}} месяца',
1399
+ pluralGenitive: 'приблизительно через {{count}} месяцев'
1400
+ }
1401
+ }),
1402
+ xMonths: buildLocalizeTokenFn({
1403
+ regular: {
1404
+ singularNominative: '{{count}} месяц',
1405
+ singularGenitive: '{{count}} месяца',
1406
+ pluralGenitive: '{{count}} месяцев'
1407
+ }
1408
+ }),
1409
+ aboutXYears: buildLocalizeTokenFn({
1410
+ regular: {
1411
+ singularNominative: 'около {{count}} года',
1412
+ singularGenitive: 'около {{count}} лет',
1413
+ pluralGenitive: 'около {{count}} лет'
1414
+ },
1415
+ future: {
1416
+ singularNominative: 'приблизительно через {{count}} год',
1417
+ singularGenitive: 'приблизительно через {{count}} года',
1418
+ pluralGenitive: 'приблизительно через {{count}} лет'
1419
+ }
1420
+ }),
1421
+ xYears: buildLocalizeTokenFn({
1422
+ regular: {
1423
+ singularNominative: '{{count}} год',
1424
+ singularGenitive: '{{count}} года',
1425
+ pluralGenitive: '{{count}} лет'
1426
+ }
1427
+ }),
1428
+ overXYears: buildLocalizeTokenFn({
1429
+ regular: {
1430
+ singularNominative: 'больше {{count}} года',
1431
+ singularGenitive: 'больше {{count}} лет',
1432
+ pluralGenitive: 'больше {{count}} лет'
1433
+ },
1434
+ future: {
1435
+ singularNominative: 'больше, чем через {{count}} год',
1436
+ singularGenitive: 'больше, чем через {{count}} года',
1437
+ pluralGenitive: 'больше, чем через {{count}} лет'
1438
+ }
1439
+ }),
1440
+ almostXYears: buildLocalizeTokenFn({
1441
+ regular: {
1442
+ singularNominative: 'почти {{count}} год',
1443
+ singularGenitive: 'почти {{count}} года',
1444
+ pluralGenitive: 'почти {{count}} лет'
1445
+ },
1446
+ future: {
1447
+ singularNominative: 'почти через {{count}} год',
1448
+ singularGenitive: 'почти через {{count}} года',
1449
+ pluralGenitive: 'почти через {{count}} лет'
1450
+ }
1451
+ })
1452
+ };
1453
+ var formatDistance = function formatDistance(token, count, options) {
1454
+ return formatDistanceLocale[token](count, options);
1455
+ };
1456
+
1457
+ var dateFormats = {
1458
+ full: "EEEE, d MMMM y 'г.'",
1459
+ long: "d MMMM y 'г.'",
1460
+ medium: "d MMM y 'г.'",
1461
+ short: 'dd.MM.y'
1462
+ };
1463
+ var timeFormats = {
1464
+ full: 'H:mm:ss zzzz',
1465
+ long: 'H:mm:ss z',
1466
+ medium: 'H:mm:ss',
1467
+ short: 'H:mm'
1468
+ };
1469
+ var dateTimeFormats = {
1470
+ any: '{{date}}, {{time}}'
1471
+ };
1472
+ var formatLong = {
1473
+ date: buildFormatLongFn({
1474
+ formats: dateFormats,
1475
+ defaultWidth: 'full'
1476
+ }),
1477
+ time: buildFormatLongFn({
1478
+ formats: timeFormats,
1479
+ defaultWidth: 'full'
1480
+ }),
1481
+ dateTime: buildFormatLongFn({
1482
+ formats: dateTimeFormats,
1483
+ defaultWidth: 'any'
1484
+ })
1485
+ };
1486
+
1487
+ function requiredArgs(required, args) {
1488
+ if (args.length < required) {
1489
+ throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present');
1490
+ }
1491
+ }
1492
+
1493
+ /**
1494
+ * @name toDate
1495
+ * @category Common Helpers
1496
+ * @summary Convert the given argument to an instance of Date.
1497
+ *
1498
+ * @description
1499
+ * Convert the given argument to an instance of Date.
1500
+ *
1501
+ * If the argument is an instance of Date, the function returns its clone.
1502
+ *
1503
+ * If the argument is a number, it is treated as a timestamp.
1504
+ *
1505
+ * If the argument is none of the above, the function returns Invalid Date.
1506
+ *
1507
+ * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.
1508
+ *
1509
+ * @param {Date|Number} argument - the value to convert
1510
+ * @returns {Date} the parsed date in the local time zone
1511
+ * @throws {TypeError} 1 argument required
1512
+ *
1513
+ * @example
1514
+ * // Clone the date:
1515
+ * const result = toDate(new Date(2014, 1, 11, 11, 30, 30))
1516
+ * //=> Tue Feb 11 2014 11:30:30
1517
+ *
1518
+ * @example
1519
+ * // Convert the timestamp to date:
1520
+ * const result = toDate(1392098430000)
1521
+ * //=> Tue Feb 11 2014 11:30:30
1522
+ */
1523
+ function toDate(argument) {
1524
+ requiredArgs(1, arguments);
1525
+ var argStr = Object.prototype.toString.call(argument);
1526
+
1527
+ // Clone the date
1528
+ if (argument instanceof Date || _typeof$1(argument) === 'object' && argStr === '[object Date]') {
1529
+ // Prevent the date to lose the milliseconds when passed to new Date() in IE10
1530
+ return new Date(argument.getTime());
1531
+ } else if (typeof argument === 'number' || argStr === '[object Number]') {
1532
+ return new Date(argument);
1533
+ } else {
1534
+ if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') {
1535
+ // eslint-disable-next-line no-console
1536
+ console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments");
1537
+ // eslint-disable-next-line no-console
1538
+ console.warn(new Error().stack);
1539
+ }
1540
+ return new Date(NaN);
1541
+ }
1542
+ }
1543
+
1544
+ function toInteger(dirtyNumber) {
1545
+ if (dirtyNumber === null || dirtyNumber === true || dirtyNumber === false) {
1546
+ return NaN;
1547
+ }
1548
+ var number = Number(dirtyNumber);
1549
+ if (isNaN(number)) {
1550
+ return number;
1551
+ }
1552
+ return number < 0 ? Math.ceil(number) : Math.floor(number);
1553
+ }
1554
+
1555
+ var defaultOptions = {};
1556
+ function getDefaultOptions() {
1557
+ return defaultOptions;
1558
+ }
1559
+
1560
+ function startOfUTCWeek(dirtyDate, options) {
1561
+ var _ref, _ref2, _ref3, _options$weekStartsOn, _options$locale, _options$locale$optio, _defaultOptions$local, _defaultOptions$local2;
1562
+ requiredArgs(1, arguments);
1563
+ var defaultOptions = getDefaultOptions();
1564
+ var weekStartsOn = toInteger((_ref = (_ref2 = (_ref3 = (_options$weekStartsOn = options === null || options === void 0 ? void 0 : options.weekStartsOn) !== null && _options$weekStartsOn !== void 0 ? _options$weekStartsOn : options === null || options === void 0 ? void 0 : (_options$locale = options.locale) === null || _options$locale === void 0 ? void 0 : (_options$locale$optio = _options$locale.options) === null || _options$locale$optio === void 0 ? void 0 : _options$locale$optio.weekStartsOn) !== null && _ref3 !== void 0 ? _ref3 : defaultOptions.weekStartsOn) !== null && _ref2 !== void 0 ? _ref2 : (_defaultOptions$local = defaultOptions.locale) === null || _defaultOptions$local === void 0 ? void 0 : (_defaultOptions$local2 = _defaultOptions$local.options) === null || _defaultOptions$local2 === void 0 ? void 0 : _defaultOptions$local2.weekStartsOn) !== null && _ref !== void 0 ? _ref : 0);
1565
+
1566
+ // Test if weekStartsOn is between 0 and 6 _and_ is not NaN
1567
+ if (!(weekStartsOn >= 0 && weekStartsOn <= 6)) {
1568
+ throw new RangeError('weekStartsOn must be between 0 and 6 inclusively');
1569
+ }
1570
+ var date = toDate(dirtyDate);
1571
+ var day = date.getUTCDay();
1572
+ var diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn;
1573
+ date.setUTCDate(date.getUTCDate() - diff);
1574
+ date.setUTCHours(0, 0, 0, 0);
1575
+ return date;
1576
+ }
1577
+
1578
+ function isSameUTCWeek(dirtyDateLeft, dirtyDateRight, options) {
1579
+ requiredArgs(2, arguments);
1580
+ var dateLeftStartOfWeek = startOfUTCWeek(dirtyDateLeft, options);
1581
+ var dateRightStartOfWeek = startOfUTCWeek(dirtyDateRight, options);
1582
+ return dateLeftStartOfWeek.getTime() === dateRightStartOfWeek.getTime();
1583
+ }
1584
+
1585
+ var accusativeWeekdays = ['воскресенье', 'понедельник', 'вторник', 'среду', 'четверг', 'пятницу', 'субботу'];
1586
+ function _lastWeek(day) {
1587
+ var weekday = accusativeWeekdays[day];
1588
+ switch (day) {
1589
+ case 0:
1590
+ return "'в прошлое " + weekday + " в' p";
1591
+ case 1:
1592
+ case 2:
1593
+ case 4:
1594
+ return "'в прошлый " + weekday + " в' p";
1595
+ case 3:
1596
+ case 5:
1597
+ case 6:
1598
+ return "'в прошлую " + weekday + " в' p";
1599
+ }
1600
+ }
1601
+ function thisWeek(day) {
1602
+ var weekday = accusativeWeekdays[day];
1603
+ if (day === 2 /* Tue */) {
1604
+ return "'во " + weekday + " в' p";
1605
+ } else {
1606
+ return "'в " + weekday + " в' p";
1607
+ }
1608
+ }
1609
+ function _nextWeek(day) {
1610
+ var weekday = accusativeWeekdays[day];
1611
+ switch (day) {
1612
+ case 0:
1613
+ return "'в следующее " + weekday + " в' p";
1614
+ case 1:
1615
+ case 2:
1616
+ case 4:
1617
+ return "'в следующий " + weekday + " в' p";
1618
+ case 3:
1619
+ case 5:
1620
+ case 6:
1621
+ return "'в следующую " + weekday + " в' p";
1622
+ }
1623
+ }
1624
+ var formatRelativeLocale = {
1625
+ lastWeek: function lastWeek(date, baseDate, options) {
1626
+ var day = date.getUTCDay();
1627
+ if (isSameUTCWeek(date, baseDate, options)) {
1628
+ return thisWeek(day);
1629
+ } else {
1630
+ return _lastWeek(day);
1631
+ }
1632
+ },
1633
+ yesterday: "'вчера в' p",
1634
+ today: "'сегодня в' p",
1635
+ tomorrow: "'завтра в' p",
1636
+ nextWeek: function nextWeek(date, baseDate, options) {
1637
+ var day = date.getUTCDay();
1638
+ if (isSameUTCWeek(date, baseDate, options)) {
1639
+ return thisWeek(day);
1640
+ } else {
1641
+ return _nextWeek(day);
1642
+ }
1643
+ },
1644
+ other: 'P'
1645
+ };
1646
+ var formatRelative = function formatRelative(token, date, baseDate, options) {
1647
+ var format = formatRelativeLocale[token];
1648
+ if (typeof format === 'function') {
1649
+ return format(date, baseDate, options);
1650
+ }
1651
+ return format;
1652
+ };
1653
+
1654
+ var eraValues = {
1655
+ narrow: ['до н.э.', 'н.э.'],
1656
+ abbreviated: ['до н. э.', 'н. э.'],
1657
+ wide: ['до нашей эры', 'нашей эры']
1658
+ };
1659
+ var quarterValues = {
1660
+ narrow: ['1', '2', '3', '4'],
1661
+ abbreviated: ['1-й кв.', '2-й кв.', '3-й кв.', '4-й кв.'],
1662
+ wide: ['1-й квартал', '2-й квартал', '3-й квартал', '4-й квартал']
1663
+ };
1664
+ var monthValues = {
1665
+ narrow: ['Я', 'Ф', 'М', 'А', 'М', 'И', 'И', 'А', 'С', 'О', 'Н', 'Д'],
1666
+ abbreviated: ['янв.', 'фев.', 'март', 'апр.', 'май', 'июнь', 'июль', 'авг.', 'сент.', 'окт.', 'нояб.', 'дек.'],
1667
+ wide: ['январь', 'февраль', 'март', 'апрель', 'май', 'июнь', 'июль', 'август', 'сентябрь', 'октябрь', 'ноябрь', 'декабрь']
1668
+ };
1669
+ var formattingMonthValues = {
1670
+ narrow: ['Я', 'Ф', 'М', 'А', 'М', 'И', 'И', 'А', 'С', 'О', 'Н', 'Д'],
1671
+ abbreviated: ['янв.', 'фев.', 'мар.', 'апр.', 'мая', 'июн.', 'июл.', 'авг.', 'сент.', 'окт.', 'нояб.', 'дек.'],
1672
+ wide: ['января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря']
1673
+ };
1674
+ var dayValues = {
1675
+ narrow: ['В', 'П', 'В', 'С', 'Ч', 'П', 'С'],
1676
+ short: ['вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'],
1677
+ abbreviated: ['вск', 'пнд', 'втр', 'срд', 'чтв', 'птн', 'суб'],
1678
+ wide: ['воскресенье', 'понедельник', 'вторник', 'среда', 'четверг', 'пятница', 'суббота']
1679
+ };
1680
+ var dayPeriodValues = {
1681
+ narrow: {
1682
+ am: 'ДП',
1683
+ pm: 'ПП',
1684
+ midnight: 'полн.',
1685
+ noon: 'полд.',
1686
+ morning: 'утро',
1687
+ afternoon: 'день',
1688
+ evening: 'веч.',
1689
+ night: 'ночь'
1690
+ },
1691
+ abbreviated: {
1692
+ am: 'ДП',
1693
+ pm: 'ПП',
1694
+ midnight: 'полн.',
1695
+ noon: 'полд.',
1696
+ morning: 'утро',
1697
+ afternoon: 'день',
1698
+ evening: 'веч.',
1699
+ night: 'ночь'
1700
+ },
1701
+ wide: {
1702
+ am: 'ДП',
1703
+ pm: 'ПП',
1704
+ midnight: 'полночь',
1705
+ noon: 'полдень',
1706
+ morning: 'утро',
1707
+ afternoon: 'день',
1708
+ evening: 'вечер',
1709
+ night: 'ночь'
1710
+ }
1711
+ };
1712
+ var formattingDayPeriodValues = {
1713
+ narrow: {
1714
+ am: 'ДП',
1715
+ pm: 'ПП',
1716
+ midnight: 'полн.',
1717
+ noon: 'полд.',
1718
+ morning: 'утра',
1719
+ afternoon: 'дня',
1720
+ evening: 'веч.',
1721
+ night: 'ночи'
1722
+ },
1723
+ abbreviated: {
1724
+ am: 'ДП',
1725
+ pm: 'ПП',
1726
+ midnight: 'полн.',
1727
+ noon: 'полд.',
1728
+ morning: 'утра',
1729
+ afternoon: 'дня',
1730
+ evening: 'веч.',
1731
+ night: 'ночи'
1732
+ },
1733
+ wide: {
1734
+ am: 'ДП',
1735
+ pm: 'ПП',
1736
+ midnight: 'полночь',
1737
+ noon: 'полдень',
1738
+ morning: 'утра',
1739
+ afternoon: 'дня',
1740
+ evening: 'вечера',
1741
+ night: 'ночи'
1742
+ }
1743
+ };
1744
+ var ordinalNumber = function ordinalNumber(dirtyNumber, options) {
1745
+ var number = Number(dirtyNumber);
1746
+ var unit = options === null || options === void 0 ? void 0 : options.unit;
1747
+ var suffix;
1748
+ if (unit === 'date') {
1749
+ suffix = '-е';
1750
+ } else if (unit === 'week' || unit === 'minute' || unit === 'second') {
1751
+ suffix = '-я';
1752
+ } else {
1753
+ suffix = '-й';
1754
+ }
1755
+ return number + suffix;
1756
+ };
1757
+ var localize = {
1758
+ ordinalNumber: ordinalNumber,
1759
+ era: buildLocalizeFn({
1760
+ values: eraValues,
1761
+ defaultWidth: 'wide'
1762
+ }),
1763
+ quarter: buildLocalizeFn({
1764
+ values: quarterValues,
1765
+ defaultWidth: 'wide',
1766
+ argumentCallback: function argumentCallback(quarter) {
1767
+ return quarter - 1;
1768
+ }
1769
+ }),
1770
+ month: buildLocalizeFn({
1771
+ values: monthValues,
1772
+ defaultWidth: 'wide',
1773
+ formattingValues: formattingMonthValues,
1774
+ defaultFormattingWidth: 'wide'
1775
+ }),
1776
+ day: buildLocalizeFn({
1777
+ values: dayValues,
1778
+ defaultWidth: 'wide'
1779
+ }),
1780
+ dayPeriod: buildLocalizeFn({
1781
+ values: dayPeriodValues,
1782
+ defaultWidth: 'any',
1783
+ formattingValues: formattingDayPeriodValues,
1784
+ defaultFormattingWidth: 'wide'
1785
+ })
1786
+ };
1787
+
1788
+ var matchOrdinalNumberPattern = /^(\d+)(-?(е|я|й|ое|ье|ая|ья|ый|ой|ий|ый))?/i;
1789
+ var parseOrdinalNumberPattern = /\d+/i;
1790
+ var matchEraPatterns = {
1791
+ narrow: /^((до )?н\.?\s?э\.?)/i,
1792
+ abbreviated: /^((до )?н\.?\s?э\.?)/i,
1793
+ wide: /^(до нашей эры|нашей эры|наша эра)/i
1794
+ };
1795
+ var parseEraPatterns = {
1796
+ any: [/^д/i, /^н/i]
1797
+ };
1798
+ var matchQuarterPatterns = {
1799
+ narrow: /^[1234]/i,
1800
+ abbreviated: /^[1234](-?[ыои]?й?)? кв.?/i,
1801
+ wide: /^[1234](-?[ыои]?й?)? квартал/i
1802
+ };
1803
+ var parseQuarterPatterns = {
1804
+ any: [/1/i, /2/i, /3/i, /4/i]
1805
+ };
1806
+ var matchMonthPatterns = {
1807
+ narrow: /^[яфмаисонд]/i,
1808
+ abbreviated: /^(янв|фев|март?|апр|ма[йя]|июн[ья]?|июл[ья]?|авг|сент?|окт|нояб?|дек)\.?/i,
1809
+ wide: /^(январ[ья]|феврал[ья]|марта?|апрел[ья]|ма[йя]|июн[ья]|июл[ья]|августа?|сентябр[ья]|октябр[ья]|октябр[ья]|ноябр[ья]|декабр[ья])/i
1810
+ };
1811
+ var parseMonthPatterns = {
1812
+ narrow: [/^я/i, /^ф/i, /^м/i, /^а/i, /^м/i, /^и/i, /^и/i, /^а/i, /^с/i, /^о/i, /^н/i, /^я/i],
1813
+ any: [/^я/i, /^ф/i, /^мар/i, /^ап/i, /^ма[йя]/i, /^июн/i, /^июл/i, /^ав/i, /^с/i, /^о/i, /^н/i, /^д/i]
1814
+ };
1815
+ var matchDayPatterns = {
1816
+ narrow: /^[впсч]/i,
1817
+ short: /^(вс|во|пн|по|вт|ср|чт|че|пт|пя|сб|су)\.?/i,
1818
+ abbreviated: /^(вск|вос|пнд|пон|втр|вто|срд|сре|чтв|чет|птн|пят|суб).?/i,
1819
+ wide: /^(воскресень[ея]|понедельника?|вторника?|сред[аы]|четверга?|пятниц[аы]|суббот[аы])/i
1820
+ };
1821
+ var parseDayPatterns = {
1822
+ narrow: [/^в/i, /^п/i, /^в/i, /^с/i, /^ч/i, /^п/i, /^с/i],
1823
+ any: [/^в[ос]/i, /^п[он]/i, /^в/i, /^ср/i, /^ч/i, /^п[ят]/i, /^с[уб]/i]
1824
+ };
1825
+ var matchDayPeriodPatterns = {
1826
+ narrow: /^([дп]п|полн\.?|полд\.?|утр[оа]|день|дня|веч\.?|ноч[ьи])/i,
1827
+ abbreviated: /^([дп]п|полн\.?|полд\.?|утр[оа]|день|дня|веч\.?|ноч[ьи])/i,
1828
+ wide: /^([дп]п|полночь|полдень|утр[оа]|день|дня|вечера?|ноч[ьи])/i
1829
+ };
1830
+ var parseDayPeriodPatterns = {
1831
+ any: {
1832
+ am: /^дп/i,
1833
+ pm: /^пп/i,
1834
+ midnight: /^полн/i,
1835
+ noon: /^полд/i,
1836
+ morning: /^у/i,
1837
+ afternoon: /^д[ен]/i,
1838
+ evening: /^в/i,
1839
+ night: /^н/i
1840
+ }
1841
+ };
1842
+ var match = {
1843
+ ordinalNumber: buildMatchPatternFn({
1844
+ matchPattern: matchOrdinalNumberPattern,
1845
+ parsePattern: parseOrdinalNumberPattern,
1846
+ valueCallback: function valueCallback(value) {
1847
+ return parseInt(value, 10);
1848
+ }
1849
+ }),
1850
+ era: buildMatchFn({
1851
+ matchPatterns: matchEraPatterns,
1852
+ defaultMatchWidth: 'wide',
1853
+ parsePatterns: parseEraPatterns,
1854
+ defaultParseWidth: 'any'
1855
+ }),
1856
+ quarter: buildMatchFn({
1857
+ matchPatterns: matchQuarterPatterns,
1858
+ defaultMatchWidth: 'wide',
1859
+ parsePatterns: parseQuarterPatterns,
1860
+ defaultParseWidth: 'any',
1861
+ valueCallback: function valueCallback(index) {
1862
+ return index + 1;
1863
+ }
1864
+ }),
1865
+ month: buildMatchFn({
1866
+ matchPatterns: matchMonthPatterns,
1867
+ defaultMatchWidth: 'wide',
1868
+ parsePatterns: parseMonthPatterns,
1869
+ defaultParseWidth: 'any'
1870
+ }),
1871
+ day: buildMatchFn({
1872
+ matchPatterns: matchDayPatterns,
1873
+ defaultMatchWidth: 'wide',
1874
+ parsePatterns: parseDayPatterns,
1875
+ defaultParseWidth: 'any'
1876
+ }),
1877
+ dayPeriod: buildMatchFn({
1878
+ matchPatterns: matchDayPeriodPatterns,
1879
+ defaultMatchWidth: 'wide',
1880
+ parsePatterns: parseDayPeriodPatterns,
1881
+ defaultParseWidth: 'any'
1882
+ })
1883
+ };
1884
+
1885
+ /**
1886
+ * @type {Locale}
1887
+ * @category Locales
1888
+ * @summary Russian locale.
1889
+ * @language Russian
1890
+ * @iso-639-2 rus
1891
+ * @author Sasha Koss [@kossnocorp]{@link https://github.com/kossnocorp}
1892
+ * @author Lesha Koss [@leshakoss]{@link https://github.com/leshakoss}
1893
+ */
1894
+ var locale = {
1895
+ code: 'ru',
1896
+ formatDistance: formatDistance,
1897
+ formatLong: formatLong,
1898
+ formatRelative: formatRelative,
1899
+ localize: localize,
1900
+ match: match,
1901
+ options: {
1902
+ weekStartsOn: 1 /* Monday */,
1903
+ firstWeekContainsDate: 1
1904
+ }
1905
+ };
1906
+
1907
+ var hyAm = {exports: {}};
1908
+
1909
+ (function (module, exports) {
1910
+ !function(_,e){module.exports=e(dayjs);}(commonjsGlobal,(function(_){function e(_){return _&&"object"==typeof _&&"default"in _?_:{default:_}}var t=e(_),d={name:"hy-am",weekdays:"կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ".split("_"),months:"հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի".split("_"),weekStart:1,weekdaysShort:"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),monthsShort:"հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ".split("_"),weekdaysMin:"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),ordinal:function(_){return _},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY թ.",LLL:"D MMMM YYYY թ., HH:mm",LLLL:"dddd, D MMMM YYYY թ., HH:mm"},relativeTime:{future:"%s հետո",past:"%s առաջ",s:"մի քանի վայրկյան",m:"րոպե",mm:"%d րոպե",h:"ժամ",hh:"%d ժամ",d:"օր",dd:"%d օր",M:"ամիս",MM:"%d ամիս",y:"տարի",yy:"%d տարի"}};return t.default.locale(d,null,!0),d}));
1911
+ } (hyAm));
1912
+
1913
+ var ru = {exports: {}};
1914
+
1915
+ (function (module, exports) {
1916
+ !function(_,t){module.exports=t(dayjs);}(commonjsGlobal,(function(_){function t(_){return _&&"object"==typeof _&&"default"in _?_:{default:_}}var e=t(_),n="января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),s="январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),r="янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),o="янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_"),i=/D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;function d(_,t,e){var n,s;return "m"===e?t?"минута":"минуту":_+" "+(n=+_,s={mm:t?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"}[e].split("_"),n%10==1&&n%100!=11?s[0]:n%10>=2&&n%10<=4&&(n%100<10||n%100>=20)?s[1]:s[2])}var u=function(_,t){return i.test(t)?n[_.month()]:s[_.month()]};u.s=s,u.f=n;var a=function(_,t){return i.test(t)?r[_.month()]:o[_.month()]};a.s=o,a.f=r;var m={name:"ru",weekdays:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),weekdaysShort:"вск_пнд_втр_срд_чтв_птн_сбт".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),months:u,monthsShort:a,weekStart:1,yearStart:4,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:d,mm:d,h:"час",hh:d,d:"день",dd:d,M:"месяц",MM:d,y:"год",yy:d},ordinal:function(_){return _},meridiem:function(_){return _<4?"ночи":_<12?"утра":_<17?"дня":"вечера"}};return e.default.locale(m,null,!0),m}));
1917
+ } (ru));
1918
+
1919
+ var en = {exports: {}};
1920
+
1921
+ (function (module, exports) {
1922
+ !function(e,n){module.exports=n();}(commonjsGlobal,(function(){return {name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var n=["th","st","nd","rd"],t=e%100;return "["+e+(n[(t-20)%10]||n[t]||n[0])+"]"}}}));
1923
+ } (en));
1924
+
1925
+ registerLocale('hy', locale$2);
1926
+ registerLocale('en', locale$1);
1927
+ registerLocale('ru', locale);
1928
+ function useImportFilesDynamically(dayjsLocale) {
1929
+ var _useState = useState(false),
1930
+ _useState2 = _slicedToArray(_useState, 2);
1931
+ _useState2[0];
1932
+ var setIsFilesLoaded = _useState2[1];
1933
+ useEffect(function () {
1934
+ if (dayjsLocale) {
1935
+ _asyncToGenerator(/*#__PURE__*/regenerator.mark(function _callee() {
1936
+ return regenerator.wrap(function _callee$(_context) {
1937
+ while (1) switch (_context.prev = _context.next) {
1938
+ case 0:
1939
+ setIsFilesLoaded(false);
1940
+ locale$3(dayjsLocale);
1941
+ setTimeout(function () {
1942
+ setIsFilesLoaded(true);
1943
+ }, 0);
1944
+ case 3:
1945
+ case "end":
1946
+ return _context.stop();
1947
+ }
1948
+ }, _callee);
1949
+ }))();
1950
+ }
1951
+ }, [dayjsLocale]);
1952
+ }
1953
+
1954
+ export { useImportFilesDynamically };