@bbl-digital/snorre 4.2.93 → 4.2.95

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 (2300) hide show
  1. package/dist/_virtual/memoize-one.esm.js +6 -0
  2. package/dist/app-shell/index.js +35 -0
  3. package/dist/core/Alert/index.js +54 -0
  4. package/dist/core/AppLoader/index.js +26 -0
  5. package/dist/core/Autocomplete/hooks/useAutocomplete.js +127 -0
  6. package/dist/core/Autocomplete/index.js +128 -0
  7. package/dist/core/Autocomplete/styles.js +220 -0
  8. package/dist/core/Banner/index.js +33 -0
  9. package/dist/core/Banner/styles.js +45 -0
  10. package/dist/core/BarAndLineComposedChart/index.js +128 -0
  11. package/dist/core/BarChartWithCustomizedEvent/index.js +117 -0
  12. package/dist/core/Box/index.js +62 -0
  13. package/dist/core/Box/styles.js +51 -0
  14. package/dist/core/BoxedTable/DraggableRow/index.js +38 -0
  15. package/dist/core/BoxedTable/DraggableRow/styles.js +33 -0
  16. package/dist/core/BoxedTable/HeaderCell/index.js +146 -0
  17. package/dist/core/BoxedTable/RowCell/index.js +38 -0
  18. package/dist/core/BoxedTable/TableHeader/index.js +6 -0
  19. package/dist/core/BoxedTable/TableRow/index.js +48 -0
  20. package/dist/core/BoxedTable/index.js +45 -0
  21. package/dist/core/BoxedTable/styles.js +201 -0
  22. package/dist/core/Button/index.js +66 -0
  23. package/dist/core/Calendar/CalendarEvent/index.js +60 -0
  24. package/dist/core/Calendar/CalendarEvent/styles.js +59 -0
  25. package/dist/core/Calendar/CalendarSmallEvent/index.js +51 -0
  26. package/dist/core/Calendar/CalendarSmallEvent/styles.js +77 -0
  27. package/dist/core/Calendar/index.js +70 -0
  28. package/dist/core/Calendar/util.js +10 -0
  29. package/dist/core/Card/index.js +39 -0
  30. package/dist/core/Checkbox/index.js +68 -0
  31. package/dist/core/CollapseList/Item.js +182 -0
  32. package/dist/core/CollapseList/index.js +9 -0
  33. package/dist/core/CollapseList/styles.js +39 -0
  34. package/dist/core/CommentsTimeline/CommentLine/index.js +156 -0
  35. package/dist/core/CommentsTimeline/CommentLine/styles.js +65 -0
  36. package/dist/core/CommentsTimeline/index.js +6 -0
  37. package/dist/core/CustomText/index.js +27 -0
  38. package/dist/core/Datepicker/index.js +247 -0
  39. package/dist/core/Datepicker/styles.js +237 -0
  40. package/dist/core/DatepickerRange/index.js +36 -0
  41. package/dist/core/DatepickerRange/styles.js +173 -0
  42. package/dist/core/Divider/index.js +27 -0
  43. package/dist/core/Dropdown/index.js +79 -0
  44. package/dist/core/DropdownMenu/DropdownMenuOption.js +27 -0
  45. package/dist/core/DropdownMenu/index.js +42 -0
  46. package/dist/core/FileInput/index.js +210 -0
  47. package/dist/core/FileInput/styles.js +98 -0
  48. package/dist/core/GoogleButton/index.js +23 -0
  49. package/dist/core/Header/index.js +37 -0
  50. package/dist/core/Header/styles.js +49 -0
  51. package/dist/core/HighlightText/index.js +20 -0
  52. package/dist/core/Html/index.js +43 -0
  53. package/dist/core/Image/index.js +51 -0
  54. package/dist/core/ImagePicker/IconWithBackground.js +21 -0
  55. package/dist/core/ImagePicker/UploadButton.js +40 -0
  56. package/dist/core/ImagePicker/index.js +151 -0
  57. package/dist/core/ImagePicker/styles.js +120 -0
  58. package/dist/core/ImageViewer/index.js +106 -0
  59. package/dist/core/InfoButton/index.js +63 -0
  60. package/dist/core/InfoButton/styles.js +125 -0
  61. package/dist/core/Input/index.js +127 -0
  62. package/dist/core/Link/index.js +47 -0
  63. package/dist/core/List/index.js +36 -0
  64. package/dist/core/ListPager/index.js +49 -0
  65. package/dist/core/MediaCarousel/index.js +80 -0
  66. package/dist/core/Modal/ActionButtons/index.js +14 -0
  67. package/dist/core/Modal/index.js +267 -0
  68. package/dist/core/Modal/styles.js +104 -0
  69. package/dist/core/NoticeCard/index.js +90 -0
  70. package/dist/core/NoticeCard/privateComponents/NoticeAttachmentBlock/index.js +39 -0
  71. package/dist/core/NoticeCard/privateComponents/NoticeAttachmentList/index.js +20 -0
  72. package/dist/core/NoticeCard/privateComponents/NoticeMetaInfo/index.js +141 -0
  73. package/dist/core/NoticeCard/styles.js +66 -0
  74. package/dist/core/NoticeCard/utils.js +139 -0
  75. package/dist/core/NotificationCounter/index.js +19 -0
  76. package/dist/core/NotificationsMenu/NotificationRow/index.js +33 -0
  77. package/dist/core/NotificationsMenu/NotificationRow/styles.js +43 -0
  78. package/dist/core/NotificationsMenu/index.js +69 -0
  79. package/dist/core/PieChart/ActiveShape/index.js +34 -0
  80. package/dist/core/PieChart/index.js +82 -0
  81. package/dist/core/PieChart/renderTextContent/index.js +48 -0
  82. package/dist/core/PreemptionCard/index.js +77 -0
  83. package/dist/core/PreemptionCard/styles.js +160 -0
  84. package/dist/core/PreemptionCardLoading/index.js +19 -0
  85. package/dist/core/QuillEditor/classes/LinkSanitizer.js +25 -0
  86. package/dist/core/QuillEditor/index.js +308 -0
  87. package/dist/core/Radio/index.js +43 -0
  88. package/dist/core/SearchFilter/index.js +149 -0
  89. package/dist/core/SearchFilter/styles.js +133 -0
  90. package/dist/core/SearchSelect/hooks/useSelectSearch.js +24 -0
  91. package/dist/core/SearchSelect/index.js +90 -0
  92. package/dist/core/Select/Option.js +30 -0
  93. package/dist/core/Select/index.js +131 -0
  94. package/dist/core/SimpleBarChart/index.js +100 -0
  95. package/dist/core/SimpleLineChart/index.js +103 -0
  96. package/dist/core/Skeleton/index.js +27 -0
  97. package/dist/core/Spinner/index.js +24 -0
  98. package/dist/core/Stepper/MobileStep/index.js +24 -0
  99. package/dist/core/Stepper/Step/index.js +55 -0
  100. package/dist/core/Stepper/index.js +39 -0
  101. package/dist/core/TabBar/TabItem/index.js +10 -0
  102. package/dist/core/TabBar/index.js +6 -0
  103. package/dist/core/TabNav/TabContext.js +34 -0
  104. package/dist/core/TabNav/TabNavItem/index.js +80 -0
  105. package/dist/core/TabNav/index.js +109 -0
  106. package/dist/core/TabNav/styles.js +88 -0
  107. package/dist/core/Table/Cell.js +30 -0
  108. package/dist/core/Table/Row.js +31 -0
  109. package/dist/core/Table/index.js +14 -0
  110. package/dist/core/Tag/index.js +60 -0
  111. package/dist/core/Text/index.js +55 -0
  112. package/dist/core/Textarea/index.js +171 -0
  113. package/dist/core/Timeline/TimelineStep/index.js +26 -0
  114. package/dist/core/Timeline/index.js +6 -0
  115. package/dist/core/Timepicker/index.js +217 -0
  116. package/dist/core/Tooltip/index.js +27 -0
  117. package/dist/core/UnitIllustration/index.js +32 -0
  118. package/dist/core/UserMenu/UserMenuOption.js +18 -0
  119. package/dist/core/UserMenu/index.js +64 -0
  120. package/dist/core/Video/index.js +66 -0
  121. package/dist/core/YearWheel/index.js +271 -0
  122. package/dist/core/private/ButtonOrLink.js +65 -0
  123. package/dist/globals/validation/regularExpressions.js +22 -0
  124. package/dist/icons/General/IconApartment.js +6 -0
  125. package/dist/icons/General/IconArchives.js +6 -0
  126. package/dist/icons/General/IconArea.js +6 -0
  127. package/dist/icons/General/IconArrowDown.js +6 -0
  128. package/dist/icons/General/IconArrowLeft.js +6 -0
  129. package/dist/icons/General/IconArrowRight.js +6 -0
  130. package/dist/icons/General/IconArrowUp.js +6 -0
  131. package/dist/icons/General/IconAttachment.js +6 -0
  132. package/dist/icons/General/IconAuditorFilled.js +26 -0
  133. package/dist/icons/General/IconAuditorOutline.js +26 -0
  134. package/dist/icons/General/IconBack.js +6 -0
  135. package/dist/icons/General/IconBath.js +6 -0
  136. package/dist/icons/General/IconBblFlame.js +18 -0
  137. package/dist/icons/General/IconBblShield.js +18 -0
  138. package/dist/icons/General/IconBblWater.js +18 -0
  139. package/dist/icons/General/IconBellFilled.js +6 -0
  140. package/dist/icons/General/IconBellOutline.js +6 -0
  141. package/dist/icons/General/IconBlock.js +6 -0
  142. package/dist/icons/General/IconBoard.js +6 -0
  143. package/dist/icons/General/IconBookmarkFilled.js +6 -0
  144. package/dist/icons/General/IconBookmarkOutline.js +6 -0
  145. package/dist/icons/General/IconBus.js +6 -0
  146. package/dist/icons/General/IconCalendar.js +6 -0
  147. package/dist/icons/General/IconCamera.js +9 -0
  148. package/dist/icons/General/IconCar.js +6 -0
  149. package/dist/icons/General/IconCaretDown.js +6 -0
  150. package/dist/icons/General/IconCaretLeft.js +6 -0
  151. package/dist/icons/General/IconCaretRight.js +6 -0
  152. package/dist/icons/General/IconCaretUp.js +6 -0
  153. package/dist/icons/General/IconCases.js +16 -0
  154. package/dist/icons/General/IconCheck.js +6 -0
  155. package/dist/icons/General/IconCheckedFilled.js +6 -0
  156. package/dist/icons/General/IconCheckedOutline.js +6 -0
  157. package/dist/icons/General/IconChevronDown.js +12 -0
  158. package/dist/icons/General/IconChevronLeft.js +6 -0
  159. package/dist/icons/General/IconChevronRight.js +6 -0
  160. package/dist/icons/General/IconChoice.js +6 -0
  161. package/dist/icons/General/IconClose.js +6 -0
  162. package/dist/icons/General/IconCloseAlt.js +6 -0
  163. package/dist/icons/General/IconComment.js +6 -0
  164. package/dist/icons/General/IconCommunication.js +6 -0
  165. package/dist/icons/General/IconCommunicationFilled.js +12 -0
  166. package/dist/icons/General/IconCompanyBuilding.js +6 -0
  167. package/dist/icons/General/IconCompanyBuildingFilled.js +6 -0
  168. package/dist/icons/General/IconCompanyBuildingOutline.js +8 -0
  169. package/dist/icons/General/IconDashboard.js +6 -0
  170. package/dist/icons/General/IconDashboardFilled.js +6 -0
  171. package/dist/icons/General/IconDelete.js +6 -0
  172. package/dist/icons/General/IconDocument.js +27 -0
  173. package/dist/icons/General/IconDocumentFilled.js +26 -0
  174. package/dist/icons/General/IconDoor.js +6 -0
  175. package/dist/icons/General/IconDotFilled.js +6 -0
  176. package/dist/icons/General/IconDotOutline.js +6 -0
  177. package/dist/icons/General/IconDownload.js +6 -0
  178. package/dist/icons/General/IconDraft.js +6 -0
  179. package/dist/icons/General/IconEarth.js +6 -0
  180. package/dist/icons/General/IconEconomy.js +6 -0
  181. package/dist/icons/General/IconEconomyFilled.js +6 -0
  182. package/dist/icons/General/IconEdit.js +6 -0
  183. package/dist/icons/General/IconElevator.js +6 -0
  184. package/dist/icons/General/IconEmailMarkAsRead.js +6 -0
  185. package/dist/icons/General/IconErrorFilled.js +6 -0
  186. package/dist/icons/General/IconErrorOutline.js +6 -0
  187. package/dist/icons/General/IconExternalLink.js +6 -0
  188. package/dist/icons/General/IconEye.js +6 -0
  189. package/dist/icons/General/IconEyeDeny.js +6 -0
  190. package/dist/icons/General/IconFamily.js +6 -0
  191. package/dist/icons/General/IconFerry.js +6 -0
  192. package/dist/icons/General/IconFile.js +6 -0
  193. package/dist/icons/General/IconFileAdd.js +6 -0
  194. package/dist/icons/General/IconFileCopy.js +6 -0
  195. package/dist/icons/General/IconFileEdit.js +6 -0
  196. package/dist/icons/General/IconFileExcel.js +6 -0
  197. package/dist/icons/General/IconFilePDF.js +6 -0
  198. package/dist/icons/General/IconFileWord.js +6 -0
  199. package/dist/icons/General/IconFillOut.js +9 -0
  200. package/dist/icons/General/IconFilterList.js +6 -0
  201. package/dist/icons/General/IconFloor.js +6 -0
  202. package/dist/icons/General/IconForward.js +6 -0
  203. package/dist/icons/General/IconFullscreenClose.js +6 -0
  204. package/dist/icons/General/IconFullscreenOpen.js +6 -0
  205. package/dist/icons/General/IconGarage.js +6 -0
  206. package/dist/icons/General/IconGrid.js +6 -0
  207. package/dist/icons/General/IconGym.js +6 -0
  208. package/dist/icons/General/IconHearth.js +6 -0
  209. package/dist/icons/General/IconHearthOutline.js +6 -0
  210. package/dist/icons/General/IconHelp.js +6 -0
  211. package/dist/icons/General/IconHistory.js +6 -0
  212. package/dist/icons/General/IconHomeFilled.js +12 -0
  213. package/dist/icons/General/IconHomeOutline.js +12 -0
  214. package/dist/icons/General/IconHouse.js +6 -0
  215. package/dist/icons/General/IconHouseBlockFilled.js +12 -0
  216. package/dist/icons/General/IconHouseBlockOutline.js +12 -0
  217. package/dist/icons/General/IconHouseOutline.js +6 -0
  218. package/dist/icons/General/IconHumans.js +6 -0
  219. package/dist/icons/General/IconImage.js +35 -0
  220. package/dist/icons/General/IconImportantComment.js +6 -0
  221. package/dist/icons/General/IconInbox.js +6 -0
  222. package/dist/icons/General/IconInfoFilled.js +6 -0
  223. package/dist/icons/General/IconInfoOutline.js +6 -0
  224. package/dist/icons/General/IconJanitorFilled.js +26 -0
  225. package/dist/icons/General/IconJanitorOutline.js +26 -0
  226. package/dist/icons/General/IconJointcost.js +6 -0
  227. package/dist/icons/General/IconJointcost2.js +6 -0
  228. package/dist/icons/General/IconKey.js +6 -0
  229. package/dist/icons/General/IconKitchen.js +6 -0
  230. package/dist/icons/General/IconLabel.js +6 -0
  231. package/dist/icons/General/IconLeafFilled.js +12 -0
  232. package/dist/icons/General/IconLeafOutline.js +13 -0
  233. package/dist/icons/General/IconLeisureTime.js +6 -0
  234. package/dist/icons/General/IconLock.js +6 -0
  235. package/dist/icons/General/IconLockLocked.js +6 -0
  236. package/dist/icons/General/IconLockOpen.js +6 -0
  237. package/dist/icons/General/IconLookup.js +6 -0
  238. package/dist/icons/General/IconLookupFilled.js +6 -0
  239. package/dist/icons/General/IconMail.js +6 -0
  240. package/dist/icons/General/IconMap.js +6 -0
  241. package/dist/icons/General/IconMedal.js +6 -0
  242. package/dist/icons/General/IconMembership.js +6 -0
  243. package/dist/icons/General/IconMembershipFilled.js +6 -0
  244. package/dist/icons/General/IconMenu.js +6 -0
  245. package/dist/icons/General/IconMinus.js +6 -0
  246. package/dist/icons/General/IconMinusAlt.js +6 -0
  247. package/dist/icons/General/IconMinusAltFilled.js +6 -0
  248. package/dist/icons/General/IconMoney.js +6 -0
  249. package/dist/icons/General/IconParking.js +6 -0
  250. package/dist/icons/General/IconPaymentCard.js +6 -0
  251. package/dist/icons/General/IconPercent.js +6 -0
  252. package/dist/icons/General/IconPhone.js +6 -0
  253. package/dist/icons/General/IconPinned.js +6 -0
  254. package/dist/icons/General/IconPlus.js +6 -0
  255. package/dist/icons/General/IconPlusAlt.js +6 -0
  256. package/dist/icons/General/IconPortalUser.js +6 -0
  257. package/dist/icons/General/IconPrint.js +6 -0
  258. package/dist/icons/General/IconProfile.js +6 -0
  259. package/dist/icons/General/IconProfileFilled.js +6 -0
  260. package/dist/icons/General/IconRearrange.js +26 -0
  261. package/dist/icons/General/IconReciept.js +6 -0
  262. package/dist/icons/General/IconRedo.js +6 -0
  263. package/dist/icons/General/IconRefresh.js +6 -0
  264. package/dist/icons/General/IconReply.js +6 -0
  265. package/dist/icons/General/IconReplyAll.js +6 -0
  266. package/dist/icons/General/IconRoom.js +6 -0
  267. package/dist/icons/General/IconSave.js +6 -0
  268. package/dist/icons/General/IconSearch.js +6 -0
  269. package/dist/icons/General/IconSend.js +6 -0
  270. package/dist/icons/General/IconSettings.js +6 -0
  271. package/dist/icons/General/IconShopping.js +6 -0
  272. package/dist/icons/General/IconSign.js +6 -0
  273. package/dist/icons/General/IconSliders.js +6 -0
  274. package/dist/icons/General/IconSort.js +6 -0
  275. package/dist/icons/General/IconStarFilled.js +6 -0
  276. package/dist/icons/General/IconStarHalf.js +6 -0
  277. package/dist/icons/General/IconStarOutline.js +6 -0
  278. package/dist/icons/General/IconStore.js +6 -0
  279. package/dist/icons/General/IconSubway.js +6 -0
  280. package/dist/icons/General/IconSwitch.js +6 -0
  281. package/dist/icons/General/IconTrain.js +6 -0
  282. package/dist/icons/General/IconTram.js +6 -0
  283. package/dist/icons/General/IconTransport.js +6 -0
  284. package/dist/icons/General/IconTypeOfBuilding.js +6 -0
  285. package/dist/icons/General/IconTypeOfBuildingOutline.js +6 -0
  286. package/dist/icons/General/IconUndo.js +6 -0
  287. package/dist/icons/General/IconUpload.js +6 -0
  288. package/dist/icons/General/IconUser.js +6 -0
  289. package/dist/icons/General/IconUserThin.js +6 -0
  290. package/dist/icons/General/IconVote.js +6 -0
  291. package/dist/icons/General/IconWalk.js +6 -0
  292. package/dist/icons/General/IconWarning.js +6 -0
  293. package/dist/icons/General/IconWarningBell.js +6 -0
  294. package/dist/icons/General/IconWork.js +6 -0
  295. package/dist/icons/General/IconWorkFilled.js +6 -0
  296. package/dist/icons/General/IconZip.js +6 -0
  297. package/dist/icons/Logos/IconAmericanExpress.js +13 -0
  298. package/dist/icons/Logos/IconBankAxept.js +70 -0
  299. package/dist/icons/Logos/IconGmail.js +52 -0
  300. package/dist/icons/Logos/IconMasterCard.js +30 -0
  301. package/dist/icons/Logos/IconOffice365.js +127 -0
  302. package/dist/icons/Logos/IconVisa.js +45 -0
  303. package/dist/icons/withIcon.js +47 -0
  304. package/dist/illustrations/Backgrounds/IllustrationHousesBackground.js +10633 -0
  305. package/dist/illustrations/Backgrounds/IllustrationHousesBackgroundWithComposition.js +12799 -0
  306. package/dist/illustrations/General/IllustrationBudget.js +379 -0
  307. package/dist/illustrations/General/IllustrationError.js +942 -0
  308. package/dist/illustrations/General/IllustrationErrorGeneric.js +828 -0
  309. package/dist/illustrations/General/IllustrationHighHouse.js +38 -0
  310. package/dist/illustrations/General/IllustrationHighHouseComposition.js +407 -0
  311. package/dist/illustrations/General/IllustrationHouse.js +31 -0
  312. package/dist/illustrations/General/IllustrationHouseComposition.js +182 -0
  313. package/dist/illustrations/General/IllustrationHouseMissing.js +264 -0
  314. package/dist/illustrations/General/IllustrationLowHouse.js +23 -0
  315. package/dist/illustrations/General/IllustrationLowHouseComposition.js +250 -0
  316. package/dist/illustrations/General/IllustrationPaperCompleted.js +299 -0
  317. package/dist/illustrations/General/IllustrationPaperMissing.js +361 -0
  318. package/dist/illustrations/General/IllustrationSemiDetachedHouse.js +39 -0
  319. package/dist/illustrations/General/IllustrationSemiDetachedHouseComposition.js +205 -0
  320. package/dist/illustrations/General/IllustrationServiceMessage.js +41 -0
  321. package/dist/illustrations/General/IllustrationSmallHouse.js +21 -0
  322. package/dist/illustrations/General/IllustrationSmallHouseComposition.js +149 -0
  323. package/dist/illustrations/General/IllustrationTechninalDifficulties.js +172 -0
  324. package/dist/illustrations/General/IllustrationTerraceBlock.js +34 -0
  325. package/dist/illustrations/General/IllustrationTerraceBlockComposition.js +338 -0
  326. package/dist/illustrations/General/IllustrationTownHouse.js +41 -0
  327. package/dist/illustrations/General/IllustrationTownHouseComposition.js +239 -0
  328. package/dist/illustrations/MySite/IllustrationMySiteAssociation.js +68 -0
  329. package/dist/illustrations/MySite/IllustrationMySiteBenefits.js +278 -0
  330. package/dist/illustrations/MySite/IllustrationMySiteBuilding.js +255 -0
  331. package/dist/illustrations/MySite/IllustrationMySiteCoffeeBook.js +212 -0
  332. package/dist/illustrations/MySite/IllustrationMySiteComputer.js +206 -0
  333. package/dist/illustrations/MySite/IllustrationMySiteCooperative.js +103 -0
  334. package/dist/illustrations/MySite/IllustrationMySiteDashboard.js +104 -0
  335. package/dist/illustrations/MySite/IllustrationMySiteGift.js +466 -0
  336. package/dist/illustrations/MySite/IllustrationMySiteLetterSent.js +116 -0
  337. package/dist/illustrations/MySite/IllustrationMySiteMailbox.js +122 -0
  338. package/dist/illustrations/MySite/IllustrationMySitePapers.js +390 -0
  339. package/dist/illustrations/MySite/IllustrationMySitePiggyBank.js +373 -0
  340. package/dist/illustrations/MySite/IllustrationMySiteTransfer.js +191 -0
  341. package/dist/illustrations/styles.js +81 -0
  342. package/dist/illustrations/withIllustration.js +45 -0
  343. package/dist/index.d.ts +2 -0
  344. package/dist/layout/Footer/FooterButton/index.js +6 -0
  345. package/dist/layout/Footer/FooterButton/styles.js +18 -0
  346. package/dist/layout/Footer/FooterCol/index.js +6 -0
  347. package/dist/layout/Footer/FooterGroup/index.js +6 -0
  348. package/dist/layout/Footer/FooterLabel/index.js +6 -0
  349. package/dist/layout/Footer/FooterLink/index.js +6 -0
  350. package/dist/layout/Footer/FooterLink/styles.js +22 -0
  351. package/dist/layout/Footer/index.js +6 -0
  352. package/dist/layout/Footer/styles.js +28 -0
  353. package/dist/layout/Layout/index.js +6 -0
  354. package/dist/layout/LayoutShell/index.js +50 -0
  355. package/dist/layout/LayoutShell/styles.js +64 -0
  356. package/dist/layout/Menu/AppPicker/index.js +66 -0
  357. package/dist/layout/Menu/AppPicker/styles.js +73 -0
  358. package/dist/layout/Menu/MainMenu/index.js +6 -0
  359. package/dist/layout/Menu/MainMenu/styles.js +34 -0
  360. package/dist/layout/Menu/MenuItem/index.js +44 -0
  361. package/dist/layout/Menu/MenuItem/styles.js +79 -0
  362. package/dist/layout/Menu/MenuSpacer/index.js +6 -0
  363. package/dist/layout/Menu/MenuSpacer/styles.js +20 -0
  364. package/dist/layout/Menu/MenuTop/index.js +19 -0
  365. package/dist/layout/Menu/MenuTop/styles.js +49 -0
  366. package/dist/layout/Menu/SecondaryMenu/index.js +158 -0
  367. package/dist/layout/Menu/SecondaryMenu/styles.js +86 -0
  368. package/dist/layout/Menu/SecondaryMenuItem/index.js +30 -0
  369. package/dist/layout/Menu/SecondaryMenuItem/styles.js +40 -0
  370. package/dist/layout/Menu/index.js +10 -0
  371. package/dist/layout/Menu/styles.js +33 -0
  372. package/dist/layout/Submenu/SubmenuItem/index.js +61 -0
  373. package/dist/layout/Submenu/SubmenuItem/styles.js +35 -0
  374. package/dist/layout/Submenu/SubmenuLightThemeBg/index.js +46 -0
  375. package/dist/layout/Submenu/index.js +85 -0
  376. package/dist/layout/Submenu/styles.js +158 -0
  377. package/dist/layout/Topbar/index.js +10 -0
  378. package/dist/node_modules/@babel/runtime/helpers/esm/defineProperty.js +12 -0
  379. package/dist/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +7 -0
  380. package/dist/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +25 -0
  381. package/dist/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +14 -0
  382. package/dist/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +9 -0
  383. package/dist/node_modules/@date-fns/tz/date/index.js +66 -0
  384. package/dist/node_modules/@date-fns/tz/date/mini.js +64 -0
  385. package/dist/node_modules/@emotion/cache/dist/emotion-cache.browser.esm.js +245 -0
  386. package/dist/node_modules/@emotion/react/dist/emotion-element-f0de968e.browser.esm.js +56 -0
  387. package/dist/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.esm.js +14 -0
  388. package/dist/node_modules/@emotion/serialize/dist/emotion-serialize.esm.js +127 -0
  389. package/dist/node_modules/@popperjs/core/lib/createPopper.js +122 -0
  390. package/dist/node_modules/@popperjs/core/lib/dom-utils/contains.js +18 -0
  391. package/dist/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js +23 -0
  392. package/dist/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js +37 -0
  393. package/dist/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js +32 -0
  394. package/dist/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js +7 -0
  395. package/dist/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js +10 -0
  396. package/dist/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js +17 -0
  397. package/dist/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js +13 -0
  398. package/dist/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js +10 -0
  399. package/dist/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js +35 -0
  400. package/dist/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js +18 -0
  401. package/dist/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js +10 -0
  402. package/dist/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js +21 -0
  403. package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js +11 -0
  404. package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js +9 -0
  405. package/dist/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js +20 -0
  406. package/dist/node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js +7 -0
  407. package/dist/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js +8 -0
  408. package/dist/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js +7 -0
  409. package/dist/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js +16 -0
  410. package/dist/node_modules/@popperjs/core/lib/modifiers/applyStyles.js +47 -0
  411. package/dist/node_modules/@popperjs/core/lib/modifiers/arrow.js +37 -0
  412. package/dist/node_modules/@popperjs/core/lib/modifiers/computeStyles.js +99 -0
  413. package/dist/node_modules/@popperjs/core/lib/modifiers/eventListeners.js +26 -0
  414. package/dist/node_modules/@popperjs/core/lib/modifiers/flip.js +74 -0
  415. package/dist/node_modules/@popperjs/core/lib/modifiers/hide.js +44 -0
  416. package/dist/node_modules/@popperjs/core/lib/modifiers/offset.js +31 -0
  417. package/dist/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js +19 -0
  418. package/dist/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js +54 -0
  419. package/dist/node_modules/@popperjs/core/lib/popper.js +27 -0
  420. package/dist/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js +27 -0
  421. package/dist/node_modules/@popperjs/core/lib/utils/computeOffsets.js +54 -0
  422. package/dist/node_modules/@popperjs/core/lib/utils/detectOverflow.js +33 -0
  423. package/dist/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js +7 -0
  424. package/dist/node_modules/@popperjs/core/lib/utils/orderModifiers.js +31 -0
  425. package/dist/node_modules/@popperjs/core/lib/utils/within.js +12 -0
  426. package/dist/node_modules/@react-aria/interactions/dist/focusSafely.js +17 -0
  427. package/dist/node_modules/@react-aria/interactions/dist/useFocus.js +30 -0
  428. package/dist/node_modules/@react-aria/interactions/dist/useFocusVisible.js +65 -0
  429. package/dist/node_modules/@react-aria/interactions/dist/useFocusWithin.js +55 -0
  430. package/dist/node_modules/@react-aria/interactions/dist/useFocusable.js +32 -0
  431. package/dist/node_modules/@react-aria/interactions/dist/useHover.js +86 -0
  432. package/dist/node_modules/@react-aria/interactions/dist/useKeyboard.js +12 -0
  433. package/dist/node_modules/@react-aria/interactions/dist/utils.js +73 -0
  434. package/dist/node_modules/@react-aria/tooltip/dist/useTooltip.js +19 -0
  435. package/dist/node_modules/@react-aria/tooltip/dist/useTooltipTrigger.js +60 -0
  436. package/dist/node_modules/@react-aria/utils/dist/DOMFunctions.js +27 -0
  437. package/dist/node_modules/@react-aria/utils/dist/isVirtualEvent.js +7 -0
  438. package/dist/node_modules/@react-aria/utils/dist/mergeProps.js +22 -0
  439. package/dist/node_modules/@react-aria/utils/dist/useEffectEvent.js +16 -0
  440. package/dist/node_modules/@react-aria/utils/dist/useId.js +42 -0
  441. package/dist/node_modules/@react-aria/utils/dist/useSyncRef.js +12 -0
  442. package/dist/node_modules/@react-aria/visually-hidden/dist/VisuallyHidden.js +40 -0
  443. package/dist/node_modules/@react-stately/overlays/dist/useOverlayTriggerState.js +29 -0
  444. package/dist/node_modules/@react-stately/tooltip/dist/useTooltipTriggerState.js +41 -0
  445. package/dist/node_modules/css-box-model/dist/css-box-model.esm.js +112 -0
  446. package/dist/node_modules/date-fns/esm/_lib/defaultLocale/index.js +4 -0
  447. package/dist/node_modules/date-fns/esm/_lib/format/formatters/index.js +571 -0
  448. package/dist/node_modules/date-fns/esm/_lib/format/lightFormatters/index.js +57 -0
  449. package/dist/node_modules/date-fns/esm/_lib/getUTCDayOfYear/index.js +13 -0
  450. package/dist/node_modules/date-fns/esm/_lib/getUTCISOWeek/index.js +13 -0
  451. package/dist/node_modules/date-fns/esm/_lib/getUTCISOWeekYear/index.js +15 -0
  452. package/dist/node_modules/date-fns/esm/_lib/getUTCWeek/index.js +13 -0
  453. package/dist/node_modules/date-fns/esm/_lib/getUTCWeekYear/index.js +21 -0
  454. package/dist/node_modules/date-fns/esm/_lib/startOfUTCISOWeek/index.js +10 -0
  455. package/dist/node_modules/date-fns/esm/_lib/startOfUTCISOWeekYear/index.js +13 -0
  456. package/dist/node_modules/date-fns/esm/_lib/startOfUTCWeek/index.js +16 -0
  457. package/dist/node_modules/date-fns/esm/_lib/startOfUTCWeekYear/index.js +16 -0
  458. package/dist/node_modules/date-fns/esm/addMilliseconds/index.js +11 -0
  459. package/dist/node_modules/date-fns/esm/format/index.js +62 -0
  460. package/dist/node_modules/date-fns/esm/isDate/index.js +8 -0
  461. package/dist/node_modules/date-fns/esm/isValid/index.js +12 -0
  462. package/dist/node_modules/date-fns/esm/locale/en-US/_lib/formatLong/index.js +33 -0
  463. package/dist/node_modules/date-fns/esm/locale/en-US/_lib/localize/index.js +123 -0
  464. package/dist/node_modules/date-fns/esm/locale/en-US/_lib/match/index.js +88 -0
  465. package/dist/node_modules/date-fns/esm/locale/en-US/index.js +20 -0
  466. package/dist/node_modules/date-fns/esm/locale/nb/_lib/formatLong/index.js +33 -0
  467. package/dist/node_modules/date-fns/esm/locale/nb/_lib/localize/index.js +81 -0
  468. package/dist/node_modules/date-fns/esm/locale/nb/_lib/match/index.js +87 -0
  469. package/dist/node_modules/date-fns/esm/locale/nb/index.js +20 -0
  470. package/dist/node_modules/date-fns/esm/subMilliseconds/index.js +11 -0
  471. package/dist/node_modules/date-fns/esm/toDate/index.js +10 -0
  472. package/dist/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js +68 -0
  473. package/dist/node_modules/hoist-non-react-statics/node_modules/react-is/cjs/react-is.development.js +95 -0
  474. package/dist/node_modules/hoist-non-react-statics/node_modules/react-is/cjs/react-is.production.min.js +78 -0
  475. package/dist/node_modules/hoist-non-react-statics/node_modules/react-is/index.js +8 -0
  476. package/dist/node_modules/lodash-es/_DataView.js +6 -0
  477. package/dist/node_modules/lodash-es/_Hash.js +20 -0
  478. package/dist/node_modules/lodash-es/_ListCache.js +20 -0
  479. package/dist/node_modules/lodash-es/_Map.js +6 -0
  480. package/dist/node_modules/lodash-es/_MapCache.js +20 -0
  481. package/dist/node_modules/lodash-es/_Promise.js +6 -0
  482. package/dist/node_modules/lodash-es/_Set.js +6 -0
  483. package/dist/node_modules/lodash-es/_SetCache.js +13 -0
  484. package/dist/node_modules/lodash-es/_Stack.js +18 -0
  485. package/dist/node_modules/lodash-es/_Symbol.js +5 -0
  486. package/dist/node_modules/lodash-es/_Uint8Array.js +5 -0
  487. package/dist/node_modules/lodash-es/_WeakMap.js +6 -0
  488. package/dist/node_modules/lodash-es/_arrayLikeKeys.js +20 -0
  489. package/dist/node_modules/lodash-es/_assignMergeValue.js +8 -0
  490. package/dist/node_modules/lodash-es/_assignValue.js +10 -0
  491. package/dist/node_modules/lodash-es/_assocIndexOf.js +10 -0
  492. package/dist/node_modules/lodash-es/_baseAssignValue.js +12 -0
  493. package/dist/node_modules/lodash-es/_baseClone.js +55 -0
  494. package/dist/node_modules/lodash-es/_baseCreate.js +17 -0
  495. package/dist/node_modules/lodash-es/_baseFor.js +5 -0
  496. package/dist/node_modules/lodash-es/_baseGetAllKeys.js +9 -0
  497. package/dist/node_modules/lodash-es/_baseGetTag.js +10 -0
  498. package/dist/node_modules/lodash-es/_baseIsArguments.js +9 -0
  499. package/dist/node_modules/lodash-es/_baseIsEqual.js +8 -0
  500. package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +32 -0
  501. package/dist/node_modules/lodash-es/_baseIsMap.js +9 -0
  502. package/dist/node_modules/lodash-es/_baseIsNative.js +16 -0
  503. package/dist/node_modules/lodash-es/_baseIsSet.js +9 -0
  504. package/dist/node_modules/lodash-es/_baseIsTypedArray.js +12 -0
  505. package/dist/node_modules/lodash-es/_baseKeys.js +14 -0
  506. package/dist/node_modules/lodash-es/_baseKeysIn.js +15 -0
  507. package/dist/node_modules/lodash-es/_baseMerge.js +20 -0
  508. package/dist/node_modules/lodash-es/_baseMergeDeep.js +31 -0
  509. package/dist/node_modules/lodash-es/_baseRest.js +9 -0
  510. package/dist/node_modules/lodash-es/_baseSetToString.js +14 -0
  511. package/dist/node_modules/lodash-es/_cloneArrayBuffer.js +8 -0
  512. package/dist/node_modules/lodash-es/_cloneBuffer.js +11 -0
  513. package/dist/node_modules/lodash-es/_cloneDataView.js +8 -0
  514. package/dist/node_modules/lodash-es/_cloneSymbol.js +8 -0
  515. package/dist/node_modules/lodash-es/_cloneTypedArray.js +8 -0
  516. package/dist/node_modules/lodash-es/_copyObject.js +14 -0
  517. package/dist/node_modules/lodash-es/_coreJsData.js +5 -0
  518. package/dist/node_modules/lodash-es/_createAssigner.js +15 -0
  519. package/dist/node_modules/lodash-es/_defineProperty.js +11 -0
  520. package/dist/node_modules/lodash-es/_equalArrays.js +40 -0
  521. package/dist/node_modules/lodash-es/_equalByTag.js +45 -0
  522. package/dist/node_modules/lodash-es/_equalObjects.js +36 -0
  523. package/dist/node_modules/lodash-es/_getAllKeys.js +9 -0
  524. package/dist/node_modules/lodash-es/_getMapData.js +8 -0
  525. package/dist/node_modules/lodash-es/_getNative.js +9 -0
  526. package/dist/node_modules/lodash-es/_getPrototype.js +5 -0
  527. package/dist/node_modules/lodash-es/_getRawTag.js +15 -0
  528. package/dist/node_modules/lodash-es/_getSymbols.js +10 -0
  529. package/dist/node_modules/lodash-es/_getTag.js +28 -0
  530. package/dist/node_modules/lodash-es/_hashClear.js +7 -0
  531. package/dist/node_modules/lodash-es/_hashGet.js +13 -0
  532. package/dist/node_modules/lodash-es/_hashHas.js +9 -0
  533. package/dist/node_modules/lodash-es/_hashSet.js +9 -0
  534. package/dist/node_modules/lodash-es/_initCloneByTag.js +42 -0
  535. package/dist/node_modules/lodash-es/_initCloneObject.js +9 -0
  536. package/dist/node_modules/lodash-es/_isIterateeCall.js +13 -0
  537. package/dist/node_modules/lodash-es/_isMasked.js +11 -0
  538. package/dist/node_modules/lodash-es/_listCacheDelete.js +12 -0
  539. package/dist/node_modules/lodash-es/_listCacheGet.js +8 -0
  540. package/dist/node_modules/lodash-es/_listCacheHas.js +7 -0
  541. package/dist/node_modules/lodash-es/_listCacheSet.js +8 -0
  542. package/dist/node_modules/lodash-es/_mapCacheClear.js +13 -0
  543. package/dist/node_modules/lodash-es/_mapCacheDelete.js +8 -0
  544. package/dist/node_modules/lodash-es/_mapCacheGet.js +7 -0
  545. package/dist/node_modules/lodash-es/_mapCacheHas.js +7 -0
  546. package/dist/node_modules/lodash-es/_mapCacheSet.js +8 -0
  547. package/dist/node_modules/lodash-es/_nativeCreate.js +5 -0
  548. package/dist/node_modules/lodash-es/_nativeKeys.js +5 -0
  549. package/dist/node_modules/lodash-es/_nodeUtil.js +11 -0
  550. package/dist/node_modules/lodash-es/_overRest.js +15 -0
  551. package/dist/node_modules/lodash-es/_root.js +5 -0
  552. package/dist/node_modules/lodash-es/_setToString.js +6 -0
  553. package/dist/node_modules/lodash-es/_stackClear.js +7 -0
  554. package/dist/node_modules/lodash-es/_stackSet.js +17 -0
  555. package/dist/node_modules/lodash-es/cloneDeep.js +8 -0
  556. package/dist/node_modules/lodash-es/isArguments.js +10 -0
  557. package/dist/node_modules/lodash-es/isArrayLike.js +8 -0
  558. package/dist/node_modules/lodash-es/isArrayLikeObject.js +8 -0
  559. package/dist/node_modules/lodash-es/isBuffer.js +6 -0
  560. package/dist/node_modules/lodash-es/isEqual.js +7 -0
  561. package/dist/node_modules/lodash-es/isFunction.js +12 -0
  562. package/dist/node_modules/lodash-es/isMap.js +7 -0
  563. package/dist/node_modules/lodash-es/isPlainObject.js +16 -0
  564. package/dist/node_modules/lodash-es/isSet.js +7 -0
  565. package/dist/node_modules/lodash-es/isTypedArray.js +7 -0
  566. package/dist/node_modules/lodash-es/keys.js +9 -0
  567. package/dist/node_modules/lodash-es/keysIn.js +9 -0
  568. package/dist/node_modules/lodash-es/merge.js +8 -0
  569. package/dist/node_modules/lodash-es/toPlainObject.js +8 -0
  570. package/dist/node_modules/lodash.clonedeep/index.js +450 -0
  571. package/dist/node_modules/lodash.isequal/index.js +483 -0
  572. package/dist/node_modules/match-sorter/dist/match-sorter.esm.js +198 -0
  573. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animate/single-value.js +10 -0
  574. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/AcceleratedAnimation.js +204 -0
  575. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/BaseAnimation.js +82 -0
  576. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/MainThreadAnimation.js +147 -0
  577. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.js +17 -0
  578. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/utils/can-animate.js +23 -0
  579. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/waapi/index.js +17 -0
  580. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.js +5 -0
  581. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/inertia.js +37 -0
  582. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/keyframes.js +30 -0
  583. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/spring/find.js +52 -0
  584. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/spring/index.js +91 -0
  585. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/utils/velocity.js +9 -0
  586. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/motion-value.js +46 -0
  587. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/visual-element-target.js +45 -0
  588. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/visual-element-variant.js +33 -0
  589. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/visual-element.js +22 -0
  590. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
  591. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/optimized-appear/get-appear-id.js +7 -0
  592. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/default-transitions.js +22 -0
  593. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-animatable.js +7 -0
  594. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-none.js +7 -0
  595. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PopChild.js +53 -0
  596. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +41 -0
  597. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/index.js +45 -0
  598. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/use-presence.js +17 -0
  599. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionContext/create.js +13 -0
  600. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionContext/utils.js +15 -0
  601. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/anticipate.js +5 -0
  602. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/back.js +9 -0
  603. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/circ.js +8 -0
  604. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/cubic-bezier.js +18 -0
  605. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/ease.js +7 -0
  606. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/utils/map.js +32 -0
  607. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/events/add-pointer-event.js +8 -0
  608. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/events/event-info.js +14 -0
  609. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/frameloop/batcher.js +26 -0
  610. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/frameloop/frame.js +9 -0
  611. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/frameloop/microtask.js +5 -0
  612. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/frameloop/render-step.js +42 -0
  613. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/frameloop/sync-time.js +15 -0
  614. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +256 -0
  615. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/drag/index.js +18 -0
  616. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/drag/utils/constraints.js +67 -0
  617. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/focus.js +28 -0
  618. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/hover.js +21 -0
  619. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/pan/PanSession.js +84 -0
  620. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/pan/index.js +43 -0
  621. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/press.js +23 -0
  622. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/animation/exit.js +27 -0
  623. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/animation/index.js +34 -0
  624. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/animations.js +13 -0
  625. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/drag.js +17 -0
  626. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/gestures.js +21 -0
  627. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +74 -0
  628. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/layout.js +11 -0
  629. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/load-features.js +11 -0
  630. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/viewport/index.js +44 -0
  631. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/index.js +59 -0
  632. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +8 -0
  633. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -0
  634. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/use-visual-element.js +64 -0
  635. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/use-visual-state.js +53 -0
  636. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/animation/mix-values.js +32 -0
  637. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/delta-apply.js +52 -0
  638. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/delta-calc.js +36 -0
  639. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/delta-remove.js +25 -0
  640. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/utils.js +34 -0
  641. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/DocumentProjectionNode.js +13 -0
  642. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/HTMLProjectionNode.js +25 -0
  643. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/create-projection-node.js +607 -0
  644. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/shared/stack.js +58 -0
  645. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/scale-border-radius.js +21 -0
  646. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/scale-box-shadow.js +16 -0
  647. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/scale-correction.js +10 -0
  648. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/utils/measure.js +13 -0
  649. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/VisualElement.js +228 -0
  650. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/create-factory.js +20 -0
  651. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/create-proxy.js +17 -0
  652. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/motion/create.js +15 -0
  653. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/motion/proxy.js +6 -0
  654. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/DOMKeyframesResolver.js +66 -0
  655. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/DOMVisualElement.js +27 -0
  656. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/create-visual-element.js +10 -0
  657. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/use-render.js +18 -0
  658. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/css-variables-conversion.js +31 -0
  659. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/filter-props.js +20 -0
  660. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/is-svg-component.js +24 -0
  661. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/unit-conversion.js +31 -0
  662. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/animatable-none.js +10 -0
  663. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/defaults.js +24 -0
  664. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/dimensions.js +9 -0
  665. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/find.js +8 -0
  666. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/number-browser.js +41 -0
  667. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/number.js +18 -0
  668. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/transform.js +31 -0
  669. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/type-int.js +8 -0
  670. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/HTMLVisualElement.js +37 -0
  671. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/config-motion.js +12 -0
  672. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/use-props.js +27 -0
  673. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/build-styles.js +29 -0
  674. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/build-transform.js +31 -0
  675. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/keys-position.js +13 -0
  676. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/make-none-animatable.js +16 -0
  677. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +12 -0
  678. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/SVGVisualElement.js +47 -0
  679. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/config-motion.js +43 -0
  680. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/use-props.js +22 -0
  681. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/build-attrs.js +26 -0
  682. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/create-render-state.js +8 -0
  683. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/path.js +18 -0
  684. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/render.js +11 -0
  685. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
  686. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/transform-origin.js +11 -0
  687. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/KeyframesResolver.js +76 -0
  688. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/animation-state.js +128 -0
  689. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/flat-tree.js +19 -0
  690. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/get-variant-context.js +20 -0
  691. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/is-controlling-variants.js +13 -0
  692. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/motion-values.js +26 -0
  693. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/resolve-dynamic-variants.js +8 -0
  694. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/setters.js +18 -0
  695. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/delay.js +12 -0
  696. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/interpolate.js +41 -0
  697. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/color.js +29 -0
  698. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/complex.js +52 -0
  699. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/index.js +8 -0
  700. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/offsets/default.js +8 -0
  701. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/offsets/fill.js +12 -0
  702. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/reduced-motion/index.js +13 -0
  703. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/resolve-value.js +6 -0
  704. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/subscription-manager.js +29 -0
  705. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/use-isomorphic-effect.js +6 -0
  706. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/index.js +207 -0
  707. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/use-will-change/add-will-change.js +9 -0
  708. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/use-will-change/is.js +7 -0
  709. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/utils/resolve-motion-value.js +9 -0
  710. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/controls/BaseGroup.js +74 -0
  711. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/controls/Group.js +9 -0
  712. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/waapi/utils/easing.js +27 -0
  713. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/waapi/utils/linear.js +11 -0
  714. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/drag/state/set-active.js +11 -0
  715. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/hover.js +24 -0
  716. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/index.js +43 -0
  717. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/utils/keyboard.js +27 -0
  718. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/setup.js +12 -0
  719. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/linear-easing.js +12 -0
  720. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/memo.js +12 -0
  721. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/scroll-timeline.js +5 -0
  722. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/errors.js +12 -0
  723. package/dist/node_modules/nuka-carousel/dist/index.js +1061 -0
  724. package/dist/node_modules/prop-types/checkPropTypes.js +54 -0
  725. package/dist/node_modules/prop-types/factoryWithThrowingShims.js +52 -0
  726. package/dist/node_modules/prop-types/factoryWithTypeCheckers.js +329 -0
  727. package/dist/node_modules/prop-types/index.js +16 -0
  728. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +95 -0
  729. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +78 -0
  730. package/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
  731. package/dist/node_modules/quill/blots/block.js +121 -0
  732. package/dist/node_modules/quill/blots/break.js +19 -0
  733. package/dist/node_modules/quill/blots/container.js +6 -0
  734. package/dist/node_modules/quill/blots/cursor.js +105 -0
  735. package/dist/node_modules/quill/blots/embed.js +48 -0
  736. package/dist/node_modules/quill/blots/inline.js +44 -0
  737. package/dist/node_modules/quill/blots/scroll.js +250 -0
  738. package/dist/node_modules/quill/blots/text.js +17 -0
  739. package/dist/node_modules/quill/core/composition.js +30 -0
  740. package/dist/node_modules/quill/core/editor.js +283 -0
  741. package/dist/node_modules/quill/core/emitter.js +66 -0
  742. package/dist/node_modules/quill/core/quill.js +387 -0
  743. package/dist/node_modules/quill/core/selection.js +236 -0
  744. package/dist/node_modules/quill/core/utils/createRegistryWithFormats.js +20 -0
  745. package/dist/node_modules/quill/core.js +40 -0
  746. package/dist/node_modules/quill/formats/align.js +10 -0
  747. package/dist/node_modules/quill/formats/background.js +11 -0
  748. package/dist/node_modules/quill/formats/blockquote.js +10 -0
  749. package/dist/node_modules/quill/formats/bold.js +19 -0
  750. package/dist/node_modules/quill/formats/code.js +49 -0
  751. package/dist/node_modules/quill/formats/color.js +17 -0
  752. package/dist/node_modules/quill/formats/direction.js +10 -0
  753. package/dist/node_modules/quill/formats/font.js +15 -0
  754. package/dist/node_modules/quill/formats/formula.js +28 -0
  755. package/dist/node_modules/quill/formats/header.js +13 -0
  756. package/dist/node_modules/quill/formats/image.js +31 -0
  757. package/dist/node_modules/quill/formats/indent.js +25 -0
  758. package/dist/node_modules/quill/formats/italic.js +10 -0
  759. package/dist/node_modules/quill/formats/link.js +30 -0
  760. package/dist/node_modules/quill/formats/list.js +39 -0
  761. package/dist/node_modules/quill/formats/script.js +17 -0
  762. package/dist/node_modules/quill/formats/size.js +12 -0
  763. package/dist/node_modules/quill/formats/strike.js +10 -0
  764. package/dist/node_modules/quill/formats/table.js +123 -0
  765. package/dist/node_modules/quill/formats/underline.js +10 -0
  766. package/dist/node_modules/quill/formats/video.js +34 -0
  767. package/dist/node_modules/quill/modules/clipboard.js +331 -0
  768. package/dist/node_modules/quill/modules/history.js +124 -0
  769. package/dist/node_modules/quill/modules/input.js +53 -0
  770. package/dist/node_modules/quill/modules/keyboard.js +494 -0
  771. package/dist/node_modules/quill/modules/normalizeExternalHTML/index.js +10 -0
  772. package/dist/node_modules/quill/modules/syntax.js +232 -0
  773. package/dist/node_modules/quill/modules/table.js +92 -0
  774. package/dist/node_modules/quill/modules/toolbar.js +156 -0
  775. package/dist/node_modules/quill/modules/uiNode.js +68 -0
  776. package/dist/node_modules/quill/modules/uploader.js +52 -0
  777. package/dist/node_modules/quill/node_modules/eventemitter3/index.js +111 -0
  778. package/dist/node_modules/quill/quill.js +86 -0
  779. package/dist/node_modules/quill/ui/color-picker.js +20 -0
  780. package/dist/node_modules/quill/ui/icon-picker.js +19 -0
  781. package/dist/node_modules/quill-delta/dist/AttributeMap.js +41 -0
  782. package/dist/node_modules/quill-delta/dist/Delta.js +278 -0
  783. package/dist/node_modules/quill-delta/dist/Op.js +10 -0
  784. package/dist/node_modules/quill-delta/dist/OpIterator.js +48 -0
  785. package/dist/node_modules/react/cjs/react-jsx-runtime.development.js +604 -0
  786. package/dist/node_modules/react/cjs/react-jsx-runtime.production.min.js +28 -0
  787. package/dist/node_modules/react/jsx-runtime.js +8 -0
  788. package/dist/node_modules/react-beautiful-dnd/dist/react-beautiful-dnd.esm.js +5141 -0
  789. package/dist/node_modules/react-day-picker/dist/esm/DayPicker.js +175 -0
  790. package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarDay.js +16 -0
  791. package/dist/node_modules/react-day-picker/dist/esm/classes/DateLib.js +191 -0
  792. package/dist/node_modules/react-day-picker/dist/esm/components/Dropdown.js +19 -0
  793. package/dist/node_modules/react-day-picker/dist/esm/components/MonthsDropdown.js +9 -0
  794. package/dist/node_modules/react-day-picker/dist/esm/components/Nav.js +27 -0
  795. package/dist/node_modules/react-day-picker/dist/esm/components/NextMonthButton.js +9 -0
  796. package/dist/node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.js +9 -0
  797. package/dist/node_modules/react-day-picker/dist/esm/components/YearsDropdown.js +9 -0
  798. package/dist/node_modules/react-day-picker/dist/esm/components/custom-components.js +54 -0
  799. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatCaption.js +9 -0
  800. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatDay.js +7 -0
  801. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.js +7 -0
  802. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.js +7 -0
  803. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.js +9 -0
  804. package/dist/node_modules/react-day-picker/dist/esm/formatters/index.js +18 -0
  805. package/dist/node_modules/react-day-picker/dist/esm/helpers/calculateFocusTarget.js +15 -0
  806. package/dist/node_modules/react-day-picker/dist/esm/helpers/endOfBroadcastWeek.js +9 -0
  807. package/dist/node_modules/react-day-picker/dist/esm/helpers/getClassNamesForModifiers.js +7 -0
  808. package/dist/node_modules/react-day-picker/dist/esm/helpers/getComponents.js +10 -0
  809. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.js +16 -0
  810. package/dist/node_modules/react-day-picker/dist/esm/helpers/getFormatters.js +10 -0
  811. package/dist/node_modules/react-day-picker/dist/esm/helpers/getMonths.js +24 -0
  812. package/dist/node_modules/react-day-picker/dist/esm/helpers/getNextFocus.js +21 -0
  813. package/dist/node_modules/react-day-picker/dist/esm/helpers/getStyleForModifiers.js +13 -0
  814. package/dist/node_modules/react-day-picker/dist/esm/labels/index.js +26 -0
  815. package/dist/node_modules/react-day-picker/dist/esm/labels/labelDayButton.js +10 -0
  816. package/dist/node_modules/react-day-picker/dist/esm/labels/labelGrid.js +9 -0
  817. package/dist/node_modules/react-day-picker/dist/esm/labels/labelGridcell.js +8 -0
  818. package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekday.js +7 -0
  819. package/dist/node_modules/react-day-picker/dist/esm/selection/useMulti.js +21 -0
  820. package/dist/node_modules/react-day-picker/dist/esm/selection/useRange.js +18 -0
  821. package/dist/node_modules/react-day-picker/dist/esm/selection/useSingle.js +15 -0
  822. package/dist/node_modules/react-day-picker/dist/esm/useAnimation.js +53 -0
  823. package/dist/node_modules/react-day-picker/dist/esm/useCalendar.js +44 -0
  824. package/dist/node_modules/react-day-picker/dist/esm/useFocus.js +23 -0
  825. package/dist/node_modules/react-day-picker/dist/esm/useGetModifiers.js +42 -0
  826. package/dist/node_modules/react-day-picker/dist/esm/useSelection.js +19 -0
  827. package/dist/node_modules/react-day-picker/dist/esm/utils/addToRange.js +32 -0
  828. package/dist/node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.js +26 -0
  829. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.js +15 -0
  830. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.js +28 -0
  831. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.js +9 -0
  832. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.js +8 -0
  833. package/dist/node_modules/react-day-picker/node_modules/date-fns/_lib/format/formatters.js +515 -0
  834. package/dist/node_modules/react-day-picker/node_modules/date-fns/_lib/format/lightFormatters.js +59 -0
  835. package/dist/node_modules/react-day-picker/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +18 -0
  836. package/dist/node_modules/react-day-picker/node_modules/date-fns/_lib/normalizeDates.js +11 -0
  837. package/dist/node_modules/react-day-picker/node_modules/date-fns/_lib/normalizeInterval.js +8 -0
  838. package/dist/node_modules/react-day-picker/node_modules/date-fns/addDays.js +10 -0
  839. package/dist/node_modules/react-day-picker/node_modules/date-fns/addMonths.js +20 -0
  840. package/dist/node_modules/react-day-picker/node_modules/date-fns/addWeeks.js +8 -0
  841. package/dist/node_modules/react-day-picker/node_modules/date-fns/addYears.js +8 -0
  842. package/dist/node_modules/react-day-picker/node_modules/date-fns/constructFrom.js +8 -0
  843. package/dist/node_modules/react-day-picker/node_modules/date-fns/differenceInCalendarDays.js +16 -0
  844. package/dist/node_modules/react-day-picker/node_modules/date-fns/differenceInCalendarMonths.js +13 -0
  845. package/dist/node_modules/react-day-picker/node_modules/date-fns/eachMonthOfInterval.js +17 -0
  846. package/dist/node_modules/react-day-picker/node_modules/date-fns/endOfISOWeek.js +8 -0
  847. package/dist/node_modules/react-day-picker/node_modules/date-fns/endOfMonth.js +9 -0
  848. package/dist/node_modules/react-day-picker/node_modules/date-fns/endOfWeek.js +11 -0
  849. package/dist/node_modules/react-day-picker/node_modules/date-fns/endOfYear.js +9 -0
  850. package/dist/node_modules/react-day-picker/node_modules/date-fns/format.js +59 -0
  851. package/dist/node_modules/react-day-picker/node_modules/date-fns/getDayOfYear.js +11 -0
  852. package/dist/node_modules/react-day-picker/node_modules/date-fns/getDaysInMonth.js +10 -0
  853. package/dist/node_modules/react-day-picker/node_modules/date-fns/getISOWeek.js +12 -0
  854. package/dist/node_modules/react-day-picker/node_modules/date-fns/getISOWeekYear.js +15 -0
  855. package/dist/node_modules/react-day-picker/node_modules/date-fns/getMonth.js +8 -0
  856. package/dist/node_modules/react-day-picker/node_modules/date-fns/getWeek.js +12 -0
  857. package/dist/node_modules/react-day-picker/node_modules/date-fns/getWeekYear.js +17 -0
  858. package/dist/node_modules/react-day-picker/node_modules/date-fns/getYear.js +8 -0
  859. package/dist/node_modules/react-day-picker/node_modules/date-fns/isAfter.js +8 -0
  860. package/dist/node_modules/react-day-picker/node_modules/date-fns/isBefore.js +8 -0
  861. package/dist/node_modules/react-day-picker/node_modules/date-fns/isSameDay.js +14 -0
  862. package/dist/node_modules/react-day-picker/node_modules/date-fns/isSameMonth.js +13 -0
  863. package/dist/node_modules/react-day-picker/node_modules/date-fns/isSameYear.js +13 -0
  864. package/dist/node_modules/react-day-picker/node_modules/date-fns/isValid.js +9 -0
  865. package/dist/node_modules/react-day-picker/node_modules/date-fns/locale/en-US/_lib/formatLong.js +33 -0
  866. package/dist/node_modules/react-day-picker/node_modules/date-fns/locale/en-US/_lib/localize.js +155 -0
  867. package/dist/node_modules/react-day-picker/node_modules/date-fns/locale/en-US/_lib/match.js +110 -0
  868. package/dist/node_modules/react-day-picker/node_modules/date-fns/locale/en-US.js +21 -0
  869. package/dist/node_modules/react-day-picker/node_modules/date-fns/max.js +14 -0
  870. package/dist/node_modules/react-day-picker/node_modules/date-fns/min.js +14 -0
  871. package/dist/node_modules/react-day-picker/node_modules/date-fns/setMonth.js +13 -0
  872. package/dist/node_modules/react-day-picker/node_modules/date-fns/setYear.js +10 -0
  873. package/dist/node_modules/react-day-picker/node_modules/date-fns/startOfDay.js +9 -0
  874. package/dist/node_modules/react-day-picker/node_modules/date-fns/startOfISOWeek.js +8 -0
  875. package/dist/node_modules/react-day-picker/node_modules/date-fns/startOfISOWeekYear.js +11 -0
  876. package/dist/node_modules/react-day-picker/node_modules/date-fns/startOfMonth.js +9 -0
  877. package/dist/node_modules/react-day-picker/node_modules/date-fns/startOfWeek.js +11 -0
  878. package/dist/node_modules/react-day-picker/node_modules/date-fns/startOfWeekYear.js +13 -0
  879. package/dist/node_modules/react-day-picker/node_modules/date-fns/startOfYear.js +9 -0
  880. package/dist/node_modules/react-day-picker/node_modules/date-fns/toDate.js +8 -0
  881. package/dist/node_modules/react-fast-compare/index.js +62 -0
  882. package/dist/node_modules/react-images-uploading/dist/constants.js +9 -0
  883. package/dist/node_modules/react-images-uploading/dist/index.js +251 -0
  884. package/dist/node_modules/react-images-uploading/dist/utils.js +34 -0
  885. package/dist/node_modules/react-images-uploading/dist/validation.js +169 -0
  886. package/dist/node_modules/react-player/lib/Player.js +139 -0
  887. package/dist/node_modules/react-player/lib/Preview.js +128 -0
  888. package/dist/node_modules/react-player/lib/ReactPlayer.js +134 -0
  889. package/dist/node_modules/react-player/lib/index.js +29 -0
  890. package/dist/node_modules/react-player/lib/patterns.js +59 -0
  891. package/dist/node_modules/react-player/lib/players/DailyMotion.js +138 -0
  892. package/dist/node_modules/react-player/lib/players/Facebook.js +123 -0
  893. package/dist/node_modules/react-player/lib/players/FilePlayer.js +204 -0
  894. package/dist/node_modules/react-player/lib/players/Kaltura.js +123 -0
  895. package/dist/node_modules/react-player/lib/players/Mixcloud.js +115 -0
  896. package/dist/node_modules/react-player/lib/players/Mux.js +166 -0
  897. package/dist/node_modules/react-player/lib/players/SoundCloud.js +125 -0
  898. package/dist/node_modules/react-player/lib/players/Streamable.js +117 -0
  899. package/dist/node_modules/react-player/lib/players/Twitch.js +119 -0
  900. package/dist/node_modules/react-player/lib/players/Vidyard.js +115 -0
  901. package/dist/node_modules/react-player/lib/players/Vimeo.js +148 -0
  902. package/dist/node_modules/react-player/lib/players/Wistia.js +126 -0
  903. package/dist/node_modules/react-player/lib/players/YouTube.js +178 -0
  904. package/dist/node_modules/react-player/lib/players/index.js +137 -0
  905. package/dist/node_modules/react-player/lib/props.js +243 -0
  906. package/dist/node_modules/react-player/lib/utils.js +124 -0
  907. package/dist/node_modules/react-popper/lib/esm/usePopper.js +76 -0
  908. package/dist/node_modules/react-redux/es/components/Provider.js +38 -0
  909. package/dist/node_modules/react-redux/es/components/connectAdvanced.js +142 -0
  910. package/dist/node_modules/react-redux/es/connect/connect.js +52 -0
  911. package/dist/node_modules/react-redux/es/connect/mapDispatchToProps.js +24 -0
  912. package/dist/node_modules/react-redux/es/connect/mapStateToProps.js +15 -0
  913. package/dist/node_modules/react-redux/es/connect/mergeProps.js +30 -0
  914. package/dist/node_modules/react-redux/es/connect/selectorFactory.js +42 -0
  915. package/dist/node_modules/react-redux/es/connect/verifySubselectors.js +12 -0
  916. package/dist/node_modules/react-redux/es/connect/wrapMapToProps.js +30 -0
  917. package/dist/node_modules/react-redux/es/index.js +14 -0
  918. package/dist/node_modules/react-redux/es/utils/Subscription.js +73 -0
  919. package/dist/node_modules/react-redux/es/utils/verifyPlainObject.js +8 -0
  920. package/dist/node_modules/react-redux/node_modules/react-is/cjs/react-is.development.js +98 -0
  921. package/dist/node_modules/react-redux/node_modules/react-is/cjs/react-is.production.min.js +81 -0
  922. package/dist/node_modules/react-redux/node_modules/react-is/index.js +8 -0
  923. package/dist/node_modules/redux/es/redux.js +211 -0
  924. package/dist/node_modules/remove-accents/index.js +479 -0
  925. package/dist/shared/recharts/CustomLegend/index.js +41 -0
  926. package/dist/shared/recharts/CustomLegend/styles.js +34 -0
  927. package/dist/shared/recharts/CustomTooltip/index.js +170 -0
  928. package/dist/snorre.d.ts +3143 -0
  929. package/dist/snorre.js +683 -0
  930. package/dist/utils/format.js +59 -0
  931. package/dist/utils/useSnorreTheme.js +25 -0
  932. package/dist/v2/Memberbenefits/MemberbenefitsCard/index.js +77 -0
  933. package/dist/v2/Memberbenefits/MemberbenefitsCard/styles.js +109 -0
  934. package/dist/v2/core/Box/index.js +69 -0
  935. package/dist/v2/core/Box/styles.js +71 -0
  936. package/dist/v2/core/BoxedTable/index.js +49 -0
  937. package/dist/v2/core/BoxedTable/styles.js +244 -0
  938. package/dist/v2/core/Button/index.js +68 -0
  939. package/dist/v2/core/Button/styles.js +237 -0
  940. package/dist/v2/core/ButtonsFilter/index.js +55 -0
  941. package/dist/v2/core/ButtonsFilter/styles.js +10 -0
  942. package/dist/v2/core/Chip/index.js +75 -0
  943. package/dist/v2/core/Chip/styles.js +80 -0
  944. package/dist/v2/core/TabNav/TabContext.js +34 -0
  945. package/dist/v2/core/TabNav/TabNavItem/index.js +84 -0
  946. package/dist/v2/core/TabNav/TabNavItem/styles.js +109 -0
  947. package/dist/v2/core/TabNav/index.js +105 -0
  948. package/dist/v2/core/TabNav/styles.js +68 -0
  949. package/dist/v2/core/TabNav/utils/useContainerDimensions.js +31 -0
  950. package/dist/v2/hooks/useOverflow.js +19 -0
  951. package/dist/v2/index.js +28 -0
  952. package/package.json +5 -1
  953. package/vite.config.js +5 -3
  954. package/dist/snorre.es.js +0 -681
  955. package/dist/snorre.es10.js +0 -127
  956. package/dist/snorre.es100.js +0 -6
  957. package/dist/snorre.es1000.js +0 -21
  958. package/dist/snorre.es1001.js +0 -26
  959. package/dist/snorre.es1002.js +0 -21
  960. package/dist/snorre.es1003.js +0 -18
  961. package/dist/snorre.es1004.js +0 -15
  962. package/dist/snorre.es1005.js +0 -32
  963. package/dist/snorre.es1006.js +0 -15
  964. package/dist/snorre.es1007.js +0 -28
  965. package/dist/snorre.es1008.js +0 -8
  966. package/dist/snorre.es101.js +0 -6
  967. package/dist/snorre.es1015.js +0 -34
  968. package/dist/snorre.es1016.js +0 -169
  969. package/dist/snorre.es1017.js +0 -9
  970. package/dist/snorre.es102.js +0 -6
  971. package/dist/snorre.es1021.js +0 -4
  972. package/dist/snorre.es1022.js +0 -13
  973. package/dist/snorre.es1023.js +0 -13
  974. package/dist/snorre.es1024.js +0 -15
  975. package/dist/snorre.es1025.js +0 -13
  976. package/dist/snorre.es1026.js +0 -21
  977. package/dist/snorre.es1028.js +0 -57
  978. package/dist/snorre.es1029.js +0 -10
  979. package/dist/snorre.es103.js +0 -12
  980. package/dist/snorre.es1030.js +0 -10
  981. package/dist/snorre.es1031.js +0 -25
  982. package/dist/snorre.es1032.js +0 -10
  983. package/dist/snorre.es1033.js +0 -13
  984. package/dist/snorre.es1034.js +0 -39
  985. package/dist/snorre.es1035.js +0 -11
  986. package/dist/snorre.es1036.js +0 -17
  987. package/dist/snorre.es1037.js +0 -15
  988. package/dist/snorre.es1038.js +0 -12
  989. package/dist/snorre.es1039.js +0 -19
  990. package/dist/snorre.es104.js +0 -13
  991. package/dist/snorre.es1040.js +0 -10
  992. package/dist/snorre.es1041.js +0 -30
  993. package/dist/snorre.es1042.js +0 -17
  994. package/dist/snorre.es1043.js +0 -10
  995. package/dist/snorre.es1044.js +0 -10
  996. package/dist/snorre.es1045.js +0 -28
  997. package/dist/snorre.es1046.js +0 -31
  998. package/dist/snorre.es1047.js +0 -34
  999. package/dist/snorre.es1048.js +0 -49
  1000. package/dist/snorre.es1049.js +0 -232
  1001. package/dist/snorre.es105.js +0 -6
  1002. package/dist/snorre.es1050.js +0 -92
  1003. package/dist/snorre.es1051.js +0 -156
  1004. package/dist/snorre.es1054.js +0 -20
  1005. package/dist/snorre.es1055.js +0 -19
  1006. package/dist/snorre.es1057.js +0 -77
  1007. package/dist/snorre.es1058.js +0 -91
  1008. package/dist/snorre.es1059.js +0 -121
  1009. package/dist/snorre.es106.js +0 -6
  1010. package/dist/snorre.es1060.js +0 -19
  1011. package/dist/snorre.es1061.js +0 -6
  1012. package/dist/snorre.es1062.js +0 -105
  1013. package/dist/snorre.es1063.js +0 -44
  1014. package/dist/snorre.es1064.js +0 -250
  1015. package/dist/snorre.es1065.js +0 -17
  1016. package/dist/snorre.es1066.js +0 -331
  1017. package/dist/snorre.es1067.js +0 -124
  1018. package/dist/snorre.es1068.js +0 -494
  1019. package/dist/snorre.es1069.js +0 -52
  1020. package/dist/snorre.es107.js +0 -6
  1021. package/dist/snorre.es1070.js +0 -53
  1022. package/dist/snorre.es1071.js +0 -68
  1023. package/dist/snorre.es1073.js +0 -479
  1024. package/dist/snorre.es1074.js +0 -12
  1025. package/dist/snorre.es1077.js +0 -33
  1026. package/dist/snorre.es1079.js +0 -155
  1027. package/dist/snorre.es108.js +0 -6
  1028. package/dist/snorre.es1080.js +0 -110
  1029. package/dist/snorre.es1083.js +0 -122
  1030. package/dist/snorre.es1084.js +0 -32
  1031. package/dist/snorre.es1085.js +0 -13
  1032. package/dist/snorre.es1086.js +0 -16
  1033. package/dist/snorre.es1087.js +0 -35
  1034. package/dist/snorre.es1088.js +0 -31
  1035. package/dist/snorre.es109.js +0 -6
  1036. package/dist/snorre.es1091.js +0 -20
  1037. package/dist/snorre.es1092.js +0 -26
  1038. package/dist/snorre.es1093.js +0 -19
  1039. package/dist/snorre.es1094.js +0 -99
  1040. package/dist/snorre.es1095.js +0 -47
  1041. package/dist/snorre.es1096.js +0 -31
  1042. package/dist/snorre.es1097.js +0 -74
  1043. package/dist/snorre.es1098.js +0 -54
  1044. package/dist/snorre.es1099.js +0 -37
  1045. package/dist/snorre.es11.js +0 -51
  1046. package/dist/snorre.es110.js +0 -6
  1047. package/dist/snorre.es1100.js +0 -44
  1048. package/dist/snorre.es1101.js +0 -10
  1049. package/dist/snorre.es1102.js +0 -13
  1050. package/dist/snorre.es1103.js +0 -16
  1051. package/dist/snorre.es1104.js +0 -16
  1052. package/dist/snorre.es1106.js +0 -123
  1053. package/dist/snorre.es1108.js +0 -66
  1054. package/dist/snorre.es1109.js +0 -154
  1055. package/dist/snorre.es111.js +0 -6
  1056. package/dist/snorre.es1110.js +0 -236
  1057. package/dist/snorre.es1111.js +0 -8
  1058. package/dist/snorre.es1112.js +0 -283
  1059. package/dist/snorre.es1114.js +0 -30
  1060. package/dist/snorre.es1117.js +0 -20
  1061. package/dist/snorre.es1118.js +0 -10
  1062. package/dist/snorre.es1119.js +0 -7
  1063. package/dist/snorre.es112.js +0 -6
  1064. package/dist/snorre.es1120.js +0 -8
  1065. package/dist/snorre.es1123.js +0 -450
  1066. package/dist/snorre.es1124.js +0 -483
  1067. package/dist/snorre.es1125.js +0 -41
  1068. package/dist/snorre.es1126.js +0 -10
  1069. package/dist/snorre.es1127.js +0 -48
  1070. package/dist/snorre.es113.js +0 -6
  1071. package/dist/snorre.es1131.js +0 -9
  1072. package/dist/snorre.es1133.js +0 -73
  1073. package/dist/snorre.es1135.js +0 -142
  1074. package/dist/snorre.es1138.js +0 -24
  1075. package/dist/snorre.es1139.js +0 -15
  1076. package/dist/snorre.es114.js +0 -6
  1077. package/dist/snorre.es1140.js +0 -30
  1078. package/dist/snorre.es1141.js +0 -42
  1079. package/dist/snorre.es1142.js +0 -8
  1080. package/dist/snorre.es1143.js +0 -8
  1081. package/dist/snorre.es1145.js +0 -18
  1082. package/dist/snorre.es1146.js +0 -11
  1083. package/dist/snorre.es1147.js +0 -8
  1084. package/dist/snorre.es1149.js +0 -515
  1085. package/dist/snorre.es115.js +0 -6
  1086. package/dist/snorre.es1152.js +0 -9
  1087. package/dist/snorre.es1153.js +0 -11
  1088. package/dist/snorre.es1154.js +0 -10
  1089. package/dist/snorre.es1155.js +0 -11
  1090. package/dist/snorre.es1156.js +0 -15
  1091. package/dist/snorre.es1157.js +0 -13
  1092. package/dist/snorre.es1158.js +0 -17
  1093. package/dist/snorre.es116.js +0 -6
  1094. package/dist/snorre.es1165.js +0 -18
  1095. package/dist/snorre.es1167.js +0 -12
  1096. package/dist/snorre.es1168.js +0 -7
  1097. package/dist/snorre.es117.js +0 -6
  1098. package/dist/snorre.es1171.js +0 -10
  1099. package/dist/snorre.es1172.js +0 -7
  1100. package/dist/snorre.es1177.js +0 -33
  1101. package/dist/snorre.es1178.js +0 -27
  1102. package/dist/snorre.es1179.js +0 -54
  1103. package/dist/snorre.es118.js +0 -6
  1104. package/dist/snorre.es1182.js +0 -23
  1105. package/dist/snorre.es1183.js +0 -10
  1106. package/dist/snorre.es1184.js +0 -9
  1107. package/dist/snorre.es1185.js +0 -8
  1108. package/dist/snorre.es1186.js +0 -10
  1109. package/dist/snorre.es1187.js +0 -18
  1110. package/dist/snorre.es1188.js +0 -7
  1111. package/dist/snorre.es119.js +0 -6
  1112. package/dist/snorre.es1190.js +0 -37
  1113. package/dist/snorre.es1192.js +0 -29
  1114. package/dist/snorre.es1193.js +0 -111
  1115. package/dist/snorre.es1198.js +0 -14
  1116. package/dist/snorre.es12.js +0 -66
  1117. package/dist/snorre.es120.js +0 -6
  1118. package/dist/snorre.es1200.js +0 -81
  1119. package/dist/snorre.es1201.js +0 -98
  1120. package/dist/snorre.es1203.js +0 -30
  1121. package/dist/snorre.es1204.js +0 -8
  1122. package/dist/snorre.es1205.js +0 -12
  1123. package/dist/snorre.es1207.js +0 -59
  1124. package/dist/snorre.es1208.js +0 -7
  1125. package/dist/snorre.es1209.js +0 -11
  1126. package/dist/snorre.es121.js +0 -6
  1127. package/dist/snorre.es1211.js +0 -21
  1128. package/dist/snorre.es1212.js +0 -17
  1129. package/dist/snorre.es1213.js +0 -55
  1130. package/dist/snorre.es1217.js +0 -10
  1131. package/dist/snorre.es1218.js +0 -9
  1132. package/dist/snorre.es122.js +0 -6
  1133. package/dist/snorre.es1221.js +0 -8
  1134. package/dist/snorre.es1222.js +0 -12
  1135. package/dist/snorre.es1224.js +0 -8
  1136. package/dist/snorre.es1225.js +0 -6
  1137. package/dist/snorre.es1226.js +0 -5
  1138. package/dist/snorre.es1228.js +0 -8
  1139. package/dist/snorre.es1229.js +0 -10
  1140. package/dist/snorre.es123.js +0 -6
  1141. package/dist/snorre.es1231.js +0 -7
  1142. package/dist/snorre.es1232.js +0 -9
  1143. package/dist/snorre.es1234.js +0 -11
  1144. package/dist/snorre.es1235.js +0 -16
  1145. package/dist/snorre.es1236.js +0 -5
  1146. package/dist/snorre.es1237.js +0 -7
  1147. package/dist/snorre.es1238.js +0 -9
  1148. package/dist/snorre.es1239.js +0 -7
  1149. package/dist/snorre.es124.js +0 -6
  1150. package/dist/snorre.es1240.js +0 -12
  1151. package/dist/snorre.es1241.js +0 -9
  1152. package/dist/snorre.es1242.js +0 -20
  1153. package/dist/snorre.es1243.js +0 -14
  1154. package/dist/snorre.es1244.js +0 -9
  1155. package/dist/snorre.es1245.js +0 -15
  1156. package/dist/snorre.es1246.js +0 -20
  1157. package/dist/snorre.es1247.js +0 -15
  1158. package/dist/snorre.es1249.js +0 -8
  1159. package/dist/snorre.es125.js +0 -6
  1160. package/dist/snorre.es1250.js +0 -14
  1161. package/dist/snorre.es1256.js +0 -10
  1162. package/dist/snorre.es1257.js +0 -12
  1163. package/dist/snorre.es1258.js +0 -9
  1164. package/dist/snorre.es1259.js +0 -13
  1165. package/dist/snorre.es126.js +0 -6
  1166. package/dist/snorre.es1262.js +0 -15
  1167. package/dist/snorre.es1263.js +0 -6
  1168. package/dist/snorre.es1265.js +0 -11
  1169. package/dist/snorre.es1267.js +0 -18
  1170. package/dist/snorre.es1268.js +0 -11
  1171. package/dist/snorre.es1269.js +0 -9
  1172. package/dist/snorre.es127.js +0 -6
  1173. package/dist/snorre.es1270.js +0 -28
  1174. package/dist/snorre.es1272.js +0 -42
  1175. package/dist/snorre.es1273.js +0 -9
  1176. package/dist/snorre.es1276.js +0 -17
  1177. package/dist/snorre.es1278.js +0 -5
  1178. package/dist/snorre.es128.js +0 -6
  1179. package/dist/snorre.es1281.js +0 -5
  1180. package/dist/snorre.es1282.js +0 -15
  1181. package/dist/snorre.es1284.js +0 -5
  1182. package/dist/snorre.es1285.js +0 -6
  1183. package/dist/snorre.es1286.js +0 -6
  1184. package/dist/snorre.es1287.js +0 -6
  1185. package/dist/snorre.es1288.js +0 -6
  1186. package/dist/snorre.es1289.js +0 -6
  1187. package/dist/snorre.es129.js +0 -6
  1188. package/dist/snorre.es1291.js +0 -32
  1189. package/dist/snorre.es1292.js +0 -16
  1190. package/dist/snorre.es1293.js +0 -11
  1191. package/dist/snorre.es1297.js +0 -20
  1192. package/dist/snorre.es1298.js +0 -13
  1193. package/dist/snorre.es1299.js +0 -8
  1194. package/dist/snorre.es13.js +0 -47
  1195. package/dist/snorre.es130.js +0 -6
  1196. package/dist/snorre.es1300.js +0 -7
  1197. package/dist/snorre.es1301.js +0 -7
  1198. package/dist/snorre.es1302.js +0 -8
  1199. package/dist/snorre.es1303.js +0 -8
  1200. package/dist/snorre.es1304.js +0 -31
  1201. package/dist/snorre.es1309.js +0 -14
  1202. package/dist/snorre.es131.js +0 -6
  1203. package/dist/snorre.es1311.js +0 -9
  1204. package/dist/snorre.es1312.js +0 -20
  1205. package/dist/snorre.es1313.js +0 -7
  1206. package/dist/snorre.es1317.js +0 -17
  1207. package/dist/snorre.es1318.js +0 -9
  1208. package/dist/snorre.es1319.js +0 -10
  1209. package/dist/snorre.es132.js +0 -6
  1210. package/dist/snorre.es1320.js +0 -8
  1211. package/dist/snorre.es1321.js +0 -8
  1212. package/dist/snorre.es1323.js +0 -8
  1213. package/dist/snorre.es1324.js +0 -8
  1214. package/dist/snorre.es1325.js +0 -13
  1215. package/dist/snorre.es1329.js +0 -40
  1216. package/dist/snorre.es133.js +0 -6
  1217. package/dist/snorre.es1330.js +0 -45
  1218. package/dist/snorre.es1331.js +0 -36
  1219. package/dist/snorre.es1332.js +0 -5
  1220. package/dist/snorre.es1333.js +0 -20
  1221. package/dist/snorre.es1334.js +0 -8
  1222. package/dist/snorre.es1337.js +0 -12
  1223. package/dist/snorre.es1338.js +0 -8
  1224. package/dist/snorre.es1339.js +0 -7
  1225. package/dist/snorre.es134.js +0 -6
  1226. package/dist/snorre.es1340.js +0 -8
  1227. package/dist/snorre.es1341.js +0 -5
  1228. package/dist/snorre.es1342.js +0 -7
  1229. package/dist/snorre.es1344.js +0 -13
  1230. package/dist/snorre.es1345.js +0 -9
  1231. package/dist/snorre.es1346.js +0 -9
  1232. package/dist/snorre.es1348.js +0 -10
  1233. package/dist/snorre.es1349.js +0 -5
  1234. package/dist/snorre.es135.js +0 -6
  1235. package/dist/snorre.es136.js +0 -6
  1236. package/dist/snorre.es137.js +0 -6
  1237. package/dist/snorre.es138.js +0 -6
  1238. package/dist/snorre.es139.js +0 -6
  1239. package/dist/snorre.es14.js +0 -36
  1240. package/dist/snorre.es140.js +0 -6
  1241. package/dist/snorre.es141.js +0 -6
  1242. package/dist/snorre.es142.js +0 -6
  1243. package/dist/snorre.es143.js +0 -6
  1244. package/dist/snorre.es144.js +0 -6
  1245. package/dist/snorre.es145.js +0 -6
  1246. package/dist/snorre.es146.js +0 -6
  1247. package/dist/snorre.es147.js +0 -6
  1248. package/dist/snorre.es148.js +0 -6
  1249. package/dist/snorre.es149.js +0 -6
  1250. package/dist/snorre.es150.js +0 -12
  1251. package/dist/snorre.es151.js +0 -6
  1252. package/dist/snorre.es152.js +0 -6
  1253. package/dist/snorre.es153.js +0 -6
  1254. package/dist/snorre.es154.js +0 -6
  1255. package/dist/snorre.es155.js +0 -6
  1256. package/dist/snorre.es156.js +0 -6
  1257. package/dist/snorre.es157.js +0 -6
  1258. package/dist/snorre.es158.js +0 -6
  1259. package/dist/snorre.es159.js +0 -6
  1260. package/dist/snorre.es16.js +0 -60
  1261. package/dist/snorre.es160.js +0 -6
  1262. package/dist/snorre.es161.js +0 -27
  1263. package/dist/snorre.es162.js +0 -26
  1264. package/dist/snorre.es163.js +0 -6
  1265. package/dist/snorre.es164.js +0 -6
  1266. package/dist/snorre.es165.js +0 -12
  1267. package/dist/snorre.es166.js +0 -12
  1268. package/dist/snorre.es167.js +0 -12
  1269. package/dist/snorre.es168.js +0 -12
  1270. package/dist/snorre.es169.js +0 -6
  1271. package/dist/snorre.es17.js +0 -55
  1272. package/dist/snorre.es170.js +0 -6
  1273. package/dist/snorre.es171.js +0 -6
  1274. package/dist/snorre.es172.js +0 -6
  1275. package/dist/snorre.es173.js +0 -6
  1276. package/dist/snorre.es174.js +0 -9
  1277. package/dist/snorre.es175.js +0 -31
  1278. package/dist/snorre.es176.js +0 -407
  1279. package/dist/snorre.es177.js +0 -38
  1280. package/dist/snorre.es178.js +0 -182
  1281. package/dist/snorre.es179.js +0 -23
  1282. package/dist/snorre.es18.js +0 -6
  1283. package/dist/snorre.es180.js +0 -250
  1284. package/dist/snorre.es181.js +0 -39
  1285. package/dist/snorre.es182.js +0 -205
  1286. package/dist/snorre.es183.js +0 -21
  1287. package/dist/snorre.es184.js +0 -149
  1288. package/dist/snorre.es185.js +0 -34
  1289. package/dist/snorre.es186.js +0 -338
  1290. package/dist/snorre.es187.js +0 -41
  1291. package/dist/snorre.es188.js +0 -239
  1292. package/dist/snorre.es189.js +0 -10633
  1293. package/dist/snorre.es19.js +0 -6
  1294. package/dist/snorre.es190.js +0 -12799
  1295. package/dist/snorre.es191.js +0 -264
  1296. package/dist/snorre.es192.js +0 -942
  1297. package/dist/snorre.es193.js +0 -828
  1298. package/dist/snorre.es194.js +0 -255
  1299. package/dist/snorre.es195.js +0 -212
  1300. package/dist/snorre.es196.js +0 -206
  1301. package/dist/snorre.es197.js +0 -466
  1302. package/dist/snorre.es198.js +0 -390
  1303. package/dist/snorre.es199.js +0 -373
  1304. package/dist/snorre.es2.js +0 -35
  1305. package/dist/snorre.es20.js +0 -6
  1306. package/dist/snorre.es200.js +0 -104
  1307. package/dist/snorre.es201.js +0 -103
  1308. package/dist/snorre.es202.js +0 -68
  1309. package/dist/snorre.es203.js +0 -122
  1310. package/dist/snorre.es204.js +0 -116
  1311. package/dist/snorre.es205.js +0 -278
  1312. package/dist/snorre.es207.js +0 -43
  1313. package/dist/snorre.es208.js +0 -27
  1314. package/dist/snorre.es209.js +0 -131
  1315. package/dist/snorre.es21.js +0 -6
  1316. package/dist/snorre.es210.js +0 -90
  1317. package/dist/snorre.es211.js +0 -30
  1318. package/dist/snorre.es212.js +0 -64
  1319. package/dist/snorre.es213.js +0 -18
  1320. package/dist/snorre.es214.js +0 -267
  1321. package/dist/snorre.es215.js +0 -69
  1322. package/dist/snorre.es216.js +0 -33
  1323. package/dist/snorre.es217.js +0 -82
  1324. package/dist/snorre.es218.js +0 -100
  1325. package/dist/snorre.es219.js +0 -128
  1326. package/dist/snorre.es22.js +0 -6
  1327. package/dist/snorre.es220.js +0 -117
  1328. package/dist/snorre.es221.js +0 -80
  1329. package/dist/snorre.es222.js +0 -14
  1330. package/dist/snorre.es223.js +0 -6
  1331. package/dist/snorre.es224.js +0 -6
  1332. package/dist/snorre.es225.js +0 -6
  1333. package/dist/snorre.es226.js +0 -6
  1334. package/dist/snorre.es227.js +0 -6
  1335. package/dist/snorre.es228.js +0 -210
  1336. package/dist/snorre.es229.js +0 -247
  1337. package/dist/snorre.es23.js +0 -6
  1338. package/dist/snorre.es230.js +0 -36
  1339. package/dist/snorre.es231.js +0 -85
  1340. package/dist/snorre.es232.js +0 -61
  1341. package/dist/snorre.es233.js +0 -6
  1342. package/dist/snorre.es234.js +0 -50
  1343. package/dist/snorre.es235.js +0 -10
  1344. package/dist/snorre.es236.js +0 -10
  1345. package/dist/snorre.es237.js +0 -66
  1346. package/dist/snorre.es238.js +0 -6
  1347. package/dist/snorre.es239.js +0 -44
  1348. package/dist/snorre.es24.js +0 -68
  1349. package/dist/snorre.es240.js +0 -19
  1350. package/dist/snorre.es241.js +0 -158
  1351. package/dist/snorre.es242.js +0 -30
  1352. package/dist/snorre.es243.js +0 -6
  1353. package/dist/snorre.es244.js +0 -62
  1354. package/dist/snorre.es245.js +0 -171
  1355. package/dist/snorre.es246.js +0 -77
  1356. package/dist/snorre.es247.js +0 -19
  1357. package/dist/snorre.es248.js +0 -63
  1358. package/dist/snorre.es249.js +0 -6
  1359. package/dist/snorre.es25.js +0 -43
  1360. package/dist/snorre.es250.js +0 -156
  1361. package/dist/snorre.es251.js +0 -6
  1362. package/dist/snorre.es252.js +0 -6
  1363. package/dist/snorre.es253.js +0 -6
  1364. package/dist/snorre.es254.js +0 -45
  1365. package/dist/snorre.es255.js +0 -146
  1366. package/dist/snorre.es256.js +0 -38
  1367. package/dist/snorre.es257.js +0 -6
  1368. package/dist/snorre.es258.js +0 -48
  1369. package/dist/snorre.es259.js +0 -6
  1370. package/dist/snorre.es26.js +0 -27
  1371. package/dist/snorre.es260.js +0 -299
  1372. package/dist/snorre.es261.js +0 -361
  1373. package/dist/snorre.es262.js +0 -9
  1374. package/dist/snorre.es263.js +0 -182
  1375. package/dist/snorre.es264.js +0 -45
  1376. package/dist/snorre.es265.js +0 -30
  1377. package/dist/snorre.es266.js +0 -70
  1378. package/dist/snorre.es267.js +0 -13
  1379. package/dist/snorre.es268.js +0 -52
  1380. package/dist/snorre.es269.js +0 -127
  1381. package/dist/snorre.es27.js +0 -6
  1382. package/dist/snorre.es270.js +0 -6
  1383. package/dist/snorre.es271.js +0 -33
  1384. package/dist/snorre.es272.js +0 -6
  1385. package/dist/snorre.es273.js +0 -70
  1386. package/dist/snorre.es274.js +0 -8
  1387. package/dist/snorre.es275.js +0 -6
  1388. package/dist/snorre.es276.js +0 -191
  1389. package/dist/snorre.es277.js +0 -271
  1390. package/dist/snorre.es278.js +0 -42
  1391. package/dist/snorre.es279.js +0 -27
  1392. package/dist/snorre.es28.js +0 -6
  1393. package/dist/snorre.es280.js +0 -6
  1394. package/dist/snorre.es281.js +0 -217
  1395. package/dist/snorre.es282.js +0 -26
  1396. package/dist/snorre.es283.js +0 -20
  1397. package/dist/snorre.es284.js +0 -6
  1398. package/dist/snorre.es285.js +0 -10
  1399. package/dist/snorre.es287.js +0 -103
  1400. package/dist/snorre.es288.js +0 -80
  1401. package/dist/snorre.es289.js +0 -109
  1402. package/dist/snorre.es29.js +0 -6
  1403. package/dist/snorre.es290.js +0 -18
  1404. package/dist/snorre.es291.js +0 -18
  1405. package/dist/snorre.es292.js +0 -18
  1406. package/dist/snorre.es293.js +0 -90
  1407. package/dist/snorre.es294.js +0 -49
  1408. package/dist/snorre.es295.js +0 -24
  1409. package/dist/snorre.es296.js +0 -128
  1410. package/dist/snorre.es297.js +0 -6
  1411. package/dist/snorre.es298.js +0 -6
  1412. package/dist/snorre.es299.js +0 -23
  1413. package/dist/snorre.es3.js +0 -26
  1414. package/dist/snorre.es30.js +0 -6
  1415. package/dist/snorre.es300.js +0 -19
  1416. package/dist/snorre.es301.js +0 -149
  1417. package/dist/snorre.es302.js +0 -38
  1418. package/dist/snorre.es303.js +0 -26
  1419. package/dist/snorre.es304.js +0 -26
  1420. package/dist/snorre.es305.js +0 -26
  1421. package/dist/snorre.es306.js +0 -26
  1422. package/dist/snorre.es307.js +0 -151
  1423. package/dist/snorre.es308.js +0 -27
  1424. package/dist/snorre.es309.js +0 -172
  1425. package/dist/snorre.es31.js +0 -6
  1426. package/dist/snorre.es310.js +0 -41
  1427. package/dist/snorre.es311.js +0 -379
  1428. package/dist/snorre.es312.js +0 -106
  1429. package/dist/snorre.es313.js +0 -39
  1430. package/dist/snorre.es314.js +0 -308
  1431. package/dist/snorre.es32.js +0 -6
  1432. package/dist/snorre.es325.js +0 -59
  1433. package/dist/snorre.es33.js +0 -6
  1434. package/dist/snorre.es330.js +0 -30
  1435. package/dist/snorre.es331.js +0 -31
  1436. package/dist/snorre.es332.js +0 -8
  1437. package/dist/snorre.es333.js +0 -25
  1438. package/dist/snorre.es334.js +0 -14
  1439. package/dist/snorre.es337.js +0 -65
  1440. package/dist/snorre.es34.js +0 -6
  1441. package/dist/snorre.es342.js +0 -49
  1442. package/dist/snorre.es347.js +0 -29
  1443. package/dist/snorre.es35.js +0 -6
  1444. package/dist/snorre.es350.js +0 -40
  1445. package/dist/snorre.es354.js +0 -28
  1446. package/dist/snorre.es358.js +0 -22
  1447. package/dist/snorre.es359.js +0 -18
  1448. package/dist/snorre.es36.js +0 -6
  1449. package/dist/snorre.es363.js +0 -47
  1450. package/dist/snorre.es364.js +0 -45
  1451. package/dist/snorre.es37.js +0 -6
  1452. package/dist/snorre.es370.js +0 -125
  1453. package/dist/snorre.es371.js +0 -24
  1454. package/dist/snorre.es375.js +0 -104
  1455. package/dist/snorre.es376.js +0 -81
  1456. package/dist/snorre.es377.js +0 -198
  1457. package/dist/snorre.es379.js +0 -43
  1458. package/dist/snorre.es38.js +0 -6
  1459. package/dist/snorre.es383.js +0 -34
  1460. package/dist/snorre.es387.js +0 -98
  1461. package/dist/snorre.es388.js +0 -237
  1462. package/dist/snorre.es39.js +0 -6
  1463. package/dist/snorre.es390.js +0 -173
  1464. package/dist/snorre.es391.js +0 -158
  1465. package/dist/snorre.es392.js +0 -35
  1466. package/dist/snorre.es395.js +0 -33
  1467. package/dist/snorre.es396.js +0 -73
  1468. package/dist/snorre.es397.js +0 -34
  1469. package/dist/snorre.es398.js +0 -79
  1470. package/dist/snorre.es399.js +0 -49
  1471. package/dist/snorre.es4.js +0 -54
  1472. package/dist/snorre.es40.js +0 -6
  1473. package/dist/snorre.es400.js +0 -86
  1474. package/dist/snorre.es401.js +0 -40
  1475. package/dist/snorre.es402.js +0 -20
  1476. package/dist/snorre.es403.js +0 -51
  1477. package/dist/snorre.es405.js +0 -160
  1478. package/dist/snorre.es408.js +0 -65
  1479. package/dist/snorre.es409.js +0 -201
  1480. package/dist/snorre.es41.js +0 -6
  1481. package/dist/snorre.es414.js +0 -45
  1482. package/dist/snorre.es416.js +0 -59
  1483. package/dist/snorre.es417.js +0 -77
  1484. package/dist/snorre.es42.js +0 -6
  1485. package/dist/snorre.es426.js +0 -34
  1486. package/dist/snorre.es428.js +0 -88
  1487. package/dist/snorre.es43.js +0 -6
  1488. package/dist/snorre.es432.js +0 -66
  1489. package/dist/snorre.es435.js +0 -133
  1490. package/dist/snorre.es436.js +0 -33
  1491. package/dist/snorre.es437.js +0 -251
  1492. package/dist/snorre.es438.js +0 -120
  1493. package/dist/snorre.es44.js +0 -6
  1494. package/dist/snorre.es444.js +0 -14
  1495. package/dist/snorre.es445.js +0 -45
  1496. package/dist/snorre.es446.js +0 -6
  1497. package/dist/snorre.es447.js +0 -6
  1498. package/dist/snorre.es448.js +0 -34
  1499. package/dist/snorre.es449.js +0 -48
  1500. package/dist/snorre.es45.js +0 -6
  1501. package/dist/snorre.es451.js +0 -170
  1502. package/dist/snorre.es452.js +0 -41
  1503. package/dist/snorre.es453.js +0 -1061
  1504. package/dist/snorre.es456.js +0 -76
  1505. package/dist/snorre.es457.js +0 -62
  1506. package/dist/snorre.es458.js +0 -12
  1507. package/dist/snorre.es459.js +0 -20
  1508. package/dist/snorre.es46.js +0 -6
  1509. package/dist/snorre.es460.js +0 -175
  1510. package/dist/snorre.es461.js +0 -46
  1511. package/dist/snorre.es462.js +0 -64
  1512. package/dist/snorre.es463.js +0 -32
  1513. package/dist/snorre.es465.js +0 -5141
  1514. package/dist/snorre.es466.js +0 -39
  1515. package/dist/snorre.es467.js +0 -10
  1516. package/dist/snorre.es468.js +0 -60
  1517. package/dist/snorre.es469.js +0 -51
  1518. package/dist/snorre.es47.js +0 -6
  1519. package/dist/snorre.es472.js +0 -39
  1520. package/dist/snorre.es473.js +0 -20
  1521. package/dist/snorre.es474.js +0 -141
  1522. package/dist/snorre.es475.js +0 -139
  1523. package/dist/snorre.es477.js +0 -220
  1524. package/dist/snorre.es479.js +0 -127
  1525. package/dist/snorre.es48.js +0 -6
  1526. package/dist/snorre.es481.js +0 -26
  1527. package/dist/snorre.es482.js +0 -35
  1528. package/dist/snorre.es483.js +0 -21
  1529. package/dist/snorre.es484.js +0 -40
  1530. package/dist/snorre.es485.js +0 -41
  1531. package/dist/snorre.es486.js +0 -60
  1532. package/dist/snorre.es487.js +0 -19
  1533. package/dist/snorre.es488.js +0 -22
  1534. package/dist/snorre.es489.js +0 -55
  1535. package/dist/snorre.es49.js +0 -6
  1536. package/dist/snorre.es490.js +0 -24
  1537. package/dist/snorre.es491.js +0 -86
  1538. package/dist/snorre.es494.js +0 -40
  1539. package/dist/snorre.es495.js +0 -25
  1540. package/dist/snorre.es496.js +0 -48
  1541. package/dist/snorre.es497.js +0 -387
  1542. package/dist/snorre.es498.js +0 -278
  1543. package/dist/snorre.es5.js +0 -66
  1544. package/dist/snorre.es50.js +0 -6
  1545. package/dist/snorre.es500.js +0 -28
  1546. package/dist/snorre.es501.js +0 -604
  1547. package/dist/snorre.es503.js +0 -56
  1548. package/dist/snorre.es504.js +0 -68
  1549. package/dist/snorre.es507.js +0 -137
  1550. package/dist/snorre.es508.js +0 -134
  1551. package/dist/snorre.es51.js +0 -6
  1552. package/dist/snorre.es511.js +0 -245
  1553. package/dist/snorre.es513.js +0 -127
  1554. package/dist/snorre.es516.js +0 -27
  1555. package/dist/snorre.es517.js +0 -114
  1556. package/dist/snorre.es518.js +0 -18
  1557. package/dist/snorre.es519.js +0 -12
  1558. package/dist/snorre.es52.js +0 -16
  1559. package/dist/snorre.es520.js +0 -50
  1560. package/dist/snorre.es521.js +0 -131
  1561. package/dist/snorre.es523.js +0 -8
  1562. package/dist/snorre.es527.js +0 -178
  1563. package/dist/snorre.es528.js +0 -125
  1564. package/dist/snorre.es529.js +0 -148
  1565. package/dist/snorre.es53.js +0 -6
  1566. package/dist/snorre.es530.js +0 -166
  1567. package/dist/snorre.es531.js +0 -123
  1568. package/dist/snorre.es532.js +0 -117
  1569. package/dist/snorre.es533.js +0 -126
  1570. package/dist/snorre.es534.js +0 -119
  1571. package/dist/snorre.es535.js +0 -138
  1572. package/dist/snorre.es536.js +0 -115
  1573. package/dist/snorre.es537.js +0 -115
  1574. package/dist/snorre.es538.js +0 -123
  1575. package/dist/snorre.es539.js +0 -204
  1576. package/dist/snorre.es54.js +0 -6
  1577. package/dist/snorre.es540.js +0 -124
  1578. package/dist/snorre.es541.js +0 -59
  1579. package/dist/snorre.es542.js +0 -128
  1580. package/dist/snorre.es544.js +0 -6
  1581. package/dist/snorre.es545.js +0 -62
  1582. package/dist/snorre.es546.js +0 -243
  1583. package/dist/snorre.es547.js +0 -139
  1584. package/dist/snorre.es549.js +0 -78
  1585. package/dist/snorre.es55.js +0 -6
  1586. package/dist/snorre.es550.js +0 -95
  1587. package/dist/snorre.es553.js +0 -16
  1588. package/dist/snorre.es554.js +0 -30
  1589. package/dist/snorre.es555.js +0 -73
  1590. package/dist/snorre.es556.js +0 -27
  1591. package/dist/snorre.es558.js +0 -65
  1592. package/dist/snorre.es56.js +0 -6
  1593. package/dist/snorre.es560.js +0 -7
  1594. package/dist/snorre.es561.js +0 -55
  1595. package/dist/snorre.es563.js +0 -86
  1596. package/dist/snorre.es564.js +0 -12
  1597. package/dist/snorre.es566.js +0 -32
  1598. package/dist/snorre.es567.js +0 -17
  1599. package/dist/snorre.es568.js +0 -12
  1600. package/dist/snorre.es57.js +0 -6
  1601. package/dist/snorre.es573.js +0 -42
  1602. package/dist/snorre.es58.js +0 -6
  1603. package/dist/snorre.es580.js +0 -16
  1604. package/dist/snorre.es582.js +0 -10
  1605. package/dist/snorre.es583.js +0 -329
  1606. package/dist/snorre.es584.js +0 -52
  1607. package/dist/snorre.es586.js +0 -78
  1608. package/dist/snorre.es587.js +0 -95
  1609. package/dist/snorre.es59.js +0 -12
  1610. package/dist/snorre.es591.js +0 -54
  1611. package/dist/snorre.es597.js +0 -41
  1612. package/dist/snorre.es598.js +0 -17
  1613. package/dist/snorre.es6.js +0 -39
  1614. package/dist/snorre.es60.js +0 -6
  1615. package/dist/snorre.es600.js +0 -6
  1616. package/dist/snorre.es601.js +0 -17
  1617. package/dist/snorre.es602.js +0 -15
  1618. package/dist/snorre.es603.js +0 -9
  1619. package/dist/snorre.es604.js +0 -6
  1620. package/dist/snorre.es606.js +0 -204
  1621. package/dist/snorre.es61.js +0 -6
  1622. package/dist/snorre.es611.js +0 -27
  1623. package/dist/snorre.es612.js +0 -12
  1624. package/dist/snorre.es613.js +0 -5
  1625. package/dist/snorre.es614.js +0 -9
  1626. package/dist/snorre.es615.js +0 -8
  1627. package/dist/snorre.es616.js +0 -66
  1628. package/dist/snorre.es617.js +0 -82
  1629. package/dist/snorre.es618.js +0 -147
  1630. package/dist/snorre.es62.js +0 -6
  1631. package/dist/snorre.es620.js +0 -17
  1632. package/dist/snorre.es622.js +0 -5
  1633. package/dist/snorre.es623.js +0 -12
  1634. package/dist/snorre.es625.js +0 -76
  1635. package/dist/snorre.es627.js +0 -8
  1636. package/dist/snorre.es629.js +0 -37
  1637. package/dist/snorre.es63.js +0 -6
  1638. package/dist/snorre.es630.js +0 -30
  1639. package/dist/snorre.es631.js +0 -91
  1640. package/dist/snorre.es632.js +0 -17
  1641. package/dist/snorre.es633.js +0 -22
  1642. package/dist/snorre.es634.js +0 -8
  1643. package/dist/snorre.es635.js +0 -45
  1644. package/dist/snorre.es636.js +0 -33
  1645. package/dist/snorre.es638.js +0 -59
  1646. package/dist/snorre.es64.js +0 -6
  1647. package/dist/snorre.es642.js +0 -13
  1648. package/dist/snorre.es645.js +0 -11
  1649. package/dist/snorre.es647.js +0 -18
  1650. package/dist/snorre.es648.js +0 -64
  1651. package/dist/snorre.es65.js +0 -6
  1652. package/dist/snorre.es650.js +0 -10
  1653. package/dist/snorre.es652.js +0 -31
  1654. package/dist/snorre.es654.js +0 -18
  1655. package/dist/snorre.es657.js +0 -228
  1656. package/dist/snorre.es658.js +0 -15
  1657. package/dist/snorre.es66.js +0 -6
  1658. package/dist/snorre.es662.js +0 -13
  1659. package/dist/snorre.es664.js +0 -29
  1660. package/dist/snorre.es666.js +0 -207
  1661. package/dist/snorre.es667.js +0 -49
  1662. package/dist/snorre.es668.js +0 -10
  1663. package/dist/snorre.es669.js +0 -8
  1664. package/dist/snorre.es67.js +0 -6
  1665. package/dist/snorre.es670.js +0 -13
  1666. package/dist/snorre.es671.js +0 -26
  1667. package/dist/snorre.es673.js +0 -9
  1668. package/dist/snorre.es675.js +0 -11
  1669. package/dist/snorre.es676.js +0 -19
  1670. package/dist/snorre.es677.js +0 -12
  1671. package/dist/snorre.es678.js +0 -16
  1672. package/dist/snorre.es679.js +0 -4
  1673. package/dist/snorre.es68.js +0 -6
  1674. package/dist/snorre.es680.js +0 -4
  1675. package/dist/snorre.es681.js +0 -4
  1676. package/dist/snorre.es682.js +0 -17
  1677. package/dist/snorre.es683.js +0 -11
  1678. package/dist/snorre.es684.js +0 -9
  1679. package/dist/snorre.es686.js +0 -52
  1680. package/dist/snorre.es687.js +0 -6
  1681. package/dist/snorre.es69.js +0 -6
  1682. package/dist/snorre.es690.js +0 -19
  1683. package/dist/snorre.es693.js +0 -12
  1684. package/dist/snorre.es694.js +0 -24
  1685. package/dist/snorre.es696.js +0 -12
  1686. package/dist/snorre.es697.js +0 -43
  1687. package/dist/snorre.es7.js +0 -27
  1688. package/dist/snorre.es70.js +0 -6
  1689. package/dist/snorre.es702.js +0 -27
  1690. package/dist/snorre.es706.js +0 -7
  1691. package/dist/snorre.es708.js +0 -32
  1692. package/dist/snorre.es709.js +0 -41
  1693. package/dist/snorre.es71.js +0 -6
  1694. package/dist/snorre.es710.js +0 -8
  1695. package/dist/snorre.es712.js +0 -52
  1696. package/dist/snorre.es714.js +0 -18
  1697. package/dist/snorre.es717.js +0 -26
  1698. package/dist/snorre.es719.js +0 -13
  1699. package/dist/snorre.es72.js +0 -6
  1700. package/dist/snorre.es720.js +0 -34
  1701. package/dist/snorre.es721.js +0 -27
  1702. package/dist/snorre.es722.js +0 -36
  1703. package/dist/snorre.es723.js +0 -20
  1704. package/dist/snorre.es724.js +0 -53
  1705. package/dist/snorre.es726.js +0 -8
  1706. package/dist/snorre.es728.js +0 -14
  1707. package/dist/snorre.es729.js +0 -53
  1708. package/dist/snorre.es73.js +0 -6
  1709. package/dist/snorre.es730.js +0 -17
  1710. package/dist/snorre.es731.js +0 -21
  1711. package/dist/snorre.es732.js +0 -11
  1712. package/dist/snorre.es733.js +0 -20
  1713. package/dist/snorre.es734.js +0 -10
  1714. package/dist/snorre.es735.js +0 -18
  1715. package/dist/snorre.es736.js +0 -43
  1716. package/dist/snorre.es737.js +0 -74
  1717. package/dist/snorre.es738.js +0 -25
  1718. package/dist/snorre.es739.js +0 -37
  1719. package/dist/snorre.es74.js +0 -6
  1720. package/dist/snorre.es740.js +0 -47
  1721. package/dist/snorre.es741.js +0 -24
  1722. package/dist/snorre.es742.js +0 -21
  1723. package/dist/snorre.es743.js +0 -28
  1724. package/dist/snorre.es744.js +0 -23
  1725. package/dist/snorre.es745.js +0 -44
  1726. package/dist/snorre.es747.js +0 -18
  1727. package/dist/snorre.es749.js +0 -12
  1728. package/dist/snorre.es75.js +0 -6
  1729. package/dist/snorre.es750.js +0 -7
  1730. package/dist/snorre.es751.js +0 -13
  1731. package/dist/snorre.es752.js +0 -16
  1732. package/dist/snorre.es753.js +0 -31
  1733. package/dist/snorre.es754.js +0 -31
  1734. package/dist/snorre.es755.js +0 -9
  1735. package/dist/snorre.es756.js +0 -23
  1736. package/dist/snorre.es759.js +0 -9
  1737. package/dist/snorre.es76.js +0 -6
  1738. package/dist/snorre.es760.js +0 -7
  1739. package/dist/snorre.es761.js +0 -46
  1740. package/dist/snorre.es762.js +0 -15
  1741. package/dist/snorre.es764.js +0 -5
  1742. package/dist/snorre.es765.js +0 -607
  1743. package/dist/snorre.es766.js +0 -13
  1744. package/dist/snorre.es767.js +0 -17
  1745. package/dist/snorre.es768.js +0 -41
  1746. package/dist/snorre.es769.js +0 -31
  1747. package/dist/snorre.es77.js +0 -6
  1748. package/dist/snorre.es770.js +0 -8
  1749. package/dist/snorre.es771.js +0 -24
  1750. package/dist/snorre.es772.js +0 -24
  1751. package/dist/snorre.es776.js +0 -18
  1752. package/dist/snorre.es778.js +0 -9
  1753. package/dist/snorre.es779.js +0 -74
  1754. package/dist/snorre.es78.js +0 -6
  1755. package/dist/snorre.es780.js +0 -5
  1756. package/dist/snorre.es781.js +0 -12
  1757. package/dist/snorre.es782.js +0 -29
  1758. package/dist/snorre.es786.js +0 -42
  1759. package/dist/snorre.es787.js +0 -128
  1760. package/dist/snorre.es789.js +0 -7
  1761. package/dist/snorre.es79.js +0 -6
  1762. package/dist/snorre.es790.js +0 -211
  1763. package/dist/snorre.es791.js +0 -14
  1764. package/dist/snorre.es793.js +0 -112
  1765. package/dist/snorre.es795.js +0 -52
  1766. package/dist/snorre.es796.js +0 -38
  1767. package/dist/snorre.es797.js +0 -8
  1768. package/dist/snorre.es799.js +0 -18
  1769. package/dist/snorre.es8.js +0 -79
  1770. package/dist/snorre.es80.js +0 -6
  1771. package/dist/snorre.es800.js +0 -12
  1772. package/dist/snorre.es801.js +0 -43
  1773. package/dist/snorre.es802.js +0 -256
  1774. package/dist/snorre.es804.js +0 -84
  1775. package/dist/snorre.es806.js +0 -21
  1776. package/dist/snorre.es807.js +0 -16
  1777. package/dist/snorre.es808.js +0 -13
  1778. package/dist/snorre.es809.js +0 -27
  1779. package/dist/snorre.es81.js +0 -6
  1780. package/dist/snorre.es810.js +0 -29
  1781. package/dist/snorre.es813.js +0 -12
  1782. package/dist/snorre.es814.js +0 -26
  1783. package/dist/snorre.es818.js +0 -11
  1784. package/dist/snorre.es819.js +0 -15
  1785. package/dist/snorre.es82.js +0 -6
  1786. package/dist/snorre.es823.js +0 -191
  1787. package/dist/snorre.es824.js +0 -7
  1788. package/dist/snorre.es825.js +0 -10
  1789. package/dist/snorre.es827.js +0 -16
  1790. package/dist/snorre.es828.js +0 -10
  1791. package/dist/snorre.es83.js +0 -6
  1792. package/dist/snorre.es830.js +0 -13
  1793. package/dist/snorre.es833.js +0 -26
  1794. package/dist/snorre.es834.js +0 -53
  1795. package/dist/snorre.es835.js +0 -44
  1796. package/dist/snorre.es837.js +0 -23
  1797. package/dist/snorre.es838.js +0 -42
  1798. package/dist/snorre.es839.js +0 -19
  1799. package/dist/snorre.es84.js +0 -6
  1800. package/dist/snorre.es840.js +0 -9
  1801. package/dist/snorre.es842.js +0 -21
  1802. package/dist/snorre.es843.js +0 -54
  1803. package/dist/snorre.es849.js +0 -19
  1804. package/dist/snorre.es85.js +0 -9
  1805. package/dist/snorre.es856.js +0 -9
  1806. package/dist/snorre.es857.js +0 -27
  1807. package/dist/snorre.es858.js +0 -9
  1808. package/dist/snorre.es86.js +0 -6
  1809. package/dist/snorre.es860.js +0 -9
  1810. package/dist/snorre.es869.js +0 -9
  1811. package/dist/snorre.es87.js +0 -6
  1812. package/dist/snorre.es870.js +0 -18
  1813. package/dist/snorre.es871.js +0 -9
  1814. package/dist/snorre.es872.js +0 -7
  1815. package/dist/snorre.es873.js +0 -7
  1816. package/dist/snorre.es876.js +0 -7
  1817. package/dist/snorre.es877.js +0 -9
  1818. package/dist/snorre.es878.js +0 -9
  1819. package/dist/snorre.es879.js +0 -8
  1820. package/dist/snorre.es88.js +0 -6
  1821. package/dist/snorre.es880.js +0 -10
  1822. package/dist/snorre.es885.js +0 -7
  1823. package/dist/snorre.es89.js +0 -6
  1824. package/dist/snorre.es890.js +0 -27
  1825. package/dist/snorre.es891.js +0 -20
  1826. package/dist/snorre.es893.js +0 -33
  1827. package/dist/snorre.es895.js +0 -123
  1828. package/dist/snorre.es896.js +0 -88
  1829. package/dist/snorre.es898.js +0 -33
  1830. package/dist/snorre.es9.js +0 -37
  1831. package/dist/snorre.es90.js +0 -6
  1832. package/dist/snorre.es900.js +0 -81
  1833. package/dist/snorre.es901.js +0 -87
  1834. package/dist/snorre.es902.js +0 -11
  1835. package/dist/snorre.es904.js +0 -10
  1836. package/dist/snorre.es906.js +0 -11
  1837. package/dist/snorre.es907.js +0 -571
  1838. package/dist/snorre.es91.js +0 -6
  1839. package/dist/snorre.es912.js +0 -8
  1840. package/dist/snorre.es916.js +0 -7
  1841. package/dist/snorre.es918.js +0 -7
  1842. package/dist/snorre.es919.js +0 -22
  1843. package/dist/snorre.es92.js +0 -6
  1844. package/dist/snorre.es921.js +0 -10
  1845. package/dist/snorre.es923.js +0 -32
  1846. package/dist/snorre.es925.js +0 -52
  1847. package/dist/snorre.es926.js +0 -25
  1848. package/dist/snorre.es927.js +0 -34
  1849. package/dist/snorre.es928.js +0 -58
  1850. package/dist/snorre.es93.js +0 -6
  1851. package/dist/snorre.es932.js +0 -6
  1852. package/dist/snorre.es933.js +0 -4
  1853. package/dist/snorre.es936.js +0 -20
  1854. package/dist/snorre.es937.js +0 -27
  1855. package/dist/snorre.es938.js +0 -22
  1856. package/dist/snorre.es94.js +0 -6
  1857. package/dist/snorre.es940.js +0 -8
  1858. package/dist/snorre.es941.js +0 -11
  1859. package/dist/snorre.es943.js +0 -67
  1860. package/dist/snorre.es944.js +0 -8
  1861. package/dist/snorre.es945.js +0 -18
  1862. package/dist/snorre.es946.js +0 -11
  1863. package/dist/snorre.es948.js +0 -25
  1864. package/dist/snorre.es95.js +0 -6
  1865. package/dist/snorre.es951.js +0 -16
  1866. package/dist/snorre.es954.js +0 -66
  1867. package/dist/snorre.es955.js +0 -64
  1868. package/dist/snorre.es956.js +0 -9
  1869. package/dist/snorre.es958.js +0 -10
  1870. package/dist/snorre.es959.js +0 -20
  1871. package/dist/snorre.es96.js +0 -6
  1872. package/dist/snorre.es960.js +0 -8
  1873. package/dist/snorre.es961.js +0 -8
  1874. package/dist/snorre.es962.js +0 -16
  1875. package/dist/snorre.es963.js +0 -13
  1876. package/dist/snorre.es964.js +0 -17
  1877. package/dist/snorre.es965.js +0 -8
  1878. package/dist/snorre.es966.js +0 -9
  1879. package/dist/snorre.es967.js +0 -11
  1880. package/dist/snorre.es968.js +0 -9
  1881. package/dist/snorre.es969.js +0 -59
  1882. package/dist/snorre.es97.js +0 -6
  1883. package/dist/snorre.es970.js +0 -12
  1884. package/dist/snorre.es971.js +0 -8
  1885. package/dist/snorre.es972.js +0 -8
  1886. package/dist/snorre.es973.js +0 -12
  1887. package/dist/snorre.es974.js +0 -8
  1888. package/dist/snorre.es975.js +0 -8
  1889. package/dist/snorre.es977.js +0 -14
  1890. package/dist/snorre.es978.js +0 -13
  1891. package/dist/snorre.es979.js +0 -13
  1892. package/dist/snorre.es98.js +0 -6
  1893. package/dist/snorre.es980.js +0 -14
  1894. package/dist/snorre.es981.js +0 -14
  1895. package/dist/snorre.es982.js +0 -13
  1896. package/dist/snorre.es983.js +0 -10
  1897. package/dist/snorre.es984.js +0 -9
  1898. package/dist/snorre.es985.js +0 -8
  1899. package/dist/snorre.es986.js +0 -9
  1900. package/dist/snorre.es987.js +0 -11
  1901. package/dist/snorre.es988.js +0 -9
  1902. package/dist/snorre.es99.js +0 -6
  1903. package/dist/snorre.es993.js +0 -24
  1904. package/dist/snorre.es999.js +0 -15
  1905. /package/dist/{snorre.es1128.js → _virtual/AttributeMap.js} +0 -0
  1906. /package/dist/{snorre.es1121.js → _virtual/Delta.js} +0 -0
  1907. /package/dist/{snorre.es1129.js → _virtual/Op.js} +0 -0
  1908. /package/dist/{snorre.es1014.js → _virtual/OpIterator.js} +0 -0
  1909. /package/dist/{snorre.es506.js → _virtual/_commonjsHelpers.js} +0 -0
  1910. /package/dist/{snorre.es1018.js → _virtual/constants.js} +0 -0
  1911. /package/dist/{snorre.es1132.js → _virtual/index.js} +0 -0
  1912. /package/dist/{snorre.es581.js → _virtual/index2.js} +0 -0
  1913. /package/dist/{snorre.es1194.js → _virtual/index3.js} +0 -0
  1914. /package/dist/{snorre.es1199.js → _virtual/index4.js} +0 -0
  1915. /package/dist/{snorre.es1019.js → _virtual/index5.js} +0 -0
  1916. /package/dist/{snorre.es1255.js → _virtual/index6.js} +0 -0
  1917. /package/dist/{snorre.es499.js → _virtual/index7.js} +0 -0
  1918. /package/dist/{snorre.es1195.js → _virtual/index8.js} +0 -0
  1919. /package/dist/{snorre.es548.js → _virtual/index9.js} +0 -0
  1920. /package/dist/{snorre.es585.js → _virtual/jsx-runtime.js} +0 -0
  1921. /package/dist/{snorre.es1252.js → _virtual/react-is.development.js} +0 -0
  1922. /package/dist/{snorre.es510.js → _virtual/react-is.development2.js} +0 -0
  1923. /package/dist/{snorre.es575.js → _virtual/react-is.development3.js} +0 -0
  1924. /package/dist/{snorre.es1130.js → _virtual/react-is.production.min.js} +0 -0
  1925. /package/dist/{snorre.es1251.js → _virtual/react-is.production.min2.js} +0 -0
  1926. /package/dist/{snorre.es509.js → _virtual/react-is.production.min3.js} +0 -0
  1927. /package/dist/{snorre.es594.js → _virtual/react-jsx-runtime.development.js} +0 -0
  1928. /package/dist/{snorre.es574.js → _virtual/react-jsx-runtime.production.min.js} +0 -0
  1929. /package/dist/{snorre.es593.js → _virtual/utils.js} +0 -0
  1930. /package/dist/{snorre.es1020.js → _virtual/validation.js} +0 -0
  1931. /package/dist/{snorre.es502.js → app-shell/theme.js} +0 -0
  1932. /package/dist/{snorre.es336.js → core/Alert/styles.js} +0 -0
  1933. /package/dist/{snorre.es335.js → core/AppLoader/styles.js} +0 -0
  1934. /package/dist/{snorre.es478.js → core/Autocomplete/hooks/useHandleDimentions.js} +0 -0
  1935. /package/dist/{snorre.es384.js → core/BarAndLineComposedChart/styles.js} +0 -0
  1936. /package/dist/{snorre.es385.js → core/BarChartWithCustomizedEvent/styles.js} +0 -0
  1937. /package/dist/{snorre.es410.js → core/BoxedTable/HeaderCell/styles.js} +0 -0
  1938. /package/dist/{snorre.es411.js → core/BoxedTable/RowCell/styles.js} +0 -0
  1939. /package/dist/{snorre.es412.js → core/BoxedTable/TableHeader/styles.js} +0 -0
  1940. /package/dist/{snorre.es413.js → core/BoxedTable/TableRow/styles.js} +0 -0
  1941. /package/dist/{snorre.es338.js → core/Button/styles.js} +0 -0
  1942. /package/dist/{snorre.es415.js → core/Calendar/styles.js} +0 -0
  1943. /package/dist/{snorre.es339.js → core/Card/styles.js} +0 -0
  1944. /package/dist/{snorre.es360.js → core/Checkbox/styles.js} +0 -0
  1945. /package/dist/{snorre.es407.js → core/CommentsTimeline/styles.js} +0 -0
  1946. /package/dist/{snorre.es368.js → core/CustomText/styles.js} +0 -0
  1947. /package/dist/{snorre.es340.js → core/Divider/styles.js} +0 -0
  1948. /package/dist/{snorre.es341.js → core/Dropdown/styles.js} +0 -0
  1949. /package/dist/{snorre.es419.js → core/DropdownMenu/styles.js} +0 -0
  1950. /package/dist/{snorre.es434.js → core/GoogleButton/styles.js} +0 -0
  1951. /package/dist/{snorre.es422.js → core/HighlightText/styles.js} +0 -0
  1952. /package/dist/{snorre.es365.js → core/Html/styles.js} +0 -0
  1953. /package/dist/{snorre.es346.js → core/Image/styles.js} +0 -0
  1954. /package/dist/{snorre.es440.js → core/ImageViewer/styles.js} +0 -0
  1955. /package/dist/{snorre.es343.js → core/Input/styles.js} +0 -0
  1956. /package/dist/{snorre.es349.js → core/Link/styles.js} +0 -0
  1957. /package/dist/{snorre.es15.js → core/List/Item.js} +0 -0
  1958. /package/dist/{snorre.es351.js → core/List/styles.js} +0 -0
  1959. /package/dist/{snorre.es433.js → core/ListPager/styles.js} +0 -0
  1960. /package/dist/{snorre.es386.js → core/MediaCarousel/styles.js} +0 -0
  1961. /package/dist/{snorre.es429.js → core/NoticeCard/privateComponents/NoticeAttachmentBlock/styles.js} +0 -0
  1962. /package/dist/{snorre.es430.js → core/NoticeCard/privateComponents/NoticeAttachmentList/styles.js} +0 -0
  1963. /package/dist/{snorre.es431.js → core/NoticeCard/privateComponents/NoticeMetaInfo/styles.js} +0 -0
  1964. /package/dist/{snorre.es480.js → core/NotificationCounter/styles.js} +0 -0
  1965. /package/dist/{snorre.es378.js → core/NotificationsMenu/styles.js} +0 -0
  1966. /package/dist/{snorre.es380.js → core/PieChart/styles.js} +0 -0
  1967. /package/dist/{snorre.es406.js → core/PreemptionCardLoading/styles.js} +0 -0
  1968. /package/dist/{snorre.es492.js → core/QuillEditor/config.js} +0 -0
  1969. /package/dist/{snorre.es493.js → core/QuillEditor/styles.js} +0 -0
  1970. /package/dist/{snorre.es361.js → core/Radio/styles.js} +0 -0
  1971. /package/dist/{snorre.es372.js → core/SearchSelect/styles.js} +0 -0
  1972. /package/dist/{snorre.es369.js → core/Select/styles.js} +0 -0
  1973. /package/dist/{snorre.es381.js → core/SimpleBarChart/styles.js} +0 -0
  1974. /package/dist/{snorre.es425.js → core/SimpleLineChart/styles.js} +0 -0
  1975. /package/dist/{snorre.es362.js → core/Skeleton/styles.js} +0 -0
  1976. /package/dist/{snorre.es476.js → core/Spinner/styles.js} +0 -0
  1977. /package/dist/{snorre.es443.js → core/Stepper/MobileStep/styles.js} +0 -0
  1978. /package/dist/{snorre.es442.js → core/Stepper/Step/styles.js} +0 -0
  1979. /package/dist/{snorre.es441.js → core/Stepper/styles.js} +0 -0
  1980. /package/dist/{snorre.es424.js → core/TabBar/TabItem/styles.js} +0 -0
  1981. /package/dist/{snorre.es423.js → core/TabBar/styles.js} +0 -0
  1982. /package/dist/{snorre.es427.js → core/TabNav/TabNavItem/styles.js} +0 -0
  1983. /package/dist/{snorre.es471.js → core/TabNav/utils/useContainerDimensions.js} +0 -0
  1984. /package/dist/{snorre.es454.js → core/Table/styles.js} +0 -0
  1985. /package/dist/{snorre.es352.js → core/Tag/styles.js} +0 -0
  1986. /package/dist/{snorre.es353.js → core/Text/styles.js} +0 -0
  1987. /package/dist/{snorre.es404.js → core/Textarea/styles.js} +0 -0
  1988. /package/dist/{snorre.es421.js → core/Timeline/TimelineStep/styles.js} +0 -0
  1989. /package/dist/{snorre.es420.js → core/Timeline/styles.js} +0 -0
  1990. /package/dist/{snorre.es470.js → core/Timepicker/styles.js} +0 -0
  1991. /package/dist/{snorre.es439.js → core/Tooltip/styles.js} +0 -0
  1992. /package/dist/{snorre.es373.js → core/UserMenu/styles.js} +0 -0
  1993. /package/dist/{snorre.es348.js → core/Video/styles.js} +0 -0
  1994. /package/dist/{snorre.es418.js → core/YearWheel/styles.js} +0 -0
  1995. /package/dist/{snorre.es464.js → core/private/preemption.js} +0 -0
  1996. /package/dist/{snorre.es344.js → core/utils/debounce.js} +0 -0
  1997. /package/dist/{snorre.es316.js → enums/Keyboard.js} +0 -0
  1998. /package/dist/{snorre.es326.js → globals/styles/breakpoints.js} +0 -0
  1999. /package/dist/{snorre.es328.js → globals/styles/paddings.js} +0 -0
  2000. /package/dist/{snorre.es327.js → globals/styles/styles.js} +0 -0
  2001. /package/dist/{snorre.es317.js → hooks/useIsMobile.js} +0 -0
  2002. /package/dist/{snorre.es286.js → hooks/useScreenOrientation.js} +0 -0
  2003. /package/dist/{snorre.es355.js → layout/Footer/FooterCol/styles.js} +0 -0
  2004. /package/dist/{snorre.es356.js → layout/Footer/FooterGroup/styles.js} +0 -0
  2005. /package/dist/{snorre.es357.js → layout/Footer/FooterLabel/styles.js} +0 -0
  2006. /package/dist/{snorre.es393.js → layout/Layout/styles.js} +0 -0
  2007. /package/dist/{snorre.es394.js → layout/Topbar/styles.js} +0 -0
  2008. /package/dist/{snorre.es522.js → node_modules/@babel/runtime/helpers/esm/extends.js} +0 -0
  2009. /package/dist/{snorre.es1136.js → node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js} +0 -0
  2010. /package/dist/{snorre.es947.js → node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js} +0 -0
  2011. /package/dist/{snorre.es913.js → node_modules/@babel/runtime/helpers/esm/typeof.js} +0 -0
  2012. /package/dist/{snorre.es1009.js → node_modules/@date-fns/tz/tzOffset/index.js} +0 -0
  2013. /package/dist/{snorre.es524.js → node_modules/@emotion/hash/dist/emotion-hash.esm.js} +0 -0
  2014. /package/dist/{snorre.es526.js → node_modules/@emotion/memoize/dist/emotion-memoize.esm.js} +0 -0
  2015. /package/dist/{snorre.es515.js → node_modules/@emotion/sheet/dist/emotion-sheet.esm.js} +0 -0
  2016. /package/dist/{snorre.es525.js → node_modules/@emotion/unitless/dist/emotion-unitless.esm.js} +0 -0
  2017. /package/dist/{snorre.es514.js → node_modules/@emotion/use-insertion-effect-with-fallbacks/dist/emotion-use-insertion-effect-with-fallbacks.browser.esm.js} +0 -0
  2018. /package/dist/{snorre.es512.js → node_modules/@emotion/utils/dist/emotion-utils.browser.esm.js} +0 -0
  2019. /package/dist/{snorre.es1210.js → node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js} +0 -0
  2020. /package/dist/{snorre.es1163.js → node_modules/@popperjs/core/lib/dom-utils/getNodeName.js} +0 -0
  2021. /package/dist/{snorre.es1170.js → node_modules/@popperjs/core/lib/dom-utils/getWindow.js} +0 -0
  2022. /package/dist/{snorre.es1082.js → node_modules/@popperjs/core/lib/enums.js} +0 -0
  2023. /package/dist/{snorre.es1089.js → node_modules/@popperjs/core/lib/utils/debounce.js} +0 -0
  2024. /package/dist/{snorre.es1169.js → node_modules/@popperjs/core/lib/utils/expandToHashMap.js} +0 -0
  2025. /package/dist/{snorre.es1180.js → node_modules/@popperjs/core/lib/utils/getAltAxis.js} +0 -0
  2026. /package/dist/{snorre.es1164.js → node_modules/@popperjs/core/lib/utils/getBasePlacement.js} +0 -0
  2027. /package/dist/{snorre.es1181.js → node_modules/@popperjs/core/lib/utils/getFreshSideObject.js} +0 -0
  2028. /package/dist/{snorre.es1166.js → node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js} +0 -0
  2029. /package/dist/{snorre.es1175.js → node_modules/@popperjs/core/lib/utils/getOppositePlacement.js} +0 -0
  2030. /package/dist/{snorre.es1176.js → node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js} +0 -0
  2031. /package/dist/{snorre.es1173.js → node_modules/@popperjs/core/lib/utils/getVariation.js} +0 -0
  2032. /package/dist/{snorre.es1174.js → node_modules/@popperjs/core/lib/utils/math.js} +0 -0
  2033. /package/dist/{snorre.es1090.js → node_modules/@popperjs/core/lib/utils/mergeByName.js} +0 -0
  2034. /package/dist/{snorre.es1191.js → node_modules/@popperjs/core/lib/utils/rectToClientRect.js} +0 -0
  2035. /package/dist/{snorre.es1189.js → node_modules/@popperjs/core/lib/utils/userAgent.js} +0 -0
  2036. /package/dist/{snorre.es565.js → node_modules/@react-aria/interactions/dist/createEventHandler.js} +0 -0
  2037. /package/dist/{snorre.es571.js → node_modules/@react-aria/ssr/dist/SSRProvider.js} +0 -0
  2038. /package/dist/{snorre.es577.js → node_modules/@react-aria/utils/dist/chain.js} +0 -0
  2039. /package/dist/{snorre.es557.js → node_modules/@react-aria/utils/dist/domHelpers.js} +0 -0
  2040. /package/dist/{snorre.es572.js → node_modules/@react-aria/utils/dist/filterDOMProps.js} +0 -0
  2041. /package/dist/{snorre.es569.js → node_modules/@react-aria/utils/dist/focusWithoutScrolling.js} +0 -0
  2042. /package/dist/{snorre.es559.js → node_modules/@react-aria/utils/dist/platform.js} +0 -0
  2043. /package/dist/{snorre.es570.js → node_modules/@react-aria/utils/dist/runAfterTransition.js} +0 -0
  2044. /package/dist/{snorre.es562.js → node_modules/@react-aria/utils/dist/useGlobalListeners.js} +0 -0
  2045. /package/dist/{snorre.es576.js → node_modules/@react-aria/utils/dist/useLayoutEffect.js} +0 -0
  2046. /package/dist/{snorre.es578.js → node_modules/@react-stately/flags/dist/import.js} +0 -0
  2047. /package/dist/{snorre.es592.js → node_modules/@react-stately/utils/dist/useControlledState.js} +0 -0
  2048. /package/dist/{snorre.es374.js → node_modules/body-scroll-lock/lib/bodyScrollLock.esm.js} +0 -0
  2049. /package/dist/{snorre.es579.js → node_modules/clsx/dist/clsx.js} +0 -0
  2050. /package/dist/{snorre.es1027.js → node_modules/date-fns/esm/_lib/addLeadingZeros/index.js} +0 -0
  2051. /package/dist/{snorre.es911.js → node_modules/date-fns/esm/_lib/defaultOptions/index.js} +0 -0
  2052. /package/dist/{snorre.es908.js → node_modules/date-fns/esm/_lib/format/longFormatters/index.js} +0 -0
  2053. /package/dist/{snorre.es909.js → node_modules/date-fns/esm/_lib/getTimezoneOffsetInMilliseconds/index.js} +0 -0
  2054. /package/dist/{snorre.es910.js → node_modules/date-fns/esm/_lib/protectedTokens/index.js} +0 -0
  2055. /package/dist/{snorre.es905.js → node_modules/date-fns/esm/_lib/requiredArgs/index.js} +0 -0
  2056. /package/dist/{snorre.es903.js → node_modules/date-fns/esm/_lib/toInteger/index.js} +0 -0
  2057. /package/dist/{snorre.es1013.js → node_modules/date-fns/esm/locale/_lib/buildFormatLongFn/index.js} +0 -0
  2058. /package/dist/{snorre.es1010.js → node_modules/date-fns/esm/locale/_lib/buildLocalizeFn/index.js} +0 -0
  2059. /package/dist/{snorre.es1011.js → node_modules/date-fns/esm/locale/_lib/buildMatchFn/index.js} +0 -0
  2060. /package/dist/{snorre.es1012.js → node_modules/date-fns/esm/locale/_lib/buildMatchPatternFn/index.js} +0 -0
  2061. /package/dist/{snorre.es892.js → node_modules/date-fns/esm/locale/en-US/_lib/formatDistance/index.js} +0 -0
  2062. /package/dist/{snorre.es894.js → node_modules/date-fns/esm/locale/en-US/_lib/formatRelative/index.js} +0 -0
  2063. /package/dist/{snorre.es897.js → node_modules/date-fns/esm/locale/nb/_lib/formatDistance/index.js} +0 -0
  2064. /package/dist/{snorre.es899.js → node_modules/date-fns/esm/locale/nb/_lib/formatRelative/index.js} +0 -0
  2065. /package/dist/{snorre.es543.js → node_modules/deepmerge/dist/cjs.js} +0 -0
  2066. /package/dist/{snorre.es366.js → node_modules/dompurify/dist/purify.es.js} +0 -0
  2067. /package/dist/{snorre.es1122.js → node_modules/fast-diff/diff.js} +0 -0
  2068. /package/dist/{snorre.es551.js → node_modules/load-script/index.js} +0 -0
  2069. /package/dist/{snorre.es1261.js → node_modules/lodash-es/_apply.js} +0 -0
  2070. /package/dist/{snorre.es1264.js → node_modules/lodash-es/_arrayEach.js} +0 -0
  2071. /package/dist/{snorre.es1277.js → node_modules/lodash-es/_arrayFilter.js} +0 -0
  2072. /package/dist/{snorre.es1274.js → node_modules/lodash-es/_arrayPush.js} +0 -0
  2073. /package/dist/{snorre.es1306.js → node_modules/lodash-es/_arraySome.js} +0 -0
  2074. /package/dist/{snorre.es1295.js → node_modules/lodash-es/_baseTimes.js} +0 -0
  2075. /package/dist/{snorre.es1233.js → node_modules/lodash-es/_baseUnary.js} +0 -0
  2076. /package/dist/{snorre.es1328.js → node_modules/lodash-es/_cacheHas.js} +0 -0
  2077. /package/dist/{snorre.es1322.js → node_modules/lodash-es/_cloneRegExp.js} +0 -0
  2078. /package/dist/{snorre.es1275.js → node_modules/lodash-es/_copyArray.js} +0 -0
  2079. /package/dist/{snorre.es1279.js → node_modules/lodash-es/_createBaseFor.js} +0 -0
  2080. /package/dist/{snorre.es1280.js → node_modules/lodash-es/_freeGlobal.js} +0 -0
  2081. /package/dist/{snorre.es1335.js → node_modules/lodash-es/_getValue.js} +0 -0
  2082. /package/dist/{snorre.es1343.js → node_modules/lodash-es/_hashDelete.js} +0 -0
  2083. /package/dist/{snorre.es1271.js → node_modules/lodash-es/_initCloneArray.js} +0 -0
  2084. /package/dist/{snorre.es1266.js → node_modules/lodash-es/_isIndex.js} +0 -0
  2085. /package/dist/{snorre.es1347.js → node_modules/lodash-es/_isKeyable.js} +0 -0
  2086. /package/dist/{snorre.es1260.js → node_modules/lodash-es/_isPrototype.js} +0 -0
  2087. /package/dist/{snorre.es1336.js → node_modules/lodash-es/_listCacheClear.js} +0 -0
  2088. /package/dist/{snorre.es1307.js → node_modules/lodash-es/_mapToArray.js} +0 -0
  2089. /package/dist/{snorre.es1296.js → node_modules/lodash-es/_nativeKeysIn.js} +0 -0
  2090. /package/dist/{snorre.es1283.js → node_modules/lodash-es/_objectToString.js} +0 -0
  2091. /package/dist/{snorre.es1294.js → node_modules/lodash-es/_overArg.js} +0 -0
  2092. /package/dist/{snorre.es1305.js → node_modules/lodash-es/_safeGet.js} +0 -0
  2093. /package/dist/{snorre.es1326.js → node_modules/lodash-es/_setCacheAdd.js} +0 -0
  2094. /package/dist/{snorre.es1316.js → node_modules/lodash-es/_setCacheHas.js} +0 -0
  2095. /package/dist/{snorre.es1308.js → node_modules/lodash-es/_setToArray.js} +0 -0
  2096. /package/dist/{snorre.es1310.js → node_modules/lodash-es/_shortOut.js} +0 -0
  2097. /package/dist/{snorre.es1314.js → node_modules/lodash-es/_stackDelete.js} +0 -0
  2098. /package/dist/{snorre.es1315.js → node_modules/lodash-es/_stackGet.js} +0 -0
  2099. /package/dist/{snorre.es1327.js → node_modules/lodash-es/_stackHas.js} +0 -0
  2100. /package/dist/{snorre.es1290.js → node_modules/lodash-es/_toSource.js} +0 -0
  2101. /package/dist/{snorre.es1214.js → node_modules/lodash-es/constant.js} +0 -0
  2102. /package/dist/{snorre.es1215.js → node_modules/lodash-es/eq.js} +0 -0
  2103. /package/dist/{snorre.es1216.js → node_modules/lodash-es/identity.js} +0 -0
  2104. /package/dist/{snorre.es1220.js → node_modules/lodash-es/isArray.js} +0 -0
  2105. /package/dist/{snorre.es1223.js → node_modules/lodash-es/isLength.js} +0 -0
  2106. /package/dist/{snorre.es1230.js → node_modules/lodash-es/isObject.js} +0 -0
  2107. /package/dist/{snorre.es1219.js → node_modules/lodash-es/isObjectLike.js} +0 -0
  2108. /package/dist/{snorre.es1248.js → node_modules/lodash-es/stubArray.js} +0 -0
  2109. /package/dist/{snorre.es1227.js → node_modules/lodash-es/stubFalse.js} +0 -0
  2110. /package/dist/{snorre.es552.js → node_modules/memoize-one/dist/memoize-one.esm.js} +0 -0
  2111. /package/dist/{snorre.es619.js → node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/utils/accelerated-values.js} +0 -0
  2112. /package/dist/{snorre.es621.js → node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.js} +0 -0
  2113. /package/dist/{snorre.es685.js → node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/spring/defaults.js} +0 -0
  2114. /package/dist/{snorre.es725.js → node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-animation-controls.js} +0 -0
  2115. /package/dist/{snorre.es746.js → node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-keyframes-target.js} +0 -0
  2116. /package/dist/{snorre.es920.js → node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-transition-defined.js} +0 -0
  2117. /package/dist/{snorre.es599.js → node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/utils.js} +0 -0
  2118. /package/dist/{snorre.es595.js → node_modules/motion/dist/es/framer-motion/dist/es/context/LayoutGroupContext.js} +0 -0
  2119. /package/dist/{snorre.es639.js → node_modules/motion/dist/es/framer-motion/dist/es/context/LazyContext.js} +0 -0
  2120. /package/dist/{snorre.es640.js → node_modules/motion/dist/es/framer-motion/dist/es/context/MotionConfigContext.js} +0 -0
  2121. /package/dist/{snorre.es641.js → node_modules/motion/dist/es/framer-motion/dist/es/context/MotionContext/index.js} +0 -0
  2122. /package/dist/{snorre.es637.js → node_modules/motion/dist/es/framer-motion/dist/es/context/PresenceContext.js} +0 -0
  2123. /package/dist/{snorre.es689.js → node_modules/motion/dist/es/framer-motion/dist/es/context/SwitchLayoutGroupContext.js} +0 -0
  2124. /package/dist/{snorre.es715.js → node_modules/motion/dist/es/framer-motion/dist/es/easing/modifiers/mirror.js} +0 -0
  2125. /package/dist/{snorre.es716.js → node_modules/motion/dist/es/framer-motion/dist/es/easing/modifiers/reverse.js} +0 -0
  2126. /package/dist/{snorre.es707.js → node_modules/motion/dist/es/framer-motion/dist/es/easing/utils/is-easing-array.js} +0 -0
  2127. /package/dist/{snorre.es727.js → node_modules/motion/dist/es/framer-motion/dist/es/events/add-dom-event.js} +0 -0
  2128. /package/dist/{snorre.es785.js → node_modules/motion/dist/es/framer-motion/dist/es/frameloop/order.js} +0 -0
  2129. /package/dist/{snorre.es788.js → node_modules/motion/dist/es/framer-motion/dist/es/motion/features/Feature.js} +0 -0
  2130. /package/dist/{snorre.es644.js → node_modules/motion/dist/es/framer-motion/dist/es/motion/features/definitions.js} +0 -0
  2131. /package/dist/{snorre.es821.js → node_modules/motion/dist/es/framer-motion/dist/es/motion/features/viewport/observers.js} +0 -0
  2132. /package/dist/{snorre.es646.js → node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/symbol.js} +0 -0
  2133. /package/dist/{snorre.es649.js → node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/valid-prop.js} +0 -0
  2134. /package/dist/{snorre.es942.js → node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/conversion.js} +0 -0
  2135. /package/dist/{snorre.es924.js → node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/copy.js} +0 -0
  2136. /package/dist/{snorre.es659.js → node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/models.js} +0 -0
  2137. /package/dist/{snorre.es805.js → node_modules/motion/dist/es/framer-motion/dist/es/projection/node/state.js} +0 -0
  2138. /package/dist/{snorre.es929.js → node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/transform.js} +0 -0
  2139. /package/dist/{snorre.es930.js → node_modules/motion/dist/es/framer-motion/dist/es/projection/utils/each-axis.js} +0 -0
  2140. /package/dist/{snorre.es931.js → node_modules/motion/dist/es/framer-motion/dist/es/projection/utils/has-transform.js} +0 -0
  2141. /package/dist/{snorre.es688.js → node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/camel-to-dash.js} +0 -0
  2142. /package/dist/{snorre.es651.js → node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/is-css-variable.js} +0 -0
  2143. /package/dist/{snorre.es922.js → node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/is-svg-element.js} +0 -0
  2144. /package/dist/{snorre.es653.js → node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/get-as-type.js} +0 -0
  2145. /package/dist/{snorre.es773.js → node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/test.js} +0 -0
  2146. /package/dist/{snorre.es915.js → node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/type-auto.js} +0 -0
  2147. /package/dist/{snorre.es939.js → node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/create-render-state.js} +0 -0
  2148. /package/dist/{snorre.es655.js → node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/keys-transform.js} +0 -0
  2149. /package/dist/{snorre.es811.js → node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/parse-transform.js} +0 -0
  2150. /package/dist/{snorre.es812.js → node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/render.js} +0 -0
  2151. /package/dist/{snorre.es656.js → node_modules/motion/dist/es/framer-motion/dist/es/render/store.js} +0 -0
  2152. /package/dist/{snorre.es820.js → node_modules/motion/dist/es/framer-motion/dist/es/render/svg/lowercase-elements.js} +0 -0
  2153. /package/dist/{snorre.es815.js → node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/camel-case-attrs.js} +0 -0
  2154. /package/dist/{snorre.es816.js → node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/is-svg-tag.js} +0 -0
  2155. /package/dist/{snorre.es817.js → node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/measure.js} +0 -0
  2156. /package/dist/{snorre.es692.js → node_modules/motion/dist/es/framer-motion/dist/es/render/utils/compare-by-depth.js} +0 -0
  2157. /package/dist/{snorre.es774.js → node_modules/motion/dist/es/framer-motion/dist/es/render/utils/is-variant-label.js} +0 -0
  2158. /package/dist/{snorre.es672.js → node_modules/motion/dist/es/framer-motion/dist/es/render/utils/resolve-variants.js} +0 -0
  2159. /package/dist/{snorre.es775.js → node_modules/motion/dist/es/framer-motion/dist/es/render/utils/variant-props.js} +0 -0
  2160. /package/dist/{snorre.es917.js → node_modules/motion/dist/es/framer-motion/dist/es/stats/buffer.js} +0 -0
  2161. /package/dist/{snorre.es674.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/GlobalConfig.js} +0 -0
  2162. /package/dist/{snorre.es691.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/array.js} +0 -0
  2163. /package/dist/{snorre.es626.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/clamp.js} +0 -0
  2164. /package/dist/{snorre.es718.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/distance.js} +0 -0
  2165. /package/dist/{snorre.es803.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/get-context-window.js} +0 -0
  2166. /package/dist/{snorre.es934.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/hsla-to-rgba.js} +0 -0
  2167. /package/dist/{snorre.es643.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/is-browser.js} +0 -0
  2168. /package/dist/{snorre.es660.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/is-numerical-string.js} +0 -0
  2169. /package/dist/{snorre.es763.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/is-ref-object.js} +0 -0
  2170. /package/dist/{snorre.es661.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/is-zero-value-string.js} +0 -0
  2171. /package/dist/{snorre.es784.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/immediate.js} +0 -0
  2172. /package/dist/{snorre.es713.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/number.js} +0 -0
  2173. /package/dist/{snorre.es783.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/visibility.js} +0 -0
  2174. /package/dist/{snorre.es711.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/offsets/time.js} +0 -0
  2175. /package/dist/{snorre.es628.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/pipe.js} +0 -0
  2176. /package/dist/{snorre.es663.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/reduced-motion/state.js} +0 -0
  2177. /package/dist/{snorre.es935.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/shallow-compare.js} +0 -0
  2178. /package/dist/{snorre.es596.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/use-constant.js} +0 -0
  2179. /package/dist/{snorre.es705.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/velocity-per-second.js} +0 -0
  2180. /package/dist/{snorre.es665.js → node_modules/motion/dist/es/framer-motion/dist/es/utils/warn-once.js} +0 -0
  2181. /package/dist/{snorre.es605.js → node_modules/motion/dist/es/framer-motion/dist/es/value/utils/is-motion-value.js} +0 -0
  2182. /package/dist/{snorre.es624.js → node_modules/motion/dist/es/motion-dom/dist/es/animation/generators/utils/calc-duration.js} +0 -0
  2183. /package/dist/{snorre.es609.js → node_modules/motion/dist/es/motion-dom/dist/es/animation/generators/utils/is-generator.js} +0 -0
  2184. /package/dist/{snorre.es758.js → node_modules/motion/dist/es/motion-dom/dist/es/animation/utils/get-value-transition.js} +0 -0
  2185. /package/dist/{snorre.es610.js → node_modules/motion/dist/es/motion-dom/dist/es/animation/waapi/utils/attach-timeline.js} +0 -0
  2186. /package/dist/{snorre.es695.js → node_modules/motion/dist/es/motion-dom/dist/es/gestures/drag/state/is-active.js} +0 -0
  2187. /package/dist/{snorre.es701.js → node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js} +0 -0
  2188. /package/dist/{snorre.es703.js → node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/utils/state.js} +0 -0
  2189. /package/dist/{snorre.es698.js → node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/capture-pointer.js} +0 -0
  2190. /package/dist/{snorre.es699.js → node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/is-node-or-child.js} +0 -0
  2191. /package/dist/{snorre.es700.js → node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/is-primary-pointer.js} +0 -0
  2192. /package/dist/{snorre.es748.js → node_modules/motion/dist/es/motion-dom/dist/es/utils/is-bezier-definition.js} +0 -0
  2193. /package/dist/{snorre.es777.js → node_modules/motion/dist/es/motion-dom/dist/es/utils/resolve-elements.js} +0 -0
  2194. /package/dist/{snorre.es914.js → node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/flags.js} +0 -0
  2195. /package/dist/{snorre.es757.js → node_modules/motion/dist/es/motion-utils/dist/es/memo.js} +0 -0
  2196. /package/dist/{snorre.es607.js → node_modules/motion/dist/es/motion-utils/dist/es/noop.js} +0 -0
  2197. /package/dist/{snorre.es704.js → node_modules/motion/dist/es/motion-utils/dist/es/progress.js} +0 -0
  2198. /package/dist/{snorre.es608.js → node_modules/motion/dist/es/motion-utils/dist/es/time-conversion.js} +0 -0
  2199. /package/dist/{snorre.es588.js → node_modules/object-assign/index.js} +0 -0
  2200. /package/dist/{snorre.es589.js → node_modules/prop-types/lib/ReactPropTypesSecret.js} +0 -0
  2201. /package/dist/{snorre.es590.js → node_modules/prop-types/lib/has.js} +0 -0
  2202. /package/dist/{snorre.es1113.js → node_modules/quill/core/instances.js} +0 -0
  2203. /package/dist/{snorre.es1107.js → node_modules/quill/core/logger.js} +0 -0
  2204. /package/dist/{snorre.es1105.js → node_modules/quill/core/module.js} +0 -0
  2205. /package/dist/{snorre.es1115.js → node_modules/quill/core/theme.js} +0 -0
  2206. /package/dist/{snorre.es1116.js → node_modules/quill/core/utils/scrollRectIntoView.js} +0 -0
  2207. /package/dist/{snorre.es1196.js → node_modules/quill/modules/normalizeExternalHTML/normalizers/googleDocs.js} +0 -0
  2208. /package/dist/{snorre.es1197.js → node_modules/quill/modules/normalizeExternalHTML/normalizers/msWord.js} +0 -0
  2209. /package/dist/{snorre.es1072.js → node_modules/quill/node_modules/parchment/dist/parchment.js} +0 -0
  2210. /package/dist/{snorre.es1052.js → node_modules/quill/ui/icons.js} +0 -0
  2211. /package/dist/{snorre.es1053.js → node_modules/quill/ui/picker.js} +0 -0
  2212. /package/dist/{snorre.es1056.js → node_modules/quill/ui/tooltip.js} +0 -0
  2213. /package/dist/{snorre.es794.js → node_modules/raf-schd/dist/raf-schd.esm.js} +0 -0
  2214. /package/dist/{snorre.es822.js → node_modules/react-day-picker/dist/esm/UI.js} +0 -0
  2215. /package/dist/{snorre.es952.js → node_modules/react-day-picker/dist/esm/classes/CalendarMonth.js} +0 -0
  2216. /package/dist/{snorre.es953.js → node_modules/react-day-picker/dist/esm/classes/CalendarWeek.js} +0 -0
  2217. /package/dist/{snorre.es844.js → node_modules/react-day-picker/dist/esm/components/Button.js} +0 -0
  2218. /package/dist/{snorre.es845.js → node_modules/react-day-picker/dist/esm/components/CaptionLabel.js} +0 -0
  2219. /package/dist/{snorre.es846.js → node_modules/react-day-picker/dist/esm/components/Chevron.js} +0 -0
  2220. /package/dist/{snorre.es847.js → node_modules/react-day-picker/dist/esm/components/Day.js} +0 -0
  2221. /package/dist/{snorre.es848.js → node_modules/react-day-picker/dist/esm/components/DayButton.js} +0 -0
  2222. /package/dist/{snorre.es850.js → node_modules/react-day-picker/dist/esm/components/DropdownNav.js} +0 -0
  2223. /package/dist/{snorre.es851.js → node_modules/react-day-picker/dist/esm/components/Footer.js} +0 -0
  2224. /package/dist/{snorre.es852.js → node_modules/react-day-picker/dist/esm/components/Month.js} +0 -0
  2225. /package/dist/{snorre.es853.js → node_modules/react-day-picker/dist/esm/components/MonthCaption.js} +0 -0
  2226. /package/dist/{snorre.es854.js → node_modules/react-day-picker/dist/esm/components/MonthGrid.js} +0 -0
  2227. /package/dist/{snorre.es855.js → node_modules/react-day-picker/dist/esm/components/Months.js} +0 -0
  2228. /package/dist/{snorre.es859.js → node_modules/react-day-picker/dist/esm/components/Option.js} +0 -0
  2229. /package/dist/{snorre.es861.js → node_modules/react-day-picker/dist/esm/components/Root.js} +0 -0
  2230. /package/dist/{snorre.es862.js → node_modules/react-day-picker/dist/esm/components/Select.js} +0 -0
  2231. /package/dist/{snorre.es863.js → node_modules/react-day-picker/dist/esm/components/Week.js} +0 -0
  2232. /package/dist/{snorre.es866.js → node_modules/react-day-picker/dist/esm/components/WeekNumber.js} +0 -0
  2233. /package/dist/{snorre.es867.js → node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.js} +0 -0
  2234. /package/dist/{snorre.es864.js → node_modules/react-day-picker/dist/esm/components/Weekday.js} +0 -0
  2235. /package/dist/{snorre.es865.js → node_modules/react-day-picker/dist/esm/components/Weekdays.js} +0 -0
  2236. /package/dist/{snorre.es868.js → node_modules/react-day-picker/dist/esm/components/Weeks.js} +0 -0
  2237. /package/dist/{snorre.es874.js → node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.js} +0 -0
  2238. /package/dist/{snorre.es875.js → node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.js} +0 -0
  2239. /package/dist/{snorre.es1075.js → node_modules/react-day-picker/dist/esm/helpers/getBroadcastWeeksInMonth.js} +0 -0
  2240. /package/dist/{snorre.es826.js → node_modules/react-day-picker/dist/esm/helpers/getDataAttributes.js} +0 -0
  2241. /package/dist/{snorre.es989.js → node_modules/react-day-picker/dist/esm/helpers/getDates.js} +0 -0
  2242. /package/dist/{snorre.es990.js → node_modules/react-day-picker/dist/esm/helpers/getDays.js} +0 -0
  2243. /package/dist/{snorre.es991.js → node_modules/react-day-picker/dist/esm/helpers/getDisplayMonths.js} +0 -0
  2244. /package/dist/{snorre.es1081.js → node_modules/react-day-picker/dist/esm/helpers/getFocusableDate.js} +0 -0
  2245. /package/dist/{snorre.es992.js → node_modules/react-day-picker/dist/esm/helpers/getInitialMonth.js} +0 -0
  2246. /package/dist/{snorre.es829.js → node_modules/react-day-picker/dist/esm/helpers/getMonthOptions.js} +0 -0
  2247. /package/dist/{snorre.es994.js → node_modules/react-day-picker/dist/esm/helpers/getNavMonth.js} +0 -0
  2248. /package/dist/{snorre.es995.js → node_modules/react-day-picker/dist/esm/helpers/getNextMonth.js} +0 -0
  2249. /package/dist/{snorre.es996.js → node_modules/react-day-picker/dist/esm/helpers/getPreviousMonth.js} +0 -0
  2250. /package/dist/{snorre.es831.js → node_modules/react-day-picker/dist/esm/helpers/getWeekdays.js} +0 -0
  2251. /package/dist/{snorre.es997.js → node_modules/react-day-picker/dist/esm/helpers/getWeeks.js} +0 -0
  2252. /package/dist/{snorre.es832.js → node_modules/react-day-picker/dist/esm/helpers/getYearOptions.js} +0 -0
  2253. /package/dist/{snorre.es957.js → node_modules/react-day-picker/dist/esm/helpers/startOfBroadcastWeek.js} +0 -0
  2254. /package/dist/{snorre.es998.js → node_modules/react-day-picker/dist/esm/helpers/useControlledValue.js} +0 -0
  2255. /package/dist/{snorre.es882.js → node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.js} +0 -0
  2256. /package/dist/{snorre.es881.js → node_modules/react-day-picker/dist/esm/labels/labelNav.js} +0 -0
  2257. /package/dist/{snorre.es883.js → node_modules/react-day-picker/dist/esm/labels/labelNext.js} +0 -0
  2258. /package/dist/{snorre.es884.js → node_modules/react-day-picker/dist/esm/labels/labelPrevious.js} +0 -0
  2259. /package/dist/{snorre.es886.js → node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.js} +0 -0
  2260. /package/dist/{snorre.es887.js → node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.js} +0 -0
  2261. /package/dist/{snorre.es888.js → node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.js} +0 -0
  2262. /package/dist/{snorre.es836.js → node_modules/react-day-picker/dist/esm/useDayPicker.js} +0 -0
  2263. /package/dist/{snorre.es841.js → node_modules/react-day-picker/dist/esm/utils/typeguards.js} +0 -0
  2264. /package/dist/{snorre.es1206.js → node_modules/react-day-picker/node_modules/date-fns/_lib/addLeadingZeros.js} +0 -0
  2265. /package/dist/{snorre.es1148.js → node_modules/react-day-picker/node_modules/date-fns/_lib/defaultOptions.js} +0 -0
  2266. /package/dist/{snorre.es1150.js → node_modules/react-day-picker/node_modules/date-fns/_lib/format/longFormatters.js} +0 -0
  2267. /package/dist/{snorre.es1151.js → node_modules/react-day-picker/node_modules/date-fns/_lib/protectedTokens.js} +0 -0
  2268. /package/dist/{snorre.es1144.js → node_modules/react-day-picker/node_modules/date-fns/constants.js} +0 -0
  2269. /package/dist/{snorre.es976.js → node_modules/react-day-picker/node_modules/date-fns/isDate.js} +0 -0
  2270. /package/dist/{snorre.es1159.js → node_modules/react-day-picker/node_modules/date-fns/locale/_lib/buildFormatLongFn.js} +0 -0
  2271. /package/dist/{snorre.es1160.js → node_modules/react-day-picker/node_modules/date-fns/locale/_lib/buildLocalizeFn.js} +0 -0
  2272. /package/dist/{snorre.es1161.js → node_modules/react-day-picker/node_modules/date-fns/locale/_lib/buildMatchFn.js} +0 -0
  2273. /package/dist/{snorre.es1162.js → node_modules/react-day-picker/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js} +0 -0
  2274. /package/dist/{snorre.es1076.js → node_modules/react-day-picker/node_modules/date-fns/locale/en-US/_lib/formatDistance.js} +0 -0
  2275. /package/dist/{snorre.es1078.js → node_modules/react-day-picker/node_modules/date-fns/locale/en-US/_lib/formatRelative.js} +0 -0
  2276. /package/dist/{snorre.es889.js → node_modules/react-popper/lib/esm/utils.js} +0 -0
  2277. /package/dist/{snorre.es798.js → node_modules/react-redux/es/components/Context.js} +0 -0
  2278. /package/dist/{snorre.es949.js → node_modules/react-redux/es/utils/batch.js} +0 -0
  2279. /package/dist/{snorre.es1202.js → node_modules/react-redux/es/utils/bindActionCreators.js} +0 -0
  2280. /package/dist/{snorre.es1253.js → node_modules/react-redux/es/utils/isPlainObject.js} +0 -0
  2281. /package/dist/{snorre.es1137.js → node_modules/react-redux/es/utils/shallowEqual.js} +0 -0
  2282. /package/dist/{snorre.es1134.js → node_modules/react-redux/es/utils/useIsomorphicLayoutEffect.js} +0 -0
  2283. /package/dist/{snorre.es1254.js → node_modules/react-redux/es/utils/warning.js} +0 -0
  2284. /package/dist/{snorre.es950.js → node_modules/tiny-invariant/dist/esm/tiny-invariant.js} +0 -0
  2285. /package/dist/{snorre.es792.js → node_modules/use-memo-one/dist/use-memo-one.esm.js} +0 -0
  2286. /package/dist/{snorre.es206.js → shared/components/VisuallyHidden/index.js} +0 -0
  2287. /package/dist/{snorre.es382.js → shared/recharts/CustomTooltip/styles.js} +0 -0
  2288. /package/dist/{snorre.es320.js → utils/accountNumber.js} +0 -0
  2289. /package/dist/{snorre.es318.js → utils/alpha.js} +0 -0
  2290. /package/dist/{snorre.es315.js → utils/array.js} +0 -0
  2291. /package/dist/{snorre.es329.js → utils/contrastColor.js} +0 -0
  2292. /package/dist/{snorre.es319.js → utils/dates.js} +0 -0
  2293. /package/dist/{snorre.es455.js → utils/file.js} +0 -0
  2294. /package/dist/{snorre.es450.js → utils/formatGraphPrice.js} +0 -0
  2295. /package/dist/{snorre.es345.js → utils/image.js} +0 -0
  2296. /package/dist/{snorre.es323.js → utils/pagination.js} +0 -0
  2297. /package/dist/{snorre.es322.js → utils/phone.js} +0 -0
  2298. /package/dist/{snorre.es505.js → utils/removeFocusOnMouseUp.js} +0 -0
  2299. /package/dist/{snorre.es324.js → utils/time.js} +0 -0
  2300. /package/dist/{snorre.es321.js → utils/url.js} +0 -0
