@worknice/whiteboard 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (564) hide show
  1. package/dist/controls/Action.d.ts +7 -0
  2. package/dist/controls/Action.js +81 -0
  3. package/dist/controls/Button.d.ts +22 -0
  4. package/dist/controls/Button.js +61 -0
  5. package/dist/controls/Button.module.js +9 -0
  6. package/dist/controls/ButtonCard.d.ts +7 -0
  7. package/dist/controls/ButtonCard.js +43 -0
  8. package/dist/controls/ButtonCard.module.js +7 -0
  9. package/dist/controls/ButtonCard_module.css +31 -0
  10. package/dist/controls/ButtonLink.d.ts +15 -0
  11. package/dist/controls/ButtonLink.js +48 -0
  12. package/dist/controls/ButtonLink.module.js +9 -0
  13. package/dist/controls/ButtonLink_module.css +68 -0
  14. package/dist/controls/Button_module.css +86 -0
  15. package/dist/controls/Disclosure.d.ts +7 -0
  16. package/dist/controls/Disclosure.js +27 -0
  17. package/dist/controls/Link.d.ts +14 -0
  18. package/dist/controls/Link.js +35 -0
  19. package/dist/controls/Link.module.js +5 -0
  20. package/dist/controls/LinkCard.d.ts +7 -0
  21. package/dist/controls/LinkCard.js +26 -0
  22. package/dist/controls/LinkCard.module.js +6 -0
  23. package/dist/controls/LinkCard_module.css +22 -0
  24. package/dist/controls/Link_module.css +19 -0
  25. package/dist/controls/MenuButton.d.ts +31 -0
  26. package/dist/controls/MenuButton.js +216 -0
  27. package/dist/controls/MenuButton.module.js +10 -0
  28. package/dist/controls/MenuButton_module.css +78 -0
  29. package/dist/controls/PageTabSet.d.ts +11 -0
  30. package/dist/controls/PageTabSet.js +26 -0
  31. package/dist/controls/PageTabSet.module.js +7 -0
  32. package/dist/controls/PageTabSet_module.css +32 -0
  33. package/dist/controls/Sortable.d.ts +11 -0
  34. package/dist/controls/Sortable.js +27 -0
  35. package/dist/controls/SortableItem.d.ts +8 -0
  36. package/dist/controls/SortableItem.js +42 -0
  37. package/dist/controls/SortableItem.module.js +9 -0
  38. package/dist/controls/SortableItem_module.css +46 -0
  39. package/dist/controls/TabSet.d.ts +12 -0
  40. package/dist/controls/TabSet.js +26 -0
  41. package/dist/controls/TabSet.module.js +7 -0
  42. package/dist/controls/TabSetLink.d.ts +12 -0
  43. package/dist/controls/TabSetLink.js +24 -0
  44. package/dist/controls/TabSetLink.module.js +7 -0
  45. package/dist/controls/TabSetLink_module.css +41 -0
  46. package/dist/controls/TabSet_module.css +39 -0
  47. package/dist/email/EmailBodyText.d.ts +5 -0
  48. package/dist/email/EmailBodyText.js +12 -0
  49. package/dist/email/EmailButton.d.ts +6 -0
  50. package/dist/email/EmailButton.js +19 -0
  51. package/dist/email/EmailFooterText.d.ts +5 -0
  52. package/dist/email/EmailFooterText.js +12 -0
  53. package/dist/email/EmailLayout.d.ts +10 -0
  54. package/dist/email/EmailLayout.js +41 -0
  55. package/dist/fields/BooleanField.d.ts +15 -0
  56. package/dist/fields/BooleanField.js +19 -0
  57. package/dist/fields/ColorPickerField.d.ts +18 -0
  58. package/dist/fields/ColorPickerField.js +18 -0
  59. package/dist/fields/DateField.d.ts +18 -0
  60. package/dist/fields/DateField.js +22 -0
  61. package/dist/fields/DateTimeField.d.ts +16 -0
  62. package/dist/fields/DateTimeField.js +20 -0
  63. package/dist/fields/FileField.d.ts +12 -0
  64. package/dist/fields/FileField.js +18 -0
  65. package/dist/fields/ListBoxField.d.ts +21 -0
  66. package/dist/fields/ListBoxField.js +24 -0
  67. package/dist/fields/MarkdownField.d.ts +17 -0
  68. package/dist/fields/MarkdownField.js +36 -0
  69. package/dist/fields/NumberField.d.ts +12 -0
  70. package/dist/fields/NumberField.js +23 -0
  71. package/dist/fields/PasswordField.d.ts +15 -0
  72. package/dist/fields/PasswordField.js +63 -0
  73. package/dist/fields/PasswordField.module.js +14 -0
  74. package/dist/fields/PasswordField_module.css +47 -0
  75. package/dist/fields/RadioSetField.d.ts +22 -0
  76. package/dist/fields/RadioSetField.js +43 -0
  77. package/dist/fields/RadioSetField.module.js +6 -0
  78. package/dist/fields/RadioSetField_module.css +15 -0
  79. package/dist/fields/SelectField.d.ts +20 -0
  80. package/dist/fields/SelectField.js +24 -0
  81. package/dist/fields/SimpleRadioSetField.d.ts +15 -0
  82. package/dist/fields/SimpleRadioSetField.js +13 -0
  83. package/dist/fields/SingleSelectComboboxField.d.ts +25 -0
  84. package/dist/fields/SingleSelectComboboxField.js +28 -0
  85. package/dist/fields/StringField.d.ts +12 -0
  86. package/dist/fields/StringField.js +25 -0
  87. package/dist/fields/TextField.d.ts +17 -0
  88. package/dist/fields/TextField.js +21 -0
  89. package/dist/fields/TimeField.d.ts +12 -0
  90. package/dist/fields/TimeField.js +21 -0
  91. package/dist/forms/FormButtonSet.d.ts +14 -0
  92. package/dist/forms/FormButtonSet.js +31 -0
  93. package/dist/forms/FormButtonSet.module.js +5 -0
  94. package/dist/forms/FormButtonSet_module.css +12 -0
  95. package/dist/forms/FormError.d.ts +6 -0
  96. package/dist/forms/FormError.js +10 -0
  97. package/dist/forms/FormErrorList.d.ts +8 -0
  98. package/dist/forms/FormErrorList.js +22 -0
  99. package/dist/forms/FormErrorList.module.js +6 -0
  100. package/dist/forms/FormErrorList_module.css +12 -0
  101. package/dist/forms/FormStatusIndicator.d.ts +8 -0
  102. package/dist/forms/FormStatusIndicator.js +40 -0
  103. package/dist/forms/FormStatusIndicator.module.js +8 -0
  104. package/dist/forms/FormStatusIndicator_module.css +18 -0
  105. package/dist/forms/RegularField.d.ts +14 -0
  106. package/dist/forms/RegularField.js +47 -0
  107. package/dist/forms/RegularField.module.js +14 -0
  108. package/dist/forms/RegularField_module.css +47 -0
  109. package/dist/forms/ToggleField.d.ts +13 -0
  110. package/dist/forms/ToggleField.js +39 -0
  111. package/dist/forms/ToggleField.module.js +9 -0
  112. package/dist/forms/ToggleField_module.css +30 -0
  113. package/dist/forms/_types.d.ts +17 -0
  114. package/dist/forms/_types.js +0 -0
  115. package/dist/forms/useForm.d.ts +54 -0
  116. package/dist/forms/useForm.js +107 -0
  117. package/dist/hud/ChevronIcon.d.ts +2 -0
  118. package/dist/hud/ChevronIcon.js +13 -0
  119. package/dist/hud/NavItem.d.ts +10 -0
  120. package/dist/hud/NavItem.js +27 -0
  121. package/dist/hud/NavItem.module.js +7 -0
  122. package/dist/hud/NavItemChild.d.ts +8 -0
  123. package/dist/hud/NavItemChild.js +20 -0
  124. package/dist/hud/NavItemChild.module.js +6 -0
  125. package/dist/hud/NavItemChild_module.css +20 -0
  126. package/dist/hud/NavItem_module.css +26 -0
  127. package/dist/hud/NavSection.d.ts +12 -0
  128. package/dist/hud/NavSection.js +48 -0
  129. package/dist/hud/NavSection.module.js +11 -0
  130. package/dist/hud/NavSection_module.css +44 -0
  131. package/dist/hud/NavTitle.d.ts +8 -0
  132. package/dist/hud/NavTitle.js +43 -0
  133. package/dist/hud/NavTitle.module.js +6 -0
  134. package/dist/hud/NavTitle_module.css +30 -0
  135. package/dist/hud/SidebarIcon.d.ts +2 -0
  136. package/dist/hud/SidebarIcon.js +13 -0
  137. package/dist/hud/ToolbarButton.d.ts +12 -0
  138. package/dist/hud/ToolbarButton.js +23 -0
  139. package/dist/hud/ToolbarButton.module.js +6 -0
  140. package/dist/hud/ToolbarButton_module.css +24 -0
  141. package/dist/icons/AppsIcon.d.ts +3 -0
  142. package/dist/icons/AppsIcon.js +11 -0
  143. package/dist/icons/ArchiveIcon.d.ts +3 -0
  144. package/dist/icons/ArchiveIcon.js +11 -0
  145. package/dist/icons/ArrowLeftIcon.d.ts +3 -0
  146. package/dist/icons/ArrowLeftIcon.js +11 -0
  147. package/dist/icons/ArrowRightIcon.d.ts +3 -0
  148. package/dist/icons/ArrowRightIcon.js +11 -0
  149. package/dist/icons/AssignIcon.d.ts +3 -0
  150. package/dist/icons/AssignIcon.js +13 -0
  151. package/dist/icons/BankAccountIcon.d.ts +3 -0
  152. package/dist/icons/BankAccountIcon.js +11 -0
  153. package/dist/icons/CalendarIcon.d.ts +3 -0
  154. package/dist/icons/CalendarIcon.js +11 -0
  155. package/dist/icons/CancelIcon.d.ts +3 -0
  156. package/dist/icons/CancelIcon.js +11 -0
  157. package/dist/icons/CaratDownIcon.d.ts +3 -0
  158. package/dist/icons/CaratDownIcon.js +11 -0
  159. package/dist/icons/CaratLeftIcon.d.ts +3 -0
  160. package/dist/icons/CaratLeftIcon.js +11 -0
  161. package/dist/icons/CaratRightIcon.d.ts +3 -0
  162. package/dist/icons/CaratRightIcon.js +11 -0
  163. package/dist/icons/CaratUpIcon.d.ts +3 -0
  164. package/dist/icons/CaratUpIcon.js +11 -0
  165. package/dist/icons/CheckmarkIcon.d.ts +3 -0
  166. package/dist/icons/CheckmarkIcon.js +11 -0
  167. package/dist/icons/ChevronDownIcon.d.ts +3 -0
  168. package/dist/icons/ChevronDownIcon.js +11 -0
  169. package/dist/icons/ChevronLeftIcon.d.ts +3 -0
  170. package/dist/icons/ChevronLeftIcon.js +11 -0
  171. package/dist/icons/ChevronRightIcon.d.ts +3 -0
  172. package/dist/icons/ChevronRightIcon.js +11 -0
  173. package/dist/icons/ChevronUpIcon.d.ts +3 -0
  174. package/dist/icons/ChevronUpIcon.js +11 -0
  175. package/dist/icons/CloseIcon.d.ts +3 -0
  176. package/dist/icons/CloseIcon.js +11 -0
  177. package/dist/icons/CopyIcon.d.ts +3 -0
  178. package/dist/icons/CopyIcon.js +14 -0
  179. package/dist/icons/DashIcon.d.ts +3 -0
  180. package/dist/icons/DashIcon.js +11 -0
  181. package/dist/icons/DeleteIcon.d.ts +3 -0
  182. package/dist/icons/DeleteIcon.js +11 -0
  183. package/dist/icons/EditIcon.d.ts +3 -0
  184. package/dist/icons/EditIcon.js +11 -0
  185. package/dist/icons/EmailIcon.d.ts +3 -0
  186. package/dist/icons/EmailIcon.js +11 -0
  187. package/dist/icons/EmergencyContactIcon.d.ts +3 -0
  188. package/dist/icons/EmergencyContactIcon.js +11 -0
  189. package/dist/icons/ExternalIcon.d.ts +3 -0
  190. package/dist/icons/ExternalIcon.js +14 -0
  191. package/dist/icons/GripLinesIcon.d.ts +3 -0
  192. package/dist/icons/GripLinesIcon.js +11 -0
  193. package/dist/icons/HelpIcon.d.ts +3 -0
  194. package/dist/icons/HelpIcon.js +11 -0
  195. package/dist/icons/HiddenIcon.d.ts +3 -0
  196. package/dist/icons/HiddenIcon.js +11 -0
  197. package/dist/icons/InboxIcon.d.ts +3 -0
  198. package/dist/icons/InboxIcon.js +11 -0
  199. package/dist/icons/InsightsIcon.d.ts +3 -0
  200. package/dist/icons/InsightsIcon.js +11 -0
  201. package/dist/icons/JobIcon.d.ts +3 -0
  202. package/dist/icons/JobIcon.js +11 -0
  203. package/dist/icons/LeaveIcon.d.ts +3 -0
  204. package/dist/icons/LeaveIcon.js +11 -0
  205. package/dist/icons/LoadingIcon.d.ts +4 -0
  206. package/dist/icons/LoadingIcon.js +22 -0
  207. package/dist/icons/LogoutIcon.d.ts +3 -0
  208. package/dist/icons/LogoutIcon.js +11 -0
  209. package/dist/icons/MicrosoftIcon.d.ts +3 -0
  210. package/dist/icons/MicrosoftIcon.js +26 -0
  211. package/dist/icons/MinusIcon.d.ts +3 -0
  212. package/dist/icons/MinusIcon.js +11 -0
  213. package/dist/icons/OverflowIcon.d.ts +3 -0
  214. package/dist/icons/OverflowIcon.js +11 -0
  215. package/dist/icons/PaperworkIcon.d.ts +3 -0
  216. package/dist/icons/PaperworkIcon.js +11 -0
  217. package/dist/icons/PeopleIcon.d.ts +3 -0
  218. package/dist/icons/PeopleIcon.js +11 -0
  219. package/dist/icons/PhoneIcon.d.ts +3 -0
  220. package/dist/icons/PhoneIcon.js +11 -0
  221. package/dist/icons/PlusIcon.d.ts +3 -0
  222. package/dist/icons/PlusIcon.js +11 -0
  223. package/dist/icons/PositionsIcon.d.ts +3 -0
  224. package/dist/icons/PositionsIcon.js +11 -0
  225. package/dist/icons/ProfileFemaleIcon.d.ts +3 -0
  226. package/dist/icons/ProfileFemaleIcon.js +11 -0
  227. package/dist/icons/ProfileIcon.d.ts +3 -0
  228. package/dist/icons/ProfileIcon.js +11 -0
  229. package/dist/icons/ProfileMaleIcon.d.ts +3 -0
  230. package/dist/icons/ProfileMaleIcon.js +11 -0
  231. package/dist/icons/RemunerationIcon.d.ts +3 -0
  232. package/dist/icons/RemunerationIcon.js +11 -0
  233. package/dist/icons/RescheduleIcon.d.ts +3 -0
  234. package/dist/icons/RescheduleIcon.js +13 -0
  235. package/dist/icons/RestoreIcon.d.ts +3 -0
  236. package/dist/icons/RestoreIcon.js +13 -0
  237. package/dist/icons/ReviewIcon.d.ts +3 -0
  238. package/dist/icons/ReviewIcon.js +11 -0
  239. package/dist/icons/ScheduleIcon.d.ts +3 -0
  240. package/dist/icons/ScheduleIcon.js +13 -0
  241. package/dist/icons/SettingsIcon.d.ts +3 -0
  242. package/dist/icons/SettingsIcon.js +11 -0
  243. package/dist/icons/SidebarIcon.d.ts +3 -0
  244. package/dist/icons/SidebarIcon.js +11 -0
  245. package/dist/icons/SortAscIcon.d.ts +3 -0
  246. package/dist/icons/SortAscIcon.js +11 -0
  247. package/dist/icons/SortDefaultIcon.d.ts +3 -0
  248. package/dist/icons/SortDefaultIcon.js +11 -0
  249. package/dist/icons/SortDesIcon.d.ts +3 -0
  250. package/dist/icons/SortDesIcon.js +11 -0
  251. package/dist/icons/StepsCompleteIcon.d.ts +3 -0
  252. package/dist/icons/StepsCompleteIcon.js +11 -0
  253. package/dist/icons/StepsCurrentIcon.d.ts +3 -0
  254. package/dist/icons/StepsCurrentIcon.js +11 -0
  255. package/dist/icons/StepsIncompleteIcon.d.ts +3 -0
  256. package/dist/icons/StepsIncompleteIcon.js +11 -0
  257. package/dist/icons/SubmitIcon.d.ts +3 -0
  258. package/dist/icons/SubmitIcon.js +13 -0
  259. package/dist/icons/SuccessIcon.d.ts +3 -0
  260. package/dist/icons/SuccessIcon.js +13 -0
  261. package/dist/icons/SuperFundIcon.d.ts +3 -0
  262. package/dist/icons/SuperFundIcon.js +11 -0
  263. package/dist/icons/SyncIcon.d.ts +3 -0
  264. package/dist/icons/SyncIcon.js +11 -0
  265. package/dist/icons/TaskIcon.d.ts +3 -0
  266. package/dist/icons/TaskIcon.js +11 -0
  267. package/dist/icons/TaxIcon.d.ts +3 -0
  268. package/dist/icons/TaxIcon.js +11 -0
  269. package/dist/icons/TenureIcon.d.ts +3 -0
  270. package/dist/icons/TenureIcon.js +11 -0
  271. package/dist/icons/VisibleIcon.d.ts +3 -0
  272. package/dist/icons/VisibleIcon.js +11 -0
  273. package/dist/icons/WarningIcon.d.ts +3 -0
  274. package/dist/icons/WarningIcon.js +12 -0
  275. package/dist/icons/_types.d.ts +4 -0
  276. package/dist/icons/_types.js +0 -0
  277. package/dist/icons/index.d.ts +67 -0
  278. package/dist/icons/index.js +68 -0
  279. package/dist/index.d.ts +1 -0
  280. package/dist/index.js +0 -0
  281. package/dist/inputs/CheckboxInput.d.ts +12 -0
  282. package/dist/inputs/CheckboxInput.js +48 -0
  283. package/dist/inputs/CheckboxInput.module.js +6 -0
  284. package/dist/inputs/CheckboxInput_module.css +32 -0
  285. package/dist/inputs/ColorPickerInput.d.ts +8 -0
  286. package/dist/inputs/ColorPickerInput.js +36 -0
  287. package/dist/inputs/ColorPickerInput.module.js +15 -0
  288. package/dist/inputs/ColorPickerInput_module.css +99 -0
  289. package/dist/inputs/DateInput.d.ts +19 -0
  290. package/dist/inputs/DateInput.js +43 -0
  291. package/dist/inputs/DateInput.module.js +10 -0
  292. package/dist/inputs/DateInput_module.css +60 -0
  293. package/dist/inputs/DateTimeInput.d.ts +17 -0
  294. package/dist/inputs/DateTimeInput.js +34 -0
  295. package/dist/inputs/DateTimeInput.module.js +5 -0
  296. package/dist/inputs/DateTimeInput_module.css +27 -0
  297. package/dist/inputs/FileInput.d.ts +7 -0
  298. package/dist/inputs/FileInput.js +12 -0
  299. package/dist/inputs/ListBoxInput.d.ts +14 -0
  300. package/dist/inputs/ListBoxInput.js +66 -0
  301. package/dist/inputs/ListBoxInput.module.js +10 -0
  302. package/dist/inputs/ListBoxInput_module.css +44 -0
  303. package/dist/inputs/MarkdownInput.d.ts +11 -0
  304. package/dist/inputs/MarkdownInput.js +35 -0
  305. package/dist/inputs/MarkdownInput.module.js +5 -0
  306. package/dist/inputs/MarkdownInput_module.css +27 -0
  307. package/dist/inputs/NumberInput.d.ts +13 -0
  308. package/dist/inputs/NumberInput.js +44 -0
  309. package/dist/inputs/NumberInput.module.js +10 -0
  310. package/dist/inputs/NumberInput_module.css +59 -0
  311. package/dist/inputs/RadioInput.d.ts +9 -0
  312. package/dist/inputs/RadioInput.js +34 -0
  313. package/dist/inputs/RadioInput.module.js +6 -0
  314. package/dist/inputs/RadioInput_module.css +31 -0
  315. package/dist/inputs/SelectInput.d.ts +14 -0
  316. package/dist/inputs/SelectInput.js +130 -0
  317. package/dist/inputs/SelectInput.module.js +10 -0
  318. package/dist/inputs/SelectInput_module.css +63 -0
  319. package/dist/inputs/SingleSelectComboboxInput.d.ts +19 -0
  320. package/dist/inputs/SingleSelectComboboxInput.js +179 -0
  321. package/dist/inputs/SingleSelectComboboxInput.module.js +12 -0
  322. package/dist/inputs/SingleSelectComboboxInput_module.css +73 -0
  323. package/dist/inputs/StringInput.d.ts +15 -0
  324. package/dist/inputs/StringInput.js +51 -0
  325. package/dist/inputs/StringInput.module.js +10 -0
  326. package/dist/inputs/StringInput_module.css +59 -0
  327. package/dist/inputs/TextInput.d.ts +13 -0
  328. package/dist/inputs/TextInput.js +51 -0
  329. package/dist/inputs/TextInput.module.js +10 -0
  330. package/dist/inputs/TextInput_module.css +59 -0
  331. package/dist/inputs/TimeInput.d.ts +11 -0
  332. package/dist/inputs/TimeInput.js +26 -0
  333. package/dist/inputs/TimeInput.module.js +5 -0
  334. package/dist/inputs/TimeInput_module.css +33 -0
  335. package/dist/layouts/BaseLayout.d.ts +7 -0
  336. package/dist/layouts/BaseLayout.js +15 -0
  337. package/dist/layouts/FullLayout.d.ts +19 -0
  338. package/dist/layouts/FullLayout.js +152 -0
  339. package/dist/layouts/FullLayout.module.js +24 -0
  340. package/dist/layouts/FullLayout_module.css +257 -0
  341. package/dist/layouts/MinimalLayout.d.ts +12 -0
  342. package/dist/layouts/MinimalLayout.js +34 -0
  343. package/dist/layouts/MinimalLayout.module.js +6 -0
  344. package/dist/layouts/MinimalLayout_module.css +25 -0
  345. package/dist/presentation/ActionSet.d.ts +13 -0
  346. package/dist/presentation/ActionSet.js +13 -0
  347. package/dist/presentation/ActionSet.module.js +5 -0
  348. package/dist/presentation/ActionSet_module.css +7 -0
  349. package/dist/presentation/Avatar.d.ts +8 -0
  350. package/dist/presentation/Avatar.js +27 -0
  351. package/dist/presentation/Avatar.module.js +5 -0
  352. package/dist/presentation/Avatar_module.css +10 -0
  353. package/dist/presentation/Badge.d.ts +8 -0
  354. package/dist/presentation/Badge.js +20 -0
  355. package/dist/presentation/Badge.module.js +14 -0
  356. package/dist/presentation/BadgeSet.d.ts +15 -0
  357. package/dist/presentation/BadgeSet.js +18 -0
  358. package/dist/presentation/BadgeSet.module.js +7 -0
  359. package/dist/presentation/BadgeSet_module.css +15 -0
  360. package/dist/presentation/Badge_module.css +53 -0
  361. package/dist/presentation/Banner.d.ts +11 -0
  362. package/dist/presentation/Banner.js +33 -0
  363. package/dist/presentation/Banner.module.js +12 -0
  364. package/dist/presentation/Banner_module.css +54 -0
  365. package/dist/presentation/ButtonSet.d.ts +11 -0
  366. package/dist/presentation/ButtonSet.js +21 -0
  367. package/dist/presentation/ButtonsSet.module.js +6 -0
  368. package/dist/presentation/ButtonsSet_module.css +10 -0
  369. package/dist/presentation/Card.d.ts +17 -0
  370. package/dist/presentation/Card.js +38 -0
  371. package/dist/presentation/Card.module.js +9 -0
  372. package/dist/presentation/CardContent.d.ts +7 -0
  373. package/dist/presentation/CardContent.js +12 -0
  374. package/dist/presentation/CardContent.module.js +5 -0
  375. package/dist/presentation/CardContent_module.css +4 -0
  376. package/dist/presentation/Card_module.css +32 -0
  377. package/dist/presentation/Columns.d.ts +8 -0
  378. package/dist/presentation/Columns.js +16 -0
  379. package/dist/presentation/Columns.module.js +7 -0
  380. package/dist/presentation/Columns_module.css +19 -0
  381. package/dist/presentation/ConfirmationModal.d.ts +13 -0
  382. package/dist/presentation/ConfirmationModal.js +61 -0
  383. package/dist/presentation/DefinitionList.d.ts +10 -0
  384. package/dist/presentation/DefinitionList.js +22 -0
  385. package/dist/presentation/DefinitionList.module.js +6 -0
  386. package/dist/presentation/DefinitionList_module.css +10 -0
  387. package/dist/presentation/Divider.d.ts +5 -0
  388. package/dist/presentation/Divider.js +23 -0
  389. package/dist/presentation/Divider.module.js +6 -0
  390. package/dist/presentation/Divider_module.css +12 -0
  391. package/dist/presentation/File.d.ts +6 -0
  392. package/dist/presentation/File.js +57 -0
  393. package/dist/presentation/Footer.d.ts +12 -0
  394. package/dist/presentation/Footer.js +18 -0
  395. package/dist/presentation/Footer.module.js +5 -0
  396. package/dist/presentation/Footer_module.css +16 -0
  397. package/dist/presentation/HStack.d.ts +10 -0
  398. package/dist/presentation/HStack.js +16 -0
  399. package/dist/presentation/HStack.module.js +5 -0
  400. package/dist/presentation/HStack_module.css +10 -0
  401. package/dist/presentation/Header.d.ts +10 -0
  402. package/dist/presentation/Header.js +20 -0
  403. package/dist/presentation/Header.module.js +6 -0
  404. package/dist/presentation/Header_module.css +17 -0
  405. package/dist/presentation/Heading.d.ts +10 -0
  406. package/dist/presentation/Heading.js +10 -0
  407. package/dist/presentation/HeadlineStatisticCard.d.ts +9 -0
  408. package/dist/presentation/HeadlineStatisticCard.js +35 -0
  409. package/dist/presentation/HoverCard.d.ts +7 -0
  410. package/dist/presentation/HoverCard.js +90 -0
  411. package/dist/presentation/HoverCard.module.js +8 -0
  412. package/dist/presentation/HoverCard_module.css +18 -0
  413. package/dist/presentation/Icon.d.ts +20 -0
  414. package/dist/presentation/Icon.js +27 -0
  415. package/dist/presentation/IconSymbolSet.d.ts +6 -0
  416. package/dist/presentation/IconSymbolSet.js +16 -0
  417. package/dist/presentation/Info.d.ts +10 -0
  418. package/dist/presentation/Info.js +26 -0
  419. package/dist/presentation/Info.module.js +8 -0
  420. package/dist/presentation/Info_module.css +38 -0
  421. package/dist/presentation/Key.d.ts +7 -0
  422. package/dist/presentation/Key.js +13 -0
  423. package/dist/presentation/Key.module.js +5 -0
  424. package/dist/presentation/Key_module.css +15 -0
  425. package/dist/presentation/KeysSet.d.ts +9 -0
  426. package/dist/presentation/KeysSet.js +8 -0
  427. package/dist/presentation/KeysSet.module.js +5 -0
  428. package/dist/presentation/KeysSet_module.css +6 -0
  429. package/dist/presentation/Label.d.ts +10 -0
  430. package/dist/presentation/Label.js +10 -0
  431. package/dist/presentation/Layer.d.ts +9 -0
  432. package/dist/presentation/Layer.js +48 -0
  433. package/dist/presentation/ListCard.d.ts +13 -0
  434. package/dist/presentation/ListCard.js +50 -0
  435. package/dist/presentation/ListCard.module.js +10 -0
  436. package/dist/presentation/ListCard_module.css +78 -0
  437. package/dist/presentation/Markdown.d.ts +19 -0
  438. package/dist/presentation/Markdown.js +33 -0
  439. package/dist/presentation/Modal.d.ts +8 -0
  440. package/dist/presentation/Modal.js +26 -0
  441. package/dist/presentation/Modal.module.js +7 -0
  442. package/dist/presentation/Modal_module.css +17 -0
  443. package/dist/presentation/ObscuredText.d.ts +5 -0
  444. package/dist/presentation/ObscuredText.js +25 -0
  445. package/dist/presentation/ObscuredText.module.js +6 -0
  446. package/dist/presentation/ObscuredText_module.css +26 -0
  447. package/dist/presentation/Overlay.d.ts +7 -0
  448. package/dist/presentation/Overlay.js +29 -0
  449. package/dist/presentation/Overlay.module.js +6 -0
  450. package/dist/presentation/Overlay_module.css +20 -0
  451. package/dist/presentation/PersonAvatar.d.ts +18 -0
  452. package/dist/presentation/PersonAvatar.js +89 -0
  453. package/dist/presentation/PersonCover.d.ts +5 -0
  454. package/dist/presentation/PersonCover.js +21 -0
  455. package/dist/presentation/PersonCover.module.js +6 -0
  456. package/dist/presentation/PersonCover_module.css +22 -0
  457. package/dist/presentation/Placeholder.d.ts +6 -0
  458. package/dist/presentation/Placeholder.js +8 -0
  459. package/dist/presentation/Placeholder.module.js +5 -0
  460. package/dist/presentation/Placeholder_module.css +9 -0
  461. package/dist/presentation/PlainText.d.ts +11 -0
  462. package/dist/presentation/PlainText.js +40 -0
  463. package/dist/presentation/PlainText.module.js +5 -0
  464. package/dist/presentation/PlainText_module.css +6 -0
  465. package/dist/presentation/RichText.d.ts +16 -0
  466. package/dist/presentation/RichText.js +21 -0
  467. package/dist/presentation/RichText.module.js +7 -0
  468. package/dist/presentation/RichText_module.css +177 -0
  469. package/dist/presentation/Sheet.d.ts +23 -0
  470. package/dist/presentation/Sheet.js +22 -0
  471. package/dist/presentation/Sheet.module.js +8 -0
  472. package/dist/presentation/SheetContent.d.ts +6 -0
  473. package/dist/presentation/SheetContent.js +8 -0
  474. package/dist/presentation/SheetContent.module.js +5 -0
  475. package/dist/presentation/SheetContent_module.css +7 -0
  476. package/dist/presentation/SheetFooter.d.ts +7 -0
  477. package/dist/presentation/SheetFooter.js +12 -0
  478. package/dist/presentation/SheetFooter.module.js +5 -0
  479. package/dist/presentation/SheetFooter_module.css +7 -0
  480. package/dist/presentation/SheetHeader.d.ts +8 -0
  481. package/dist/presentation/SheetHeader.js +13 -0
  482. package/dist/presentation/SheetHeader.module.js +5 -0
  483. package/dist/presentation/SheetHeader_module.css +7 -0
  484. package/dist/presentation/Sheet_module.css +24 -0
  485. package/dist/presentation/SimpleList.d.ts +9 -0
  486. package/dist/presentation/SimpleList.js +14 -0
  487. package/dist/presentation/SimpleList.module.js +5 -0
  488. package/dist/presentation/SimpleList_module.css +9 -0
  489. package/dist/presentation/SimpleTable.d.ts +27 -0
  490. package/dist/presentation/SimpleTable.js +67 -0
  491. package/dist/presentation/SimpleTable.module.js +12 -0
  492. package/dist/presentation/SimpleTable_module.css +42 -0
  493. package/dist/presentation/Slot.d.ts +8 -0
  494. package/dist/presentation/Slot.js +26 -0
  495. package/dist/presentation/Slot.module.js +5 -0
  496. package/dist/presentation/Slot_module.css +7 -0
  497. package/dist/presentation/Subheading.d.ts +10 -0
  498. package/dist/presentation/Subheading.js +10 -0
  499. package/dist/presentation/Table.d.ts +71 -0
  500. package/dist/presentation/Table.js +458 -0
  501. package/dist/presentation/Table.module.js +22 -0
  502. package/dist/presentation/Table_module.css +142 -0
  503. package/dist/presentation/Tag.d.ts +9 -0
  504. package/dist/presentation/Tag.js +20 -0
  505. package/dist/presentation/Tag.module.js +14 -0
  506. package/dist/presentation/TagSet.d.ts +15 -0
  507. package/dist/presentation/TagSet.js +18 -0
  508. package/dist/presentation/TagSet.module.js +7 -0
  509. package/dist/presentation/TagSet_module.css +15 -0
  510. package/dist/presentation/Tag_module.css +53 -0
  511. package/dist/presentation/Timeline.d.ts +10 -0
  512. package/dist/presentation/Timeline.js +24 -0
  513. package/dist/presentation/Timeline.module.js +7 -0
  514. package/dist/presentation/Timeline_module.css +32 -0
  515. package/dist/presentation/Title.d.ts +10 -0
  516. package/dist/presentation/Title.js +10 -0
  517. package/dist/presentation/Tooltip.d.ts +7 -0
  518. package/dist/presentation/Tooltip.js +62 -0
  519. package/dist/presentation/Tooltip.module.js +6 -0
  520. package/dist/presentation/Tooltip_module.css +12 -0
  521. package/dist/presentation/VStack.d.ts +13 -0
  522. package/dist/presentation/VStack.js +15 -0
  523. package/dist/presentation/VStack.module.js +5 -0
  524. package/dist/presentation/VStack_module.css +8 -0
  525. package/dist/shared.css +407 -0
  526. package/dist/utils/NextContext.d.ts +10 -0
  527. package/dist/utils/NextContext.js +4 -0
  528. package/dist/utils/TrackingContext.d.ts +20 -0
  529. package/dist/utils/TrackingContext.js +4 -0
  530. package/dist/utils/customProperties.d.ts +5 -0
  531. package/dist/utils/customProperties.js +3 -0
  532. package/dist/utils/encodeCsv.d.ts +5 -0
  533. package/dist/utils/encodeCsv.js +30 -0
  534. package/dist/utils/search.d.ts +4 -0
  535. package/dist/utils/search.js +10 -0
  536. package/dist/utils/useNextContext.d.ts +35 -0
  537. package/dist/utils/useNextContext.js +9 -0
  538. package/dist/validators/isGreaterThan.d.ts +8 -0
  539. package/dist/validators/isGreaterThan.js +11 -0
  540. package/dist/validators/isInteger.d.ts +8 -0
  541. package/dist/validators/isInteger.js +11 -0
  542. package/dist/validators/isLessThan.d.ts +8 -0
  543. package/dist/validators/isLessThan.js +11 -0
  544. package/dist/validators/isNotBlank.d.ts +8 -0
  545. package/dist/validators/isNotBlank.js +11 -0
  546. package/dist/validators/isNotEmpty.d.ts +8 -0
  547. package/dist/validators/isNotEmpty.js +11 -0
  548. package/dist/validators/isNumber.d.ts +8 -0
  549. package/dist/validators/isNumber.js +12 -0
  550. package/dist/validators/isRequired.d.ts +8 -0
  551. package/dist/validators/isRequired.js +11 -0
  552. package/dist/validators/isTrue.d.ts +8 -0
  553. package/dist/validators/isTrue.js +11 -0
  554. package/dist/validators/isValidEmail.d.ts +8 -0
  555. package/dist/validators/isValidEmail.js +12 -0
  556. package/dist/visuals/ProportionVisual.d.ts +11 -0
  557. package/dist/visuals/ProportionVisual.js +41 -0
  558. package/dist/visuals/ProportionVisual.module.js +16 -0
  559. package/dist/visuals/ProportionVisualCompact.d.ts +9 -0
  560. package/dist/visuals/ProportionVisualCompact.js +27 -0
  561. package/dist/visuals/ProportionVisualCompact.module.js +15 -0
  562. package/dist/visuals/ProportionVisualCompact_module.css +48 -0
  563. package/dist/visuals/ProportionVisual_module.css +65 -0
  564. package/package.json +15 -14
