ca-components 1.0.26 → 1.0.28

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 (103) hide show
  1. package/esm2022/lib/ca-components.module.mjs +18 -6
  2. package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +3 -3
  3. package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +3 -3
  4. package/esm2022/lib/components/ca-right-side-panel/ca-right-side-panel.component.mjs +16 -6
  5. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.mjs +137 -0
  6. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.mjs +3 -3
  7. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.mjs +34 -4
  8. package/esm2022/lib/components/ca-right-side-panel/enums/company/bank-account-status.enum.mjs +8 -0
  9. package/esm2022/lib/components/ca-right-side-panel/enums/company/bank-card-types-string.enum.mjs +8 -0
  10. package/esm2022/lib/components/ca-right-side-panel/enums/company/fleet-type.enum.mjs +7 -0
  11. package/esm2022/lib/components/ca-right-side-panel/enums/company/preferred-load-type.enum.mjs +6 -0
  12. package/esm2022/lib/components/ca-right-side-panel/enums/company-font-size.enum.mjs +7 -0
  13. package/esm2022/lib/components/ca-right-side-panel/enums/company-info-title.enum.mjs +18 -0
  14. package/esm2022/lib/components/ca-right-side-panel/enums/index.mjs +7 -1
  15. package/esm2022/lib/components/ca-right-side-panel/models/company/bank-account.model.mjs +2 -0
  16. package/esm2022/lib/components/ca-right-side-panel/models/company/bank-card.model.mjs +2 -0
  17. package/esm2022/lib/components/ca-right-side-panel/models/company/bank.model.mjs +2 -0
  18. package/esm2022/lib/components/ca-right-side-panel/models/company/company-additional-info.model.mjs +2 -0
  19. package/esm2022/lib/components/ca-right-side-panel/models/company/company-address.model.mjs +2 -0
  20. package/esm2022/lib/components/ca-right-side-panel/models/company/company-enum-value.model.mjs +2 -0
  21. package/esm2022/lib/components/ca-right-side-panel/models/company/company-navigation-data.model.mjs +1 -1
  22. package/esm2022/lib/components/ca-right-side-panel/models/company/company-payroll.model.mjs +2 -0
  23. package/esm2022/lib/components/ca-right-side-panel/models/company/company-short.model.mjs +2 -0
  24. package/esm2022/lib/components/ca-right-side-panel/models/company/company-user-short.model.mjs +2 -0
  25. package/esm2022/lib/components/ca-right-side-panel/models/company/company.model.mjs +2 -0
  26. package/esm2022/lib/components/ca-right-side-panel/models/company/department-contact.model.mjs +2 -0
  27. package/esm2022/lib/components/ca-right-side-panel/models/company/department.model.mjs +2 -0
  28. package/esm2022/lib/components/ca-right-side-panel/models/company/factoring-company.model.mjs +2 -0
  29. package/esm2022/lib/components/ca-right-side-panel/models/company/file-response.model.mjs +2 -0
  30. package/esm2022/lib/components/ca-right-side-panel/models/company/insurance-policy-addon.model.mjs +2 -0
  31. package/esm2022/lib/components/ca-right-side-panel/models/company/insurance-policy.model.mjs +2 -0
  32. package/esm2022/lib/components/ca-right-side-panel/models/company/per-mile.model.mjs +2 -0
  33. package/esm2022/lib/components/ca-right-side-panel/models/index.mjs +18 -1
  34. package/esm2022/lib/components/ca-right-side-panel/utils/pipes/bank-card-types.pipe.mjs +20 -0
  35. package/esm2022/lib/components/ca-right-side-panel/utils/pipes/hide-account.pipe.mjs +62 -0
  36. package/esm2022/lib/components/ca-right-side-panel/utils/pipes/index.mjs +3 -0
  37. package/esm2022/lib/components/ca-tooltip-list/ca-tooltip-list.component.mjs +35 -0
  38. package/esm2022/lib/components/ca-tooltip-list/models/index.mjs +3 -0
  39. package/esm2022/lib/components/ca-tooltip-list/models/tooltip-list-item.model.mjs +2 -0
  40. package/esm2022/lib/components/ca-tooltip-list/models/tooltip-list.model.mjs +2 -0
  41. package/esm2022/lib/components/ca-tooltip-list/utils/constants/ca-tooltip-list.constants.mjs +4 -0
  42. package/esm2022/lib/components/ca-tooltip-list/utils/constants/index.mjs +2 -0
  43. package/esm2022/lib/pipes/format-currency.pipe.mjs +29 -9
  44. package/esm2022/lib/pipes/truncate-string.pipe.mjs +19 -0
  45. package/esm2022/public-api.mjs +4 -1
  46. package/fesm2022/ca-components.mjs +393 -27
  47. package/fesm2022/ca-components.mjs.map +1 -1
  48. package/lib/ca-components.module.d.ts +5 -3
  49. package/lib/components/ca-activity-log-list/ca-activity-log-list.component.d.ts +1 -1
  50. package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
  51. package/lib/components/ca-right-side-panel/ca-right-side-panel.component.d.ts +6 -3
  52. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component.d.ts +51 -0
  53. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.d.ts +1 -1
  54. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.d.ts +12 -2
  55. package/lib/components/ca-right-side-panel/enums/company/bank-account-status.enum.d.ts +6 -0
  56. package/lib/components/ca-right-side-panel/enums/company/bank-card-types-string.enum.d.ts +6 -0
  57. package/lib/components/ca-right-side-panel/enums/company/fleet-type.enum.d.ts +5 -0
  58. package/lib/components/ca-right-side-panel/enums/company/preferred-load-type.enum.d.ts +4 -0
  59. package/lib/components/ca-right-side-panel/enums/company-font-size.enum.d.ts +5 -0
  60. package/lib/components/ca-right-side-panel/enums/company-info-title.enum.d.ts +16 -0
  61. package/lib/components/ca-right-side-panel/enums/index.d.ts +6 -0
  62. package/lib/components/ca-right-side-panel/models/company/bank-account.model.d.ts +11 -0
  63. package/lib/components/ca-right-side-panel/models/company/bank-card.model.d.ts +10 -0
  64. package/lib/components/ca-right-side-panel/models/company/bank.model.d.ts +7 -0
  65. package/lib/components/ca-right-side-panel/models/company/company-additional-info.model.d.ts +15 -0
  66. package/lib/components/ca-right-side-panel/models/company/company-address.model.d.ts +12 -0
  67. package/lib/components/ca-right-side-panel/models/company/company-enum-value.model.d.ts +4 -0
  68. package/lib/components/ca-right-side-panel/models/company/company-payroll.model.d.ts +21 -0
  69. package/lib/components/ca-right-side-panel/models/company/company-short.model.d.ts +9 -0
  70. package/lib/components/ca-right-side-panel/models/company/company-user-short.model.d.ts +8 -0
  71. package/lib/components/ca-right-side-panel/models/company/company.model.d.ts +38 -0
  72. package/lib/components/ca-right-side-panel/models/company/department-contact.model.d.ts +10 -0
  73. package/lib/components/ca-right-side-panel/models/company/department.model.d.ts +7 -0
  74. package/lib/components/ca-right-side-panel/models/company/factoring-company.model.d.ts +9 -0
  75. package/lib/components/ca-right-side-panel/models/company/file-response.model.d.ts +9 -0
  76. package/lib/components/ca-right-side-panel/models/company/insurance-policy-addon.model.d.ts +25 -0
  77. package/lib/components/ca-right-side-panel/models/company/insurance-policy.model.d.ts +13 -0
  78. package/lib/components/ca-right-side-panel/models/company/per-mile.model.d.ts +5 -0
  79. package/lib/components/ca-right-side-panel/models/index.d.ts +17 -0
  80. package/lib/components/ca-right-side-panel/utils/pipes/bank-card-types.pipe.d.ts +9 -0
  81. package/lib/components/ca-right-side-panel/utils/pipes/hide-account.pipe.d.ts +7 -0
  82. package/lib/components/ca-right-side-panel/utils/pipes/index.d.ts +2 -0
  83. package/lib/components/ca-tooltip-list/ca-tooltip-list.component.d.ts +13 -0
  84. package/lib/components/ca-tooltip-list/models/index.d.ts +2 -0
  85. package/lib/components/ca-tooltip-list/models/tooltip-list-item.model.d.ts +8 -0
  86. package/lib/components/ca-tooltip-list/models/tooltip-list.model.d.ts +9 -0
  87. package/lib/components/ca-tooltip-list/utils/constants/ca-tooltip-list.constants.d.ts +3 -0
  88. package/lib/components/ca-tooltip-list/utils/constants/index.d.ts +1 -0
  89. package/lib/pipes/format-currency.pipe.d.ts +3 -2
  90. package/lib/pipes/truncate-string.pipe.d.ts +7 -0
  91. package/package.json +1 -1
  92. package/public-api.d.ts +3 -0
  93. package/src/assets/ca-components/svg/right-side-panel/ic_address.svg +3 -0
  94. package/src/assets/ca-components/svg/right-side-panel/ic_amex.svg +6 -0
  95. package/src/assets/ca-components/svg/right-side-panel/ic_bank_account.svg +7 -0
  96. package/src/assets/ca-components/svg/right-side-panel/ic_copy.svg +3 -0
  97. package/src/assets/ca-components/svg/right-side-panel/ic_discover.svg +5 -0
  98. package/src/assets/ca-components/svg/right-side-panel/ic_edit.svg +4 -0
  99. package/src/assets/ca-components/svg/right-side-panel/ic_fax.svg +5 -0
  100. package/src/assets/ca-components/svg/right-side-panel/ic_fuel_card.svg +3 -0
  101. package/src/assets/ca-components/svg/right-side-panel/ic_mastercard.svg +3 -0
  102. package/src/assets/ca-components/svg/right-side-panel/ic_visa.svg +4 -0
  103. package/src/assets/ca-components/svg/right-side-panel/ic_website.svg +3 -0
