@shoprenter/sr-styleguide 1.0.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 (191) hide show
  1. package/README.md +37 -0
  2. package/dist/demo/src/demo.js +1 -0
  3. package/dist/demo/src/demo_bootstrap_js.css +119 -0
  4. package/dist/demo/src/demo_bootstrap_js.js +2 -0
  5. package/dist/demo/src/demo_bootstrap_js.js.LICENSE.txt +3180 -0
  6. package/dist/demo/src/index.html +1 -0
  7. package/dist/demo/src/stylesheet.js +0 -0
  8. package/dist/stylesheet/sr-styleguide.css +34 -0
  9. package/package.json +61 -0
  10. package/src/components/alerts/SrErrorAlert.vue +18 -0
  11. package/src/components/alerts/SrInfoAlert.vue +18 -0
  12. package/src/components/alerts/SrSuccessAlert.vue +18 -0
  13. package/src/components/alerts/SrWarningAlert.vue +18 -0
  14. package/src/components/app-containers/SrModule/SrModule.scss +16 -0
  15. package/src/components/app-containers/SrModule/SrModule.vue +17 -0
  16. package/src/components/app-containers/SrPage/SrPage.vue +25 -0
  17. package/src/components/buttons/SrDeleteButton.vue +11 -0
  18. package/src/components/buttons/SrHelpButton.scss +9 -0
  19. package/src/components/buttons/SrHelpButton.vue +16 -0
  20. package/src/components/buttons/SrPrimaryButton.vue +11 -0
  21. package/src/components/buttons/tests/SrHelpButton.spec.js +36 -0
  22. package/src/components/form/SrFormRow/SrFormRow.scss +26 -0
  23. package/src/components/form/SrFormRow/SrFormRow.vue +44 -0
  24. package/src/components/icons/SrAddCircleOutlineIcon.vue +11 -0
  25. package/src/components/icons/SrArrowRightIcon.vue +11 -0
  26. package/src/components/icons/SrCalendarIcon.vue +11 -0
  27. package/src/components/icons/SrCheckboxIndeterminateIcon.vue +11 -0
  28. package/src/components/icons/SrCheckboxOffIcon.vue +11 -0
  29. package/src/components/icons/SrCheckboxOnIcon.vue +11 -0
  30. package/src/components/icons/SrCloseIcon.vue +11 -0
  31. package/src/components/icons/SrDuplicateIcon.vue +11 -0
  32. package/src/components/icons/SrEditIcon.vue +11 -0
  33. package/src/components/icons/SrErrorCircleOutlineIcon.vue +11 -0
  34. package/src/components/icons/SrErrorIcon.vue +11 -0
  35. package/src/components/icons/SrExportIcon.vue +11 -0
  36. package/src/components/icons/SrFileWithStarIcon.vue +11 -0
  37. package/src/components/icons/SrFilterIcon.vue +11 -0
  38. package/src/components/icons/SrFindIcon.vue +11 -0
  39. package/src/components/icons/SrHelpCircleOutlineIcon.vue +11 -0
  40. package/src/components/icons/SrImportIcon.vue +11 -0
  41. package/src/components/icons/SrInfoIcon.vue +11 -0
  42. package/src/components/icons/SrInformationIcon.vue +11 -0
  43. package/src/components/icons/SrInvoiceIcon.vue +11 -0
  44. package/src/components/icons/SrInvoiceStornoIcon.vue +11 -0
  45. package/src/components/icons/SrLightningIcon.vue +11 -0
  46. package/src/components/icons/SrMagnifyIcon.vue +11 -0
  47. package/src/components/icons/SrMailIcon.vue +11 -0
  48. package/src/components/icons/SrNextIcon.vue +11 -0
  49. package/src/components/icons/SrOpenInNewIcon.vue +11 -0
  50. package/src/components/icons/SrPackageIcon.vue +10 -0
  51. package/src/components/icons/SrPadlockOutlineIcon.vue +11 -0
  52. package/src/components/icons/SrPencilIcon.vue +11 -0
  53. package/src/components/icons/SrPrevIcon.vue +11 -0
  54. package/src/components/icons/SrRadioOff.vue +11 -0
  55. package/src/components/icons/SrRadioOn.vue +11 -0
  56. package/src/components/icons/SrSearchCloseIcon.vue +11 -0
  57. package/src/components/icons/SrSearchIcon.vue +11 -0
  58. package/src/components/icons/SrSettingIcon.vue +11 -0
  59. package/src/components/icons/SrSuccessCircleOutlineIcon.vue +11 -0
  60. package/src/components/icons/SrSuccessIcon.vue +11 -0
  61. package/src/components/icons/SrTrashIcon.vue +11 -0
  62. package/src/components/icons/SrWarningCircleOutlineIcon.vue +11 -0
  63. package/src/components/icons/flags/SrCroatiaFlag.vue +73 -0
  64. package/src/components/icons/flags/SrGermanyFlag.vue +23 -0
  65. package/src/components/icons/flags/SrHungaryFlag.vue +19 -0
  66. package/src/components/icons/flags/SrRomaniaFlag.vue +23 -0
  67. package/src/components/icons/flags/SrSerbiaFlag.vue +34 -0
  68. package/src/components/icons/flags/SrSloveniaFlag.vue +33 -0
  69. package/src/components/icons/flags/SrUnitedKingdomFlag.vue +42 -0
  70. package/src/components/inputs/SrCheckbox/SrArrayCheckbox.vue +34 -0
  71. package/src/components/inputs/SrCheckbox/SrCheckbox.vue +15 -0
  72. package/src/components/inputs/SrCheckbox/tests/SrArrayCheckbox.spec.js +73 -0
  73. package/src/components/inputs/SrDatePicker/SrDatePicker.vue +56 -0
  74. package/src/components/inputs/SrInputField/SrInputField.vue +17 -0
  75. package/src/components/inputs/SrMultiCheckbox/SrMultiCheckbox.scss +35 -0
  76. package/src/components/inputs/SrMultiCheckbox/SrMultiCheckbox.vue +68 -0
  77. package/src/components/inputs/SrMultiCheckbox/tests/SrMultiCheckbox.spec.js +81 -0
  78. package/src/components/inputs/SrRadio/SrRadio.vue +19 -0
  79. package/src/components/inputs/SrRadio/SrRadioGroup.vue +15 -0
  80. package/src/components/inputs/SrSelect/SrSelect.vue +23 -0
  81. package/src/components/inputs/SrSwitch/SrSwitch.vue +30 -0
  82. package/src/components/layouts/slim/SrSlimContent/SrSlimContent.vue +14 -0
  83. package/src/components/layouts/slim/SrSlimHeading/SrSlimHeading.vue +14 -0
  84. package/src/components/layouts/slim/SrSlimLayout/SrSlimLayout.vue +13 -0
  85. package/src/components/milestone-indicators/multi-step-progress-bar/SrMultiStepProgressBar/SrMultiStepProgressBar.scss +25 -0
  86. package/src/components/milestone-indicators/multi-step-progress-bar/SrMultiStepProgressBar/SrMultiStepProgressBar.vue +12 -0
  87. package/src/components/milestone-indicators/multi-step-progress-bar/SrProgressBarStep/SrProgressBarStep.scss +69 -0
  88. package/src/components/milestone-indicators/multi-step-progress-bar/SrProgressBarStep/SrProgressBarStep.vue +25 -0
  89. package/src/components/pagination/SrPagination.vue +57 -0
  90. package/src/components/tables/SrSimpleTable/SrSimpleTable.vue +11 -0
  91. package/src/components/tabs/SrLanguageTab/SrLanguageTab.scss +12 -0
  92. package/src/components/tabs/SrLanguageTab/SrLanguageTab.vue +26 -0
  93. package/src/components/tabs/SrLanguageTab/adminLanguages.js +64 -0
  94. package/src/components/tabs/SrTab/SrTab.scss +9 -0
  95. package/src/components/tabs/SrTab/SrTab.vue +15 -0
  96. package/src/components/tabs/SrTabItem/SrTabItem.vue +12 -0
  97. package/src/components/tabs/SrTabs/SrTabs.scss +5 -0
  98. package/src/components/tabs/SrTabs/SrTabs.vue +28 -0
  99. package/src/components/tabs/SrTabsItems/SrTabsItems.vue +12 -0
  100. package/src/index.js +2 -0
  101. package/src/plugins/component-library/index.js +27 -0
  102. package/src/plugins/component-library/library/SrAlerts.js +13 -0
  103. package/src/plugins/component-library/library/SrAppContainers.js +9 -0
  104. package/src/plugins/component-library/library/SrButtons.js +11 -0
  105. package/src/plugins/component-library/library/SrFormRow.js +7 -0
  106. package/src/plugins/component-library/library/SrIcons.js +98 -0
  107. package/src/plugins/component-library/library/SrInputs.js +23 -0
  108. package/src/plugins/component-library/library/SrLayouts.js +11 -0
  109. package/src/plugins/component-library/library/SrMilestoneIndicators.js +11 -0
  110. package/src/plugins/component-library/library/SrPagination.js +7 -0
  111. package/src/plugins/component-library/library/SrTables.js +7 -0
  112. package/src/plugins/component-library/library/SrTabs.js +15 -0
  113. package/src/plugins/vuetify/index.js +9 -0
  114. package/src/plugins/vuetify/preset/icons/components/AddCircleOutlineIcon.vue +11 -0
  115. package/src/plugins/vuetify/preset/icons/components/ArrowRightIcon.vue +11 -0
  116. package/src/plugins/vuetify/preset/icons/components/CalendarIcon.vue +27 -0
  117. package/src/plugins/vuetify/preset/icons/components/CheckboxIndeterminateIcon.vue +12 -0
  118. package/src/plugins/vuetify/preset/icons/components/CheckboxOffIcon.vue +11 -0
  119. package/src/plugins/vuetify/preset/icons/components/CheckboxOnIcon.vue +12 -0
  120. package/src/plugins/vuetify/preset/icons/components/CloseIcon.vue +12 -0
  121. package/src/plugins/vuetify/preset/icons/components/DuplicateIcon.vue +11 -0
  122. package/src/plugins/vuetify/preset/icons/components/EditIcon.vue +11 -0
  123. package/src/plugins/vuetify/preset/icons/components/ErrorCircleOutlineIcon.vue +13 -0
  124. package/src/plugins/vuetify/preset/icons/components/ErrorIcon.vue +12 -0
  125. package/src/plugins/vuetify/preset/icons/components/ExportIcon.vue +11 -0
  126. package/src/plugins/vuetify/preset/icons/components/FileWithStarIcon.vue +15 -0
  127. package/src/plugins/vuetify/preset/icons/components/FilterIcon.vue +11 -0
  128. package/src/plugins/vuetify/preset/icons/components/FindIcon.vue +11 -0
  129. package/src/plugins/vuetify/preset/icons/components/HelpCircleOutlineIcon.vue +11 -0
  130. package/src/plugins/vuetify/preset/icons/components/ImportIcon.vue +11 -0
  131. package/src/plugins/vuetify/preset/icons/components/InfoIcon.vue +11 -0
  132. package/src/plugins/vuetify/preset/icons/components/InformationIcon.vue +12 -0
  133. package/src/plugins/vuetify/preset/icons/components/InvoiceIcon.vue +13 -0
  134. package/src/plugins/vuetify/preset/icons/components/InvoiceStornoIcon.vue +13 -0
  135. package/src/plugins/vuetify/preset/icons/components/LightningIcon.vue +11 -0
  136. package/src/plugins/vuetify/preset/icons/components/MagnifyIcon.vue +11 -0
  137. package/src/plugins/vuetify/preset/icons/components/MailIcon.vue +11 -0
  138. package/src/plugins/vuetify/preset/icons/components/NextIcon.vue +11 -0
  139. package/src/plugins/vuetify/preset/icons/components/OpenInNewIcon.vue +11 -0
  140. package/src/plugins/vuetify/preset/icons/components/PackageIcon.vue +12 -0
  141. package/src/plugins/vuetify/preset/icons/components/PadlockOutlineIcon.vue +20 -0
  142. package/src/plugins/vuetify/preset/icons/components/PencilIcon.vue +11 -0
  143. package/src/plugins/vuetify/preset/icons/components/PrevIcon.vue +11 -0
  144. package/src/plugins/vuetify/preset/icons/components/RadioOff.vue +11 -0
  145. package/src/plugins/vuetify/preset/icons/components/RadioOn.vue +12 -0
  146. package/src/plugins/vuetify/preset/icons/components/SearchCloseIcon.vue +11 -0
  147. package/src/plugins/vuetify/preset/icons/components/SearchIcon.vue +11 -0
  148. package/src/plugins/vuetify/preset/icons/components/SettingIcon.vue +9 -0
  149. package/src/plugins/vuetify/preset/icons/components/SuccessCircleOutlineIcon.vue +13 -0
  150. package/src/plugins/vuetify/preset/icons/components/SuccessIcon.vue +11 -0
  151. package/src/plugins/vuetify/preset/icons/components/TrashIcon.vue +12 -0
  152. package/src/plugins/vuetify/preset/icons/components/WarningCircleOutlineIcon.vue +18 -0
  153. package/src/plugins/vuetify/preset/icons/index.js +156 -0
  154. package/src/plugins/vuetify/preset/index.js +27 -0
  155. package/src/plugins/vuetify/preset/locale/sr-en.js +10 -0
  156. package/src/plugins/vuetify/preset/locale/sr-hu.js +10 -0
  157. package/src/plugins/vuetify/preset/overrides.sass +7 -0
  158. package/src/plugins/vuetify/preset/style/css/root_variables.css +25 -0
  159. package/src/plugins/vuetify/preset/style/scss/_admin-menu.scss +24 -0
  160. package/src/plugins/vuetify/preset/style/scss/_components.scss +19 -0
  161. package/src/plugins/vuetify/preset/style/scss/_layout.scss +140 -0
  162. package/src/plugins/vuetify/preset/style/scss/_new-style.scss +80 -0
  163. package/src/plugins/vuetify/preset/style/scss/_pages.scss +5 -0
  164. package/src/plugins/vuetify/preset/style/scss/_scaffolding.scss +29 -0
  165. package/src/plugins/vuetify/preset/style/scss/_utility.scss +14 -0
  166. package/src/plugins/vuetify/preset/style/scss/_vuetify-rewrite.scss +4 -0
  167. package/src/plugins/vuetify/preset/style/scss/components/_actionbar.scss +31 -0
  168. package/src/plugins/vuetify/preset/style/scss/components/_block.scss +12 -0
  169. package/src/plugins/vuetify/preset/style/scss/components/_breadcrumb.scss +37 -0
  170. package/src/plugins/vuetify/preset/style/scss/components/_buttons.scss +71 -0
  171. package/src/plugins/vuetify/preset/style/scss/components/_cards.scss +61 -0
  172. package/src/plugins/vuetify/preset/style/scss/components/_copy-to-clipboard.scss +16 -0
  173. package/src/plugins/vuetify/preset/style/scss/components/_dialog.scss +61 -0
  174. package/src/plugins/vuetify/preset/style/scss/components/_icons.scss +21 -0
  175. package/src/plugins/vuetify/preset/style/scss/components/_input.scss +199 -0
  176. package/src/plugins/vuetify/preset/style/scss/components/_pagination.scss +36 -0
  177. package/src/plugins/vuetify/preset/style/scss/components/_quantity-range-input.scss +93 -0
  178. package/src/plugins/vuetify/preset/style/scss/components/_select-all-plus.scss +5 -0
  179. package/src/plugins/vuetify/preset/style/scss/components/_select.scss +92 -0
  180. package/src/plugins/vuetify/preset/style/scss/components/_simple-card.scss +97 -0
  181. package/src/plugins/vuetify/preset/style/scss/components/_sticky-header.scss +41 -0
  182. package/src/plugins/vuetify/preset/style/scss/components/_table.scss +94 -0
  183. package/src/plugins/vuetify/preset/style/scss/components/_tooltip.scss +3 -0
  184. package/src/plugins/vuetify/preset/style/scss/mixins/_breakpoints.scss +123 -0
  185. package/src/plugins/vuetify/preset/style/scss/pages/_apps.scss +99 -0
  186. package/src/plugins/vuetify/preset/style/scss/pages/_campaign.scss +30 -0
  187. package/src/plugins/vuetify/preset/style/scss/pages/_order-list.scss +498 -0
  188. package/src/plugins/vuetify/preset/style/scss/pages/_order-preview.scss +83 -0
  189. package/src/plugins/vuetify/preset/style/scss/pages/_product-list.scss +286 -0
  190. package/src/plugins/vuetify/preset/variables.scss +264 -0
  191. package/src/plugins/vuetify/vuetify.sass +95 -0
