@sqrzro/admin 1.0.0-beta.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 (476) hide show
  1. package/.eslintrc +4 -0
  2. package/.gitattributes +1 -0
  3. package/.prettierrc +9 -0
  4. package/.storybook/main.js +40 -0
  5. package/.storybook/manager.js +4 -0
  6. package/.storybook/postcss.config.js +3 -0
  7. package/.storybook/preview.js +11 -0
  8. package/.storybook/theme.js +7 -0
  9. package/.stylelintrc +9 -0
  10. package/LICENSE +5 -0
  11. package/README.md +9 -0
  12. package/__mocks__/squarezero-utility.ts +40 -0
  13. package/assets/logo-horizontal-dark.svg +21 -0
  14. package/assets/logo-horizontal-white.svg +21 -0
  15. package/assets/logo-vertical-dark.svg +21 -0
  16. package/assets/logo-vertical-white.svg +21 -0
  17. package/dist/index.css +3554 -0
  18. package/dist/index.js +5099 -0
  19. package/dist/index.js.map +1 -0
  20. package/dist/types/components/Alert/index.d.ts +10 -0
  21. package/dist/types/components/Allow/index.d.ts +13 -0
  22. package/dist/types/components/App/index.d.ts +19 -0
  23. package/dist/types/components/AutoSuggest/index.d.ts +60 -0
  24. package/dist/types/components/Button/index.d.ts +36 -0
  25. package/dist/types/components/CalendarInput/index.d.ts +10 -0
  26. package/dist/types/components/CheckboxList/index.d.ts +4 -0
  27. package/dist/types/components/ConnectedDropdown/index.d.ts +8 -0
  28. package/dist/types/components/ConnectedList/index.d.ts +4 -0
  29. package/dist/types/components/ConnectedScene/index.d.ts +11 -0
  30. package/dist/types/components/ConnectedTable/index.d.ts +4 -0
  31. package/dist/types/components/ContentBlock/index.d.ts +6 -0
  32. package/dist/types/components/DateInput/index.d.ts +7 -0
  33. package/dist/types/components/Document/index.d.ts +6 -0
  34. package/dist/types/components/Dropdown/index.d.ts +14 -0
  35. package/dist/types/components/Fieldset/index.d.ts +11 -0
  36. package/dist/types/components/FileInput/index.d.ts +4 -0
  37. package/dist/types/components/FilterLink/index.d.ts +7 -0
  38. package/dist/types/components/Form/index.d.ts +11 -0
  39. package/dist/types/components/FormActions/index.d.ts +9 -0
  40. package/dist/types/components/FormField/index.d.ts +27 -0
  41. package/dist/types/components/FormRepeater/index.d.ts +8 -0
  42. package/dist/types/components/ImageInput/index.d.ts +4 -0
  43. package/dist/types/components/InfoPanel/index.d.ts +8 -0
  44. package/dist/types/components/Link/__mocks__/index.d.ts +6 -0
  45. package/dist/types/components/Link/index.d.ts +13 -0
  46. package/dist/types/components/List/index.d.ts +23 -0
  47. package/dist/types/components/ListActions/index.d.ts +9 -0
  48. package/dist/types/components/LoginForm/index.d.ts +3 -0
  49. package/dist/types/components/Message/index.d.ts +7 -0
  50. package/dist/types/components/ModalActions/index.d.ts +11 -0
  51. package/dist/types/components/MoneyInput/index.d.ts +10 -0
  52. package/dist/types/components/PasswordForm/index.d.ts +3 -0
  53. package/dist/types/components/PasswordInput/index.d.ts +8 -0
  54. package/dist/types/components/RadioList/index.d.ts +4 -0
  55. package/dist/types/components/Scene/index.d.ts +10 -0
  56. package/dist/types/components/SummaryList/index.d.ts +8 -0
  57. package/dist/types/components/Switch/index.d.ts +9 -0
  58. package/dist/types/components/Table/index.d.ts +13 -0
  59. package/dist/types/components/Tag/index.d.ts +8 -0
  60. package/dist/types/components/TextArea/index.d.ts +4 -0
  61. package/dist/types/components/TextInput/index.d.ts +17 -0
  62. package/dist/types/components/WebsiteInput/index.d.ts +10 -0
  63. package/dist/types/components/WeekCalendar/index.d.ts +12 -0
  64. package/dist/types/core/AppHeader/index.d.ts +3 -0
  65. package/dist/types/core/AppLogo/index.d.ts +6 -0
  66. package/dist/types/core/AppLogoImage/index.d.ts +3 -0
  67. package/dist/types/core/AppLogoPlaceholder/index.d.ts +3 -0
  68. package/dist/types/core/Assistive/index.d.ts +6 -0
  69. package/dist/types/core/Banner/index.d.ts +3 -0
  70. package/dist/types/core/BuildModal/index.d.ts +3 -0
  71. package/dist/types/core/Calendar/index.d.ts +11 -0
  72. package/dist/types/core/CalendarDay/index.d.ts +16 -0
  73. package/dist/types/core/CalendarMonth/index.d.ts +12 -0
  74. package/dist/types/core/CalendarNavigation/index.d.ts +9 -0
  75. package/dist/types/core/CalendarWeek/index.d.ts +14 -0
  76. package/dist/types/core/ChkRad/index.d.ts +10 -0
  77. package/dist/types/core/ChkRadIcon/index.d.ts +7 -0
  78. package/dist/types/core/ChkRadList/index.d.ts +15 -0
  79. package/dist/types/core/CloseButton/index.d.ts +9 -0
  80. package/dist/types/core/ConfirmModal/index.d.ts +3 -0
  81. package/dist/types/core/ConnectedRepeater/index.d.ts +26 -0
  82. package/dist/types/core/ConnectedRepeaterComponent/index.d.ts +24 -0
  83. package/dist/types/core/Container/index.d.ts +7 -0
  84. package/dist/types/core/DropdownPanel/index.d.ts +18 -0
  85. package/dist/types/core/EmptyMessage/index.d.ts +12 -0
  86. package/dist/types/core/ErrorBoundary/index.d.ts +15 -0
  87. package/dist/types/core/ErrorMessage/index.d.ts +8 -0
  88. package/dist/types/core/FilterItem/index.d.ts +10 -0
  89. package/dist/types/core/Filters/index.d.ts +11 -0
  90. package/dist/types/core/FixedActions/index.d.ts +12 -0
  91. package/dist/types/core/FormError/index.d.ts +6 -0
  92. package/dist/types/core/FormLabel/index.d.ts +8 -0
  93. package/dist/types/core/FormLegend/index.d.ts +6 -0
  94. package/dist/types/core/Header/index.d.ts +8 -0
  95. package/dist/types/core/Icon/index.d.ts +7 -0
  96. package/dist/types/core/IconButton/Icon/index.d.ts +7 -0
  97. package/dist/types/core/IconButton/index.d.ts +11 -0
  98. package/dist/types/core/InputPanel/index.d.ts +8 -0
  99. package/dist/types/core/ListItem/index.d.ts +16 -0
  100. package/dist/types/core/ListItemAction/index.d.ts +4 -0
  101. package/dist/types/core/ListItemActions/index.d.ts +8 -0
  102. package/dist/types/core/ListItemMetaItem/index.d.ts +10 -0
  103. package/dist/types/core/ListItemTitle/index.d.ts +9 -0
  104. package/dist/types/core/Loader/index.d.ts +6 -0
  105. package/dist/types/core/MeActions/index.d.ts +3 -0
  106. package/dist/types/core/MePanel/index.d.ts +9 -0
  107. package/dist/types/core/Modal/index.d.ts +12 -0
  108. package/dist/types/core/Navigation/index.d.ts +3 -0
  109. package/dist/types/core/NavigationDivider/index.d.ts +3 -0
  110. package/dist/types/core/NavigationItem/index.d.ts +7 -0
  111. package/dist/types/core/Pagination/index.d.ts +7 -0
  112. package/dist/types/core/PaginationItem/index.d.ts +7 -0
  113. package/dist/types/core/Panel/index.d.ts +8 -0
  114. package/dist/types/core/RadialProgress/index.d.ts +8 -0
  115. package/dist/types/core/StaticTextInput/index.d.ts +12 -0
  116. package/dist/types/core/Styled/index.d.ts +6 -0
  117. package/dist/types/core/SummaryListItem/index.d.ts +15 -0
  118. package/dist/types/core/TableActionsCell/index.d.ts +8 -0
  119. package/dist/types/core/TableCell/index.d.ts +8 -0
  120. package/dist/types/core/TableHead/index.d.ts +8 -0
  121. package/dist/types/core/TableRow/index.d.ts +13 -0
  122. package/dist/types/core/Tabs/index.d.ts +11 -0
  123. package/dist/types/core/TextInputAncillary/index.d.ts +11 -0
  124. package/dist/types/core/Toast/index.d.ts +3 -0
  125. package/dist/types/core/WeekCalendarDay/index.d.ts +14 -0
  126. package/dist/types/filters/BooleanFilter/index.d.ts +5 -0
  127. package/dist/types/filters/DateFilter/index.d.ts +5 -0
  128. package/dist/types/filters/DropdownFilter/index.d.ts +5 -0
  129. package/dist/types/filters/QuickDateFilter/index.d.ts +5 -0
  130. package/dist/types/filters/interfaces.d.ts +36 -0
  131. package/dist/types/hooks/useAccessiblePanel.d.ts +13 -0
  132. package/dist/types/hooks/useAppContext.d.ts +37 -0
  133. package/dist/types/hooks/useClickOutside.d.ts +3 -0
  134. package/dist/types/hooks/useConnectedList.d.ts +7 -0
  135. package/dist/types/hooks/useFilters.d.ts +3 -0
  136. package/dist/types/hooks/useForm.d.ts +26 -0
  137. package/dist/types/hooks/useFormData.d.ts +9 -0
  138. package/dist/types/hooks/useLayout.d.ts +6 -0
  139. package/dist/types/hooks/useModal.d.ts +12 -0
  140. package/dist/types/hooks/useVariant.d.ts +6 -0
  141. package/dist/types/index.d.ts +187 -0
  142. package/dist/types/scenes/Error404Scene.d.ts +3 -0
  143. package/dist/types/services/BuildService.d.ts +5 -0
  144. package/dist/types/services/ConfirmService.d.ts +12 -0
  145. package/dist/types/services/DateService.d.ts +17 -0
  146. package/dist/types/services/DownloadService.d.ts +5 -0
  147. package/dist/types/services/FilterComponentService.d.ts +8 -0
  148. package/dist/types/services/FilterService.d.ts +13 -0
  149. package/dist/types/services/FormatService.d.ts +7 -0
  150. package/dist/types/services/ToastService.d.ts +5 -0
  151. package/dist/types/utility/MockRouter/index.d.ts +2 -0
  152. package/dist/types/utility/StorybookPanel/index.d.ts +7 -0
  153. package/dist/types/utility/TestChangeHandler/index.d.ts +8 -0
  154. package/dist/types/utility/create-app.d.ts +4 -0
  155. package/dist/types/utility/interfaces.d.ts +72 -0
  156. package/dist/types/utility/prop-types.d.ts +40 -0
  157. package/docs/guides/01-installation.story.mdx +33 -0
  158. package/docs/guides/02-configuration.story.mdx +80 -0
  159. package/docs/guides/03-pages.story.mdx +18 -0
  160. package/docs/guides/04-integration.story.mdx +33 -0
  161. package/docs/guides/a11y.story.mdx +7 -0
  162. package/docs/guides/theming.story.mdx +7 -0
  163. package/docs/introduction.story.mdx +17 -0
  164. package/jest.config.js +19 -0
  165. package/package.json +101 -0
  166. package/postcss.config.js +3 -0
  167. package/rollup.config.js +36 -0
  168. package/scripts/create-exports.js +74 -0
  169. package/scripts/update-license.js +8 -0
  170. package/squarezero.config.js +5 -0
  171. package/src/components/Alert/Alert.module.css +50 -0
  172. package/src/components/Alert/Alert.spec.tsx +63 -0
  173. package/src/components/Alert/Alert.story.tsx +23 -0
  174. package/src/components/Alert/index.tsx +67 -0
  175. package/src/components/Allow/Allow.spec.tsx +37 -0
  176. package/src/components/Allow/index.tsx +42 -0
  177. package/src/components/App/App.module.css +22 -0
  178. package/src/components/App/App.spec.tsx +128 -0
  179. package/src/components/App/index.tsx +108 -0
  180. package/src/components/AutoSuggest/AutoSuggest.module.css +8 -0
  181. package/src/components/AutoSuggest/AutoSuggest.spec.tsx +211 -0
  182. package/src/components/AutoSuggest/AutoSuggest.story.tsx +30 -0
  183. package/src/components/AutoSuggest/index.tsx +216 -0
  184. package/src/components/Button/Button.module.css +95 -0
  185. package/src/components/Button/Button.spec.tsx +69 -0
  186. package/src/components/Button/Button.story.tsx +39 -0
  187. package/src/components/Button/index.tsx +99 -0
  188. package/src/components/CalendarInput/CalendarInput.module.css +8 -0
  189. package/src/components/CalendarInput/CalendarInput.spec.tsx +206 -0
  190. package/src/components/CalendarInput/CalendarInput.story.tsx +62 -0
  191. package/src/components/CalendarInput/index.tsx +122 -0
  192. package/src/components/CheckboxList/CheckboxList.spec.tsx +83 -0
  193. package/src/components/CheckboxList/index.tsx +53 -0
  194. package/src/components/ConnectedDropdown/index.tsx +56 -0
  195. package/src/components/ConnectedList/index.tsx +15 -0
  196. package/src/components/ConnectedScene/index.tsx +95 -0
  197. package/src/components/ConnectedTable/index.tsx +17 -0
  198. package/src/components/ContentBlock/ContentBlock.module.css +8 -0
  199. package/src/components/ContentBlock/ContentBlock.spec.tsx +15 -0
  200. package/src/components/ContentBlock/index.tsx +16 -0
  201. package/src/components/DateInput/DateInput.module.css +15 -0
  202. package/src/components/DateInput/DateInput.spec.tsx +91 -0
  203. package/src/components/DateInput/index.tsx +149 -0
  204. package/src/components/Document/index.tsx +20 -0
  205. package/src/components/Dropdown/Dropdown.module.css +8 -0
  206. package/src/components/Dropdown/Dropdown.spec.tsx +286 -0
  207. package/src/components/Dropdown/Dropdown.story.tsx +53 -0
  208. package/src/components/Dropdown/index.tsx +224 -0
  209. package/src/components/Fieldset/Fieldset.spec.tsx +22 -0
  210. package/src/components/Fieldset/Fieldset.story.tsx +21 -0
  211. package/src/components/Fieldset/index.tsx +30 -0
  212. package/src/components/FileInput/FileInput.module.css +18 -0
  213. package/src/components/FileInput/FileInput.spec.tsx +42 -0
  214. package/src/components/FileInput/FileInput.story.tsx +6 -0
  215. package/src/components/FileInput/index.tsx +72 -0
  216. package/src/components/FilterLink/FilterLink.module.css +9 -0
  217. package/src/components/FilterLink/FilterLink.spec.tsx +20 -0
  218. package/src/components/FilterLink/index.tsx +31 -0
  219. package/src/components/Form/Form.spec.tsx +68 -0
  220. package/src/components/Form/index.tsx +87 -0
  221. package/src/components/FormActions/FormActions.spec.tsx +10 -0
  222. package/src/components/FormActions/FormActions.story.tsx +23 -0
  223. package/src/components/FormActions/index.tsx +31 -0
  224. package/src/components/FormField/FormField.module.css +71 -0
  225. package/src/components/FormField/FormField.spec.tsx +137 -0
  226. package/src/components/FormField/FormField.story.tsx +22 -0
  227. package/src/components/FormField/index.tsx +162 -0
  228. package/src/components/FormRepeater/FormRepeater.module.css +3 -0
  229. package/src/components/FormRepeater/FormRepeater.spec.tsx +127 -0
  230. package/src/components/FormRepeater/index.tsx +118 -0
  231. package/src/components/ImageInput/ImageInput.module.css +74 -0
  232. package/src/components/ImageInput/ImageInput.spec.tsx +45 -0
  233. package/src/components/ImageInput/ImageInput.story.tsx +6 -0
  234. package/src/components/ImageInput/index.tsx +91 -0
  235. package/src/components/InfoPanel/InfoPanel.module.css +18 -0
  236. package/src/components/InfoPanel/InfoPanel.spec.tsx +15 -0
  237. package/src/components/InfoPanel/InfoPanel.story.tsx +32 -0
  238. package/src/components/InfoPanel/index.tsx +25 -0
  239. package/src/components/Link/Link.spec.tsx +62 -0
  240. package/src/components/Link/__mocks__/index.tsx +24 -0
  241. package/src/components/Link/index.tsx +51 -0
  242. package/src/components/List/List.module.css +9 -0
  243. package/src/components/List/List.spec.tsx +311 -0
  244. package/src/components/List/List.story.tsx +92 -0
  245. package/src/components/List/index.tsx +79 -0
  246. package/src/components/ListActions/ListActions.spec.tsx +10 -0
  247. package/src/components/ListActions/ListActions.story.tsx +6 -0
  248. package/src/components/ListActions/index.tsx +31 -0
  249. package/src/components/LoginForm/LoginForm.module.css +21 -0
  250. package/src/components/LoginForm/LoginForm.spec.tsx +63 -0
  251. package/src/components/LoginForm/index.tsx +102 -0
  252. package/src/components/Message/Message.module.css +14 -0
  253. package/src/components/Message/Message.spec.tsx +20 -0
  254. package/src/components/Message/index.tsx +27 -0
  255. package/src/components/ModalActions/ModalActions.module.css +5 -0
  256. package/src/components/ModalActions/ModalActions.spec.tsx +53 -0
  257. package/src/components/ModalActions/ModalActions.story.tsx +6 -0
  258. package/src/components/ModalActions/index.tsx +47 -0
  259. package/src/components/MoneyInput/MoneyInput.spec.tsx +17 -0
  260. package/src/components/MoneyInput/MoneyInput.story.tsx +6 -0
  261. package/src/components/MoneyInput/index.tsx +16 -0
  262. package/src/components/PasswordForm/PasswordForm.module.css +21 -0
  263. package/src/components/PasswordForm/index.tsx +94 -0
  264. package/src/components/PasswordInput/PasswordInput.module.css +23 -0
  265. package/src/components/PasswordInput/PasswordInput.spec.tsx +31 -0
  266. package/src/components/PasswordInput/PasswordInput.story.tsx +16 -0
  267. package/src/components/PasswordInput/index.tsx +27 -0
  268. package/src/components/RadioList/RadioList.spec.tsx +45 -0
  269. package/src/components/RadioList/index.tsx +10 -0
  270. package/src/components/Scene/Scene.spec.tsx +123 -0
  271. package/src/components/Scene/Scene.story.tsx +6 -0
  272. package/src/components/Scene/index.tsx +58 -0
  273. package/src/components/SummaryList/SummaryList.module.css +16 -0
  274. package/src/components/SummaryList/SummaryList.spec.tsx +77 -0
  275. package/src/components/SummaryList/SummaryList.story.tsx +11 -0
  276. package/src/components/SummaryList/index.tsx +37 -0
  277. package/src/components/Switch/Switch.module.css +86 -0
  278. package/src/components/Switch/Switch.spec.tsx +64 -0
  279. package/src/components/Switch/index.tsx +85 -0
  280. package/src/components/Table/Table.module.css +14 -0
  281. package/src/components/Table/Table.spec.tsx +128 -0
  282. package/src/components/Table/Table.story.tsx +101 -0
  283. package/src/components/Table/index.tsx +114 -0
  284. package/src/components/Tag/Tag.module.css +37 -0
  285. package/src/components/Tag/Tag.spec.tsx +10 -0
  286. package/src/components/Tag/Tag.story.tsx +55 -0
  287. package/src/components/Tag/index.tsx +27 -0
  288. package/src/components/TextArea/TextArea.module.css +23 -0
  289. package/src/components/TextArea/TextArea.spec.tsx +77 -0
  290. package/src/components/TextArea/index.tsx +59 -0
  291. package/src/components/TextInput/TextInput.module.css +57 -0
  292. package/src/components/TextInput/TextInput.spec.tsx +134 -0
  293. package/src/components/TextInput/TextInput.story.tsx +24 -0
  294. package/src/components/TextInput/index.tsx +146 -0
  295. package/src/components/WebsiteInput/WebsiteInput.spec.tsx +17 -0
  296. package/src/components/WebsiteInput/index.tsx +16 -0
  297. package/src/components/WeekCalendar/WeekCalendar.module.css +19 -0
  298. package/src/components/WeekCalendar/index.tsx +80 -0
  299. package/src/core/AppHeader/index.tsx +23 -0
  300. package/src/core/AppLogo/AppLogo.module.css +19 -0
  301. package/src/core/AppLogo/index.tsx +33 -0
  302. package/src/core/AppLogoImage/index.tsx +19 -0
  303. package/src/core/AppLogoPlaceholder/index.tsx +26 -0
  304. package/src/core/Assistive/Assistive.module.css +10 -0
  305. package/src/core/Assistive/index.tsx +18 -0
  306. package/src/core/Banner/Banner.module.css +36 -0
  307. package/src/core/Banner/index.tsx +25 -0
  308. package/src/core/BuildModal/index.tsx +119 -0
  309. package/src/core/Calendar/index.tsx +116 -0
  310. package/src/core/CalendarDay/CalendarDay.module.css +61 -0
  311. package/src/core/CalendarDay/index.tsx +82 -0
  312. package/src/core/CalendarMonth/CalendarMonth.module.css +13 -0
  313. package/src/core/CalendarMonth/index.tsx +101 -0
  314. package/src/core/CalendarNavigation/CalendarNavigation.module.css +26 -0
  315. package/src/core/CalendarNavigation/index.tsx +56 -0
  316. package/src/core/CalendarWeek/index.tsx +95 -0
  317. package/src/core/ChkRad/ChkRad.module.css +31 -0
  318. package/src/core/ChkRad/ChkRad.spec.tsx +72 -0
  319. package/src/core/ChkRad/index.tsx +80 -0
  320. package/src/core/ChkRadIcon/ChkRadIcon.module.css +28 -0
  321. package/src/core/ChkRadIcon/index.tsx +33 -0
  322. package/src/core/ChkRadList/ChkRadList.module.css +10 -0
  323. package/src/core/ChkRadList/index.tsx +85 -0
  324. package/src/core/CloseButton/CloseButton.spec.tsx +36 -0
  325. package/src/core/CloseButton/index.tsx +31 -0
  326. package/src/core/ConfirmModal/ConfirmModal.spec.tsx +88 -0
  327. package/src/core/ConfirmModal/index.tsx +51 -0
  328. package/src/core/ConnectedRepeater/index.tsx +248 -0
  329. package/src/core/ConnectedRepeaterComponent/index.tsx +66 -0
  330. package/src/core/Container/Container.module.css +12 -0
  331. package/src/core/Container/index.tsx +35 -0
  332. package/src/core/DropdownPanel/DropdownPanel.module.css +68 -0
  333. package/src/core/DropdownPanel/index.tsx +92 -0
  334. package/src/core/EmptyMessage/EmptyMessage.module.css +18 -0
  335. package/src/core/EmptyMessage/index.tsx +31 -0
  336. package/src/core/ErrorBoundary/ErrorBoundary.spec.tsx +33 -0
  337. package/src/core/ErrorBoundary/index.tsx +42 -0
  338. package/src/core/ErrorMessage/ErrorMessage.module.css +25 -0
  339. package/src/core/ErrorMessage/ErrorMessage.spec.tsx +31 -0
  340. package/src/core/ErrorMessage/index.tsx +37 -0
  341. package/src/core/FilterItem/FilterItem.module.css +104 -0
  342. package/src/core/FilterItem/index.tsx +164 -0
  343. package/src/core/Filters/Filters.module.css +86 -0
  344. package/src/core/Filters/Filters.spec.tsx +533 -0
  345. package/src/core/Filters/index.tsx +158 -0
  346. package/src/core/FixedActions/FixedActions.module.css +24 -0
  347. package/src/core/FixedActions/index.tsx +52 -0
  348. package/src/core/FormError/FormError.module.css +7 -0
  349. package/src/core/FormError/index.tsx +18 -0
  350. package/src/core/FormLabel/FormLabel.module.css +15 -0
  351. package/src/core/FormLabel/index.tsx +25 -0
  352. package/src/core/FormLegend/FormLegend.module.css +13 -0
  353. package/src/core/FormLegend/index.tsx +18 -0
  354. package/src/core/Header/Header.module.css +35 -0
  355. package/src/core/Header/index.tsx +37 -0
  356. package/src/core/Icon/Icon.spec.tsx +31 -0
  357. package/src/core/Icon/index.tsx +64 -0
  358. package/src/core/IconButton/Icon/Icon.spec.tsx +31 -0
  359. package/src/core/IconButton/Icon/index.tsx +64 -0
  360. package/src/core/IconButton/IconButton.module.css +32 -0
  361. package/src/core/IconButton/index.tsx +55 -0
  362. package/src/core/InputPanel/InputPanel.module.css +70 -0
  363. package/src/core/InputPanel/index.tsx +28 -0
  364. package/src/core/ListItem/ListItem.module.css +28 -0
  365. package/src/core/ListItem/ListItem.story.tsx +28 -0
  366. package/src/core/ListItem/index.tsx +99 -0
  367. package/src/core/ListItemAction/ListItemAction.module.css +28 -0
  368. package/src/core/ListItemAction/index.tsx +30 -0
  369. package/src/core/ListItemActions/ListItemActions.module.css +94 -0
  370. package/src/core/ListItemActions/index.tsx +55 -0
  371. package/src/core/ListItemMetaItem/ListItemMetaItem.module.css +18 -0
  372. package/src/core/ListItemMetaItem/index.tsx +54 -0
  373. package/src/core/ListItemTitle/ListItemTitle.module.css +14 -0
  374. package/src/core/ListItemTitle/ListItemTitle.spec.tsx +33 -0
  375. package/src/core/ListItemTitle/index.tsx +72 -0
  376. package/src/core/Loader/Loader.module.css +57 -0
  377. package/src/core/Loader/Loader.story.tsx +8 -0
  378. package/src/core/Loader/index.tsx +27 -0
  379. package/src/core/MeActions/MeActions.module.css +45 -0
  380. package/src/core/MeActions/index.tsx +46 -0
  381. package/src/core/MePanel/MePanel.module.css +75 -0
  382. package/src/core/MePanel/index.tsx +45 -0
  383. package/src/core/Modal/Modal.module.css +84 -0
  384. package/src/core/Modal/Modal.spec.tsx +51 -0
  385. package/src/core/Modal/index.tsx +66 -0
  386. package/src/core/Navigation/Navigation.module.css +83 -0
  387. package/src/core/Navigation/Navigation.spec.tsx +101 -0
  388. package/src/core/Navigation/index.tsx +109 -0
  389. package/src/core/NavigationDivider/NavigationDivider.module.css +18 -0
  390. package/src/core/NavigationDivider/index.tsx +13 -0
  391. package/src/core/NavigationItem/NavigationItem.module.css +51 -0
  392. package/src/core/NavigationItem/index.tsx +59 -0
  393. package/src/core/Pagination/Pagination.module.css +15 -0
  394. package/src/core/Pagination/index.tsx +100 -0
  395. package/src/core/PaginationItem/PaginationItem.module.css +33 -0
  396. package/src/core/PaginationItem/index.tsx +46 -0
  397. package/src/core/Panel/Panel.module.css +15 -0
  398. package/src/core/Panel/index.tsx +31 -0
  399. package/src/core/RadialProgress/RadialProgress.module.css +78 -0
  400. package/src/core/RadialProgress/index.tsx +52 -0
  401. package/src/core/StaticTextInput/StaticTextInput.module.css +79 -0
  402. package/src/core/StaticTextInput/StaticTextInput.spec.tsx +133 -0
  403. package/src/core/StaticTextInput/index.tsx +114 -0
  404. package/src/core/Styled/Styled.spec.tsx +38 -0
  405. package/src/core/Styled/Styled.story.tsx +10 -0
  406. package/src/core/Styled/index.tsx +62 -0
  407. package/src/core/SummaryListItem/SummaryListItem.module.css +28 -0
  408. package/src/core/SummaryListItem/index.tsx +60 -0
  409. package/src/core/TableActionsCell/TableActionsCell.module.css +3 -0
  410. package/src/core/TableActionsCell/index.tsx +37 -0
  411. package/src/core/TableCell/TableCell.module.css +16 -0
  412. package/src/core/TableCell/index.tsx +39 -0
  413. package/src/core/TableHead/TableHead.module.css +12 -0
  414. package/src/core/TableHead/index.tsx +48 -0
  415. package/src/core/TableRow/index.tsx +64 -0
  416. package/src/core/Tabs/Tabs.module.css +50 -0
  417. package/src/core/Tabs/index.tsx +94 -0
  418. package/src/core/TextInputAncillary/TextInputAncillary.module.css +64 -0
  419. package/src/core/TextInputAncillary/index.tsx +72 -0
  420. package/src/core/Toast/Toast.module.css +55 -0
  421. package/src/core/Toast/Toast.spec.tsx +78 -0
  422. package/src/core/Toast/index.tsx +81 -0
  423. package/src/core/WeekCalendarDay/WeekCalendarDay.module.css +32 -0
  424. package/src/core/WeekCalendarDay/index.tsx +68 -0
  425. package/src/filters/BooleanFilter/index.tsx +46 -0
  426. package/src/filters/DateFilter/index.tsx +36 -0
  427. package/src/filters/DropdownFilter/index.tsx +53 -0
  428. package/src/filters/QuickDateFilter/index.tsx +74 -0
  429. package/src/filters/interfaces.ts +40 -0
  430. package/src/hooks/useAccessiblePanel.spec.tsx +88 -0
  431. package/src/hooks/useAccessiblePanel.ts +74 -0
  432. package/src/hooks/useAppContext.ts +77 -0
  433. package/src/hooks/useClickOutside.ts +49 -0
  434. package/src/hooks/useConnectedList.ts +26 -0
  435. package/src/hooks/useFilters.ts +26 -0
  436. package/src/hooks/useForm.spec.ts +126 -0
  437. package/src/hooks/useForm.ts +99 -0
  438. package/src/hooks/useFormData.spec.ts +40 -0
  439. package/src/hooks/useFormData.ts +27 -0
  440. package/src/hooks/useLayout.spec.ts +55 -0
  441. package/src/hooks/useLayout.ts +29 -0
  442. package/src/hooks/useModal.spec.tsx +63 -0
  443. package/src/hooks/useModal.ts +60 -0
  444. package/src/hooks/useVariant.spec.ts +14 -0
  445. package/src/hooks/useVariant.ts +34 -0
  446. package/src/index.ts +194 -0
  447. package/src/scenes/Error404Scene.tsx +5 -0
  448. package/src/services/BuildService.spec.ts +56 -0
  449. package/src/services/BuildService.ts +34 -0
  450. package/src/services/ConfirmService.ts +21 -0
  451. package/src/services/DateService.spec.ts +87 -0
  452. package/src/services/DateService.ts +137 -0
  453. package/src/services/DownloadService.spec.ts +29 -0
  454. package/src/services/DownloadService.ts +14 -0
  455. package/src/services/FilterComponentService.tsx +46 -0
  456. package/src/services/FilterService.spec.ts +87 -0
  457. package/src/services/FilterService.ts +58 -0
  458. package/src/services/FormatService.spec.ts +83 -0
  459. package/src/services/FormatService.ts +55 -0
  460. package/src/services/ToastService.spec.ts +44 -0
  461. package/src/services/ToastService.ts +19 -0
  462. package/src/styles/layout.css +64 -0
  463. package/src/styles/variables.css +85 -0
  464. package/src/typings.d.ts +4 -0
  465. package/src/utility/MockRouter/index.ts +45 -0
  466. package/src/utility/StorybookPanel/StorybookPanel.module.css +9 -0
  467. package/src/utility/StorybookPanel/index.tsx +25 -0
  468. package/src/utility/TestChangeHandler/TestChangeHandler.module.css +7 -0
  469. package/src/utility/TestChangeHandler/TestChangeHandler.spec.tsx +24 -0
  470. package/src/utility/TestChangeHandler/index.tsx +54 -0
  471. package/src/utility/create-app.tsx +29 -0
  472. package/src/utility/interfaces.ts +119 -0
  473. package/src/utility/prop-types.ts +67 -0
  474. package/tests/setupFilesAfterEnv.js +10 -0
  475. package/tsconfig.json +26 -0
  476. package/tsconfig.types.json +9 -0