@@ -0,0 +1,3143 @@
1
+ import { AriaTooltipProps } from 'react-aria';
2
+ import { Bar } from 'recharts';
3
+ import { ComponentType } from 'react';
4
+ import { ComposedChart } from 'recharts';
5
+ import { Config } from 'dompurify';
6
+ import { Config as Config_2 } from 'react-player';
7
+ import { CurveType } from 'recharts/types/shape/Curve';
8
+ import { default as default_2 } from 'react';
9
+ import { DetailedHTMLProps } from 'react';
10
+ import { FC } from 'react';
11
+ import { Formatter } from 'recharts/types/component/DefaultTooltipContent';
12
+ import { HTMLAttributes } from 'react';
13
+ import { HTMLInputAutoCompleteAttribute } from 'react';
14
+ import { ImageListType } from 'react-images-uploading';
15
+ import { ImageType } from 'react-images-uploading';
16
+ import { ImageUploadingPropsType } from 'react-images-uploading';
17
+ import { JSX as JSX_2 } from '@emotion/react/jsx-runtime';
18
+ import { Line } from 'recharts';
19
+ import { Margin } from 'recharts/types/util/types';
20
+ import { NameType } from 'recharts/types/component/DefaultTooltipContent';
21
+ import { Pie } from 'recharts';
22
+ import { Placement } from '@popperjs/core';
23
+ import { ReactNode } from 'react';
24
+ import { ReactNodeArray } from 'react';
25
+ import { SerializedStyles } from '@emotion/react';
26
+ import { StyledComponent } from '@emotion/styled';
27
+ import { Theme } from '@emotion/react';
28
+ import { TooltipTriggerProps } from 'react-aria';
29
+ import { ValueType } from 'recharts/types/component/DefaultTooltipContent';
30
+
31
+ export declare const Alert: default_2.FC<IProps_6>;
32
+
33
+ export declare function alpha(hexColor: string, alphaPercentage: number): string;
34
+
35
+ export declare const AppLoader: default_2.FC<IProps_5>;
36
+
37
+ export declare const AppPicker: default_2.FC<IProps_42>;
38
+
39
+ export declare const AppShell: default_2.FC<IProps_4>;
40
+
41
+ export declare const Autocomplete: default_2.FC<IProps_87>;
42
+
43
+ export declare const Banner: default_2.FC<IProps_71>;
44
+
45
+ export declare const BarAndLineComposedChart: default_2.FC<IProps_56>;
46
+
47
+ export declare const BarChartWithCustomizedEvent: default_2.FC<IProps_57>;
48
+
49
+ export declare const Box: default_2.FC<IProps_58>;
50
+
51
+ export declare const BoxedTable: default_2.FC<IProps_67>;
52
+
53
+ export declare const bp: {
54
+ small: string;
55
+ medium: string;
56
+ large: string;
57
+ xlarge: string;
58
+ heightMedium: string;
59
+ heightSmall: string;
60
+ };
61
+
62
+ export declare const Button: default_2.ForwardRefExoticComponent<default_2.HTMLAttributes<ButtonOrLinkTypes> & {
63
+ afterIcon?: default_2.ReactNode;
64
+ beforeIcon?: default_2.ReactNode;
65
+ children: NonNullable<default_2.ReactNode>;
66
+ disabled?: boolean;
67
+ href?: string;
68
+ loading?: boolean;
69
+ onClick?: (event: default_2.MouseEvent<ButtonOrLinkTypes>) => void;
70
+ onMouseUp?: (event: default_2.MouseEvent<ButtonOrLinkTypes>) => void;
71
+ onCustomKeyPress?: {
72
+ key: string;
73
+ action: (event: KeyboardEvent) => void;
74
+ };
75
+ onKeyPress?: (event: KeyboardEvent) => void;
76
+ onEnterKeyPress?: (event: KeyboardEvent) => void;
77
+ onEscapeKeyPress?: (event: KeyboardEvent) => void;
78
+ openInNewWindow?: boolean;
79
+ rel?: string;
80
+ trackingEvent?: string;
81
+ trackingName?: string;
82
+ type?: "button" | "submit" | "reset";
83
+ target?: string;
84
+ download?: any;
85
+ tabIndex?: number;
86
+ } & {
87
+ /** Success color styling */
88
+ success?: boolean;
89
+ /** Danger color styling */
90
+ danger?: boolean;
91
+ /** Bigger button */
92
+ highlight?: boolean;
93
+ /** Outlined button styling */
94
+ outline?: boolean;
95
+ /** Without style */
96
+ nostyle?: boolean;
97
+ /** Adds focus outline, i.e. for nostyle buttons */
98
+ focusable?: boolean;
99
+ /** Custom border */
100
+ border?: string;
101
+ /** Custom css */
102
+ css?: SerializedStyles;
103
+ /** Shows loader instead of children */
104
+ loading?: boolean;
105
+ /** Backbutton style */
106
+ back?: boolean;
107
+ /** Smaller button size */
108
+ small?: boolean;
109
+ /** Transparent bg toggle */
110
+ transparentBg?: boolean;
111
+ /** Set tabindex */
112
+ tabIndex?: number;
113
+ } & default_2.RefAttributes<HTMLButtonElement>>;
114
+
115
+ declare type ButtonOrLinkTypes = HTMLAnchorElement | HTMLButtonElement;
116
+
117
+ export declare const Calendar: default_2.FC<IProps_72>;
118
+
119
+ export declare const Card: default_2.ForwardRefExoticComponent<default_2.HTMLAttributes<HTMLDivElement> & {
120
+ /** Set to true for hover effect */
121
+ withhover?: boolean;
122
+ /** To set primary background color*/
123
+ primary?: boolean;
124
+ /** Gray background color */
125
+ gray?: boolean;
126
+ /** OnClick callback function */
127
+ onClick?: () => void;
128
+ /** No padding */
129
+ noPadding?: boolean;
130
+ /** Large padding around edges */
131
+ largePadding?: boolean;
132
+ /** Height of card box */
133
+ height?: number;
134
+ /** Set to true for no background color */
135
+ nobackground?: boolean;
136
+ /** Set to true to add shadow to Card border */
137
+ shadow?: boolean;
138
+ /** Sets overflow visible */
139
+ overflowvisible?: boolean;
140
+ /** Override with custom CSS */
141
+ css?: SerializedStyles;
142
+ /** Classname prop */
143
+ className?: string;
144
+ /** Children */
145
+ children?: default_2.ReactNode | default_2.ReactNode[];
146
+ } & default_2.RefAttributes<HTMLDivElement>>;
147
+
148
+ declare type CarouselMedia = {
149
+ /** Media source */
150
+ src: string;
151
+ /** Media type is highly recommended. If no media type is specified, we assume it is an image. */
152
+ mimeType?: string;
153
+ };
154
+
155
+ export declare const Cell: default_2.FC<IProps_36>;
156
+
157
+ declare interface ChartDataProps {
158
+ /** Pie piece title */
159
+ title: string;
160
+ /** Pie piece value in number */
161
+ value: number;
162
+ /** Pie piece color */
163
+ color?: string;
164
+ }
165
+
166
+ export declare const Checkbox: default_2.FC<IProps_11>;
167
+
168
+ export declare const CollapseList: default_2.ForwardRefExoticComponent<IProps_69 & default_2.RefAttributes<HTMLDivElement>>;
169
+
170
+ export declare const CollapseListItem: default_2.ForwardRefExoticComponent<IProps_70 & default_2.RefAttributes<HTMLDivElement>>;
171
+
172
+ export declare const CommentLine: default_2.FC<IProps_62>;
173
+
174
+ export declare const CommentsTimeline: default_2.FC<IProps_61>;
175
+
176
+ export declare const CustomText: default_2.FC<IProps_26>;
177
+
178
+ export declare const Datepicker: default_2.FC<IProps_39>;
179
+
180
+ export declare const DatepickerRange: React.FC<IProps_40>;
181
+
182
+ export declare const datesAreOnSameDay: (first: Date, second: Date) => boolean;
183
+
184
+ declare const defaultOutline: SerializedStyles;
185
+
186
+ export declare const Divider: default_2.FC<IProps_7>;
187
+
188
+ export declare const DraggableRow: FC<IProps_68>;
189
+
190
+ export declare const Dropdown: default_2.FC<IProps_8>;
191
+
192
+ export declare const DropdownMenu: default_2.FC<IProps_74>;
193
+
194
+ export declare const DropdownMenuOption: default_2.FC<IProps_75>;
195
+
196
+ declare type ElementTypes = HTMLSpanElement | HTMLDivElement;
197
+
198
+ export declare const FileInput: ({ multiple, accept, label, invalidMessage, text, initialFiles, width, hideFileList, icon, fileMaxsixe, nostyle, rotateIcon, isControlledState, controlledFiles, id, onChange, }: IProps_38) => default_2.JSX.Element;
199
+
200
+ export declare const Footer: default_2.FC<IProps_17>;
201
+
202
+ export declare const FooterButton: default_2.FC<IProps_22>;
203
+
204
+ export declare const FooterCol: default_2.FC<IProps_18>;
205
+
206
+ export declare const FooterGroup: default_2.FC<IProps_19>;
207
+
208
+ export declare const FooterLabel: default_2.FC<IProps_20>;
209
+
210
+ export declare const FooterLink: default_2.FC<IProps_21>;
211
+
212
+ export declare function getContrastColor(bgColor: string, fallbackColor?: string): string;
213
+
214
+ export declare const getCurrentPage: (take: number, skip: number) => number;
215
+
216
+ export declare const getDateIsValid: (date: Date | string, minDate?: Date | string, maxDate?: Date | string) => boolean;
217
+
218
+ export declare const getDomainFromUrl: (url: string) => string;
219
+
220
+ export declare const getFirstButtonIndex: (currentPage: number, totalPages: number) => number;
221
+
222
+ export declare const getFormatedPhone: (phone: string) => string;
223
+
224
+ export declare const getFormattedAccountNumber: (accountNumber: string) => string;
225
+
226
+ export declare const getFormattedCardNumber: (cardNumber: string) => string;
227
+
228
+ /**
229
+ * DATES
230
+ */
231
+ export declare const getFormattedDate: (date: string | Date, opt?: Intl.DateTimeFormatOptions) => string;
232
+
233
+ export declare const getFormattedDateTimePretty: (date: Date, opt?: Intl.DateTimeFormatOptions) => string;
234
+
235
+ export declare const getFormattedOrganizationNumber: (organizationNumber: string | number) => string;
236
+
237
+ /**
238
+ * PRICES
239
+ */
240
+ export declare const getFormattedPrice: (
241
+ /** The price to be formatted */
242
+ price: any,
243
+ /** Amount of decimals in number format, defaults to 0 */
244
+ decimals?: number,
245
+ /** Rounds down to closest whole number. Ex: 12.99 > 12.00 */
246
+ roundDown?: boolean) => any;
247
+
248
+ export declare const getFormattedPriceWithEnding: (price: number | string, decimals?: number) => string;
249
+
250
+ export declare const getFormattedTime: (date: Date) => string;
251
+
252
+ export declare const getFormattedTimePeriod: (startDate: string | Date | undefined | null, endDate: string | Date | undefined | null) => string;
253
+
254
+ export declare const getHasMorePages: (currentPage: number, totalPages: number) => boolean;
255
+
256
+ export declare const getHasPreviousPages: (currentPage: number, totalPages: number) => boolean;
257
+
258
+ export declare const getReducedArray: (array: any[], indexesAmount: number) => any[];
259
+
260
+ export declare const getSkippedItems: (pageNumber: number, take: number) => number;
261
+
262
+ export declare const getTimeFromHours: (hours: number) => {
263
+ days: number;
264
+ hours: number;
265
+ };
266
+
267
+ export declare const getTimeStringFromHours: (hours: number) => string;
268
+
269
+ /**
270
+ * OTHERS
271
+ */
272
+ export declare const getTitleString: (text: string) => string;
273
+
274
+ export declare const getUrlWithProtocol: (url: string) => string;
275
+
276
+ export declare const GoogleButton: default_2.FC<IProps_88>;
277
+
278
+ /**
279
+ * Converts a Date to String with the format:
280
+ * default 00:00 or 00:00:00 if showSeconds is true
281
+ */
282
+ export declare const handleDateToStringConvertion: (date: Date, showSeconds?: boolean) => string;
283
+
284
+ /**
285
+ * Converts a String to Date with the format:
286
+ * If value is formatted as 00:00:00 it will return the date with chosen seconds
287
+ * If value is formatted as 00:00 it will return the date with seconds set to 00
288
+ */
289
+ export declare const handleStringToDateConvertion: (value: string, originalDate?: Date) => Date;
290
+
291
+ export declare const Header: default_2.FC<IProps_9>;
292
+
293
+ export declare const HeaderCell: default_2.FC<IProps_63>;
294
+
295
+ export declare const HighlightText: default_2.FC<IProps_79>;
296
+
297
+ export declare const Html: ({ className, dark, externalLinks, removeMargins, secondary, size, text, sanitize, sanitizeOptions, whiteSpace, allowVideo, }: IProps_25) => JSX_2.Element;
298
+
299
+ export declare const IconAmericanExpress: default_2.ComponentType<WithIconWrapperProps>;
300
+
301
+ export declare const IconApartment: default_2.ComponentType<WithIconWrapperProps>;
302
+
303
+ export declare const IconArchives: default_2.ComponentType<WithIconWrapperProps>;
304
+
305
+ export declare const IconArea: default_2.ComponentType<WithIconWrapperProps>;
306
+
307
+ export declare const IconArrowDown: default_2.ComponentType<WithIconWrapperProps>;
308
+
309
+ export declare const IconArrowLeft: default_2.ComponentType<WithIconWrapperProps>;
310
+
311
+ export declare const IconArrowRight: default_2.ComponentType<WithIconWrapperProps>;
312
+
313
+ export declare const IconArrowUp: default_2.ComponentType<WithIconWrapperProps>;
314
+
315
+ export declare const IconAttachment: default_2.ComponentType<WithIconWrapperProps>;
316
+
317
+ export declare const IconAuditorFilled: default_2.ComponentType<WithIconWrapperProps>;
318
+
319
+ export declare const IconAuditorOutline: default_2.ComponentType<WithIconWrapperProps>;
320
+
321
+ export declare const IconBack: default_2.ComponentType<WithIconWrapperProps>;
322
+
323
+ export declare const IconBankAxept: default_2.ComponentType<WithIconWrapperProps>;
324
+
325
+ export declare const IconBath: default_2.ComponentType<WithIconWrapperProps>;
326
+
327
+ export declare const IconBblFlame: default_2.ComponentType<WithIconWrapperProps>;
328
+
329
+ export declare const IconBblShield: default_2.ComponentType<WithIconWrapperProps>;
330
+
331
+ export declare const IconBblWater: default_2.ComponentType<WithIconWrapperProps>;
332
+
333
+ export declare const IconBellOutline: default_2.ComponentType<WithIconWrapperProps>;
334
+
335
+ export declare const IconBlock: default_2.ComponentType<WithIconWrapperProps>;
336
+
337
+ export declare const IconBoard: default_2.ComponentType<WithIconWrapperProps>;
338
+
339
+ export declare const IconBookmarkFilled: default_2.ComponentType<WithIconWrapperProps>;
340
+
341
+ export declare const IconBookmarkOutline: default_2.ComponentType<WithIconWrapperProps>;
342
+
343
+ export declare const IconBus: default_2.ComponentType<WithIconWrapperProps>;
344
+
345
+ export declare const IconCalendar: default_2.ComponentType<WithIconWrapperProps>;
346
+
347
+ export declare const IconCamera: default_2.ComponentType<WithIconWrapperProps>;
348
+
349
+ export declare const IconCar: default_2.ComponentType<WithIconWrapperProps>;
350
+
351
+ export declare const IconCaretDown: default_2.ComponentType<WithIconWrapperProps>;
352
+
353
+ export declare const IconCaretLeft: default_2.ComponentType<WithIconWrapperProps>;
354
+
355
+ export declare const IconCaretRight: default_2.ComponentType<WithIconWrapperProps>;
356
+
357
+ export declare const IconCaretUp: default_2.ComponentType<WithIconWrapperProps>;
358
+
359
+ export declare const IconCases: default_2.ComponentType<WithIconWrapperProps>;
360
+
361
+ export declare const IconCheck: default_2.ComponentType<WithIconWrapperProps>;
362
+
363
+ export declare const IconCheckedFilled: default_2.ComponentType<WithIconWrapperProps>;
364
+
365
+ export declare const IconCheckedOutline: default_2.ComponentType<WithIconWrapperProps>;
366
+
367
+ export declare const IconChevronDown: default_2.ComponentType<WithIconWrapperProps>;
368
+
369
+ export declare const IconChevronLeft: default_2.ComponentType<WithIconWrapperProps>;
370
+
371
+ export declare const IconChevronRight: default_2.ComponentType<WithIconWrapperProps>;
372
+
373
+ export declare const IconChoice: default_2.ComponentType<WithIconWrapperProps>;
374
+
375
+ export declare const IconClose: default_2.ComponentType<WithIconWrapperProps>;
376
+
377
+ export declare const IconCloseAlt: default_2.ComponentType<WithIconWrapperProps>;
378
+
379
+ export declare const IconComment: default_2.ComponentType<WithIconWrapperProps>;
380
+
381
+ export declare const IconCommunication: default_2.ComponentType<WithIconWrapperProps>;
382
+
383
+ export declare const IconCommunicationFilled: default_2.ComponentType<WithIconWrapperProps>;
384
+
385
+ export declare const IconCompanyBuilding: default_2.ComponentType<WithIconWrapperProps>;
386
+
387
+ export declare const IconCompanyBuildingFilled: default_2.ComponentType<WithIconWrapperProps>;
388
+
389
+ export declare const IconCompanyBuildingOutline: default_2.ComponentType<WithIconWrapperProps>;
390
+
391
+ export declare const IconDashboard: default_2.ComponentType<WithIconWrapperProps>;
392
+
393
+ export declare const IconDashboardFilled: default_2.ComponentType<WithIconWrapperProps>;
394
+
395
+ export declare const IconDelete: default_2.ComponentType<WithIconWrapperProps>;
396
+
397
+ export declare const IconDocument: default_2.ComponentType<WithIconWrapperProps>;
398
+
399
+ export declare const IconDocumentFilled: default_2.ComponentType<WithIconWrapperProps>;
400
+
401
+ export declare const IconDoor: default_2.ComponentType<WithIconWrapperProps>;
402
+
403
+ export declare const IconDotFilled: default_2.ComponentType<WithIconWrapperProps>;
404
+
405
+ export declare const IconDotOutline: default_2.ComponentType<WithIconWrapperProps>;
406
+
407
+ export declare const IconDownload: default_2.ComponentType<WithIconWrapperProps>;
408
+
409
+ export declare const IconDraft: default_2.ComponentType<WithIconWrapperProps>;
410
+
411
+ export declare const IconEarth: default_2.ComponentType<WithIconWrapperProps>;
412
+
413
+ export declare const IconEconomy: default_2.ComponentType<WithIconWrapperProps>;
414
+
415
+ export declare const IconEconomyFilled: default_2.ComponentType<WithIconWrapperProps>;
416
+
417
+ export declare const IconEdit: default_2.ComponentType<WithIconWrapperProps>;
418
+
419
+ export declare const IconElevator: default_2.ComponentType<WithIconWrapperProps>;
420
+
421
+ export declare const IconEmailMarkAsRead: ComponentType<WithIconWrapperProps>;
422
+
423
+ export declare const IconErrorFilled: default_2.ComponentType<WithIconWrapperProps>;
424
+
425
+ export declare const IconErrorOutline: default_2.ComponentType<WithIconWrapperProps>;
426
+
427
+ export declare const IconExternalLink: default_2.ComponentType<WithIconWrapperProps>;
428
+
429
+ export declare const IconEye: default_2.ComponentType<WithIconWrapperProps>;
430
+
431
+ export declare const IconEyeDeny: default_2.ComponentType<WithIconWrapperProps>;
432
+
433
+ export declare const IconFamily: default_2.ComponentType<WithIconWrapperProps>;
434
+
435
+ export declare const IconFerry: default_2.ComponentType<WithIconWrapperProps>;
436
+
437
+ export declare const IconFile: default_2.ComponentType<WithIconWrapperProps>;
438
+
439
+ export declare const IconFileAdd: default_2.ComponentType<WithIconWrapperProps>;
440
+
441
+ export declare const IconFileCopy: default_2.ComponentType<WithIconWrapperProps>;
442
+
443
+ export declare const IconFileEdit: default_2.ComponentType<WithIconWrapperProps>;
444
+
445
+ export declare const IconFileExcel: default_2.ComponentType<WithIconWrapperProps>;
446
+
447
+ export declare const IconFilePDF: default_2.ComponentType<WithIconWrapperProps>;
448
+
449
+ export declare const IconFileWord: default_2.ComponentType<WithIconWrapperProps>;
450
+
451
+ export declare const IconFillOut: default_2.ComponentType<WithIconWrapperProps>;
452
+
453
+ export declare const IconFilterList: default_2.ComponentType<WithIconWrapperProps>;
454
+
455
+ export declare const IconFloor: default_2.ComponentType<WithIconWrapperProps>;
456
+
457
+ export declare const IconForward: default_2.ComponentType<WithIconWrapperProps>;
458
+
459
+ export declare const IconFullscreenClose: default_2.ComponentType<WithIconWrapperProps>;
460
+
461
+ export declare const IconFullscreenOpen: default_2.ComponentType<WithIconWrapperProps>;
462
+
463
+ export declare const IconGarage: default_2.ComponentType<WithIconWrapperProps>;
464
+
465
+ export declare const IconGmail: default_2.FC;
466
+
467
+ export declare const IconGrid: default_2.ComponentType<WithIconWrapperProps>;
468
+
469
+ export declare const IconGym: default_2.ComponentType<WithIconWrapperProps>;
470
+
471
+ export declare const IconHearth: default_2.ComponentType<WithIconWrapperProps>;
472
+
473
+ export declare const IconHearthOutline: default_2.ComponentType<WithIconWrapperProps>;
474
+
475
+ export declare const IconHelp: default_2.ComponentType<WithIconWrapperProps>;
476
+
477
+ export declare const IconHistory: default_2.ComponentType<WithIconWrapperProps>;
478
+
479
+ export declare const IconHomeFilled: default_2.ComponentType<WithIconWrapperProps>;
480
+
481
+ export declare const IconHomeOutline: default_2.ComponentType<WithIconWrapperProps>;
482
+
483
+ export declare const IconHouse: default_2.ComponentType<WithIconWrapperProps>;
484
+
485
+ export declare const IconHouseBlockFilled: default_2.ComponentType<WithIconWrapperProps>;
486
+
487
+ export declare const IconHouseBlockOutline: default_2.ComponentType<WithIconWrapperProps>;
488
+
489
+ export declare const IconHouseOutline: default_2.ComponentType<WithIconWrapperProps>;
490
+
491
+ export declare const IconHumans: default_2.ComponentType<WithIconWrapperProps>;
492
+
493
+ export declare const IconImportantComment: default_2.ComponentType<WithIconWrapperProps>;
494
+
495
+ export declare const IconInbox: default_2.ComponentType<WithIconWrapperProps>;
496
+
497
+ export declare const IconInfoFilled: default_2.ComponentType<WithIconWrapperProps>;
498
+
499
+ export declare const IconInfoOutline: default_2.ComponentType<WithIconWrapperProps>;
500
+
501
+ export declare const IconJanitorFilled: default_2.ComponentType<WithIconWrapperProps>;
502
+
503
+ export declare const IconJanitorOutline: default_2.ComponentType<WithIconWrapperProps>;
504
+
505
+ export declare const IconJointcost: default_2.ComponentType<WithIconWrapperProps>;
506
+
507
+ export declare const IconJointcost2: default_2.ComponentType<WithIconWrapperProps>;
508
+
509
+ export declare const IconKey: default_2.ComponentType<WithIconWrapperProps>;
510
+
511
+ export declare const IconKitchen: default_2.ComponentType<WithIconWrapperProps>;
512
+
513
+ export declare const IconLabel: default_2.ComponentType<WithIconWrapperProps>;
514
+
515
+ export declare const IconLeafFilled: default_2.ComponentType<WithIconWrapperProps>;
516
+
517
+ export declare const IconLeafOutline: default_2.ComponentType<WithIconWrapperProps>;
518
+
519
+ export declare const IconLeisureTime: default_2.ComponentType<WithIconWrapperProps>;
520
+
521
+ export declare const IconLock: default_2.ComponentType<WithIconWrapperProps>;
522
+
523
+ export declare const IconLockLocked: default_2.ComponentType<WithIconWrapperProps>;
524
+
525
+ export declare const IconLockOpen: default_2.ComponentType<WithIconWrapperProps>;
526
+
527
+ export declare const IconLookup: default_2.ComponentType<WithIconWrapperProps>;
528
+
529
+ export declare const IconLookupFilled: default_2.ComponentType<WithIconWrapperProps>;
530
+
531
+ export declare const IconMail: default_2.ComponentType<WithIconWrapperProps>;
532
+
533
+ export declare const IconMap: default_2.ComponentType<WithIconWrapperProps>;
534
+
535
+ export declare const IconMasterCard: default_2.ComponentType<WithIconWrapperProps>;
536
+
537
+ export declare const IconMedal: ComponentType<WithIconWrapperProps>;
538
+
539
+ export declare const IconMembership: default_2.ComponentType<WithIconWrapperProps>;
540
+
541
+ export declare const IconMembershipFilled: default_2.ComponentType<WithIconWrapperProps>;
542
+
543
+ export declare const IconMenu: default_2.ComponentType<WithIconWrapperProps>;
544
+
545
+ export declare const IconMinus: default_2.ComponentType<WithIconWrapperProps>;
546
+
547
+ export declare const IconMinusAlt: default_2.ComponentType<WithIconWrapperProps>;
548
+
549
+ export declare const IconMinusAltFilled: default_2.ComponentType<WithIconWrapperProps>;
550
+
551
+ export declare const IconMoney: default_2.ComponentType<WithIconWrapperProps>;
552
+
553
+ export declare const IconOffice365: default_2.ComponentType<WithIconWrapperProps>;
554
+
555
+ export declare const IconParking: default_2.ComponentType<WithIconWrapperProps>;
556
+
557
+ export declare const IconPaymentCard: default_2.ComponentType<WithIconWrapperProps>;
558
+
559
+ export declare const IconPercent: ComponentType<WithIconWrapperProps>;
560
+
561
+ export declare const IconPhone: default_2.ComponentType<WithIconWrapperProps>;
562
+
563
+ export declare const IconPinned: default_2.ComponentType<WithIconWrapperProps>;
564
+
565
+ export declare const IconPlus: default_2.ComponentType<WithIconWrapperProps>;
566
+
567
+ export declare const IconPlusAlt: default_2.ComponentType<WithIconWrapperProps>;
568
+
569
+ export declare const IconPortalUser: default_2.ComponentType<WithIconWrapperProps>;
570
+
571
+ export declare const IconPrint: default_2.ComponentType<WithIconWrapperProps>;
572
+
573
+ export declare const IconProfile: default_2.ComponentType<WithIconWrapperProps>;
574
+
575
+ export declare const IconProfileFilled: default_2.ComponentType<WithIconWrapperProps>;
576
+
577
+ export declare const IconReciept: default_2.ComponentType<WithIconWrapperProps>;
578
+
579
+ export declare const IconRedo: default_2.ComponentType<WithIconWrapperProps>;
580
+
581
+ export declare const IconRefresh: default_2.ComponentType<WithIconWrapperProps>;
582
+
583
+ export declare const IconReply: default_2.ComponentType<WithIconWrapperProps>;
584
+
585
+ export declare const IconReplyAll: default_2.ComponentType<WithIconWrapperProps>;
586
+
587
+ export declare const IconRoom: default_2.ComponentType<WithIconWrapperProps>;
588
+
589
+ export declare const IconSave: default_2.ComponentType<WithIconWrapperProps>;
590
+
591
+ export declare const IconSearch: default_2.ComponentType<WithIconWrapperProps>;
592
+
593
+ export declare const IconSend: default_2.ComponentType<WithIconWrapperProps>;
594
+
595
+ export declare const IconSettings: default_2.ComponentType<WithIconWrapperProps>;
596
+
597
+ export declare const IconShopping: default_2.ComponentType<WithIconWrapperProps>;
598
+
599
+ export declare const IconSign: default_2.ComponentType<WithIconWrapperProps>;
600
+
601
+ export declare const IconSliders: default_2.ComponentType<WithIconWrapperProps>;
602
+
603
+ export declare const IconSort: default_2.ComponentType<WithIconWrapperProps>;
604
+
605
+ export declare const IconStarFilled: default_2.ComponentType<WithIconWrapperProps>;
606
+
607
+ export declare const IconStarHalf: default_2.ComponentType<WithIconWrapperProps>;
608
+
609
+ export declare const IconStarOutline: default_2.ComponentType<WithIconWrapperProps>;
610
+
611
+ export declare const IconStore: default_2.ComponentType<WithIconWrapperProps>;
612
+
613
+ export declare const IconSubway: default_2.ComponentType<WithIconWrapperProps>;
614
+
615
+ export declare const IconSwitch: default_2.ComponentType<WithIconWrapperProps>;
616
+
617
+ export declare const IconTrain: default_2.ComponentType<WithIconWrapperProps>;
618
+
619
+ export declare const IconTram: default_2.ComponentType<WithIconWrapperProps>;
620
+
621
+ export declare const IconTransport: default_2.ComponentType<WithIconWrapperProps>;
622
+
623
+ export declare const IconTypeOfBuilding: default_2.ComponentType<WithIconWrapperProps>;
624
+
625
+ export declare const IconTypeOfBuildingOutline: default_2.ComponentType<WithIconWrapperProps>;
626
+
627
+ export declare const IconUndo: default_2.ComponentType<WithIconWrapperProps>;
628
+
629
+ export declare const IconUpload: default_2.ComponentType<WithIconWrapperProps>;
630
+
631
+ export declare const IconUser: default_2.ComponentType<WithIconWrapperProps>;
632
+
633
+ export declare const IconUserThin: default_2.ComponentType<WithIconWrapperProps>;
634
+
635
+ export declare const IconVisa: default_2.ComponentType<WithIconWrapperProps>;
636
+
637
+ export declare const IconVote: default_2.ComponentType<WithIconWrapperProps>;
638
+
639
+ export declare const IconWalk: default_2.ComponentType<WithIconWrapperProps>;
640
+
641
+ export declare const IconWarning: default_2.ComponentType<WithIconWrapperProps>;
642
+
643
+ export declare const IconWarningBell: default_2.ComponentType<WithIconWrapperProps>;
644
+
645
+ export declare const IconWork: default_2.ComponentType<WithIconWrapperProps>;
646
+
647
+ export declare const IconWorkFilled: default_2.ComponentType<WithIconWrapperProps>;
648
+
649
+ export declare const IconZip: default_2.ComponentType<WithIconWrapperProps>;
650
+
651
+ declare interface IDrop {
652
+ id: string;
653
+ from: number;
654
+ to: number;
655
+ }
656
+
657
+ declare interface IEvent {
658
+ title: string;
659
+ description: string;
660
+ date: Date;
661
+ dateNote: string;
662
+ }
663
+
664
+ declare interface IJointCost {
665
+ monthName: string;
666
+ month: number;
667
+ year: number;
668
+ sum: number;
669
+ expences: [
670
+ {
671
+ name: string;
672
+ sum: number;
673
+ }
674
+ ];
675
+ }
676
+
677
+ export declare const IllustrationBudget: default_2.ComponentType<WithIllustrationWrapperProps>;
678
+
679
+ export declare const IllustrationError: default_2.ComponentType<WithIllustrationWrapperProps>;
680
+
681
+ export declare const IllustrationErrorGeneric: default_2.ComponentType<WithIllustrationWrapperProps>;
682
+
683
+ export declare const IllustrationHighHouse: default_2.ComponentType<WithIllustrationWrapperProps>;
684
+
685
+ export declare const IllustrationHighHouseComposition: default_2.ComponentType<WithIllustrationWrapperProps>;
686
+
687
+ export declare const IllustrationHouse: default_2.ComponentType<WithIllustrationWrapperProps>;
688
+
689
+ export declare const IllustrationHouseComposition: default_2.ComponentType<WithIllustrationWrapperProps>;
690
+
691
+ export declare const IllustrationHouseMissing: default_2.ComponentType<WithIllustrationWrapperProps>;
692
+
693
+ export declare const IllustrationHousesBackground: default_2.ComponentType<WithIllustrationWrapperProps>;
694
+
695
+ export declare const IllustrationHousesBackgroundWithComposition: default_2.ComponentType<WithIllustrationWrapperProps>;
696
+
697
+ export declare const IllustrationLowHouse: default_2.ComponentType<WithIllustrationWrapperProps>;
698
+
699
+ export declare const IllustrationLowHouseComposition: default_2.ComponentType<WithIllustrationWrapperProps>;
700
+
701
+ export declare const IllustrationMySiteAssociation: default_2.ComponentType<WithIllustrationWrapperProps>;
702
+
703
+ export declare const IllustrationMySiteBenefits: default_2.ComponentType<WithIllustrationWrapperProps>;
704
+
705
+ export declare const IllustrationMySiteBuilding: default_2.ComponentType<WithIllustrationWrapperProps>;
706
+
707
+ export declare const IllustrationMySiteCoffeeBook: default_2.ComponentType<WithIllustrationWrapperProps>;
708
+
709
+ export declare const IllustrationMySiteComputer: default_2.ComponentType<WithIllustrationWrapperProps>;
710
+
711
+ export declare const IllustrationMySiteCooperative: default_2.ComponentType<WithIllustrationWrapperProps>;
712
+
713
+ export declare const IllustrationMySiteDashboard: default_2.ComponentType<WithIllustrationWrapperProps>;
714
+
715
+ export declare const IllustrationMySiteGift: default_2.ComponentType<WithIllustrationWrapperProps>;
716
+
717
+ export declare const IllustrationMySiteLetterSent: default_2.ComponentType<WithIllustrationWrapperProps>;
718
+
719
+ export declare const IllustrationMySiteMailbox: default_2.ComponentType<WithIllustrationWrapperProps>;
720
+
721
+ export declare const IllustrationMySitePapers: default_2.ComponentType<WithIllustrationWrapperProps>;
722
+
723
+ export declare const IllustrationMySitePiggyBank: default_2.ComponentType<WithIllustrationWrapperProps>;
724
+
725
+ export declare const IllustrationMySiteTransfer: default_2.ComponentType<WithIllustrationWrapperProps>;
726
+
727
+ export declare const IllustrationPaperCompleted: default_2.ComponentType<WithIllustrationWrapperProps>;
728
+
729
+ export declare const IllustrationPaperMissing: default_2.ComponentType<WithIllustrationWrapperProps>;
730
+
731
+ export declare const IllustrationSemiDetachedHouse: default_2.ComponentType<WithIllustrationWrapperProps>;
732
+
733
+ export declare const IllustrationSemiDetachedHouseComposition: default_2.ComponentType<WithIllustrationWrapperProps>;
734
+
735
+ export declare const IllustrationServiceMessage: ComponentType<WithIllustrationWrapperProps>;
736
+
737
+ export declare const IllustrationSmallHouse: default_2.ComponentType<WithIllustrationWrapperProps>;
738
+
739
+ export declare const IllustrationSmallHouseComposition: default_2.ComponentType<WithIllustrationWrapperProps>;
740
+
741
+ export declare const IllustrationTechninalDifficulties: ComponentType<WithIllustrationWrapperProps>;
742
+
743
+ export declare const IllustrationTerraceBlock: default_2.ComponentType<WithIllustrationWrapperProps>;
744
+
745
+ export declare const IllustrationTerraceBlockComposition: default_2.ComponentType<WithIllustrationWrapperProps>;
746
+
747
+ export declare const IllustrationTownHouse: default_2.ComponentType<WithIllustrationWrapperProps>;
748
+
749
+ export declare const IllustrationTownHouseComposition: default_2.ComponentType<WithIllustrationWrapperProps>;
750
+
751
+ declare const Image_2: default_2.FC<IProps_10>;
752
+ export { Image_2 as Image }
753
+
754
+ export declare const ImagePicker: ({ value, onChange, multiple, maxNumber, acceptType, ...imageUploadingProps }: Props_4) => JSX_2.Element;
755
+
756
+ export declare const ImageViewer: ({ images, initialImage, onClose }: Props_5) => JSX_2.Element;
757
+
758
+ export declare const InfoButton: default_2.FC<IProps_60>;
759
+
760
+ declare interface INotice {
761
+ id: string;
762
+ clientId: string;
763
+ activeFromDate: Date;
764
+ activeToDate: Date;
765
+ eventStart: Date;
766
+ eventEnd: Date;
767
+ eventTitle: string;
768
+ eventLocation: string;
769
+ updatedDate: Date;
770
+ title: string;
771
+ bodyHtml: string;
772
+ createdDate: Date;
773
+ attachments: INoticeAttachment[];
774
+ }
775
+
776
+ declare interface INoticeAttachment {
777
+ bulletinId: string;
778
+ created: Date;
779
+ description: string;
780
+ filename: string;
781
+ id: string;
782
+ mimetype: string;
783
+ sequence: number | null;
784
+ }
785
+
786
+ export declare const Input: default_2.ForwardRefExoticComponent<InputProps & default_2.RefAttributes<HTMLInputElement>>;
787
+
788
+ declare interface InputProps extends default_2.HTMLAttributes<HTMLInputElement> {
789
+ /** Input type */
790
+ type?: 'text' | 'search' | 'number' | 'password' | 'file' | 'stealth';
791
+ /** Input label */
792
+ label?: string;
793
+ /** Id for input */
794
+ id?: string;
795
+ /** Style as highlighted input */
796
+ highlight?: boolean;
797
+ /** Autofocus */
798
+ focus?: boolean;
799
+ /** Placeholder text */
800
+ placeholder?: string;
801
+ /** Default value. */
802
+ value?: string | number;
803
+ /** Disabled. */
804
+ disabled?: boolean;
805
+ /** Callback fired when blur. */
806
+ onBlur?: (e: default_2.FocusEvent<HTMLInputElement>) => void;
807
+ /** Callback fired when focus. */
808
+ onFocus?: (e: default_2.FocusEvent<HTMLInputElement>) => void;
809
+ /** Callback fired when the value changes. */
810
+ onChange?: (e: default_2.ChangeEvent<HTMLInputElement>) => void;
811
+ /** Children. */
812
+ children?: any;
813
+ /** Include if value should forcefully be reset */
814
+ reset?: boolean;
815
+ /** Include if input field should include debound effect after typing. Specifices delay in ms */
816
+ debounceDelay?: number;
817
+ /** Callback when using debounce. */
818
+ onDebounceChange?: (value: string) => void;
819
+ /** Specify maxlength on input */
820
+ maxlength?: number;
821
+ /** Predefined formatting for input value */
822
+ format?: 'price';
823
+ /** Input name */
824
+ name?: string;
825
+ /** @deprecated handled by "invalidMessage" prop */
826
+ validation?: boolean;
827
+ /** Invalid message */
828
+ invalidMessage?: string | null | false;
829
+ /** Activates invalid styling for custom external validation */
830
+ invalid?: boolean;
831
+ /** Set the height of the input, border comes in addition to height */
832
+ height?: string;
833
+ /** Adds info-text button */
834
+ info?: string;
835
+ /** Where the info tooltip will be placed relative to the button @default left */
836
+ infoPlacement?: 'top' | 'left' | 'right' | 'bottom';
837
+ /** Styles as card */
838
+ cardInput?: boolean;
839
+ autoComplete?: HTMLInputAutoCompleteAttribute;
840
+ /**
841
+ * Update internal value if true
842
+ */
843
+ updateValueOnChange?: boolean;
844
+ /** Add classnames */
845
+ className?: string;
846
+ variant?: 'default' | 'formattedNumber';
847
+ getFormattedNumber?: (value: string) => void;
848
+ }
849
+
850
+ declare interface IPreemption {
851
+ id: string;
852
+ trialNo: number;
853
+ clientNo: number;
854
+ clientName: string;
855
+ clientType: string;
856
+ status: string;
857
+ accept: Date;
858
+ deadline: Date;
859
+ handover: Date;
860
+ received: Date;
861
+ advertisement: Date;
862
+ calculatedDeadline: Date;
863
+ newOwnerReportedToBbl: Date;
864
+ newOwnerApproved: Date;
865
+ processingDeadline: Date;
866
+ boardApprovalDeadline: Date;
867
+ mostMeritedDate: Date;
868
+ mostMeritedText: string;
869
+ unit: IUnit;
870
+ contact: IPreemptionContact;
871
+ viewing: IPreemptionViewing;
872
+ pricing: IPreemptionPricing;
873
+ seniorityrules: IPreemptionSeniorityRule[];
874
+ clarificationType: PreemptionTypeEnum;
875
+ clarificationInAdvance: boolean;
876
+ formTemplateId: string;
877
+ isManualCaseProcessingRequired: boolean;
878
+ isPreemptionEmailConfigured: boolean;
879
+ geometry: {
880
+ location: {
881
+ lat: number;
882
+ lng: number;
883
+ };
884
+ };
885
+ unmanagedRegardlessOfConnected: boolean;
886
+ isInternal: boolean;
887
+ }
888
+
889
+ declare interface IPreemptionContact {
890
+ agencyName: string;
891
+ agencyPhone: string;
892
+ agencyEmail: string;
893
+ agentEmail: string;
894
+ agentName: string;
895
+ agentPhone: string;
896
+ caseworkerEmail: string;
897
+ caseworkerName: string;
898
+ caseworkerPhone: string;
899
+ }
900
+
901
+ declare interface IPreemptionPricing {
902
+ askingPrice: number;
903
+ fixedPrice: number;
904
+ totalPrice: number;
905
+ jointDebt: number;
906
+ jointCosts: number;
907
+ addedJointCost: number;
908
+ addedJointDebt: number;
909
+ preemptionFee: number;
910
+ }
911
+
912
+ declare interface IPreemptionSeniorityRule {
913
+ priority: number;
914
+ designation: string;
915
+ ruleText: string;
916
+ seniorityRule: number;
917
+ }
918
+
919
+ declare interface IPreemptionViewing {
920
+ date: Date;
921
+ text: string;
922
+ dateString: string;
923
+ info: string;
924
+ telephone: string;
925
+ url: string;
926
+ documentId: string;
927
+ }
928
+
929
+ declare interface IProps {
930
+ /** Width of sidebar, if any */
931
+ sideBarWidth?: string;
932
+ /** Background color */
933
+ bgcolor?: string;
934
+ /** Children */
935
+ children?: default_2.ReactNode;
936
+ }
937
+
938
+ declare interface IProps_10 extends default_2.ImgHTMLAttributes<HTMLImageElement> {
939
+ alt: string;
940
+ /** When fetching images directly from blobs, send in blob url */
941
+ src?: string;
942
+ /** When fetching images directly from blob, send in blob url instead of src */
943
+ blob?: Blob;
944
+ /** Image height, e.g. 100px */
945
+ height?: string;
946
+ /** Image width, e.g. 100px */
947
+ width?: string;
948
+ /** Max out width with automatic height in regards to the image size */
949
+ responsive?: boolean;
950
+ /** Adds a radius to the image */
951
+ radius?: string;
952
+ /** Shows a grey placeholder while the image is rendering, the image needs to have a fixed/min size */
953
+ withPlaceholder?: boolean;
954
+ /** Uses this image url if the original image fails to load */
955
+ fallbackUrl?: string;
956
+ /** Set object-fit css property */
957
+ objectFit?: 'fill' | 'contain' | 'cover' | 'non' | 'scale-down' | 'initial' | 'inherit';
958
+ /** CSS override */
959
+ interactive?: boolean;
960
+ css?: SerializedStyles;
961
+ }
962
+
963
+ declare interface IProps_11 extends default_2.HTMLAttributes<HTMLInputElement> {
964
+ /** Type of checkbox */
965
+ type?: 'sharp' | 'subtle';
966
+ /** Content within the checkbox. */
967
+ children?: NonNullable<default_2.ReactNode>;
968
+ /** Name of checkbox */
969
+ name?: string;
970
+ /** Default checked */
971
+ checked?: boolean;
972
+ /** Disabled checkbox */
973
+ disabled?: boolean;
974
+ /** Set hover state on disabled, defaults to not-allowed */
975
+ disabledHoverState?: string;
976
+ /** Remove margins */
977
+ nomargin?: boolean;
978
+ /** Value? */
979
+ value?: string;
980
+ /** Show as child checkbox */
981
+ child?: boolean;
982
+ /** Add classname */
983
+ className?: string;
984
+ /** ID for label association */
985
+ id?: string;
986
+ /** CB when checkbox changes */
987
+ onChange?: (e: default_2.ChangeEvent<HTMLInputElement>) => any;
988
+ /** cb for onclick, if one for instance wants to stop propogation */
989
+ onClick?: (e: default_2.MouseEvent<HTMLInputElement, MouseEvent>) => any;
990
+ }
991
+
992
+ declare type IProps_12 = Props & {
993
+ /** Prop for external link, adds icon to link */
994
+ external?: boolean;
995
+ /** Link target */
996
+ target?: string;
997
+ /** Removes link styling. */
998
+ nostyle?: boolean;
999
+ /** Show link in danger color */
1000
+ danger?: boolean;
1001
+ /** Removes padding */
1002
+ nopadding?: boolean;
1003
+ /** Set text-align, defaults to center */
1004
+ textAlign?: string;
1005
+ /** Sets link size to 14px */
1006
+ small?: boolean;
1007
+ /** Removes underline */
1008
+ removeUnderline?: boolean;
1009
+ /** Apply word-break style */
1010
+ wordBreak?: string;
1011
+ };
1012
+
1013
+ declare interface IProps_13 extends ListType {
1014
+ /** Ordered list */
1015
+ ordered?: boolean;
1016
+ /** List of links with arrow */
1017
+ links?: boolean;
1018
+ /** Alternative list of links with arrow */
1019
+ linksAlternate?: boolean;
1020
+ /** Bulletpoint list */
1021
+ points?: boolean;
1022
+ /** Numbered list */
1023
+ numbers?: boolean;
1024
+ /** Numbered list with highlighted numbers */
1025
+ numbersHighlighted?: boolean;
1026
+ /** Selectable list, used in Select component */
1027
+ selectList?: boolean;
1028
+ /** Removes style */
1029
+ nostyle?: boolean;
1030
+ /** Dark theme for List */
1031
+ darkTheme?: boolean;
1032
+ /** Set height value to list items */
1033
+ rowHeight?: string;
1034
+ /** Set min-height value to list items */
1035
+ minRowHeight?: string;
1036
+ /** Adds padding to list items */
1037
+ padding?: string;
1038
+ /** Children */
1039
+ children?: default_2.ReactNode | default_2.ReactNode[];
1040
+ }
1041
+
1042
+ declare interface IProps_14 extends default_2.HTMLAttributes<HTMLLIElement> {
1043
+ children?: default_2.ReactNode;
1044
+ }
1045
+
1046
+ declare interface IProps_15 {
1047
+ /** Property for neutral */
1048
+ neutral?: boolean;
1049
+ /** Property for success */
1050
+ success?: boolean;
1051
+ /** Property for info */
1052
+ info?: boolean;
1053
+ /** Property for danger */
1054
+ danger?: boolean;
1055
+ /** Property for dark */
1056
+ dark?: boolean;
1057
+ /** Property for light */
1058
+ light?: boolean;
1059
+ /** Property for outline */
1060
+ outline?: boolean;
1061
+ /** Property for dotted border tag */
1062
+ dotted?: boolean;
1063
+ /** Property for showing close icon */
1064
+ withclose?: boolean;
1065
+ /** Custom classname */
1066
+ className?: any;
1067
+ /** Tag title, displays when hover */
1068
+ title?: string;
1069
+ /** Adds icon before children */
1070
+ icon?: default_2.ReactNode;
1071
+ /** Strict on click, only reacts when clicking on icon */
1072
+ strictClose?: boolean;
1073
+ /** Color for close button */
1074
+ closeColor?: string;
1075
+ /** Shows loading state */
1076
+ loading?: boolean;
1077
+ /** Shows spinner color */
1078
+ loadingColor?: string;
1079
+ /** Add a data-tracking-event attribute to close click */
1080
+ trackingEvent?: string;
1081
+ /** Add a data-tracking-name attribute to close click */
1082
+ trackingName?: string;
1083
+ /** Disables onClick functions */
1084
+ disabled?: boolean;
1085
+ /** OnClick property returns cb with event */
1086
+ onClick?: (event: default_2.MouseEvent<any>) => void | undefined;
1087
+ /** Children */
1088
+ children?: default_2.ReactNode;
1089
+ }
1090
+
1091
+ declare interface IProps_16 extends default_2.HTMLAttributes<ElementTypes> {
1092
+ /** Sets text as a paragraph */
1093
+ paragraph?: boolean;
1094
+ /** Larger text */
1095
+ intro?: boolean;
1096
+ /** Small text */
1097
+ small?: boolean;
1098
+ /** Extra small text */
1099
+ extrasmall?: boolean;
1100
+ /** Sets text as bold */
1101
+ bold?: boolean;
1102
+ /** Sets text as semibold */
1103
+ semibold?: boolean;
1104
+ /** Sets a less dominant color */
1105
+ subtle?: boolean;
1106
+ /** Gives the text a color */
1107
+ color?: string;
1108
+ /** Gives the text primary color */
1109
+ primary?: boolean;
1110
+ /** Gives the text secondary color */
1111
+ secondary?: boolean;
1112
+ /** Gives the text dark secondary color */
1113
+ dark?: boolean;
1114
+ /** Sets a size of the text */
1115
+ size?: string;
1116
+ /** Displays a title on hover */
1117
+ title?: string;
1118
+ /** Italic (cursive) font style */
1119
+ italic?: boolean;
1120
+ /** Text alignment */
1121
+ align?: string;
1122
+ /** Apply word-break style */
1123
+ wordBreak?: 'break-word' | string;
1124
+ /** Apply white-space style */
1125
+ whiteSpace?: string;
1126
+ /** Adds ellipsis after given amount of lines*/
1127
+ lineClamp?: number;
1128
+ /** CB fired on click */
1129
+ onClick?: () => any;
1130
+ /** The text to be displayed */
1131
+ children: NonNullable<default_2.ReactNode>;
1132
+ }
1133
+
1134
+ declare interface IProps_17 {
1135
+ /** Children */
1136
+ children?: default_2.ReactNode;
1137
+ }
1138
+
1139
+ declare interface IProps_18 {
1140
+ /** Children */
1141
+ children?: default_2.ReactNode;
1142
+ }
1143
+
1144
+ declare interface IProps_19 {
1145
+ /** Children */
1146
+ children?: default_2.ReactNode;
1147
+ }
1148
+
1149
+ declare interface IProps_2 {
1150
+ maxWidth?: string;
1151
+ /** Children */
1152
+ children?: default_2.ReactNode;
1153
+ }
1154
+
1155
+ declare interface IProps_20 {
1156
+ /** Children */
1157
+ children?: default_2.ReactNode;
1158
+ }
1159
+
1160
+ declare interface IProps_21 {
1161
+ [prop: string]: unknown;
1162
+ /** Deprecated */
1163
+ small?: boolean;
1164
+ /** Link content */
1165
+ children: NonNullable<default_2.ReactNode>;
1166
+ /** Link URL */
1167
+ href: string;
1168
+ /** Open link in new tab */
1169
+ external?: boolean;
1170
+ /** Link target */
1171
+ target?: string;
1172
+ /** Returns null if href is empty */
1173
+ ifexists?: boolean;
1174
+ }
1175
+
1176
+ declare interface IProps_22 {
1177
+ [prop: string]: unknown;
1178
+ /** Deprecated */
1179
+ small?: boolean;
1180
+ /** Link content */
1181
+ children: NonNullable<default_2.ReactNode>;
1182
+ /** Onclick event */
1183
+ onClick: () => void;
1184
+ /** Returns null if href is empty */
1185
+ ifexists?: boolean;
1186
+ }
1187
+
1188
+ declare type IProps_23 = default_2.InputHTMLAttributes<HTMLInputElement> & {
1189
+ /** Radio name */
1190
+ name?: string;
1191
+ /** Default checked */
1192
+ checked?: boolean;
1193
+ /** Disables radio button */
1194
+ disabled?: boolean;
1195
+ /** Vertical radios */
1196
+ vertical?: boolean;
1197
+ /** Box style */
1198
+ boxed?: boolean;
1199
+ /** On click CB */
1200
+ onClick?: () => void;
1201
+ /** On change CB */
1202
+ onChange?: () => void;
1203
+ /** On mouse up CB */
1204
+ onMouseUp?: () => void;
1205
+ /** Children */
1206
+ children?: default_2.ReactNode;
1207
+ };
1208
+
1209
+ declare interface IProps_24 {
1210
+ /** Style the skeleton as a circle */
1211
+ circle?: boolean;
1212
+ /** Skeleton height */
1213
+ height?: string;
1214
+ /** Skeleton width */
1215
+ width?: string;
1216
+ /** Makes the skeleton a rectangle */
1217
+ rectangle?: boolean;
1218
+ /** Skeleton border radius */
1219
+ borderRadius?: string;
1220
+ }
1221
+
1222
+ declare interface IProps_25 {
1223
+ /** Html to be displayed. */
1224
+ text?: any;
1225
+ /** Secondary text color */
1226
+ secondary?: boolean;
1227
+ /** Dark secondary text color */
1228
+ dark?: boolean;
1229
+ /** Set default font size */
1230
+ size?: string;
1231
+ /** Should open links in new tab */
1232
+ externalLinks?: boolean;
1233
+ /** White-space css property value (defaults to pre-wrap) */
1234
+ whiteSpace?: string;
1235
+ /** White-space css property value (defaults to pre-wrap) */
1236
+ removeMargins?: boolean;
1237
+ /** Add class names */
1238
+ className?: string;
1239
+ /** Specify if you want to sanitize html before render.
1240
+ * @default true
1241
+ */
1242
+ sanitize?: boolean;
1243
+ /** Options for the sanitizer */
1244
+ sanitizeOptions?: Config;
1245
+ /** Allow video tags */
1246
+ allowVideo?: boolean;
1247
+ }
1248
+
1249
+ declare interface IProps_26 {
1250
+ /** The custom text. */
1251
+ text?: string;
1252
+ /** The custom text is loading. */
1253
+ loading?: boolean;
1254
+ /** Number of placeholder text-lines to be displayed while loading. Defaults to 1. */
1255
+ lines?: number;
1256
+ /** Getting the custom text failed. */
1257
+ error?: boolean;
1258
+ /** Centers the loader. */
1259
+ centerloader?: boolean;
1260
+ /** Secondary color on text */
1261
+ secondary?: boolean;
1262
+ /** Dark secondary color on text */
1263
+ dark?: boolean;
1264
+ /** Set default fontsize */
1265
+ size?: string;
1266
+ /** Determine whitespace prop in HTML. (defaults to pre-wrap) */
1267
+ whiteSpace?: string;
1268
+ }
1269
+
1270
+ declare interface IProps_27 {
1271
+ /** Text when no option are selected */
1272
+ text?: string;
1273
+ /** Current selected value. Leave empty for default text. */
1274
+ selectedValue?: string;
1275
+ /** Style as an input */
1276
+ input?: boolean;
1277
+ /** Adds a label if input is selected */
1278
+ label?: string;
1279
+ /** Callback handler for when clicking option element. */
1280
+ onChange?: (value: string) => any;
1281
+ /** Callback handle for when opening the select */
1282
+ onOpenChange?: (open: boolean) => any;
1283
+ /** Option-elements, select list content */
1284
+ children: ReactNode[];
1285
+ /** Adds icon to select */
1286
+ icon?: default_2.ReactNode;
1287
+ /** Type of select, default is transparent, primary10 adds primary background with 10 opacity */
1288
+ type?: 'default' | 'primary10' | 'opacity08';
1289
+ /** Use native selector */
1290
+ native?: boolean;
1291
+ /** Select button width */
1292
+ width?: string;
1293
+ /** Options content width */
1294
+ optionsWidth?: string;
1295
+ /** Options max height. If set will set overflow-y to scroll. */
1296
+ maxHeight?: string;
1297
+ /** Autofocus */
1298
+ focus?: boolean;
1299
+ /** Add custom css to select when in open state */
1300
+ customOpenstyle?: SerializedStyles;
1301
+ /** Override with custom CSS */
1302
+ customStyle?: SerializedStyles;
1303
+ /** Add a data-tracking-event attribute. */
1304
+ trackingEvent?: string;
1305
+ /** Add a data-tracking-name attribute. */
1306
+ trackingName?: string;
1307
+ /** Select is disabled. */
1308
+ disabled?: boolean;
1309
+ /** Manual close by changing closeKey externally */
1310
+ closeKey?: string;
1311
+ /** Add classname */
1312
+ className?: string;
1313
+ /** Adds info-text button */
1314
+ info?: string;
1315
+ /** Where the info tooltip will be placed relative to the button @default left */
1316
+ infoPlacement?: 'top' | 'left' | 'right' | 'bottom';
1317
+ }
1318
+
1319
+ declare interface IProps_28 {
1320
+ /** Input label */
1321
+ label?: string;
1322
+ /** Placeholder text */
1323
+ placeholder?: string;
1324
+ /** Placeholder text for the input */
1325
+ inputPlaceholder?: string;
1326
+ /** Type of select, default is transparent, opacity08 adds 08 opacity */
1327
+ type?: 'default' | 'opacity08';
1328
+ /** Width */
1329
+ width?: string;
1330
+ /** Values to list */
1331
+ values: IValuesProps[];
1332
+ /** Value set before anything is chosen */
1333
+ defaultValue?: string;
1334
+ /** Value that is handled from the outside */
1335
+ selectedValue?: string;
1336
+ /** Add a data-tracking-event attribute. */
1337
+ trackingEvent?: string;
1338
+ /** Add a data-tracking-name attribute. */
1339
+ trackingName?: string;
1340
+ /** Gets specific value as label from values property */
1341
+ createLabelName?: (str: IValuesProps) => string;
1342
+ /** Handles on change */
1343
+ onChange: (val: IValuesProps) => void;
1344
+ /** Gets specific value as key from values property */
1345
+ keyName?: string;
1346
+ /** Gets specific value as label from values property */
1347
+ labelName?: string;
1348
+ /** Keys from the values that should be used to search */
1349
+ fuzzyKeys: string[];
1350
+ }
1351
+
1352
+ declare interface IProps_29 {
1353
+ /** Prop for disabled */
1354
+ disabled?: boolean;
1355
+ /** On change callback */
1356
+ onChange?: (e: any) => any;
1357
+ /** CB value */
1358
+ value?: any;
1359
+ /** Key for element */
1360
+ key?: string | number | undefined;
1361
+ /** Indention for the text from left, the higher the number, the more indent */
1362
+ indent?: number;
1363
+ /** Option children */
1364
+ children?: default_2.ReactNode | default_2.ReactNode[];
1365
+ /** Add a data-tracking-event attribute. */
1366
+ trackingEvent?: string;
1367
+ /** Add a data-tracking-name attribute. */
1368
+ trackingName?: string;
1369
+ }
1370
+
1371
+ declare interface IProps_3 {
1372
+ /** Sidebar component */
1373
+ sideBar?: default_2.ReactNode;
1374
+ /** Sidebar width */
1375
+ sideBarWidth?: string;
1376
+ /** Topbar component */
1377
+ topBar: default_2.ReactNode;
1378
+ /** Footer component */
1379
+ footer: default_2.ReactNode;
1380
+ /** Adds margin bottom */
1381
+ withTabs?: boolean;
1382
+ /** Add hidden skip to main content link with event */
1383
+ onSkipToMainContent?: () => void;
1384
+ /** Add hidden skip to navbar link with event */
1385
+ onSkipToNav?: () => void;
1386
+ /** Children */
1387
+ children?: default_2.ReactNode;
1388
+ }
1389
+
1390
+ declare interface IProps_30 {
1391
+ /** User name */
1392
+ name: string;
1393
+ /** User firstname */
1394
+ firstname?: string;
1395
+ /** User email */
1396
+ email: string;
1397
+ /** Type of usermenu */
1398
+ type?: 'default' | 'mysite';
1399
+ /** Icon type, thin or default */
1400
+ iconType?: 'default' | 'thin';
1401
+ /** Icon size in pixels */
1402
+ iconSize?: number;
1403
+ /** Url to profile image */
1404
+ avatarUrl?: string;
1405
+ /** Hide the avatar outside the open */
1406
+ hideAvatarOnButton?: boolean;
1407
+ /** Logout button */
1408
+ logout?: default_2.ReactNode;
1409
+ /** Children */
1410
+ children?: default_2.ReactNode;
1411
+ }
1412
+
1413
+ declare interface IProps_31 {
1414
+ /** On click CB */
1415
+ onClick?: () => void;
1416
+ /** Children */
1417
+ children?: default_2.ReactNode;
1418
+ }
1419
+
1420
+ declare interface IProps_32 extends default_2.HTMLAttributes<HTMLDialogElement> {
1421
+ /** Property for open modal */
1422
+ open?: boolean;
1423
+ /** React node for header component */
1424
+ header?: default_2.ReactNode;
1425
+ /** React node for action buttons. Use Modal.Actions as a wrapper, if using multiple buttons */
1426
+ actionButton?: default_2.ReactNode;
1427
+ /** Modal width */
1428
+ width?: string;
1429
+ /** Disable close on outside click */
1430
+ disableOutsideClick?: boolean;
1431
+ /** Disable focus on modal ref when opened */
1432
+ disableRefFocus?: boolean;
1433
+ /** Hide close button */
1434
+ hideCloseButton?: boolean;
1435
+ /** Refs of scrollable elements */
1436
+ targetRefs?: any[];
1437
+ /** Disables body scroll, defaults to true */
1438
+ disableScroll?: boolean;
1439
+ /** Removes max-height and overflow: hidden from Modal-content, e.g: allow dropdown-content to appear outside Modal-content */
1440
+ disableScrollableContent?: boolean;
1441
+ /** Override content css */
1442
+ contentCss?: SerializedStyles;
1443
+ /** Override header css */
1444
+ headerCss?: SerializedStyles;
1445
+ /** Disables closing inside component */
1446
+ disableLocalClose?: boolean;
1447
+ /** Adds option to enable/disable fullscreen */
1448
+ toggleFullscreen?: boolean;
1449
+ /** Sets modal as fullscreen by default */
1450
+ defaultFullscreen?: boolean;
1451
+ /** Disables focus trap */
1452
+ disableFocusTrap?: boolean;
1453
+ /** CB for when close is clicked */
1454
+ onClose?: () => void;
1455
+ /** Renders collapse button with callback */
1456
+ onCollapse?: () => void;
1457
+ /** Optional callback fired when fullscreen is toggled */
1458
+ onFullscreenToggle?: (isFullscreen: boolean) => void;
1459
+ /** Children */
1460
+ children?: default_2.ReactNode | default_2.ReactNode[];
1461
+ }
1462
+
1463
+ declare interface IProps_33 {
1464
+ /** Unread property for showing marker */
1465
+ unreadCount: number;
1466
+ /** Update value for close dropdown */
1467
+ triggerClose?: any;
1468
+ /** Menu border radius */
1469
+ radius?: '16px' | '10px';
1470
+ /** Children */
1471
+ children?: default_2.ReactNode;
1472
+ /** Callback on bell click */
1473
+ onBellClick?: () => void;
1474
+ /** Animates bell to shake */
1475
+ animationActive?: boolean;
1476
+ }
1477
+
1478
+ declare type IProps_34 = {
1479
+ /** Notification title */
1480
+ title: string;
1481
+ /** Description, is added to title string */
1482
+ description: string;
1483
+ /** Icon to display on notification */
1484
+ icon: default_2.ReactNode;
1485
+ /** Hide border bottom on row */
1486
+ hideBorderBottom?: boolean;
1487
+ /** Extra info on top of row */
1488
+ extraInfo?: string;
1489
+ /** On click on notification row */
1490
+ onClick: () => void;
1491
+ };
1492
+
1493
+ declare type IProps_35 = {
1494
+ /** Content within the table. */
1495
+ children: NonNullable<default_2.ReactNode>;
1496
+ };
1497
+
1498
+ declare type IProps_36 = {
1499
+ /** Display horizontally at the start. */
1500
+ startAlign?: boolean;
1501
+ /** Display in the center horizontally. */
1502
+ centerAlign?: boolean;
1503
+ /** Content to render. */
1504
+ children?: default_2.ReactNode | default_2.ReactNode[];
1505
+ /** Span multiple columns. */
1506
+ colSpan?: number;
1507
+ /** Display horizontally at the end. */
1508
+ endAlign?: boolean;
1509
+ /** Render as a table header. */
1510
+ header?: boolean;
1511
+ /** Truncate text and display all on hover. */
1512
+ truncate?: boolean;
1513
+ /** Wrap text and white space. */
1514
+ wrap?: boolean;
1515
+ };
1516
+
1517
+ declare type IProps_37 = {
1518
+ /** Table cells to render. */
1519
+ children: NonNullable<default_2.ReactNode>;
1520
+ /** Dangerous/failure row (red). */
1521
+ danger?: boolean;
1522
+ /** Informational row (blue). */
1523
+ info?: boolean;
1524
+ /** Muted/disabled row (gray). */
1525
+ muted?: boolean;
1526
+ /** Notice row. */
1527
+ notice?: boolean;
1528
+ /** Successful row (green). */
1529
+ success?: boolean;
1530
+ /** Warning row (yellow). */
1531
+ warning?: boolean;
1532
+ /** Border top and bottom */
1533
+ border?: boolean;
1534
+ };
1535
+
1536
+ declare interface IProps_38 {
1537
+ /** Multiple files can be uploaded */
1538
+ multiple?: boolean;
1539
+ /** Determines valid file formats */
1540
+ accept?: string;
1541
+ /** Gives the input a label */
1542
+ label?: string;
1543
+ /** Invalid message */
1544
+ invalidMessage?: string;
1545
+ /** Custom button text */
1546
+ text?: string;
1547
+ /** Initial file for uncontrolled state */
1548
+ initialFiles?: File[];
1549
+ /** Button width */
1550
+ width?: string;
1551
+ /** Hides file list */
1552
+ hideFileList?: boolean;
1553
+ /** Hides file list */
1554
+ icon?: default_2.ReactNode;
1555
+ /** Max size for individual file (in bytes) */
1556
+ fileMaxsixe?: number;
1557
+ /** Removes styling of button */
1558
+ nostyle?: boolean;
1559
+ /** Rotates icon */
1560
+ rotateIcon?: boolean;
1561
+ /** Sets controlled file state */
1562
+ isControlledState?: boolean;
1563
+ /** Files if "isControlledState" is set */
1564
+ controlledFiles?: File[];
1565
+ /** Adds an id to the input */
1566
+ id?: string;
1567
+ /** Event CB on change, returns object if not multiple is set, if not return list of type File[] */
1568
+ onChange: (files: File | File[] | null) => void;
1569
+ }
1570
+
1571
+ declare interface IProps_39 extends Omit<default_2.HTMLAttributes<HTMLInputElement>, 'onChange'> {
1572
+ /** Adds label to input */
1573
+ label?: string;
1574
+ /** Give the input a value */
1575
+ value?: Date;
1576
+ /** @deprecated handled by "invalidMessage" prop */
1577
+ validation?: boolean;
1578
+ /** Invalid message */
1579
+ invalidMessage?: string;
1580
+ /** Maximum allowed date, defaults to end of year */
1581
+ maxDate?: Date;
1582
+ /** Minimum allowed date */
1583
+ minDate?: Date;
1584
+ /** With month and year selects, defaults to true */
1585
+ withYearMonthForm?: boolean;
1586
+ /** Disables input */
1587
+ disabled?: boolean;
1588
+ /** Adds title if disabled */
1589
+ disabledTitle?: string;
1590
+ /** On change callback, returns date */
1591
+ onChange?: (value: Date) => void;
1592
+ /** Callback fired on date picker hide. Only for input */
1593
+ onBlur?: () => void;
1594
+ /** Renders picker without input */
1595
+ nonInput?: boolean;
1596
+ }
1597
+
1598
+ declare interface IProps_4 {
1599
+ /** App theme */
1600
+ themeUrl: string;
1601
+ /** Override default text color for app */
1602
+ defaultTextColor?: string;
1603
+ /** Wich folder to fetch globals style file */
1604
+ globalsFolder?: 'portal' | 'mypage';
1605
+ /** Children */
1606
+ children: NonNullable<default_2.ReactNode>;
1607
+ }
1608
+
1609
+ declare interface IProps_40 {
1610
+ /** Adds label to input */
1611
+ label?: {
1612
+ to?: string;
1613
+ from?: string;
1614
+ };
1615
+ /** Give the input a value */
1616
+ value?: {
1617
+ to?: Date;
1618
+ from?: Date;
1619
+ };
1620
+ /** Validation on input */
1621
+ validation?: boolean;
1622
+ /** Invalid message */
1623
+ invalidMessage?: {
1624
+ to?: string;
1625
+ from?: string;
1626
+ };
1627
+ /** Maximum allowed date */
1628
+ maxDate?: Date;
1629
+ /** Disables input */
1630
+ disabled?: {
1631
+ to?: boolean;
1632
+ from?: boolean;
1633
+ };
1634
+ /** Adds title if disabled */
1635
+ disabledTitle?: {
1636
+ to?: string;
1637
+ from?: string;
1638
+ };
1639
+ /** On change callback, returns date */
1640
+ onChange: (value: {
1641
+ to?: Date;
1642
+ from?: Date;
1643
+ }) => void;
1644
+ /** Callback fired on blur. */
1645
+ onBlur?: () => void;
1646
+ /** Override CSS by SerializedStyles */
1647
+ css?: SerializedStyles;
1648
+ /** Max width of inputs, defaults to 550px */
1649
+ maxWidth?: number;
1650
+ /** Min width of inputs, defaults to 400px */
1651
+ minWidth?: number;
1652
+ }
1653
+
1654
+ declare interface IProps_41 {
1655
+ /** Sets colors to a lighter theme */
1656
+ lightTheme?: boolean;
1657
+ /** Set to true if menu is not collapsed */
1658
+ open: boolean;
1659
+ /** Children */
1660
+ children?: default_2.ReactNode;
1661
+ }
1662
+
1663
+ declare interface IProps_42 {
1664
+ /** Sets picker as selected */
1665
+ selected?: boolean;
1666
+ /** Set to true if menu is collapsed */
1667
+ small: boolean;
1668
+ /** Sets colors to a lighter theme */
1669
+ lightTheme: boolean;
1670
+ /** The icon of the picker */
1671
+ icon: default_2.ReactNode;
1672
+ /** The label of the picker */
1673
+ label: string;
1674
+ /** Adds classnames */
1675
+ className?: string;
1676
+ /** Href */
1677
+ href: string;
1678
+ }
1679
+
1680
+ declare interface IProps_43 extends default_2.HTMLAttributes<HTMLUListElement> {
1681
+ /** Set to true if menu is collapsed */
1682
+ small: boolean;
1683
+ /** Children */
1684
+ children?: default_2.ReactNode | default_2.ReactNode[];
1685
+ }
1686
+
1687
+ declare interface IProps_44 extends default_2.HTMLAttributes<HTMLLIElement> {
1688
+ /** Set to true if menu is collapsed */
1689
+ small: boolean;
1690
+ /** The label of the item */
1691
+ label: string;
1692
+ /** The icon of the item */
1693
+ icon: default_2.ReactNode;
1694
+ /** Sets colors to a lighter theme */
1695
+ lightTheme?: boolean;
1696
+ /** The item is active */
1697
+ active?: boolean;
1698
+ /** CB fired on click */
1699
+ onClick: () => void;
1700
+ }
1701
+
1702
+ declare interface IProps_45 {
1703
+ /** Set to true if menu is collapsed */
1704
+ small: boolean;
1705
+ /** Logo to be displayed on top */
1706
+ logo?: string;
1707
+ /** CB fired on logo click */
1708
+ onLogoClick?: () => void;
1709
+ /** Children */
1710
+ children?: default_2.ReactNode | default_2.ReactNode[];
1711
+ }
1712
+
1713
+ declare interface IProps_46 {
1714
+ /** Set to true if menu is collapsed */
1715
+ small: boolean;
1716
+ /** CB fired onn toggle button click */
1717
+ onMenuToggle?: (open: boolean) => void;
1718
+ /** Sets colors to a lighter theme */
1719
+ lightTheme?: boolean;
1720
+ /** Text to be displayed at bottom */
1721
+ label: string;
1722
+ /** Children */
1723
+ children?: default_2.ReactNode;
1724
+ }
1725
+
1726
+ declare interface IProps_47 {
1727
+ /** The label of the item */
1728
+ label: string;
1729
+ /** The icon of the item */
1730
+ icon: default_2.ReactNode;
1731
+ /** Sets colors to a lighter theme */
1732
+ lightTheme?: boolean;
1733
+ /** Href of the item */
1734
+ href: string;
1735
+ /** Apply Link target prop value */
1736
+ target?: string;
1737
+ }
1738
+
1739
+ declare interface IProps_48 {
1740
+ /** Children */
1741
+ children?: default_2.ReactNode;
1742
+ }
1743
+
1744
+ declare interface IProps_49 {
1745
+ /** Sets colors to a lighter theme */
1746
+ lightTheme?: boolean;
1747
+ /** Header, displayed as h1 */
1748
+ header?: string;
1749
+ /** Custom header */
1750
+ customHeader?: default_2.ReactNode;
1751
+ /** The items of the menu */
1752
+ children?: ReactNodeArray;
1753
+ /** Background illustration */
1754
+ illustration?: default_2.ReactNode;
1755
+ /** cb onOpenChange */
1756
+ onOpenChange?: (open: boolean) => any;
1757
+ }
1758
+
1759
+ declare interface IProps_5 extends default_2.HTMLAttributes<HTMLDivElement> {
1760
+ /** Color of loading dots */
1761
+ color?: string;
1762
+ }
1763
+
1764
+ declare interface IProps_50 {
1765
+ /** Sets colors to a lighter theme */
1766
+ lightTheme?: boolean;
1767
+ /** The label of the item */
1768
+ label: string;
1769
+ /** Sets the item as active */
1770
+ active?: boolean;
1771
+ /** Return label of active item or null */
1772
+ showActiveitemLabel?: boolean;
1773
+ /** Add classname to desktop item */
1774
+ className?: string;
1775
+ /** CB fired on click */
1776
+ onClick?: () => void;
1777
+ /** CB fired on click */
1778
+ onChange?: () => void;
1779
+ }
1780
+
1781
+ declare interface IProps_51 {
1782
+ preemption: IPreemption;
1783
+ onClick: (id: string) => void;
1784
+ showSizeDetails?: boolean;
1785
+ }
1786
+
1787
+ declare interface IProps_52 {
1788
+ }
1789
+
1790
+ declare interface IProps_53 extends Partial<Pie> {
1791
+ /** Data properties, e.g. [{ title: 'name', value: 0 }] */
1792
+ data: ChartDataProps[];
1793
+ /** Pie chart height, default 300px */
1794
+ height?: string;
1795
+ /** Pie chart width, default 100% */
1796
+ width?: string;
1797
+ /** Default subtitle value shown, will join with subtitlePrefix in set e.g. xx + 'beboere' */
1798
+ defaultSubtitle?: string;
1799
+ /** Subtitle prefix, e.g. 'Antall beboere' + value */
1800
+ subtitlePrefix?: string;
1801
+ /** Handles active changes from the outside, takes the index from the data array */
1802
+ active?: number | undefined;
1803
+ /** Handles opacity of the circle, default 70% */
1804
+ opacity?: number | undefined;
1805
+ /** Set function for active index from outside the component */
1806
+ onActiveChange?: (index: number | undefined) => void;
1807
+ customMiddleText?: string;
1808
+ customMiddleValue?: number;
1809
+ }
1810
+
1811
+ declare interface IProps_54 extends Partial<Bar> {
1812
+ /** The source data. Example format: [{name: string, value: string}]. Name is required*/
1813
+ data: any[];
1814
+ /** Array of each bar in the BarChart: e.g [{name: "Kostnad", dataKey: "kostnad", fill: theme.primary}]. value of dataKey correlates to a property in the data source. Fill sets the color of the bar */
1815
+ bars: {
1816
+ name: string;
1817
+ dataKey: string;
1818
+ fill: string;
1819
+ }[];
1820
+ /** xAxisDataKey: Looks at a property in the data source which will provide a name for each entry in the chart */
1821
+ xAxisDataKey: string;
1822
+ /**yAxisDataKey: Looks at a property in the data source which will provide a name for each entry in the chart */
1823
+ yAxisDataKey?: string;
1824
+ /** Height: default to 350px */
1825
+ height?: string;
1826
+ /** Width: defaults to auto */
1827
+ width?: string;
1828
+ /** xAxisLine: Show the xAxisLine, or leave empty. Default is false */
1829
+ xAxisLine?: boolean;
1830
+ /**yAxisLine: Show the yAxisLine, or leave empty. Default is false */
1831
+ yAxisLine?: boolean;
1832
+ /** tickLineX: Show axis tick line. Defaults to false */
1833
+ tickLineX?: boolean;
1834
+ /** tickLineY: Show axis tick line. Defaults to false */
1835
+ tickLineY?: boolean;
1836
+ /**legendHAlign: horizontal position of the caption for the content. Default is left */
1837
+ legendHAlign?: 'left' | 'center' | 'right';
1838
+ /**legendVAlign: vertical position of the caption for the content. Default is bottom */
1839
+ legendVAlign?: 'top' | 'middle' | 'bottom';
1840
+ /** margin: Margins for the BarChart. Default is { top: 0, right: 0, left: 0, bottom: 0 } */
1841
+ margin?: Margin;
1842
+ /** legendPadding: Sets padding for the Legend. Default is top: 10px, right: 0, left: 55px, bottom: 0 */
1843
+ legendPadding?: {
1844
+ top: number;
1845
+ right: number;
1846
+ bottom: number;
1847
+ left: number;
1848
+ };
1849
+ /**layout: vertical or horizontal BarChart. Defaults to horizontal. */
1850
+ layout?: 'horizontal' | 'vertical';
1851
+ /** Use the default formatter for axis */
1852
+ defaultFormatter?: boolean;
1853
+ /** Minimun gap ticks for Y axis */
1854
+ minTickGapY?: number;
1855
+ /** Minimun gap ticks for X axis */
1856
+ minTickGapX?: number;
1857
+ /** Allow decimal numbers in Y and X axis, default true */
1858
+ allowDecimals?: boolean;
1859
+ /** Tick formatting function */
1860
+ tickFormatter?: (value: any, index: number) => string;
1861
+ }
1862
+
1863
+ declare interface IProps_55 extends Partial<Line> {
1864
+ /** The source data. Example format: [{name: string, value: string}]. Name is required*/
1865
+ data: any[];
1866
+ /** Array of each bar in the BarChart: e.g [{name: "Kostnad", dataKey: "kostnad", fill: theme.primary}]. value of dataKey correlates to a property in the data source. Fill sets the color of the bar */
1867
+ lines: {
1868
+ name: string;
1869
+ dataKey: string;
1870
+ stroke: string;
1871
+ type: CurveType;
1872
+ strokeWidth?: number;
1873
+ }[];
1874
+ /** xAxisDataKey: Looks at a property in the data source which will provide a name for each entry in the chart */
1875
+ xAxisDataKey: string;
1876
+ /**yAxisDataKey: Looks at a property in the data source which will provide a name for each entry in the chart */
1877
+ yAxisDataKey?: string;
1878
+ /** Height: default to 350px */
1879
+ height?: string;
1880
+ /** Width: defaults to auto */
1881
+ width?: string;
1882
+ /** xAxisLine: Show the xAxisLine, or leave empty. Default is false */
1883
+ xAxisLine?: boolean;
1884
+ /**yAxisLine: Show the yAxisLine, or leave empty. Default is false */
1885
+ yAxisLine?: boolean;
1886
+ /** tickLineX: Show axis tick line. Defaults to false */
1887
+ tickLineX?: boolean;
1888
+ /** tickLineY: Show axis tick line. Defaults to false */
1889
+ tickLineY?: boolean;
1890
+ /**legendHAlign: horizontal position of the caption for the content. Default is left */
1891
+ legendHAlign?: 'left' | 'center' | 'right';
1892
+ /**legendVAlign: vertical position of the caption for the content. Default is bottom */
1893
+ legendVAlign?: 'top' | 'middle' | 'bottom';
1894
+ /** margin: Margins for the BarChart. Default is { top: 0, right: 0, left: 0, bottom: 0 } */
1895
+ margin?: Margin;
1896
+ /** legendPadding: Sets padding for the Legend. Default is top: 10px, right: 0, left: 50px, bottom: 0 */
1897
+ legendPadding?: {
1898
+ top: number;
1899
+ right: number;
1900
+ bottom: number;
1901
+ left: number;
1902
+ };
1903
+ /** xAxisPadding: sets padding for the xAxis. default is {left: 50, right: 50} */
1904
+ xAxisPadding?: {
1905
+ top?: number;
1906
+ right?: number;
1907
+ bottom?: number;
1908
+ left?: number;
1909
+ };
1910
+ /**layout: vertical or horizontal BarChart. Defaults to horizontal. */
1911
+ layout?: 'horizontal' | 'vertical';
1912
+ /** Set to false to disallow decimals in tooltip formatter, defaults to true */
1913
+ allowDecimalsInTooltip?: boolean;
1914
+ /**tickFormatterX: formatter function of X-axis tick */
1915
+ tickFormatterX?: (value: any, index: number) => string;
1916
+ /**tickFormatterY: formatter function of Y-axis tick */
1917
+ tickFormatterY?: (value: any, index: number) => string;
1918
+ /** tooltipFormatter: formatter of the tooltip */
1919
+ tooltipFormatter?: Formatter<ValueType, NameType>;
1920
+ }
1921
+
1922
+ declare interface IProps_56 extends Partial<typeof ComposedChart> {
1923
+ /** The source data. Example format: [{name: string, value: string}]. Name is required*/
1924
+ data: any[];
1925
+ /** Array of each bar in the ComposedChart: e.g [{name: "Kostnad", dataKey: "kostnad", fill: theme.primary}]. value of dataKey correlates to a property in the data source. Fill sets the color of the bar */
1926
+ bars: {
1927
+ name: string;
1928
+ dataKey: string;
1929
+ fill: string;
1930
+ stackId?: string;
1931
+ shortName?: string;
1932
+ }[];
1933
+ /** Array of each line in the ComposedChart: e.g [{ name:"Akkumulert", dataKey: "akkumulert", stroke: theme.secondary. type:"monotone"}]. Value of dataKey correlates to a property in the data source. Stroke sets the color of the line. */
1934
+ lines?: {
1935
+ name: string;
1936
+ dataKey: string;
1937
+ stroke: string;
1938
+ type: CurveType;
1939
+ shortName?: string;
1940
+ }[];
1941
+ /** xAxisDataKey: Looks at a property in the data source which will provide a name for each entry in the chart */
1942
+ xAxisDataKey: string;
1943
+ /**yAxisDataKey: Looks at a property in the data source which will provide a name for each entry in the chart */
1944
+ yAxisDataKey?: string;
1945
+ /** Height: default to 350px */
1946
+ height?: string;
1947
+ /** Width: defaults to auto */
1948
+ width?: string;
1949
+ /** xAxisLine: Show the xAxisLine, or leave empty. Default is false */
1950
+ xAxisLine?: boolean;
1951
+ /**yAxisLine: Show the yAxisLine, or leave empty. Default is false */
1952
+ yAxisLine?: boolean;
1953
+ /** tickLineY: Show axis tick line. Defaults to false */
1954
+ tickLineY?: boolean;
1955
+ /** tickLineY: Show axis tick line. Defaults to false */
1956
+ tickLineX?: boolean;
1957
+ /**legendHAlign: horizontal position of the caption for the content. Default is left */
1958
+ legendHAlign?: 'left' | 'center' | 'right';
1959
+ /**legendVAlign: vertical position of the caption for the content. Default is bottom */
1960
+ legendVAlign?: 'top' | 'middle' | 'bottom';
1961
+ /** legendPadding: Sets padding for the Legend. Default is top: 10px, right: 50px, left: 0, bottom: 0 */
1962
+ margin?: Margin;
1963
+ /** legendPadding: Sets padding for the Legend. Default is top: 10px, right: 0, left: 5px, bottom: 0 */
1964
+ legendPadding?: {
1965
+ top: number;
1966
+ right: number;
1967
+ bottom: number;
1968
+ left: number;
1969
+ };
1970
+ /**layout: vertical or horizontal BarChart. Defaults to horizontal. */
1971
+ layout?: 'horizontal' | 'vertical';
1972
+ /**lineStrokeWidth: Sets the stroke width of the line. Defaults to 1 */
1973
+ lineStrokeWidth?: number;
1974
+ hasYAxis?: boolean;
1975
+ cartesianGrid?: boolean;
1976
+ legend?: boolean;
1977
+ stack?: boolean;
1978
+ maxBarSize?: number;
1979
+ barGap?: number;
1980
+ barRadius?: number;
1981
+ referenceLine?: boolean;
1982
+ }
1983
+
1984
+ declare interface IProps_57 extends Partial<Bar> {
1985
+ /** The source data. Example format: [{name: string, value: string}]. Name is required*/
1986
+ data: any[];
1987
+ /** Array of each bar in the BarChart: e.g [{name: "Kostnad", dataKey: "kostnad", fill: theme.primary}]. value of dataKey correlates to a property in the data source. Fill sets the color of the bar */
1988
+ bars: {
1989
+ name: string;
1990
+ dataKey: string;
1991
+ fill: string;
1992
+ }[];
1993
+ /** xAxisDataKey: Looks at a property in the data source which will provide a name for each entry in the chart */
1994
+ xAxisDataKey: string;
1995
+ /**yAxisDataKey: Looks at a property in the data source which will provide a name for each entry in the chart */
1996
+ /** selectedIndex: Will update the selected index */
1997
+ selectedIndex: number;
1998
+ /** legend: show legend or not: Default is false */
1999
+ legend?: boolean;
2000
+ yAxisDataKey?: string;
2001
+ /** Height: default to 350px */
2002
+ height?: string;
2003
+ /** Width: defaults to auto */
2004
+ width?: string;
2005
+ /** xAxisLine: Show the xAxisLine, or leave empty. Default is false */
2006
+ xAxisLine?: boolean;
2007
+ /**yAxisLine: Show the yAxisLine, or leave empty. Default is false */
2008
+ yAxisLine?: boolean;
2009
+ /** tickLineX: Show axis tick line. Defaults to false */
2010
+ tickLineX?: boolean;
2011
+ /** tickLineY: Show axis tick line. Defaults to false */
2012
+ tickLineY?: boolean;
2013
+ /**legendHAlign: horizontal position of the caption for the content. Default is left */
2014
+ legendHAlign?: 'left' | 'center' | 'right';
2015
+ /**legendVAlign: vertical position of the caption for the content. Default is bottom */
2016
+ legendVAlign?: 'top' | 'middle' | 'bottom';
2017
+ /** margin: Margins for the BarChart. Default is { top: 0, right: 0, left: 0, bottom: 0 } */
2018
+ margin?: Margin;
2019
+ /** legendPadding: Sets padding for the Legend. Default is top: 10px, right: 27px, left: 0, bottom: 0 */
2020
+ legendPadding?: {
2021
+ top: number;
2022
+ right: number;
2023
+ bottom: number;
2024
+ left: number;
2025
+ };
2026
+ /**layout: vertical or horizontal BarChart. Defaults to horizontal. */
2027
+ layout?: 'horizontal' | 'vertical';
2028
+ /** onClickBar: fires when clicking a bar. Returns an object with the pattern of your data */
2029
+ onClickBar?: (item: any) => void;
2030
+ /**tickFormatterX: formatter function of X-axis tick */
2031
+ tickFormatterX?: (value: any, index: number) => string;
2032
+ /**tickFormatterY: formatter function of Y-axis tick */
2033
+ tickFormatterY?: (value: any, index: number) => string;
2034
+ }
2035
+
2036
+ declare type IProps_58 = default_2.HTMLAttributes<HTMLDivElement> & {
2037
+ /** Header component */
2038
+ header?: default_2.ReactNode;
2039
+ /** Collapsable box prop */
2040
+ collapsable?: boolean;
2041
+ /** Collapsable default open value */
2042
+ collapsableOpen?: boolean;
2043
+ handleOpenState?: boolean;
2044
+ /** Override with custom CSS */
2045
+ css?: SerializedStyles;
2046
+ /** No box-shadow */
2047
+ noshadow?: boolean;
2048
+ /** Box background */
2049
+ background?: string;
2050
+ /** Type of box, customized pr project */
2051
+ type?: 'default' | 'mysite';
2052
+ /** Defaults to 'chevron' for type 'default' and 'plus/minus' for type 'mysite' */
2053
+ collapseIcon?: 'chevron' | 'plus/minus';
2054
+ /** Add classname to box */
2055
+ className?: string;
2056
+ /** Hides content */
2057
+ hideContent?: boolean;
2058
+ /** Children */
2059
+ children?: default_2.ReactNode | default_2.ReactNode[];
2060
+ };
2061
+
2062
+ declare interface IProps_59 extends Omit<default_2.HTMLAttributes<HTMLTextAreaElement>, 'onChange'> {
2063
+ /** Label of textarea */
2064
+ label?: string;
2065
+ /** Default value */
2066
+ value?: string;
2067
+ /** Number of rows, deafults to 3 */
2068
+ rows?: number;
2069
+ /** Resize style, defaults to vertical */
2070
+ resize?: string;
2071
+ /** Max resize height */
2072
+ maxHeight?: string;
2073
+ /** Placeholder of textarea */
2074
+ placeholder?: string;
2075
+ /** Max length of textarea */
2076
+ maxLength?: number;
2077
+ /** Autofocus */
2078
+ focus?: boolean;
2079
+ /** Invalid message */
2080
+ invalidMessage?: string;
2081
+ /** Disable textarea */
2082
+ disabled?: boolean;
2083
+ /** Callback fired on changes */
2084
+ onChange?: (value: string) => void;
2085
+ }
2086
+
2087
+ declare interface IProps_6 extends default_2.HTMLAttributes<HTMLDivElement> {
2088
+ /** Primary theme style */
2089
+ primary?: boolean;
2090
+ /** Success alert */
2091
+ success?: boolean;
2092
+ /** Error alert */
2093
+ danger?: boolean;
2094
+ /** Information alert */
2095
+ info?: boolean;
2096
+ /** Rounded cornerns */
2097
+ rounded?: boolean;
2098
+ /** Classnames */
2099
+ className?: string;
2100
+ /** Override with custom CSS */
2101
+ css?: SerializedStyles;
2102
+ /** Renders close button with callback */
2103
+ onClose?: () => void;
2104
+ /** Children */
2105
+ children?: default_2.ReactNode | default_2.ReactNode[];
2106
+ }
2107
+
2108
+ declare interface IProps_60 {
2109
+ /** aria label for the button */
2110
+ 'aria-label'?: string;
2111
+ /** Add a data-tracking-name attribute */
2112
+ trackingName?: string;
2113
+ /** Icon for the button */
2114
+ icon?: default_2.ReactNode;
2115
+ /** Where the tooltip will be placed relative to the button */
2116
+ place?: 'top' | 'left' | 'right' | 'bottom';
2117
+ /** Stops propagation */
2118
+ stopPropagation?: boolean;
2119
+ /** Width of tooltip, use values that can be used in calculations: (calc({width} - 1px)) */
2120
+ width?: string;
2121
+ /** Children */
2122
+ children?: default_2.ReactNode;
2123
+ /** Class names */
2124
+ className?: string;
2125
+ }
2126
+
2127
+ declare interface IProps_61 {
2128
+ /** Children */
2129
+ children?: default_2.ReactNode | default_2.ReactNode[];
2130
+ }
2131
+
2132
+ declare interface IProps_62 extends default_2.HTMLAttributes<HTMLDivElement> {
2133
+ /** Time of comment */
2134
+ time?: string;
2135
+ /** Date of comment */
2136
+ date?: string;
2137
+ /** Comment icon */
2138
+ icon?: default_2.ReactNode;
2139
+ /** Comment header */
2140
+ header?: string;
2141
+ /** Comment text */
2142
+ comment?: string;
2143
+ /** Italic font style to text */
2144
+ italic?: boolean;
2145
+ /** Subtle text */
2146
+ subtle?: boolean;
2147
+ /** Adds extra info to comment */
2148
+ commentInfo?: string;
2149
+ /** Adds custom content under comment text */
2150
+ customContent?: default_2.ReactNode;
2151
+ }
2152
+
2153
+ declare interface IProps_63 {
2154
+ /** Horizontal align */
2155
+ align?: 'left' | 'right' | 'center';
2156
+ /** Column us sortable */
2157
+ sortable?: boolean;
2158
+ /** Sort direction if sortable */
2159
+ sortOrder?: 'asc' | 'desc' | 'none' | null;
2160
+ /** Sort change callback */
2161
+ onSortChange?: (order: string) => void;
2162
+ /** Return value for ascending order, defaults to 'asc' */
2163
+ ascendingReturnValue?: string;
2164
+ /** Return value for descending order, defaults to 'desc' */
2165
+ descendingReturnValue?: string;
2166
+ /** Return value for no sort order, defaults to '' */
2167
+ noSortReturnValue?: string;
2168
+ /** Reverts sortorder rotation */
2169
+ revertOrder?: boolean;
2170
+ /** Children */
2171
+ children?: default_2.ReactNode;
2172
+ }
2173
+
2174
+ declare interface IProps_64 {
2175
+ /** Horizontal align */
2176
+ align?: 'left' | 'right' | 'center' | 'unset';
2177
+ /** Applies a title for mobile view */
2178
+ mobileTitle?: string;
2179
+ /** Applies break-word css */
2180
+ breakWord?: boolean;
2181
+ /** Sets padding-right */
2182
+ pRight?: string;
2183
+ /** Sets padding-left */
2184
+ pLeft?: string;
2185
+ /** Sets a font-size */
2186
+ size?: string;
2187
+ /** Adds text-overflow: ellipsis */
2188
+ ellipsis?: boolean;
2189
+ /** Adds a title tag to rowcell */
2190
+ title?: string;
2191
+ /** Add classname to cell */
2192
+ className?: string;
2193
+ /** Children */
2194
+ children?: default_2.ReactNode;
2195
+ }
2196
+
2197
+ declare interface IProps_65 {
2198
+ /** Children */
2199
+ children?: default_2.ReactNode | default_2.ReactNode[];
2200
+ }
2201
+
2202
+ declare interface IProps_66 {
2203
+ /** Row is expandable */
2204
+ expandable?: boolean;
2205
+ /** Content to be shown if row is expanded */
2206
+ expandableContent?: default_2.ReactNode;
2207
+ /** Row is default expanded */
2208
+ defaultExpanded?: boolean;
2209
+ /** Add a data-tracking-event attribute */
2210
+ trackingEvent?: string;
2211
+ /** Add a data-tracking-name attribute */
2212
+ trackingName?: string;
2213
+ /** On click callback */
2214
+ onClick?: (e: any) => void;
2215
+ /** Children */
2216
+ children?: default_2.ReactNode | default_2.ReactNode[];
2217
+ }
2218
+
2219
+ declare interface IProps_67 {
2220
+ /** column widths, applied as style: grid-template-columns */
2221
+ columns: string;
2222
+ /** Custom breakpoint for table */
2223
+ breakpoint?: string;
2224
+ /** The type of boxed table */
2225
+ type?: 'default' | 'mysite' | 'compact';
2226
+ /** Has checkbox, for mobile view */
2227
+ hasCheckbox?: boolean;
2228
+ /** Children */
2229
+ children?: default_2.ReactNode | default_2.ReactNode[];
2230
+ /** Creates a drag and drop list, returns and id of moved object, old index and new index */
2231
+ onDrop?: (item: IDrop) => void;
2232
+ }
2233
+
2234
+ declare interface IProps_68 {
2235
+ /** Id of draggable item */
2236
+ id: string;
2237
+ /** Index of row item */
2238
+ index: number;
2239
+ /** Children */
2240
+ children: default_2.ReactNode | default_2.ReactNode[];
2241
+ /**Extra react components beneath row */
2242
+ subContent?: default_2.ReactNode | default_2.ReactNode[];
2243
+ /** Boolean to conditionally disable drag */
2244
+ disableDrag?: boolean;
2245
+ }
2246
+
2247
+ declare interface IProps_69 extends default_2.HTMLAttributes<HTMLDivElement> {
2248
+ /** Children */
2249
+ children?: default_2.ReactNode | default_2.ReactNode[];
2250
+ }
2251
+
2252
+ declare interface IProps_7 {
2253
+ /** className override */
2254
+ className?: string;
2255
+ /** Color of line */
2256
+ color?: string;
2257
+ /** Brighter line */
2258
+ subtle?: boolean;
2259
+ /** Margin above and under divider, e.g 1em */
2260
+ margin?: string;
2261
+ /** Thickness of the divider, 5 = 5px, default is 1px. */
2262
+ height?: number;
2263
+ /** Sets divider color to #d7d7d7 */
2264
+ lightGray?: boolean;
2265
+ /** CSS override */
2266
+ css?: SerializedStyles;
2267
+ }
2268
+
2269
+ declare interface IProps_70 extends Omit<HTMLAttributes<HTMLDivElement>, 'content'> {
2270
+ /** Content in clickable header */
2271
+ header: default_2.ReactNode;
2272
+ /** Content in collapsable section */
2273
+ content: default_2.ReactNode;
2274
+ /** Set open initially */
2275
+ initialOpen?: boolean;
2276
+ }
2277
+
2278
+ declare interface IProps_71 extends default_2.HTMLAttributes<HTMLDivElement> {
2279
+ /** Banner header */
2280
+ header?: default_2.ReactNode;
2281
+ /** Success banner */
2282
+ success?: boolean;
2283
+ /** Error banner */
2284
+ danger?: boolean;
2285
+ /** Information banner */
2286
+ info?: boolean;
2287
+ /** Banner content */
2288
+ children?: default_2.ReactNode | default_2.ReactNode[];
2289
+ /** Content to be placed at the right side */
2290
+ actionButton?: default_2.ReactNode;
2291
+ }
2292
+
2293
+ declare interface IProps_72 {
2294
+ month: Date;
2295
+ small?: boolean;
2296
+ events?: IEvent[];
2297
+ }
2298
+
2299
+ declare interface IProps_73 {
2300
+ /** Selected month index number, jan = 0, feb = 1 */
2301
+ selectedMonth?: number;
2302
+ /** Returns month index number, jan = 0, feb = 1 */
2303
+ onMonthClick: (month: number) => void;
2304
+ }
2305
+
2306
+ declare interface IProps_74 {
2307
+ /** Button icon */
2308
+ icon: default_2.ReactNode;
2309
+ /** Adds classnames to menu */
2310
+ className?: string;
2311
+ /** Children */
2312
+ children?: default_2.ReactNode;
2313
+ }
2314
+
2315
+ declare interface IProps_75 {
2316
+ /** Callback fired on menu item click */
2317
+ onClick: () => void;
2318
+ /** Adds a counter behind menu item, example: (2) */
2319
+ counter?: number;
2320
+ /** Children */
2321
+ children?: default_2.ReactNode;
2322
+ }
2323
+
2324
+ declare interface IProps_76 {
2325
+ /** Children */
2326
+ children?: default_2.ReactNode;
2327
+ }
2328
+
2329
+ declare interface IProps_77 {
2330
+ /** Input label */
2331
+ label?: string;
2332
+ /** Default value. */
2333
+ value: string | Date | null;
2334
+ /** Callback fired when the value changes. */
2335
+ onChange: OnChangeType;
2336
+ /** Callback fired on input blur. */
2337
+ onBlur?: () => void;
2338
+ /** Chooses input type, default: 'date' */
2339
+ type?: 'string' | 'date';
2340
+ /** Show seconds, adds extra numbers. */
2341
+ showSeconds?: boolean;
2342
+ /** Divider between numbers, default ':' */
2343
+ divider?: string;
2344
+ /** Set the height of the input, border comes in addition to height */
2345
+ height?: string;
2346
+ /** Set the width of the input, automatically sets to 35px, 54px if the input shows seconds */
2347
+ width?: string;
2348
+ /** Disabled. */
2349
+ disabled?: boolean;
2350
+ /** Sets the defaultValue to --:-- */
2351
+ isNullable?: boolean;
2352
+ /** Override with custom CSS */
2353
+ css?: SerializedStyles;
2354
+ /** Validation on input */
2355
+ validation?: boolean;
2356
+ /** Invalid message */
2357
+ invalidMessage?: string;
2358
+ /** If input field should have auto focus */
2359
+ autoFocus?: boolean;
2360
+ }
2361
+
2362
+ declare interface IProps_78 {
2363
+ /** Title of step */
2364
+ title: string;
2365
+ /** Step description */
2366
+ text: string;
2367
+ /** Step is active */
2368
+ active?: boolean;
2369
+ /** Step is completed */
2370
+ complete?: boolean;
2371
+ }
2372
+
2373
+ declare interface IProps_79 {
2374
+ /** Text to be displayed */
2375
+ text: string;
2376
+ /** Text to be highlighted */
2377
+ highlight?: string;
2378
+ size?: string;
2379
+ semibold?: boolean;
2380
+ }
2381
+
2382
+ declare interface IProps_8 extends default_2.HTMLAttributes<HTMLSpanElement> {
2383
+ /** Button label */
2384
+ label?: string;
2385
+ /** Button before icon ?? */
2386
+ icon?: default_2.ReactNode;
2387
+ /** Button background color */
2388
+ background?: string;
2389
+ /** Dropdown content */
2390
+ children: NonNullable<default_2.ReactNode>;
2391
+ /** Trigger close manually */
2392
+ triggerClose?: boolean;
2393
+ /** Callback after close trigger */
2394
+ onCloseTrigger?: () => void;
2395
+ /** Adds timeout on click outside before close, in miliseconds */
2396
+ clickOutsideTimeout?: number;
2397
+ /** Custom css */
2398
+ css?: SerializedStyles;
2399
+ /** Add classname to dropdown */
2400
+ className?: string;
2401
+ }
2402
+
2403
+ declare interface IProps_80 {
2404
+ /** Children */
2405
+ children?: default_2.ReactNode | default_2.ReactNode[];
2406
+ }
2407
+
2408
+ declare interface IProps_81 {
2409
+ /** Text on tab */
2410
+ text: string;
2411
+ /** Tab icon */
2412
+ icon: default_2.ReactNode;
2413
+ /** Active tab indicator */
2414
+ active: boolean;
2415
+ /** Event fired on click */
2416
+ onClick: () => void;
2417
+ }
2418
+
2419
+ declare interface IProps_82 {
2420
+ /** The source */
2421
+ src?: string;
2422
+ /** Controls defaults to true */
2423
+ controls?: boolean;
2424
+ /** Specify to let an Intersection Observer to auto stop or auto start the player when in the viewport */
2425
+ intersectionObserver?: boolean;
2426
+ /** Override config of the player */
2427
+ config?: Config_2;
2428
+ /** Set play state */
2429
+ playing?: boolean;
2430
+ /** Plays automatically when loaded */
2431
+ autoPlay?: boolean;
2432
+ /** An URL for an image to be shown while the video is downloading */
2433
+ poster?: string;
2434
+ /** Video height, e.g. 100px */
2435
+ height?: string;
2436
+ /** Video width, e.g. 100% */
2437
+ width?: string;
2438
+ /** CSS override */
2439
+ css?: SerializedStyles;
2440
+ /** Pause callback */
2441
+ onPause?: () => void;
2442
+ /** Play callback */
2443
+ onPlay?: () => void;
2444
+ }
2445
+
2446
+ declare interface IProps_83 {
2447
+ /** Text and value that is being used on tab on tab */
2448
+ value: string;
2449
+ /** Overwrites value as displayed text */
2450
+ displayText?: string;
2451
+ /** Add a data-tracking-event attribute. */
2452
+ trackingEvent?: string;
2453
+ /** Add a data-tracking-name attribute. */
2454
+ trackingName?: string;
2455
+ /** Add a classname */
2456
+ className?: string;
2457
+ /** Icon to display at the end the content. */
2458
+ isSelect?: boolean;
2459
+ /** External value for currently selected value */
2460
+ selected?: string;
2461
+ /** Select options */
2462
+ selectItems?: ISelectItem[];
2463
+ }
2464
+
2465
+ declare interface IProps_84 {
2466
+ /** The notice */
2467
+ notice: INotice;
2468
+ /** Ref for attachments div */
2469
+ attachmentsRef?: default_2.MutableRefObject<null>;
2470
+ /** Src of image: */
2471
+ imageSrc?: string;
2472
+ /** Shows the notice in a Modal */
2473
+ isModal?: boolean;
2474
+ /** Show all html content (removes show more / show less) */
2475
+ showAllContent?: boolean;
2476
+ /** CB on close if Modal */
2477
+ onModalClose?: () => void;
2478
+ /** CB on event download */
2479
+ onEventDownload?: () => void;
2480
+ /** CB on file download */
2481
+ onAttachmentDownload?: (attachment: INoticeAttachment) => void;
2482
+ }
2483
+
2484
+ declare interface IProps_85 {
2485
+ /** Amount of pages */
2486
+ totalPageCount?: number;
2487
+ /** Current page number */
2488
+ currentPage?: number;
2489
+ /** CB on first click */
2490
+ onFirstClick?: () => void;
2491
+ /** CB on last click */
2492
+ onLastClick?: (page: number) => void;
2493
+ /** CB on page number click */
2494
+ onPageClick?: (page: number) => void;
2495
+ }
2496
+
2497
+ declare interface IProps_86 {
2498
+ size?: number;
2499
+ margin?: string;
2500
+ color?: string;
2501
+ offsetColor?: string;
2502
+ thickness?: number;
2503
+ }
2504
+
2505
+ declare interface IProps_87 {
2506
+ /** Input label */
2507
+ label?: string;
2508
+ /** Secondary label placed on the top right of the autocomplete */
2509
+ labelSecondary?: ReactNode;
2510
+ /** Autofocus */
2511
+ focus?: boolean;
2512
+ /** Placeholder text */
2513
+ placeholder?: string;
2514
+ /** Default value. */
2515
+ value?: string;
2516
+ /** Disabled. */
2517
+ disabled?: boolean;
2518
+ /** Callback fired when blur. */
2519
+ onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
2520
+ /** Callback fired when focus. */
2521
+ onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
2522
+ /** Callback fired when the value changes. */
2523
+ onChange?: (e: React.ChangeEvent<HTMLInputElement>, reason?: string) => void;
2524
+ /** Children. */
2525
+ children?: ReactNode;
2526
+ /** Include if input field should include debound effect after typing. Specifices delay in ms */
2527
+ debounceDelay?: number;
2528
+ /** Sends up the value from a option click */
2529
+ onSelectItem?: (value: {
2530
+ [x: string]: any;
2531
+ }) => void;
2532
+ /** Callback when using debounce. */
2533
+ onDebounceChange?: (value: string) => void;
2534
+ /** A button instead of standard label, requires to set a label */
2535
+ onLabelClick?: (e: React.MouseEvent) => void;
2536
+ /** Custom on key down handler */
2537
+ onKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
2538
+ /** Specify override styling */
2539
+ css?: SerializedStyles;
2540
+ /** Input name */
2541
+ name?: string;
2542
+ /** Validation on input */
2543
+ validation?: boolean;
2544
+ /** Invalid message */
2545
+ invalidMessage?: string;
2546
+ /** Activates invalid styling for custom external validation */
2547
+ invalid?: boolean;
2548
+ /** Set the height of the input, border comes in addition to height */
2549
+ height?: string;
2550
+ /** Sets a spinner on the input */
2551
+ loading?: boolean;
2552
+ /** Sets actions on the end of the input field */
2553
+ actions?: ReactNode;
2554
+ /** Renders options shown under input */
2555
+ renderOptions?: ReactNode[] | ReactNode;
2556
+ /** Places values dynamically to the input field, defaults to being placed under the input field */
2557
+ dynamicallyPlaceInput?: boolean;
2558
+ /** Renders a custom input list */
2559
+ renderCustomValueInput?: ReactNode;
2560
+ /** Open custom value input when starting to write */
2561
+ openCustomValueInputOnKeyPress?: boolean;
2562
+ /** Values to list out */
2563
+ values?: IValuesProps_2[];
2564
+ /** Gets specific value as label from values property */
2565
+ labelFromValues?: string;
2566
+ /** Gets specific value as key from values property */
2567
+ keyFromValues?: string;
2568
+ /** Max width of the input values */
2569
+ inputValuesMaxWidth?: number;
2570
+ /** Custom open for showing values */
2571
+ isOpen?: boolean;
2572
+ /** Has fuzzy search */
2573
+ fuzzy?: boolean;
2574
+ /** Has clear button */
2575
+ clear?: boolean;
2576
+ /** Has chevron button */
2577
+ chevron?: boolean;
2578
+ }
2579
+
2580
+ declare interface IProps_88 {
2581
+ disabled?: boolean;
2582
+ onClick: (e: any) => void;
2583
+ }
2584
+
2585
+ declare interface IProps_89 {
2586
+ /** The notification amount */
2587
+ amount?: number;
2588
+ /** Renders component, even if amount is 0 or undefined */
2589
+ persist?: boolean;
2590
+ /** Add title property to element */
2591
+ title?: string;
2592
+ }
2593
+
2594
+ declare interface IProps_9 extends default_2.HTMLAttributes<HTMLHeadingElement> {
2595
+ /** Number for header level */
2596
+ level: 1 | 2 | 3 | 4 | 5;
2597
+ /** Gives the text a color */
2598
+ color?: string;
2599
+ /** Gives the text primary color */
2600
+ primary?: boolean;
2601
+ /** Gives the text secondary color */
2602
+ secondary?: boolean;
2603
+ /** Gives the text dark secondary color */
2604
+ dark?: boolean;
2605
+ /** Add classname */
2606
+ className?: string;
2607
+ /** Will override the default size of the tag used */
2608
+ size?: string;
2609
+ /** Children */
2610
+ children?: default_2.ReactNode;
2611
+ /** An id. Useful in combination with aria-labelledby. */
2612
+ id?: string;
2613
+ }
2614
+
2615
+ declare interface IProps_90 {
2616
+ /** Children */
2617
+ children: default_2.ReactNode;
2618
+ /** Title, defaults to "Avansert søk" */
2619
+ title?: string;
2620
+ /** Adds indication that filters are applied */
2621
+ hasFilters?: boolean;
2622
+ /** Submit button text, defaults to "Søk" */
2623
+ submitText?: string;
2624
+ /** Disables submit button */
2625
+ submitDisabled?: boolean;
2626
+ /** Placement of popper element @default bottom */
2627
+ placement?: Placement;
2628
+ /** Custom open button text, changes open button to ouline button */
2629
+ openButtonText?: string;
2630
+ /** Closes the popup when clear button is clicked */
2631
+ closeOnClear?: boolean;
2632
+ /** CB on submit */
2633
+ onSubmit?: () => void;
2634
+ /** CB on clear click */
2635
+ onClear?: () => void;
2636
+ /** CB on manual close, not triggered by submit */
2637
+ onClose?: () => void;
2638
+ }
2639
+
2640
+ declare interface IProps_91 extends TooltipTriggerProps, AriaTooltipProps {
2641
+ /** Component we need this wrapped around */
2642
+ children: default_2.ReactNode;
2643
+ /** Message to show when focusing / hovering */
2644
+ tooltip: string;
2645
+ }
2646
+
2647
+ declare interface IProps_92 {
2648
+ selected: number;
2649
+ steps: IStep[];
2650
+ withBox?: boolean;
2651
+ withMobileLayout?: boolean;
2652
+ bidirectional?: boolean;
2653
+ boxType?: 'mysite' | 'default';
2654
+ onStepSelected: (step: number) => void;
2655
+ trackingName?: string;
2656
+ trackingEvent?: string;
2657
+ }
2658
+
2659
+ export declare function isContrastColorNeeded(bgColor: string): boolean;
2660
+
2661
+ declare interface ISelectItem {
2662
+ /** Id or value that is being */
2663
+ value: string | number;
2664
+ /** Text that is being displayed */
2665
+ displayText: string;
2666
+ /** onClick function for links */
2667
+ onClick?: () => void;
2668
+ /** Indentation for the text from left */
2669
+ indent?: number;
2670
+ /** If the item is disabled */
2671
+ disabled?: boolean;
2672
+ }
2673
+
2674
+ declare interface IStep {
2675
+ nr: number;
2676
+ title: string;
2677
+ subTitle?: string;
2678
+ }
2679
+
2680
+ export declare const isValidAccountNumber: (value?: string, required?: boolean) => boolean;
2681
+
2682
+ declare interface IUnit {
2683
+ id: string;
2684
+ indexNo: number;
2685
+ primaryRoom: number;
2686
+ useArea: number;
2687
+ grossArea: number;
2688
+ numberOfRooms: number;
2689
+ area: string;
2690
+ subArea: string;
2691
+ floor: number;
2692
+ address: string;
2693
+ zipcode: number;
2694
+ city: string;
2695
+ geoLocation: string;
2696
+ propertySectionNumber: string;
2697
+ sectionNo: string;
2698
+ buildingCode: string;
2699
+ buildingType: string;
2700
+ building: {
2701
+ buildingCode: string;
2702
+ buildingType: string;
2703
+ };
2704
+ jointCost: IJointCost[];
2705
+ }
2706
+
2707
+ declare interface IValuesProps {
2708
+ /** The default key name is key */
2709
+ /** The default display name is label */
2710
+ /** When setting any other than label/id as default, use keyName and labelName for this */
2711
+ [x: string]: string;
2712
+ }
2713
+
2714
+ declare interface IValuesProps_2 {
2715
+ /** The default key name is key */
2716
+ /** The default display name is label */
2717
+ /** When setting any other than label/key as default, use labelFromValues and keyFromValues for this */
2718
+ [x: string]: string;
2719
+ }
2720
+
2721
+ /**
2722
+ * Incomplete enum for modifier keys used in onKeyDown and onKeyUp
2723
+ */
2724
+ export declare enum Key {
2725
+ enter = "Enter",
2726
+ tab = "Tab",
2727
+ space = " ",
2728
+ escape = "Escape",
2729
+ shift = "Shift",
2730
+ right = "ArrowRight",
2731
+ left = "ArrowLeft",
2732
+ up = "ArrowUp",
2733
+ down = "ArrowDown"
2734
+ }
2735
+
2736
+ export declare const Layout: default_2.FC<IProps_2>;
2737
+
2738
+ export declare const LayoutShell: default_2.FC<IProps_3>;
2739
+
2740
+ export declare const Link: default_2.FC<IProps_12>;
2741
+
2742
+ export declare const List: default_2.ForwardRefExoticComponent<IProps_13 & default_2.RefAttributes<HTMLElement>>;
2743
+
2744
+ export declare const ListItem: default_2.FC<IProps_14>;
2745
+
2746
+ export declare const ListPager: default_2.FC<IProps_85>;
2747
+
2748
+ declare type ListType = default_2.HTMLAttributes<HTMLUListElement | HTMLOListElement>;
2749
+
2750
+ export declare const MainMenu: default_2.FC<IProps_43>;
2751
+
2752
+ export declare const MediaCarousel: ({ media, autoPlay, objectFit, height, scale, className, radius, withShadow, altText, }: Props_2) => default_2.JSX.Element;
2753
+
2754
+ export declare const Menu: default_2.FC<IProps_41>;
2755
+
2756
+ export declare const MenuItem: default_2.FC<IProps_44>;
2757
+
2758
+ export declare const MenuSpacer: FC<IProps_48>;
2759
+
2760
+ export declare const MenuTop: default_2.FC<IProps_45>;
2761
+
2762
+ export declare function Modal({ open, header, actionButton, width, children, disableOutsideClick, hideCloseButton, disableScroll, disableRefFocus, targetRefs, disableScrollableContent, headerCss, contentCss, disableLocalClose, toggleFullscreen, defaultFullscreen, disableFocusTrap, onClose, onCollapse, onFullscreenToggle, ...restProps }: IProps_32): JSX_2.Element;
2763
+
2764
+ export declare namespace Modal {
2765
+ var Actions: ({ children, className, spaceBetween }: {
2766
+ children: default_2.ReactNode | default_2.ReactNode[];
2767
+ spaceBetween?: boolean;
2768
+ className?: string;
2769
+ }) => default_2.JSX.Element;
2770
+ }
2771
+
2772
+ export declare const NoticeCard: FC<IProps_84>;
2773
+
2774
+ export declare const NotificationCounter: FC<IProps_89>;
2775
+
2776
+ export declare const NotificationRow: ({ title, description, icon, hideBorderBottom, extraInfo, onClick, }: IProps_34) => default_2.JSX.Element;
2777
+
2778
+ export declare const NotificationsMenu: ({ unreadCount, triggerClose, radius, children, animationActive, onBellClick, }: IProps_33) => default_2.JSX.Element;
2779
+
2780
+ declare type OnChangeType = (value: string | Date) => void;
2781
+
2782
+ declare const Option_2: default_2.FC<IProps_29>;
2783
+ export { Option_2 as Option }
2784
+
2785
+ export declare const paddings: {
2786
+ p1: string;
2787
+ p2: string;
2788
+ p3: string;
2789
+ p4: string;
2790
+ p5: string;
2791
+ };
2792
+
2793
+ export declare const PieChart: default_2.FC<IProps_53>;
2794
+
2795
+ export declare const PreemptionCard: default_2.FC<IProps_51>;
2796
+
2797
+ export declare const PreemptionCardLoading: default_2.FC<IProps_52>;
2798
+
2799
+ declare enum PreemptionTypeEnum {
2800
+ Avklaring_FastprisOgTilknyttet = "MANAGED_FIXED_PRICE",
2801
+ Avklaring_FastprisOgFrittstaende = "UNMANAGED_FIXED_PRICE",
2802
+ Avklaring_ForhandsavklaringOgTilknyttet = "MANAGED_ADVANCE_CLARIFICATION",
2803
+ Avklaring_ForhandsavklaringOgFrittstaende = "UNMANAGED_ADVANCE_CLARIFICATION"
2804
+ }
2805
+
2806
+ declare type Props = default_2.HTMLAttributes<ButtonOrLinkTypes> & {
2807
+ /** Icon to display at the end the content. */
2808
+ afterIcon?: default_2.ReactNode;
2809
+ /** Icon to display at the start the content. */
2810
+ beforeIcon?: default_2.ReactNode;
2811
+ /** Content within the button or link. */
2812
+ children: NonNullable<default_2.ReactNode>;
2813
+ /** Whether the element is disabled. */
2814
+ disabled?: boolean;
2815
+ /** Render as an anchor link with a URL. */
2816
+ href?: string;
2817
+ /** Whether the element is loading. */
2818
+ loading?: boolean;
2819
+ /** Callback fired when the element is clicked. */
2820
+ onClick?: (event: default_2.MouseEvent<ButtonOrLinkTypes>) => void;
2821
+ /** Callback fired when the element is released. */
2822
+ onMouseUp?: (event: default_2.MouseEvent<ButtonOrLinkTypes>) => void;
2823
+ /** Keypress handler, to handle any wanted eventlistener button clicks */
2824
+ onCustomKeyPress?: {
2825
+ key: string;
2826
+ action: (event: KeyboardEvent) => void;
2827
+ };
2828
+ onKeyPress?: (event: KeyboardEvent) => void;
2829
+ /** Callback fired when the enter key is released. */
2830
+ onEnterKeyPress?: (event: KeyboardEvent) => void;
2831
+ /** Callback fired when the escape key is released. */
2832
+ onEscapeKeyPress?: (event: KeyboardEvent) => void;
2833
+ /** When a link, open the target in a new window. */
2834
+ openInNewWindow?: boolean;
2835
+ /** Rel attribute override for if the component has an href */
2836
+ rel?: string;
2837
+ /** Add a data-tracking-event attribute. */
2838
+ trackingEvent?: string;
2839
+ /** Add a data-tracking-name attribute. */
2840
+ trackingName?: string;
2841
+ /** When a button, the type of button. */
2842
+ type?: 'button' | 'submit' | 'reset';
2843
+ /** Link target */
2844
+ target?: string;
2845
+ /** Specifies the link as a download link . */
2846
+ download?: any;
2847
+ /** Set tabindex */
2848
+ tabIndex?: number;
2849
+ };
2850
+
2851
+ declare type Props_2 = {
2852
+ /** The media */
2853
+ media: CarouselMedia[];
2854
+ /** Sets autoplay for media that is playable */
2855
+ autoPlay?: boolean;
2856
+ /** If the carousel should have a shadow */
2857
+ withShadow?: boolean;
2858
+ /** The height of the carousel */
2859
+ height?: string;
2860
+ /** Adjust scale for the media */
2861
+ scale?: number;
2862
+ /** Additional classnames of the carousel */
2863
+ className?: string;
2864
+ /** The border radius of the carousel */
2865
+ radius?: string;
2866
+ /** The object fit of the image */
2867
+ objectFit?: 'fill' | 'contain' | 'cover' | 'non' | 'scale-down' | 'initial' | 'inherit';
2868
+ /** Alt text for the image */
2869
+ altText?: string;
2870
+ };
2871
+
2872
+ declare interface Props_3 {
2873
+ /** Default value, e.g. if values from the url */
2874
+ value?: string | number;
2875
+ /** onChange function, sends out the value to handle outside logic */
2876
+ onChange: (value: string | number) => void;
2877
+ /** Vertical alignment, e.g. usage for mobile */
2878
+ vertical?: boolean;
2879
+ /** Changes the color on the ::after element */
2880
+ underlineColor?: string;
2881
+ /** Sets the max width on the underline element */
2882
+ maxWidth?: number;
2883
+ /** Text color */
2884
+ color?: string;
2885
+ /** Alternative css */
2886
+ css?: SerializedStyles;
2887
+ /** Action buttons that will align on the right end of the underline */
2888
+ actions?: ReactNode;
2889
+ /** Add classname */
2890
+ className?: string;
2891
+ /** Breakpoint for showing dropdown */
2892
+ breakpoint?: number;
2893
+ /** Children */
2894
+ children?: default_2.ReactNode;
2895
+ }
2896
+
2897
+ declare type Props_4 = ImageUploadingPropsType & {
2898
+ /** Images */
2899
+ value?: Array<{
2900
+ imageUrl: string;
2901
+ } & ImageType>;
2902
+ /** Can add multiple images @default true */
2903
+ multiple?: boolean;
2904
+ /** Change event */
2905
+ onChange: (value: ImageListType) => void;
2906
+ };
2907
+
2908
+ declare type Props_5 = {
2909
+ /** Image src's */
2910
+ images: string[];
2911
+ /** Image list index to display initially, defaults to 0 */
2912
+ initialImage: number;
2913
+ /** On close callback */
2914
+ onClose: () => void;
2915
+ };
2916
+
2917
+ export declare const QuillEditor: React.FC<QuillEditorProps>;
2918
+
2919
+ declare interface QuillEditorProps {
2920
+ height?: string;
2921
+ width?: string;
2922
+ minHeight?: string;
2923
+ maxHeight?: string;
2924
+ minWidth?: string;
2925
+ maxWidth?: string;
2926
+ label?: string;
2927
+ disabled?: boolean;
2928
+ placeholder?: string;
2929
+ initialValue?: string;
2930
+ overrideValue?: string;
2931
+ readOnly?: boolean;
2932
+ pasteAsText?: boolean;
2933
+ type?: 'basic' | 'rich' | 'full' | 'custom';
2934
+ customModules?: {
2935
+ toolbar?: QuillToolbarConfig[];
2936
+ };
2937
+ resize?: boolean | 'both';
2938
+ formats?: string[];
2939
+ bounds?: string | HTMLElement;
2940
+ onChange?: (content: string, length: number) => void;
2941
+ onFocus?: (html: string) => void;
2942
+ onBlur?: (html: string) => void;
2943
+ invalidMessage?: string;
2944
+ style?: React.CSSProperties;
2945
+ maxlenght?: number;
2946
+ wordCount?: boolean;
2947
+ resizable?: boolean;
2948
+ className?: string;
2949
+ }
2950
+
2951
+ declare interface QuillToolbarConfig {
2952
+ bold?: boolean;
2953
+ italic?: boolean;
2954
+ underline?: boolean;
2955
+ strike?: boolean;
2956
+ blockquote?: boolean;
2957
+ 'code-block'?: boolean;
2958
+ header?: boolean | number | number[] | {
2959
+ [key: string]: string;
2960
+ };
2961
+ list?: {
2962
+ ordered?: boolean;
2963
+ bullet?: boolean;
2964
+ };
2965
+ script?: {
2966
+ sub?: boolean;
2967
+ super?: boolean;
2968
+ };
2969
+ indent?: {
2970
+ '+1'?: boolean;
2971
+ '-1'?: boolean;
2972
+ };
2973
+ direction?: {
2974
+ rtl?: boolean;
2975
+ };
2976
+ size?: boolean | string[] | {
2977
+ [key: string]: string;
2978
+ };
2979
+ color?: boolean | string[];
2980
+ background?: boolean | string[];
2981
+ font?: boolean | string[];
2982
+ align?: boolean | string[] | {
2983
+ [key: string]: string;
2984
+ };
2985
+ clean?: boolean;
2986
+ link?: boolean;
2987
+ image?: boolean;
2988
+ video?: boolean;
2989
+ }
2990
+
2991
+ export declare const Radio: default_2.FC<IProps_23>;
2992
+
2993
+ export declare const regex: {
2994
+ phonenumber: RegExp;
2995
+ mobilenumber: RegExp;
2996
+ exclusiveNumbers: RegExp;
2997
+ date: RegExp;
2998
+ email: RegExp;
2999
+ year: RegExp;
3000
+ url: RegExp;
3001
+ };
3002
+
3003
+ export declare const Row: default_2.FC<IProps_37>;
3004
+
3005
+ export declare const RowCell: default_2.FC<IProps_64>;
3006
+
3007
+ export declare const SearchFilter: default_2.FC<IProps_90>;
3008
+
3009
+ export declare const SearchSelect: default_2.FC<IProps_28>;
3010
+
3011
+ export declare const SecondaryMenu: default_2.FC<IProps_46>;
3012
+
3013
+ export declare const SecondaryMenuItem: default_2.FC<IProps_47>;
3014
+
3015
+ export declare const Select: default_2.FC<IProps_27>;
3016
+
3017
+ export declare const SimpleBarChart: default_2.FC<IProps_54>;
3018
+
3019
+ export declare const SimpleLineChart: default_2.FC<IProps_55>;
3020
+
3021
+ export declare const Skeleton: default_2.FC<IProps_24>;
3022
+
3023
+ export declare const Spinner: default_2.FC<IProps_86>;
3024
+
3025
+ export declare const Stepper: default_2.FC<IProps_92>;
3026
+
3027
+ declare namespace styles {
3028
+ export {
3029
+ defaultOutline
3030
+ }
3031
+ }
3032
+ export { styles }
3033
+
3034
+ export declare const Submenu: default_2.FC<IProps_49>;
3035
+
3036
+ export declare const SubmenuItem: default_2.FC<IProps_50>;
3037
+
3038
+ export declare const TabBar: default_2.FC<IProps_80>;
3039
+
3040
+ export declare const TabItem: default_2.FC<IProps_81>;
3041
+
3042
+ export declare function Table(props: IProps_35): JSX.Element;
3043
+
3044
+ export declare namespace Table {
3045
+ var Cell: default_2.FC<IProps_36>;
3046
+ var Row: default_2.FC<IProps_37>;
3047
+ }
3048
+
3049
+ export declare const TableHeader: default_2.FC<IProps_65>;
3050
+
3051
+ export declare const TableRow: default_2.FC<IProps_66>;
3052
+
3053
+ export declare const TabNav: default_2.FC<Props_3>;
3054
+
3055
+ export declare const TabNavItem: default_2.FC<IProps_83>;
3056
+
3057
+ export declare const Tag: default_2.FC<IProps_15>;
3058
+
3059
+ declare const Text_2: default_2.FC<IProps_16>;
3060
+ export { Text_2 as Text }
3061
+
3062
+ export declare const Textarea: default_2.FC<IProps_59>;
3063
+
3064
+ export declare const Timeline: default_2.FC<IProps_76>;
3065
+
3066
+ export declare const TimelineStep: default_2.FC<IProps_78>;
3067
+
3068
+ export declare const Timepicker: default_2.ForwardRefExoticComponent<IProps_77 & default_2.RefAttributes<HTMLInputElement>>;
3069
+
3070
+ export declare const Tooltip: default_2.FC<IProps_91>;
3071
+
3072
+ export declare const Topbar: default_2.FC<IProps>;
3073
+
3074
+ export declare const useIsMobile: (width?: number) => boolean;
3075
+
3076
+ export declare const UserMenu: default_2.FC<IProps_30>;
3077
+
3078
+ export declare const UserMenuOption: default_2.FC<IProps_31>;
3079
+
3080
+ export declare const useScreenOrientation: () => "portrait-primary" | "landscape-primary" | "landscape-secondary" | "portrait-secondary";
3081
+
3082
+ export declare const Video: React.FC<IProps_82>;
3083
+
3084
+ /**
3085
+ * Used with aria-describedby to hide text visually, but not from screen readers
3086
+ * @link https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
3087
+ **/
3088
+ export declare const VisuallyHidden: StyledComponent< {
3089
+ theme?: Theme;
3090
+ as?: React.ElementType;
3091
+ }, DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3092
+
3093
+ declare type WithIconWrapperProps = {
3094
+ /** Accessibility label. Required if `decorative` not defined. */
3095
+ accessibilityLabel?: string;
3096
+ /** Mark as decorative only and avoid accessibility. Required if `accessibilityLabel` not defined. */
3097
+ decorative?: boolean;
3098
+ /** Flip the icon on the horizontal axis. */
3099
+ flip?: boolean;
3100
+ /** Flip the icon on the vertical axis. */
3101
+ flipVertical?: boolean;
3102
+ /** Size of the icon. */
3103
+ size?: number | string;
3104
+ /** Color the icon using a CSS hexcode. */
3105
+ color?: string;
3106
+ /** Render as inline instead of block. */
3107
+ inline?: boolean;
3108
+ /** Default primary color */
3109
+ primary?: boolean;
3110
+ /** Default secondary color */
3111
+ secondary?: boolean;
3112
+ /** For title in story */
3113
+ name?: string;
3114
+ /** Will place a background color */
3115
+ backgrounded?: boolean;
3116
+ };
3117
+
3118
+ declare type WithIllustrationWrapperProps = {
3119
+ /** Accessibility label. Required if `decorative` not defined. */
3120
+ accessibilityLabel?: string;
3121
+ /** Mark as decorative only and avoid accessibility. Required if `accessibilityLabel` not defined. */
3122
+ decorative?: boolean;
3123
+ /** Flip the icon on the horizontal axis. */
3124
+ flip?: boolean;
3125
+ /** Flip the icon on the vertical axis. */
3126
+ flipVertical?: boolean;
3127
+ /** Should add background. */
3128
+ withBackground?: boolean;
3129
+ /** SVG width */
3130
+ width?: string;
3131
+ /** SVG height */
3132
+ height?: string;
3133
+ };
3134
+
3135
+ export declare const YearWheel: default_2.FC<IProps_73>;
3136
+
3137
+ export { }
3138
+
3139
+
3140
+
3141
+ declare module '@emotion/react' {
3142
+ export interface Theme extends IAppTheme {}
3143
+ }