@scalar/api-reference 0.2.0 → 0.3.0

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 (466) hide show
  1. package/dist/components/ApiReference.vue.d.ts.map +1 -1
  2. package/dist/components/Content/ReferenceEndpoint/ExampleRequest.vue.d.ts.map +1 -1
  3. package/dist/components/Content/ReferenceEndpoint/ExampleResponses.vue.d.ts.map +1 -1
  4. package/dist/components/HelpfulLink.vue.d.ts +20 -0
  5. package/dist/components/HelpfulLink.vue.d.ts.map +1 -0
  6. package/dist/components/SearchModal.vue.d.ts.map +1 -1
  7. package/dist/components/SimpleTable/SimpleCell.vue.d.ts +40 -0
  8. package/dist/components/SimpleTable/SimpleCell.vue.d.ts.map +1 -0
  9. package/dist/components/SimpleTable/SimpleHeader.vue.d.ts +10 -0
  10. package/dist/components/SimpleTable/SimpleHeader.vue.d.ts.map +1 -0
  11. package/dist/components/SimpleTable/SimpleRow.vue.d.ts +10 -0
  12. package/dist/components/SimpleTable/SimpleRow.vue.d.ts.map +1 -0
  13. package/dist/components/SimpleTable/SimpleTable.vue.d.ts +10 -0
  14. package/dist/components/SimpleTable/SimpleTable.vue.d.ts.map +1 -0
  15. package/dist/components/SimpleTable/index.d.ts +5 -0
  16. package/dist/components/SimpleTable/index.d.ts.map +1 -0
  17. package/dist/index.js +32962 -37640
  18. package/package.json +11 -11
  19. package/src/components/ApiClientModal.vue +205 -0
  20. package/src/components/ApiReference.vue +754 -0
  21. package/src/components/Card/Card.vue +12 -0
  22. package/src/components/Card/CardContent.vue +45 -0
  23. package/src/components/Card/CardFooter.vue +13 -0
  24. package/src/components/Card/CardHeader.vue +37 -0
  25. package/src/components/Card/CardTab.vue +32 -0
  26. package/src/components/Card/CardTabHeader.vue +32 -0
  27. package/src/components/Card/index.ts +6 -0
  28. package/src/components/Content/Content.vue +145 -0
  29. package/src/components/Content/Introduction/BaseUrl.vue +32 -0
  30. package/src/components/Content/Introduction/Introduction.vue +141 -0
  31. package/src/components/Content/Introduction/LanguageSelector.vue +361 -0
  32. package/src/components/Content/Introduction/index.ts +1 -0
  33. package/src/components/Content/MarkdownRenderer.vue +174 -0
  34. package/src/components/Content/ReferenceEndpoint/Copy.vue +100 -0
  35. package/src/components/Content/ReferenceEndpoint/ExampleRequest.vue +317 -0
  36. package/src/components/Content/ReferenceEndpoint/ExampleResponseTab.vue +22 -0
  37. package/src/components/Content/ReferenceEndpoint/ExampleResponses.vue +168 -0
  38. package/src/components/Content/ReferenceEndpoint/ParameterItem.vue +26 -0
  39. package/src/components/Content/ReferenceEndpoint/Parameters.vue +23 -0
  40. package/src/components/Content/ReferenceEndpoint/ReferenceEndpoint.vue +29 -0
  41. package/src/components/Content/ReferenceEndpoint/RequestBody.vue +125 -0
  42. package/src/components/Content/ReferenceEndpoint/RequestBodyProperties.vue +54 -0
  43. package/src/components/Content/ReferenceEndpoint/RequestBodyPropertiesChild.vue +39 -0
  44. package/src/components/Content/ReferenceEndpoint/index.ts +1 -0
  45. package/src/components/Content/ReferenceTag.vue +99 -0
  46. package/src/components/Content/Spinner.vue +51 -0
  47. package/src/components/Content/index.ts +1 -0
  48. package/src/components/FindAnythingButton.vue +76 -0
  49. package/src/components/FlowButton.vue +184 -0
  50. package/src/components/FlowIconButton.vue +25 -0
  51. package/src/components/FlowLoader.vue +207 -0
  52. package/src/components/FlowModal.vue +133 -0
  53. package/src/components/HelpfulLink.vue +19 -0
  54. package/src/components/Icon/FlowIcon.vue +19 -0
  55. package/src/components/Icon/Icon.vue +23 -0
  56. package/src/components/Icon/SvgRenderer.ts +66 -0
  57. package/src/components/Icon/brand/brand-adobe.svg +1 -0
  58. package/src/components/Icon/brand/brand-amazon.svg +1 -0
  59. package/src/components/Icon/brand/brand-browser-firefox.svg +5 -0
  60. package/src/components/Icon/brand/brand-browser-googlechrome.svg +5 -0
  61. package/src/components/Icon/brand/brand-creative-commons.svg +1 -0
  62. package/src/components/Icon/brand/brand-ecommerce-etsy.svg +1 -0
  63. package/src/components/Icon/brand/brand-ecommerce-patreon.svg +1 -0
  64. package/src/components/Icon/brand/brand-ecommerce-shopify.svg +5 -0
  65. package/src/components/Icon/brand/brand-ecommerce-wordpress.svg +1 -0
  66. package/src/components/Icon/brand/brand-gaming-nintendo-switch.svg +5 -0
  67. package/src/components/Icon/brand/brand-gaming-playstation.svg +1 -0
  68. package/src/components/Icon/brand/brand-gaming-xbox-live.svg +5 -0
  69. package/src/components/Icon/brand/brand-google-drive.svg +5 -0
  70. package/src/components/Icon/brand/brand-google-gmail.svg +5 -0
  71. package/src/components/Icon/brand/brand-google.svg +1 -0
  72. package/src/components/Icon/brand/brand-music-itunes.svg +1 -0
  73. package/src/components/Icon/brand/brand-music-soundcloud.svg +1 -0
  74. package/src/components/Icon/brand/brand-music-spotify.svg +1 -0
  75. package/src/components/Icon/brand/brand-office-dropbox.svg +5 -0
  76. package/src/components/Icon/brand/brand-office-slack.svg +5 -0
  77. package/src/components/Icon/brand/brand-office-zoom.svg +1 -0
  78. package/src/components/Icon/brand/brand-payments-alipay.svg +1 -0
  79. package/src/components/Icon/brand/brand-payments-paypal.svg +1 -0
  80. package/src/components/Icon/brand/brand-payments-stripe.svg +1 -0
  81. package/src/components/Icon/brand/brand-platform-android.svg +1 -0
  82. package/src/components/Icon/brand/brand-platform-apple.svg +5 -0
  83. package/src/components/Icon/brand/brand-platform-linux.svg +5 -0
  84. package/src/components/Icon/brand/brand-platform-microsoft-windows.svg +4 -0
  85. package/src/components/Icon/brand/brand-social-chat-discord.svg +5 -0
  86. package/src/components/Icon/brand/brand-social-chat-kuaishou.svg +5 -0
  87. package/src/components/Icon/brand/brand-social-chat-line.svg +5 -0
  88. package/src/components/Icon/brand/brand-social-chat-messenger.svg +5 -0
  89. package/src/components/Icon/brand/brand-social-chat-signal.svg +5 -0
  90. package/src/components/Icon/brand/brand-social-chat-snapchat.svg +5 -0
  91. package/src/components/Icon/brand/brand-social-chat-telegram.svg +5 -0
  92. package/src/components/Icon/brand/brand-social-chat-wechat.svg +5 -0
  93. package/src/components/Icon/brand/brand-social-chat-whatsapp.svg +5 -0
  94. package/src/components/Icon/brand/brand-social-media-deviantart.svg +5 -0
  95. package/src/components/Icon/brand/brand-social-media-dribbble.svg +1 -0
  96. package/src/components/Icon/brand/brand-social-media-facebook.svg +1 -0
  97. package/src/components/Icon/brand/brand-social-media-instagram.svg +5 -0
  98. package/src/components/Icon/brand/brand-social-media-linkedin.svg +5 -0
  99. package/src/components/Icon/brand/brand-social-media-pinterest.svg +5 -0
  100. package/src/components/Icon/brand/brand-social-media-reddit.svg +1 -0
  101. package/src/components/Icon/brand/brand-social-media-sina-weibo.svg +5 -0
  102. package/src/components/Icon/brand/brand-social-media-threads.svg +1 -0
  103. package/src/components/Icon/brand/brand-social-media-tiktok.svg +5 -0
  104. package/src/components/Icon/brand/brand-social-media-tinder.svg +1 -0
  105. package/src/components/Icon/brand/brand-social-media-tumblr.svg +5 -0
  106. package/src/components/Icon/brand/brand-social-media-twitter.svg +5 -0
  107. package/src/components/Icon/brand/brand-software-design-figma.svg +1 -0
  108. package/src/components/Icon/brand/brand-software-development-authy.svg +1 -0
  109. package/src/components/Icon/brand/brand-software-development-digital-ocean.svg +1 -0
  110. package/src/components/Icon/brand/brand-software-development-docker.svg +5 -0
  111. package/src/components/Icon/brand/brand-software-development-github.svg +5 -0
  112. package/src/components/Icon/brand/brand-software-development-jira.svg +1 -0
  113. package/src/components/Icon/brand/brand-software-development-openai.svg +1 -0
  114. package/src/components/Icon/brand/brand-software-development-stackexchange.svg +5 -0
  115. package/src/components/Icon/brand/brand-software-development-stackoverflow.svg +1 -0
  116. package/src/components/Icon/brand/brand-video-netflix.svg +5 -0
  117. package/src/components/Icon/brand/brand-video-twitch.svg +1 -0
  118. package/src/components/Icon/brand/brand-video-vimeo.svg +5 -0
  119. package/src/components/Icon/brand/brand-video-youtube.svg +5 -0
  120. package/src/components/Icon/brand/programming-framework-angular.svg +5 -0
  121. package/src/components/Icon/brand/programming-framework-astro.svg +5 -0
  122. package/src/components/Icon/brand/programming-framework-laravel.svg +1 -0
  123. package/src/components/Icon/brand/programming-framework-nextdotjs.svg +5 -0
  124. package/src/components/Icon/brand/programming-framework-react.svg +5 -0
  125. package/src/components/Icon/brand/programming-framework-vuedotjs.svg +1 -0
  126. package/src/components/Icon/brand/programming-language-c.svg +5 -0
  127. package/src/components/Icon/brand/programming-language-clojure.svg +5 -0
  128. package/src/components/Icon/brand/programming-language-csharp.svg +4 -0
  129. package/src/components/Icon/brand/programming-language-css3.svg +4 -0
  130. package/src/components/Icon/brand/programming-language-go.svg +4 -0
  131. package/src/components/Icon/brand/programming-language-html5.svg +4 -0
  132. package/src/components/Icon/brand/programming-language-java.svg +21 -0
  133. package/src/components/Icon/brand/programming-language-javascript-js.svg +4 -0
  134. package/src/components/Icon/brand/programming-language-json.svg +8 -0
  135. package/src/components/Icon/brand/programming-language-kotlin.svg +3 -0
  136. package/src/components/Icon/brand/programming-language-node.svg +10 -0
  137. package/src/components/Icon/brand/programming-language-objc.svg +6 -0
  138. package/src/components/Icon/brand/programming-language-ocaml.svg +4 -0
  139. package/src/components/Icon/brand/programming-language-php.svg +4 -0
  140. package/src/components/Icon/brand/programming-language-powershell.svg +10 -0
  141. package/src/components/Icon/brand/programming-language-python.svg +4 -0
  142. package/src/components/Icon/brand/programming-language-r.svg +7 -0
  143. package/src/components/Icon/brand/programming-language-ruby.svg +5 -0
  144. package/src/components/Icon/brand/programming-language-scala.svg +5 -0
  145. package/src/components/Icon/brand/programming-language-shell.svg +5 -0
  146. package/src/components/Icon/brand/programming-language-swift.svg +4 -0
  147. package/src/components/Icon/brand/programming-language-typescript.svg +5 -0
  148. package/src/components/Icon/brand/programming-tool-git.svg +1 -0
  149. package/src/components/Icon/brand/programming-tool-tailwindcss.svg +5 -0
  150. package/src/components/Icon/icons/Add.svg +4 -0
  151. package/src/components/Icon/icons/ArrowDown.svg +3 -0
  152. package/src/components/Icon/icons/ArrowLeft.svg +3 -0
  153. package/src/components/Icon/icons/ArrowRight.svg +3 -0
  154. package/src/components/Icon/icons/ArrowUp.svg +3 -0
  155. package/src/components/Icon/icons/Background.svg +8 -0
  156. package/src/components/Icon/icons/CallToAction.svg +5 -0
  157. package/src/components/Icon/icons/CheckMark.svg +3 -0
  158. package/src/components/Icon/icons/ChevronDown.svg +3 -0
  159. package/src/components/Icon/icons/ChevronLeft.svg +3 -0
  160. package/src/components/Icon/icons/ChevronRight.svg +3 -0
  161. package/src/components/Icon/icons/ChevronUp.svg +3 -0
  162. package/src/components/Icon/icons/Close.svg +3 -0
  163. package/src/components/Icon/icons/DarkMode.svg +4 -0
  164. package/src/components/Icon/icons/Delete.svg +5 -0
  165. package/src/components/Icon/icons/Discord.svg +5 -0
  166. package/src/components/Icon/icons/Duplicate.svg +6 -0
  167. package/src/components/Icon/icons/Edit.svg +4 -0
  168. package/src/components/Icon/icons/EditorBold.svg +4 -0
  169. package/src/components/Icon/icons/EditorCode.svg +6 -0
  170. package/src/components/Icon/icons/EditorHighlight.svg +12 -0
  171. package/src/components/Icon/icons/EditorItalic.svg +4 -0
  172. package/src/components/Icon/icons/EditorLink.svg +8 -0
  173. package/src/components/Icon/icons/EditorStrike.svg +4 -0
  174. package/src/components/Icon/icons/EditorUnderline.svg +6 -0
  175. package/src/components/Icon/icons/Ellipses.svg +4 -0
  176. package/src/components/Icon/icons/Error.svg +4 -0
  177. package/src/components/Icon/icons/ExternalLink.svg +7 -0
  178. package/src/components/Icon/icons/Folder.svg +4 -0
  179. package/src/components/Icon/icons/GitHub.svg +4 -0
  180. package/src/components/Icon/icons/Google.svg +4 -0
  181. package/src/components/Icon/icons/Hide.svg +5 -0
  182. package/src/components/Icon/icons/Key.svg +5 -0
  183. package/src/components/Icon/icons/Leave.svg +5 -0
  184. package/src/components/Icon/icons/LightMode.svg +6 -0
  185. package/src/components/Icon/icons/Link.svg +5 -0
  186. package/src/components/Icon/icons/Lock.svg +4 -0
  187. package/src/components/Icon/icons/Logo.svg +4 -0
  188. package/src/components/Icon/icons/LogoAPI.svg +4 -0
  189. package/src/components/Icon/icons/LogoClient.svg +4 -0
  190. package/src/components/Icon/icons/LogoMarket.svg +4 -0
  191. package/src/components/Icon/icons/LogoSwagger.svg +4 -0
  192. package/src/components/Icon/icons/Magic.svg +5 -0
  193. package/src/components/Icon/icons/Menu.svg +3 -0
  194. package/src/components/Icon/icons/Page.svg +8 -0
  195. package/src/components/Icon/icons/Payment.svg +5 -0
  196. package/src/components/Icon/icons/Refresh.svg +4 -0
  197. package/src/components/Icon/icons/Search.svg +4 -0
  198. package/src/components/Icon/icons/Show.svg +5 -0
  199. package/src/components/Icon/icons/Sigma.svg +4 -0
  200. package/src/components/Icon/icons/Trash.svg +5 -0
  201. package/src/components/Icon/icons/index.ts +65 -0
  202. package/src/components/Icon/index.ts +2 -0
  203. package/src/components/Icon/line/arrow-chevron-down.svg +1 -0
  204. package/src/components/Icon/line/arrow-chevron-left.svg +1 -0
  205. package/src/components/Icon/line/arrow-chevron-right.svg +1 -0
  206. package/src/components/Icon/line/arrow-chevron-up.svg +1 -0
  207. package/src/components/Icon/line/arrow-down.svg +1 -0
  208. package/src/components/Icon/line/arrow-left.svg +1 -0
  209. package/src/components/Icon/line/arrow-right.svg +1 -0
  210. package/src/components/Icon/line/arrow-up.svg +1 -0
  211. package/src/components/Icon/line/basic-shape-diamond.svg +1 -0
  212. package/src/components/Icon/line/basic-shape-hexagon.svg +1 -0
  213. package/src/components/Icon/line/basic-shape-primary-circle-ellipse-round.svg +1 -0
  214. package/src/components/Icon/line/basic-shape-primary-square-rectangle.svg +1 -0
  215. package/src/components/Icon/line/basic-shape-shield.svg +1 -0
  216. package/src/components/Icon/line/computer-device-desktop-monitor.svg +1 -0
  217. package/src/components/Icon/line/computer-device-desktop.svg +1 -0
  218. package/src/components/Icon/line/computer-device-laptop.svg +1 -0
  219. package/src/components/Icon/line/computer-device-mobile-phone-android-samsung-back.svg +1 -0
  220. package/src/components/Icon/line/computer-device-mobile-phone-android-samsung.svg +1 -0
  221. package/src/components/Icon/line/computer-device-mobile-phone-iphone-x-back.svg +1 -0
  222. package/src/components/Icon/line/computer-device-mobile-phone-iphone-x.svg +1 -0
  223. package/src/components/Icon/line/computer-device-mobile-tablet-touch.svg +1 -0
  224. package/src/components/Icon/line/computer-device-mobile-tablet.svg +1 -0
  225. package/src/components/Icon/line/computer-device-network-ethernet-cat6.svg +1 -0
  226. package/src/components/Icon/line/computer-device-network-lan-www.svg +1 -0
  227. package/src/components/Icon/line/computer-device-network-wifi-connection.svg +1 -0
  228. package/src/components/Icon/line/computer-device-network-wifi-router.svg +1 -0
  229. package/src/components/Icon/line/computer-keyboard-alt.svg +1 -0
  230. package/src/components/Icon/line/computer-keyboard-command-cmd-control-ctrl.svg +1 -0
  231. package/src/components/Icon/line/computer-keyboard-option.svg +1 -0
  232. package/src/components/Icon/line/computer-keyboard-shift.svg +1 -0
  233. package/src/components/Icon/line/ecology-science-erlenmeyer-flask.svg +1 -0
  234. package/src/components/Icon/line/entertainment-control-button-circle-left-arrow-rewind.svg +1 -0
  235. package/src/components/Icon/line/entertainment-control-button-circle-pause.svg +1 -0
  236. package/src/components/Icon/line/entertainment-control-button-circle-right-arrow-fast-forward.svg +1 -0
  237. package/src/components/Icon/line/entertainment-control-button-circle-stop-square.svg +1 -0
  238. package/src/components/Icon/line/entertainment-control-button-play-circle.svg +1 -0
  239. package/src/components/Icon/line/entertainment-party-popper-confetti.svg +1 -0
  240. package/src/components/Icon/line/image-flash-lightning.svg +1 -0
  241. package/src/components/Icon/line/image-photo-frame.svg +1 -0
  242. package/src/components/Icon/line/image-picture-flower.svg +1 -0
  243. package/src/components/Icon/line/interface-add.svg +1 -0
  244. package/src/components/Icon/line/interface-alert-error-exclamation-block-square.svg +1 -0
  245. package/src/components/Icon/line/interface-alert-error-x-block-square.svg +1 -0
  246. package/src/components/Icon/line/interface-alert-exclamation-diamond.svg +1 -0
  247. package/src/components/Icon/line/interface-alert-exclamation-triangle-warning.svg +1 -0
  248. package/src/components/Icon/line/interface-alert-information-circle.svg +1 -0
  249. package/src/components/Icon/line/interface-award-crown.svg +1 -0
  250. package/src/components/Icon/line/interface-bookmark-tag.svg +1 -0
  251. package/src/components/Icon/line/interface-bookmark.svg +1 -0
  252. package/src/components/Icon/line/interface-calendar-date-one.svg +1 -0
  253. package/src/components/Icon/line/interface-close.svg +1 -0
  254. package/src/components/Icon/line/interface-content-book-open-pages.svg +1 -0
  255. package/src/components/Icon/line/interface-content-book-page.svg +1 -0
  256. package/src/components/Icon/line/interface-content-file.svg +8 -0
  257. package/src/components/Icon/line/interface-content-folder.svg +1 -0
  258. package/src/components/Icon/line/interface-copy-clipboard.svg +1 -0
  259. package/src/components/Icon/line/interface-delete-bin-trash.svg +1 -0
  260. package/src/components/Icon/line/interface-dots-horizontal.svg +1 -0
  261. package/src/components/Icon/line/interface-dots-vertical.svg +1 -0
  262. package/src/components/Icon/line/interface-edit-attachment.svg +1 -0
  263. package/src/components/Icon/line/interface-edit-binocular.svg +1 -0
  264. package/src/components/Icon/line/interface-edit-magic-wand.svg +1 -0
  265. package/src/components/Icon/line/interface-edit-tool-eraser.svg +1 -0
  266. package/src/components/Icon/line/interface-edit-tool-paint-brush.svg +1 -0
  267. package/src/components/Icon/line/interface-edit-tool-paint-roller.svg +1 -0
  268. package/src/components/Icon/line/interface-edit-tool-pen.svg +1 -0
  269. package/src/components/Icon/line/interface-edit-tool-pencil.svg +1 -0
  270. package/src/components/Icon/line/interface-edit-view-eye.svg +1 -0
  271. package/src/components/Icon/line/interface-favorite-award.svg +1 -0
  272. package/src/components/Icon/line/interface-favorite-flag.svg +1 -0
  273. package/src/components/Icon/line/interface-favorite-heart.svg +1 -0
  274. package/src/components/Icon/line/interface-favorite-star.svg +1 -0
  275. package/src/components/Icon/line/interface-favorite-stars-shining.svg +1 -0
  276. package/src/components/Icon/line/interface-favorite-stars-sparkles.svg +1 -0
  277. package/src/components/Icon/line/interface-hierarchy-flowchart.svg +1 -0
  278. package/src/components/Icon/line/interface-home-house.svg +1 -0
  279. package/src/components/Icon/line/interface-hyperlink.svg +1 -0
  280. package/src/components/Icon/line/interface-lighting-brightness.svg +1 -0
  281. package/src/components/Icon/line/interface-lock-closed.svg +1 -0
  282. package/src/components/Icon/line/interface-lock-open-unlock.svg +1 -0
  283. package/src/components/Icon/line/interface-login-key.svg +1 -0
  284. package/src/components/Icon/line/interface-search.svg +1 -0
  285. package/src/components/Icon/line/interface-setting-cog.svg +1 -0
  286. package/src/components/Icon/line/interface-share-megaphone-bullhorn.svg +1 -0
  287. package/src/components/Icon/line/interface-share-rocket.svg +1 -0
  288. package/src/components/Icon/line/interface-share-satellite.svg +1 -0
  289. package/src/components/Icon/line/interface-share-space-ship.svg +1 -0
  290. package/src/components/Icon/line/interface-share.svg +1 -0
  291. package/src/components/Icon/line/interface-signal-square.svg +1 -0
  292. package/src/components/Icon/line/interface-text-formatting-left-open-quote.svg +1 -0
  293. package/src/components/Icon/line/interface-text-formatting-right-close-quote.svg +1 -0
  294. package/src/components/Icon/line/interface-time-clock-circle.svg +1 -0
  295. package/src/components/Icon/line/interface-time-hour-glass.svg +1 -0
  296. package/src/components/Icon/line/interface-users-multiple.svg +1 -0
  297. package/src/components/Icon/line/interface-validation-checkbox-square.svg +1 -0
  298. package/src/components/Icon/line/interface-weather-moon.svg +1 -0
  299. package/src/components/Icon/line/legal-justice-hammer-gavel.svg +1 -0
  300. package/src/components/Icon/line/mail-chat-bubble-square.svg +1 -0
  301. package/src/components/Icon/line/mail-send-email-paper-airplane.svg +1 -0
  302. package/src/components/Icon/line/mail-send-envelope.svg +1 -0
  303. package/src/components/Icon/line/mail-sign-hashtag.svg +1 -0
  304. package/src/components/Icon/line/money-cashier-receipt.svg +1 -0
  305. package/src/components/Icon/line/money-currency-dollar-pay.svg +1 -0
  306. package/src/components/Icon/line/money-graph-arrow-increase.svg +1 -0
  307. package/src/components/Icon/line/money-graph-bar-chart-increase.svg +1 -0
  308. package/src/components/Icon/line/nature-ecology-leaf.svg +1 -0
  309. package/src/components/Icon/line/phone-telephone.svg +1 -0
  310. package/src/components/Icon/line/programming-bug.svg +1 -0
  311. package/src/components/Icon/line/programming-cloud.svg +1 -0
  312. package/src/components/Icon/line/programming-computer-database-server.svg +1 -0
  313. package/src/components/Icon/line/programming-computer-database.svg +1 -0
  314. package/src/components/Icon/line/programming-module-four-layout.svg +1 -0
  315. package/src/components/Icon/line/programming-module-three.svg +1 -0
  316. package/src/components/Icon/line/programming-module.svg +1 -0
  317. package/src/components/Icon/line/programming-script-code.svg +1 -0
  318. package/src/components/Icon/line/shopping-cart.svg +8 -0
  319. package/src/components/Icon/line/shopping-gift-present.svg +1 -0
  320. package/src/components/Icon/line/shopping-shipping-box-parcel-package.svg +1 -0
  321. package/src/components/Icon/line/tag-new-circle.svg +1 -0
  322. package/src/components/Icon/line/travel-map-earth-globe.svg +1 -0
  323. package/src/components/Icon/localIcons.ts +68 -0
  324. package/src/components/Icon/solid/arrow-chevron-down.svg +1 -0
  325. package/src/components/Icon/solid/arrow-chevron-left.svg +1 -0
  326. package/src/components/Icon/solid/arrow-chevron-right.svg +1 -0
  327. package/src/components/Icon/solid/arrow-chevron-up.svg +1 -0
  328. package/src/components/Icon/solid/arrow-down.svg +1 -0
  329. package/src/components/Icon/solid/arrow-left.svg +1 -0
  330. package/src/components/Icon/solid/arrow-right.svg +1 -0
  331. package/src/components/Icon/solid/arrow-up.svg +1 -0
  332. package/src/components/Icon/solid/basic-shape-diamond.svg +1 -0
  333. package/src/components/Icon/solid/basic-shape-hexagon.svg +1 -0
  334. package/src/components/Icon/solid/basic-shape-primary-circle-ellipse-round.svg +1 -0
  335. package/src/components/Icon/solid/basic-shape-primary-square-rectangle.svg +1 -0
  336. package/src/components/Icon/solid/basic-shape-shield.svg +1 -0
  337. package/src/components/Icon/solid/computer-device-desktop-monitor.svg +1 -0
  338. package/src/components/Icon/solid/computer-device-desktop.svg +1 -0
  339. package/src/components/Icon/solid/computer-device-laptop.svg +1 -0
  340. package/src/components/Icon/solid/computer-device-mobile-phone-android-samsung-back.svg +1 -0
  341. package/src/components/Icon/solid/computer-device-mobile-phone-android-samsung.svg +1 -0
  342. package/src/components/Icon/solid/computer-device-mobile-phone-iphone-x-back.svg +1 -0
  343. package/src/components/Icon/solid/computer-device-mobile-phone-iphone-x.svg +1 -0
  344. package/src/components/Icon/solid/computer-device-mobile-tablet-touch.svg +1 -0
  345. package/src/components/Icon/solid/computer-device-mobile-tablet.svg +1 -0
  346. package/src/components/Icon/solid/computer-device-network-ethernet-cat6.svg +1 -0
  347. package/src/components/Icon/solid/computer-device-network-lan-www.svg +1 -0
  348. package/src/components/Icon/solid/computer-device-network-wifi-connection.svg +5 -0
  349. package/src/components/Icon/solid/computer-device-network-wifi-router.svg +1 -0
  350. package/src/components/Icon/solid/computer-keyboard-alt.svg +1 -0
  351. package/src/components/Icon/solid/computer-keyboard-command-cmd-control-ctrl.svg +1 -0
  352. package/src/components/Icon/solid/computer-keyboard-option.svg +1 -0
  353. package/src/components/Icon/solid/computer-keyboard-shift.svg +1 -0
  354. package/src/components/Icon/solid/ecology-science-erlenmeyer-flask.svg +1 -0
  355. package/src/components/Icon/solid/entertainment-control-button-circle-left-arrow-rewind.svg +1 -0
  356. package/src/components/Icon/solid/entertainment-control-button-circle-pause.svg +1 -0
  357. package/src/components/Icon/solid/entertainment-control-button-circle-play.svg +5 -0
  358. package/src/components/Icon/solid/entertainment-control-button-circle-right-arrow-fast-forward.svg +1 -0
  359. package/src/components/Icon/solid/entertainment-control-button-circle-stop-square.svg +1 -0
  360. package/src/components/Icon/solid/entertainment-party-popper-confetti.svg +1 -0
  361. package/src/components/Icon/solid/image-flash-lightning.svg +5 -0
  362. package/src/components/Icon/solid/image-photo-frame.svg +11 -0
  363. package/src/components/Icon/solid/image-picture-flower.svg +5 -0
  364. package/src/components/Icon/solid/interface-add-square.svg +5 -0
  365. package/src/components/Icon/solid/interface-alert-error-exclamation-block-square.svg +1 -0
  366. package/src/components/Icon/solid/interface-alert-error-x-block-square.svg +1 -0
  367. package/src/components/Icon/solid/interface-alert-exclamation-diamond.svg +1 -0
  368. package/src/components/Icon/solid/interface-alert-exclamation-triangle-warning.svg +1 -0
  369. package/src/components/Icon/solid/interface-alert-information-circle.svg +5 -0
  370. package/src/components/Icon/solid/interface-award-crown.svg +5 -0
  371. package/src/components/Icon/solid/interface-bookmark-tag.svg +1 -0
  372. package/src/components/Icon/solid/interface-bookmark.svg +5 -0
  373. package/src/components/Icon/solid/interface-calendar-date-one.svg +5 -0
  374. package/src/components/Icon/solid/interface-close.svg +8 -0
  375. package/src/components/Icon/solid/interface-content-book-open-pages.svg +13 -0
  376. package/src/components/Icon/solid/interface-content-book-page.svg +5 -0
  377. package/src/components/Icon/solid/interface-content-file.svg +5 -0
  378. package/src/components/Icon/solid/interface-content-folder.svg +1 -0
  379. package/src/components/Icon/solid/interface-copy-clipboard.svg +5 -0
  380. package/src/components/Icon/solid/interface-delete-bin-trash.svg +1 -0
  381. package/src/components/Icon/solid/interface-dots-horizontal.svg +1 -0
  382. package/src/components/Icon/solid/interface-dots-vertical.svg +1 -0
  383. package/src/components/Icon/solid/interface-edit-attachment.svg +5 -0
  384. package/src/components/Icon/solid/interface-edit-binocular.svg +5 -0
  385. package/src/components/Icon/solid/interface-edit-magic-wand.svg +7 -0
  386. package/src/components/Icon/solid/interface-edit-tool-eraser.svg +1 -0
  387. package/src/components/Icon/solid/interface-edit-tool-paint-brush.svg +1 -0
  388. package/src/components/Icon/solid/interface-edit-tool-paint-roller.svg +5 -0
  389. package/src/components/Icon/solid/interface-edit-tool-pen.svg +5 -0
  390. package/src/components/Icon/solid/interface-edit-tool-pencil.svg +1 -0
  391. package/src/components/Icon/solid/interface-edit-view-eye.svg +7 -0
  392. package/src/components/Icon/solid/interface-favorite-award.svg +5 -0
  393. package/src/components/Icon/solid/interface-favorite-flag.svg +1 -0
  394. package/src/components/Icon/solid/interface-favorite-heart.svg +5 -0
  395. package/src/components/Icon/solid/interface-favorite-star.svg +5 -0
  396. package/src/components/Icon/solid/interface-favorite-stars-shining.svg +1 -0
  397. package/src/components/Icon/solid/interface-favorite-stars-sparkles.svg +1 -0
  398. package/src/components/Icon/solid/interface-hierarchy-flowchart.svg +5 -0
  399. package/src/components/Icon/solid/interface-home-house.svg +5 -0
  400. package/src/components/Icon/solid/interface-hyperlink.svg +5 -0
  401. package/src/components/Icon/solid/interface-lighting-brightness.svg +22 -0
  402. package/src/components/Icon/solid/interface-lock-closed.svg +5 -0
  403. package/src/components/Icon/solid/interface-lock-open-unlock.svg +1 -0
  404. package/src/components/Icon/solid/interface-login-key.svg +5 -0
  405. package/src/components/Icon/solid/interface-search.svg +5 -0
  406. package/src/components/Icon/solid/interface-setting-cog.svg +5 -0
  407. package/src/components/Icon/solid/interface-share-megaphone-bullhorn.svg +5 -0
  408. package/src/components/Icon/solid/interface-share-rocket.svg +1 -0
  409. package/src/components/Icon/solid/interface-share-satellite.svg +8 -0
  410. package/src/components/Icon/solid/interface-share-space-ship.svg +1 -0
  411. package/src/components/Icon/solid/interface-share.svg +5 -0
  412. package/src/components/Icon/solid/interface-signal-square.svg +5 -0
  413. package/src/components/Icon/solid/interface-text-formatting-left-open-quote.svg +1 -0
  414. package/src/components/Icon/solid/interface-text-formatting-right-close-quote.svg +1 -0
  415. package/src/components/Icon/solid/interface-time-clock-circle.svg +5 -0
  416. package/src/components/Icon/solid/interface-time-hour-glass.svg +1 -0
  417. package/src/components/Icon/solid/interface-users-multiple.svg +11 -0
  418. package/src/components/Icon/solid/interface-validation-checkbox-square.svg +5 -0
  419. package/src/components/Icon/solid/interface-weather-moon.svg +5 -0
  420. package/src/components/Icon/solid/legal-justice-hammer-gavel.svg +1 -0
  421. package/src/components/Icon/solid/mail-chat-bubble-square.svg +5 -0
  422. package/src/components/Icon/solid/mail-send-email-paper-airplane.svg +5 -0
  423. package/src/components/Icon/solid/mail-send-envelope.svg +1 -0
  424. package/src/components/Icon/solid/mail-sign-hashtag.svg +5 -0
  425. package/src/components/Icon/solid/money-cashier-receipt.svg +1 -0
  426. package/src/components/Icon/solid/money-currency-dollar-pay.svg +5 -0
  427. package/src/components/Icon/solid/money-graph-arrow-increase.svg +5 -0
  428. package/src/components/Icon/solid/money-graph-bar-chart-increase.svg +1 -0
  429. package/src/components/Icon/solid/nature-ecology-leaf.svg +5 -0
  430. package/src/components/Icon/solid/phone-telephone.svg +5 -0
  431. package/src/components/Icon/solid/programming-bug.svg +5 -0
  432. package/src/components/Icon/solid/programming-cloud.svg +4 -0
  433. package/src/components/Icon/solid/programming-computer-database-server.svg +5 -0
  434. package/src/components/Icon/solid/programming-computer-database.svg +5 -0
  435. package/src/components/Icon/solid/programming-module-four-layout.svg +1 -0
  436. package/src/components/Icon/solid/programming-module-three.svg +1 -0
  437. package/src/components/Icon/solid/programming-module.svg +1 -0
  438. package/src/components/Icon/solid/programming-script-code.svg +5 -0
  439. package/src/components/Icon/solid/shopping-cart.svg +1 -0
  440. package/src/components/Icon/solid/shopping-gift-present.svg +16 -0
  441. package/src/components/Icon/solid/shopping-shipping-box-parcel-package.svg +11 -0
  442. package/src/components/Icon/solid/tag-new-circle.svg +7 -0
  443. package/src/components/Icon/solid/travel-map-earth-globe.svg +5 -0
  444. package/src/components/SearchModal.vue +305 -0
  445. package/src/components/Sidebar.vue +289 -0
  446. package/src/components/SidebarElement.vue +133 -0
  447. package/src/components/SidebarGroup.vue +12 -0
  448. package/src/components/SimpleTable/SimpleCell.vue +46 -0
  449. package/src/components/SimpleTable/SimpleHeader.vue +17 -0
  450. package/src/components/SimpleTable/SimpleRow.vue +5 -0
  451. package/src/components/SimpleTable/SimpleTable.vue +13 -0
  452. package/src/components/SimpleTable/index.ts +4 -0
  453. package/src/declarations/typographic-base.d.ts +1 -0
  454. package/src/helpers/generateAxiosCodeFromRequest.ts +42 -0
  455. package/src/helpers/generateLaravelCodeFromRequest.ts +20 -0
  456. package/src/helpers/index.ts +4 -0
  457. package/src/helpers/objectMerge.ts +19 -0
  458. package/src/helpers/specHelpers.ts +62 -0
  459. package/src/helpers/transformToJson.test.ts +7 -0
  460. package/src/helpers/transformToJson.ts +22 -0
  461. package/src/hooks/useRefOnMount.ts +12 -0
  462. package/src/index.ts +11 -0
  463. package/src/standalone.ts +28 -0
  464. package/src/stores/template.ts +66 -0
  465. package/src/stores/utility.ts +23 -0
  466. package/src/types.ts +154 -0
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M8.5,0h-7A1.5,1.5,0,0,0,0,1.5v5A1.5,1.5,0,0,0,1.5,8H2V9.5a.5.5,0,0,0,.283.451A.508.508,0,0,0,2.5,10a.5.5,0,0,0,.312-.109L5.176,8H8.5A1.5,1.5,0,0,0,10,6.5v-5A1.5,1.5,0,0,0,8.5,0Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M11.8214 0.0977942C12.1097 -0.00745677 12.4219 -0.0286524 12.7219 0.0367783C13.0248 0.102864 13.3024 0.254542 13.5216 0.47378C13.7408 0.693018 13.8925 0.970598 13.9586 1.27352C14.024 1.57344 14.0028 1.88572 13.8976 2.17395L10.3236 12.8859L10.3234 12.8866C10.2363 13.1501 10.083 13.3868 9.8781 13.574C9.6738 13.7606 9.42509 13.8918 9.15572 13.9549C8.8863 14.0206 8.60441 14.0151 8.33774 13.9389C8.07131 13.8628 7.82926 13.7187 7.63529 13.5209L5.71795 11.6124L3.70389 12.6538C3.54684 12.7351 3.35857 12.7273 3.20874 12.6334C3.05892 12.5395 2.96981 12.3735 2.9744 12.1967L3.05697 9.013L10.1019 3.8956C10.3812 3.69273 10.4432 3.30188 10.2403 3.02261C10.0374 2.74333 9.64659 2.68139 9.36731 2.88425L2.20283 8.08846L0.473125 6.35875L0.473067 6.3587L0.472941 6.35857C0.285618 6.17138 0.147716 5.9406 0.0716193 5.68694C-0.00393616 5.43509 -0.0162115 5.16853 0.0358379 4.91085C0.0879545 4.62934 0.213796 4.36664 0.400577 4.14957C0.588637 3.93101 0.83165 3.76664 1.1045 3.67345L1.10787 3.6723L1.10787 3.67231L11.8214 0.0977942Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M11.11 14.56a1.27 1.27 0 0 0 1.77 0l9.69-9.69a.5.5 0 0 0 .12-.51.51.51 0 0 0-.4-.34L22 4H1.71a.5.5 0 0 0-.4.34.48.48 0 0 0 .12.51Z" fill="currentColor"></path><path d="M23.89 5.83a.18.18 0 0 0-.2 0l-6.2 6.2a.24.24 0 0 0 0 .36l5 5a.75.75 0 0 1-1.06 1.06l-5-5a.25.25 0 0 0-.36 0l-2.13 2.13a2.76 2.76 0 0 1-3.89 0l-2.12-2.09a.24.24 0 0 0-.36 0l-5 5a.75.75 0 0 1-1.06-1.06l5-5a.24.24 0 0 0 0-.36l-6.2-6.2a.18.18 0 0 0-.2 0A.18.18 0 0 0 0 6v12a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V6a.18.18 0 0 0-.11-.17Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M11.1775 0.0909653C11.5843 0.169188 11.8506 0.562345 11.7724 0.969106L11.2591 3.63851H13.1725C13.5868 3.63851 13.9225 3.97429 13.9225 4.38851C13.9225 4.80272 13.5868 5.13851 13.1725 5.13851H10.9706L10.2546 8.86147H13.1725C13.5868 8.86147 13.9225 9.19725 13.9225 9.61147C13.9225 10.0257 13.5868 10.3615 13.1725 10.3615H9.96618L9.39834 13.3142C9.32012 13.721 8.92696 13.9873 8.5202 13.9091C8.11344 13.8309 7.84711 13.4377 7.92533 13.031L8.43869 10.3615H4.74325L4.17541 13.3142C4.09719 13.721 3.70403 13.9873 3.29727 13.9091C2.89051 13.8309 2.62418 13.4377 2.7024 13.031L3.21576 10.3615H0.827423C0.41321 10.3615 0.0774231 10.0257 0.0774231 9.61147C0.0774231 9.19725 0.41321 8.86147 0.827423 8.86147H3.50422L4.22018 5.13851H0.827423C0.41321 5.13851 0.0774231 4.80272 0.0774231 4.38851C0.0774231 3.97429 0.41321 3.63851 0.827423 3.63851H4.50864L5.07646 0.685835C5.15468 0.279074 5.54784 0.0127422 5.9546 0.0909653C6.36136 0.169188 6.62769 0.562345 6.54947 0.969106L6.03612 3.63851H9.73157L10.2994 0.685835C10.3776 0.279074 10.7708 0.0127422 11.1775 0.0909653ZM5.74766 5.13851L5.03171 8.86147H8.72715L9.44311 5.13851H5.74766Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.6 1a3.56 3.56 0 0 0-2.23-.9H6.75a3.5 3.5 0 0 0-3.5 3.5v15.5a3.75 3.75 0 0 1-1.49 3l-.11.08a1 1 0 0 0-.35 1.12 1 1 0 0 0 1 .68h13a1 1 0 0 0 .6-.2l.11-.08a5.77 5.77 0 0 0 2.29-4.58v-9.8a.25.25 0 0 1 .25-.25h2.25a2 2 0 0 0 2-2v-3.5A3.51 3.51 0 0 0 21.6 1ZM6.75 14.32a.75.75 0 0 1 0-1.5h7.5a.75.75 0 0 1 0 1.5ZM12 17.57a.76.76 0 0 1-.75.75h-4.5a.75.75 0 0 1 0-1.5h4.5a.75.75 0 0 1 .75.75Zm-6-12a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5A.76.76 0 0 1 6 5.57Zm8.25 4.75h-5.5a.75.75 0 0 1 0-1.5h5.5a.75.75 0 0 1 0 1.5Zm6.5-3.75a.5.5 0 0 1-.5.5H18.5a.25.25 0 0 1-.25-.25V3.71c0-.17 0-1.62 1-1.64a1.52 1.52 0 0 1 1 .39 1.49 1.49 0 0 1 .49 1.11Z" fill="currentColor"></path></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M7.99997 1.06262C7.99997 0.510337 7.55225 0.0626221 6.99997 0.0626221C6.44768 0.0626221 5.99997 0.510337 5.99997 1.06262V2.373H5.52801C3.80505 2.36737 2.83921 3.78152 2.79581 5.06086C2.77651 5.63008 2.9283 6.23291 3.30814 6.73961C3.69651 7.25767 4.27763 7.61349 4.99639 7.74538C5.01327 7.74847 5.03022 7.75113 5.04723 7.75336L5.99997 7.87792V9.6273H4.27081C3.71852 9.6273 3.27081 10.075 3.27081 10.6273C3.27081 11.1796 3.71852 11.6273 4.27081 11.6273H5.99997V12.9377C5.99997 13.49 6.44769 13.9377 6.99997 13.9377C7.55225 13.9377 7.99997 13.49 7.99997 12.9377V11.6273H8.47182C10.1403 11.6328 11.0943 10.3518 11.1962 9.11291C11.2958 7.90195 10.6001 6.5479 9.00347 6.25493C8.9866 6.25183 8.96965 6.24917 8.95263 6.24695L7.99997 6.12239V4.373H9.72906C10.2813 4.373 10.7291 3.92529 10.7291 3.373C10.7291 2.82072 10.2813 2.373 9.72906 2.373H7.99997V1.06262ZM5.99997 4.373H5.52225C5.0985 4.37133 4.80859 4.71796 4.79466 5.12865C4.78272 5.48094 4.99836 5.70614 5.33567 5.77405L5.99997 5.8609V4.373ZM7.99997 8.13941V9.6273H8.47761C8.73757 9.62833 8.8922 9.53982 8.9923 9.43766C9.10552 9.32211 9.1866 9.14744 9.20291 8.94901C9.21854 8.75897 9.17123 8.59321 9.09164 8.47827C9.02411 8.38076 8.90417 8.275 8.6639 8.22622L8.69335 8.23007C8.6884 8.22929 8.68069 8.22799 8.67302 8.2267C8.65284 8.22329 8.6329 8.21993 8.6639 8.22622L7.99997 8.13941Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M1.8976 10.7776C1.50707 11.1682 0.873908 11.1682 0.483384 10.7776C0.0928596 10.3871 0.0928596 9.75394 0.483384 9.36342L3.81584 6.03097L3.8158 6.03093L3.82294 6.02393C4.09521 5.75706 4.46125 5.60758 4.84249 5.60758C5.22374 5.60758 5.58978 5.75706 5.86204 6.02393L5.86208 6.02389L5.86915 6.03097L7.57032 7.73214L9.91702 5.24969L8.87717 4.20984C8.66267 3.99534 8.59851 3.67275 8.71459 3.3925C8.83068 3.11224 9.10415 2.92951 9.4075 2.92951H13.0595C13.4737 2.92951 13.8095 3.2653 13.8095 3.67951V7.33151C13.8095 7.63486 13.6268 7.90834 13.3465 8.02442C13.0663 8.14051 12.7437 8.07634 12.5292 7.86184L11.3318 6.66446L8.62774 9.52493C8.61902 9.53416 8.61012 9.54323 8.60105 9.55212C8.32879 9.81899 7.96274 9.96847 7.5815 9.96847C7.20025 9.96847 6.83421 9.81899 6.56195 9.55212L6.56191 9.55215L6.55484 9.54508L4.84249 7.83274L1.8976 10.7776Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M1.25 17h3.5a.25.25 0 0 0 .25-.25v-2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a.25.25 0 0 0 .25.25Z" fill="currentColor"></path><path d="M8 8.75a1 1 0 0 0-1 1v7a.25.25 0 0 0 .25.25h3.5a.25.25 0 0 0 .25-.25v-7a1 1 0 0 0-1-1Z" fill="currentColor"></path><path d="M14 10.75a1 1 0 0 0-1 1v5a.25.25 0 0 0 .25.25h3.5a.25.25 0 0 0 .25-.25v-5a1 1 0 0 0-1-1Z" fill="currentColor"></path><path d="M19.25 17h3.5a.25.25 0 0 0 .25-.25v-12a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v12a.25.25 0 0 0 .25.25Z" fill="currentColor"></path><path d="M1 20.25h22a1 1 0 0 0 1-1 1 1 0 0 0-.56-.9 1.05 1.05 0 0 0-.44-.1H1a1.05 1.05 0 0 0-.44.1 1 1 0 0 0-.56.9 1 1 0 0 0 1 1Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M3.237,3.26C3.4,2.949,7.548,5.869,9.308,8.382a.176.176,0,0,0,.311-.047c.365-1.117.99-3.922-1.082-5.854C6.7.768,3.268.3,1.385.166A1.279,1.279,0,0,0,.013,1.638C.273,3.506.983,6.9,2.822,8.611A4.59,4.59,0,0,0,6.047,9.837a6.846,6.846,0,0,0,1.711-.231.258.258,0,0,0,.176-.161A.255.255,0,0,0,7.9,9.209C6.486,7.227,3.1,3.519,3.237,3.26Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M9.638,7.146l-1.3-1.3a1.266,1.266,0,0,0-1.75,0,.238.238,0,0,1-.337,0L4.159,3.755a.239.239,0,0,1,0-.336,1.237,1.237,0,0,0,0-1.751l-1.3-1.3a1.24,1.24,0,0,0-1.75,0L.8.674a2.715,2.715,0,0,0-.367,3.38,20.387,20.387,0,0,0,5.519,5.52,2.729,2.729,0,0,0,3.381-.368l.31-.309A1.241,1.241,0,0,0,9.638,7.146Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M10.1346 1.71063C10.1347 1.29642 9.79903 0.960522 9.38481 0.960388C8.9706 0.960255 8.63471 1.29593 8.63457 1.71015C8.63448 1.99825 8.55824 2.28122 8.41357 2.53037C8.30374 2.71951 8.15745 2.88406 7.9839 3.01488C7.66564 2.95216 7.33666 2.91928 7.00001 2.91928C6.66337 2.91928 6.33441 2.95216 6.01617 3.01487C5.84263 2.88405 5.69634 2.71951 5.58652 2.53037C5.44185 2.28122 5.36561 1.99825 5.36551 1.71015C5.36538 1.29593 5.02948 0.960255 4.61527 0.960388C4.20106 0.960522 3.86538 1.29642 3.86551 1.71063C3.86569 2.26313 4.0119 2.80577 4.28933 3.28357C4.35012 3.38826 4.41673 3.48901 4.48874 3.58542C4.01125 3.8589 3.58261 4.20797 3.21912 4.61631C2.99273 4.44878 2.74883 4.30483 2.49112 4.18724C1.95972 3.94478 1.38218 3.82013 0.798084 3.82183C0.383873 3.82303 0.0490642 4.15979 0.0502689 4.574C0.0514737 4.98821 0.388235 5.32302 0.802447 5.32182C1.17022 5.32075 1.53387 5.39924 1.86846 5.5519C2.05754 5.63818 2.23482 5.74699 2.3966 5.87557C2.2123 6.27818 2.07926 6.70916 2.00584 7.16016H0.800266C0.386052 7.16016 0.0502658 7.49594 0.0502658 7.91016C0.0502658 8.32437 0.386052 8.66016 0.800266 8.66016H1.98525C2.04747 9.12294 2.17226 9.56591 2.35082 9.98025C2.20156 10.0934 2.03986 10.1902 1.86846 10.2684C1.53387 10.421 1.17022 10.4995 0.802447 10.4985C0.388235 10.4973 0.0514737 10.8321 0.0502689 11.2463C0.0490642 11.6605 0.383873 11.9972 0.798084 11.9984C1.38218 12.0001 1.95972 11.8755 2.49112 11.633C2.72096 11.5282 2.93982 11.4023 3.14507 11.2575C4.07322 12.3479 5.45584 13.0396 7.00001 13.0396C8.54419 13.0396 9.92681 12.3479 10.855 11.2575C11.0602 11.4023 11.2791 11.5282 11.5089 11.633C12.0403 11.8755 12.6179 12.0001 13.202 11.9984C13.6162 11.9972 13.951 11.6605 13.9498 11.2463C13.9486 10.8321 13.6118 10.4973 13.1976 10.4985C12.8298 10.4995 12.4662 10.421 12.1316 10.2684C11.9602 10.1902 11.7985 10.0934 11.6492 9.98024C11.8278 9.5659 11.9525 9.12294 12.0148 8.66016H13.1998C13.614 8.66016 13.9498 8.32437 13.9498 7.91016C13.9498 7.49594 13.614 7.16016 13.1998 7.16016H11.9942C11.9208 6.70917 11.7877 6.27819 11.6034 5.87558C11.7652 5.74699 11.9425 5.63818 12.1316 5.5519C12.4662 5.39924 12.8298 5.32075 13.1976 5.32182C13.6118 5.32302 13.9486 4.98821 13.9498 4.574C13.951 4.15979 13.6162 3.82303 13.202 3.82183C12.6179 3.82013 12.0403 3.94478 11.5089 4.18724C11.2512 4.30483 11.0073 4.44879 10.7809 4.61632C10.4174 4.20799 9.9888 3.85893 9.51133 3.58545C9.58334 3.48903 9.64996 3.38827 9.71075 3.28357C9.98818 2.80577 10.1344 2.26313 10.1346 1.71063ZM7.00001 4.41928C8.42373 4.41928 9.65226 5.25499 10.2218 6.46262H3.77822C4.34776 5.25499 5.57629 4.41928 7.00001 4.41928Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.5,3.5a2.473,2.473,0,0,0-.78.125A3.5,3.5,0,1,0,3.5,8.5h4a2.5,2.5,0,0,0,0-5Z" fill="currentColor"
3
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M1.5 0.0192719C0.671573 0.0192719 0 0.690845 0 1.51927V3.17811C0 4.00653 0.671573 4.67811 1.5 4.67811H12.5C13.3284 4.67811 14 4.00653 14 3.17811V1.51927C14 0.690845 13.3284 0.0192719 12.5 0.0192719H1.5ZM0 7.41718C0 6.58875 0.671573 5.91718 1.5 5.91718H12.5C13.3284 5.91718 14 6.58875 14 7.41718V9.07601C14 9.90444 13.3284 10.576 12.5 10.576H7.75V12.4868H12C12.4142 12.4868 12.75 12.8226 12.75 13.2368C12.75 13.651 12.4142 13.9868 12 13.9868H7H2C1.58579 13.9868 1.25 13.651 1.25 13.2368C1.25 12.8226 1.58579 12.4868 2 12.4868H6.25V10.576H1.5C0.671573 10.576 0 9.90444 0 9.07601V7.41718ZM4.70557 2.34868C4.70557 2.0035 4.98539 1.72368 5.33057 1.72368H7.33057C7.67574 1.72368 7.95557 2.0035 7.95557 2.34868C7.95557 2.69386 7.67574 2.97368 7.33057 2.97368H5.33057C4.98539 2.97368 4.70557 2.69386 4.70557 2.34868ZM5.33057 7.62158C4.98539 7.62158 4.70557 7.9014 4.70557 8.24658C4.70557 8.59176 4.98539 8.87158 5.33057 8.87158H7.33057C7.67574 8.87158 7.95557 8.59176 7.95557 8.24658C7.95557 7.9014 7.67574 7.62158 7.33057 7.62158H5.33057ZM1.62933 2.34868C1.62933 2.83193 2.02108 3.22368 2.50433 3.22368C2.98758 3.22368 3.37933 2.83193 3.37933 2.34868C3.37933 1.86543 2.98758 1.47368 2.50433 1.47368C2.02108 1.47368 1.62933 1.86543 1.62933 2.34868ZM1.62933 8.24658C1.62933 8.72983 2.02108 9.12158 2.50433 9.12158C2.98758 9.12158 3.37933 8.72983 3.37933 8.24658C3.37933 7.76333 2.98758 7.37158 2.50433 7.37158C2.02108 7.37158 1.62933 7.76333 1.62933 8.24658Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M0.551514 2.27783C0.551514 2.12295 0.628534 1.90984 0.908718 1.64846C1.18986 1.38619 1.63069 1.12123 2.22768 0.885674C3.41794 0.416028 5.10495 0.111832 6.99996 0.111832C8.89497 0.111832 10.582 0.416028 11.7722 0.885674C12.3692 1.12123 12.8101 1.38619 13.0912 1.64846C13.3714 1.90984 13.4484 2.12295 13.4484 2.27783C13.4484 2.4327 13.3714 2.64582 13.0912 2.90719C12.8101 3.16946 12.3692 3.43442 11.7722 3.66998C10.582 4.13963 8.89497 4.44382 6.99996 4.44382C5.10495 4.44382 3.41794 4.13963 2.22768 3.66998C1.63069 3.43442 1.18986 3.16946 0.908718 2.90719C0.628534 2.64582 0.551514 2.4327 0.551514 2.27783ZM13.5121 4.16708C13.1448 4.4223 12.7095 4.64394 12.231 4.83274C10.8612 5.37323 9.01151 5.69382 6.99996 5.69382C4.98841 5.69382 3.1387 5.37323 1.76888 4.83274C1.29043 4.64395 0.855157 4.42233 0.487915 4.16712V7.34493C0.543884 7.42983 0.623381 7.52294 0.734108 7.62362C1.0241 7.8873 1.47858 8.15348 2.09315 8.38991C3.31814 8.86116 5.05276 9.16599 7 9.16599C8.94723 9.16599 10.6819 8.86116 11.9068 8.38991C12.5214 8.15348 12.9759 7.8873 13.2659 7.62362C13.3766 7.52295 13.4561 7.42984 13.5121 7.34494V4.16708ZM0.487915 11.209V8.99273C0.829079 9.20555 1.22004 9.39333 1.64435 9.55656C3.04569 10.0957 4.93936 10.416 7 10.416C9.06063 10.416 10.9543 10.0957 12.3556 9.55656C12.7799 9.39333 13.1709 9.20556 13.5121 8.99273V11.209C13.5121 12.7496 10.5967 14 6.99999 14C3.40332 14 0.487915 12.7496 0.487915 11.209Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path fill="currentColor" d="M1.5 0h8S11 0 11 1.5v8S11 11 9.5 11h-8S0 11 0 9.5v-8S0 0 1.5 0"></path><path fill="currentColor" d="M14.5 0h8S24 0 24 1.5v8s0 1.5-1.5 1.5h-8S13 11 13 9.5v-8S13 0 14.5 0"></path><path fill="currentColor" d="M1.5 13h8s1.5 0 1.5 1.5v8S11 24 9.5 24h-8S0 24 0 22.5v-8S0 13 1.5 13"></path><path fill="currentColor" d="M14.5 13h8s1.5 0 1.5 1.5v8s0 1.5-1.5 1.5h-8S13 24 13 22.5v-8s0-1.5 1.5-1.5"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M8.25 11.25h7.5A1.76 1.76 0 0 0 17.5 9.5V2A1.76 1.76 0 0 0 15.75.25h-7.5A1.76 1.76 0 0 0 6.5 2v7.5a1.76 1.76 0 0 0 1.75 1.75ZM8.75 5V4a1.5 1.5 0 0 1 1.5-1.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 1-1 0Z" fill="currentColor"></path><path d="M9.25 12.75h-7.5A1.76 1.76 0 0 0 0 14.5V22a1.76 1.76 0 0 0 1.75 1.75h7.5A1.76 1.76 0 0 0 11 22v-7.5a1.76 1.76 0 0 0-1.75-1.75Zm-4 2.75a.5.5 0 0 1-.5.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 1-1 0v-1a1.5 1.5 0 0 1 1.5-1.5h1a.5.5 0 0 1 .5.5Z" fill="currentColor"></path><path d="M22.25 12.75h-7.5A1.76 1.76 0 0 0 13 14.5V22a1.76 1.76 0 0 0 1.75 1.75h7.5A1.76 1.76 0 0 0 24 22v-7.5a1.76 1.76 0 0 0-1.75-1.75Zm-4 2.75a.5.5 0 0 1-.5.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 1-1 0v-1a1.5 1.5 0 0 1 1.5-1.5h1a.5.5 0 0 1 .5.5Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.51 4.43a2.39 2.39 0 0 0-1-.63L12.6.1h-.1a2.11 2.11 0 0 0-1 0h-.1l-10 3.7a2.39 2.39 0 0 0-.95.63A2 2 0 0 0 0 5.72v12.55a2 2 0 0 0 1.31 1.87l10 3.74A2.07 2.07 0 0 0 12 24a2.24 2.24 0 0 0 .67-.11l10-3.75A2 2 0 0 0 24 18.25V5.72a2 2 0 0 0-.49-1.29ZM12 2l8 3-8 2.9L4 5ZM2 6.37l9 3.3v12l-9-3.4Z" fill="currentColor"></path></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M10.4758 2.89318C10.0985 2.48989 9.46568 2.46884 9.06239 2.84617C8.6591 3.2235 8.63806 3.85631 9.01539 4.2596L11.5794 6.99999L9.01539 9.74037C8.63806 10.1437 8.6591 10.7765 9.06239 11.1538C9.46568 11.5311 10.0985 11.5101 10.4758 11.1068L13.679 7.6832C14.0387 7.29874 14.0387 6.70123 13.679 6.31678L10.4758 2.89318ZM4.98463 4.25963C5.36196 3.85634 5.34091 3.22353 4.93762 2.8462C4.53433 2.46887 3.90152 2.48992 3.52419 2.89321L0.320988 6.31681C-0.0387181 6.70126 -0.0387181 7.29877 0.320988 7.68323L3.52419 11.1068C3.90152 11.5101 4.53433 11.5312 4.93762 11.1538C5.34091 10.7765 5.36196 10.1437 4.98463 9.7404L2.42066 7.00002L4.98463 4.25963Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.66 6.76a1 1 0 0 0-1-1.26H5.55a.26.26 0 0 1-.25-.2l-.57-2.72A3.26 3.26 0 0 0 1.55 0a1.25 1.25 0 0 0 0 2.5.75.75 0 0 1 .73.59l3.17 15.08a3.25 3.25 0 0 0 1.24 1.93.26.26 0 0 1 .1.19.25.25 0 0 1-.09.2A2 2 0 1 0 10 22a2 2 0 0 0-.21-.89.23.23 0 0 1 0-.24.25.25 0 0 1 .21-.12h6a.25.25 0 0 1 .22.12.25.25 0 0 1 0 .24A1.91 1.91 0 0 0 16 22a2 2 0 0 0 4 0 2 2 0 0 0-.22-.9.29.29 0 0 1 0-.24.25.25 0 0 1 .21-.11 1.25 1.25 0 1 0 0-2.5H8.63a.75.75 0 0 1-.73-.59l-.18-.86a.23.23 0 0 1 0-.21.25.25 0 0 1 .28-.09h10.72a3 3 0 0 0 2.89-2.21Z" fill="currentColor"></path></svg>
@@ -0,0 +1,16 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M4.488,3.12a.25.25,0,0,0-.25-.25H1.5a1,1,0,0,0-1,.989V4.882a.994.994,0,0,0,1,.988H4.242a.249.249,0,0,0,.25-.25Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ <path
6
+ d="M9.5,3.859a1,1,0,0,0-1-.989H5.738a.252.252,0,0,0-.177.074.249.249,0,0,0-.073.177l0,2.5a.249.249,0,0,0,.25.249H8.5a.994.994,0,0,0,1-.988Z"
7
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
8
+ <path
9
+ d="M4.5,7.12a.251.251,0,0,0-.25-.25H1.5a.5.5,0,0,0-.5.5V8.882A.994.994,0,0,0,2,9.87H4.249A.251.251,0,0,0,4.426,9.8.255.255,0,0,0,4.5,9.62Z"
10
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
11
+ <path
12
+ d="M5.745,6.87a.25.25,0,0,0-.177.074.245.245,0,0,0-.073.177l0,2.5a.249.249,0,0,0,.25.249H8a.994.994,0,0,0,1-.988V7.37a.5.5,0,0,0-.5-.5Z"
13
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
14
+ <path d="M6.8.23a.5.5,0,0,0-.7.1L5,1.8,3.9.33a.5.5,0,0,0-.8.6l1.5,2a.5.5,0,0,0,.8,0l1.5-2A.5.5,0,0,0,6.8.23Z"
15
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
16
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M9.429,2.75A.251.251,0,0,0,9.657,2.4L8.836.552A1,1,0,0,0,7.941,0H5.75A.25.25,0,0,0,5.5.25V2.5a.25.25,0,0,0,.25.25Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ <path
6
+ d="M4.25,2.75A.25.25,0,0,0,4.5,2.5V.25A.25.25,0,0,0,4.25,0H2.059a1,1,0,0,0-.905.573L.344,2.4a.247.247,0,0,0,.018.237.251.251,0,0,0,.21.114Z"
7
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
8
+ <path
9
+ d="M9.75,3.75H.25A.25.25,0,0,0,0,4V8.5A1.5,1.5,0,0,0,1.5,10h7A1.5,1.5,0,0,0,10,8.5V4A.25.25,0,0,0,9.75,3.75Zm-2,4.375H6.5a.625.625,0,0,1,0-1.25H7.75a.625.625,0,0,1,0,1.25Z"
10
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
11
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <g>
3
+ <path fill="currentColor" fill-rule="evenodd"
4
+ d="M7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14ZM5.46623 5.1152C5.55999 5.02143 5.68717 4.96875 5.81978 4.96875H7.65939C7.93553 4.96875 8.15939 5.19261 8.15939 5.46875C8.15939 5.74489 7.93553 5.96875 7.65939 5.96875H6.31978V6.37244H7.42944C7.70558 6.37244 7.92944 6.59629 7.92944 6.87244C7.92944 7.14858 7.70558 7.37244 7.42944 7.37244H6.31978V8.03125H7.65939C7.93553 8.03125 8.15939 8.25511 8.15939 8.53125C8.15939 8.80739 7.93553 9.03125 7.65939 9.03125H5.81978C5.54364 9.03125 5.31978 8.80739 5.31978 8.53125V6.87244V5.46875C5.31978 5.33614 5.37246 5.20896 5.46623 5.1152ZM1.88323 4.9902C2.09411 4.92635 2.32193 5.00807 2.44415 5.1914L3.56979 6.87986V5.46875C3.56979 5.19261 3.79365 4.96875 4.06979 4.96875C4.34593 4.96875 4.56979 5.19261 4.56979 5.46875V8.53125C4.56979 8.75158 4.42556 8.94595 4.21468 9.0098C4.0038 9.07365 3.77598 8.99193 3.65376 8.8086L2.52812 7.12014V8.53125C2.52812 8.80739 2.30426 9.03125 2.02812 9.03125C1.75198 9.03125 1.52812 8.80739 1.52812 8.53125V5.46875C1.52812 5.24842 1.67235 5.05405 1.88323 4.9902ZM11.3229 9.03125C11.6473 9.03125 11.9241 8.79676 11.9774 8.47682L12.4651 5.55095C12.5105 5.27856 12.3265 5.02095 12.0541 4.97555C11.7817 4.93016 11.5241 5.11417 11.4787 5.38655L11.2094 7.00229L10.998 6.38738C10.9162 6.14938 10.6923 5.98958 10.4406 5.98958C10.189 5.98958 9.96505 6.14938 9.88324 6.38738L9.67186 7.00229L9.40257 5.38655C9.35718 5.11417 9.09956 4.93016 8.82718 4.97556C8.55479 5.02095 8.37078 5.27857 8.41618 5.55095L8.90383 8.47682C8.95715 8.79676 9.23396 9.03125 9.55831 9.03125C9.84162 9.03125 10.0937 8.85136 10.1858 8.58343L10.4406 7.84206L10.6955 8.58343C10.7876 8.85136 11.0396 9.03125 11.3229 9.03125Z"
5
+ clip-rule="evenodd"></path>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M1.50226 6.99999C1.50226 3.96368 3.96368 1.50226 6.99999 1.50226C7.78361 1.50226 8.52894 1.66621 9.20354 1.96167V2.23813C9.20354 2.68368 9.02655 3.11098 8.7115 3.42603C8.39645 3.74108 7.96915 3.91808 7.5236 3.91808C7.29823 3.91795 7.07515 3.96318 6.86762 4.05105C6.6601 4.13893 6.47237 4.26767 6.31563 4.42959C6.15888 4.59152 6.03632 4.78333 5.95523 4.9936C5.87415 5.20388 5.83621 5.42832 5.84366 5.65356V7.04194C5.84366 7.26256 5.8002 7.48101 5.71578 7.68483C5.63135 7.88865 5.50761 8.07385 5.35161 8.22984C5.19561 8.38584 5.01042 8.50959 4.8066 8.59401C4.60278 8.67844 4.38432 8.72189 4.16371 8.72189H2.46988H1.7773C1.59883 8.18025 1.50226 7.6014 1.50226 6.99999ZM9.71406 11.7822C10.8973 11.1092 11.8063 10.0098 12.2321 8.69311L12.0961 8.5934C11.6577 8.36683 11.1726 8.24555 10.6791 8.23917H8.80677C8.42317 8.274 8.06645 8.45101 7.8067 8.73543C7.54694 9.01984 7.40292 9.39111 7.40292 9.77629C7.40292 10.1615 7.54694 10.5327 7.8067 10.8171C8.06645 11.1016 8.42317 11.2786 8.80677 11.3134C8.95071 11.3117 9.09355 11.3386 9.22702 11.3926C9.36049 11.4465 9.48192 11.5264 9.5843 11.6276C9.63237 11.6751 9.67579 11.7269 9.71406 11.7822ZM6.99999 0.0022583C3.13525 0.0022583 0.0022583 3.13525 0.0022583 6.99999C0.0022583 10.8647 3.13525 13.9977 6.99999 13.9977C10.8647 13.9977 13.9977 10.8647 13.9977 6.99999C13.9977 3.13525 10.8647 0.0022583 6.99999 0.0022583Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,305 @@
1
+ <script setup lang="ts">
2
+ import { type ParamMap, useOperation } from '@scalar/api-client'
3
+ import { useKeyboardEvent } from '@scalar/use-keyboard-event'
4
+ import Fuse from 'fuse.js'
5
+ import { computed, nextTick, ref, toRef, watch } from 'vue'
6
+
7
+ import { extractRequestBody } from '../helpers/specHelpers'
8
+ import { useTemplateStore } from '../stores/template'
9
+ import type { Spec } from '../types'
10
+ import FlowModal, { useModalState } from './FlowModal.vue'
11
+
12
+ const props = defineProps<{ spec: Spec }>()
13
+ const reactiveSpec = toRef(props, 'spec')
14
+ const modalState = useModalState()
15
+
16
+ type FuseData = {
17
+ title: string
18
+ operationId?: string
19
+ description: string
20
+ body?: string | string[] | ParamMap
21
+ httpVerb?: string
22
+ path?: string
23
+ tag?: string
24
+ }
25
+
26
+ let fuseDataArray: FuseData[] = []
27
+ const searchResults = ref<Fuse.FuseResult<FuseData>[]>([])
28
+ const selectedSearchResult = ref<number>(0)
29
+ const searchText = ref<string>('')
30
+ const searchModalRef = ref<HTMLElement | null>(null)
31
+
32
+ const fuse = new Fuse(fuseDataArray, {
33
+ keys: ['title', 'description', 'body'],
34
+ })
35
+
36
+ const { state, setItem, setCollapsedSidebarItem } = useTemplateStore()
37
+
38
+ const fuseSearch = (): void => {
39
+ selectedSearchResult.value = 0
40
+ searchResults.value = fuse.search(searchText.value)
41
+ }
42
+
43
+ watch(
44
+ () => state.showSearch,
45
+ () => {
46
+ if (state.showSearch) {
47
+ searchText.value = ''
48
+ selectedSearchResult.value = 0
49
+ searchResults.value = []
50
+ modalState.show()
51
+ } else {
52
+ modalState.hide()
53
+ }
54
+ },
55
+ )
56
+
57
+ watch(
58
+ () => modalState.open,
59
+ () => {
60
+ if (!modalState.open) {
61
+ setItem('showSearch', false)
62
+ }
63
+ },
64
+ )
65
+
66
+ async function openSearchResult(entry: Fuse.FuseResult<FuseData>) {
67
+ const tag = entry.item.tag
68
+ const operation = entry.item.operationId
69
+
70
+ if (!tag) {
71
+ return
72
+ }
73
+
74
+ setCollapsedSidebarItem(tag, true)
75
+
76
+ modalState.hide()
77
+ await nextTick()
78
+
79
+ const elementId = operation ? `endpoint/${operation}` : `tag/${tag}`
80
+ const element = document.getElementById(elementId)
81
+ element?.scrollIntoView()
82
+ }
83
+
84
+ watch(reactiveSpec.value, () => {
85
+ fuseDataArray = []
86
+
87
+ if (!props.spec.tags.length) {
88
+ fuse.setCollection([])
89
+ return
90
+ }
91
+
92
+ // TODO: We need to go through the operations, not the tags. Spec files can have zero tags.
93
+ props.spec.tags.forEach((tag) => {
94
+ const tagData = {
95
+ title: tag.name,
96
+ description: tag.description,
97
+ tag: tag.name,
98
+ body: '',
99
+ }
100
+ fuseDataArray.push(tagData)
101
+
102
+ if (tag.operations) {
103
+ tag.operations.forEach((operation) => {
104
+ const { parameterMap } = useOperation({ operation })
105
+ const bodyData = extractRequestBody(operation) || parameterMap.value
106
+ let body = null
107
+ if (typeof bodyData !== 'boolean') {
108
+ body = bodyData
109
+ }
110
+ const operationData: FuseData = {
111
+ title: operation.name,
112
+ operationId: operation.operationId,
113
+ description: operation.description,
114
+ httpVerb: operation.httpVerb,
115
+ path: operation.path,
116
+ tag: tag.name,
117
+ }
118
+
119
+ if (body) {
120
+ operationData.body = body
121
+ }
122
+
123
+ fuseDataArray.push(operationData)
124
+ })
125
+ }
126
+ })
127
+
128
+ fuse.setCollection(fuseDataArray)
129
+ })
130
+
131
+ useKeyboardEvent({
132
+ element: searchModalRef,
133
+ keyList: ['enter'],
134
+ active: () => modalState.open,
135
+ handler: () => {
136
+ openSearchResult(
137
+ searchResultsWithPlaceholderResults.value[selectedSearchResult.value],
138
+ )
139
+ },
140
+ })
141
+
142
+ useKeyboardEvent({
143
+ element: searchModalRef,
144
+ keyList: ['ArrowDown'],
145
+ active: () => modalState.open,
146
+ handler: () => {
147
+ if (
148
+ selectedSearchResult.value <
149
+ searchResultsWithPlaceholderResults.value.length - 1
150
+ ) {
151
+ selectedSearchResult.value++
152
+ } else {
153
+ selectedSearchResult.value = 0
154
+ }
155
+ },
156
+ })
157
+
158
+ useKeyboardEvent({
159
+ element: searchModalRef,
160
+ keyList: ['ArrowUp'],
161
+ active: () => modalState.open,
162
+ handler: () => {
163
+ if (selectedSearchResult.value > 0) {
164
+ selectedSearchResult.value--
165
+ } else {
166
+ selectedSearchResult.value =
167
+ searchResultsWithPlaceholderResults.value.length - 1
168
+ }
169
+ },
170
+ })
171
+
172
+ const searchResultsWithPlaceholderResults = computed(
173
+ (): Fuse.FuseResult<FuseData>[] => {
174
+ if (searchText.value.length === 0) {
175
+ return fuseDataArray.map((item) => {
176
+ return {
177
+ item: item,
178
+ } as Fuse.FuseResult<FuseData>
179
+ })
180
+ }
181
+
182
+ return searchResults.value
183
+ },
184
+ )
185
+ </script>
186
+ <template>
187
+ <FlowModal :state="modalState">
188
+ <div ref="searchModalRef">
189
+ <input
190
+ v-model="searchText"
191
+ class="ref-search-input"
192
+ placeholder="Search …"
193
+ type="text"
194
+ @input="fuseSearch" />
195
+ </div>
196
+ <div v-if="searchResultsWithPlaceholderResults.length">
197
+ <button
198
+ v-for="(entry, index) in searchResultsWithPlaceholderResults"
199
+ :key="entry.refIndex"
200
+ class="item-entry"
201
+ :class="{
202
+ 'item-entry--active': index === selectedSearchResult,
203
+ }"
204
+ type="submit"
205
+ @click="openSearchResult(entry)">
206
+ <div
207
+ v-if="entry.item.title || entry.item.operationId"
208
+ class="item-entry-title">
209
+ {{ entry.item.title || entry.item.operationId }}
210
+ </div>
211
+ <div
212
+ v-if="entry.item.httpVerb || entry.item.path"
213
+ class="item-entry-request">
214
+ <div
215
+ class="item-entry-http-verb"
216
+ :class="`item-entry-http-verb--${entry.item.httpVerb}`">
217
+ {{ entry.item.httpVerb }}
218
+ </div>
219
+ <div class="item-entry-path">
220
+ {{ entry.item.path }}
221
+ </div>
222
+ </div>
223
+ <div v-else-if="entry.item.description">
224
+ {{ entry.item.description }}
225
+ </div>
226
+ </button>
227
+ </div>
228
+ </FlowModal>
229
+ </template>
230
+ <style scoped>
231
+ /** Input */
232
+ .ref-search-input {
233
+ width: 100%;
234
+ background: transparent;
235
+ padding: 12px;
236
+ font-size: 13px;
237
+ outline: none;
238
+ border: 1px solid var(--theme-border-color);
239
+ border-radius: var(--theme-radius);
240
+ color: var(--theme-color-1);
241
+ font-weight: var(--theme-semibold);
242
+ font-size: var(--theme-font-size-3);
243
+ appearance: none;
244
+ margin-bottom: 12px;
245
+ }
246
+ .ref-search-input::-webkit-input-placeholder,
247
+ .ref-search-input::placeholder {
248
+ color: var(--theme-color-3);
249
+ font-family: var(--theme-font);
250
+ font-weight: var(--theme-regular);
251
+ }
252
+ /** Results */
253
+ .item-entry {
254
+ appearance: none;
255
+ background: transparent;
256
+ border: none;
257
+ outline: none;
258
+ padding: 6px 12px;
259
+ width: 100%;
260
+ font-size: var(--theme-font-size-3);
261
+ text-align: left;
262
+ border-radius: var(--theme-radius);
263
+ display: flex;
264
+ flex-direction: column;
265
+ gap: 6px;
266
+ }
267
+ .item-entry--active {
268
+ background: var(--theme-background-2);
269
+ box-shadow: 0 0 0 1px var(--theme-background-2);
270
+ }
271
+ .item-entry:hover {
272
+ background: var(--theme-background-2);
273
+ box-shadow: 0 0 0 1px var(--theme-background-2);
274
+ }
275
+
276
+ .item-entry-title {
277
+ font-weight: var(--theme-semibold);
278
+ }
279
+ .item-entry-request {
280
+ display: flex;
281
+ gap: 3px;
282
+ font-family: var(--theme-font-code);
283
+ }
284
+ .item-entry-http-verb {
285
+ text-transform: uppercase;
286
+ }
287
+ .item-entry-http-verb--post {
288
+ color: var(--theme-post-color);
289
+ }
290
+ .item-entry-http-verb--patch {
291
+ color: var(--theme-patch-color);
292
+ }
293
+ .item-entry-http-verb--get {
294
+ color: var(--theme-get-color);
295
+ }
296
+ .item-entry-http-verb--delete {
297
+ color: var(--theme-delete-color);
298
+ }
299
+ .item-entry-http-verb--put {
300
+ color: var(--theme-put-color);
301
+ }
302
+ .item-entry-path {
303
+ color: var(--theme-color-3);
304
+ }
305
+ </style>