@stigg/react-sdk 7.7.1-beta.1 → 7.8.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 (534) hide show
  1. package/dist/index.d.ts +2 -938
  2. package/dist/react-sdk.cjs.js +3444 -712
  3. package/dist/react-sdk.cjs.js.map +1 -0
  4. package/dist/react-sdk.esm.js +76842 -12328
  5. package/dist/react-sdk.esm.js.map +1 -0
  6. package/dist/react-sdk.umd.js +6238 -0
  7. package/dist/react-sdk.umd.js.map +1 -0
  8. package/dist/src/assets/lottie/checkout-success.json.d.ts +3 -0
  9. package/dist/src/components/StiggProvider.d.ts +36 -0
  10. package/dist/src/components/checkout/Checkout.d.ts +5 -0
  11. package/dist/src/components/checkout/CheckoutContainer.d.ts +14 -0
  12. package/dist/src/components/checkout/CheckoutContainer.style.d.ts +15 -0
  13. package/dist/src/components/checkout/CheckoutProvider.d.ts +43 -0
  14. package/dist/src/components/checkout/components/Button.d.ts +6 -0
  15. package/dist/src/components/checkout/components/ChangePlanButton.d.ts +7 -0
  16. package/dist/src/components/checkout/components/ContentLoadingSkeleton.d.ts +2 -0
  17. package/dist/src/components/checkout/components/DowngradeToFreeContainer.d.ts +21 -0
  18. package/dist/src/components/checkout/components/InputField.d.ts +6 -0
  19. package/dist/src/components/checkout/components/Skeletons.style.d.ts +27 -0
  20. package/dist/src/components/checkout/components/StyledArrow.d.ts +4 -0
  21. package/dist/src/components/checkout/components/index.d.ts +3 -0
  22. package/dist/src/components/checkout/configurations/steps.d.ts +1 -0
  23. package/dist/src/components/checkout/configurations/textOverrides.d.ts +82 -0
  24. package/dist/src/components/checkout/configurations/theme.d.ts +14 -0
  25. package/dist/src/components/checkout/configurations/typography.d.ts +7 -0
  26. package/dist/src/components/checkout/formatting.d.ts +2 -0
  27. package/dist/src/components/checkout/hooks/index.d.ts +8 -0
  28. package/dist/src/components/checkout/hooks/useAddonsStepModel.d.ts +20 -0
  29. package/dist/src/components/checkout/hooks/useCheckoutModel.d.ts +14 -0
  30. package/dist/src/components/checkout/hooks/useCouponModel.d.ts +7 -0
  31. package/dist/src/components/checkout/hooks/useLoadCheckout.d.ts +14 -0
  32. package/dist/src/components/checkout/hooks/usePaymentStepModel.d.ts +22 -0
  33. package/dist/src/components/checkout/hooks/usePlanStepModel.d.ts +23 -0
  34. package/dist/src/components/checkout/hooks/usePreviewSubscription.d.ts +25 -0
  35. package/dist/src/components/checkout/hooks/useProgressBarModel.d.ts +35 -0
  36. package/dist/src/components/checkout/hooks/useSubscriptionModel.d.ts +6 -0
  37. package/dist/src/components/checkout/hooks/useSubscriptionState.d.ts +2 -0
  38. package/dist/src/components/checkout/index.d.ts +8 -0
  39. package/dist/src/components/checkout/planHeader/PlanHeader.d.ts +6 -0
  40. package/dist/src/components/checkout/planHeader/index.d.ts +1 -0
  41. package/dist/src/components/checkout/progressBar/CheckoutProgressBar.d.ts +1 -0
  42. package/dist/src/components/checkout/progressBar/CheckoutProgressBar.style.d.ts +17 -0
  43. package/dist/src/components/checkout/promotionCode/AddPromotionCode.d.ts +2 -0
  44. package/dist/src/components/checkout/promotionCode/AddPromotionCodeButton.d.ts +7 -0
  45. package/dist/src/components/checkout/promotionCode/AppliedPromotionCode.d.ts +10 -0
  46. package/dist/src/components/checkout/promotionCode/PromotionCodeSection.d.ts +8 -0
  47. package/dist/src/components/checkout/promotionCode/index.d.ts +1 -0
  48. package/dist/src/components/checkout/steps/addons/CheckoutAddonsStep.d.ts +4 -0
  49. package/dist/src/components/checkout/steps/addons/CheckoutAddonsStep.style.d.ts +18 -0
  50. package/dist/src/components/checkout/steps/addons/addon.utils.d.ts +15 -0
  51. package/dist/src/components/checkout/steps/addons/components/AddonInputContainer.d.ts +15 -0
  52. package/dist/src/components/checkout/steps/addons/components/AddonTextContainer.d.ts +9 -0
  53. package/dist/src/components/checkout/steps/addons/index.d.ts +1 -0
  54. package/dist/src/components/checkout/steps/payment/PaymentMethods.d.ts +19 -0
  55. package/dist/src/components/checkout/steps/payment/PaymentMethods.style.d.ts +27 -0
  56. package/dist/src/components/checkout/steps/payment/PaymentStep.d.ts +2 -0
  57. package/dist/src/components/checkout/steps/payment/index.d.ts +1 -0
  58. package/dist/src/components/checkout/steps/payment/stripe/StripePaymentForm.d.ts +2 -0
  59. package/dist/src/components/checkout/steps/payment/stripe/index.d.ts +3 -0
  60. package/dist/src/components/checkout/steps/payment/stripe/stripe.utils.d.ts +33 -0
  61. package/dist/src/components/checkout/steps/payment/stripe/useStripeIntegration.d.ts +5 -0
  62. package/dist/src/components/checkout/steps/payment/stripe/useSubmit.d.ts +15 -0
  63. package/dist/src/components/checkout/steps/payment/zuora/ZuoraPaymentForm.d.ts +2 -0
  64. package/dist/src/components/checkout/steps/payment/zuora/index.d.ts +4 -0
  65. package/dist/src/components/checkout/steps/payment/zuora/useZuoraIntegration.d.ts +5 -0
  66. package/dist/src/components/checkout/steps/payment/zuora/useZuoraSubmit.d.ts +11 -0
  67. package/dist/src/components/checkout/steps/payment/zuora/zuora.utils.d.ts +34 -0
  68. package/dist/src/components/checkout/steps/plan/BillingPeriodPicker.d.ts +8 -0
  69. package/dist/src/components/checkout/steps/plan/BillingPeriodPicker.style.d.ts +28 -0
  70. package/dist/src/components/checkout/steps/plan/CheckoutChargeList.d.ts +22 -0
  71. package/dist/src/components/checkout/steps/plan/CheckoutPlanStep.d.ts +2 -0
  72. package/dist/src/components/checkout/steps/plan/CheckoutPlanStep.style.d.ts +6 -0
  73. package/dist/src/components/checkout/steps/plan/index.d.ts +1 -0
  74. package/dist/src/components/checkout/summary/CheckoutSuccess.d.ts +5 -0
  75. package/dist/src/components/checkout/summary/CheckoutSummary.d.ts +15 -0
  76. package/dist/src/components/checkout/summary/CheckoutSummarySkeleton.d.ts +3 -0
  77. package/dist/src/components/checkout/summary/components/CheckoutCaptions.d.ts +11 -0
  78. package/dist/src/components/checkout/summary/components/GraduatedPriceBreakdown.d.ts +6 -0
  79. package/dist/src/components/checkout/summary/components/LineItems.d.ts +37 -0
  80. package/dist/src/components/checkout/summary/components/WithSkeleton.d.ts +6 -0
  81. package/dist/src/components/checkout/summary/components/getPriceBreakdownString.d.ts +15 -0
  82. package/dist/src/components/checkout/summary/index.d.ts +2 -0
  83. package/dist/src/components/checkout/types.d.ts +86 -0
  84. package/dist/src/components/common/CollapsableSectionIcon.d.ts +6 -0
  85. package/dist/src/components/common/Icon.d.ts +14 -0
  86. package/dist/src/components/common/InformationTooltip.d.ts +11 -0
  87. package/dist/src/components/common/LongText.d.ts +17 -0
  88. package/dist/src/components/common/PoweredByStigg.d.ts +12 -0
  89. package/dist/src/components/common/ProgressBar.d.ts +6 -0
  90. package/dist/src/components/common/StatusChip.d.ts +16 -0
  91. package/dist/src/components/common/TiersSelectContainer.d.ts +12 -0
  92. package/dist/src/components/common/Typography.d.ts +15 -0
  93. package/dist/src/components/common/VolumeBulkSelect.d.ts +5 -0
  94. package/dist/src/components/common/VolumePerUnitInput.d.ts +5 -0
  95. package/dist/src/components/common/chart/chartjs.helpers.d.ts +2 -0
  96. package/dist/src/components/common/chart/chartjs.plugins.d.ts +1 -0
  97. package/dist/src/components/common/chart/chartjs.theme.d.ts +23 -0
  98. package/dist/src/components/common/chart/chartjs.tooltip.plugin.d.ts +38 -0
  99. package/dist/src/components/common/customIcons.d.ts +24 -0
  100. package/dist/src/components/common/iconColor.d.ts +4 -0
  101. package/dist/src/components/common/mapExternalTheme.d.ts +7 -0
  102. package/dist/src/components/common/mediaQuery.d.ts +12 -0
  103. package/dist/src/components/common/table/DataRows.d.ts +9 -0
  104. package/dist/src/components/common/table/EmptyState.d.ts +7 -0
  105. package/dist/src/components/common/table/ErrorState.d.ts +7 -0
  106. package/dist/src/components/common/table/GenericTable.d.ts +25 -0
  107. package/dist/src/components/common/table/LoadingRows.d.ts +8 -0
  108. package/dist/src/components/common/table/index.d.ts +6 -0
  109. package/dist/src/components/common/table/types.d.ts +31 -0
  110. package/dist/src/components/credits/balance/CreditBalance.d.ts +11 -0
  111. package/dist/src/components/credits/balance/CreditBalanceValue.d.ts +7 -0
  112. package/dist/src/components/credits/creditUsageChart/CreditUsage.chartjs.d.ts +12 -0
  113. package/dist/src/components/credits/creditUsageChart/CreditUsageChart.d.ts +8 -0
  114. package/dist/src/components/credits/creditUsageChart/CreditUsageChartEmptyState.d.ts +2 -0
  115. package/dist/src/components/credits/creditUsageChart/CreditUsageChartErrorState.d.ts +2 -0
  116. package/dist/src/components/credits/creditUsageChart/CreditUsageChartHeader.d.ts +12 -0
  117. package/dist/src/components/credits/creditUsageChart/CreditUsageChartTooltip.d.ts +19 -0
  118. package/dist/src/components/credits/creditUsageChart/CreditUsageLegend.d.ts +6 -0
  119. package/dist/src/components/credits/creditUsageChart/types.d.ts +4 -0
  120. package/dist/src/components/credits/grants/CreditGrants.d.ts +6 -0
  121. package/dist/src/components/credits/grants/CreditGrantsTable.d.ts +14 -0
  122. package/dist/src/components/credits/grants/types.d.ts +23 -0
  123. package/dist/src/components/credits/grants/utils.d.ts +5 -0
  124. package/dist/src/components/credits/hooks/useCreditBalance.d.ts +32 -0
  125. package/dist/src/components/credits/hooks/useCreditGrants.d.ts +9 -0
  126. package/dist/src/components/credits/hooks/useCreditUsage.d.ts +13 -0
  127. package/dist/src/components/credits/index.d.ts +12 -0
  128. package/dist/src/components/credits/localization.d.ts +22 -0
  129. package/dist/src/components/credits/utilization/CreditUtilization.d.ts +12 -0
  130. package/dist/src/components/credits/utilization/CreditUtilizationValue.d.ts +9 -0
  131. package/dist/src/components/credits/utils/creditBalanceUtils.d.ts +11 -0
  132. package/dist/src/components/credits/utils/creditGrantUtils.d.ts +3 -0
  133. package/dist/src/components/customerPortal/CustomerPortal.d.ts +20 -0
  134. package/dist/src/components/customerPortal/CustomerPortal.style.d.ts +9 -0
  135. package/dist/src/components/customerPortal/CustomerPortalContainer.d.ts +6 -0
  136. package/dist/src/components/customerPortal/CustomerPortalContext.d.ts +16 -0
  137. package/dist/src/components/customerPortal/CustomerPortalHeader.d.ts +4 -0
  138. package/dist/src/components/customerPortal/CustomerPortalProvider.d.ts +11 -0
  139. package/dist/src/components/customerPortal/billing/InformationGrid.d.ts +16 -0
  140. package/dist/src/components/customerPortal/billing/InvoicesSection.d.ts +2 -0
  141. package/dist/src/components/customerPortal/billing/PaymentDetailsSection.d.ts +3 -0
  142. package/dist/src/components/customerPortal/common/ExternalLinkButton.d.ts +7 -0
  143. package/dist/src/components/customerPortal/common/SectionContainer.d.ts +8 -0
  144. package/dist/src/components/customerPortal/common/SectionHeader.d.ts +7 -0
  145. package/dist/src/components/customerPortal/common/SectionTitle.d.ts +7 -0
  146. package/dist/src/components/customerPortal/common/SkeletonButton.d.ts +2 -0
  147. package/dist/src/components/customerPortal/common/StyledButton.d.ts +6 -0
  148. package/dist/src/components/customerPortal/customerPortalTextOverrides.d.ts +17 -0
  149. package/dist/src/components/customerPortal/customerPortalTheme.d.ts +14 -0
  150. package/dist/src/components/customerPortal/hooks/useCustomerPortal.d.ts +11 -0
  151. package/dist/src/components/customerPortal/index.d.ts +16 -0
  152. package/dist/src/components/customerPortal/paywall/CustomerPortalPaywall.d.ts +10 -0
  153. package/dist/src/components/customerPortal/paywall/CustomerPortalPaywall.style.d.ts +13 -0
  154. package/dist/src/components/customerPortal/subscriptionOverview/ContactCustomerSupport.d.ts +8 -0
  155. package/dist/src/components/customerPortal/subscriptionOverview/SubscriptionOverviewLoader.d.ts +2 -0
  156. package/dist/src/components/customerPortal/subscriptionOverview/SubscriptionsOverview.d.ts +13 -0
  157. package/dist/src/components/customerPortal/subscriptionOverview/SubscriptionsOverviewHeader.d.ts +9 -0
  158. package/dist/src/components/customerPortal/subscriptionOverview/charges/ChargeItem.d.ts +17 -0
  159. package/dist/src/components/customerPortal/subscriptionOverview/charges/ChargeList.d.ts +12 -0
  160. package/dist/src/components/customerPortal/subscriptionOverview/subscriptionScheduledUpdates/SubscriptionScheduledUpdateRow.d.ts +8 -0
  161. package/dist/src/components/customerPortal/subscriptionOverview/subscriptionScheduledUpdates/SubscriptionScheduledUpdatesAlert.d.ts +9 -0
  162. package/dist/src/components/customerPortal/subscriptionOverview/subscriptionView/SubscriptionView.d.ts +11 -0
  163. package/dist/src/components/customerPortal/subscriptionOverview/subscriptionView/SubscriptionView.style.d.ts +5 -0
  164. package/dist/src/components/customerPortal/subscriptionOverview/subscriptionView/TrialPanel.d.ts +7 -0
  165. package/dist/src/components/customerPortal/subscriptionOverview/tabs/AddonsList.d.ts +2 -0
  166. package/dist/src/components/customerPortal/subscriptionOverview/tabs/Promotions.d.ts +2 -0
  167. package/dist/src/components/customerPortal/subscriptionOverview/tabs/SubscriptionTabs.d.ts +11 -0
  168. package/dist/src/components/customerPortal/subscriptionOverview/tabs/SubscriptionTabs.style.d.ts +24 -0
  169. package/dist/src/components/customerPortal/subscriptionOverview/types/customerPortal.types.d.ts +3 -0
  170. package/dist/src/components/customerPortal/subscriptionOverview/upcomingBilling/NextEstimatedBill.d.ts +8 -0
  171. package/dist/src/components/customerPortal/subscriptionOverview/upcomingBilling/NoUpcomingBilling.d.ts +6 -0
  172. package/dist/src/components/customerPortal/subscriptionOverview/upcomingBilling/UpcomingBilling.d.ts +10 -0
  173. package/dist/src/components/customerPortal/types.d.ts +13 -0
  174. package/dist/src/components/customerPortal/usage/CustomerUsageData.d.ts +8 -0
  175. package/dist/src/components/customerPortal/usage/CustomerUsageData.style.d.ts +6 -0
  176. package/dist/src/components/customerPortal/usage/featureUsage/EntitlementCTAButton.d.ts +14 -0
  177. package/dist/src/components/customerPortal/usage/featureUsage/FeatureUsage.d.ts +13 -0
  178. package/dist/src/components/customerPortal/usage/featureUsage/FeatureUsage.helper.d.ts +5 -0
  179. package/dist/src/components/customerPortal/usage/featureUsage/FeatureUsage.style.d.ts +8 -0
  180. package/dist/src/components/customerPortal/usage/featureUsage/FeatureUsageProgressBar.d.ts +15 -0
  181. package/dist/src/components/guards/BooleanEntitlementGuard.d.ts +7 -0
  182. package/dist/src/components/guards/EnumEntitlementGuard.d.ts +7 -0
  183. package/dist/src/components/guards/MeteredEntitlementGuard.d.ts +7 -0
  184. package/dist/src/components/guards/NumericEntitlementGuard.d.ts +7 -0
  185. package/dist/src/components/hooks/index.d.ts +1 -0
  186. package/dist/src/components/hooks/useChargeSort.d.ts +3 -0
  187. package/dist/src/components/hooks/useIsScreenWiderThan.d.ts +2 -0
  188. package/dist/src/components/hooks/usePagination.d.ts +6 -0
  189. package/dist/src/components/hooks/useWaitForCheckoutCompleted.d.ts +14 -0
  190. package/dist/src/components/paywall/BillingPeriodPicker.d.ts +7 -0
  191. package/dist/src/components/paywall/EntitlementRow.d.ts +20 -0
  192. package/dist/src/components/paywall/Paywall.d.ts +23 -0
  193. package/dist/src/components/paywall/PaywallContainer.d.ts +20 -0
  194. package/dist/src/components/paywall/PaywallLoader.d.ts +2 -0
  195. package/dist/src/components/paywall/PlanCompatibleAddons.d.ts +13 -0
  196. package/dist/src/components/paywall/PlanEntitlements.d.ts +8 -0
  197. package/dist/src/components/paywall/PlanOffering.d.ts +27 -0
  198. package/dist/src/components/paywall/PlanOfferingButton.d.ts +18 -0
  199. package/dist/src/components/paywall/PlanPrice.d.ts +17 -0
  200. package/dist/src/components/paywall/hooks/useLoadPaywallData.d.ts +12 -0
  201. package/dist/src/components/paywall/index.d.ts +5 -0
  202. package/dist/src/components/paywall/paywallTextOverrides.d.ts +81 -0
  203. package/dist/src/components/paywall/types.d.ts +58 -0
  204. package/dist/src/components/paywall/utils/calculateTrialDaysLeft.d.ts +1 -0
  205. package/dist/src/components/paywall/utils/calculateUnitQuantityText.d.ts +1 -0
  206. package/dist/src/components/paywall/utils/computeDefaultBillingPeriod.d.ts +5 -0
  207. package/dist/src/components/paywall/utils/getPlansToDisplay.d.ts +3 -0
  208. package/dist/src/components/paywall/utils/hasPricePoints.d.ts +4 -0
  209. package/dist/src/components/paywall/utils/mapPaywallData.d.ts +14 -0
  210. package/dist/src/components/utils/calculateDiscountRate.d.ts +3 -0
  211. package/dist/src/components/utils/currencyUtils.d.ts +9 -0
  212. package/dist/src/components/utils/dateUtils.d.ts +10 -0
  213. package/dist/src/components/utils/fixtures/price.fixtures.d.ts +7 -0
  214. package/dist/src/components/utils/formatNumber.d.ts +1 -0
  215. package/dist/src/components/utils/getFeatureName.d.ts +3 -0
  216. package/dist/src/components/utils/getPaidPriceText.d.ts +14 -0
  217. package/dist/src/components/utils/getPlanPrice.d.ts +9 -0
  218. package/dist/src/components/utils/getSubscriptionScheduleUpdateTexts.d.ts +22 -0
  219. package/dist/src/components/utils/numberUtils.d.ts +4 -0
  220. package/dist/src/components/utils/onWheelBlur.d.ts +2 -0
  221. package/dist/src/components/utils/planPrices.d.ts +4 -0
  222. package/dist/src/components/utils/priceTierUtils.d.ts +34 -0
  223. package/dist/src/components/utils/priceUtils.d.ts +2 -0
  224. package/dist/src/hooks/index.d.ts +8 -0
  225. package/dist/src/hooks/useActiveSubscriptions.d.ts +6 -0
  226. package/dist/src/hooks/useBooleanEntitlement.d.ts +5 -0
  227. package/dist/src/hooks/useCustomerPortal.d.ts +6 -0
  228. package/dist/src/hooks/useEnumEntitlement.d.ts +6 -0
  229. package/dist/src/hooks/useFetch.d.ts +8 -0
  230. package/dist/src/hooks/useMeteredEntitlement.d.ts +6 -0
  231. package/dist/src/hooks/useNumericEntitlement.d.ts +6 -0
  232. package/dist/src/hooks/usePaywall.d.ts +6 -0
  233. package/dist/src/hooks/useStiggContext.d.ts +7 -0
  234. package/dist/src/index.d.ts +26 -0
  235. package/dist/src/services/logger.d.ts +12 -0
  236. package/dist/src/stories/CustomTheme.d.ts +2 -0
  237. package/dist/src/stories/baseArgs.d.ts +11 -0
  238. package/dist/src/stories/mocks/checkout/consts.d.ts +11 -0
  239. package/dist/src/stories/mocks/checkout/mockCheckoutPreview.d.ts +2 -0
  240. package/dist/src/stories/mocks/checkout/mockCheckoutState.d.ts +2 -0
  241. package/dist/src/theme/Fonts.d.ts +3 -0
  242. package/dist/src/theme/Theme.d.ts +10 -0
  243. package/dist/src/theme/getResolvedTheme.d.ts +4 -0
  244. package/dist/src/theme/types.d.ts +83 -0
  245. package/dist/src/types.d.ts +16 -0
  246. package/dist/src/utils/styledUtils.d.ts +2 -0
  247. package/dist/stripe.esm-BkoVJ3BR.js +67 -0
  248. package/dist/stripe.esm-BkoVJ3BR.js.map +1 -0
  249. package/dist/stripe.esm-XRG9pJRV.cjs +2 -0
  250. package/dist/stripe.esm-XRG9pJRV.cjs.map +1 -0
  251. package/package.json +15 -3
  252. package/src/assets/add.svg +3 -0
  253. package/src/assets/addons.svg +12 -0
  254. package/src/assets/arrow-forward.svg +3 -0
  255. package/src/assets/arrow-right.svg +6 -0
  256. package/src/assets/billing-info-customer.svg +11 -0
  257. package/src/assets/check-stigg.svg +3 -0
  258. package/src/assets/check.svg +5 -0
  259. package/src/assets/close.svg +3 -0
  260. package/src/assets/contact-support.svg +13 -0
  261. package/src/assets/coupon.svg +6 -0
  262. package/src/assets/credit-card.svg +10 -0
  263. package/src/assets/dollar-coin.svg +13 -0
  264. package/src/assets/edit-icon.svg +3 -0
  265. package/src/assets/entitlement-check.svg +3 -0
  266. package/src/assets/lottie/checkout-success.json +1 -0
  267. package/src/assets/mini-schedule.svg +3 -0
  268. package/src/assets/outlined-checked-circle-disabled.svg +6 -0
  269. package/src/assets/outlined-checked-circle.svg +6 -0
  270. package/src/assets/outlined-circle.svg +3 -0
  271. package/src/assets/pay-as-you-go-charge.svg +11 -0
  272. package/src/assets/payment-method.svg +4 -0
  273. package/src/assets/plus-icon.svg +6 -0
  274. package/src/assets/powered-by-stigg.svg +13 -0
  275. package/src/assets/promotions.svg +13 -0
  276. package/src/assets/remove.svg +3 -0
  277. package/src/assets/restore.svg +3 -0
  278. package/src/assets/sand-clock.svg +4 -0
  279. package/src/assets/schedule-box.svg +9 -0
  280. package/src/assets/schedule.svg +3 -0
  281. package/src/assets/subscription-renews-icon.svg +14 -0
  282. package/src/assets/trash.svg +8 -0
  283. package/src/components/StiggProvider.tsx +170 -0
  284. package/src/components/checkout/Checkout.tsx +37 -0
  285. package/src/components/checkout/CheckoutContainer.style.ts +51 -0
  286. package/src/components/checkout/CheckoutContainer.tsx +193 -0
  287. package/src/components/checkout/CheckoutProvider.tsx +181 -0
  288. package/src/components/checkout/components/Button.tsx +35 -0
  289. package/src/components/checkout/components/ChangePlanButton.tsx +30 -0
  290. package/src/components/checkout/components/ContentLoadingSkeleton.tsx +41 -0
  291. package/src/components/checkout/components/DowngradeToFreeContainer.tsx +115 -0
  292. package/src/components/checkout/components/InputField.tsx +26 -0
  293. package/src/components/checkout/components/Skeletons.style.ts +30 -0
  294. package/src/components/checkout/components/StyledArrow.tsx +9 -0
  295. package/src/components/checkout/components/index.ts +3 -0
  296. package/src/components/checkout/configurations/steps.ts +1 -0
  297. package/src/components/checkout/configurations/textOverrides.ts +150 -0
  298. package/src/components/checkout/configurations/theme.ts +46 -0
  299. package/src/components/checkout/configurations/typography.ts +30 -0
  300. package/src/components/checkout/formatting.ts +12 -0
  301. package/src/components/checkout/hooks/index.ts +8 -0
  302. package/src/components/checkout/hooks/useAddonsStepModel.ts +92 -0
  303. package/src/components/checkout/hooks/useCheckoutModel.ts +53 -0
  304. package/src/components/checkout/hooks/useCouponModel.ts +28 -0
  305. package/src/components/checkout/hooks/useLoadCheckout.ts +48 -0
  306. package/src/components/checkout/hooks/usePaymentStepModel.ts +68 -0
  307. package/src/components/checkout/hooks/usePlanStepModel.ts +184 -0
  308. package/src/components/checkout/hooks/usePreviewSubscription.ts +165 -0
  309. package/src/components/checkout/hooks/useProgressBarModel.ts +211 -0
  310. package/src/components/checkout/hooks/useSubscriptionModel.ts +22 -0
  311. package/src/components/checkout/hooks/useSubscriptionState.ts +26 -0
  312. package/src/components/checkout/index.ts +8 -0
  313. package/src/components/checkout/planHeader/PlanHeader.tsx +41 -0
  314. package/src/components/checkout/planHeader/index.ts +1 -0
  315. package/src/components/checkout/progressBar/CheckoutProgressBar.style.ts +35 -0
  316. package/src/components/checkout/progressBar/CheckoutProgressBar.tsx +82 -0
  317. package/src/components/checkout/promotionCode/AddPromotionCode.tsx +107 -0
  318. package/src/components/checkout/promotionCode/AddPromotionCodeButton.tsx +43 -0
  319. package/src/components/checkout/promotionCode/AppliedPromotionCode.tsx +49 -0
  320. package/src/components/checkout/promotionCode/PromotionCodeSection.tsx +40 -0
  321. package/src/components/checkout/promotionCode/index.ts +1 -0
  322. package/src/components/checkout/steps/addons/CheckoutAddonsStep.style.tsx +34 -0
  323. package/src/components/checkout/steps/addons/CheckoutAddonsStep.tsx +144 -0
  324. package/src/components/checkout/steps/addons/addon.utils.ts +67 -0
  325. package/src/components/checkout/steps/addons/components/AddonInputContainer.tsx +84 -0
  326. package/src/components/checkout/steps/addons/components/AddonTextContainer.tsx +45 -0
  327. package/src/components/checkout/steps/addons/index.ts +1 -0
  328. package/src/components/checkout/steps/payment/PaymentMethods.style.ts +36 -0
  329. package/src/components/checkout/steps/payment/PaymentMethods.tsx +106 -0
  330. package/src/components/checkout/steps/payment/PaymentStep.tsx +63 -0
  331. package/src/components/checkout/steps/payment/index.ts +1 -0
  332. package/src/components/checkout/steps/payment/stripe/StripePaymentForm.tsx +79 -0
  333. package/src/components/checkout/steps/payment/stripe/index.ts +3 -0
  334. package/src/components/checkout/steps/payment/stripe/stripe.utils.ts +122 -0
  335. package/src/components/checkout/steps/payment/stripe/useStripeIntegration.ts +33 -0
  336. package/src/components/checkout/steps/payment/stripe/useSubmit.ts +135 -0
  337. package/src/components/checkout/steps/payment/zuora/ZuoraPaymentForm.tsx +128 -0
  338. package/src/components/checkout/steps/payment/zuora/index.ts +9 -0
  339. package/src/components/checkout/steps/payment/zuora/useZuoraIntegration.ts +56 -0
  340. package/src/components/checkout/steps/payment/zuora/useZuoraSubmit.ts +125 -0
  341. package/src/components/checkout/steps/payment/zuora/zuora.utils.ts +72 -0
  342. package/src/components/checkout/steps/plan/BillingPeriodPicker.style.tsx +69 -0
  343. package/src/components/checkout/steps/plan/BillingPeriodPicker.tsx +86 -0
  344. package/src/components/checkout/steps/plan/CheckoutChargeList.tsx +223 -0
  345. package/src/components/checkout/steps/plan/CheckoutPlanStep.style.tsx +6 -0
  346. package/src/components/checkout/steps/plan/CheckoutPlanStep.tsx +31 -0
  347. package/src/components/checkout/steps/plan/index.ts +1 -0
  348. package/src/components/checkout/summary/CheckoutSuccess.tsx +82 -0
  349. package/src/components/checkout/summary/CheckoutSummary.tsx +458 -0
  350. package/src/components/checkout/summary/CheckoutSummarySkeleton.tsx +38 -0
  351. package/src/components/checkout/summary/components/CheckoutCaptions.tsx +145 -0
  352. package/src/components/checkout/summary/components/GraduatedPriceBreakdown.tsx +70 -0
  353. package/src/components/checkout/summary/components/LineItems.tsx +275 -0
  354. package/src/components/checkout/summary/components/WithSkeleton.tsx +16 -0
  355. package/src/components/checkout/summary/components/getPriceBreakdownString.ts +66 -0
  356. package/src/components/checkout/summary/index.ts +2 -0
  357. package/src/components/checkout/types.ts +82 -0
  358. package/src/components/common/CollapsableSectionIcon.tsx +9 -0
  359. package/src/components/common/Icon.tsx +61 -0
  360. package/src/components/common/InformationTooltip.tsx +28 -0
  361. package/src/components/common/LongText.tsx +100 -0
  362. package/src/components/common/PoweredByStigg.tsx +59 -0
  363. package/src/components/common/ProgressBar.tsx +41 -0
  364. package/src/components/common/StatusChip.tsx +29 -0
  365. package/src/components/common/TiersSelectContainer.tsx +39 -0
  366. package/src/components/common/Typography.tsx +117 -0
  367. package/src/components/common/VolumeBulkSelect.tsx +74 -0
  368. package/src/components/common/VolumePerUnitInput.tsx +42 -0
  369. package/src/components/common/chart/chartjs.helpers.ts +17 -0
  370. package/src/components/common/chart/chartjs.plugins.ts +34 -0
  371. package/src/components/common/chart/chartjs.theme.ts +41 -0
  372. package/src/components/common/chart/chartjs.tooltip.plugin.tsx +224 -0
  373. package/src/components/common/customIcons.ts +24 -0
  374. package/src/components/common/iconColor.ts +15 -0
  375. package/src/components/common/mapExternalTheme.ts +147 -0
  376. package/src/components/common/mediaQuery.ts +19 -0
  377. package/src/components/common/table/DataRows.tsx +33 -0
  378. package/src/components/common/table/EmptyState.tsx +19 -0
  379. package/src/components/common/table/ErrorState.tsx +19 -0
  380. package/src/components/common/table/GenericTable.tsx +199 -0
  381. package/src/components/common/table/LoadingRows.tsx +33 -0
  382. package/src/components/common/table/index.ts +6 -0
  383. package/src/components/common/table/types.ts +34 -0
  384. package/src/components/credits/balance/CreditBalance.tsx +70 -0
  385. package/src/components/credits/balance/CreditBalanceValue.tsx +60 -0
  386. package/src/components/credits/creditUsageChart/CreditUsage.chartjs.ts +223 -0
  387. package/src/components/credits/creditUsageChart/CreditUsageChart.tsx +128 -0
  388. package/src/components/credits/creditUsageChart/CreditUsageChartEmptyState.tsx +29 -0
  389. package/src/components/credits/creditUsageChart/CreditUsageChartErrorState.tsx +19 -0
  390. package/src/components/credits/creditUsageChart/CreditUsageChartHeader.tsx +104 -0
  391. package/src/components/credits/creditUsageChart/CreditUsageChartTooltip.tsx +93 -0
  392. package/src/components/credits/creditUsageChart/CreditUsageLegend.tsx +141 -0
  393. package/src/components/credits/creditUsageChart/types.ts +4 -0
  394. package/src/components/credits/grants/CreditGrants.tsx +84 -0
  395. package/src/components/credits/grants/CreditGrantsTable.tsx +113 -0
  396. package/src/components/credits/grants/types.ts +40 -0
  397. package/src/components/credits/grants/utils.ts +25 -0
  398. package/src/components/credits/hooks/useCreditBalance.ts +75 -0
  399. package/src/components/credits/hooks/useCreditGrants.ts +45 -0
  400. package/src/components/credits/hooks/useCreditUsage.ts +50 -0
  401. package/src/components/credits/index.ts +15 -0
  402. package/src/components/credits/localization.ts +25 -0
  403. package/src/components/credits/utilization/CreditUtilization.tsx +74 -0
  404. package/src/components/credits/utilization/CreditUtilizationValue.tsx +113 -0
  405. package/src/components/credits/utils/creditBalanceUtils.ts +31 -0
  406. package/src/components/credits/utils/creditGrantUtils.ts +27 -0
  407. package/src/components/customerPortal/CustomerPortal.style.ts +20 -0
  408. package/src/components/customerPortal/CustomerPortal.tsx +37 -0
  409. package/src/components/customerPortal/CustomerPortalContainer.tsx +77 -0
  410. package/src/components/customerPortal/CustomerPortalContext.ts +32 -0
  411. package/src/components/customerPortal/CustomerPortalHeader.tsx +18 -0
  412. package/src/components/customerPortal/CustomerPortalProvider.tsx +49 -0
  413. package/src/components/customerPortal/billing/InformationGrid.tsx +54 -0
  414. package/src/components/customerPortal/billing/InvoicesSection.tsx +41 -0
  415. package/src/components/customerPortal/billing/PaymentDetailsSection.tsx +140 -0
  416. package/src/components/customerPortal/common/ExternalLinkButton.tsx +34 -0
  417. package/src/components/customerPortal/common/SectionContainer.tsx +22 -0
  418. package/src/components/customerPortal/common/SectionHeader.ts +15 -0
  419. package/src/components/customerPortal/common/SectionTitle.tsx +23 -0
  420. package/src/components/customerPortal/common/SkeletonButton.tsx +5 -0
  421. package/src/components/customerPortal/common/StyledButton.tsx +13 -0
  422. package/src/components/customerPortal/customerPortalTextOverrides.ts +39 -0
  423. package/src/components/customerPortal/customerPortalTheme.ts +35 -0
  424. package/src/components/customerPortal/hooks/useCustomerPortal.ts +39 -0
  425. package/src/components/customerPortal/index.ts +16 -0
  426. package/src/components/customerPortal/paywall/CustomerPortalPaywall.style.ts +33 -0
  427. package/src/components/customerPortal/paywall/CustomerPortalPaywall.tsx +36 -0
  428. package/src/components/customerPortal/subscriptionOverview/ContactCustomerSupport.tsx +50 -0
  429. package/src/components/customerPortal/subscriptionOverview/SubscriptionOverviewLoader.tsx +28 -0
  430. package/src/components/customerPortal/subscriptionOverview/SubscriptionsOverview.tsx +106 -0
  431. package/src/components/customerPortal/subscriptionOverview/SubscriptionsOverviewHeader.tsx +48 -0
  432. package/src/components/customerPortal/subscriptionOverview/charges/ChargeItem.tsx +74 -0
  433. package/src/components/customerPortal/subscriptionOverview/charges/ChargeList.tsx +65 -0
  434. package/src/components/customerPortal/subscriptionOverview/subscriptionScheduledUpdates/SubscriptionScheduledUpdateRow.tsx +110 -0
  435. package/src/components/customerPortal/subscriptionOverview/subscriptionScheduledUpdates/SubscriptionScheduledUpdatesAlert.tsx +158 -0
  436. package/src/components/customerPortal/subscriptionOverview/subscriptionView/SubscriptionView.style.ts +6 -0
  437. package/src/components/customerPortal/subscriptionOverview/subscriptionView/SubscriptionView.tsx +37 -0
  438. package/src/components/customerPortal/subscriptionOverview/subscriptionView/TrialPanel.tsx +58 -0
  439. package/src/components/customerPortal/subscriptionOverview/tabs/AddonsList.tsx +28 -0
  440. package/src/components/customerPortal/subscriptionOverview/tabs/Promotions.tsx +62 -0
  441. package/src/components/customerPortal/subscriptionOverview/tabs/SubscriptionTabs.style.tsx +32 -0
  442. package/src/components/customerPortal/subscriptionOverview/tabs/SubscriptionTabs.tsx +100 -0
  443. package/src/components/customerPortal/subscriptionOverview/types/customerPortal.types.ts +4 -0
  444. package/src/components/customerPortal/subscriptionOverview/upcomingBilling/NextEstimatedBill.tsx +29 -0
  445. package/src/components/customerPortal/subscriptionOverview/upcomingBilling/NoUpcomingBilling.tsx +18 -0
  446. package/src/components/customerPortal/subscriptionOverview/upcomingBilling/UpcomingBilling.tsx +89 -0
  447. package/src/components/customerPortal/types.ts +20 -0
  448. package/src/components/customerPortal/usage/CustomerUsageData.style.tsx +22 -0
  449. package/src/components/customerPortal/usage/CustomerUsageData.tsx +124 -0
  450. package/src/components/customerPortal/usage/featureUsage/EntitlementCTAButton.tsx +62 -0
  451. package/src/components/customerPortal/usage/featureUsage/FeatureUsage.helper.ts +45 -0
  452. package/src/components/customerPortal/usage/featureUsage/FeatureUsage.style.ts +13 -0
  453. package/src/components/customerPortal/usage/featureUsage/FeatureUsage.tsx +96 -0
  454. package/src/components/customerPortal/usage/featureUsage/FeatureUsageProgressBar.tsx +56 -0
  455. package/src/components/guards/BooleanEntitlementGuard.tsx +21 -0
  456. package/src/components/guards/EnumEntitlementGuard.tsx +17 -0
  457. package/src/components/guards/MeteredEntitlementGuard.tsx +21 -0
  458. package/src/components/guards/NumericEntitlementGuard.tsx +21 -0
  459. package/src/components/hooks/index.ts +1 -0
  460. package/src/components/hooks/useChargeSort.ts +17 -0
  461. package/src/components/hooks/useIsScreenWiderThan.ts +6 -0
  462. package/src/components/hooks/usePagination.ts +33 -0
  463. package/src/components/hooks/useWaitForCheckoutCompleted.ts +65 -0
  464. package/src/components/paywall/BillingPeriodPicker.tsx +90 -0
  465. package/src/components/paywall/EntitlementRow.tsx +127 -0
  466. package/src/components/paywall/Paywall.tsx +189 -0
  467. package/src/components/paywall/PaywallContainer.tsx +119 -0
  468. package/src/components/paywall/PaywallLoader.tsx +96 -0
  469. package/src/components/paywall/PlanCompatibleAddons.tsx +127 -0
  470. package/src/components/paywall/PlanEntitlements.tsx +75 -0
  471. package/src/components/paywall/PlanOffering.tsx +256 -0
  472. package/src/components/paywall/PlanOfferingButton.tsx +232 -0
  473. package/src/components/paywall/PlanPrice.tsx +154 -0
  474. package/src/components/paywall/hooks/useLoadPaywallData.ts +75 -0
  475. package/src/components/paywall/index.ts +5 -0
  476. package/src/components/paywall/paywallTextOverrides.ts +79 -0
  477. package/src/components/paywall/types.ts +80 -0
  478. package/src/components/paywall/utils/calculateTrialDaysLeft.ts +5 -0
  479. package/src/components/paywall/utils/calculateUnitQuantityText.ts +23 -0
  480. package/src/components/paywall/utils/computeDefaultBillingPeriod.ts +36 -0
  481. package/src/components/paywall/utils/getPlansToDisplay.ts +13 -0
  482. package/src/components/paywall/utils/hasPricePoints.ts +10 -0
  483. package/src/components/paywall/utils/mapPaywallData.ts +126 -0
  484. package/src/components/utils/calculateDiscountRate.ts +49 -0
  485. package/src/components/utils/currencyUtils.ts +38 -0
  486. package/src/components/utils/dateUtils.ts +17 -0
  487. package/src/components/utils/fixtures/price.fixtures.ts +42 -0
  488. package/src/components/utils/formatNumber.ts +5 -0
  489. package/src/components/utils/getFeatureName.ts +26 -0
  490. package/src/components/utils/getPaidPriceText.ts +77 -0
  491. package/src/components/utils/getPlanPrice.ts +62 -0
  492. package/src/components/utils/getSubscriptionScheduleUpdateTexts.tsx +88 -0
  493. package/src/components/utils/numberUtils.ts +6 -0
  494. package/src/components/utils/onWheelBlur.ts +3 -0
  495. package/src/components/utils/planPrices.ts +10 -0
  496. package/src/components/utils/priceTierUtils.spec.ts +84 -0
  497. package/src/components/utils/priceTierUtils.ts +250 -0
  498. package/src/components/utils/priceUtils.ts +11 -0
  499. package/src/custom.d.ts +6 -0
  500. package/src/hooks/index.ts +8 -0
  501. package/src/hooks/useActiveSubscriptions.ts +21 -0
  502. package/src/hooks/useBooleanEntitlement.ts +20 -0
  503. package/src/hooks/useCustomerPortal.ts +21 -0
  504. package/src/hooks/useEnumEntitlement.ts +20 -0
  505. package/src/hooks/useFetch.ts +32 -0
  506. package/src/hooks/useMeteredEntitlement.ts +20 -0
  507. package/src/hooks/useNumericEntitlement.ts +20 -0
  508. package/src/hooks/usePaywall.ts +21 -0
  509. package/src/hooks/useStiggContext.ts +13 -0
  510. package/src/index.ts +103 -0
  511. package/src/services/logger.ts +22 -0
  512. package/src/stories/Checkout.stories.tsx +123 -0
  513. package/src/stories/CreditBalance.stories.tsx +248 -0
  514. package/src/stories/CreditGrants.stories.tsx +214 -0
  515. package/src/stories/CreditUsageChart.stories.tsx +347 -0
  516. package/src/stories/CreditUtilization.stories.tsx +287 -0
  517. package/src/stories/CustomTheme.ts +57 -0
  518. package/src/stories/CustomerPortal.stories.tsx +265 -0
  519. package/src/stories/GenericTable.stories.tsx +263 -0
  520. package/src/stories/Paywall.stories.tsx +147 -0
  521. package/src/stories/ProgressBar.stories.tsx +103 -0
  522. package/src/stories/StatusChip.stories.tsx +154 -0
  523. package/src/stories/baseArgs.ts +10 -0
  524. package/src/stories/mocks/checkout/consts.ts +15 -0
  525. package/src/stories/mocks/checkout/mockCheckoutPreview.ts +152 -0
  526. package/src/stories/mocks/checkout/mockCheckoutState.ts +212 -0
  527. package/src/styles.css +46 -0
  528. package/src/theme/Fonts.tsx +80 -0
  529. package/src/theme/Theme.tsx +64 -0
  530. package/src/theme/emotion.d.ts +17 -0
  531. package/src/theme/getResolvedTheme.ts +135 -0
  532. package/src/theme/types.ts +85 -0
  533. package/src/types.ts +22 -0
  534. package/src/utils/styledUtils.ts +64 -0