@@ -0,0 +1,407 @@
1
+ a, abbr, address, area, article, aside, audio, b, base, bdi, bdo, blockquote, body, br, button, canvas, caption, cite, code, col, colgroup, data, datalist, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, head, header, hgroup, hr, html, i, iframe, img, input, ins, kbd, label, legend, li, link, main, map, mark, menu, meta, meter, nav, noscript, object, ol, optgroup, option, output, p, picture, pre, progress, q, rp, rt, ruby, s, samp, script, search, section, select, slot, small, source, span, strong, style, sub, summary, sup, table, tbody, td, template, textarea, tfoot, th, thead, time, title, tr, track, u, ul, var, video, wbr {
2
+ all: unset;
3
+ box-sizing: border-box;
4
+ }
5
+
6
+ svg, math {
7
+ box-sizing: border-box;
8
+ }
9
+
10
+ head, link, meta, noscript, script, style, title {
11
+ display: none;
12
+ }
13
+
14
+ address, article, aside, blockquote, details, dialog, dd, div, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, li, main, nav, ol, p, pre, section, ul {
15
+ display: block;
16
+ }
17
+
18
+ audio, canvas, iframe, img, math, object, svg, video {
19
+ max-width: 100%;
20
+ display: block;
21
+ }
22
+
23
+ table {
24
+ display: table;
25
+ }
26
+
27
+ thead {
28
+ display: table-header-group;
29
+ }
30
+
31
+ tfoot {
32
+ display: table-footer-group;
33
+ }
34
+
35
+ tbody {
36
+ display: table-row-group;
37
+ }
38
+
39
+ tr {
40
+ display: table-row;
41
+ }
42
+
43
+ th, td {
44
+ text-align: start;
45
+ display: table-cell;
46
+ }
47
+
48
+ a, button:not(:disabled) {
49
+ cursor: pointer;
50
+ }
51
+
52
+ button:disabled {
53
+ cursor: not-allowed;
54
+ }
55
+
56
+ body {
57
+ -webkit-font-smoothing: antialiased;
58
+ -webkit-tap-highlight-color: transparent;
59
+ -webkit-text-size-adjust: 100%;
60
+ height: 100dvh;
61
+ display: block;
62
+ }
63
+
64
+ #__next {
65
+ overflow: hidden;
66
+ }
67
+
68
+ :root {
69
+ --size-n5: 1px;
70
+ --size-n4: 2px;
71
+ --size-n3: 4px;
72
+ --size-n2: 8px;
73
+ --size-n1: 12px;
74
+ --size-00: 16px;
75
+ --size-p1: 20px;
76
+ --size-p2: 24px;
77
+ --size-p3: 32px;
78
+ --size-p4: 48px;
79
+ --size-p5: 64px;
80
+ --size-p6: 80px;
81
+ --typeface-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
82
+ --typeface-brand: var(--typeface-system);
83
+ --typeface-monospace: monospace;
84
+ --font-regular: normal 400 14px / var(--size-p1) var(--typeface-system);
85
+ --font-regular-bold: normal 700 14px / var(--size-p1) var(--typeface-system);
86
+ --font-regular-italic: italic 400 14px / var(--size-p1) var(--typeface-system);
87
+ --font-regular-bold-italic: italic 700 14px / var(--size-p1) var(--typeface-system);
88
+ --font-small: normal 400 12px / var(--size-p1) var(--typeface-system);
89
+ --font-small-bold: normal 700 12px / var(--size-p1) var(--typeface-system);
90
+ --font-small-italic: italic 400 12px / var(--size-p1) var(--typeface-system);
91
+ --font-small-bold-italic: italic 700 12px / var(--size-p1) var(--typeface-system);
92
+ --font-tiny: normal 400 10px / var(--size-00) var(--typeface-system);
93
+ --font-tiny-bold: normal 700 10px / var(--size-00) var(--typeface-system);
94
+ --font-tiny-italic: italic 400 10px / var(--size-00) var(--typeface-system);
95
+ --font-tiny-bold-italic: italic 700 10px / var(--size-00) var(--typeface-system);
96
+ --font-monospace: normal 400 14px / var(--size-p1) var(--typeface-monospace);
97
+ --font-h1: normal 600 34px / 150% var(--typeface-brand);
98
+ --font-h2: normal 600 30px / 150% var(--typeface-brand);
99
+ --font-h3: normal 600 26px / 150% var(--typeface-brand);
100
+ --font-h4: normal 600 22px / 150% var(--typeface-brand);
101
+ --font-h5: normal 600 18px / 150% var(--typeface-brand);
102
+ --font-h6: normal 600 16px / 150% var(--typeface-brand);
103
+ --color-black: #000;
104
+ --color-white: #fff;
105
+ --color-purple-s04: #360828;
106
+ --color-purple-s03: #4e0a3b;
107
+ --color-purple-s02: #660a4d;
108
+ --color-purple-s01: #800e61;
109
+ --color-purple-000: #90116e;
110
+ --color-purple-t01: #a83083;
111
+ --color-purple-t02: #b24990;
112
+ --color-purple-t03: #be609d;
113
+ --color-purple-t04: #c977ab;
114
+ --color-purple-t05: #d38cb7;
115
+ --color-purple-t06: #e0a0c7;
116
+ --color-purple-t07: #e6b5d3;
117
+ --color-purple-t08: #edcddf;
118
+ --color-purple-t09: #f4e2ec;
119
+ --color-purple-t10: #fdf8fb;
120
+ --color-maroon-s04: #340d1b;
121
+ --color-maroon-s03: #4a1628;
122
+ --color-maroon-s02: #601d34;
123
+ --color-maroon-s01: #7b223f;
124
+ --color-maroon-000: #95254b;
125
+ --color-maroon-t01: #ac1852;
126
+ --color-maroon-t02: #c43d69;
127
+ --color-maroon-t03: #cf5778;
128
+ --color-maroon-t04: #d9708a;
129
+ --color-maroon-t05: #df889b;
130
+ --color-maroon-t06: #e6a0ae;
131
+ --color-maroon-t07: #eab6c0;
132
+ --color-maroon-t08: #eeced3;
133
+ --color-maroon-t09: #f6e2e5;
134
+ --color-maroon-t10: #fdf8f9;
135
+ --color-yellow-s04: #211b0c;
136
+ --color-yellow-s03: #332710;
137
+ --color-yellow-s02: #423412;
138
+ --color-yellow-s01: #504317;
139
+ --color-yellow-000: #60511c;
140
+ --color-yellow-t01: #716023;
141
+ --color-yellow-t02: #826e2a;
142
+ --color-yellow-t03: #947f31;
143
+ --color-yellow-t04: #a78f38;
144
+ --color-yellow-t05: #b99f3f;
145
+ --color-yellow-t06: #cdb047;
146
+ --color-yellow-t07: #e9c959;
147
+ --color-yellow-t08: #f3d262;
148
+ --color-yellow-t09: #f8e5b2;
149
+ --color-yellow-t10: #fcf9f1;
150
+ --color-green-s04: #131e15;
151
+ --color-green-s03: #1c2d20;
152
+ --color-green-s02: #253b29;
153
+ --color-green-s01: #304a33;
154
+ --color-green-000: #3b5a3e;
155
+ --color-green-t01: #466a4a;
156
+ --color-green-t02: #527a56;
157
+ --color-green-t03: #5e8c63;
158
+ --color-green-t04: #6b9e70;
159
+ --color-green-t05: #76ae7c;
160
+ --color-green-t06: #8bc090;
161
+ --color-green-t07: #a2cfa5;
162
+ --color-green-t08: #badfbc;
163
+ --color-green-t09: #d4edd6;
164
+ --color-green-t10: #f4fbf5;
165
+ --color-blue-s04: #171c25;
166
+ --color-blue-s03: #232937;
167
+ --color-blue-s02: #2e3648;
168
+ --color-blue-s01: #3a455a;
169
+ --color-blue-000: #46536c;
170
+ --color-blue-t01: #53637c;
171
+ --color-blue-t02: #60728f;
172
+ --color-blue-t03: #6e83a3;
173
+ --color-blue-t04: #768cae;
174
+ --color-blue-t05: #90a4c3;
175
+ --color-blue-t06: #a6b5ce;
176
+ --color-blue-t07: #bac5d8;
177
+ --color-blue-t08: #cfd6e3;
178
+ --color-blue-t09: #e3e7ee;
179
+ --color-blue-t10: #f9f9fb;
180
+ --color-teal-s04: #101d24;
181
+ --color-teal-s03: #182c35;
182
+ --color-teal-s02: #1f3a45;
183
+ --color-teal-s01: #284953;
184
+ --color-teal-000: #315864;
185
+ --color-teal-t01: #3c6976;
186
+ --color-teal-t02: #457987;
187
+ --color-teal-t03: #508a9b;
188
+ --color-teal-t04: #5b9caf;
189
+ --color-teal-t05: #68b1c6;
190
+ --color-teal-t06: #7ebed1;
191
+ --color-teal-t07: #96cdde;
192
+ --color-teal-t08: #b3ddea;
193
+ --color-teal-t09: #d2ebf4;
194
+ --color-teal-t10: #f5fafc;
195
+ --color-orange-s04: #2b160a;
196
+ --color-orange-s03: #431e0f;
197
+ --color-orange-s02: #5c2415;
198
+ --color-orange-s01: #6e3313;
199
+ --color-orange-000: #813f11;
200
+ --color-orange-t01: #984c17;
201
+ --color-orange-t02: #ae571c;
202
+ --color-orange-t03: #c76421;
203
+ --color-orange-t04: #e77628;
204
+ --color-orange-t05: #ec8542;
205
+ --color-orange-t06: #f69c63;
206
+ --color-orange-t07: #f6b48c;
207
+ --color-orange-t08: #f7cdb3;
208
+ --color-orange-t09: #f8e2d5;
209
+ --color-orange-t10: #fcf8f6;
210
+ --color-red-s04: #330f11;
211
+ --color-red-s03: #4a171c;
212
+ --color-red-s02: #611d26;
213
+ --color-red-s01: #7a2628;
214
+ --color-red-000: #912f30;
215
+ --color-red-t01: #ab393a;
216
+ --color-red-t02: #c34243;
217
+ --color-red-t03: #e15252;
218
+ --color-red-t04: #e46b66;
219
+ --color-red-t05: #e8857e;
220
+ --color-red-t06: #eb9f97;
221
+ --color-red-t07: #efb5af;
222
+ --color-red-t08: #f2cdc9;
223
+ --color-red-t09: #f6e2e0;
224
+ --color-red-t10: #fcf8f8;
225
+ --color-grey-s04: #191c21;
226
+ --color-grey-s03: #252930;
227
+ --color-grey-s02: #31363f;
228
+ --color-grey-s01: #3e4550;
229
+ --color-grey-000: #4b5360;
230
+ --color-grey-t01: #5a6371;
231
+ --color-grey-t02: #677282;
232
+ --color-grey-t03: #768295;
233
+ --color-grey-t04: #828fa3;
234
+ --color-grey-t05: #97a3b6;
235
+ --color-grey-t06: #abb4c3;
236
+ --color-grey-t07: #bdc4d0;
237
+ --color-grey-t08: #d2d6de;
238
+ --color-grey-t09: #e4e7eb;
239
+ --color-grey-t10: #f9f9fa;
240
+ --shadow-default: 0px 1px 4px 0px #00000014;
241
+ --shadow-heavy: 0px 2px 8px 0px #00000029;
242
+ --tone-default: var(--color-grey-s01);
243
+ --tone-primary: var(--color-purple-000);
244
+ --tone-muted: var(--color-grey-t04);
245
+ --tone-danger: var(--color-red-t02);
246
+ --tone-warning: var(--color-yellow-t02);
247
+ --tone-success: var(--color-green-t02);
248
+ --tone-info: var(--color-teal-t02);
249
+ --tone-light: var(--color-grey-t08);
250
+ }
251
+
252
+ @supports (color: lab(0% 0 0)) {
253
+ :root {
254
+ --color-purple-s04: lab(10.0022% 25.4732 -8.94785);
255
+ --color-purple-s03: lab(16.5022% 34.4439 -12.0944);
256
+ --color-purple-s02: lab(22.5006% 42.9427 -15.0839);
257
+ --color-purple-s01: lab(29.0053% 50.6619 -17.7879);
258
+ --color-purple-000: lab(33.0269% 55.2029 -19.3824);
259
+ --color-purple-t01: lab(41.4974% 55.1815 -19.3764);
260
+ --color-purple-t02: lab(47.501% 49.5339 -17.397);
261
+ --color-purple-t03: lab(54.0029% 43.8823 -15.4105);
262
+ --color-purple-t04: lab(60.4942% 38.2237 -13.4269);
263
+ --color-purple-t05: lab(66.5022% 32.5397 -11.4305);
264
+ --color-purple-t06: lab(72.9974% 28.7879 -10.1077);
265
+ --color-purple-t07: lab(78.9986% 21.6941 -7.61764);
266
+ --color-purple-t08: lab(85.4965% 13.6953 -4.80903);
267
+ --color-purple-t09: lab(91.5032% 7.53409 -2.64581);
268
+ --color-purple-t10: lab(98.0031% 1.97041 -.691807);
269
+ --color-maroon-s04: lab(9.99908% 20.9561 1.16742);
270
+ --color-maroon-s03: lab(16.4945% 26.4561 1.4814);
271
+ --color-maroon-s02: lab(22.5018% 32.4336 2.27157);
272
+ --color-maroon-s01: lab(28.9994% 40.2031 4.99596);
273
+ --color-maroon-000: lab(35.0033% 48.6421 6.0398);
274
+ --color-maroon-t01: lab(38.4451% 59.0069 7.32464);
275
+ --color-maroon-t02: lab(47.5011% 56.6057 6.61669);
276
+ --color-maroon-t03: lab(53.9954% 50.5357 6.85142);
277
+ --color-maroon-t04: lab(60.4979% 43.6197 5.68397);
278
+ --color-maroon-t05: lab(66.5011% 35.7023 4.52988);
279
+ --color-maroon-t06: lab(73.0046% 28.2885 3.52187);
280
+ --color-maroon-t07: lab(79.0034% 20.3354 2.53297);
281
+ --color-maroon-t08: lab(85.4965% 12.4139 1.54673);
282
+ --color-maroon-t09: lab(91.4983% 7.44465 .927675);
283
+ --color-maroon-t10: lab(98.003% 1.68055 .209427);
284
+ --color-yellow-s04: lab(9.99624% 1.29871 9.71398);
285
+ --color-yellow-s03: lab(16.505% 3.37684 16.8854);
286
+ --color-yellow-s02: lab(22.5033% 3.14651 23.1595);
287
+ --color-yellow-s01: lab(29.005% 1.61758 28.1483);
288
+ --color-yellow-000: lab(34.9951% 1.5284 32.0706);
289
+ --color-yellow-t01: lab(41.4981% 1.73683 36.0533);
290
+ --color-yellow-t02: lab(47.5015% 1.90368 39.837);
291
+ --color-yellow-t03: lab(54.0038% 1.82697 43.9482);
292
+ --color-yellow-t04: lab(60.4968% 1.99881 47.9833);
293
+ --color-yellow-t05: lab(66.5007% 2.15012 51.7647);
294
+ --color-yellow-t06: lab(73.0056% 2.32032 55.8528);
295
+ --color-yellow-t07: lab(82.1678% 2.43753 58.7109);
296
+ --color-yellow-t08: lab(85.5046% 2.44528 58.8458);
297
+ --color-yellow-t09: lab(91.4985% 1.13246 27.2572);
298
+ --color-yellow-t10: lab(98.0056% .167042 4.01384);
299
+ --color-green-s04: lab(10.003% -7.02214 4.57836);
300
+ --color-green-s03: lab(16.5061% -9.66655 6.0676);
301
+ --color-green-s02: lab(22.4997% -12.2195 7.99987);
302
+ --color-green-s01: lab(28.9973% -14.6955 10.7525);
303
+ --color-green-000: lab(35.0025% -16.713 12.2301);
304
+ --color-green-t01: lab(41.4988% -18.8138 13.7726);
305
+ --color-green-t02: lab(47.5004% -20.7467 15.1803);
306
+ --color-green-t03: lab(53.9968% -22.85 16.7188);
307
+ --color-green-t04: lab(60.4956% -25.0114 18.3012);
308
+ --color-green-t05: lab(66.2044% -26.8844 19.672);
309
+ --color-green-t06: lab(72.9984% -25.0058 18.2948);
310
+ --color-green-t07: lab(78.995% -21.3816 15.641);
311
+ --color-green-t08: lab(85.4975% -17.7566 12.9913);
312
+ --color-green-t09: lab(91.5034% -11.6912 8.55392);
313
+ --color-green-t10: lab(97.998% -3.07053 2.24683);
314
+ --color-blue-s04: lab(9.9951% .0827089 -7.30749);
315
+ --color-blue-s03: lab(16.4995% .235334 -10.0043);
316
+ --color-blue-s02: lab(22.4985% .14089 -12.2839);
317
+ --color-blue-s01: lab(29.0043% -.197023 -14.0111);
318
+ --color-blue-000: lab(34.9952% -.208318 -15.9092);
319
+ --color-blue-t01: lab(41.5032% -1.47279 -16.2386);
320
+ --color-blue-t02: lab(47.5031% -1.62649 -17.9383);
321
+ --color-blue-t03: lab(54.0012% -1.78918 -19.7127);
322
+ --color-blue-t04: lab(57.4572% -1.87787 -20.7244);
323
+ --color-blue-t05: lab(66.505% -1.67066 -18.4318);
324
+ --color-blue-t06: lab(73.003% -1.33029 -14.7334);
325
+ --color-blue-t07: lab(78.9975% -1.00923 -11.172);
326
+ --color-blue-t08: lab(85.5039% -.655174 -7.25503);
327
+ --color-blue-t09: lab(91.504% -.342786 -3.80003);
328
+ --color-blue-t10: lab(97.9979% -.061512 -.680637);
329
+ --color-teal-s04: lab(10.0025% -4.27514 -6.39224);
330
+ --color-teal-s03: lab(16.5001% -5.67301 -8.94335);
331
+ --color-teal-s02: lab(22.4948% -7.66191 -10.2513);
332
+ --color-teal-s01: lab(28.9996% -10.4556 -9.77436);
333
+ --color-teal-000: lab(34.9946% -11.8383 -11.0709);
334
+ --color-teal-t01: lab(41.5021% -13.3025 -12.4333);
335
+ --color-teal-t02: lab(47.497% -14.6846 -13.7304);
336
+ --color-teal-t03: lab(53.9959% -16.2842 -15.2303);
337
+ --color-teal-t04: lab(60.5049% -17.8182 -16.6592);
338
+ --color-teal-t05: lab(68.0388% -19.5234 -18.2586);
339
+ --color-teal-t06: lab(73.0049% -17.5327 -16.409);
340
+ --color-teal-t07: lab(78.9989% -15.3448 -14.3471);
341
+ --color-teal-t08: lab(85.4992% -12.0369 -11.2646);
342
+ --color-teal-t09: lab(91.5038% -7.45219 -6.97418);
343
+ --color-teal-t10: lab(98.0043% -1.39949 -1.30959);
344
+ --color-orange-s04: lab(10.0002% 10.1484 11.1914);
345
+ --color-orange-s03: lab(16.4941% 17.287 18.0753);
346
+ --color-orange-s02: lab(22.5019% 25.3713 22.6193);
347
+ --color-orange-s01: lab(28.9951% 25.2468 31.6541);
348
+ --color-orange-000: lab(34.9949% 27.0011 39.0994);
349
+ --color-orange-t01: lab(41.5035% 30.3282 43.9777);
350
+ --color-orange-t02: lab(47.5048% 33.4867 48.5543);
351
+ --color-orange-t03: lab(53.997% 36.9588 53.5919);
352
+ --color-orange-t04: lab(62.4155% 41.3745 60.0038);
353
+ --color-orange-t05: lab(66.5013% 36.6726 53.0748);
354
+ --color-orange-t06: lab(73.002% 30.325 43.9833);
355
+ --color-orange-t07: lab(79.0012% 21.1737 30.7058);
356
+ --color-orange-t08: lab(85.5002% 12.7194 18.4447);
357
+ --color-orange-t09: lab(91.4966% 6.36935 9.235);
358
+ --color-orange-t10: lab(97.9973% 1.08057 1.5673);
359
+ --color-red-s04: lab(9.99999% 18.6137 7.80677);
360
+ --color-red-s03: lab(16.4947% 25.1851 9.99947);
361
+ --color-red-s02: lab(22.498% 31.5293 11.5779);
362
+ --color-red-s01: lab(29.0012% 37.0381 20.2629);
363
+ --color-red-000: lab(34.9946% 41.9897 23.4741);
364
+ --color-red-t01: lab(41.5025% 47.4098 26.5105);
365
+ --color-red-t02: lab(47.4943% 52.2892 29.2328);
366
+ --color-red-t03: lab(55.3901% 56.5631 31.6224);
367
+ --color-red-t04: lab(60.5043% 47.5767 26.5969);
368
+ --color-red-t05: lab(66.5054% 38.0638 21.2903);
369
+ --color-red-t06: lab(72.9975% 28.8028 16.1006);
370
+ --color-red-t07: lab(79.0022% 20.7781 11.6195);
371
+ --color-red-t08: lab(85.498% 12.8313 7.17409);
372
+ --color-red-t09: lab(91.4995% 6.53803 3.65618);
373
+ --color-red-t10: lab(97.9947% 1.12095 .626826);
374
+ --color-grey-s04: lab(10.0014% -.375159 -3.76356);
375
+ --color-grey-s03: lab(16.5048% -.518858 -5.18974);
376
+ --color-grey-s02: lab(22.4989% -.637904 -6.47081);
377
+ --color-grey-s01: lab(28.998% -.835016 -7.55728);
378
+ --color-grey-000: lab(34.996% -.935718 -8.54992);
379
+ --color-grey-t01: lab(41.4995% -1.16855 -9.44594);
380
+ --color-grey-t02: lab(47.4985% -1.29238 -10.4341);
381
+ --color-grey-t03: lab(53.9955% -1.42419 -11.4959);
382
+ --color-grey-t04: lab(58.8594% -1.52367 -12.3012);
383
+ --color-grey-t05: lab(66.505% -1.38858 -11.2203);
384
+ --color-grey-t06: lab(73.0025% -1.10519 -8.92031);
385
+ --color-grey-t07: lab(78.9987% -.833809 -6.73393);
386
+ --color-grey-t08: lab(85.4945% -.541925 -4.37427);
387
+ --color-grey-t09: lab(91.499% -.292808 -2.36434);
388
+ --color-grey-t10: lab(98.0011% -.0513196 -.414193);
389
+ }
390
+ }
391
+
392
+ body {
393
+ accent-color: var(--purple-650);
394
+ background: var(--color-grey-t10);
395
+ color: var(--tone-default);
396
+ font: var(--font-regular);
397
+ }
398
+
399
+ @media (max-width: 600px) {
400
+ :root {
401
+ --font-h1: normal 600 28px / 150% var(--typeface-brand);
402
+ --font-h2: normal 600 26px / 150% var(--typeface-brand);
403
+ --font-h3: normal 600 24px / 150% var(--typeface-brand);
404
+ --font-h4: normal 600 22px / 150% var(--typeface-brand);
405
+ }
406
+ }
407
+
@@ -0,0 +1,10 @@
1
+ import type Image from "next/image";
2
+ import type Link from "next/link";
3
+ import type { NextRouter } from "next/router";
4
+ declare const NextContext: import("react").Context<{
5
+ Image: typeof Image;
6
+ Link: typeof Link;
7
+ pathname: string | null;
8
+ router: NextRouter | null;
9
+ } | null>;
10
+ export default NextContext;
@@ -0,0 +1,4 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
2
+ const NextContext = (0, __WEBPACK_EXTERNAL_MODULE_react__.createContext)(null);
3
+ const NextContext_rslib_entry_ = NextContext;
4
+ export { NextContext_rslib_entry_ as default };
@@ -0,0 +1,20 @@
1
+ declare const TrackingContext: import("react").Context<{
2
+ /**
3
+ * Tracks when a user clicks or taps an element or presses the space/enter key
4
+ * with an element focused.
5
+ *
6
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event
7
+ */
8
+ trackClick: (elementId: string) => void;
9
+ /**
10
+ * Tracks when a user changes the value of an input.
11
+ *
12
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/Element/input_event
13
+ */
14
+ trackInput: (elementId: string, inputValue?: string) => void;
15
+ /**
16
+ * Tracks when a user sends a GraphQL request to the backend.
17
+ */
18
+ trackGqlRequest: (gqlOperationType?: string, gqlOperationName?: string) => void;
19
+ } | null>;
20
+ export default TrackingContext;
@@ -0,0 +1,4 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
2
+ const TrackingContext = (0, __WEBPACK_EXTERNAL_MODULE_react__.createContext)(null);
3
+ const TrackingContext_rslib_entry_ = TrackingContext;
4
+ export { TrackingContext_rslib_entry_ as default };
@@ -0,0 +1,5 @@
1
+ import type { CSSProperties } from "react";
2
+ declare const customProperties: (props: {
3
+ [key: `--${string}`]: string | number;
4
+ }) => CSSProperties;
5
+ export default customProperties;
@@ -0,0 +1,3 @@
1
+ const customProperties = (props)=>props;
2
+ const customProperties_rslib_entry_ = customProperties;
3
+ export { customProperties_rslib_entry_ as default };
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Encodes a [spec compliant](https://datatracker.ietf.org/doc/html/rfc4180) CSV string.
3
+ */
4
+ declare const encodeCsv: (data: Array<Array<string | number | boolean | undefined | null | Date>>) => string;
5
+ export default encodeCsv;
@@ -0,0 +1,30 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_temporal_polyfill_11c1db1c__ from "temporal-polyfill";
2
+ const encodeCsv = (data)=>{
3
+ const columns = data.reduce((result, row)=>Math.max(result, row.length), 0);
4
+ let result = "";
5
+ for (const row of data){
6
+ for(let i = 0; i < columns; i++){
7
+ result += serializeValue(row[i]);
8
+ if (i < columns - 1) result += ",";
9
+ }
10
+ result += "\r\n";
11
+ }
12
+ return result;
13
+ };
14
+ const serializeValue = (value)=>{
15
+ switch(typeof value){
16
+ case "number":
17
+ return value.toString(10);
18
+ case "boolean":
19
+ return true === value ? "true" : "false";
20
+ case "string":
21
+ return /[,"\n]/.test(value) ? `"${value.replace(/"/g, '""')}"` : value;
22
+ default:
23
+ return value instanceof Date ? __WEBPACK_EXTERNAL_MODULE_temporal_polyfill_11c1db1c__.toTemporalInstant.apply(value).toString({
24
+ timeZone: "Australia/Sydney",
25
+ smallestUnit: "second"
26
+ }) : "";
27
+ }
28
+ };
29
+ const encodeCsv_rslib_entry_ = encodeCsv;
30
+ export { encodeCsv_rslib_entry_ as default };
@@ -0,0 +1,4 @@
1
+ declare const search: <T extends {
2
+ id: string;
3
+ }>(items: Array<T>, fields: Array<(keyof T & string) | Array<string>>, term: string) => Array<T>;
4
+ export default search;
@@ -0,0 +1,10 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_js_search_62118aab__ from "js-search";
2
+ const search_rslib_entry_search = (items, fields, term)=>{
3
+ const search = new __WEBPACK_EXTERNAL_MODULE_js_search_62118aab__.Search("id");
4
+ search.indexStrategy = new __WEBPACK_EXTERNAL_MODULE_js_search_62118aab__.AllSubstringsIndexStrategy();
5
+ for (const field of fields)search.addIndex(field);
6
+ search.addDocuments(items);
7
+ return search.search(term);
8
+ };
9
+ const search_rslib_entry_ = search_rslib_entry_search;
10
+ export { search_rslib_entry_ as default };
@@ -0,0 +1,35 @@
1
+ declare const useNextContext: () => {
2
+ Image: typeof import("next/image").default;
3
+ Link: import("react").ForwardRefExoticComponent<Omit<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, keyof {
4
+ href: string | import("url").UrlObject;
5
+ as?: string | import("url").UrlObject;
6
+ replace?: boolean;
7
+ scroll?: boolean;
8
+ shallow?: boolean;
9
+ passHref?: boolean;
10
+ prefetch?: boolean | null;
11
+ locale?: string | false;
12
+ legacyBehavior?: boolean;
13
+ onMouseEnter?: import("react").MouseEventHandler<HTMLAnchorElement>;
14
+ onTouchStart?: import("react").TouchEventHandler<HTMLAnchorElement>;
15
+ onClick?: import("react").MouseEventHandler<HTMLAnchorElement>;
16
+ }> & {
17
+ href: string | import("url").UrlObject;
18
+ as?: string | import("url").UrlObject;
19
+ replace?: boolean;
20
+ scroll?: boolean;
21
+ shallow?: boolean;
22
+ passHref?: boolean;
23
+ prefetch?: boolean | null;
24
+ locale?: string | false;
25
+ legacyBehavior?: boolean;
26
+ onMouseEnter?: import("react").MouseEventHandler<HTMLAnchorElement>;
27
+ onTouchStart?: import("react").TouchEventHandler<HTMLAnchorElement>;
28
+ onClick?: import("react").MouseEventHandler<HTMLAnchorElement>;
29
+ } & {
30
+ children?: import("react").ReactNode;
31
+ } & import("react").RefAttributes<HTMLAnchorElement>>;
32
+ pathname: string | null;
33
+ router: import("next/router").NextRouter | null;
34
+ };
35
+ export default useNextContext;
@@ -0,0 +1,9 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
2
+ import * as __WEBPACK_EXTERNAL_MODULE__NextContext_js_0048cbcb__ from "./NextContext.js";
3
+ const useNextContext = ()=>{
4
+ const context = (0, __WEBPACK_EXTERNAL_MODULE_react__.useContext)(__WEBPACK_EXTERNAL_MODULE__NextContext_js_0048cbcb__["default"]);
5
+ if (null === context) throw Error("useNextContext must be used within a NextContext.Provider");
6
+ return context;
7
+ };
8
+ const useNextContext_rslib_entry_ = useNextContext;
9
+ export { useNextContext_rslib_entry_ as default };
@@ -0,0 +1,8 @@
1
+ declare const isGreaterThan: <Model extends {
2
+ [Field: string]: any;
3
+ }>(field: keyof Model, comparator: number, message?: string) => (data: Model) => {
4
+ id: string;
5
+ field: keyof Model;
6
+ message: string;
7
+ } | null;
8
+ export default isGreaterThan;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_uuid__ from "uuid";
2
+ const isGreaterThan = (field, comparator, message = `Must be greater than ${comparator}.`)=>(data)=>{
3
+ const value = data[field];
4
+ return "number" == typeof value && value < comparator ? {
5
+ id: (0, __WEBPACK_EXTERNAL_MODULE_uuid__.v4)(),
6
+ field,
7
+ message
8
+ } : null;
9
+ };
10
+ const isGreaterThan_rslib_entry_ = isGreaterThan;
11
+ export { isGreaterThan_rslib_entry_ as default };
@@ -0,0 +1,8 @@
1
+ declare const isInteger: <Model extends {
2
+ [Field: string]: any;
3
+ }>(field: keyof Model, message?: string) => (data: Model) => {
4
+ id: string;
5
+ field: keyof Model;
6
+ message: string;
7
+ } | null;
8
+ export default isInteger;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_uuid__ from "uuid";
2
+ const isInteger = (field, message = "Must be a whole number.")=>(data)=>{
3
+ const value = data[field];
4
+ return "number" != typeof value || Number.isInteger(value) ? null : {
5
+ id: (0, __WEBPACK_EXTERNAL_MODULE_uuid__.v4)(),
6
+ field,
7
+ message
8
+ };
9
+ };
10
+ const isInteger_rslib_entry_ = isInteger;
11
+ export { isInteger_rslib_entry_ as default };
@@ -0,0 +1,8 @@
1
+ declare const isLessThan: <Model extends {
2
+ [Field: string]: any;
3
+ }>(field: keyof Model, comparator: number, message?: string) => (data: Model) => {
4
+ id: string;
5
+ field: keyof Model;
6
+ message: string;
7
+ } | null;
8
+ export default isLessThan;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_uuid__ from "uuid";
2
+ const isLessThan = (field, comparator, message = `Must be less than ${comparator}.`)=>(data)=>{
3
+ const value = data[field];
4
+ return "number" == typeof value && value > comparator ? {
5
+ id: (0, __WEBPACK_EXTERNAL_MODULE_uuid__.v4)(),
6
+ field,
7
+ message
8
+ } : null;
9
+ };
10
+ const isLessThan_rslib_entry_ = isLessThan;
11
+ export { isLessThan_rslib_entry_ as default };
@@ -0,0 +1,8 @@
1
+ declare const isNotBlank: <Model extends {
2
+ [Field: string]: any;
3
+ }>(field: keyof Model, message?: string) => (data: Model) => {
4
+ id: string;
5
+ field: keyof Model;
6
+ message: string;
7
+ } | null;
8
+ export default isNotBlank;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_uuid__ from "uuid";
2
+ const isNotBlank = (field, message = "This field is required.")=>(data)=>{
3
+ const value = data[field];
4
+ return null == value || "string" == typeof value && "" === value.trim() ? {
5
+ id: (0, __WEBPACK_EXTERNAL_MODULE_uuid__.v4)(),
6
+ field,
7
+ message
8
+ } : null;
9
+ };
10
+ const isNotBlank_rslib_entry_ = isNotBlank;
11
+ export { isNotBlank_rslib_entry_ as default };
@@ -0,0 +1,8 @@
1
+ declare const isNotEmpty: <Model extends {
2
+ [Field: string]: any;
3
+ }>(field: keyof Model, message?: string) => (data: Model) => {
4
+ id: string;
5
+ field: keyof Model;
6
+ message: string;
7
+ } | null;
8
+ export default isNotEmpty;