package/public-api.d.ts CHANGED
@@ -38,6 +38,9 @@ export * from './lib/components/ca-modal/ca-modal.component';
38
38
  export * from './lib/components/ca-dots-menu/ca-dots-menu.component';
39
39
  export * from './lib/components/ca-burger-menu/ca-burger-menu.component';
40
40
  export * from './lib/components/ca-chart/enums';
41
+ export * from './lib/components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component';
41
42
  export * from './lib/components/ca-map/utils/helpers';
42
43
  export * from './lib/components/ca-progress-range/ca-progress-range.component';
44
+ export * from './lib/components/ca-tooltip-list/ca-tooltip-list.component';
43
45
  export * from './lib/models';
46
+ export * from './lib/components/ca-period-content/enums';
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.0393 2.28357C12.1238 1.54669 11.0585 1.01863 9.91771 0.736321C8.77694 0.454008 7.58828 0.42425 6.43482 0.649127C5.14017 0.88752 3.92768 1.45204 2.91188 2.28935C1.89608 3.12667 1.11052 4.20913 0.62941 5.43448C0.148301 6.65983 -0.0124698 7.9876 0.162285 9.29236C0.337039 10.5971 0.841549 11.8358 1.62815 12.8913C2.73926 14.368 5.95482 17.7802 7.28371 19.1825C7.37613 19.2815 7.48794 19.3605 7.61218 19.4145C7.73643 19.4685 7.87046 19.4964 8.00593 19.4964C8.1414 19.4964 8.27543 19.4685 8.39968 19.4145C8.52392 19.3605 8.63573 19.2815 8.72815 19.1825C10.0504 17.7814 13.2437 14.3602 14.3526 12.8947C15.558 11.3026 16.0946 9.30296 15.8483 7.32125C15.602 5.33955 14.5922 3.53215 13.0337 2.28357M12.9882 8.28357C13.0071 9.27255 12.7323 10.2449 12.1985 11.0777C11.6647 11.9105 10.8959 12.5662 9.98931 12.9619C9.08275 13.3576 8.07918 13.4755 7.10558 13.3008C6.13198 13.126 5.2321 12.6663 4.51979 11.98C3.80748 11.2937 3.31475 10.4115 3.10394 9.44503C2.89313 8.47859 2.97372 7.47133 3.3355 6.5507C3.69728 5.63007 4.324 4.83744 5.13637 4.27308C5.94875 3.70872 6.91026 3.398 7.89926 3.38024H7.99037C9.30423 3.36928 10.5687 3.8802 11.5062 4.80079C12.4437 5.72139 12.9775 6.9764 12.9904 8.29024L12.9882 8.28357Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 12.5C4.47715 12.5 0 16.9772 0 22.5V77.5C0 83.0229 4.47716 87.5 10 87.5H90C95.5229 87.5 100 83.0229 100 77.5H89.1528L85.1441 72.6999L80.9782 77.5H50.166V51.9442H40L52.7075 22.5H65.0742L68.0611 29.1772V22.5H83.4149L85.9825 29.499L88.4978 22.5H100C100 16.9772 95.5228 12.5 90 12.5H10Z" fill="black"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M100 26.6565H91.1179L87.0829 37.5439L86.0088 40.4936L80.8473 26.6565H71.9651V48.1094L62.7424 26.6565H55.5896L46.3144 48.1094H52.3931L54.0175 43.9798H64.1835L65.8079 48.1094H71.9651H77.3101V34.1382L77.2839 31.3225L78.332 34.1382L83.4411 48.1094H88.524L93.6595 34.1382L94.655 31.3493V48.1094H100V26.6565ZM58.0525 33.9238L59.1004 31.2421L60.1485 33.9238L62.3231 39.3405H55.8777L58.0525 33.9238Z" fill="black"/>
4
+ <path d="M100 56.5029L94.0786 62.5901L100 68.7579V56.5029Z" fill="black"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M54.4628 51.9709V73.3435H71.9651H78.725L85.0918 66.3712L91.4323 73.3435H98.3756L88.5764 62.617L98.3756 51.9709H91.5372L85.2227 58.9164L78.9345 51.9709H71.9651H54.4628ZM71.9651 51.9709L81.738 62.6974L71.9651 73.3435V68.7042H59.8079V64.9769H71.7293V60.3645H59.8079V56.6102H71.9651V51.9709Z" fill="black"/>
6
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.40716 1.14593C9.59079 1.05007 9.79486 1 10.002 1C10.2091 1 10.4132 1.05007 10.5968 1.14593L18.2643 5.13012C18.5342 5.27345 18.7495 5.50168 18.8768 5.77955C19.0042 6.05742 19.0365 6.36948 18.9687 6.66754C18.901 6.9656 18.7371 7.23308 18.5022 7.42866C18.2673 7.62425 17.9746 7.73706 17.6692 7.74968H2.3326C2.02734 7.73672 1.73483 7.62366 1.50021 7.42795C1.26559 7.23224 1.1019 6.96476 1.03439 6.66678C0.966888 6.3688 0.999323 6.05688 1.12669 5.77916C1.25406 5.50145 1.46929 5.27337 1.73916 5.13012L9.40716 1.14593Z" fill="black"/>
3
+ <path d="M5.5 10.0156C5.5 9.3943 4.99632 8.89062 4.375 8.89062C3.75368 8.89062 3.25 9.3943 3.25 10.0156V14.5156C3.25 15.1369 3.75368 15.6406 4.375 15.6406C4.99632 15.6406 5.5 15.1369 5.5 14.5156V10.0156Z" fill="black"/>
4
+ <path d="M11.125 10.0156C11.125 9.3943 10.6213 8.89062 10 8.89062C9.37868 8.89062 8.875 9.3943 8.875 10.0156V14.5156C8.875 15.1369 9.37868 15.6406 10 15.6406C10.6213 15.6406 11.125 15.1369 11.125 14.5156V10.0156Z" fill="black"/>
5
+ <path d="M16.75 10.0156C16.75 9.3943 16.2463 8.89062 15.625 8.89062C15.0037 8.89062 14.5 9.3943 14.5 10.0156V14.5156C14.5 15.1369 15.0037 15.6406 15.625 15.6406C16.2463 15.6406 16.75 15.1369 16.75 14.5156V10.0156Z" fill="black"/>
6
+ <path d="M17.875 16.75H2.125C1.50368 16.75 1 17.2537 1 17.875C1 18.4963 1.50368 19 2.125 19H17.875C18.4963 19 19 18.4963 19 17.875C19 17.2537 18.4963 16.75 17.875 16.75Z" fill="black"/>
7
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.31901 19.0002C5.62052 19.0002 4.92874 18.8628 4.28342 18.5955C3.6381 18.3282 3.05179 17.936 2.55789 17.4421C2.06398 16.9482 1.6723 16.3621 1.405 15.7168C1.1377 15.0715 1 14.3797 1 13.6812V6.77691C1 6.48222 1.11715 6.19969 1.32552 5.99132C1.53389 5.78295 1.81643 5.6658 2.11111 5.6658H3.22222C3.51691 5.6658 3.79944 5.78295 4.00781 5.99132C4.21619 6.19969 4.33333 6.48222 4.33333 6.77691V12.6732C4.33363 13.4667 4.64898 14.228 5.21007 14.7891C5.77116 15.3502 6.53219 15.6655 7.32568 15.6658H13.2222C13.5169 15.6658 13.7994 15.7829 14.0078 15.9913C14.2162 16.1997 14.3333 16.4822 14.3333 16.7769V17.888C14.3333 18.1827 14.2162 18.4652 14.0078 18.6736C13.7994 18.882 13.5169 18.9991 13.2222 18.9991L6.31901 19.0002ZM7.88775 14.3333C7.29838 14.3333 6.73305 14.099 6.3163 13.6823C5.89955 13.2655 5.66553 12.7005 5.66553 12.1111V3.22222C5.66553 2.63285 5.89955 2.06779 6.3163 1.65104C6.73305 1.23429 7.29838 1 7.88775 1H16.7766C17.366 1 17.9313 1.23429 18.3481 1.65104C18.7648 2.06779 18.9989 2.63285 18.9989 3.22222V12.1111C18.9989 12.7005 18.7648 13.2655 18.3481 13.6823C17.9313 14.099 17.366 14.3333 16.7766 14.3333H7.88775ZM8.99886 11H15.6655V4.33333H8.99886V11Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.38245 54.5341C10.2239 54.5341 11.3552 54.1658 12.2496 53.3766C13.223 52.5085 13.8017 51.1142 13.8017 49.72C13.8017 48.3257 13.223 46.984 12.2496 46.1159C11.3025 45.2741 10.1976 44.9584 8.38245 44.9584H7.61955V54.5341H8.38245Z" fill="black"/>
3
+ <path d="M87.2686 49.1813H88.0842C89.8994 49.1813 90.8464 48.3921 90.8464 46.9452C90.8464 45.5247 89.8994 44.7881 88.1368 44.7881H87.2686V49.1813Z" fill="black"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10 12.5C4.47715 12.5 0 16.9772 0 22.5V77.5C0 83.0229 4.47716 87.5 10 87.5H90C95.5229 87.5 100 83.0229 100 77.5V22.5C100 16.9772 95.5228 12.5 90 12.5H10ZM4.80469 42.4855H8.9349C13.5123 42.4855 16.6955 45.4582 16.7218 49.7463C16.7218 51.8771 15.7484 53.9291 14.0911 55.2971C12.6968 56.4283 11.1184 56.9544 8.9349 56.9544H4.80469V42.4855ZM20.8275 42.4855H18.0126V56.9544H20.8275V42.4855ZM25.5496 46.2308C25.5496 46.9937 26.0494 47.4147 27.7331 48.046C30.9426 49.2298 31.9159 50.2821 31.8633 52.6235C31.8633 55.4383 29.785 57.385 26.865 57.385C24.7341 57.385 23.1557 56.5432 21.8666 54.6228L23.6818 52.8602C24.3395 54.0967 25.4181 54.7806 26.7597 54.7806C28.0225 54.7806 28.9432 53.9125 28.9432 52.7287C28.9432 52.1236 28.6538 51.5975 28.1014 51.2292C27.812 51.0713 27.2596 50.8083 26.1547 50.4137C23.524 49.4666 22.6032 48.4406 22.6032 46.4413C22.6032 44.0737 24.5762 42.2848 27.128 42.2848C28.7328 42.2848 30.1797 42.8372 31.3898 43.8895L29.9166 45.8099C29.2063 44.9681 28.496 44.6261 27.6542 44.6261C26.444 44.6261 25.5496 45.3101 25.5496 46.2308ZM32.7461 49.7408C32.7461 54.0025 36.0871 57.2909 40.3752 57.2909C41.5853 57.2909 42.6376 57.0541 43.9003 56.4491V53.1344C42.7691 54.2656 41.7694 54.7128 40.5067 54.7128C37.6655 54.7128 35.6399 52.6609 35.6399 49.7145C35.6399 46.9259 37.7181 44.7424 40.3752 44.7424C41.7168 44.7424 42.7428 45.216 43.9003 46.3735V43.0588C42.6639 42.4274 41.6379 42.1643 40.4278 42.1643C36.1923 42.1643 32.7461 45.5316 32.7461 49.7408ZM62.4808 42.4855L66.3479 52.2191L70.2414 42.4855H73.293L67.0582 57.3227H65.5324L59.4029 42.4855H62.4808ZM74.5779 56.9544H82.5753V54.5078H77.3928V50.6144H82.3911V48.1678H77.3928V44.9584H82.5753V42.4855H74.5779V56.9544ZM88.6366 42.5257C91.8987 42.5257 93.7665 44.0778 93.7665 46.7874C93.7665 48.9972 92.5827 50.4441 90.4518 50.8913L95.0029 56.9945H91.5304L87.6369 51.1807H87.2686V56.9945H84.4538V42.5257H88.6366ZM52.5781 57.5C56.8351 57.5 60.2861 54.049 60.2861 49.792C60.2861 45.535 56.8351 42.084 52.5781 42.084C48.3211 42.084 44.8701 45.535 44.8701 49.792C44.8701 54.049 48.3211 57.5 52.5781 57.5ZM94.9032 63.19C78.5883 71.3475 61.4296 77.6949 43.7337 82.1189L33.3203 84.7222H91.2833C94.0447 84.7222 96.2833 82.4836 96.2833 79.7222V62.5L94.9032 63.19Z" fill="black"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.3145 1.59637L18.4024 3.68747C18.7126 4.00195 18.8858 4.42643 18.8841 4.86819C18.8825 5.30996 18.7061 5.73312 18.3935 6.04525H18.4024L16.8879 7.55971C16.8093 7.63821 16.7028 7.68228 16.5918 7.68228C16.4807 7.68228 16.3742 7.63821 16.2957 7.55971L12.439 3.70303C12.3605 3.62448 12.3164 3.51796 12.3164 3.40691C12.3164 3.29585 12.3605 3.18937 12.439 3.11082L13.9534 1.59637C14.2672 1.28446 14.6916 1.10938 15.134 1.10938C15.5764 1.10938 16.0008 1.28446 16.3145 1.59637Z" fill="black"/>
3
+ <path d="M11.4951 4.64254L15.3517 8.49922C15.4287 8.57807 15.4716 8.68412 15.471 8.79436C15.4703 8.9046 15.4263 9.01014 15.3484 9.08811L6.00503 18.4326L2.03503 18.877C1.92639 18.8892 1.81644 18.8799 1.71141 18.8496C1.60637 18.8193 1.50835 18.7686 1.42291 18.7004C1.33748 18.6322 1.26632 18.5478 1.2135 18.4521C1.16068 18.3564 1.12719 18.2512 1.11503 18.1426C1.10749 18.0809 1.10749 18.0186 1.11503 17.957L1.5595 13.987L10.9039 4.64254C10.9824 4.56438 11.0887 4.52051 11.1995 4.52051C11.3102 4.52051 11.4166 4.56438 11.4951 4.64254Z" fill="black"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.29563 18.1468C4.48294 18.3327 4.73612 18.437 5 18.4369L15 18.4358C15.2639 18.4358 15.5171 18.3316 15.7044 18.1457C15.8917 17.9598 15.9979 17.7075 16 17.4436V13.5925H4V17.4447C4.00205 17.7086 4.10831 17.961 4.29563 18.1468Z" fill="black"/>
3
+ <path d="M4 2.55472V5.65139H16V2.55361C15.9977 2.28994 15.8913 2.03786 15.704 1.85224C15.5167 1.66663 15.2637 1.56249 15 1.5625H5C4.73612 1.56249 4.48294 1.66678 4.29563 1.85264C4.10831 2.0385 4.00205 2.29086 4 2.55472Z" fill="black"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17.4133 6.64943C17.6219 6.64943 17.8284 6.69054 18.021 6.77042C18.2137 6.85029 18.3887 6.96737 18.5361 7.11494C18.6834 7.26251 18.8003 7.43768 18.8799 7.63044C18.9595 7.8232 19.0003 8.02977 19 8.23832V14.995C18.999 15.2041 18.9568 15.4109 18.8758 15.6037C18.7949 15.7965 18.6767 15.9715 18.5282 16.1186C18.3796 16.2657 18.2035 16.3821 18.0099 16.4612C17.8163 16.5403 17.6091 16.5805 17.4 16.5794H17V13.5794C16.9983 13.4499 16.971 13.3219 16.9198 13.2028C16.8686 13.0838 16.7945 12.976 16.7016 12.8856C16.6087 12.7952 16.499 12.724 16.3786 12.6761C16.2582 12.6281 16.1296 12.6043 16 12.6061H4C3.86908 12.6052 3.73929 12.6302 3.61808 12.6797C3.49686 12.7291 3.38662 12.8021 3.29368 12.8943C3.20075 12.9865 3.12697 13.0962 3.07656 13.217C3.02616 13.3378 3.00014 13.4674 3 13.5983V16.5761H2.6C2.17739 16.5767 1.77176 16.4098 1.47189 16.112C1.17203 15.8143 1.00235 15.4098 1 14.9872V8.23609C1.00087 8.02685 1.04295 7.81984 1.12383 7.62686C1.20471 7.43388 1.32281 7.25872 1.47139 7.11139C1.61996 6.96405 1.7961 6.84742 1.98975 6.76816C2.1834 6.6889 2.39076 6.64855 2.6 6.64943H17.4133ZM4.52444 10.615H6.85777C7.05521 10.615 7.24457 10.5366 7.38418 10.3969C7.52379 10.2573 7.60222 10.068 7.60222 9.87054C7.60222 9.6731 7.52379 9.48375 7.38418 9.34414C7.24457 9.20453 7.05521 9.12609 6.85777 9.12609H4.52444C4.33404 9.1365 4.15486 9.21947 4.02375 9.35794C3.89264 9.49641 3.81957 9.67985 3.81957 9.87054C3.81957 10.0612 3.89264 10.2447 4.02375 10.3831C4.15486 10.5216 4.33404 10.6046 4.52444 10.615Z" fill="black"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 15.5C1 15.8978 1.15804 16.2794 1.43936 16.5607C1.72068 16.842 2.10224 17 2.50008 17H17.4999C17.8978 17 18.2793 16.842 18.5606 16.5607C18.842 16.2794 19 15.8978 19 15.5V10H1V15.5ZM7.00034 13.3753C7.0006 13.2758 7.04022 13.1805 7.11054 13.1102C7.18086 13.0399 7.27616 13.0003 7.37561 13H11.6253C11.7248 13.0003 11.8201 13.0399 11.8904 13.1102C11.9607 13.1805 12.0003 13.2758 12.0006 13.3753V14.6247C12.0003 14.7242 11.9607 14.8195 11.8904 14.8898C11.8201 14.9601 11.7248 14.9997 11.6253 15H7.37561C7.27616 14.9997 7.18086 14.9601 7.11054 14.8898C7.04022 14.8195 7.0006 14.7242 7.00034 14.6247V13.3753ZM3.00011 13.3753C3.00038 13.2758 3.04 13.1805 3.11032 13.1102C3.18064 13.0399 3.27594 13.0003 3.37538 13H5.62803C5.72747 13.0003 5.82277 13.0399 5.89309 13.1102C5.96341 13.1805 6.00303 13.2758 6.0033 13.3753V14.6247C6.00303 14.7242 5.96341 14.8195 5.89309 14.8898C5.82277 14.9601 5.72747 14.9997 5.62803 15H3.37538C3.27594 14.9997 3.18064 14.9601 3.11032 14.8898C3.04 14.8195 3.00038 14.7242 3.00011 14.6247V13.3753ZM18.997 4.50101V6.00101H1V4.5C1 4.10218 1.15804 3.72064 1.43936 3.43934C1.72068 3.15803 2.10224 3 2.50008 3H17.4999C17.8978 3 18.2793 3.15803 18.5606 3.43934C18.842 3.72064 19 4.10218 19 4.5L18.997 4.50101Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10 12.5C4.47715 12.5 0 16.9772 0 22.5V77.5C0 83.0229 4.47716 87.5 10 87.5H90C95.5229 87.5 100 83.0229 100 77.5V22.5C100 16.9772 95.5228 12.5 90 12.5H10ZM42.573 50.0033C42.573 42.8445 45.9066 36.4726 51.1079 32.3534C56.3093 36.4726 59.6429 42.8445 59.6429 50.0033C59.6429 57.162 56.3093 63.5339 51.1079 67.6532C45.9066 63.5339 42.573 57.162 42.573 50.0033ZM49.2941 68.947C43.8707 64.4312 40.4173 57.6215 40.4173 50C40.4173 42.3785 43.8707 35.5688 49.2941 31.053C45.8066 28.8128 41.6555 27.5 37.1875 27.5C24.75 27.5 14.6875 37.5625 14.6875 50C14.6875 62.4375 24.75 72.5 37.1875 72.5C41.6555 72.5 45.8066 71.1873 49.2941 68.947ZM87.525 50C87.525 62.4375 77.4625 72.5 65.025 72.5C60.557 72.5 56.4059 71.1872 52.9183 68.947C58.3417 64.4312 61.7952 57.6215 61.7952 50C61.7952 42.3785 58.3418 35.5688 52.9184 31.053C56.4059 28.8128 60.557 27.5 65.025 27.5C77.4625 27.5 87.525 37.625 87.525 50Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M82.1976 53.5154L80.1813 44.4284L76.7959 53.5154H82.1976Z" fill="black"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10 12.5C4.47715 12.5 0 16.9772 0 22.5V77.5C0 83.0229 4.47716 87.5 10 87.5H90C95.5229 87.5 100 83.0229 100 77.5V22.5C100 16.9772 95.5228 12.5 90 12.5H10ZM51.3504 45.5861C51.3504 40.3396 56.4266 37.5 62.1069 37.5C65.7449 37.5 68.3245 38.5733 68.3245 38.5733L67.1772 43.6867C67.1772 43.6867 64.8064 42.5289 61.9006 42.5289C59.3252 42.5289 58.0838 43.6213 58.0838 44.6183C58.0838 45.7381 59.524 46.4752 61.2548 47.3609C63.8603 48.6943 67.1241 50.3647 67.1241 54.1848C67.1241 59.5209 62.2373 62.5 56.0269 62.5C51.8368 62.5 48.6808 61.1553 48.6808 61.1553L49.8531 55.8611C49.8531 55.8611 52.5927 57.453 56.2582 57.453C58.841 57.453 60.3532 56.3137 60.3532 55.041C60.3532 53.7873 58.8043 52.982 56.9914 52.0396C54.4337 50.71 51.3504 49.1072 51.3504 45.5861ZM10 38.6577L10.1375 37.8859H20.9816C22.5475 37.8859 23.8268 38.7971 24.0794 40.3944L26.8334 54.3506L33.5824 37.8859H40.3845L29.8812 62.102H23.0635L17.9775 43.1922C17.5108 41.4476 17.3133 40.8859 14.542 39.921C12.3897 39.0796 10 38.6577 10 38.6577ZM37.7837 62.102L43.1197 37.8859H49.5874L44.2701 62.102H37.7837ZM76.2957 40.1049C76.9038 38.6936 77.7326 37.8859 79.2967 37.8859H84.764L90 62.102H83.9981L83.1979 58.4358H74.9109L73.5949 62.102H66.7927L76.2957 40.1049Z" fill="black"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 1C8.21997 1 6.47991 1.52784 4.99987 2.51677C3.51983 3.50571 2.36628 4.91131 1.68509 6.55584C1.0039 8.20038 0.825669 10.01 1.17294 11.7558C1.5202 13.5016 2.37737 15.1053 3.63604 16.364C4.89472 17.6226 6.49836 18.4798 8.24419 18.8271C9.99002 19.1743 11.7996 18.9961 13.4442 18.3149C15.0887 17.6337 16.4943 16.4802 17.4832 15.0001C18.4722 13.5201 19 11.78 19 10C19 7.61305 18.0518 5.32387 16.364 3.63604C14.6761 1.94821 12.387 1 10 1ZM16.5067 6.80555H14.0622C13.8595 5.60966 13.4778 4.45111 12.93 3.36888C14.486 4.06104 15.7498 5.27725 16.5011 6.80555M10 2.74222C10.6756 2.74222 11.7644 4.24222 12.2944 6.80778H7.70556C8.23556 4.23778 9.32445 2.74222 10 2.74222ZM2.74223 10C2.74223 9.51234 2.79061 9.02588 2.88667 8.54778H5.70667C5.67112 9.02222 5.64445 9.50222 5.64445 10C5.64445 10.4978 5.67 10.9756 5.70667 11.4522H2.88889C2.79283 10.9741 2.74445 10.4877 2.74445 10M3.49556 13.1944H5.94C6.1433 14.3899 6.52496 15.5479 7.07223 16.63C5.51623 15.9378 4.25244 14.7216 3.50112 13.1933L3.49556 13.1944ZM5.94 6.80778H3.49556C4.24689 5.27947 5.51067 4.06326 7.06667 3.37111C6.51888 4.45333 6.13719 5.61188 5.93445 6.80778M10 17.2578C9.32445 17.2578 8.23556 15.7578 7.70556 13.1922H12.3C11.7667 15.7611 10.6778 17.2578 10 17.2578ZM12.5444 11.4522H7.45556C7.41556 10.9878 7.38667 10.5078 7.38667 10C7.38667 9.49222 7.41556 9.01333 7.45556 8.54778H12.5478C12.5878 9.01333 12.6167 9.49222 12.6167 10C12.6167 10.5078 12.5833 10.9867 12.5433 11.4522M12.9356 16.6311C13.4814 15.5481 13.863 14.3898 14.0678 13.1944H16.5122C15.7605 14.7222 14.4968 15.938 12.9411 16.63L12.9356 16.6311ZM14.2922 11.4522C14.3278 10.9778 14.3544 10.4978 14.3544 10C14.3544 9.50222 14.3289 9.02444 14.2922 8.54778H17.1111C17.3042 9.50481 17.3042 10.4907 17.1111 11.4478L14.2922 11.4522Z" fill="black"/>
3
+ </svg>