@@ -0,0 +1,13 @@
1
+ <template>
2
+ <svg width="18" height="20" viewBox="0 0 18 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M1.24999 0H11.8706L17.5 5.60752V18.75C17.5 19.4406 16.94 20 16.25 20H1.24999C0.559969 20 0 19.4406 0 18.75V1.24999C0 0.559387 0.560034 0 1.24999 0Z" fill="var(--sr-primary)"/>
4
+ <path d="M17.4824 5.62519H13.1255C12.4355 5.62519 11.8755 5.06522 11.8755 4.3752V0.0126953L17.4824 5.62519Z" fill="#AAE600"/>
5
+ <path d="M7.48327 7.14625C7.58464 8.20724 7.63382 10.2241 6.82886 11.8102C6.76348 11.9381 6.6987 12.0625 6.63392 12.1814C5.23394 12.6116 3.75538 13.4263 3.50885 14.3233C3.41228 14.6777 3.50106 15.0322 3.75238 15.2959C4.0145 15.5693 4.34021 15.7147 4.6965 15.7147C5.55844 15.7147 6.45457 14.891 7.43348 13.1992C7.78858 13.1115 9.83457 12.8615 10.2646 12.8663C11.4445 14.0745 12.3994 14.6615 13.1792 14.6615C13.6686 14.6615 14.0903 14.414 14.3362 13.9808C14.5066 13.678 14.5072 13.3283 14.338 13.0213C13.8486 12.1358 11.9423 11.7753 10.7991 11.693C10.7007 11.5855 10.6011 11.4737 10.4992 11.3578C9.32832 10.018 8.84966 8.04983 8.67271 7.02128C8.65052 6.78578 8.62533 6.58992 8.60433 6.44633C8.52876 5.90202 8.18746 5.82031 7.99072 5.82031C7.81977 5.82031 7.65602 5.89421 7.54265 6.02338C7.3597 6.23125 7.3873 6.45594 7.40529 6.60614C7.42209 6.75393 7.44848 6.94859 7.48327 7.14625ZM4.74688 14.5125C4.85905 14.3881 5.07799 14.2049 5.40969 14.0066C5.10018 14.3431 4.87225 14.4819 4.74688 14.5125ZM13.1168 13.4653C13.0166 13.4527 12.8259 13.4022 12.52 13.2142C12.7839 13.3001 12.9848 13.389 13.1168 13.4653ZM8.52276 10.4992C8.74169 10.9444 8.98522 11.35 9.25274 11.7134C9.12198 11.726 8.19945 11.8456 8.11788 11.8558C8.28823 11.4377 8.42319 10.9841 8.52276 10.4992Z" fill="white"/>
6
+ </svg>
7
+ </template>
8
+
9
+ <script>
10
+ export default {
11
+ name: 'InvoiceIcon'
12
+ }
13
+ </script>
@@ -0,0 +1,13 @@
1
+ <template>
2
+ <svg width="18" height="20" viewBox="0 0 18 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M1.24999 0H11.8706L17.5 5.60755V18.7501C17.5 19.4407 16.94 20.0001 16.25 20.0001H1.24999C0.55997 20.0001 0 19.4407 0 18.7501V1.25C0 0.559391 0.560035 0 1.24999 0Z" fill="#E2574C"/>
4
+ <path d="M17.482 5.62495H13.1251C12.4351 5.62495 11.8751 5.06498 11.8751 4.37496V0.0124512L17.482 5.62495Z" fill="#B53629"/>
5
+ <path d="M7.4834 7.14601C7.58477 8.207 7.63395 10.2238 6.82899 11.8099C6.76361 11.9379 6.69883 12.0623 6.63405 12.1812C5.23406 12.6114 3.7555 13.426 3.50898 14.323C3.4124 14.6775 3.50118 15.032 3.7525 15.2957C4.01463 15.5691 4.34033 15.7144 4.69662 15.7144C5.55857 15.7144 6.4547 14.8908 7.43361 13.1989C7.7887 13.1112 9.8347 12.8613 10.2648 12.8661C11.4446 14.0743 12.3995 14.6613 13.1793 14.6613C13.6688 14.6613 14.0904 14.4137 14.3364 13.9806C14.5067 13.6778 14.5073 13.3281 14.3382 13.0211C13.8487 12.1356 11.9425 11.7751 10.7992 11.6928C10.7008 11.5852 10.6013 11.4735 10.4993 11.3575C9.32845 10.0178 8.84979 8.04959 8.67284 7.02104C8.65065 6.78553 8.62546 6.58968 8.60446 6.44609C8.52889 5.90178 8.18759 5.82007 7.99084 5.82007C7.8199 5.82007 7.65614 5.89397 7.54278 6.02313C7.35983 6.23101 7.38742 6.4557 7.40542 6.6059C7.42221 6.75369 7.44861 6.94835 7.4834 7.14601ZM4.74701 14.5123C4.85917 14.3879 5.07811 14.2047 5.40981 14.0064C5.1003 14.3428 4.87237 14.4816 4.74701 14.5123ZM13.1169 13.4651C13.0168 13.4525 12.826 13.402 12.5201 13.214C12.784 13.2999 12.985 13.3888 13.1169 13.4651ZM8.52289 10.499C8.74182 10.9442 8.98535 11.3497 9.25287 11.7132C9.12211 11.7258 8.19958 11.8454 8.11801 11.8556C8.28836 11.4374 8.42332 10.9838 8.52289 10.499Z" fill="white"/>
6
+ </svg>
7
+ </template>
8
+
9
+ <script>
10
+ export default {
11
+ name: 'InvoiceStornoIcon'
12
+ }
13
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="12" height="22" viewBox="0 0 14 25" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M12.85 11.5C13.05 11.2 13.05 10.8 12.85 10.5C12.65 10.2 12.35 10 11.95 10H8.44999V1L1.15 12.9004C0.95 13.2004 0.95 13.6004 1.15 13.9004C1.35 14.2004 1.64999 14.4004 2.04999 14.4004H5.54999V23.4004L12.85 11.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'LightningIcon.vue'
10
+ }
11
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M12.6531 11.8409L9.55906 8.623C10.3546 7.67732 10.7905 6.48745 10.7905 5.24874C10.7905 2.35463 8.43583 0 5.54171 0C2.6476 0 0.292969 2.35463 0.292969 5.24874C0.292969 8.14286 2.6476 10.4975 5.54171 10.4975C6.6282 10.4975 7.66358 10.1698 8.54879 9.5477L11.6663 12.7901C11.7966 12.9254 11.9719 13 12.1597 13C12.3375 13 12.5061 12.9322 12.6341 12.809C12.9062 12.5472 12.9148 12.1132 12.6531 11.8409ZM5.54171 1.36924C7.68092 1.36924 9.42122 3.10954 9.42122 5.24874C9.42122 7.38795 7.68092 9.12825 5.54171 9.12825C3.40251 9.12825 1.66221 7.38795 1.66221 5.24874C1.66221 3.10954 3.40251 1.36924 5.54171 1.36924Z" fill="#546A79"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'MagnifyIcon.vue'
10
+ }
11
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="15" height="12" viewBox="0 0 15 12" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M14.0625 0H0.9375C0.4375 0 0 0.4375 0 0.9375V10.3125C0 10.8125 0.4375 11.25 0.9375 11.25H14.0625C14.5625 11.25 15 10.8125 15 10.3125V0.9375C15 0.4375 14.5625 0 14.0625 0ZM13.75 10H1.25V1.25H13.75V10ZM2.6875 8.5625C2.9375 8.8125 3.3125 8.8125 3.5625 8.5625L5.625 6.5L7.5 8.375L9.375 6.5L11.4375 8.5625C11.5625 8.6875 11.75 8.75 11.875 8.75C12.0625 8.75 12.1875 8.6875 12.3125 8.5625C12.5625 8.3125 12.5625 7.9375 12.3125 7.6875L10.25 5.625L12.3125 3.5625C12.5625 3.3125 12.5625 2.9375 12.3125 2.6875C12.0625 2.4375 11.6875 2.4375 11.4375 2.6875L7.5 6.625L3.5625 2.6875C3.3125 2.4375 2.9375 2.4375 2.6875 2.6875C2.4375 2.9375 2.4375 3.3125 2.6875 3.5625L4.75 5.625L2.6875 7.6875C2.4375 7.9375 2.4375 8.3125 2.6875 8.5625Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'MailIcon.vue'
10
+ }
11
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M0.0688477 1.15443L3.79858 4.88416L0.0688477 8.61389L1.20398 9.74902L6.06885 4.88416L1.20398 0.0192947L0.0688477 1.15443Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'NextIcon'
10
+ }
11
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="14" height="14" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M13.5465 3.57959L5.39238 11.7338C5.32081 11.8161 5.233 11.8827 5.13446 11.9295C5.03591 11.9763 4.92876 12.0022 4.81973 12.0056C4.7107 12.0091 4.60213 11.9899 4.50085 11.9494C4.39957 11.9089 4.30775 11.8479 4.23116 11.7702C4.15458 11.6925 4.09487 11.5998 4.05579 11.498C4.01671 11.3961 3.9991 11.2873 4.00407 11.1783C4.00903 11.0694 4.03647 10.9626 4.08465 10.8647C4.13283 10.7668 4.20071 10.68 4.28405 10.6096L12.4224 2.46334H9.58822C9.37825 2.46334 9.17689 2.37993 9.02842 2.23146C8.87996 2.083 8.79655 1.88163 8.79655 1.67167C8.79655 1.46171 8.87996 1.26034 9.02842 1.11188C9.17689 0.963412 9.37825 0.880005 9.58822 0.880005H14.3382C14.5482 0.880005 14.7495 0.963412 14.898 1.11188C15.0465 1.26034 15.1299 1.46171 15.1299 1.67167V6.42167C15.1299 6.63163 15.0465 6.833 14.898 6.98146C14.7495 7.12993 14.5482 7.21334 14.3382 7.21334C14.1283 7.21334 13.9269 7.12993 13.7784 6.98146C13.63 6.833 13.5465 6.63163 13.5465 6.42167V3.57959ZM11.9632 9.58834C11.9632 9.37838 12.0466 9.17701 12.1951 9.02855C12.3436 8.88008 12.5449 8.79667 12.7549 8.79667C12.9648 8.79667 13.1662 8.88008 13.3147 9.02855C13.4631 9.17701 13.5465 9.37838 13.5465 9.58834V13.5467C13.5465 13.9666 13.3797 14.3693 13.0828 14.6663C12.7859 14.9632 12.3831 15.13 11.9632 15.13H2.46322C2.04329 15.13 1.64056 14.9632 1.34363 14.6663C1.0467 14.3693 0.879883 13.9666 0.879883 13.5467V4.04667C0.879883 3.17584 1.59238 2.46334 2.46322 2.46334H6.42155C6.63151 2.46334 6.83288 2.54675 6.98134 2.69521C7.12981 2.84368 7.21322 3.04504 7.21322 3.255C7.21322 3.46497 7.12981 3.66633 6.98134 3.8148C6.83288 3.96326 6.63151 4.04667 6.42155 4.04667H2.46322V13.5467H11.9632V9.58834Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'OpenInNewIcon'
10
+ }
11
+ </script>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M14.7876 3.60392C14.7876 3.46464 14.7089 3.39499 14.6302 3.32535L8.25901 0.0522307C8.18035 -0.0174102 8.02304 -0.0174102 7.86572 0.0522307L1.41583 3.32535C1.33717 3.39499 1.25852 3.46464 1.25852 3.60392C1.25852 3.7432 1.33717 3.81284 1.41583 3.88248L7.78707 7.1556C7.86572 7.1556 7.94438 7.22524 7.94438 7.22524C7.94438 7.22524 8.1017 7.22524 8.1017 7.1556L14.4729 3.88248C14.7089 3.81284 14.7876 3.67356 14.7876 3.60392Z" fill="currentColor"/>
4
+ <path d="M6.92184 8.82699L0.550601 5.55386C0.393286 5.48422 0.235972 5.48422 0.157315 5.55386C0.0786573 5.6235 0 5.76279 0 5.83243V12.3787C0 12.518 0.0786573 12.5876 0.157315 12.6572L6.52855 15.9304C6.60721 15.9304 6.68587 16 6.68587 16C6.68587 16 6.84318 16 6.84318 15.9304C6.92184 15.8607 7.00049 15.7911 7.00049 15.6518V9.10555C7.15781 8.96627 7.07915 8.89663 6.92184 8.82699Z" fill="currentColor"/>
5
+ <path d="M15.8888 5.55386C15.8101 5.48422 15.6528 5.48422 15.4955 5.55386L9.12424 8.82699C9.04558 8.89663 8.96692 8.96627 8.96692 9.10555V15.6518C8.96692 15.7911 9.04558 15.8607 9.12424 15.9304C9.2029 15.9304 9.28155 16 9.28155 16C9.28155 16 9.43887 16 9.43887 15.9304L15.8101 12.6572C15.8888 12.5876 15.9674 12.518 15.9674 12.3787V5.83243C16.0461 5.76279 15.9674 5.6235 15.8888 5.55386Z" fill="currentColor"/>
6
+ </svg>
7
+ </template>
8
+ <script>
9
+ export default {
10
+ name: 'PackageIcon'
11
+ }
12
+ </script>
@@ -0,0 +1,20 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="13" height="17" viewBox="0 0 13 17"
3
+ fill="none">
4
+ <path
5
+ d="M6.1998 11.2001C5.9998 11.2001 5.7998 11.4001 5.7998 11.6001C5.7998 11.8001 5.9998 12 6.1998 12C6.3998 12 6.59979 11.8001 6.59979 11.6001C6.59979 11.5001 6.59982 11.4 6.49982 11.3C6.39982 11.2 6.2998 11.2001 6.1998 11.2001Z"
6
+ stroke="#6EB400" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path
8
+ d="M9.99991 7V4.70007C9.99991 2.60007 8.29989 1.00002 6.19989 0.900024C4.09989 0.900024 2.4999 2.60007 2.3999 4.70007V7"
9
+ stroke="#6EB400" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path
11
+ d="M1 8.5C1 7.7 1.7 7 2.5 7H10C10.8 7 11.5 7.7 11.5 8.5V14.5C11.5 15.3 10.8 16 10 16H2.5C1.7 16 1 15.3 1 14.5V8.5Z"
12
+ stroke="#6EB400" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
13
+ </svg>
14
+ </template>
15
+
16
+ <script>
17
+ export default {
18
+ name: 'PadlockOutlineIcon'
19
+ }
20
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.2376 1.75C9.8681 1.75 9.60691 1.84226 9.43237 2.01778L8.90264 1.49098L9.43236 2.01778L2.99078 8.49512L2.20646 10.7895L4.48028 10.0035L10.9213 3.5267L11.4531 4.05556L10.9213 3.5267C11.3596 3.08592 11.3596 2.45856 10.9213 2.01778C10.8006 1.89645 10.7045 1.83901 10.6203 1.80646C10.5329 1.77265 10.4177 1.75 10.2376 1.75ZM8.36877 0.960058C8.9235 0.402245 9.63471 0.25 10.2376 0.25C10.5437 0.25 10.8538 0.288479 11.1615 0.407461C11.4723 0.527701 11.7409 0.714719 11.9849 0.96006C13.0051 1.98595 13.0051 3.55853 11.9849 4.58441L5.42133 11.1844C5.34071 11.2655 5.24262 11.3271 5.13455 11.3644L1.24504 12.7088C0.974155 12.8025 0.673598 12.7335 0.470593 12.5312C0.267588 12.3289 0.197634 12.0286 0.290343 11.7574L1.62737 7.84627C1.66418 7.73859 1.72501 7.6407 1.80525 7.56001L8.36877 0.96006L8.86625 1.45479L8.90057 1.48892L8.86625 1.45479" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'PencilIcon.vue'
10
+ }
11
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M6.06885 1.15443L2.33912 4.88416L6.06885 8.61389L4.93371 9.74902L0.0688477 4.88416L4.93371 0.0192947L6.06885 1.15443Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'PrevIcon'
10
+ }
11
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="0.5" y="0.5" width="17" height="17" rx="8.5" stroke="currentColor"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'RadioOff'
10
+ }
11
+ </script>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="18" height="18" rx="9" fill="currentColor"/>
4
+ <rect x="4" y="4" width="10" height="10" rx="5" fill="white"/>
5
+ </svg>
6
+ </template>
7
+
8
+ <script>
9
+ export default {
10
+ name: 'RadioOn'
11
+ }
12
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="9" height="10" viewBox="0 0 9 10" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M8.177 7.708C8.347 7.878 8.432 8.07633 8.432 8.303C8.432 8.51833 8.35267 8.70533 8.194 8.864C8.04667 9.01133 7.86533 9.085 7.65 9.085C7.43467 9.085 7.23633 8.98867 7.055 8.796L4.454 5.872L1.87 8.796C1.68867 8.98867 1.49033 9.085 1.275 9.085C1.05967 9.085 0.872667 9.00567 0.714 8.847C0.566667 8.68833 0.493 8.50133 0.493 8.286C0.493 8.07067 0.572333 7.878 0.731 7.708L3.417 4.75L0.867 1.911C0.697 1.71833 0.612 1.52567 0.612 1.333C0.612 1.11767 0.691333 0.936333 0.85 0.789C1.00867 0.630333 1.19 0.551 1.394 0.551C1.60933 0.551 1.80767 0.647333 1.989 0.84L4.454 3.628L6.919 0.84C7.10033 0.647333 7.30433 0.551 7.531 0.551C7.735 0.551 7.91633 0.630333 8.075 0.789C8.23367 0.936333 8.313 1.11767 8.313 1.333C8.313 1.54833 8.228 1.741 8.058 1.911L5.508 4.75L8.177 7.708Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'SearchCloseIcon'
10
+ }
11
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M16.4278 15.457L12.3889 11.2563C13.4274 10.0219 13.9964 8.46862 13.9964 6.85163C13.9964 3.0737 10.9227 0 7.14472 0C3.36679 0 0.293091 3.0737 0.293091 6.85163C0.293091 10.6296 3.36679 13.7033 7.14472 13.7033C8.56301 13.7033 9.91457 13.2755 11.0701 12.4634L15.1397 16.6959C15.3098 16.8726 15.5386 16.97 15.7837 16.97C16.0158 16.97 16.2359 16.8815 16.4031 16.7207C16.7582 16.379 16.7695 15.8124 16.4278 15.457ZM7.14472 1.78738C9.93721 1.78738 12.209 4.05914 12.209 6.85163C12.209 9.64412 9.93721 11.9159 7.14472 11.9159C4.35224 11.9159 2.08047 9.64412 2.08047 6.85163C2.08047 4.05914 4.35224 1.78738 7.14472 1.78738Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'SearchIcon'
10
+ }
11
+ </script>
@@ -0,0 +1,9 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M477.16 204.676l-36.533-2.894c-3.72-12.684-8.707-24.823-14.82-36.273l24.227-27.835c10.173-11.688 9.565-29.255-1.392-40.21l-32.558-32.557c-10.877-10.877-28.29-11.566-39.99-1.58l-27.884 23.79a191.17 191.17 0 0 0-36.125-15.188l-2.55-36.8c-1.07-15.457-13.923-27.45-29.417-27.45h-46.043c-15.383 0-28.18 11.825-29.396 27.16l-2.894 36.533a191.22 191.22 0 0 0-37.991 15.743l-27.884-23.79c-11.702-9.985-29.114-9.296-39.99 1.58L63.36 97.464c-10.956 10.956-11.564 28.523-1.392 40.21L86.194 165.5a191.13 191.13 0 0 0-14.821 36.273l-36.533 2.894C19.505 205.892 7.68 218.7 7.68 234.073v46.043c0 15.495 11.992 28.346 27.45 29.418l36.8 2.55a191.26 191.26 0 0 0 15.188 36.125l-23.792 27.884c-9.984 11.702-9.296 29.114 1.58 39.99l32.558 32.557c10.956 10.956 28.523 11.564 40.21 1.392l27.835-24.227c11.45 6.114 23.59 11.102 36.273 14.82l2.894 36.533c1.215 15.335 14.013 27.16 29.396 27.16h46.043c15.494 0 28.346-11.992 29.418-27.45l2.55-36.8a191.12 191.12 0 0 0 34.407-14.266l27.835 24.227c11.688 10.173 29.254 9.565 40.21-1.392l32.558-32.557c10.877-10.877 11.566-28.29 1.58-39.99l-23.792-27.884a191.17 191.17 0 0 0 15.188-36.125l36.8-2.55c15.457-1.07 27.45-13.923 27.45-29.418v-46.043c.001-15.383-11.824-28.182-27.16-29.397zM256 348.198c-50.92 0-92.198-41.278-92.198-92.198s41.28-92.198 92.198-92.198S348.198 205.08 348.198 256 306.92 348.198 256 348.198z" fill="#cdd2df"/><path d="M234.072 483.84c-4.667 0-8.61-3.644-8.98-8.297L222.198 439a20.48 20.48 0 0 0-14.654-18.035c-11.193-3.282-22.1-7.734-32.388-13.234a20.45 20.45 0 0 0-9.643-2.415c-4.84 0-9.636 1.713-13.45 5.033l-27.835 24.227c-2.102 1.83-4.373 2.213-5.908 2.213-1.396 0-4.08-.342-6.375-2.638l-32.56-32.558c-3.3-3.3-3.512-8.666-.482-12.217l23.79-27.884a20.48 20.48 0 0 0 2.386-23.124 171.14 171.14 0 0 1-13.561-32.257 20.48 20.48 0 0 0-18.178-14.469l-36.8-2.55a9.04 9.04 0 0 1-8.385-8.987V234.07c0-4.667 3.645-8.61 8.297-8.98l36.533-2.894a20.48 20.48 0 0 0 18.035-14.654c3.282-11.193 7.734-22.1 13.234-32.388a20.48 20.48 0 0 0-2.618-23.093l-24.227-27.835a9.04 9.04 0 0 1 .425-12.284l32.558-32.558c2.295-2.295 4.98-2.638 6.375-2.638 1.512 0 3.753.374 5.84 2.155l27.885 23.79c3.793 3.236 8.526 4.9 13.297 4.9 3.362 0 6.743-.827 9.826-2.514a171.08 171.08 0 0 1 33.922-14.057 20.48 20.48 0 0 0 14.654-18.035l2.894-36.533c.368-4.653 4.313-8.297 8.98-8.297h46.044a9.04 9.04 0 0 1 8.987 8.386l2.55 36.8a20.48 20.48 0 0 0 14.469 18.177 171.13 171.13 0 0 1 32.256 13.561 20.45 20.45 0 0 0 9.827 2.514c4.77 0 9.504-1.664 13.297-4.9l27.884-23.79c2.09-1.782 4.33-2.156 5.84-2.156 1.396 0 4.08.343 6.375 2.638l32.557 32.558a9.04 9.04 0 0 1 .426 12.284l-24.227 27.835a20.48 20.48 0 0 0-2.617 23.093c5.5 10.298 9.952 21.195 13.234 32.388 2.39 8.152 9.566 13.982 18.035 14.654l36.533 2.894c4.653.368 8.297 4.313 8.297 8.98v46.044a9.04 9.04 0 0 1-8.385 8.987l-36.798 2.55a20.48 20.48 0 0 0-18.177 14.469 171.14 171.14 0 0 1-13.561 32.257c-4.08 7.457-3.13 16.658 2.386 23.124l23.79 27.884c3.03 3.55 2.818 8.917-.483 12.216l-32.558 32.557c-2.296 2.296-4.98 2.64-6.374 2.64a8.89 8.89 0 0 1-5.91-2.213l-27.835-24.227a20.47 20.47 0 0 0-13.45-5.033c-3.295 0-6.608.794-9.643 2.415a171.09 171.09 0 0 1-30.721 12.738 20.48 20.48 0 0 0-14.469 18.177l-2.55 36.798a9.04 9.04 0 0 1-8.987 8.385l-46.04.002zM256 143.322c-62.13 0-112.678 50.547-112.678 112.678S193.87 368.678 256 368.678 368.678 318.13 368.678 256 318.13 143.322 256 143.322z" fill="#a7b7c6"/><path d="M256 113.03c-78.96 0-142.97 64-142.97 142.97s64 142.97 142.97 142.97 142.97-64 142.97-142.97-64-142.97-142.97-142.97zm0 235.168c-50.92 0-92.198-41.278-92.198-92.198s41.28-92.198 92.198-92.198S348.198 205.08 348.198 256 306.92 348.198 256 348.198z" fill="#bbc6d4"/><path d="M256 113.03c-78.96 0-142.97 64-142.97 142.97h50.772c0-50.92 41.28-92.198 92.198-92.198S348.198 205.08 348.198 256h50.772c0-78.96-64-142.97-142.97-142.97z" fill="#96abbc"/><path d="M477.767 197.02l-31.335-2.482c-3.087-9.567-6.9-18.92-11.4-27.92l20.803-23.9c12.768-14.67 11.997-36.932-1.754-50.684l-32.557-32.557c-13.616-13.616-35.757-14.5-50.406-1.993L347.193 77.89a200.84 200.84 0 0 0-27.807-11.7l-2.2-31.6C315.85 15.197 299.563 0 280.116 0h-46.044c-19.257 0-35.53 15.037-37.052 34.233l-2.482 31.334a199.47 199.47 0 0 0-29.73 12.32l-23.916-20.405c-14.65-12.498-36.8-11.623-50.406 1.993L57.93 92.033c-13.752 13.752-14.522 36.015-1.755 50.684l20.803 23.9a199.49 199.49 0 0 0-11.409 27.921l-31.335 2.482C15.037 198.54 0 214.816 0 234.072v46.044c0 19.447 15.198 35.734 34.598 37.08l31.598 2.2a199.56 199.56 0 0 0 11.69 27.808L57.48 371.11c-12.498 14.65-11.622 36.8 1.993 50.406l32.557 32.557c13.75 13.75 36.014 14.522 50.684 1.754a7.68 7.68 0 1 0-10.085-11.586c-8.6 7.492-21.67 7.04-29.74-1.03l-32.557-32.557c-8-8-8.503-20.98-1.17-29.576l23.792-27.884c2.068-2.424 2.425-5.875.895-8.672a183.99 183.99 0 0 1-14.578-34.674 7.68 7.68 0 0 0-6.816-5.426l-36.8-2.55c-11.383-.8-20.3-10.346-20.3-21.756V234.07c0-11.298 8.823-20.848 20.086-21.74l36.533-2.894a7.68 7.68 0 0 0 6.763-5.495 183.94 183.94 0 0 1 14.227-34.816 7.68 7.68 0 0 0-.981-8.66L67.76 132.633c-7.492-8.607-7.04-21.67 1.03-29.74l32.558-32.557c8-8 20.98-8.503 29.576-1.17l27.885 23.8a7.68 7.68 0 0 0 8.671.895 183.73 183.73 0 0 1 36.464-15.11 7.68 7.68 0 0 0 5.496-6.764l2.894-36.533c.892-11.263 10.44-20.086 21.74-20.086h46.044c11.4 0 20.967 8.917 21.756 20.3l2.55 36.8a7.68 7.68 0 0 0 5.426 6.816c12.005 3.653 23.672 8.558 34.674 14.578a7.68 7.68 0 0 0 8.672-.895l27.884-23.8c8.595-7.334 21.586-6.82 29.576 1.17l32.557 32.557c8.068 8.07 8.52 21.132 1.03 29.74l-24.227 27.835a7.68 7.68 0 0 0-.982 8.66 183.94 183.94 0 0 1 14.227 34.816 7.68 7.68 0 0 0 6.763 5.495l36.533 2.894c11.263.892 20.086 10.44 20.086 21.74v46.044c0 11.4-8.917 20.967-20.3 21.756l-36.8 2.55a7.68 7.68 0 0 0-6.816 5.426c-3.653 12.005-8.557 23.672-14.578 34.674a7.68 7.68 0 0 0 .895 8.672l23.792 27.883c7.333 8.595 6.82 21.587-1.17 29.576l-32.56 32.545c-8.068 8.07-21.13 8.52-29.738 1.03l-27.835-24.227a7.68 7.68 0 0 0-8.66-.982 183.85 183.85 0 0 1-33.025 13.693 7.68 7.68 0 0 0-5.426 6.816l-2.55 36.8c-.8 11.383-10.346 20.3-21.756 20.3h-46.044c-11.298 0-20.848-8.823-21.74-20.086l-2.894-36.533a7.68 7.68 0 0 0-5.495-6.763 183.94 183.94 0 0 1-34.816-14.227c-3.74-1.997-8.395-.585-10.393 3.156s-.585 8.395 3.156 10.393a199.62 199.62 0 0 0 32.646 13.852l2.482 31.335C198.54 496.963 214.816 512 234.072 512h46.044c19.447 0 35.734-15.198 37.08-34.6l2.2-31.598a199.39 199.39 0 0 0 25.997-10.78l23.9 20.803c14.67 12.77 36.933 11.998 50.684-1.754l32.557-32.557c13.616-13.616 14.5-35.757 1.993-50.406l-20.406-23.915a199.47 199.47 0 0 0 11.69-27.808l31.598-2.2c19.402-1.347 34.6-17.634 34.6-37.08V234.07c0-19.256-15.037-35.53-34.233-37.052zM256 171.482a7.68 7.68 0 1 0 0-15.36c-55.073 0-99.878 44.805-99.878 99.878s44.805 99.878 99.878 99.878 99.878-44.805 99.878-99.878c0-35.242-18.9-68.25-49.296-86.14a7.68 7.68 0 1 0-7.789 13.239c25.737 15.143 41.725 43.077 41.725 72.9 0 46.603-37.915 84.518-84.518 84.518s-84.518-37.916-84.518-84.52S209.396 171.48 256 171.48z"/></svg>
3
+ </template>
4
+
5
+ <script>
6
+ export default {
7
+ name: 'SettingIcon.vue'
8
+ }
9
+ </script>
@@ -0,0 +1,13 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd"
4
+ d="M0.250094 7.99985C0.250094 3.68298 3.68322 0.25 8.00006 0.25C12.3212 0.25 15.75 3.74926 15.75 7.99985C15.75 12.321 12.2507 15.75 8.00006 15.75C3.73868 15.75 0.318458 12.3127 0.250189 8.01175L0.25 7.99985H0.250094ZM1.7501 7.9939C1.80877 11.4954 4.58199 14.25 8.00006 14.25C11.4308 14.25 14.25 11.484 14.25 7.99985C14.25 4.56906 11.4842 1.75 8.00006 1.75C4.5136 1.75 1.75323 4.5083 1.7501 7.9939ZM10.9694 5.59068C11.306 5.83204 11.3832 6.30059 11.1419 6.63722L8.27384 10.6372C8.14552 10.8162 7.94501 10.9297 7.72552 10.9477C7.50602 10.9657 7.28972 10.8863 7.134 10.7305L4.86976 8.46629C4.57687 8.1734 4.57687 7.69852 4.86976 7.40563C5.16266 7.11274 5.63753 7.11274 5.93042 7.40563L7.56977 9.04497L9.92283 5.76317C10.1642 5.42654 10.6327 5.34932 10.9694 5.59068Z"
5
+ fill="#3AAA81"/>
6
+ </svg>
7
+ </template>
8
+
9
+ <script>
10
+ export default {
11
+ name: 'SuccessCircleOutlineIcon'
12
+ }
13
+ </script>
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <svg width="9" height="8" viewBox="0 0 9 8" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.64748 0.138092C9.01196 0.389015 9.10969 0.896369 8.86576 1.2713L4.72392 7.63746C4.58907 7.84473 4.36956 7.97727 4.12789 7.99735C3.88623 8.01742 3.64888 7.92283 3.48345 7.74051L0.213593 4.13689C-0.0856657 3.80709 -0.0683545 3.29018 0.252258 2.98234C0.572871 2.6745 1.07538 2.69231 1.37463 3.02211L3.96108 5.87256L7.54586 0.362625C7.78979 -0.0123049 8.283 -0.112832 8.64748 0.138092Z" fill="#3AAA81"/>
4
+ </svg>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'SuccessIcon'
10
+ }
11
+ </script>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M5.17306 2.23077C5.17306 1.16014 6.08321 0.25 7.15383 0.25H10.8461C11.9168 0.25 12.8269 1.16014 12.8269 2.23077V2.71153H17C17.4142 2.71153 17.75 3.04732 17.75 3.46153C17.75 3.87575 17.4142 4.21153 17 4.21153H15.2885V14.5385C15.2885 15.6091 14.3783 16.5192 13.3077 16.5192H4.6923C3.62169 16.5192 2.71153 15.6091 2.71153 14.5385V4.21153H1C0.585786 4.21153 0.25 3.87575 0.25 3.46153C0.25 3.04732 0.585786 2.71153 1 2.71153H5.17306V2.23077ZM6.67306 2.71153H11.3269V2.23077C11.3269 1.98857 11.0883 1.75 10.8461 1.75H7.15383C6.91163 1.75 6.67306 1.98857 6.67306 2.23077V2.71153ZM4.21153 4.21153V14.5385C4.21153 14.7807 4.4501 15.0192 4.6923 15.0192H13.3077C13.5499 15.0192 13.7885 14.7807 13.7885 14.5385V4.21153H4.21153ZM7.15383 6.40389C7.56804 6.40389 7.90383 6.73968 7.90383 7.15389V12.077C7.90383 12.4912 7.56804 12.827 7.15383 12.827C6.73962 12.827 6.40383 12.4912 6.40383 12.077V7.15389C6.40383 6.73968 6.73962 6.40389 7.15383 6.40389ZM10.8461 6.40389C11.2603 6.40389 11.5961 6.73968 11.5961 7.15389V12.077C11.5961 12.4912 11.2603 12.827 10.8461 12.827C10.4319 12.827 10.0961 12.4912 10.0961 12.077V7.15389C10.0961 6.73968 10.4319 6.40389 10.8461 6.40389Z"/>
4
+ </svg>
5
+
6
+ </template>
7
+
8
+ <script>
9
+ export default {
10
+ name: 'TrashIcon.vue'
11
+ }
12
+ </script>
@@ -0,0 +1,18 @@
1
+ <template>
2
+ <svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M8.50035 11.5531C8.3676 11.5531 8.23486 11.6859 8.23486 11.8186C8.23486 11.9514 8.3676 12.0841 8.50035 12.0841C8.63309 12.0841 8.76584 11.9514 8.76584 11.8186C8.76584 11.6859 8.69946 11.5531 8.50035 11.5531Z"
5
+ stroke="#F8AF24" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path
7
+ d="M8.5 9.56199V4.0531" stroke="#F8AF24" stroke-width="1.5" stroke-linecap="round"/>
8
+ <path
9
+ d="M8.5 16C12.615 16 16 12.6815 16 8.50004C16 4.38499 12.6814 1 8.5 1C4.38495 1 1 4.31862 1 8.50004C1.06637 12.6815 4.38495 16 8.5 16Z"
10
+ stroke="#F8AF24" stroke-width="1.5"/>
11
+ </svg>
12
+ </template>
13
+
14
+ <script>
15
+ export default {
16
+ name: 'WarningCircleOutlineIcon'
17
+ }
18
+ </script>
@@ -0,0 +1,156 @@
1
+ import HelpCircleOutline from './components/HelpCircleOutlineIcon'
2
+ import SettingIcon from './components/SettingIcon'
3
+ import MailIcon from './components/MailIcon'
4
+ import DuplicateIcon from './components/DuplicateIcon'
5
+ import CheckboxOn from './components/CheckboxOnIcon'
6
+ import CheckboxOff from './components/CheckboxOffIcon'
7
+ import CheckboxIndeterminate
8
+ from './components/CheckboxIndeterminateIcon'
9
+ import AddCircleOutline
10
+ from './components/AddCircleOutlineIcon'
11
+ import ExportIcon from './components/ExportIcon'
12
+ import ImportIcon from './components/ImportIcon'
13
+ import MagnifyIcon from './components/MagnifyIcon'
14
+ import FilterIcon from './components/FilterIcon'
15
+ import InfoIcon from './components/InfoIcon'
16
+ import TrashIcon from './components/TrashIcon'
17
+ import PencilIcon from './components/PencilIcon'
18
+ import LightningIcon from './components/LightningIcon'
19
+ import OpenInNewIcon from './components/OpenInNewIcon'
20
+ import FindIcon from './components/FindIcon'
21
+ import SuccessIcon from './components/SuccessIcon'
22
+ import ErrorIcon from './components/ErrorIcon'
23
+ import RadioOn from './components/RadioOn'
24
+ import RadioOff from './components/RadioOff'
25
+ import InformationIcon from './components/InformationIcon'
26
+ import PackageIcon from './components/PackageIcon'
27
+ import PadlockOutlineIcon from './components/PadlockOutlineIcon.vue'
28
+ import WarningCircleOutlineIcon from './components/WarningCircleOutlineIcon.vue'
29
+ import ErrorCircleOutlineIcon from './components/ErrorCircleOutlineIcon.vue'
30
+ import SuccessCircleOutlineIcon from './components/SuccessCircleOutlineIcon.vue'
31
+ import CalendarIcon from './components/CalendarIcon.vue'
32
+ import FileWithStarIcon from './components/FileWithStarIcon.vue'
33
+ import SearchCloseIcon from './components/SearchCloseIcon.vue'
34
+ import InvoiceStornoIcon from './components/InvoiceStornoIcon.vue'
35
+ import InvoiceIcon from './components/InvoiceIcon.vue'
36
+ import NextIcon from './components/NextIcon.vue'
37
+
38
+ export default {
39
+ iconfont: 'mdi',
40
+ values: {
41
+ eye: 'mdi-eye',
42
+ close: 'mdi-close',
43
+ pencil: {
44
+ component: PencilIcon
45
+ },
46
+ openInNew: {
47
+ component: OpenInNewIcon
48
+ },
49
+ addCircleOutline: {
50
+ component: AddCircleOutline
51
+ },
52
+ helpCircle: 'mdi-help-circle',
53
+ helpCircleOutline: {
54
+ component: HelpCircleOutline
55
+ },
56
+ arrowUp: 'mdi-arrow-up',
57
+ checkboxOn: {
58
+ component: CheckboxOn
59
+ },
60
+ checkboxOff: {
61
+ component: CheckboxOff
62
+ },
63
+ checkboxIndeterminate: {
64
+ component: CheckboxIndeterminate
65
+ },
66
+ radioOn: {
67
+ component: RadioOn
68
+ },
69
+ radioOff: {
70
+ component: RadioOff
71
+ },
72
+ arrowDown: 'mdi-arrow-down',
73
+ cart: 'mdi-cart',
74
+ trashcan: {
75
+ component: TrashIcon
76
+ },
77
+ dropdown: 'mdi-chevron-down',
78
+ cancel: 'mdi-close',
79
+ duplicate: {
80
+ component: DuplicateIcon
81
+ },
82
+ mail: {
83
+ component: MailIcon
84
+ },
85
+ setting: {
86
+ component: SettingIcon
87
+ },
88
+ export: {
89
+ component: ExportIcon
90
+ },
91
+ import: {
92
+ component: ImportIcon
93
+ },
94
+ magnify: {
95
+ component: MagnifyIcon
96
+ },
97
+ filter: {
98
+ component: FilterIcon
99
+ },
100
+ info: {
101
+ component: InfoIcon
102
+ },
103
+ lightning: {
104
+ component: LightningIcon
105
+ },
106
+ mailOutline: 'mdi-email-outline',
107
+ blankCircle: 'mdi-checkbox-blank-circle',
108
+ alert: 'mdi-alert',
109
+ find: {
110
+ component: FindIcon
111
+ },
112
+ success: {
113
+ component: SuccessIcon
114
+ },
115
+ error: {
116
+ component: ErrorIcon
117
+ },
118
+ information: {
119
+ component: InformationIcon
120
+ },
121
+ download: 'mdi-download',
122
+ package: {
123
+ component: PackageIcon
124
+ },
125
+ padlockOutline: {
126
+ component: PadlockOutlineIcon
127
+ },
128
+ warningCircleOutline: {
129
+ component: WarningCircleOutlineIcon
130
+ },
131
+ errorCircleOutline: {
132
+ component: ErrorCircleOutlineIcon
133
+ },
134
+ successCircleOutline: {
135
+ component: SuccessCircleOutlineIcon
136
+ },
137
+ calendar: {
138
+ component: CalendarIcon
139
+ },
140
+ fileWithStar: {
141
+ component: FileWithStarIcon
142
+ },
143
+ searchClose: {
144
+ component: SearchCloseIcon
145
+ },
146
+ invoice: {
147
+ component: InvoiceIcon
148
+ },
149
+ invoiceStorno: {
150
+ component: InvoiceStornoIcon
151
+ },
152
+ next: {
153
+ component: NextIcon
154
+ }
155
+ }
156
+ }
@@ -0,0 +1,27 @@
1
+ import en from './locale/sr-en'
2
+ import hu from './locale/sr-hu'
3
+
4
+ import icons from './icons'
5
+
6
+ export const preset = {
7
+ lang: {
8
+ locales: { en, hu },
9
+ current: 'hu'
10
+ },
11
+ icons,
12
+ theme: {
13
+ options: {
14
+ customProperties: true
15
+ },
16
+ themes: {
17
+ light: {
18
+ primary: '#6EB400',
19
+ success: '#3AAA81',
20
+ error: '#F4541D',
21
+ warning: '#F8AF24',
22
+ info: '#3394F3',
23
+ anchor: '#518400'
24
+ }
25
+ }
26
+ }
27
+ }
@@ -0,0 +1,10 @@
1
+ import en from 'vuetify/lib/locale/en'
2
+
3
+ export default {
4
+ ...en,
5
+ yes: 'Yes',
6
+ no: 'No',
7
+ clearAll: 'Clear all',
8
+ selectAll: 'Select all',
9
+ help: 'Help'
10
+ }
@@ -0,0 +1,10 @@
1
+ import hu from 'vuetify/lib/locale/hu'
2
+
3
+ export default {
4
+ ...hu,
5
+ yes: 'Igen',
6
+ no: 'Nem',
7
+ clearAll: 'Mindet töröl',
8
+ selectAll: 'Mindet választ',
9
+ help: 'Segítség'
10
+ }
@@ -0,0 +1,7 @@
1
+ @import "./style/scss/mixins/breakpoints"
2
+
3
+ @import "./style/scss/admin-menu"
4
+
5
+ /* Shoprenter Admin redesign with Vuetify */
6
+ @import "./style/scss/vuetify-rewrite"
7
+ @import "./style/scss/new-style"
@@ -0,0 +1,25 @@
1
+ :root {
2
+ --sr-black: #282D33;
3
+ --sr-dark-grey: #5D6978;
4
+ --sr-link-grey: #647382;
5
+ --sr-secondary-text: #838B95;
6
+ --sr-dark-link-grey: #929FAB;
7
+ --sr-light-grey: #E6E8EC;
8
+ --sr-bg-grey: #F7F8F9;
9
+ --sr-pale-gray: #D7DBDD;
10
+ --sr-white: #ffffff;
11
+
12
+ --sr-primary: #6EB400;
13
+ --sr-success: #3AAA81;
14
+ --sr-error: #F4541D;
15
+ --sr-warning: #F8AF24;
16
+ --sr-info: #3394F3;
17
+
18
+ --sr-anchor: #518400;
19
+ --sr-hover-green: #619D01;
20
+ --sr-light-green: #AAE600;
21
+ }
22
+ .new-style {
23
+ --sidebar-background: var(--sr-black);
24
+ margin: 0;
25
+ }
@@ -0,0 +1,24 @@
1
+ /* New Admin design 2020 */
2
+
3
+ * {
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ :root {
8
+ font-size: $font-size-root;
9
+ }
10
+
11
+ /* new admin layout design */
12
+
13
+ /* src/Aurora/AdminBundle/Resources/front-end/adminMenu/assets/scss/layout/_layout.scss */
14
+
15
+ .page-layout--slim {
16
+ margin: 0 auto 70px auto;
17
+ padding: 0 30px;
18
+ @include media-breakpoint-up(sm) {
19
+ max-width: $container-slim-width-sm;
20
+ }
21
+ @include media-breakpoint-up(md) {
22
+ max-width: $container-slim-width;
23
+ }
24
+ }
@@ -0,0 +1,19 @@
1
+ @import "./components/actionbar";
2
+ @import "./components/block";
3
+ @import "./components/breadcrumb";
4
+ @import "./components/buttons";
5
+ @import "./components/input";
6
+ @import "./components/pagination";
7
+ @import "./components/select";
8
+ @import "./components/table";
9
+ @import "./components/cards";
10
+ @import "./components/simple-card";
11
+ @import "./components/buttons";
12
+ @import "./components/copy-to-clipboard";
13
+ @import "./components/dialog";
14
+ @import "./components/icons";
15
+ @import "./components/input";
16
+ @import "./components/quantity-range-input";
17
+ @import "./components/sticky-header";
18
+ @import "./components/tooltip";
19
+ @import "./components/select-all-plus";