@@ -0,0 +1 @@
1
+ {"v":"5.12.1","fr":30,"ip":0,"op":201,"w":700,"h":700,"nm":"Check","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":315,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[-304,91,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,-241],[-304,-161]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"t":145.5,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[100]},{"t":139.6005859375,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":130,"op":204,"st":-2,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":270,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[-304,91,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,-241],[-304,-161]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"t":145.5,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[100]},{"t":139.6005859375,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":130,"op":204,"st":-2,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":225,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[-304,91,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,-241],[-304,-161]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"t":145.5,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[100]},{"t":139.6005859375,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":130,"op":204,"st":-2,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[-304,91,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,-241],[-304,-161]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"t":145.5,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[100]},{"t":139.6005859375,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":130,"op":204,"st":-2,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":135,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[-304,91,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,-241],[-304,-161]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"t":145.5,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[100]},{"t":139.6005859375,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":130,"op":204,"st":-2,"ct":1,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":90,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[-304,91,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,-241],[-304,-161]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"t":145.5,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[100]},{"t":139.6005859375,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":130,"op":204,"st":-2,"ct":1,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":45,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[-304,91,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,-241],[-304,-161]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"t":145.5,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[100]},{"t":139.6005859375,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":130,"op":204,"st":-2,"ct":1,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[-304,91,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,-241],[-304,-161]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[100]},{"t":145.5,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[100]},{"t":139.6005859375,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":130,"op":204,"st":-2,"ct":1,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Check v","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-1.9,"ix":10},"p":{"a":0,"k":[352,360,0],"ix":2,"l":2},"a":{"a":0,"k":[-120.265,116.765,0],"ix":1,"l":2},"s":{"a":0,"k":[278,278,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-161,123],[-137,148],[-79.531,85.531]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":135,"s":[0]},{"t":148,"s":[100]}],"ix":1},"e":{"a":0,"k":0,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":135,"op":201,"st":-35,"ct":1,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Circle Stroke","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":7,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[4,-6,0],"ix":1,"l":2},"s":{"a":0,"k":[132,132,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[306,306],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[1,1,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[1,1,1,1]},{"t":136,"s":[1,1,1,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[4,-6],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.338],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":87,"s":[50]},{"t":122,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.338],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":87,"s":[45]},{"t":122,"s":[0]}],"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.474],"y":[1]},"o":{"x":[0.43],"y":[0]},"t":0,"s":[-170.4]},{"t":111,"s":[-1250.4]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":201,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":13,"ty":1,"nm":"Dark Gray Solid 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[350,350,0],"ix":2,"l":2},"a":{"a":0,"k":[350,350,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":700,"sh":700,"sc":"#2d2d2d","ip":0,"op":201,"st":0,"bm":0}],"markers":[],"props":{}}
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.95392 1.03353C7.1196 1.56038 6.82682 2.12178 6.29997 2.28746C5.79034 2.44773 5.30237 2.68036 4.85175 2.98146C3.76168 3.70982 2.95789 4.79361 2.57732 6.04817C2.19675 7.30273 2.26296 8.65044 2.76466 9.86166C3.26637 11.0729 4.17252 12.0727 5.32873 12.6907C6.48494 13.3087 7.81967 13.5067 9.10549 13.2509C10.3913 12.9951 11.5487 12.3014 12.3804 11.288C13.2121 10.2746 13.6666 9.00413 13.6666 7.69312C13.6666 7.14083 14.1144 6.69312 14.6666 6.69312C15.2189 6.69312 15.6666 7.14083 15.6666 7.69312C15.6666 7.92228 15.6564 8.15052 15.6361 8.37721C15.6465 8.44937 15.6492 8.52379 15.6432 8.59952L15.6392 8.64883C15.6298 8.75932 15.6028 8.86407 15.5612 8.96057C15.3409 10.2743 14.7807 11.5158 13.9264 12.5568C12.8012 13.9279 11.2353 14.8664 9.49568 15.2125C7.75603 15.5585 5.95022 15.2906 4.38594 14.4545C2.82166 13.6184 1.59568 12.2657 0.916905 10.627C0.238131 8.98832 0.148554 7.16495 0.663439 5.4676C1.17832 3.77025 2.26581 2.30394 3.74061 1.31852C4.35023 0.911179 5.01049 0.596408 5.69999 0.379577C6.22684 0.213898 6.78824 0.506683 6.95392 1.03353ZM7.56761 1.27284C7.61434 0.722538 8.09832 0.314306 8.64863 0.361031L8.69791 0.365373C9.24791 0.415584 9.65307 0.902149 9.60286 1.45215C9.55265 2.00214 9.06608 2.4073 8.51608 2.35709L8.47942 2.35386C7.92912 2.30714 7.52089 1.82315 7.56761 1.27284ZM12.4186 2.90891C12.8384 2.55014 13.4697 2.59967 13.8284 3.01954C13.8498 3.04454 13.871 3.06967 13.892 3.09494C14.2454 3.51937 14.1878 4.14991 13.7634 4.50329C13.339 4.85667 12.7084 4.79906 12.355 4.37463C12.3395 4.35592 12.3238 4.33731 12.3079 4.31879C11.9492 3.89892 11.9987 3.26769 12.4186 2.90891ZM8.99998 5.33352C8.99998 4.78124 8.55226 4.33352 7.99998 4.33352C7.44769 4.33352 6.99998 4.78124 6.99998 5.33352V8.00019C6.99998 8.55247 7.44769 9.00019 7.99998 9.00019H10.6666C11.2189 9.00019 11.6666 8.55247 11.6666 8.00019C11.6666 7.4479 11.2189 7.00019 10.6666 7.00019H8.99998V5.33352Z" fill="#7586B0"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Stepper indicators">
3
+ <circle id="Ellipse 5" cx="10.667" cy="10" r="9.25" fill="#B3BCD3" stroke="#B3BCD3" stroke-width="1.5"/>
4
+ <path id="Shape" d="M5.66699 10.3636L9.30366 14L13.304 10L15.3042 8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Group 16159">
3
+ <circle id="Ellipse 5" cx="10" cy="10" r="9.25" fill="#327EEE" stroke="#327EEE" stroke-width="1.5"/>
4
+ <path id="Shape" d="M5 10.3636L8.63667 14L12.637 10L14.6372 8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="10.333" cy="10" r="9" fill="white" stroke="#327EEE" stroke-width="2"/>
3
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1889_12169)">
3
+ <path d="M11.4286 7.42578L8 13.1401" stroke="#7586B0" stroke-width="1.71429" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M14.857 13.1412C15.3274 12.0123 15.5118 10.7848 15.3938 9.56751C15.2758 8.35027 14.8592 7.18097 14.1808 6.16341C13.5024 5.14585 12.5833 4.31152 11.5051 3.73446C10.4268 3.1574 9.22281 2.85547 7.99986 2.85547C6.77691 2.85547 5.57288 3.1574 4.49463 3.73446C3.41639 4.31152 2.49729 5.14585 1.81892 6.16341C1.14055 7.18097 0.723889 8.35027 0.605928 9.56751C0.487968 10.7848 0.672354 12.0123 1.14272 13.1412H14.857Z" stroke="#7586B0" stroke-width="1.71429" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_1889_12169">
8
+ <rect width="16" height="16" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.1667 4H2.83333C1.82081 4 1 4.89543 1 6V18C1 19.1046 1.82081 20 2.83333 20H21.1667C22.1792 20 23 19.1046 23 18V6C23 4.89543 22.1792 4 21.1667 4Z" fill="#C6C6C7"/>
3
+ <path opacity="0.3" d="M19.75 16.4286H17.5C17.0125 16.4286 16.75 16.2 16.75 15.6667C16.75 15.1334 17.0125 14.9048 17.5 14.9048H19.75C20.2375 14.9048 20.5 15.1334 20.5 15.6667C20.5 16.2 20.2375 16.4286 19.75 16.4286ZM15.25 16.4286H13C12.5125 16.4286 12.25 16.2 12.25 15.6667C12.25 15.1334 12.5125 14.9048 13 14.9048H15.25C15.7375 14.9048 16 15.1334 16 15.6667C16 16.2 15.7375 16.4286 15.25 16.4286ZM10.75 16.4286H8.5C8.0125 16.4286 7.75 16.2 7.75 15.6667C7.75 15.1334 8.0125 14.9048 8.5 14.9048H10.75C11.2375 14.9048 11.5 15.1334 11.5 15.6667C11.5 16.2 11.2375 16.4286 10.75 16.4286ZM6.25 16.4286H4C3.5125 16.4286 3.25 16.2 3.25 15.6667C3.25 15.1334 3.5125 14.9048 4 14.9048H6.25C6.7375 14.9048 7 15.1334 7 15.6667C7 16.2 6.7375 16.4286 6.25 16.4286Z" fill="black"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="plus">
3
+ <path id="Shape" d="M10 4.16666V15.8333" stroke="#327EEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path id="Shape_2" d="M4.16699 10H15.8337" stroke="#327EEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="135" height="16" viewBox="0 0 135 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.0987549 3.43016V12.9878H1.15589V9.52681H3.96527C5.94922 9.52681 7.28874 8.25245 7.28874 6.47848C7.28874 4.70452 5.94922 3.43016 3.96527 3.43016H0.0987549ZM1.15589 8.55656V4.40765H4.04492C5.33376 4.40765 6.18816 5.26205 6.18816 6.47848C6.18816 7.69492 5.33376 8.55656 4.04492 8.55656H1.15589Z" fill="#001E6C"/>
3
+ <path d="M11.7787 13.1616C13.9075 13.1616 15.6525 11.5397 15.6525 9.38199C15.6525 7.21703 13.9365 5.62408 11.8077 5.62408C9.64999 5.62408 7.93395 7.24599 7.93395 9.41095C7.93395 11.5687 9.62103 13.1616 11.7787 13.1616ZM11.7932 12.2276C10.2365 12.2276 9.02005 11.0256 9.02005 9.39647C9.02005 7.76732 10.2365 6.56537 11.7932 6.56537C13.321 6.56537 14.5664 7.76732 14.5664 9.39647C14.5664 11.0256 13.321 12.2276 11.7932 12.2276Z" fill="#001E6C"/>
4
+ <path d="M19.9054 12.9878L21.4766 6.94189H21.5056L23.0623 12.9878H24.4018L26.5958 5.8051H25.4155L23.7936 11.909H23.7647L22.2152 5.8051H20.7815L19.232 11.909H19.203L17.5522 5.8051H16.3575L18.5659 12.9878H19.9054Z" fill="#001E6C"/>
5
+ <path d="M34.9835 9.42544C34.9835 7.30392 33.4051 5.62408 31.1532 5.62408C29.0534 5.62408 27.3084 7.18083 27.3084 9.41095C27.3084 11.5542 28.9086 13.1616 31.1822 13.1616C32.7679 13.1616 34.0567 12.3941 34.6794 11.1922L33.7816 10.707C33.3688 11.6049 32.3696 12.2348 31.1966 12.2348C29.5241 12.2348 28.5031 10.9894 28.4017 9.7223H34.969C34.9835 9.59197 34.9835 9.54129 34.9835 9.42544ZM31.1387 6.55089C32.5434 6.55089 33.6657 7.49942 33.854 8.80998H28.4307C28.6552 7.5501 29.7558 6.55089 31.1387 6.55089Z" fill="#001E6C"/>
6
+ <path d="M39.5922 5.68201C38.564 5.68201 37.8182 6.20334 37.4924 6.93464L37.391 5.8051H36.486V12.9878H37.5431V8.5638C37.5431 7.44873 38.1585 6.77535 39.3171 6.77535H39.9977V5.68201H39.5922Z" fill="#001E6C"/>
7
+ <path d="M48.2486 9.42544C48.2486 7.30392 46.6702 5.62408 44.4183 5.62408C42.3185 5.62408 40.5735 7.18083 40.5735 9.41095C40.5735 11.5542 42.1737 13.1616 44.4473 13.1616C46.033 13.1616 47.3218 12.3941 47.9445 11.1922L47.0467 10.707C46.634 11.6049 45.6348 12.2348 44.4618 12.2348C42.7892 12.2348 41.7682 10.9894 41.6669 9.7223H48.2342C48.2486 9.59197 48.2486 9.54129 48.2486 9.42544ZM44.4039 6.55089C45.8085 6.55089 46.9308 7.49942 47.1191 8.80998H41.6958C41.9203 7.5501 43.0209 6.55089 44.4039 6.55089Z" fill="#001E6C"/>
8
+ <path d="M55.846 7.02877C55.2161 6.13817 54.2024 5.63132 53.0149 5.63132C50.9224 5.63132 49.2425 7.21703 49.2425 9.39647C49.2425 11.5759 50.8934 13.1616 52.986 13.1616C54.1807 13.1616 55.2161 12.6403 55.8533 11.7425L55.9981 12.9878H56.9032V2.56128L55.846 2.67713V7.02877ZM53.0294 12.2276C51.5306 12.2276 50.3286 11.0401 50.3286 9.39647C50.3286 7.75284 51.5306 6.56537 53.0294 6.56537C54.5789 6.56537 55.846 7.76732 55.846 9.39647C55.846 11.0256 54.5789 12.2276 53.0294 12.2276Z" fill="#001E6C"/>
9
+ <path d="M65.7314 5.63132C64.5367 5.63132 63.5085 6.14541 62.8713 7.04325V2.56128L61.8142 2.67713V12.9878H62.7192L62.8641 11.7497C63.494 12.6475 64.5077 13.1616 65.7024 13.1616C67.795 13.1616 69.4748 11.5759 69.4748 9.39647C69.4748 7.21703 67.8239 5.63132 65.7314 5.63132ZM65.6879 12.2276C64.1384 12.2276 62.8713 11.0256 62.8713 9.39647C62.8713 7.76732 64.1384 6.56537 65.6879 6.56537C67.1867 6.56537 68.3887 7.75284 68.3887 9.39647C68.3887 11.0401 67.1867 12.2276 65.6879 12.2276Z" fill="#001E6C"/>
10
+ <path d="M76.2187 5.8051V9.9178C76.2187 11.3297 75.3136 12.1841 74.0465 12.1841C72.7866 12.1841 72.077 11.4456 72.077 10.1133V5.8051H71.0199V10.2726C71.0199 11.9669 72.1349 13.0965 73.7641 13.0965C74.843 13.0965 75.6901 12.6765 76.2187 11.9814V12.8937C76.2187 14.1608 75.2629 15.0804 73.8727 15.0804C72.7504 15.0804 71.8236 14.4794 71.5847 13.4295L70.6579 13.9074C71.0995 15.16 72.3087 16 73.8582 16C75.8132 16 77.2758 14.5953 77.2758 12.7923V5.8051H76.2187Z" fill="#001E6C"/>
11
+ <path d="M108.672 10.4867C108.672 11.9077 107.411 12.7873 105.491 12.7873C104.464 12.7873 103.634 12.6028 102.84 12.2091C102.914 11.76 102.982 11.2187 103 10.5913C103.738 11.0219 104.575 11.231 105.381 11.231C106.34 11.231 106.839 11.0096 106.839 10.5421C106.857 10.0807 106.5 9.87155 105.067 9.59473C103.406 9.26255 102.668 8.57359 102.668 7.35559C102.668 5.97767 103.929 5.0857 105.848 5.0857C106.697 5.0857 107.54 5.24564 108.186 5.52246L107.866 7.06647C107.226 6.7712 106.537 6.63587 105.848 6.63587C104.95 6.63587 104.507 6.85733 104.507 7.29408C104.507 7.67547 104.815 7.83541 106.217 8.12453C108.007 8.50592 108.678 9.19488 108.678 10.4744L108.672 10.4867ZM112.879 11.0957C112.16 11.0957 111.581 10.7143 111.581 9.70546V6.88808H113.408L113.747 5.25794H111.581V2.93884C111.157 3.06187 110.517 3.2095 109.681 3.28332L109.662 10.0315C109.662 11.8708 110.763 12.7996 112.412 12.7996C112.787 12.7996 113.113 12.7627 113.39 12.6951L113.753 10.9665C113.525 11.0465 113.236 11.1018 112.879 11.1018V11.0957ZM114.965 12.6889H116.884V5.25794H114.965V12.6889ZM115.93 2.21912C115.309 2.21297 114.829 2.66817 114.823 3.27102C114.823 3.89232 115.278 4.35983 115.894 4.36598C116.515 4.36598 116.976 3.92923 116.989 3.32638C117.001 2.70508 116.546 2.23142 115.937 2.21912H115.93ZM126.056 5.25794V11.5263C126.056 13.8946 124.456 15.5247 121.756 15.5247C120.784 15.5247 119.714 15.3094 118.994 14.8973C119.492 14.3867 119.831 13.9438 120.046 13.6239C120.532 13.79 121.042 13.8762 121.565 13.8762C123.275 13.8762 124.143 12.9288 124.143 11.7354V11.4955C123.534 12.1968 122.654 12.6336 121.602 12.6336C119.584 12.6336 118.065 11.1326 118.065 8.90577C118.065 6.67893 119.726 5.098 121.756 5.098C122.808 5.098 123.724 5.4794 124.333 6.19912L124.395 5.25179H126.062L126.056 5.25794ZM124.155 8.90577C124.155 7.72468 123.294 6.82657 122.107 6.82657C120.919 6.82657 120.046 7.72468 120.046 8.90577C120.046 10.0868 120.907 10.9542 122.107 10.9542C123.306 10.9542 124.155 10.0561 124.155 8.90577ZM134.994 5.25794V11.5263C134.994 13.8946 133.394 15.5247 130.694 15.5247C129.722 15.5247 128.652 15.3094 127.932 14.8973C128.43 14.3867 128.769 13.9438 128.984 13.6239C129.47 13.79 129.98 13.8762 130.503 13.8762C132.213 13.8762 133.081 12.9288 133.081 11.7354V11.4955C132.472 12.1968 131.592 12.6336 130.54 12.6336C128.523 12.6336 127.003 11.1326 127.003 8.90577C127.003 6.67893 128.664 5.098 130.694 5.098C131.746 5.098 132.662 5.4794 133.271 6.19912L133.333 5.25179H135L134.994 5.25794ZM133.093 8.90577C133.093 7.72468 132.232 6.82657 131.045 6.82657C129.857 6.82657 128.984 7.72468 128.984 8.90577C128.984 10.0868 129.845 10.9542 131.045 10.9542C132.244 10.9542 133.093 10.0561 133.093 8.90577Z" fill="#001E6C"/>
12
+ <path d="M95.7092 14.9825C95.6354 15.0194 94.2267 15.6407 91.7353 15.5238C90.4374 15.4623 89.3117 15.2224 88.512 15.0009L92.8241 9.99361C93.5931 10.1905 94.5835 10.375 95.7092 10.4304C98.2005 10.5534 99.6092 9.92594 99.683 9.88903L95.7092 14.9886V14.9825ZM89.2686 5.36155C88.5612 2.96863 88.838 1.45537 88.8564 1.3754L84.8457 6.44421C84.8334 6.52418 84.5566 8.03744 85.2578 10.4304C85.6269 11.673 86.1252 12.7126 86.5312 13.4384L90.3759 8.0682C90.0068 7.36693 89.5885 6.44421 89.2686 5.3677V5.36155ZM99.2647 5.89058C98.6988 3.97132 97.813 2.55033 97.4501 2.009L93.8822 6.55494L94.5527 9.77216C94.9526 9.82752 95.3462 9.86443 95.7461 9.88903C95.9491 9.89518 96.1521 9.90134 96.3489 9.90134C98.2805 9.90134 99.357 9.44613 99.4739 9.39076L99.7507 9.26773C99.7753 8.60338 99.7322 7.42844 99.2709 5.88443L99.2647 5.89058ZM97.0256 1.68297C96.4166 1.45537 94.8295 0.932493 92.8303 0.83407C91.2248 0.754101 90.0744 0.987856 89.4347 1.1724L89.3793 1.46767C89.367 1.52919 89.121 2.96248 89.7792 5.20777C89.8899 5.58916 90.0252 5.9644 90.1729 6.33964L93.4577 6.22891L97.0318 1.68912L97.0256 1.68297Z" fill="#001E6C"/>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_834_116282)">
3
+ <path d="M21.4286 5.32483H2.57146C1.62469 5.32483 0.857178 6.09235 0.857178 7.03911V10.4677C0.857178 11.4145 1.62469 12.182 2.57146 12.182H21.4286C22.3754 12.182 23.1429 11.4145 23.1429 10.4677V7.03911C23.1429 6.09235 22.3754 5.32483 21.4286 5.32483Z" stroke="#7586B0" stroke-width="1.71429" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M21.4287 12.182V21.6106C21.4287 22.0652 21.248 22.5013 20.9266 22.8227C20.6051 23.1442 20.169 23.3249 19.7144 23.3249H4.28582C3.83116 23.3249 3.39513 23.1442 3.07363 22.8227C2.75215 22.5013 2.57153 22.0652 2.57153 21.6106V12.182" stroke="#7586B0" stroke-width="1.71429" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M12 5.32483V23.3248" stroke="#7586B0" stroke-width="1.71429" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M17.1429 1.03912L12 5.32484L6.85718 1.03912" stroke="#7586B0" stroke-width="1.71429" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_834_116282">
10
+ <rect width="24" height="24" fill="white" transform="translate(0 0.182007)"/>
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 12H21" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </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.8333 2.5C6.69168 2.5 3.33334 5.85833 3.33334 10H0.833344L4.07501 13.2417L4.13334 13.3583L7.50001 10H5.00001C5.00001 6.775 7.60834 4.16667 10.8333 4.16667C14.0583 4.16667 16.6667 6.775 16.6667 10C16.6667 13.225 14.0583 15.8333 10.8333 15.8333C9.22501 15.8333 7.76668 15.175 6.71668 14.1167L5.53334 15.3C6.89168 16.6583 8.75834 17.5 10.8333 17.5C14.975 17.5 18.3333 14.1417 18.3333 10C18.3333 5.85833 14.975 2.5 10.8333 2.5ZM10 6.66667V10.8333L13.5667 12.95L14.1667 11.9417L11.25 10.2083V6.66667H10Z" fill="#6678A7"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.9469 13.5999H11.9344L11.935 10.7756C11.935 10.6288 11.87 10.4819 11.7557 10.3838L8.62061 7.91816L11.755 5.4532C11.8694 5.35507 11.9344 5.22444 11.9344 5.06132L11.935 2.40004H12.9475C13.225 2.40004 13.4375 2.18755 13.4375 1.91004C13.4375 1.63254 13.225 1.42004 12.9475 1.42004L3.05311 1.42067C2.77561 1.42067 2.56311 1.63316 2.56311 1.91067C2.56311 2.18817 2.77561 2.40067 3.05311 2.40067H4.06561L4.06498 5.06131C4.06498 5.20818 4.12998 5.35505 4.24436 5.45318L7.36244 7.91814L4.245 10.3837C4.13062 10.4819 4.06562 10.6125 4.06562 10.7756V13.5999H3.05313C2.77562 13.5999 2.56313 13.8124 2.56313 14.0899C2.56313 14.3674 2.77562 14.5799 3.05313 14.5799H12.9469C13.2244 14.5799 13.4369 14.3674 13.4369 14.0899C13.4369 13.8124 13.2244 13.5999 12.9469 13.5999ZM5.04498 2.39995H10.9551V4.81627L8.00002 7.16747L5.04498 4.81627V2.39995ZM5.04498 11.0206L8.00002 8.66939L10.9551 11.0044V13.5838H5.04498V11.0206Z" fill="white"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.05303 1.25404L12.9474 1.25342C13.317 1.25342 13.6041 1.54053 13.6041 1.91008C13.6041 2.27964 13.317 2.56675 12.9474 2.56675H12.1016L12.101 5.06136V5.06136C12.101 5.2747 12.0135 5.45101 11.8635 5.57973L11.8581 5.58436L8.89014 7.9182L11.8642 10.2572C12.0164 10.3878 12.1016 10.5814 12.1016 10.7757L12.101 13.4333H12.9468C13.3164 13.4333 13.6035 13.7204 13.6035 14.09C13.6035 14.4595 13.3164 14.7466 12.9468 14.7466H3.05304C2.68349 14.7466 2.39638 14.4595 2.39638 14.09C2.39638 13.7204 2.68349 13.4333 3.05304 13.4333H3.89887V10.7757C3.89887 10.5623 3.98635 10.386 4.13639 10.2573L4.14144 10.253L7.09365 7.91821L4.13566 5.57982C3.98346 5.44923 3.89823 5.25562 3.89823 5.06135L3.89882 2.56738H3.05303C2.68348 2.56738 2.39636 2.28026 2.39636 1.91071C2.39636 1.54116 2.68348 1.25405 3.05303 1.25404V1.25404ZM12.9474 1.58675L3.05304 1.58738C2.86758 1.58738 2.7297 1.72525 2.7297 1.91071C2.7297 2.09617 2.86757 2.23404 3.05303 2.23404H4.23223L4.23157 5.06135V5.06135C4.23158 5.15983 4.27538 5.25908 4.35053 5.32476L7.63107 7.91815L4.35113 10.5123C4.2739 10.5795 4.23221 10.6639 4.23221 10.7757V13.7666H3.05304C2.86759 13.7666 2.72971 13.9045 2.72971 14.09C2.72971 14.2754 2.86759 14.4133 3.05304 14.4133H12.9468C13.1323 14.4133 13.2701 14.2754 13.2701 14.09C13.2701 13.9045 13.1323 13.7667 12.9468 13.7667H11.7676L11.7683 10.7757V10.7757C11.7683 10.6772 11.7245 10.5781 11.6495 10.5124L8.35092 7.91819L11.6489 5.32461C11.726 5.25743 11.7676 5.17306 11.7676 5.06136L11.7683 2.23342H12.9474C13.1329 2.23342 13.2708 2.09554 13.2708 1.91008C13.2708 1.72463 13.1329 1.58676 12.9474 1.58675V1.58675ZM4.87823 2.23332H11.1216V4.89669L7.99994 7.3805L4.87823 4.89669V2.23332ZM5.21157 2.56666V4.73593L7.99994 6.95452L10.7883 4.73593V2.56666H5.21157ZM7.99958 8.45673L11.1216 10.9237V13.7505H4.87823V10.9403L7.99958 8.45673ZM8.0003 8.88213L5.21157 11.101V13.4172H10.7883V11.0852L8.0003 8.88213Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="36" height="36" rx="10" fill="url(#paint0_linear_834_118583)"/>
3
+ <rect width="36" height="36" rx="10" fill="#F5F6F9"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.9539 7.70028C16.1196 8.22713 15.8268 8.78853 15.3 8.95421C14.4906 9.20875 13.7155 9.57824 12.9999 10.0564C11.2686 11.2132 9.99197 12.9346 9.38754 14.9271C8.78311 16.9196 8.88826 19.0601 9.68509 20.9838C10.4819 22.9075 11.9211 24.4954 13.7574 25.477C15.5938 26.4585 17.7136 26.7729 19.7558 26.3667C21.798 25.9605 23.6362 24.8588 24.9571 23.2492C26.278 21.6396 27 19.6219 27 17.5397C27 16.9874 27.4477 16.5397 28 16.5397C28.5523 16.5397 29 16.9874 29 17.5397C29 17.8969 28.9826 18.2526 28.9483 18.6056C28.9662 18.6949 28.9722 18.7883 28.9645 18.8837L28.9606 18.9309C28.9496 19.0607 28.9143 19.1825 28.8595 19.2924C28.5513 21.2017 27.7432 23.007 26.5031 24.518C24.8886 26.4852 22.642 27.8318 20.146 28.3283C17.65 28.8248 15.059 28.4405 12.8146 27.2408C10.5702 26.0411 8.81122 24.1004 7.83733 21.7492C6.86343 19.398 6.73491 16.7819 7.47366 14.3465C8.21241 11.9112 9.77272 9.80737 11.8887 8.3935C12.7634 7.80905 13.7107 7.35743 14.7 7.04633C15.2269 6.88065 15.7883 7.17343 15.9539 7.70028ZM17.8497 7.95155C17.8964 7.40125 18.3804 6.99302 18.9307 7.03974L18.9779 7.04385C19.528 7.0929 19.9342 7.57861 19.8851 8.12871C19.8361 8.67881 19.3503 9.085 18.8002 9.03595L18.7615 9.03257C18.2112 8.98585 17.8029 8.50186 17.8497 7.95155ZM22.8579 9.19953C23.172 8.74525 23.7949 8.63161 24.2492 8.9457C24.2751 8.96361 24.3009 8.98162 24.3266 8.99974C24.7782 9.31772 24.8865 9.94155 24.5685 10.3931C24.2505 10.8447 23.6267 10.953 23.1751 10.635C23.1541 10.6202 23.1329 10.6054 23.1118 10.5908C22.6575 10.2767 22.5438 9.6538 22.8579 9.19953ZM26.6058 12.8085C27.1045 12.5712 27.7011 12.7831 27.9384 13.2818C27.9519 13.3102 27.9653 13.3387 27.9786 13.3672C28.2116 13.868 27.9946 14.4628 27.4939 14.6958C26.9931 14.9288 26.3983 14.7117 26.1653 14.211L26.1506 14.1796L26.1324 14.1411C25.8951 13.6424 26.1071 13.0458 26.6058 12.8085ZM19 14.0003C19 13.448 18.5523 13.0003 18 13.0003C17.4477 13.0003 17 13.448 17 14.0003V18.0003C17 18.5526 17.4477 19.0003 18 19.0003H22C22.5523 19.0003 23 18.5526 23 18.0003C23 17.448 22.5523 17.0003 22 17.0003H19V14.0003Z" fill="#7586B0"/>
5
+ <defs>
6
+ <linearGradient id="paint0_linear_834_118583" x1="35.0204" y1="1.22449" x2="0" y2="36" gradientUnits="userSpaceOnUse">
7
+ </linearGradient>
8
+ </defs>
9
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.95394 1.70028C10.1196 2.22713 9.82684 2.78853 9.29999 2.95421C8.49057 3.20875 7.71555 3.57824 6.99987 4.05644C5.26859 5.21324 3.99197 6.93456 3.38754 8.9271C2.78311 10.9196 2.88826 13.0601 3.68509 14.9838C4.48191 16.9075 5.9211 18.4954 7.75743 19.477C9.59377 20.4585 11.7136 20.7729 13.7558 20.3667C15.798 19.9605 17.6362 18.8588 18.9571 17.2492C20.278 15.6396 21 13.6219 21 11.5397C21 10.9874 21.4477 10.5397 22 10.5397C22.5523 10.5397 23 10.9874 23 11.5397C23 11.8969 22.9826 12.2526 22.9483 12.6056C22.9662 12.6949 22.9722 12.7883 22.9645 12.8837L22.9606 12.9309C22.9496 13.0607 22.9143 13.1825 22.8595 13.2924C22.5513 15.2017 21.7432 17.007 20.5031 18.518C18.8886 20.4852 16.642 21.8318 14.146 22.3283C11.65 22.8248 9.05905 22.4405 6.81464 21.2408C4.57023 20.0411 2.81122 18.1004 1.83733 15.7492C0.863434 13.398 0.734911 10.7819 1.47366 8.34653C2.21241 5.91121 3.77272 3.80737 5.88873 2.3935C6.76341 1.80905 7.71072 1.35743 8.70001 1.04633C9.22686 0.880646 9.78826 1.17343 9.95394 1.70028ZM11.8497 1.95155C11.8964 1.40125 12.3804 0.993017 12.9307 1.03974L12.9779 1.04385C13.528 1.0929 13.9342 1.57861 13.8851 2.12871C13.8361 2.67881 13.3503 3.085 12.8002 3.03595L12.7615 3.03257C12.2112 2.98585 11.8029 2.50186 11.8497 1.95155ZM16.8579 3.19953C17.172 2.74525 17.7949 2.63161 18.2492 2.9457C18.2751 2.96361 18.3009 2.98162 18.3266 2.99974C18.7782 3.31772 18.8865 3.94155 18.5685 4.39311C18.2505 4.84467 17.6267 4.95296 17.1751 4.63498C17.1541 4.62016 17.1329 4.60542 17.1118 4.59078C16.6575 4.27669 16.5438 3.6538 16.8579 3.19953ZM20.6058 6.80846C21.1045 6.57117 21.7011 6.78308 21.9384 7.28179C21.9519 7.3102 21.9653 7.33869 21.9786 7.36723C22.2116 7.86796 21.9946 8.46276 21.4939 8.69577C20.9931 8.92877 20.3983 8.71174 20.1653 8.21101L20.1506 8.17957L20.1324 8.14112C19.8951 7.64241 20.1071 7.04576 20.6058 6.80846ZM13 8.00027C13 7.44798 12.5523 7.00027 12 7.00027C11.4477 7.00027 11 7.44798 11 8.00027V12.0003C11 12.5526 11.4477 13.0003 12 13.0003H16C16.5523 13.0003 17 12.5526 17 12.0003C17 11.448 16.5523 11.0003 16 11.0003H13V8.00027Z" fill="#7586B0"/>
3
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+
3
+ <rect width="36" height="36" rx="10" fill="#F5F6F9"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9 12C9 10.8954 9.89543 10 11 10H25C26.1046 10 27 10.8954 27 12V26C27 27.1046 26.1046 28 25 28H11C9.89543 28 9 27.1046 9 26V12Z" stroke="#7586B0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M22 8V12" stroke="#7586B0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M14 8V12" stroke="#7586B0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M9 16H27" stroke="#7586B0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <defs>
9
+ <linearGradient id="paint0_linear_45_8861" x1="35.0204" y1="1.22449" x2="0" y2="36" gradientUnits="userSpaceOnUse">
10
+ <stop stop-color="#56ACF6"/>
11
+ <stop offset="1" stop-color="#1559E6"/>
12
+ </linearGradient>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="trash-2">
3
+ <path id="Shape" d="M3 6H5H21" stroke="#F88078" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path id="Shape_2" d="M20 6C20 5.44772 19.5523 5 19 5C18.4477 5 18 5.44772 18 6H20ZM6 6C6 5.44772 5.55228 5 5 5C4.44772 5 4 5.44772 4 6H6ZM7 6C7 6.55228 7.44772 7 8 7C8.55228 7 9 6.55228 9 6H7ZM15 6C15 6.55228 15.4477 7 16 7C16.5523 7 17 6.55228 17 6H15ZM18 6V20H20V6H18ZM18 20C18 20.5523 17.5523 21 17 21V23C18.6569 23 20 21.6569 20 20H18ZM17 21H7V23H17V21ZM7 21C6.44772 21 6 20.5523 6 20H4C4 21.6569 5.34315 23 7 23V21ZM6 20V6H4V20H6ZM9 6V4H7V6H9ZM9 4C9 3.44772 9.44772 3 10 3V1C8.34315 1 7 2.34315 7 4H9ZM10 3H14V1H10V3ZM14 3C14.5523 3 15 3.44772 15 4H17C17 2.34315 15.6569 1 14 1V3ZM15 4V6H17V4H15Z" fill="#F88078"/>
5
+ <path id="Shape_3" d="M10 11V17" stroke="#F88078" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path id="Shape_4" d="M14 11V17" stroke="#F88078" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,170 @@
1
+ import React, { useEffect, useState, PropsWithChildren, useRef } from 'react';
2
+ import * as StiggJs from '@stigg/js-client-sdk';
3
+ import Stigg, { ClientConfiguration, EntitlementsFallback } from '@stigg/js-client-sdk';
4
+ import { SkeletonTheme } from 'react-loading-skeleton';
5
+ import { CustomizedTheme } from '../theme/Theme';
6
+ import logger from '../services/logger';
7
+ import { name as CLIENT_NAME, version as CLIENT_VERSION } from '../../package.json';
8
+
9
+ export interface StiggContextValue {
10
+ stigg: StiggJs.StiggClient;
11
+ isInitialized: boolean;
12
+ locale: string;
13
+ updatedAt?: Date;
14
+ customerPortalUpdatedAt?: Date;
15
+ refreshData: () => Promise<void>;
16
+ theme?: CustomizedTheme;
17
+ }
18
+
19
+ export const StiggContext = React.createContext<StiggContextValue | null>(null);
20
+ StiggContext.displayName = 'StiggContext';
21
+
22
+ export type StiggProviderProps = {
23
+ apiKey: string;
24
+ baseUri?: string;
25
+ baseEdgeUri?: string;
26
+ enableEdge?: boolean;
27
+ entitlementsFallback?: EntitlementsFallback;
28
+ customerId?: string;
29
+ customerToken?: string;
30
+ resourceId?: string;
31
+ theme?: CustomizedTheme;
32
+ locale?: string;
33
+ offline?: boolean;
34
+ cacheTtlMs?: number;
35
+ /** @deprecated not longer in use */
36
+ useEntitlementPolling?: boolean;
37
+ /** @deprecated not longer in use */
38
+ entitlementPollingInterval?: number;
39
+ stiggClient?: StiggJs.StiggClient;
40
+ clientName?: string;
41
+ clientVersion?: string;
42
+ };
43
+
44
+ const DEFAULT_LOCALE = 'en-US';
45
+
46
+ export const StiggProvider: React.FC<PropsWithChildren<StiggProviderProps>> = ({
47
+ apiKey,
48
+ baseUri,
49
+ baseEdgeUri,
50
+ enableEdge,
51
+ customerId,
52
+ customerToken,
53
+ resourceId,
54
+ theme,
55
+ locale,
56
+ cacheTtlMs,
57
+ useEntitlementPolling,
58
+ entitlementPollingInterval,
59
+ entitlementsFallback,
60
+ stiggClient,
61
+ children,
62
+ offline,
63
+ clientName = CLIENT_NAME,
64
+ clientVersion = CLIENT_VERSION,
65
+ }) => {
66
+ const currentApiKey = useRef(apiKey);
67
+ const initializeParams: ClientConfiguration = {
68
+ apiKey,
69
+ customerId,
70
+ customerToken,
71
+ resourceId,
72
+ baseUri,
73
+ baseEdgeUri,
74
+ enableEdge,
75
+ entitlementsFallback,
76
+ cacheTtlMs,
77
+ useEntitlementPolling,
78
+ entitlementPollingInterval,
79
+ clientName,
80
+ clientVersion,
81
+ offline,
82
+ };
83
+ const [ctx, setContext] = useState<StiggContextValue>(() => ({
84
+ stigg:
85
+ stiggClient ??
86
+ Stigg.initialize({
87
+ ...initializeParams,
88
+ lazyLoad: true,
89
+ }),
90
+ locale: locale || DEFAULT_LOCALE,
91
+ isInitialized: false,
92
+ theme,
93
+ refreshData: async () => {
94
+ setContext((ctx) => ({ ...ctx, customerPortalUpdatedAt: new Date() }));
95
+ await ctx.stigg.refresh();
96
+ },
97
+ }));
98
+
99
+ useEffect(() => {
100
+ let isMounted = true;
101
+
102
+ const safeSetContext = (setContextFunc: React.SetStateAction<StiggContextValue>) => {
103
+ if (isMounted) {
104
+ setContext(setContextFunc);
105
+ }
106
+ };
107
+
108
+ const onEntitlementsUpdated = () => safeSetContext((ctx) => ({ ...ctx, updatedAt: new Date() }));
109
+
110
+ const setStiggInstance = (stigg: StiggJs.StiggClient) =>
111
+ safeSetContext((ctx) => {
112
+ if (ctx.stigg) {
113
+ ctx.stigg.removeListener('entitlementsUpdated', onEntitlementsUpdated);
114
+ }
115
+ stigg.addListener('entitlementsUpdated', onEntitlementsUpdated);
116
+
117
+ return {
118
+ ...ctx,
119
+ stigg,
120
+ isInitialized: true,
121
+ updatedAt: new Date(),
122
+ };
123
+ });
124
+
125
+ const loadStiggClient = async () => {
126
+ let stiggClient = ctx.stigg;
127
+ if (apiKey !== currentApiKey.current) {
128
+ logger.log('Updating stigg client', { apiKey });
129
+ currentApiKey.current = apiKey;
130
+ stiggClient = Stigg.initialize({
131
+ ...initializeParams,
132
+ });
133
+ safeSetContext((ctx) => ({ ...ctx, isInitialized: false, updatedAt: new Date() }));
134
+ }
135
+ await stiggClient.waitForInitialization();
136
+ setStiggInstance(stiggClient);
137
+ };
138
+
139
+ void loadStiggClient();
140
+
141
+ return () => {
142
+ isMounted = false;
143
+ ctx.stigg.removeListener('entitlementsUpdated', onEntitlementsUpdated);
144
+ ctx.stigg.clearCustomer();
145
+ };
146
+ // eslint-disable-next-line react-hooks/exhaustive-deps
147
+ }, [apiKey]);
148
+
149
+ useEffect(() => {
150
+ const stiggClient = ctx.stigg;
151
+ if (customerId) {
152
+ void stiggClient.setCustomerId(customerId, customerToken, resourceId);
153
+ } else {
154
+ stiggClient.clearCustomer();
155
+ }
156
+ // eslint-disable-next-line react-hooks/exhaustive-deps
157
+ }, [customerId, customerToken, resourceId]);
158
+
159
+ useEffect(() => {
160
+ setContext((ctx) => ({ ...ctx, theme }));
161
+ }, [theme]);
162
+
163
+ return (
164
+ <StiggContext.Provider value={ctx}>
165
+ <SkeletonTheme baseColor="#F5F6F9" highlightColor="#e5e6ea">
166
+ {children}
167
+ </SkeletonTheme>
168
+ </StiggContext.Provider>
169
+ );
170
+ };
@@ -0,0 +1,37 @@
1
+ import { CheckoutProvider, CheckoutProviderProps } from './CheckoutProvider';
2
+ import { CheckoutContainer, CheckoutContainerProps } from './CheckoutContainer';
3
+ import { CheckoutMockProps } from './types';
4
+
5
+ export type CheckoutProps = CheckoutProviderProps & CheckoutContainerProps & CheckoutMockProps;
6
+
7
+ export const Checkout = ({
8
+ textOverrides,
9
+ theme,
10
+ resourceId,
11
+ planId,
12
+ preferredBillingPeriod,
13
+ billingCountryCode,
14
+ billableFeatures,
15
+ billingInformation,
16
+ onMockCheckoutState,
17
+ skipCheckoutSteps,
18
+ onBeforeStepChange,
19
+ ...containerProps
20
+ }: CheckoutProps) => {
21
+ return (
22
+ <CheckoutProvider
23
+ textOverrides={textOverrides}
24
+ theme={theme}
25
+ resourceId={resourceId}
26
+ planId={planId}
27
+ preferredBillingPeriod={preferredBillingPeriod}
28
+ billingCountryCode={billingCountryCode}
29
+ billableFeatures={billableFeatures}
30
+ billingInformation={billingInformation}
31
+ onMockCheckoutState={onMockCheckoutState}
32
+ skipCheckoutSteps={skipCheckoutSteps}
33
+ onBeforeStepChange={onBeforeStepChange}>
34
+ <CheckoutContainer {...containerProps} />
35
+ </CheckoutProvider>
36
+ );
37
+ };
@@ -0,0 +1,51 @@
1
+ import styled from '@utils/style';
2
+ import Box from '@mui/material/Box';
3
+ import { mq } from '../common/mediaQuery';
4
+
5
+ export const CheckoutLayout = styled.div`
6
+ margin: auto;
7
+ min-height: 760px;
8
+ max-width: 920px;
9
+ display: flex;
10
+ position: relative;
11
+ flex-direction: column;
12
+ align-items: center;
13
+
14
+ background-color: ${({ theme }) => theme.stigg.palette.backgroundPaper};
15
+ border: ${({ theme }) => `1px solid ${theme.stigg.palette.outlinedBorder}`};
16
+
17
+ & * {
18
+ box-sizing: border-box;
19
+ }
20
+
21
+ padding: 16px 16px;
22
+ ${mq.md} {
23
+ padding: 32px;
24
+ width: calc(100% - 64px);
25
+ border-radius: 10px;
26
+ }
27
+ `;
28
+ export const CheckoutContent = styled(Box)`
29
+ display: flex;
30
+ align-items: flex-start;
31
+ gap: 32px;
32
+ flex-wrap: wrap;
33
+ width: 100%;
34
+
35
+ flex-direction: column;
36
+ ${mq.md} {
37
+ flex-direction: row;
38
+ }
39
+ `;
40
+
41
+ export const CheckoutPanel = styled(Box)`
42
+ display: flex;
43
+ flex-direction: column;
44
+ gap: 0;
45
+ flex: 2;
46
+
47
+ width: 100%;
48
+ ${mq.md} {
49
+ width: auto;
50
+ }
51
+ `;