package/.eslintrc ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "plugins": ["@sqrzro"],
3
+ "extends": ["plugin:@sqrzro/typescript"]
4
+ }
package/.gitattributes ADDED
@@ -0,0 +1 @@
1
+ * text eol=lf
package/.prettierrc ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "parser": "typescript",
3
+ "trailingComma": "es5",
4
+ "tabWidth": 4,
5
+ "semi": true,
6
+ "singleQuote": true,
7
+ "arrowParens": "always",
8
+ "printWidth": 100
9
+ }
@@ -0,0 +1,40 @@
1
+ const path = require('path');
2
+
3
+ module.exports = {
4
+ addons: [
5
+ {
6
+ name: '@storybook/addon-postcss',
7
+ options: {
8
+ cssLoaderOptions: {
9
+ modules: true,
10
+ },
11
+ postcssLoaderOptions: {
12
+ implementation: require('postcss'),
13
+ },
14
+ },
15
+ },
16
+ '@storybook/addon-docs',
17
+ ],
18
+ core: {
19
+ builder: 'webpack5',
20
+ },
21
+ stories: [
22
+ '../docs/introduction.story.mdx',
23
+ '../docs/guides/*.story.mdx',
24
+ '../src/**/*.story.tsx',
25
+ ],
26
+ webpackFinal: async (config) => {
27
+ config.resolve.extensions = ['.ts', '.tsx', '.js'];
28
+
29
+ config.resolve.alias = {
30
+ '@components': path.resolve(__dirname, '../src', 'components'),
31
+ '@core': path.resolve(__dirname, '../src', 'core'),
32
+ '@filters': path.resolve(__dirname, '../src', 'filters'),
33
+ '@hooks': path.resolve(__dirname, '../src', 'hooks'),
34
+ '@services': path.resolve(__dirname, '../src', 'services'),
35
+ '@utility': path.resolve(__dirname, '../src', 'utility'),
36
+ };
37
+
38
+ return config;
39
+ },
40
+ };
@@ -0,0 +1,4 @@
1
+ import { addons } from '@storybook/addons';
2
+ import theme from './theme';
3
+
4
+ addons.setConfig({ theme });
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ plugins: { autoprefixer: {}, 'postcss-nested': {} },
3
+ };
@@ -0,0 +1,11 @@
1
+ import { DocsPage, DocsContainer } from '@storybook/addon-docs';
2
+
3
+ import '../dist/index.css';
4
+
5
+ export const parameters = {
6
+ docs: {
7
+ container: DocsContainer,
8
+ page: DocsPage,
9
+ },
10
+ viewMode: 'docs',
11
+ };
@@ -0,0 +1,7 @@
1
+ import { create } from '@storybook/theming';
2
+
3
+ export default create({
4
+ base: 'light',
5
+ brandTitle: 'Square Zero Admin',
6
+ brandImage: 'https://place-hold.it/350x150',
7
+ });
package/.stylelintrc ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "stylelint-config-standard",
3
+ "ignoreFiles": ["dist/*", "**/*.ts", "**/*.tsx"],
4
+ "rules": {
5
+ "indentation": 4,
6
+ "no-descending-specificity": null,
7
+ "number-leading-zero": "never"
8
+ }
9
+ }
package/LICENSE ADDED
@@ -0,0 +1,5 @@
1
+ Copyright 2022 Richard Carter
2
+
3
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
4
+
5
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Square Zero Admin
2
+
3
+ Square Zero Admin is a collection of opinionated components, hooks, services and utilities that lets you very quickly build admin systems in React.
4
+
5
+ [Click here to get started](/story/guides-installation--page)
6
+
7
+ ## A Note on Beta
8
+
9
+ Currently, the latest version of Square Zero Admin is `beta`. Although the package is well tested, and used on a number of production sites, with the current lack of documentation it would be unfair to describe it as ‘production-ready’, unless being used by the developers of the package. Work on complete documentation is underway and a true version `1.0.0` should be available in the near future.
@@ -0,0 +1,40 @@
1
+ const szu = jest.requireActual('@sqrzro/utility');
2
+
3
+ export const ApiService = {
4
+ ApiValidationError: szu.ApiService.ApiValidationError,
5
+ registerConfig: jest.fn(),
6
+ get: jest.fn().mockImplementation(szu.ApiService.get),
7
+ getErrorsFromResponse: jest.fn().mockImplementation(szu.ApiService.getErrorsFromResponse),
8
+ makeUrl: jest.fn().mockImplementation(() => 'lorem'),
9
+ request: jest.fn().mockImplementation(szu.ApiService.get),
10
+ pollForResponse: jest.fn().mockImplementation(() => Promise.resolve({})),
11
+ };
12
+
13
+ export const AuthService = {
14
+ getToken: jest.fn().mockImplementation(() => 'lorem'),
15
+ login: jest.fn().mockImplementation(() => 'lorem'),
16
+ };
17
+
18
+ export const EventService = {
19
+ publish: jest.fn().mockImplementation(szu.EventService.publish),
20
+ subscribe: jest.fn().mockImplementation(szu.EventService.subscribe),
21
+ unsubscribe: jest.fn().mockImplementation(szu.EventService.unsubscribe),
22
+ };
23
+
24
+ export const StorageService = {
25
+ get: jest.fn().mockImplementation(() => true),
26
+ set: jest.fn().mockImplementation(() => true),
27
+ remove: jest.fn().mockImplementation(() => true),
28
+ };
29
+
30
+ export const parseNumeric = jest.fn().mockImplementation(szu.parseNumeric);
31
+ export const parseNumericArray = jest.fn().mockImplementation(szu.parseNumericArray);
32
+ export const spliceArray = jest.fn().mockImplementation(szu.spliceArray);
33
+
34
+ export const parseSearch = jest.fn().mockImplementation(szu.parseSearch);
35
+ export const stringifySearch = jest.fn().mockImplementation(szu.stringifySearch);
36
+ export const toggleArrayItem = jest.fn().mockImplementation(szu.toggleArrayItem);
37
+ export const ucwords = jest.fn().mockImplementation(szu.ucwords);
38
+
39
+ export const filterDuplicates = jest.fn().mockImplementation(szu.filterDuplicates);
40
+ export const getFromObject = jest.fn().mockImplementation(szu.getFromObject);
@@ -0,0 +1,21 @@
1
+ <svg width="646" height="98" viewBox="0 0 646 98" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M29.6542 71.5886C25.0398 67.7899 21.533 62.5641 19.8632 56.3323C15.6244 40.513 25.0994 24.1019 40.9186 19.8632C47.1504 18.1934 53.4295 18.6174 59.0265 20.7142L66.9574 6.97754C68.0452 5.09331 66.297 2.78729 64.1878 3.35245L9.58742 17.9826C4.31434 19.3955 1.15602 24.8659 2.56894 30.1389L17.1862 84.6914C17.7642 86.8485 20.6354 87.2095 21.7104 85.2773L29.6542 71.5886Z" fill="#F4A155"/>
3
+ <path d="M68.1248 44.8906C67.3206 40.7389 65.2863 37.1736 62.5082 34.4757L43.3127 67.7233C47.0383 68.7802 51.143 68.7593 55.1406 67.3799C64.4044 64.1783 69.984 54.514 68.1248 44.8906Z" fill="#F4A155"/>
4
+ <path d="M67.5968 25.6621C72.2111 29.4608 75.7179 34.6867 77.3877 40.9185C81.6265 56.7377 72.1515 73.1488 56.3323 77.3876C50.1005 79.0574 43.8214 78.6333 38.2244 76.5365L30.2935 90.2732C29.2057 92.1574 30.9539 94.4634 33.0631 93.8983L87.6635 79.2682C92.9366 77.8552 96.0949 72.3849 94.682 67.1118L80.0647 12.5594C79.4867 10.4022 76.6155 10.0412 75.5405 11.9734L67.5968 25.6621Z" fill="#F4A155"/>
5
+ <path d="M29.1261 52.3603C29.9303 56.5121 31.9645 60.0773 34.7426 62.7753L53.9381 29.5276C50.2126 28.4708 46.1079 28.4917 42.1103 29.8711C32.8465 33.0726 27.2668 42.7369 29.1261 52.3603Z" fill="#F4A155"/>
6
+ <path d="M110.861 59.3767L114.611 54.0564C115.845 55.3533 117.33 56.408 119.064 57.2205C120.814 58.033 122.72 58.4392 124.783 58.4392C126.58 58.4392 127.955 58.1033 128.908 57.4314C129.861 56.7439 130.338 55.8923 130.338 54.8767C130.338 54.2205 130.072 53.658 129.541 53.1892C129.01 52.7048 128.314 52.3376 127.455 52.0876C126.595 51.822 125.611 51.5486 124.502 51.2673C123.408 50.9705 122.283 50.697 121.127 50.447C119.97 50.1814 118.838 49.8064 117.728 49.322C116.635 48.822 115.658 48.2517 114.799 47.6111C113.939 46.9548 113.244 46.072 112.713 44.9626C112.181 43.8533 111.916 42.5798 111.916 41.1423C111.916 38.3923 113.017 36.0876 115.22 34.2283C117.439 32.3533 120.385 31.4158 124.056 31.4158C129.181 31.4158 133.345 32.9001 136.549 35.8689L132.752 40.9548C131.486 39.7986 130.041 38.9314 128.416 38.3533C126.791 37.7595 125.135 37.4626 123.447 37.4626C122.025 37.4626 120.916 37.7517 120.119 38.3298C119.322 38.8923 118.924 39.658 118.924 40.6267C118.924 41.2205 119.181 41.7361 119.697 42.1736C120.228 42.6111 120.924 42.9548 121.783 43.2048C122.658 43.4392 123.642 43.7048 124.736 44.0017C125.845 44.283 126.97 44.5564 128.111 44.822C129.252 45.0876 130.369 45.4783 131.463 45.9939C132.572 46.4939 133.556 47.0798 134.416 47.7517C135.291 48.408 135.986 49.2908 136.502 50.4001C137.033 51.5095 137.299 52.7751 137.299 54.197C137.299 57.2595 136.197 59.7439 133.994 61.6501C131.806 63.5408 128.642 64.4861 124.502 64.4861C118.814 64.4861 114.267 62.783 110.861 59.3767Z" fill="#192937"/>
7
+ <path d="M143.964 54.572C143.136 52.5095 142.722 50.2908 142.722 47.9158C142.722 45.5408 143.136 43.322 143.964 41.2595C144.808 39.197 145.964 37.447 147.433 36.0095C148.902 34.5564 150.675 33.4158 152.753 32.5876C154.831 31.7595 157.066 31.3455 159.456 31.3455C162.644 31.3455 165.503 32.0486 168.035 33.4548C170.581 34.8611 172.574 36.8298 174.011 39.3611C175.449 41.8923 176.167 44.7439 176.167 47.9158C176.167 52.3845 174.777 56.158 171.995 59.2361L174.339 61.9783L169.605 65.8689L167.003 62.8923C164.675 63.9548 162.16 64.4861 159.456 64.4861C157.066 64.4861 154.831 64.072 152.753 63.2439C150.675 62.4158 148.902 61.283 147.433 59.8455C145.964 58.3923 144.808 56.6345 143.964 54.572ZM149.73 47.9158C149.73 50.947 150.62 53.4626 152.402 55.4626C154.183 57.447 156.535 58.4392 159.456 58.4392C160.566 58.4392 161.675 58.2595 162.785 57.9001L159.269 53.7751L164.027 49.8845L167.519 54.0095C168.613 52.2595 169.16 50.2283 169.16 47.9158C169.16 44.8689 168.269 42.3611 166.488 40.3923C164.706 38.408 162.363 37.4158 159.456 37.4158C156.519 37.4158 154.16 38.408 152.378 40.3923C150.613 42.3611 149.73 44.8689 149.73 47.9158Z" fill="#192937"/>
8
+ <path d="M183.349 51.0798V31.8845H190.263V50.8923C190.263 53.1736 190.911 55.0017 192.208 56.3767C193.52 57.7517 195.388 58.4392 197.81 58.4392C200.216 58.4392 202.06 57.7595 203.341 56.4001C204.638 55.0251 205.286 53.1892 205.286 50.8923V31.8845H212.247V51.0798C212.247 53.0798 211.942 54.8923 211.333 56.5173C210.739 58.1423 209.856 59.5564 208.685 60.7595C207.528 61.947 206.02 62.8689 204.161 63.5251C202.317 64.1658 200.2 64.4861 197.81 64.4861C193.075 64.4861 189.481 63.2751 187.028 60.8533C184.575 58.4314 183.349 55.1736 183.349 51.0798Z" fill="#192937"/>
9
+ <path d="M216.053 63.9001L228.381 31.8845H236.936L249.264 63.9001H241.53L239.514 58.4861H225.803L223.788 63.9001H216.053ZM227.655 52.4861H237.639L232.647 38.7048L227.655 52.4861Z" fill="#192937"/>
10
+ <path d="M254.617 63.9001V31.8845H269.594C272.875 31.8845 275.492 32.8455 277.445 34.7673C279.414 36.6892 280.399 39.1658 280.399 42.197C280.399 43.5408 280.195 44.783 279.789 45.9236C279.383 47.0642 278.836 48.0173 278.149 48.783C277.461 49.533 276.711 50.158 275.899 50.658C275.102 51.1423 274.25 51.4939 273.344 51.7126L280.586 63.9001H272.711L266.43 52.533H261.438V63.9001H254.617ZM261.438 46.533H268.633C270.008 46.533 271.141 46.1423 272.031 45.3611C272.938 44.5642 273.391 43.4939 273.391 42.1501C273.391 40.8533 272.938 39.822 272.031 39.0564C271.141 38.2751 270.008 37.8845 268.633 37.8845H261.438V46.533Z" fill="#192937"/>
11
+ <path d="M287.861 63.9001V31.8845H310.525V37.8845H294.681V44.6111H310.174V50.6111H294.681V57.9001H310.525V63.9001H287.861Z" fill="#192937"/>
12
+ <path d="M331.825 63.9001V58.3689L346.942 37.8845H331.825V31.8845H355.872V37.3455L340.755 57.9001H356.2V63.9001H331.825Z" fill="#192937"/>
13
+ <path d="M363.78 63.9001V31.8845H386.444V37.8845H370.6V44.6111H386.092V50.6111H370.6V57.9001H386.444V63.9001H363.78Z" fill="#192937"/>
14
+ <path d="M394.164 63.9001V31.8845H409.141C412.422 31.8845 415.039 32.8455 416.992 34.7673C418.961 36.6892 419.945 39.1658 419.945 42.197C419.945 43.5408 419.742 44.783 419.336 45.9236C418.93 47.0642 418.383 48.0173 417.695 48.783C417.008 49.533 416.258 50.158 415.445 50.658C414.649 51.1423 413.797 51.4939 412.891 51.7126L420.133 63.9001H412.258L405.977 52.533H400.985V63.9001H394.164ZM400.985 46.533H408.18C409.555 46.533 410.688 46.1423 411.578 45.3611C412.485 44.5642 412.938 43.4939 412.938 42.1501C412.938 40.8533 412.485 39.822 411.578 39.0564C410.688 38.2751 409.555 37.8845 408.18 37.8845H400.985V46.533Z" fill="#192937"/>
15
+ <path d="M427.127 54.572C426.299 52.5095 425.885 50.2908 425.885 47.9158C425.885 45.5408 426.299 43.322 427.127 41.2595C427.97 39.197 429.127 37.447 430.595 36.0095C432.064 34.5564 433.838 33.4158 435.916 32.5876C437.994 31.7595 440.228 31.3455 442.619 31.3455C445.806 31.3455 448.666 32.0486 451.197 33.4548C453.744 34.8611 455.736 36.8298 457.174 39.3611C458.611 41.8923 459.33 44.7439 459.33 47.9158C459.33 51.0876 458.611 53.9392 457.174 56.4705C455.736 59.0017 453.744 60.9705 451.197 62.3767C448.666 63.783 445.806 64.4861 442.619 64.4861C440.228 64.4861 437.994 64.072 435.916 63.2439C433.838 62.4158 432.064 61.283 430.595 59.8455C429.127 58.3923 427.97 56.6345 427.127 54.572ZM432.892 47.9158C432.892 50.947 433.783 53.4626 435.564 55.4626C437.345 57.447 439.697 58.4392 442.619 58.4392C445.525 58.4392 447.869 57.447 449.65 55.4626C451.431 53.4626 452.322 50.947 452.322 47.9158C452.322 44.8689 451.431 42.3611 449.65 40.3923C447.869 38.408 445.525 37.4158 442.619 37.4158C439.681 37.4158 437.322 38.408 435.541 40.3923C433.775 42.3611 432.892 44.8689 432.892 47.9158Z" fill="#192937"/>
16
+ <path d="M472.812 64L485.141 31.9844H493.695L506.023 64H498.289L496.273 58.5859H482.562L480.547 64H472.812ZM484.414 52.5859H494.398L489.406 38.8047L484.414 52.5859Z" fill="#F4A155"/>
17
+ <path d="M513.777 64V31.9844H526.409C531.441 31.9844 535.527 33.4531 538.667 36.3906C541.823 39.3281 543.402 43.1875 543.402 47.9688C543.402 51.1562 542.683 53.9688 541.245 56.4062C539.823 58.8438 537.831 60.7188 535.269 62.0312C532.706 63.3438 529.769 64 526.456 64H513.777ZM520.597 58H526.409C528.456 58 530.253 57.5391 531.8 56.6172C533.347 55.6953 534.503 54.4844 535.269 52.9844C536.05 51.4844 536.441 49.8125 536.441 47.9688C536.441 45.0469 535.566 42.6562 533.816 40.7969C532.066 38.9219 529.612 37.9844 526.456 37.9844H520.597V58Z" fill="#F4A155"/>
18
+ <path d="M553.03 64V31.9844H562.592L570.35 52L578.131 31.9844H587.741V64H580.873V40.9141L571.85 64H568.873L559.85 40.9141V64H553.03Z" fill="#F4A155"/>
19
+ <path d="M598.892 64V31.9844H605.712V64H598.892Z" fill="#F4A155"/>
20
+ <path d="M616.864 64V31.9844H623.872L638.708 52.0938V31.9844H645.528V64H638.942L623.684 43.1172V64H616.864Z" fill="#F4A155"/>
21
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg width="646" height="98" viewBox="0 0 646 98" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M29.6542 71.5886C25.0398 67.7899 21.533 62.5641 19.8632 56.3323C15.6244 40.513 25.0994 24.1019 40.9186 19.8632C47.1504 18.1934 53.4295 18.6174 59.0265 20.7142L66.9574 6.97754C68.0452 5.09331 66.297 2.78729 64.1878 3.35245L9.58742 17.9826C4.31434 19.3955 1.15602 24.8659 2.56894 30.1389L17.1862 84.6914C17.7642 86.8485 20.6354 87.2095 21.7104 85.2773L29.6542 71.5886Z" fill="#F4A155"/>
3
+ <path d="M68.1248 44.8906C67.3206 40.7389 65.2863 37.1736 62.5082 34.4757L43.3127 67.7233C47.0383 68.7802 51.143 68.7593 55.1406 67.3799C64.4044 64.1783 69.984 54.514 68.1248 44.8906Z" fill="#F4A155"/>
4
+ <path d="M67.5968 25.6621C72.2111 29.4608 75.7179 34.6867 77.3877 40.9185C81.6265 56.7377 72.1515 73.1488 56.3323 77.3876C50.1005 79.0574 43.8214 78.6333 38.2244 76.5365L30.2935 90.2732C29.2057 92.1574 30.9539 94.4634 33.0631 93.8983L87.6635 79.2682C92.9366 77.8552 96.0949 72.3849 94.682 67.1118L80.0647 12.5594C79.4867 10.4022 76.6155 10.0412 75.5405 11.9734L67.5968 25.6621Z" fill="#F4A155"/>
5
+ <path d="M29.1261 52.3603C29.9303 56.5121 31.9645 60.0773 34.7426 62.7753L53.9381 29.5276C50.2126 28.4708 46.1079 28.4917 42.1103 29.8711C32.8465 33.0726 27.2668 42.7369 29.1261 52.3603Z" fill="#F4A155"/>
6
+ <path d="M110.861 59.3767L114.611 54.0564C115.845 55.3533 117.33 56.408 119.064 57.2205C120.814 58.033 122.72 58.4392 124.783 58.4392C126.58 58.4392 127.955 58.1033 128.908 57.4314C129.861 56.7439 130.338 55.8923 130.338 54.8767C130.338 54.2205 130.072 53.658 129.541 53.1892C129.01 52.7048 128.314 52.3376 127.455 52.0876C126.595 51.822 125.611 51.5486 124.502 51.2673C123.408 50.9705 122.283 50.697 121.127 50.447C119.97 50.1814 118.838 49.8064 117.728 49.322C116.635 48.822 115.658 48.2517 114.799 47.6111C113.939 46.9548 113.244 46.072 112.713 44.9626C112.181 43.8533 111.916 42.5798 111.916 41.1423C111.916 38.3923 113.017 36.0876 115.22 34.2283C117.439 32.3533 120.385 31.4158 124.056 31.4158C129.181 31.4158 133.345 32.9001 136.549 35.8689L132.752 40.9548C131.486 39.7986 130.041 38.9314 128.416 38.3533C126.791 37.7595 125.135 37.4626 123.447 37.4626C122.025 37.4626 120.916 37.7517 120.119 38.3298C119.322 38.8923 118.924 39.658 118.924 40.6267C118.924 41.2205 119.181 41.7361 119.697 42.1736C120.228 42.6111 120.924 42.9548 121.783 43.2048C122.658 43.4392 123.642 43.7048 124.736 44.0017C125.845 44.283 126.97 44.5564 128.111 44.822C129.252 45.0876 130.369 45.4783 131.463 45.9939C132.572 46.4939 133.556 47.0798 134.416 47.7517C135.291 48.408 135.986 49.2908 136.502 50.4001C137.033 51.5095 137.299 52.7751 137.299 54.197C137.299 57.2595 136.197 59.7439 133.994 61.6501C131.806 63.5408 128.642 64.4861 124.502 64.4861C118.814 64.4861 114.267 62.783 110.861 59.3767Z" fill="#ffffff"/>
7
+ <path d="M143.964 54.572C143.136 52.5095 142.722 50.2908 142.722 47.9158C142.722 45.5408 143.136 43.322 143.964 41.2595C144.808 39.197 145.964 37.447 147.433 36.0095C148.902 34.5564 150.675 33.4158 152.753 32.5876C154.831 31.7595 157.066 31.3455 159.456 31.3455C162.644 31.3455 165.503 32.0486 168.035 33.4548C170.581 34.8611 172.574 36.8298 174.011 39.3611C175.449 41.8923 176.167 44.7439 176.167 47.9158C176.167 52.3845 174.777 56.158 171.995 59.2361L174.339 61.9783L169.605 65.8689L167.003 62.8923C164.675 63.9548 162.16 64.4861 159.456 64.4861C157.066 64.4861 154.831 64.072 152.753 63.2439C150.675 62.4158 148.902 61.283 147.433 59.8455C145.964 58.3923 144.808 56.6345 143.964 54.572ZM149.73 47.9158C149.73 50.947 150.62 53.4626 152.402 55.4626C154.183 57.447 156.535 58.4392 159.456 58.4392C160.566 58.4392 161.675 58.2595 162.785 57.9001L159.269 53.7751L164.027 49.8845L167.519 54.0095C168.613 52.2595 169.16 50.2283 169.16 47.9158C169.16 44.8689 168.269 42.3611 166.488 40.3923C164.706 38.408 162.363 37.4158 159.456 37.4158C156.519 37.4158 154.16 38.408 152.378 40.3923C150.613 42.3611 149.73 44.8689 149.73 47.9158Z" fill="#ffffff"/>
8
+ <path d="M183.349 51.0798V31.8845H190.263V50.8923C190.263 53.1736 190.911 55.0017 192.208 56.3767C193.52 57.7517 195.388 58.4392 197.81 58.4392C200.216 58.4392 202.06 57.7595 203.341 56.4001C204.638 55.0251 205.286 53.1892 205.286 50.8923V31.8845H212.247V51.0798C212.247 53.0798 211.942 54.8923 211.333 56.5173C210.739 58.1423 209.856 59.5564 208.685 60.7595C207.528 61.947 206.02 62.8689 204.161 63.5251C202.317 64.1658 200.2 64.4861 197.81 64.4861C193.075 64.4861 189.481 63.2751 187.028 60.8533C184.575 58.4314 183.349 55.1736 183.349 51.0798Z" fill="#ffffff"/>
9
+ <path d="M216.053 63.9001L228.381 31.8845H236.936L249.264 63.9001H241.53L239.514 58.4861H225.803L223.788 63.9001H216.053ZM227.655 52.4861H237.639L232.647 38.7048L227.655 52.4861Z" fill="#ffffff"/>
10
+ <path d="M254.617 63.9001V31.8845H269.594C272.875 31.8845 275.492 32.8455 277.445 34.7673C279.414 36.6892 280.399 39.1658 280.399 42.197C280.399 43.5408 280.195 44.783 279.789 45.9236C279.383 47.0642 278.836 48.0173 278.149 48.783C277.461 49.533 276.711 50.158 275.899 50.658C275.102 51.1423 274.25 51.4939 273.344 51.7126L280.586 63.9001H272.711L266.43 52.533H261.438V63.9001H254.617ZM261.438 46.533H268.633C270.008 46.533 271.141 46.1423 272.031 45.3611C272.938 44.5642 273.391 43.4939 273.391 42.1501C273.391 40.8533 272.938 39.822 272.031 39.0564C271.141 38.2751 270.008 37.8845 268.633 37.8845H261.438V46.533Z" fill="#ffffff"/>
11
+ <path d="M287.861 63.9001V31.8845H310.525V37.8845H294.681V44.6111H310.174V50.6111H294.681V57.9001H310.525V63.9001H287.861Z" fill="#ffffff"/>
12
+ <path d="M331.825 63.9001V58.3689L346.942 37.8845H331.825V31.8845H355.872V37.3455L340.755 57.9001H356.2V63.9001H331.825Z" fill="#ffffff"/>
13
+ <path d="M363.78 63.9001V31.8845H386.444V37.8845H370.6V44.6111H386.092V50.6111H370.6V57.9001H386.444V63.9001H363.78Z" fill="#ffffff"/>
14
+ <path d="M394.164 63.9001V31.8845H409.141C412.422 31.8845 415.039 32.8455 416.992 34.7673C418.961 36.6892 419.945 39.1658 419.945 42.197C419.945 43.5408 419.742 44.783 419.336 45.9236C418.93 47.0642 418.383 48.0173 417.695 48.783C417.008 49.533 416.258 50.158 415.445 50.658C414.649 51.1423 413.797 51.4939 412.891 51.7126L420.133 63.9001H412.258L405.977 52.533H400.985V63.9001H394.164ZM400.985 46.533H408.18C409.555 46.533 410.688 46.1423 411.578 45.3611C412.485 44.5642 412.938 43.4939 412.938 42.1501C412.938 40.8533 412.485 39.822 411.578 39.0564C410.688 38.2751 409.555 37.8845 408.18 37.8845H400.985V46.533Z" fill="#ffffff"/>
15
+ <path d="M427.127 54.572C426.299 52.5095 425.885 50.2908 425.885 47.9158C425.885 45.5408 426.299 43.322 427.127 41.2595C427.97 39.197 429.127 37.447 430.595 36.0095C432.064 34.5564 433.838 33.4158 435.916 32.5876C437.994 31.7595 440.228 31.3455 442.619 31.3455C445.806 31.3455 448.666 32.0486 451.197 33.4548C453.744 34.8611 455.736 36.8298 457.174 39.3611C458.611 41.8923 459.33 44.7439 459.33 47.9158C459.33 51.0876 458.611 53.9392 457.174 56.4705C455.736 59.0017 453.744 60.9705 451.197 62.3767C448.666 63.783 445.806 64.4861 442.619 64.4861C440.228 64.4861 437.994 64.072 435.916 63.2439C433.838 62.4158 432.064 61.283 430.595 59.8455C429.127 58.3923 427.97 56.6345 427.127 54.572ZM432.892 47.9158C432.892 50.947 433.783 53.4626 435.564 55.4626C437.345 57.447 439.697 58.4392 442.619 58.4392C445.525 58.4392 447.869 57.447 449.65 55.4626C451.431 53.4626 452.322 50.947 452.322 47.9158C452.322 44.8689 451.431 42.3611 449.65 40.3923C447.869 38.408 445.525 37.4158 442.619 37.4158C439.681 37.4158 437.322 38.408 435.541 40.3923C433.775 42.3611 432.892 44.8689 432.892 47.9158Z" fill="#ffffff"/>
16
+ <path d="M472.812 64L485.141 31.9844H493.695L506.023 64H498.289L496.273 58.5859H482.562L480.547 64H472.812ZM484.414 52.5859H494.398L489.406 38.8047L484.414 52.5859Z" fill="#F4A155"/>
17
+ <path d="M513.777 64V31.9844H526.409C531.441 31.9844 535.527 33.4531 538.667 36.3906C541.823 39.3281 543.402 43.1875 543.402 47.9688C543.402 51.1562 542.683 53.9688 541.245 56.4062C539.823 58.8438 537.831 60.7188 535.269 62.0312C532.706 63.3438 529.769 64 526.456 64H513.777ZM520.597 58H526.409C528.456 58 530.253 57.5391 531.8 56.6172C533.347 55.6953 534.503 54.4844 535.269 52.9844C536.05 51.4844 536.441 49.8125 536.441 47.9688C536.441 45.0469 535.566 42.6562 533.816 40.7969C532.066 38.9219 529.612 37.9844 526.456 37.9844H520.597V58Z" fill="#F4A155"/>
18
+ <path d="M553.03 64V31.9844H562.592L570.35 52L578.131 31.9844H587.741V64H580.873V40.9141L571.85 64H568.873L559.85 40.9141V64H553.03Z" fill="#F4A155"/>
19
+ <path d="M598.892 64V31.9844H605.712V64H598.892Z" fill="#F4A155"/>
20
+ <path d="M616.864 64V31.9844H623.872L638.708 52.0938V31.9844H645.528V64H638.942L623.684 43.1172V64H616.864Z" fill="#F4A155"/>
21
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg width="349" height="165" viewBox="0 0 349 165" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M160.345 51.5281C157.023 48.7939 154.499 45.0325 153.297 40.5469C150.246 29.1605 157.066 17.3481 168.452 14.2971C172.938 13.0952 177.458 13.4005 181.486 14.9097L187.195 5.02231C187.978 3.66607 186.719 2.00624 185.201 2.41304L145.901 12.9435C142.105 13.9605 139.832 17.898 140.849 21.6934L151.37 60.9593C151.786 62.512 153.853 62.7718 154.627 61.3811L160.345 51.5281Z" fill="#F4A155"/>
3
+ <path d="M188.035 32.3115C187.456 29.3231 185.992 26.7569 183.992 24.815L170.176 48.746C172.857 49.5067 175.812 49.4917 178.689 48.4988C185.357 46.1944 189.373 39.2382 188.035 32.3115Z" fill="#F4A155"/>
4
+ <path d="M187.655 18.4712C190.976 21.2054 193.5 24.9669 194.702 29.4524C197.753 40.8388 190.933 52.6512 179.547 55.7022C175.061 56.9041 170.542 56.5989 166.513 55.0896L160.805 64.977C160.022 66.3333 161.28 67.9931 162.798 67.5863L202.099 57.0558C205.894 56.0388 208.167 52.1013 207.15 48.3059L196.629 9.04007C196.213 7.48738 194.146 7.22753 193.373 8.61828L187.655 18.4712Z" fill="#F4A155"/>
5
+ <path d="M159.964 37.688C160.543 40.6763 162.007 43.2425 164.007 45.1845L177.824 21.2534C175.142 20.4927 172.188 20.5077 169.31 21.5006C162.642 23.805 158.626 30.7612 159.964 37.688Z" fill="#F4A155"/>
6
+ <path d="M0 114.031L3.75 108.711C4.98438 110.008 6.46875 111.062 8.20312 111.875C9.95312 112.688 11.8594 113.094 13.9219 113.094C15.7188 113.094 17.0938 112.758 18.0469 112.086C19 111.398 19.4766 110.547 19.4766 109.531C19.4766 108.875 19.2109 108.312 18.6797 107.844C18.1484 107.359 17.4531 106.992 16.5938 106.742C15.7344 106.477 14.75 106.203 13.6406 105.922C12.5469 105.625 11.4219 105.352 10.2656 105.102C9.10938 104.836 7.97656 104.461 6.86719 103.977C5.77344 103.477 4.79688 102.906 3.9375 102.266C3.07812 101.609 2.38281 100.727 1.85156 99.6172C1.32031 98.5078 1.05469 97.2344 1.05469 95.7969C1.05469 93.0469 2.15625 90.7422 4.35938 88.8828C6.57812 87.0078 9.52344 86.0703 13.1953 86.0703C18.3203 86.0703 22.4844 87.5547 25.6875 90.5234L21.8906 95.6094C20.625 94.4531 19.1797 93.5859 17.5547 93.0078C15.9297 92.4141 14.2734 92.1172 12.5859 92.1172C11.1641 92.1172 10.0547 92.4062 9.25781 92.9844C8.46094 93.5469 8.0625 94.3125 8.0625 95.2812C8.0625 95.875 8.32031 96.3906 8.83594 96.8281C9.36719 97.2656 10.0625 97.6094 10.9219 97.8594C11.7969 98.0938 12.7812 98.3594 13.875 98.6562C14.9844 98.9375 16.1094 99.2109 17.25 99.4766C18.3906 99.7422 19.5078 100.133 20.6016 100.648C21.7109 101.148 22.6953 101.734 23.5547 102.406C24.4297 103.062 25.125 103.945 25.6406 105.055C26.1719 106.164 26.4375 107.43 26.4375 108.852C26.4375 111.914 25.3359 114.398 23.1328 116.305C20.9453 118.195 17.7812 119.141 13.6406 119.141C7.95312 119.141 3.40625 117.438 0 114.031Z" fill="#192937"/>
7
+ <path d="M33.1031 109.227C32.275 107.164 31.8609 104.945 31.8609 102.57C31.8609 100.195 32.275 97.9766 33.1031 95.9141C33.9469 93.8516 35.1031 92.1016 36.5719 90.6641C38.0406 89.2109 39.8141 88.0703 41.8922 87.2422C43.9703 86.4141 46.2047 86 48.5953 86C51.7828 86 54.6422 86.7031 57.1734 88.1094C59.7203 89.5156 61.7125 91.4844 63.15 94.0156C64.5875 96.5469 65.3063 99.3984 65.3063 102.57C65.3063 107.039 63.9156 110.812 61.1344 113.891L63.4781 116.633L58.7438 120.523L56.1422 117.547C53.8141 118.609 51.2984 119.141 48.5953 119.141C46.2047 119.141 43.9703 118.727 41.8922 117.898C39.8141 117.07 38.0406 115.938 36.5719 114.5C35.1031 113.047 33.9469 111.289 33.1031 109.227ZM38.8688 102.57C38.8688 105.602 39.7594 108.117 41.5406 110.117C43.3219 112.102 45.6734 113.094 48.5953 113.094C49.7047 113.094 50.8141 112.914 51.9234 112.555L48.4078 108.43L53.1656 104.539L56.6578 108.664C57.7516 106.914 58.2984 104.883 58.2984 102.57C58.2984 99.5234 57.4078 97.0156 55.6266 95.0469C53.8453 93.0625 51.5016 92.0703 48.5953 92.0703C45.6578 92.0703 43.2984 93.0625 41.5172 95.0469C39.7516 97.0156 38.8688 99.5234 38.8688 102.57Z" fill="#192937"/>
8
+ <path d="M72.4875 105.734V86.5391H79.4016V105.547C79.4016 107.828 80.05 109.656 81.3469 111.031C82.6594 112.406 84.5266 113.094 86.9484 113.094C89.3547 113.094 91.1984 112.414 92.4797 111.055C93.7766 109.68 94.425 107.844 94.425 105.547V86.5391H101.386V105.734C101.386 107.734 101.081 109.547 100.472 111.172C99.8781 112.797 98.9953 114.211 97.8234 115.414C96.6672 116.602 95.1594 117.523 93.3 118.18C91.4563 118.82 89.3391 119.141 86.9484 119.141C82.2141 119.141 78.6203 117.93 76.1672 115.508C73.7141 113.086 72.4875 109.828 72.4875 105.734Z" fill="#192937"/>
9
+ <path d="M105.192 118.555L117.52 86.5391H126.075L138.403 118.555H130.669L128.653 113.141H114.942L112.927 118.555H105.192ZM116.794 107.141H126.778L121.786 93.3594L116.794 107.141Z" fill="#192937"/>
10
+ <path d="M143.756 118.555V86.5391H158.733C162.014 86.5391 164.631 87.5 166.584 89.4219C168.553 91.3438 169.538 93.8203 169.538 96.8516C169.538 98.1953 169.334 99.4375 168.928 100.578C168.522 101.719 167.975 102.672 167.288 103.438C166.6 104.188 165.85 104.812 165.038 105.312C164.241 105.797 163.389 106.148 162.483 106.367L169.725 118.555H161.85L155.569 107.188H150.577V118.555H143.756ZM150.577 101.188H157.772C159.147 101.188 160.28 100.797 161.17 100.016C162.077 99.2188 162.53 98.1484 162.53 96.8047C162.53 95.5078 162.077 94.4766 161.17 93.7109C160.28 92.9297 159.147 92.5391 157.772 92.5391H150.577V101.188Z" fill="#192937"/>
11
+ <path d="M177 118.555V86.5391H199.664V92.5391H183.82V99.2656H199.312V105.266H183.82V112.555H199.664V118.555H177Z" fill="#192937"/>
12
+ <path d="M220.964 118.555V113.023L236.081 92.5391H220.964V86.5391H245.011V92L229.894 112.555H245.339V118.555H220.964Z" fill="#192937"/>
13
+ <path d="M252.919 118.555V86.5391H275.583V92.5391H259.739V99.2656H275.231V105.266H259.739V112.555H275.583V118.555H252.919Z" fill="#192937"/>
14
+ <path d="M283.303 118.555V86.5391H298.28C301.561 86.5391 304.178 87.5 306.131 89.4219C308.1 91.3438 309.084 93.8203 309.084 96.8516C309.084 98.1953 308.881 99.4375 308.475 100.578C308.069 101.719 307.522 102.672 306.834 103.438C306.147 104.188 305.397 104.812 304.584 105.312C303.788 105.797 302.936 106.148 302.03 106.367L309.272 118.555H301.397L295.116 107.188H290.123V118.555H283.303ZM290.123 101.188H297.319C298.694 101.188 299.827 100.797 300.717 100.016C301.623 99.2188 302.077 98.1484 302.077 96.8047C302.077 95.5078 301.623 94.4766 300.717 93.7109C299.827 92.9297 298.694 92.5391 297.319 92.5391H290.123V101.188Z" fill="#192937"/>
15
+ <path d="M316.266 109.227C315.438 107.164 315.023 104.945 315.023 102.57C315.023 100.195 315.438 97.9766 316.266 95.9141C317.109 93.8516 318.266 92.1016 319.734 90.6641C321.203 89.2109 322.977 88.0703 325.055 87.2422C327.133 86.4141 329.367 86 331.758 86C334.945 86 337.805 86.7031 340.336 88.1094C342.883 89.5156 344.875 91.4844 346.312 94.0156C347.75 96.5469 348.469 99.3984 348.469 102.57C348.469 105.742 347.75 108.594 346.312 111.125C344.875 113.656 342.883 115.625 340.336 117.031C337.805 118.438 334.945 119.141 331.758 119.141C329.367 119.141 327.133 118.727 325.055 117.898C322.977 117.07 321.203 115.938 319.734 114.5C318.266 113.047 317.109 111.289 316.266 109.227ZM322.031 102.57C322.031 105.602 322.922 108.117 324.703 110.117C326.484 112.102 328.836 113.094 331.758 113.094C334.664 113.094 337.008 112.102 338.789 110.117C340.57 108.117 341.461 105.602 341.461 102.57C341.461 99.5234 340.57 97.0156 338.789 95.0469C337.008 93.0625 334.664 92.0703 331.758 92.0703C328.82 92.0703 326.461 93.0625 324.68 95.0469C322.914 97.0156 322.031 99.5234 322.031 102.57Z" fill="#192937"/>
16
+ <path d="M100 165L110.635 137H118.015L128.651 165H121.978L120.24 160.265H108.411L106.672 165H100ZM110.009 155.018H118.622L114.315 142.965L110.009 155.018Z" fill="#F4A155"/>
17
+ <path d="M135.339 165V137H146.237C150.578 137 154.103 138.285 156.812 140.854C159.535 143.423 160.896 146.798 160.896 150.98C160.896 153.767 160.276 156.227 159.036 158.359C157.81 160.49 156.091 162.13 153.88 163.278C151.67 164.426 149.136 165 146.278 165H135.339ZM141.223 159.753H146.237C148.003 159.753 149.553 159.349 150.888 158.543C152.222 157.737 153.22 156.678 153.88 155.366C154.554 154.054 154.891 152.592 154.891 150.98C154.891 148.424 154.136 146.333 152.627 144.707C151.117 143.067 149.001 142.247 146.278 142.247H141.223V159.753Z" fill="#F4A155"/>
18
+ <path d="M169.203 165V137H177.452L184.145 154.505L190.857 137H199.147V165H193.223V144.81L185.439 165H182.871L175.086 144.81V165H169.203Z" fill="#F4A155"/>
19
+ <path d="M208.768 165V137H214.651V165H208.768Z" fill="#F4A155"/>
20
+ <path d="M224.272 165V137H230.317L243.116 154.587V137H249V165H243.318L230.156 146.736V165H224.272Z" fill="#F4A155"/>
21
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg width="349" height="165" viewBox="0 0 349 165" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M160.345 51.5281C157.023 48.7939 154.499 45.0325 153.297 40.5469C150.246 29.1605 157.066 17.3481 168.452 14.2971C172.938 13.0952 177.458 13.4005 181.486 14.9097L187.195 5.02231C187.978 3.66607 186.719 2.00624 185.201 2.41304L145.901 12.9435C142.105 13.9605 139.832 17.898 140.849 21.6934L151.37 60.9593C151.786 62.512 153.853 62.7718 154.627 61.3811L160.345 51.5281Z" fill="#F4A155"/>
3
+ <path d="M188.035 32.3115C187.456 29.3231 185.992 26.7569 183.992 24.815L170.176 48.746C172.857 49.5067 175.812 49.4917 178.689 48.4988C185.357 46.1944 189.373 39.2382 188.035 32.3115Z" fill="#F4A155"/>
4
+ <path d="M187.655 18.4712C190.976 21.2054 193.5 24.9669 194.702 29.4524C197.753 40.8388 190.933 52.6512 179.547 55.7022C175.061 56.9041 170.542 56.5989 166.513 55.0896L160.805 64.977C160.022 66.3333 161.28 67.9931 162.798 67.5863L202.099 57.0558C205.894 56.0388 208.167 52.1013 207.15 48.3059L196.629 9.04007C196.213 7.48738 194.146 7.22753 193.373 8.61828L187.655 18.4712Z" fill="#F4A155"/>
5
+ <path d="M159.964 37.688C160.543 40.6763 162.007 43.2425 164.007 45.1845L177.824 21.2534C175.142 20.4927 172.188 20.5077 169.31 21.5006C162.642 23.805 158.626 30.7612 159.964 37.688Z" fill="#F4A155"/>
6
+ <path d="M0 114.031L3.75 108.711C4.98438 110.008 6.46875 111.062 8.20312 111.875C9.95312 112.688 11.8594 113.094 13.9219 113.094C15.7188 113.094 17.0938 112.758 18.0469 112.086C19 111.398 19.4766 110.547 19.4766 109.531C19.4766 108.875 19.2109 108.312 18.6797 107.844C18.1484 107.359 17.4531 106.992 16.5938 106.742C15.7344 106.477 14.75 106.203 13.6406 105.922C12.5469 105.625 11.4219 105.352 10.2656 105.102C9.10938 104.836 7.97656 104.461 6.86719 103.977C5.77344 103.477 4.79688 102.906 3.9375 102.266C3.07812 101.609 2.38281 100.727 1.85156 99.6172C1.32031 98.5078 1.05469 97.2344 1.05469 95.7969C1.05469 93.0469 2.15625 90.7422 4.35938 88.8828C6.57812 87.0078 9.52344 86.0703 13.1953 86.0703C18.3203 86.0703 22.4844 87.5547 25.6875 90.5234L21.8906 95.6094C20.625 94.4531 19.1797 93.5859 17.5547 93.0078C15.9297 92.4141 14.2734 92.1172 12.5859 92.1172C11.1641 92.1172 10.0547 92.4062 9.25781 92.9844C8.46094 93.5469 8.0625 94.3125 8.0625 95.2812C8.0625 95.875 8.32031 96.3906 8.83594 96.8281C9.36719 97.2656 10.0625 97.6094 10.9219 97.8594C11.7969 98.0938 12.7812 98.3594 13.875 98.6562C14.9844 98.9375 16.1094 99.2109 17.25 99.4766C18.3906 99.7422 19.5078 100.133 20.6016 100.648C21.7109 101.148 22.6953 101.734 23.5547 102.406C24.4297 103.062 25.125 103.945 25.6406 105.055C26.1719 106.164 26.4375 107.43 26.4375 108.852C26.4375 111.914 25.3359 114.398 23.1328 116.305C20.9453 118.195 17.7812 119.141 13.6406 119.141C7.95312 119.141 3.40625 117.438 0 114.031Z" fill="#ffffff"/>
7
+ <path d="M33.1031 109.227C32.275 107.164 31.8609 104.945 31.8609 102.57C31.8609 100.195 32.275 97.9766 33.1031 95.9141C33.9469 93.8516 35.1031 92.1016 36.5719 90.6641C38.0406 89.2109 39.8141 88.0703 41.8922 87.2422C43.9703 86.4141 46.2047 86 48.5953 86C51.7828 86 54.6422 86.7031 57.1734 88.1094C59.7203 89.5156 61.7125 91.4844 63.15 94.0156C64.5875 96.5469 65.3063 99.3984 65.3063 102.57C65.3063 107.039 63.9156 110.812 61.1344 113.891L63.4781 116.633L58.7438 120.523L56.1422 117.547C53.8141 118.609 51.2984 119.141 48.5953 119.141C46.2047 119.141 43.9703 118.727 41.8922 117.898C39.8141 117.07 38.0406 115.938 36.5719 114.5C35.1031 113.047 33.9469 111.289 33.1031 109.227ZM38.8688 102.57C38.8688 105.602 39.7594 108.117 41.5406 110.117C43.3219 112.102 45.6734 113.094 48.5953 113.094C49.7047 113.094 50.8141 112.914 51.9234 112.555L48.4078 108.43L53.1656 104.539L56.6578 108.664C57.7516 106.914 58.2984 104.883 58.2984 102.57C58.2984 99.5234 57.4078 97.0156 55.6266 95.0469C53.8453 93.0625 51.5016 92.0703 48.5953 92.0703C45.6578 92.0703 43.2984 93.0625 41.5172 95.0469C39.7516 97.0156 38.8688 99.5234 38.8688 102.57Z" fill="#ffffff"/>
8
+ <path d="M72.4875 105.734V86.5391H79.4016V105.547C79.4016 107.828 80.05 109.656 81.3469 111.031C82.6594 112.406 84.5266 113.094 86.9484 113.094C89.3547 113.094 91.1984 112.414 92.4797 111.055C93.7766 109.68 94.425 107.844 94.425 105.547V86.5391H101.386V105.734C101.386 107.734 101.081 109.547 100.472 111.172C99.8781 112.797 98.9953 114.211 97.8234 115.414C96.6672 116.602 95.1594 117.523 93.3 118.18C91.4563 118.82 89.3391 119.141 86.9484 119.141C82.2141 119.141 78.6203 117.93 76.1672 115.508C73.7141 113.086 72.4875 109.828 72.4875 105.734Z" fill="#ffffff"/>
9
+ <path d="M105.192 118.555L117.52 86.5391H126.075L138.403 118.555H130.669L128.653 113.141H114.942L112.927 118.555H105.192ZM116.794 107.141H126.778L121.786 93.3594L116.794 107.141Z" fill="#ffffff"/>
10
+ <path d="M143.756 118.555V86.5391H158.733C162.014 86.5391 164.631 87.5 166.584 89.4219C168.553 91.3438 169.538 93.8203 169.538 96.8516C169.538 98.1953 169.334 99.4375 168.928 100.578C168.522 101.719 167.975 102.672 167.288 103.438C166.6 104.188 165.85 104.812 165.038 105.312C164.241 105.797 163.389 106.148 162.483 106.367L169.725 118.555H161.85L155.569 107.188H150.577V118.555H143.756ZM150.577 101.188H157.772C159.147 101.188 160.28 100.797 161.17 100.016C162.077 99.2188 162.53 98.1484 162.53 96.8047C162.53 95.5078 162.077 94.4766 161.17 93.7109C160.28 92.9297 159.147 92.5391 157.772 92.5391H150.577V101.188Z" fill="#ffffff"/>
11
+ <path d="M177 118.555V86.5391H199.664V92.5391H183.82V99.2656H199.312V105.266H183.82V112.555H199.664V118.555H177Z" fill="#ffffff"/>
12
+ <path d="M220.964 118.555V113.023L236.081 92.5391H220.964V86.5391H245.011V92L229.894 112.555H245.339V118.555H220.964Z" fill="#ffffff"/>
13
+ <path d="M252.919 118.555V86.5391H275.583V92.5391H259.739V99.2656H275.231V105.266H259.739V112.555H275.583V118.555H252.919Z" fill="#ffffff"/>
14
+ <path d="M283.303 118.555V86.5391H298.28C301.561 86.5391 304.178 87.5 306.131 89.4219C308.1 91.3438 309.084 93.8203 309.084 96.8516C309.084 98.1953 308.881 99.4375 308.475 100.578C308.069 101.719 307.522 102.672 306.834 103.438C306.147 104.188 305.397 104.812 304.584 105.312C303.788 105.797 302.936 106.148 302.03 106.367L309.272 118.555H301.397L295.116 107.188H290.123V118.555H283.303ZM290.123 101.188H297.319C298.694 101.188 299.827 100.797 300.717 100.016C301.623 99.2188 302.077 98.1484 302.077 96.8047C302.077 95.5078 301.623 94.4766 300.717 93.7109C299.827 92.9297 298.694 92.5391 297.319 92.5391H290.123V101.188Z" fill="#ffffff"/>
15
+ <path d="M316.266 109.227C315.438 107.164 315.023 104.945 315.023 102.57C315.023 100.195 315.438 97.9766 316.266 95.9141C317.109 93.8516 318.266 92.1016 319.734 90.6641C321.203 89.2109 322.977 88.0703 325.055 87.2422C327.133 86.4141 329.367 86 331.758 86C334.945 86 337.805 86.7031 340.336 88.1094C342.883 89.5156 344.875 91.4844 346.312 94.0156C347.75 96.5469 348.469 99.3984 348.469 102.57C348.469 105.742 347.75 108.594 346.312 111.125C344.875 113.656 342.883 115.625 340.336 117.031C337.805 118.438 334.945 119.141 331.758 119.141C329.367 119.141 327.133 118.727 325.055 117.898C322.977 117.07 321.203 115.938 319.734 114.5C318.266 113.047 317.109 111.289 316.266 109.227ZM322.031 102.57C322.031 105.602 322.922 108.117 324.703 110.117C326.484 112.102 328.836 113.094 331.758 113.094C334.664 113.094 337.008 112.102 338.789 110.117C340.57 108.117 341.461 105.602 341.461 102.57C341.461 99.5234 340.57 97.0156 338.789 95.0469C337.008 93.0625 334.664 92.0703 331.758 92.0703C328.82 92.0703 326.461 93.0625 324.68 95.0469C322.914 97.0156 322.031 99.5234 322.031 102.57Z" fill="#ffffff"/>
16
+ <path d="M100 165L110.635 137H118.015L128.651 165H121.978L120.24 160.265H108.411L106.672 165H100ZM110.009 155.018H118.622L114.315 142.965L110.009 155.018Z" fill="#F4A155"/>
17
+ <path d="M135.339 165V137H146.237C150.578 137 154.103 138.285 156.812 140.854C159.535 143.423 160.896 146.798 160.896 150.98C160.896 153.767 160.276 156.227 159.036 158.359C157.81 160.49 156.091 162.13 153.88 163.278C151.67 164.426 149.136 165 146.278 165H135.339ZM141.223 159.753H146.237C148.003 159.753 149.553 159.349 150.888 158.543C152.222 157.737 153.22 156.678 153.88 155.366C154.554 154.054 154.891 152.592 154.891 150.98C154.891 148.424 154.136 146.333 152.627 144.707C151.117 143.067 149.001 142.247 146.278 142.247H141.223V159.753Z" fill="#F4A155"/>
18
+ <path d="M169.203 165V137H177.452L184.145 154.505L190.857 137H199.147V165H193.223V144.81L185.439 165H182.871L175.086 144.81V165H169.203Z" fill="#F4A155"/>
19
+ <path d="M208.768 165V137H214.651V165H208.768Z" fill="#F4A155"/>
20
+ <path d="M224.272 165V137H230.317L243.116 154.587V137H249V165H243.318L230.156 146.736V165H224.272Z" fill="#F4A155"/>
21
+ </svg>