@0xsquid/ui 0.23.0-beta.0 → 0.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/index.js CHANGED
@@ -16709,6 +16709,11 @@ const ANIMATION_TIMINGS = {
16709
16709
  HIDE_ROUTE: 'cubic-bezier(.165,.84,.44,1)',
16710
16710
  };
16711
16711
  const MEDIA_QUERIES = {
16712
+ MOBILE_XS: {
16713
+ media: '(min-width: 360px)',
16714
+ key: 'mobile-xs',
16715
+ value: 360,
16716
+ },
16712
16717
  MOBILE_LG: {
16713
16718
  media: '(min-width: 480px)',
16714
16719
  key: 'mobile-lg',
@@ -16724,11 +16729,6 @@ const MEDIA_QUERIES = {
16724
16729
  key: 'mobile-sm-height',
16725
16730
  value: 670,
16726
16731
  },
16727
- MOBILE_XS: {
16728
- media: '(min-width: 360px)',
16729
- key: 'mobile-xs',
16730
- value: 360,
16731
- },
16732
16732
  };
16733
16733
 
16734
16734
  function BoostButton({ boostMode, canToggleBoostMode = true, boostIndicatorRef, }) {
@@ -17273,7 +17273,7 @@ function SwapStepItem({ descriptionBlocks, showStepSeparator = false, link, stat
17273
17273
  return (jsxRuntime.jsx("li", { style: {
17274
17274
  maxHeight: `${STEP_ITEM_HEIGHT}px`,
17275
17275
  minHeight: `${STEP_ITEM_HEIGHT}px`,
17276
- }, className: "tw-relative tw-flex tw-w-list-item-compact tw-flex-col tw-items-start tw-justify-center tw-text-grey-300 tw-transition-colors tw-duration-1000 mobile-lg:tw-w-list-item-large", children: jsxRuntime.jsxs("a", { href: link, target: "_blank", style: Object.assign(Object.assign({}, transitionStyle), { maxHeight: `${STEP_ITEM_HEIGHT}px` }), className: cn('tw-group/swap-step-item tw-flex tw-w-full tw-items-center tw-rounded-squid-xs tw-py-squid-xxs', !!link && 'hover:tw-bg-material-light-thin', statusTextClass), children: [jsxRuntime.jsxs("span", { className: "tw-relative tw-flex tw-min-h-squid-l tw-items-center tw-justify-center tw-gap-squid-xxs tw-px-squid-xs", children: [jsxRuntime.jsx(Chip, { style: transitionStyle, className: cn('tw-w-squid-xl', statusBgClassMap[status]), icon: chipContent }), showStepSeparator && (jsxRuntime.jsx("span", { className: cn(separatorClassMap[status], 'tw-absolute tw-left-0 tw-top-full tw-mt-0.5'), style: transitionStyle, children: jsxRuntime.jsx(SwapStepSeparator, {}) }))] }), jsxRuntime.jsx(DescriptionBlocks, { className: "tw-min-h-squid-l tw-py-squid-xxs tw-pr-squid-xs", blocks: descriptionBlocks })] }) }));
17276
+ }, className: "tw-relative tw-flex tw-w-full tw-flex-col tw-items-start tw-justify-center tw-text-grey-300 tw-transition-colors tw-duration-1000", children: jsxRuntime.jsxs("a", { href: link, target: "_blank", style: Object.assign(Object.assign({}, transitionStyle), { maxHeight: `${STEP_ITEM_HEIGHT}px` }), className: cn('tw-group/swap-step-item tw-flex tw-w-full tw-items-center tw-rounded-squid-xs tw-py-squid-xxs', !!link && 'hover:tw-bg-material-light-thin', statusTextClass), children: [jsxRuntime.jsxs("span", { className: "tw-relative tw-flex tw-min-h-squid-l tw-items-center tw-justify-center tw-gap-squid-xxs tw-px-squid-xs", children: [jsxRuntime.jsx(Chip, { style: transitionStyle, className: cn('tw-w-squid-xl', statusBgClassMap[status]), icon: chipContent }), showStepSeparator && (jsxRuntime.jsx("span", { className: cn(separatorClassMap[status], 'tw-absolute tw-left-0 tw-top-full tw-mt-0.5'), style: transitionStyle, children: jsxRuntime.jsx(SwapStepSeparator, {}) }))] }), jsxRuntime.jsx(DescriptionBlocks, { className: "tw-min-h-squid-l tw-py-squid-xxs tw-pr-squid-xs", blocks: descriptionBlocks })] }) }));
17277
17277
  }
17278
17278
 
17279
17279
  function Timeline(_a) {
@@ -17522,7 +17522,7 @@ function Modal({ children, className, onBackdropClick, isOpen: _isOpen = true, m
17522
17522
  }, className: cn('tw-absolute tw-inset-0 tw-z-40 tw-flex tw-items-start tw-justify-center tw-px-squid-xs tw-py-squid-xl tw-pb-squid-m', _isOpen ? 'tw-animate-blur-in' : 'tw-animate-blur-out'), children: jsxRuntime.jsx("div", { style: {
17523
17523
  [CSS_VARS.SLIDE_TO_TOP_DURATION]: `${ANIMATION_DURATIONS.SHOW_MODAL}ms`,
17524
17524
  [CSS_VARS.SLIDE_TO_BOTTOM_DURATION]: `${ANIMATION_DURATIONS.HIDE_MODAL}ms`,
17525
- }, className: cn('tw-relative tw-flex tw-max-h-modal-compact tw-w-modal-compact tw-flex-col tw-items-start tw-justify-end tw-gap-squid-xxs tw-self-end mobile-lg:tw-max-h-modal-large', className, _isOpen ? 'tw-animate-slide-to-top' : 'tw-animate-slide-to-bottom', maxHeight && 'tw-h-full', modalWidthClassMap[width]), children: children }) })));
17525
+ }, className: cn('tw-relative tw-flex tw-max-h-modal-compact tw-max-w-full tw-flex-col tw-items-start tw-justify-end tw-gap-squid-xxs tw-self-end mobile-lg:tw-max-h-modal-large mobile-xs:tw-w-modal-compact', className, _isOpen ? 'tw-animate-slide-to-top' : 'tw-animate-slide-to-bottom', maxHeight && 'tw-h-full', modalWidthClassMap[width]), children: children }) })));
17526
17526
  }
17527
17527
 
17528
17528
  const borderTypeClassMap = {
@@ -17531,7 +17531,7 @@ const borderTypeClassMap = {
17531
17531
  };
17532
17532
  function ModalContent(_a) {
17533
17533
  var { children, addGap = false, paddingY = false, borderType = 'border', className } = _a, props = __rest$1(_a, ["children", "addGap", "paddingY", "borderType", "className"]);
17534
- return (jsxRuntime.jsx("div", Object.assign({}, props, { className: cn('tw-flex tw-h-full tw-max-h-[445px] mobile-sm-height:tw-max-h-[535px] tw-w-full tw-flex-col tw-self-stretch tw-rounded-squid-l tw-bg-grey-800 tw-text-grey-300', addGap && 'tw-gap-squid-xxs tw-pt-squid-xxs', borderTypeClassMap[borderType], paddingY && 'tw-py-squid-xxs', className), children: children })));
17534
+ return (jsxRuntime.jsx("div", Object.assign({}, props, { className: cn('tw-flex tw-h-full tw-max-h-[445px] tw-w-full tw-flex-col tw-self-stretch tw-rounded-squid-l tw-bg-grey-800 tw-text-grey-300 mobile-sm-height:tw-max-h-[535px]', addGap && 'tw-gap-squid-xxs tw-pt-squid-xxs', borderTypeClassMap[borderType], paddingY && 'tw-py-squid-xxs', className), children: children })));
17535
17535
  }
17536
17536
  function ModalContentDivider() {
17537
17537
  return (jsxRuntime.jsx("svg", { width: "100%", height: "11", viewBox: "0 0 400 11", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsxRuntime.jsx("rect", { x: "1", y: "5", width: "398", height: "1", fill: "currentColor" }) }));
@@ -17540,14 +17540,18 @@ function ModalContentDivider() {
17540
17540
  function NavigationBar(_a) {
17541
17541
  var { title, displayBackButton = false, logoUrl, transparent = false, displayButtonShadows = false, onBackButtonClick, actions, isLoading = false } = _a, props = __rest$1(_a, ["title", "displayBackButton", "logoUrl", "transparent", "displayButtonShadows", "onBackButtonClick", "actions", "isLoading"]);
17542
17542
  return (jsxRuntime.jsxs("nav", Object.assign({}, props, { className: cn('tw-flex tw-max-h-[120px] tw-flex-row-reverse tw-text-grey-300 mobile-xs-height:tw-flex-col', transparent ? 'tw-bg-transparent' : 'tw-bg-grey-900', props.className), children: [jsxRuntime.jsxs("div", { className: cn('tw-flex tw-h-squid-xxl tw-items-center tw-justify-end tw-gap-x-squid-xs tw-pl-squid-m', displayBackButton
17543
- ? 'tw-pr-squid-xs mobile-xs-height:tw-pr-squid-m'
17543
+ ? 'tw-w-full tw-pr-squid-xs mobile-xs-height:tw-pr-squid-m'
17544
17544
  : 'tw-pr-squid-m mobile-lg:tw-pl-squid-l', !title && 'tw-w-full mobile-xs-height:tw-w-[unset]'), children: [displayBackButton ? (jsxRuntime.jsx(Button$1, { className: displayButtonShadows
17545
17545
  ? 'group-data-[squid-theme-type=dark]:tw-shadow-elevation-dark-2 group-data-[squid-theme-type=light]:tw-shadow-elevation-light-2'
17546
17546
  : undefined, variant: "tertiary", size: "md", isLoading: isLoading, icon: jsxRuntime.jsx(ArrowLeftIcon, {}), onClick: onBackButtonClick })) : null, logoUrl ? (jsxRuntime.jsx("img", { src: logoUrl, className: "tw-h-squid-xl tw-min-w-squid-xl" })) : null, jsxRuntime.jsx("span", { className: "tw-flex tw-flex-1 tw-items-center tw-justify-end tw-gap-squid-xxs", children: actions === null || actions === void 0 ? void 0 : actions.map((action) => (jsxRuntime.jsx(Tooltip, Object.assign({}, action.tooltip, { childrenClassName: "tw-rounded-squid-m", containerClassName: "tw-rounded-squid-m", tooltipWidth: "max", children: jsxRuntime.jsx(Button$1, { size: "md", variant: "tertiary", isLoading: isLoading, label: typeof action.labelOrIcon === 'string'
17547
17547
  ? action.labelOrIcon
17548
17548
  : undefined, className: "tw-text-grey-300", icon: typeof action.labelOrIcon === 'string'
17549
17549
  ? null
17550
- : action.labelOrIcon, onClick: action.onClick, chip: action.chip }) }), action.id))) })] }), title ? (jsxRuntime.jsx("div", { className: "tw-flex tw-h-squid-xxl tw-w-full tw-items-center tw-px-squid-m tw-py-squid-xxs mobile-lg:tw-px-squid-l", children: jsxRuntime.jsx(HeadingText, { size: "small", children: title }) })) : null] })));
17550
+ : action.labelOrIcon, onClick: action.onClick, chip: action.chip }) }), action.id))) })] }), title ? (jsxRuntime.jsx("div", { className: cn('tw-h-squid-xxl tw-w-full tw-items-center tw-px-squid-m tw-py-squid-xxs mobile-lg:tw-px-squid-l',
17551
+ // hide the title on small screens when back button is displayed, so it's positioned on the left
17552
+ displayBackButton
17553
+ ? 'tw-hidden mobile-xs-height:tw-flex'
17554
+ : 'tw-flex'), children: jsxRuntime.jsx(HeadingText, { size: "small", children: title }) })) : null] })));
17551
17555
  }
17552
17556
 
17553
17557
  const createStoreImpl = (createState) => {
@@ -18143,7 +18147,7 @@ function SwapConfiguration({ amount, tokenPrice = 0, isFetching: isFetchingProp
18143
18147
  const isWalletButtonInteractive = !isLoading && !!(walletButton === null || walletButton === void 0 ? void 0 : walletButton.onClick);
18144
18148
  const WalletButtonTag = isWalletButtonInteractive ? 'button' : 'div';
18145
18149
  const isFetching = isFetchingProp || isLoading;
18146
- return (jsxRuntime.jsxs("section", { className: "tw-relative tw-flex tw-w-full tw-flex-col tw-border-t tw-border-t-material-light-thin tw-bg-grey-900 tw-pb-squid-m tw-h-[195px] mobile-sm-height:tw-h-[205px] mobile-lg:tw-w-card-large", children: [jsxRuntime.jsx("header", { className: "tw-flex tw-items-center tw-gap-1 tw-px-squid-m tw-py-squid-xs tw-leading-5 tw-text-grey-300 mobile-lg:tw-px-squid-l", children: jsxRuntime.jsx(Tooltip, Object.assign({}, walletButton === null || walletButton === void 0 ? void 0 : walletButton.tooltip, { tooltipWidth: "max", childrenClassName: "tw-rounded-squid-s", containerClassName: "tw-rounded-squid-s", children: jsxRuntime.jsxs(WalletButtonTag, { onClick: isWalletButtonInteractive ? walletButton === null || walletButton === void 0 ? void 0 : walletButton.onClick : undefined, className: cn('-tw-ml-squid-xs tw-flex tw-h-squid-l tw-items-center tw-gap-squid-xxs tw-rounded-squid-s tw-px-squid-xs tw-text-grey-600', isWalletButtonInteractive && 'hover:tw-bg-material-light-thin', isLoading && 'tw-opacity-50'), children: [jsxRuntime.jsx(BodyText, { className: "tw-text-grey-500", size: "small", children: direction === 'from' ? 'Pay' : 'Receive' }), !isLoading && !(walletButton === null || walletButton === void 0 ? void 0 : walletButton.disabled) && (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(BodyText, { size: "small", children: ":" }), jsxRuntime.jsxs("div", { className: "tw-flex tw-items-center tw-gap-1", children: [jsxRuntime.jsx(BodyText, { size: "small", className: (walletButton === null || walletButton === void 0 ? void 0 : walletButton.address)
18150
+ return (jsxRuntime.jsxs("section", { className: "tw-relative tw-flex tw-h-[195px] tw-w-full tw-flex-col tw-border-t tw-border-t-material-light-thin tw-bg-grey-900 tw-pb-squid-m mobile-lg:tw-w-card-large mobile-sm-height:tw-h-[205px]", children: [jsxRuntime.jsx("header", { className: "tw-flex tw-items-center tw-gap-1 tw-px-squid-m tw-py-squid-xs tw-leading-5 tw-text-grey-300 mobile-lg:tw-px-squid-l", children: jsxRuntime.jsx(Tooltip, Object.assign({}, walletButton === null || walletButton === void 0 ? void 0 : walletButton.tooltip, { tooltipWidth: "max", childrenClassName: "tw-rounded-squid-s", containerClassName: "tw-rounded-squid-s", children: jsxRuntime.jsxs(WalletButtonTag, { onClick: isWalletButtonInteractive ? walletButton === null || walletButton === void 0 ? void 0 : walletButton.onClick : undefined, className: cn('-tw-ml-squid-xs tw-flex tw-h-squid-l tw-items-center tw-gap-squid-xxs tw-rounded-squid-s tw-px-squid-xs tw-text-grey-600', isWalletButtonInteractive && 'hover:tw-bg-material-light-thin', isLoading && 'tw-opacity-50'), children: [jsxRuntime.jsx(BodyText, { className: "tw-text-grey-500", size: "small", children: direction === 'from' ? 'Pay' : 'Receive' }), !isLoading && !(walletButton === null || walletButton === void 0 ? void 0 : walletButton.disabled) && !!token && (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(BodyText, { size: "small", children: ":" }), jsxRuntime.jsxs("div", { className: "tw-flex tw-items-center tw-gap-1", children: [jsxRuntime.jsx(BodyText, { size: "small", className: (walletButton === null || walletButton === void 0 ? void 0 : walletButton.address)
18147
18151
  ? 'tw-text-grey-300'
18148
18152
  : 'tw-text-royal-400', children: (walletButton === null || walletButton === void 0 ? void 0 : walletButton.address)
18149
18153
  ? walletButton === null || walletButton === void 0 ? void 0 : walletButton.address
@@ -18217,7 +18221,7 @@ const SwapStepsCollapsed = React$1.forwardRef((props, ref) => {
18217
18221
  onOpen === null || onOpen === void 0 ? void 0 : onOpen();
18218
18222
  }
18219
18223
  };
18220
- return (jsxRuntime.jsx("div", { className: "tw-relative tw-h-[60px] tw-min-w-modal-compact tw-rounded-squid-l mobile-lg:tw-min-w-modal-large", children: jsxRuntime.jsx("div", { className: cn('tw-absolute tw-bottom-0 tw-z-10 tw-flex tw-w-full tw-max-w-modal-compact tw-flex-col tw-justify-end tw-gap-squid-xxs tw-overflow-hidden tw-rounded-squid-l mobile-lg:tw-max-w-modal-large', isRouteVisible ? 'tw-h-[535px]' : 'tw-h-[60px]'), children: jsxRuntime.jsxs("div", { className: "tw-flex tw-flex-col tw-justify-end", children: [!isRouteVisible && (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("span", { className: "tw-absolute tw-left-0 tw-top-0 tw-z-10 tw-h-[21px] tw-w-full tw-bg-gradient-to-b tw-from-grey-800 tw-transition-colors group-hover/swap-step-item-button:tw-from-grey-700" }), jsxRuntime.jsx("span", { className: "tw-absolute tw-bottom-0 tw-left-0 tw-z-10 tw-h-[21px] tw-w-full tw-bg-gradient-to-t tw-from-grey-800 tw-transition-colors group-hover/swap-step-item-button:tw-from-grey-700" })] })), jsxRuntime.jsx("div", { onClick: handleToggleRouteSteps, style: {
18224
+ return (jsxRuntime.jsx("div", { className: "tw-relative tw-h-[60px] tw-w-modal-compact tw-max-w-full tw-rounded-squid-l mobile-lg:tw-min-w-modal-large", children: jsxRuntime.jsx("div", { className: cn('tw-absolute tw-bottom-0 tw-z-10 tw-flex tw-w-full tw-max-w-modal-compact tw-flex-col tw-justify-end tw-gap-squid-xxs tw-overflow-hidden tw-rounded-squid-l mobile-lg:tw-max-w-modal-large', isRouteVisible ? 'tw-h-[535px]' : 'tw-h-[60px]'), children: jsxRuntime.jsxs("div", { className: "tw-flex tw-flex-col tw-justify-end", children: [!isRouteVisible && (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("span", { className: "tw-absolute tw-left-0 tw-top-0 tw-z-10 tw-h-[21px] tw-w-full tw-bg-gradient-to-b tw-from-grey-800 tw-transition-colors group-hover/swap-step-item-button:tw-from-grey-700" }), jsxRuntime.jsx("span", { className: "tw-absolute tw-bottom-0 tw-left-0 tw-z-10 tw-h-[21px] tw-w-full tw-bg-gradient-to-t tw-from-grey-800 tw-transition-colors group-hover/swap-step-item-button:tw-from-grey-700" })] })), jsxRuntime.jsx("div", { onClick: handleToggleRouteSteps, style: {
18221
18225
  [CSS_VARS.FADE_OUT_DURATION]: `${ANIMATION_DURATIONS.HIDE_ROUTE}ms`,
18222
18226
  [CSS_VARS.FADE_IN_DURATION]: `${ANIMATION_DURATIONS.SHOW_ROUTE}ms`,
18223
18227
  }, className: cn('tw-absolute tw-top-0 tw-h-[535px] tw-w-full tw-rounded-squid-l tw-bg-material-dark-thick tw-backdrop-blur/10 ', isShowRouteAnimationRunning
@@ -18228,11 +18232,11 @@ const SwapStepsCollapsed = React$1.forwardRef((props, ref) => {
18228
18232
  }, onClick: handleToggleRouteSteps, className: "tw-absolute tw-inset-0 tw-h-[60px] tw-cursor-pointer tw-rounded-squid-l tw-border tw-border-material-light-thin" }), jsxRuntime.jsx("div", { onClick: isShowRouteAnimationRunning ? undefined : handleToggleRouteSteps, style: {
18229
18233
  [CSS_VARS.COLLAPSE_ROUTE_DURATION]: `${ANIMATION_DURATIONS.HIDE_ROUTE}ms`,
18230
18234
  [CSS_VARS.EXPAND_ROUTE_DURATION]: `${ANIMATION_DURATIONS.SHOW_ROUTE}ms`,
18231
- }, className: cn('tw-relative tw-h-[60px] tw-max-h-[535px] tw-w-full tw-overflow-hidden tw-rounded-squid-l tw-border tw-border-material-light-thin tw-bg-grey-800 tw-backdrop-blur-2xl', isRouteVisible &&
18235
+ }, className: cn('tw-relative tw-h-[60px] tw-max-h-[470px] tw-w-full tw-overflow-hidden tw-rounded-squid-l tw-border tw-border-material-light-thin tw-bg-grey-800 tw-backdrop-blur-2xl mobile-xs-height:tw-max-h-[535px]', isRouteVisible &&
18232
18236
  (isShowRouteAnimationRunning
18233
18237
  ? 'tw-animate-expand-route'
18234
18238
  : 'tw-animate-collapse-route')), children: jsxRuntime.jsxs("div", { className: cn('tw-flex tw-flex-col tw-gap-squid-xxs', isRouteVisible || isShowRouteAnimationRunning
18235
- ? 'tw-max-h-[535px]'
18239
+ ? 'tw-max-h-[470px] mobile-xs-height:tw-max-h-[535px]'
18236
18240
  : ''), style: {
18237
18241
  paddingTop: `${STEP_ITEM_HEIGHT / 2}px`,
18238
18242
  transition: isShowRouteAnimationRunning
@@ -18246,7 +18250,7 @@ const SwapStepsCollapsed = React$1.forwardRef((props, ref) => {
18246
18250
  }, children: [jsxRuntime.jsx("ul", { ref: routeStepsListRef, style: {
18247
18251
  zIndex: isRouteVisible ? 0 : -10,
18248
18252
  scrollbarWidth: 'none',
18249
- }, className: "tw-relative tw-flex tw-w-modal-compact tw-flex-1 tw-grow-0 tw-flex-col-reverse tw-items-center tw-self-stretch tw-overflow-y-auto tw-overflow-x-hidden tw-px-squid-xs tw-pb-squid-xxs mobile-lg:tw-w-modal-large", children: steps.map((step, index) => (jsxRuntime.jsx(SwapStepItem, { descriptionBlocks: step.descriptionBlocks,
18253
+ }, className: "tw-relative tw-flex tw-w-modal-compact tw-max-w-full tw-flex-1 tw-grow-0 tw-flex-col-reverse tw-items-center tw-self-stretch tw-overflow-y-auto tw-overflow-x-hidden tw-px-squid-xs tw-pb-squid-xxs mobile-lg:tw-w-modal-large", children: steps.map((step, index) => (jsxRuntime.jsx(SwapStepItem, { descriptionBlocks: step.descriptionBlocks,
18250
18254
  // show separator for all steps except the first one
18251
18255
  showStepSeparator: index > 0, link: step.link, status: newStepIndex < index ? 'pending' : step.status }, index))) }), jsxRuntime.jsx("footer", { className: "tw-flex tw-max-h-[55px] tw-min-h-[55px] tw-w-full tw-justify-center tw-gap-squid-xs tw-self-stretch tw-px-squid-s tw-pb-squid-s", children: jsxRuntime.jsx(Button$1, { size: "md", variant: "secondary", onClick: footerButton === null || footerButton === void 0 ? void 0 : footerButton.onClick, link: footerButton === null || footerButton === void 0 ? void 0 : footerButton.link, label: footerButton === null || footerButton === void 0 ? void 0 : footerButton.label, className: "tw-w-full", containerClassName: "tw-w-full" }) })] }) })] }) }) }));
18252
18256
  });
@@ -25674,7 +25678,7 @@ function NumericInput({ priceImpactPercentage, balance = '0', error, criticalPri
25674
25678
  const inputRef = React$1.useRef(null);
25675
25679
  return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [isInteractive && !isLoading ? (jsxRuntime.jsxs("form", { className: containerClassname, onSubmit: (e) => {
25676
25680
  e.preventDefault();
25677
- }, children: [inputMode === InputMode.USD && (jsxRuntime.jsx("span", { className: "tw-absolute tw-left-5 tw-top-[11px] tw-leading-[43px] tw-text-grey-600 mobile-lg:tw-left-[30px]", children: "$" })), jsxRuntime.jsx("input", { ref: inputRef, type: "text", value: inputValue, onChange: handleInputChange, placeholder: "0", className: cn('tw-h-[55px] tw-w-full tw-rounded-squid-s tw-bg-transparent tw-px-squid-xs tw-py-squid-s tw-text-grey-300 placeholder:tw-text-grey-600 hover:tw-bg-material-light-thin focus:tw-bg-material-light-thin focus:tw-text-royal-400 focus:tw-outline-none', inputMode === InputMode.USD && 'tw-pl-[33px]') })] })) : (jsxRuntime.jsx("div", { className: cn(containerClassname, isLoading && loadingClassName), children: jsxRuntime.jsx("div", { className: "tw-flex tw-h-[55px] tw-w-full tw-items-center tw-rounded-squid-s tw-bg-transparent tw-px-squid-xs tw-py-squid-s tw-text-heading-small tw-font-heading-regular tw-text-grey-300 mobile-sm-height:tw-h-[65px]", children: jsxRuntime.jsx("span", { children: inputValue || 0 }) }) })), !showDetails ? null : (jsxRuntime.jsxs("footer", { className: cn('tw-flex tw-h-squid-m tw-max-h-squid-m tw-items-center tw-justify-between tw-gap-2 tw-px-squid-xs tw-text-grey-500 mobile-lg:tw-px-squid-m', isLoading && loadingClassName), children: [error ? (jsxRuntime.jsx("div", { className: "tw-px-squid-xs", children: jsxRuntime.jsx(ErrorMessage, { message: error.message }) })) : (jsxRuntime.jsx(Tooltip, Object.assign({}, (isLoading
25681
+ }, children: [inputMode === InputMode.USD && (jsxRuntime.jsx("span", { className: "tw-absolute tw-left-5 tw-top-[11px] tw-leading-[43px] tw-text-grey-600 mobile-lg:tw-left-[30px]", children: "$" })), jsxRuntime.jsx("input", { ref: inputRef, type: "text", value: inputValue, onChange: handleInputChange, placeholder: "0", className: cn('tw-h-[55px] tw-w-full tw-rounded-squid-s tw-bg-transparent tw-px-squid-xs tw-py-squid-s tw-text-grey-300 placeholder:tw-text-grey-600 hover:tw-bg-material-light-thin focus:tw-bg-material-light-thin focus:tw-text-royal-400 focus:tw-outline-none', inputMode === InputMode.USD && 'tw-pl-[33px]') })] })) : (jsxRuntime.jsx("div", { className: cn(containerClassname, (isLoading || Number(inputValue || 0) === 0) && loadingClassName), children: jsxRuntime.jsx("div", { className: "tw-flex tw-h-[55px] tw-w-full tw-items-center tw-rounded-squid-s tw-bg-transparent tw-px-squid-xs tw-py-squid-s tw-text-heading-small tw-font-heading-regular tw-text-grey-300 mobile-sm-height:tw-h-[65px]", children: jsxRuntime.jsx("span", { children: inputValue || 0 }) }) })), !showDetails ? null : (jsxRuntime.jsxs("footer", { className: cn('tw-flex tw-h-squid-m tw-max-h-squid-m tw-items-center tw-justify-between tw-gap-2 tw-px-squid-xs tw-text-grey-500 mobile-lg:tw-px-squid-m', isLoading && loadingClassName), children: [error ? (jsxRuntime.jsx("div", { className: "tw-px-squid-xs", children: jsxRuntime.jsx(ErrorMessage, { message: error.message }) })) : (jsxRuntime.jsx(Tooltip, Object.assign({}, (isLoading
25678
25682
  ? undefined
25679
25683
  : inputMode === InputMode.TOKEN
25680
25684
  ? inputModeButton === null || inputModeButton === void 0 ? void 0 : inputModeButton.tokenModeTooltip
@@ -61280,7 +61284,7 @@ function SwapProgressView({ steps, isOpen = true, handleClose, handleComplete, s
61280
61284
  ? ''
61281
61285
  : showSwapInfoSection
61282
61286
  ? 'tw-animate-scale-and-fade-up'
61283
- : 'tw-animate-scale-and-fade-down'), children: [jsxRuntime.jsx("div", { className: "tw-flex tw-h-[160px] tw-w-full tw-items-center tw-justify-center tw-rounded-tl-squid-l tw-rounded-tr-squid-l tw-bg-royal-500 tw-text-material-light-thin", style: {
61287
+ : 'tw-animate-scale-and-fade-down'), children: [jsxRuntime.jsx("div", { className: "tw-flex tw-h-[130px] tw-w-full tw-items-center tw-justify-center tw-rounded-tl-squid-l tw-rounded-tr-squid-l tw-bg-royal-500 tw-text-material-light-thin mobile-xs-height:tw-h-[160px]", style: {
61284
61288
  // box shadow simulating bottom outline (we do not use css outline because cannot apply it to only one side)
61285
61289
  boxShadow: '0 1px 0 currentColor',
61286
61290
  }, children: jsxRuntime.jsx("div", { children: jsxRuntime.jsx(AnimationWrapper, { lottieJsonFile: swapProgressAnimations[swapState], hideAnimations: false, animReplacement: jsxRuntime.jsx(Loader, { size: "60" }) }) }) }), jsxRuntime.jsx("div", { className: "tw-relative tw-flex tw-h-squid-m tw-w-full tw-items-end tw-justify-between tw-self-stretch tw-px-squid-m", children: swapState === SwapState.COMPLETED ? (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("span", { className: "-tw-mb-1 -tw-ml-1", children: jsxRuntime.jsx(SwapSuccessIcon, {}) }), jsxRuntime.jsx(Button$1, { size: "md", variant: "secondary", icon: jsxRuntime.jsx(XSocial, {}), label: "Share", link: socialLink, title: "Share on X" })] })) : swapState === SwapState.ERROR ? (jsxRuntime.jsx(SwapErrorTopMenu, { supportLink: supportLink, type: "error" })) : swapState === SwapState.PARTIAL_SUCCESS ? (jsxRuntime.jsx(SwapErrorTopMenu, { supportLink: supportLink, type: "warning" })) : (jsxRuntime.jsx(TokenPair, { firstToken: {
@@ -61289,7 +61293,7 @@ function SwapProgressView({ steps, isOpen = true, handleClose, handleComplete, s
61289
61293
  }, secondToken: {
61290
61294
  bgColor: toToken.bgColor,
61291
61295
  logoURI: toToken.logoUrl,
61292
- } })) }), jsxRuntime.jsx(SwapProgressViewHeader, { title: headerTitle, description: headerDescription }), jsxRuntime.jsxs("ul", { className: "tw-flex tw-h-[195px] tw-w-full tw-flex-col tw-items-center tw-justify-center tw-gap-squid-xxs tw-rounded-squid-l tw-py-squid-s", children: [jsxRuntime.jsx(PropertyListItem, { icon: jsxRuntime.jsx(ArrowsSwapIcon, {}), label: "Swap", detail: jsxRuntime.jsx(Transfer, { from: jsxRuntime.jsx(IconLabel, { src: fromToken.logoUrl, variant: "round", children: fromAmount }), to: jsxRuntime.jsx(IconLabel, { src: toToken.logoUrl, variant: "round", children: toAmount }) }) }), jsxRuntime.jsx(PropertyListItem, { icon: jsxRuntime.jsx(ChainLink, { size: "24", strokeWidth: "2" }), label: "Chain", detail: jsxRuntime.jsx(Transfer, { from: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("img", { className: "tw-h-squid-m tw-w-squid-m tw-rounded-squid-xxs", src: fromChain.logoUrl }), jsxRuntime.jsx(CaptionText, { children: fromChain.networkName })] }), to: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("img", { className: "tw-h-squid-m tw-w-squid-m tw-rounded-squid-xxs", src: toChain.logoUrl }), jsxRuntime.jsx(CaptionText, { children: toChain.networkName })] }) }) }), jsxRuntime.jsx(PropertyListItem, { icon: jsxRuntime.jsx(WalletFilledIcon, { size: "24" }), label: "Wallet", detail: jsxRuntime.jsx(Transfer, { from: fromAddressFormatted, to: toAddressFormatted }) }), jsxRuntime.jsx(PropertyListItem, { icon: jsxRuntime.jsx(TimeFliesIcon, {}), label: "Time to complete", detail: swapState === SwapState.PROGRESS ? (jsxRuntime.jsx(Transfer, { from: timer, to: estimatedTimeToComplete })) : swapState === SwapState.COMPLETED ? (jsxRuntime.jsx(CaptionText, { children: timer })) : (jsxRuntime.jsx(CaptionText, { children: estimatedTimeToComplete })) })] })] }), jsxRuntime.jsx(TrackTransactionView, { ref: trackTransactionViewRef, onTxEnd: () => stopTimer(), onTxStart: () => startTimer(), rawSteps: steps, onClose: handleRouteStepsClosed, onOpen: handleRouteStepsOpen, swapState: swapState, footerButton: footerButton }), !showSwapInfoSection ? (jsxRuntime.jsx(Button$1, { size: "lg", variant: "secondary", label: "Close", onClick: handleCollapseRouteSteps, className: "tw-min-h-button" })) : swapState === SwapState.PARTIAL_SUCCESS ? (jsxRuntime.jsxs("div", { className: "tw-flex tw-w-full tw-items-center tw-gap-squid-xxs", children: [jsxRuntime.jsx(Button$1, { size: "lg", variant: "secondary", label: swapProgressButtonTexts[swapState], onClick: () => handleClose === null || handleClose === void 0 ? void 0 : handleClose(swapState), className: "tw-min-h-button" }), jsxRuntime.jsx(Button$1, { size: "lg", variant: "primary", label: "Complete", onClick: handleComplete, className: "tw-min-h-button" })] })) : (jsxRuntime.jsx(Button$1, { size: "lg", variant: "primary", label: swapProgressButtonTexts[swapState], onClick: () => handleClose === null || handleClose === void 0 ? void 0 : handleClose(swapState), className: "tw-min-h-button" }))] }));
61296
+ } })) }), jsxRuntime.jsx(SwapProgressViewHeader, { title: headerTitle, description: headerDescription }), jsxRuntime.jsxs("ul", { className: "tw-flex tw-w-full tw-flex-col tw-items-center tw-justify-center tw-gap-squid-xxs tw-rounded-squid-l tw-pb-squid-s tw-pt-squid-xs mobile-xs-height:tw-h-[195px] mobile-sm-height:tw-py-squid-s", children: [jsxRuntime.jsx(PropertyListItem, { icon: jsxRuntime.jsx(ArrowsSwapIcon, {}), label: "Swap", detail: jsxRuntime.jsx(Transfer, { from: jsxRuntime.jsx(IconLabel, { src: fromToken.logoUrl, variant: "round", children: fromAmount }), to: jsxRuntime.jsx(IconLabel, { src: toToken.logoUrl, variant: "round", children: toAmount }) }) }), jsxRuntime.jsx(PropertyListItem, { icon: jsxRuntime.jsx(ChainLink, { size: "24", strokeWidth: "2" }), label: "Chain", detail: jsxRuntime.jsx(Transfer, { from: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("img", { className: "tw-h-squid-m tw-w-squid-m tw-rounded-squid-xxs", src: fromChain.logoUrl }), jsxRuntime.jsx(CaptionText, { children: fromChain.networkName })] }), to: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("img", { className: "tw-h-squid-m tw-w-squid-m tw-rounded-squid-xxs", src: toChain.logoUrl }), jsxRuntime.jsx(CaptionText, { children: toChain.networkName })] }) }) }), jsxRuntime.jsx(PropertyListItem, { icon: jsxRuntime.jsx(WalletFilledIcon, { size: "24" }), label: "Wallet", detail: jsxRuntime.jsx(Transfer, { from: fromAddressFormatted, to: toAddressFormatted }) }), jsxRuntime.jsx(PropertyListItem, { icon: jsxRuntime.jsx(TimeFliesIcon, {}), label: "Time to complete", detail: swapState === SwapState.PROGRESS ? (jsxRuntime.jsx(Transfer, { from: timer, to: estimatedTimeToComplete })) : swapState === SwapState.COMPLETED ? (jsxRuntime.jsx(CaptionText, { children: timer })) : (jsxRuntime.jsx(CaptionText, { children: estimatedTimeToComplete })) })] })] }), jsxRuntime.jsx(TrackTransactionView, { ref: trackTransactionViewRef, onTxEnd: () => stopTimer(), onTxStart: () => startTimer(), rawSteps: steps, onClose: handleRouteStepsClosed, onOpen: handleRouteStepsOpen, swapState: swapState, footerButton: footerButton }), !showSwapInfoSection ? (jsxRuntime.jsx(Button$1, { size: "lg", variant: "secondary", label: "Close", onClick: handleCollapseRouteSteps, className: "tw-min-h-button" })) : swapState === SwapState.PARTIAL_SUCCESS ? (jsxRuntime.jsxs("div", { className: "tw-flex tw-w-full tw-items-center tw-gap-squid-xxs", children: [jsxRuntime.jsx(Button$1, { size: "lg", variant: "secondary", label: swapProgressButtonTexts[swapState], onClick: () => handleClose === null || handleClose === void 0 ? void 0 : handleClose(swapState), className: "tw-min-h-button" }), jsxRuntime.jsx(Button$1, { size: "lg", variant: "primary", label: "Complete", onClick: handleComplete, className: "tw-min-h-button" })] })) : (jsxRuntime.jsx(Button$1, { size: "lg", variant: "primary", label: swapProgressButtonTexts[swapState], onClick: () => handleClose === null || handleClose === void 0 ? void 0 : handleClose(swapState), className: "tw-min-h-button" }))] }));
61293
61297
  }
61294
61298
  const TrackTransactionView = React$1.forwardRef((props, ref) => {
61295
61299
  const { swapState, rawSteps, onOpen, onClose, onTxStart, onTxEnd, footerButton, } = props;
@@ -26,3 +26,4 @@ export declare const Error: Story;
26
26
  export declare const WithTooltips: Story;
27
27
  export declare const WithoutSourceConnectLabels: Story;
28
28
  export declare const WithoutDestConnectLabels: Story;
29
+ export declare const AddressOnly: Story;
package/dist/esm/index.js CHANGED
@@ -16689,6 +16689,11 @@ const ANIMATION_TIMINGS = {
16689
16689
  HIDE_ROUTE: 'cubic-bezier(.165,.84,.44,1)',
16690
16690
  };
16691
16691
  const MEDIA_QUERIES = {
16692
+ MOBILE_XS: {
16693
+ media: '(min-width: 360px)',
16694
+ key: 'mobile-xs',
16695
+ value: 360,
16696
+ },
16692
16697
  MOBILE_LG: {
16693
16698
  media: '(min-width: 480px)',
16694
16699
  key: 'mobile-lg',
@@ -16704,11 +16709,6 @@ const MEDIA_QUERIES = {
16704
16709
  key: 'mobile-sm-height',
16705
16710
  value: 670,
16706
16711
  },
16707
- MOBILE_XS: {
16708
- media: '(min-width: 360px)',
16709
- key: 'mobile-xs',
16710
- value: 360,
16711
- },
16712
16712
  };
16713
16713
 
16714
16714
  function BoostButton({ boostMode, canToggleBoostMode = true, boostIndicatorRef, }) {
@@ -17253,7 +17253,7 @@ function SwapStepItem({ descriptionBlocks, showStepSeparator = false, link, stat
17253
17253
  return (jsx("li", { style: {
17254
17254
  maxHeight: `${STEP_ITEM_HEIGHT}px`,
17255
17255
  minHeight: `${STEP_ITEM_HEIGHT}px`,
17256
- }, className: "tw-relative tw-flex tw-w-list-item-compact tw-flex-col tw-items-start tw-justify-center tw-text-grey-300 tw-transition-colors tw-duration-1000 mobile-lg:tw-w-list-item-large", children: jsxs("a", { href: link, target: "_blank", style: Object.assign(Object.assign({}, transitionStyle), { maxHeight: `${STEP_ITEM_HEIGHT}px` }), className: cn('tw-group/swap-step-item tw-flex tw-w-full tw-items-center tw-rounded-squid-xs tw-py-squid-xxs', !!link && 'hover:tw-bg-material-light-thin', statusTextClass), children: [jsxs("span", { className: "tw-relative tw-flex tw-min-h-squid-l tw-items-center tw-justify-center tw-gap-squid-xxs tw-px-squid-xs", children: [jsx(Chip, { style: transitionStyle, className: cn('tw-w-squid-xl', statusBgClassMap[status]), icon: chipContent }), showStepSeparator && (jsx("span", { className: cn(separatorClassMap[status], 'tw-absolute tw-left-0 tw-top-full tw-mt-0.5'), style: transitionStyle, children: jsx(SwapStepSeparator, {}) }))] }), jsx(DescriptionBlocks, { className: "tw-min-h-squid-l tw-py-squid-xxs tw-pr-squid-xs", blocks: descriptionBlocks })] }) }));
17256
+ }, className: "tw-relative tw-flex tw-w-full tw-flex-col tw-items-start tw-justify-center tw-text-grey-300 tw-transition-colors tw-duration-1000", children: jsxs("a", { href: link, target: "_blank", style: Object.assign(Object.assign({}, transitionStyle), { maxHeight: `${STEP_ITEM_HEIGHT}px` }), className: cn('tw-group/swap-step-item tw-flex tw-w-full tw-items-center tw-rounded-squid-xs tw-py-squid-xxs', !!link && 'hover:tw-bg-material-light-thin', statusTextClass), children: [jsxs("span", { className: "tw-relative tw-flex tw-min-h-squid-l tw-items-center tw-justify-center tw-gap-squid-xxs tw-px-squid-xs", children: [jsx(Chip, { style: transitionStyle, className: cn('tw-w-squid-xl', statusBgClassMap[status]), icon: chipContent }), showStepSeparator && (jsx("span", { className: cn(separatorClassMap[status], 'tw-absolute tw-left-0 tw-top-full tw-mt-0.5'), style: transitionStyle, children: jsx(SwapStepSeparator, {}) }))] }), jsx(DescriptionBlocks, { className: "tw-min-h-squid-l tw-py-squid-xxs tw-pr-squid-xs", blocks: descriptionBlocks })] }) }));
17257
17257
  }
17258
17258
 
17259
17259
  function Timeline(_a) {
@@ -17502,7 +17502,7 @@ function Modal({ children, className, onBackdropClick, isOpen: _isOpen = true, m
17502
17502
  }, className: cn('tw-absolute tw-inset-0 tw-z-40 tw-flex tw-items-start tw-justify-center tw-px-squid-xs tw-py-squid-xl tw-pb-squid-m', _isOpen ? 'tw-animate-blur-in' : 'tw-animate-blur-out'), children: jsx("div", { style: {
17503
17503
  [CSS_VARS.SLIDE_TO_TOP_DURATION]: `${ANIMATION_DURATIONS.SHOW_MODAL}ms`,
17504
17504
  [CSS_VARS.SLIDE_TO_BOTTOM_DURATION]: `${ANIMATION_DURATIONS.HIDE_MODAL}ms`,
17505
- }, className: cn('tw-relative tw-flex tw-max-h-modal-compact tw-w-modal-compact tw-flex-col tw-items-start tw-justify-end tw-gap-squid-xxs tw-self-end mobile-lg:tw-max-h-modal-large', className, _isOpen ? 'tw-animate-slide-to-top' : 'tw-animate-slide-to-bottom', maxHeight && 'tw-h-full', modalWidthClassMap[width]), children: children }) })));
17505
+ }, className: cn('tw-relative tw-flex tw-max-h-modal-compact tw-max-w-full tw-flex-col tw-items-start tw-justify-end tw-gap-squid-xxs tw-self-end mobile-lg:tw-max-h-modal-large mobile-xs:tw-w-modal-compact', className, _isOpen ? 'tw-animate-slide-to-top' : 'tw-animate-slide-to-bottom', maxHeight && 'tw-h-full', modalWidthClassMap[width]), children: children }) })));
17506
17506
  }
17507
17507
 
17508
17508
  const borderTypeClassMap = {
@@ -17511,7 +17511,7 @@ const borderTypeClassMap = {
17511
17511
  };
17512
17512
  function ModalContent(_a) {
17513
17513
  var { children, addGap = false, paddingY = false, borderType = 'border', className } = _a, props = __rest$1(_a, ["children", "addGap", "paddingY", "borderType", "className"]);
17514
- return (jsx("div", Object.assign({}, props, { className: cn('tw-flex tw-h-full tw-max-h-[445px] mobile-sm-height:tw-max-h-[535px] tw-w-full tw-flex-col tw-self-stretch tw-rounded-squid-l tw-bg-grey-800 tw-text-grey-300', addGap && 'tw-gap-squid-xxs tw-pt-squid-xxs', borderTypeClassMap[borderType], paddingY && 'tw-py-squid-xxs', className), children: children })));
17514
+ return (jsx("div", Object.assign({}, props, { className: cn('tw-flex tw-h-full tw-max-h-[445px] tw-w-full tw-flex-col tw-self-stretch tw-rounded-squid-l tw-bg-grey-800 tw-text-grey-300 mobile-sm-height:tw-max-h-[535px]', addGap && 'tw-gap-squid-xxs tw-pt-squid-xxs', borderTypeClassMap[borderType], paddingY && 'tw-py-squid-xxs', className), children: children })));
17515
17515
  }
17516
17516
  function ModalContentDivider() {
17517
17517
  return (jsx("svg", { width: "100%", height: "11", viewBox: "0 0 400 11", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsx("rect", { x: "1", y: "5", width: "398", height: "1", fill: "currentColor" }) }));
@@ -17520,14 +17520,18 @@ function ModalContentDivider() {
17520
17520
  function NavigationBar(_a) {
17521
17521
  var { title, displayBackButton = false, logoUrl, transparent = false, displayButtonShadows = false, onBackButtonClick, actions, isLoading = false } = _a, props = __rest$1(_a, ["title", "displayBackButton", "logoUrl", "transparent", "displayButtonShadows", "onBackButtonClick", "actions", "isLoading"]);
17522
17522
  return (jsxs("nav", Object.assign({}, props, { className: cn('tw-flex tw-max-h-[120px] tw-flex-row-reverse tw-text-grey-300 mobile-xs-height:tw-flex-col', transparent ? 'tw-bg-transparent' : 'tw-bg-grey-900', props.className), children: [jsxs("div", { className: cn('tw-flex tw-h-squid-xxl tw-items-center tw-justify-end tw-gap-x-squid-xs tw-pl-squid-m', displayBackButton
17523
- ? 'tw-pr-squid-xs mobile-xs-height:tw-pr-squid-m'
17523
+ ? 'tw-w-full tw-pr-squid-xs mobile-xs-height:tw-pr-squid-m'
17524
17524
  : 'tw-pr-squid-m mobile-lg:tw-pl-squid-l', !title && 'tw-w-full mobile-xs-height:tw-w-[unset]'), children: [displayBackButton ? (jsx(Button$1, { className: displayButtonShadows
17525
17525
  ? 'group-data-[squid-theme-type=dark]:tw-shadow-elevation-dark-2 group-data-[squid-theme-type=light]:tw-shadow-elevation-light-2'
17526
17526
  : undefined, variant: "tertiary", size: "md", isLoading: isLoading, icon: jsx(ArrowLeftIcon, {}), onClick: onBackButtonClick })) : null, logoUrl ? (jsx("img", { src: logoUrl, className: "tw-h-squid-xl tw-min-w-squid-xl" })) : null, jsx("span", { className: "tw-flex tw-flex-1 tw-items-center tw-justify-end tw-gap-squid-xxs", children: actions === null || actions === void 0 ? void 0 : actions.map((action) => (jsx(Tooltip, Object.assign({}, action.tooltip, { childrenClassName: "tw-rounded-squid-m", containerClassName: "tw-rounded-squid-m", tooltipWidth: "max", children: jsx(Button$1, { size: "md", variant: "tertiary", isLoading: isLoading, label: typeof action.labelOrIcon === 'string'
17527
17527
  ? action.labelOrIcon
17528
17528
  : undefined, className: "tw-text-grey-300", icon: typeof action.labelOrIcon === 'string'
17529
17529
  ? null
17530
- : action.labelOrIcon, onClick: action.onClick, chip: action.chip }) }), action.id))) })] }), title ? (jsx("div", { className: "tw-flex tw-h-squid-xxl tw-w-full tw-items-center tw-px-squid-m tw-py-squid-xxs mobile-lg:tw-px-squid-l", children: jsx(HeadingText, { size: "small", children: title }) })) : null] })));
17530
+ : action.labelOrIcon, onClick: action.onClick, chip: action.chip }) }), action.id))) })] }), title ? (jsx("div", { className: cn('tw-h-squid-xxl tw-w-full tw-items-center tw-px-squid-m tw-py-squid-xxs mobile-lg:tw-px-squid-l',
17531
+ // hide the title on small screens when back button is displayed, so it's positioned on the left
17532
+ displayBackButton
17533
+ ? 'tw-hidden mobile-xs-height:tw-flex'
17534
+ : 'tw-flex'), children: jsx(HeadingText, { size: "small", children: title }) })) : null] })));
17531
17535
  }
17532
17536
 
17533
17537
  const createStoreImpl = (createState) => {
@@ -18123,7 +18127,7 @@ function SwapConfiguration({ amount, tokenPrice = 0, isFetching: isFetchingProp
18123
18127
  const isWalletButtonInteractive = !isLoading && !!(walletButton === null || walletButton === void 0 ? void 0 : walletButton.onClick);
18124
18128
  const WalletButtonTag = isWalletButtonInteractive ? 'button' : 'div';
18125
18129
  const isFetching = isFetchingProp || isLoading;
18126
- return (jsxs("section", { className: "tw-relative tw-flex tw-w-full tw-flex-col tw-border-t tw-border-t-material-light-thin tw-bg-grey-900 tw-pb-squid-m tw-h-[195px] mobile-sm-height:tw-h-[205px] mobile-lg:tw-w-card-large", children: [jsx("header", { className: "tw-flex tw-items-center tw-gap-1 tw-px-squid-m tw-py-squid-xs tw-leading-5 tw-text-grey-300 mobile-lg:tw-px-squid-l", children: jsx(Tooltip, Object.assign({}, walletButton === null || walletButton === void 0 ? void 0 : walletButton.tooltip, { tooltipWidth: "max", childrenClassName: "tw-rounded-squid-s", containerClassName: "tw-rounded-squid-s", children: jsxs(WalletButtonTag, { onClick: isWalletButtonInteractive ? walletButton === null || walletButton === void 0 ? void 0 : walletButton.onClick : undefined, className: cn('-tw-ml-squid-xs tw-flex tw-h-squid-l tw-items-center tw-gap-squid-xxs tw-rounded-squid-s tw-px-squid-xs tw-text-grey-600', isWalletButtonInteractive && 'hover:tw-bg-material-light-thin', isLoading && 'tw-opacity-50'), children: [jsx(BodyText, { className: "tw-text-grey-500", size: "small", children: direction === 'from' ? 'Pay' : 'Receive' }), !isLoading && !(walletButton === null || walletButton === void 0 ? void 0 : walletButton.disabled) && (jsxs(Fragment, { children: [jsx(BodyText, { size: "small", children: ":" }), jsxs("div", { className: "tw-flex tw-items-center tw-gap-1", children: [jsx(BodyText, { size: "small", className: (walletButton === null || walletButton === void 0 ? void 0 : walletButton.address)
18130
+ return (jsxs("section", { className: "tw-relative tw-flex tw-h-[195px] tw-w-full tw-flex-col tw-border-t tw-border-t-material-light-thin tw-bg-grey-900 tw-pb-squid-m mobile-lg:tw-w-card-large mobile-sm-height:tw-h-[205px]", children: [jsx("header", { className: "tw-flex tw-items-center tw-gap-1 tw-px-squid-m tw-py-squid-xs tw-leading-5 tw-text-grey-300 mobile-lg:tw-px-squid-l", children: jsx(Tooltip, Object.assign({}, walletButton === null || walletButton === void 0 ? void 0 : walletButton.tooltip, { tooltipWidth: "max", childrenClassName: "tw-rounded-squid-s", containerClassName: "tw-rounded-squid-s", children: jsxs(WalletButtonTag, { onClick: isWalletButtonInteractive ? walletButton === null || walletButton === void 0 ? void 0 : walletButton.onClick : undefined, className: cn('-tw-ml-squid-xs tw-flex tw-h-squid-l tw-items-center tw-gap-squid-xxs tw-rounded-squid-s tw-px-squid-xs tw-text-grey-600', isWalletButtonInteractive && 'hover:tw-bg-material-light-thin', isLoading && 'tw-opacity-50'), children: [jsx(BodyText, { className: "tw-text-grey-500", size: "small", children: direction === 'from' ? 'Pay' : 'Receive' }), !isLoading && !(walletButton === null || walletButton === void 0 ? void 0 : walletButton.disabled) && !!token && (jsxs(Fragment, { children: [jsx(BodyText, { size: "small", children: ":" }), jsxs("div", { className: "tw-flex tw-items-center tw-gap-1", children: [jsx(BodyText, { size: "small", className: (walletButton === null || walletButton === void 0 ? void 0 : walletButton.address)
18127
18131
  ? 'tw-text-grey-300'
18128
18132
  : 'tw-text-royal-400', children: (walletButton === null || walletButton === void 0 ? void 0 : walletButton.address)
18129
18133
  ? walletButton === null || walletButton === void 0 ? void 0 : walletButton.address
@@ -18197,7 +18201,7 @@ const SwapStepsCollapsed = forwardRef((props, ref) => {
18197
18201
  onOpen === null || onOpen === void 0 ? void 0 : onOpen();
18198
18202
  }
18199
18203
  };
18200
- return (jsx("div", { className: "tw-relative tw-h-[60px] tw-min-w-modal-compact tw-rounded-squid-l mobile-lg:tw-min-w-modal-large", children: jsx("div", { className: cn('tw-absolute tw-bottom-0 tw-z-10 tw-flex tw-w-full tw-max-w-modal-compact tw-flex-col tw-justify-end tw-gap-squid-xxs tw-overflow-hidden tw-rounded-squid-l mobile-lg:tw-max-w-modal-large', isRouteVisible ? 'tw-h-[535px]' : 'tw-h-[60px]'), children: jsxs("div", { className: "tw-flex tw-flex-col tw-justify-end", children: [!isRouteVisible && (jsxs(Fragment, { children: [jsx("span", { className: "tw-absolute tw-left-0 tw-top-0 tw-z-10 tw-h-[21px] tw-w-full tw-bg-gradient-to-b tw-from-grey-800 tw-transition-colors group-hover/swap-step-item-button:tw-from-grey-700" }), jsx("span", { className: "tw-absolute tw-bottom-0 tw-left-0 tw-z-10 tw-h-[21px] tw-w-full tw-bg-gradient-to-t tw-from-grey-800 tw-transition-colors group-hover/swap-step-item-button:tw-from-grey-700" })] })), jsx("div", { onClick: handleToggleRouteSteps, style: {
18204
+ return (jsx("div", { className: "tw-relative tw-h-[60px] tw-w-modal-compact tw-max-w-full tw-rounded-squid-l mobile-lg:tw-min-w-modal-large", children: jsx("div", { className: cn('tw-absolute tw-bottom-0 tw-z-10 tw-flex tw-w-full tw-max-w-modal-compact tw-flex-col tw-justify-end tw-gap-squid-xxs tw-overflow-hidden tw-rounded-squid-l mobile-lg:tw-max-w-modal-large', isRouteVisible ? 'tw-h-[535px]' : 'tw-h-[60px]'), children: jsxs("div", { className: "tw-flex tw-flex-col tw-justify-end", children: [!isRouteVisible && (jsxs(Fragment, { children: [jsx("span", { className: "tw-absolute tw-left-0 tw-top-0 tw-z-10 tw-h-[21px] tw-w-full tw-bg-gradient-to-b tw-from-grey-800 tw-transition-colors group-hover/swap-step-item-button:tw-from-grey-700" }), jsx("span", { className: "tw-absolute tw-bottom-0 tw-left-0 tw-z-10 tw-h-[21px] tw-w-full tw-bg-gradient-to-t tw-from-grey-800 tw-transition-colors group-hover/swap-step-item-button:tw-from-grey-700" })] })), jsx("div", { onClick: handleToggleRouteSteps, style: {
18201
18205
  [CSS_VARS.FADE_OUT_DURATION]: `${ANIMATION_DURATIONS.HIDE_ROUTE}ms`,
18202
18206
  [CSS_VARS.FADE_IN_DURATION]: `${ANIMATION_DURATIONS.SHOW_ROUTE}ms`,
18203
18207
  }, className: cn('tw-absolute tw-top-0 tw-h-[535px] tw-w-full tw-rounded-squid-l tw-bg-material-dark-thick tw-backdrop-blur/10 ', isShowRouteAnimationRunning
@@ -18208,11 +18212,11 @@ const SwapStepsCollapsed = forwardRef((props, ref) => {
18208
18212
  }, onClick: handleToggleRouteSteps, className: "tw-absolute tw-inset-0 tw-h-[60px] tw-cursor-pointer tw-rounded-squid-l tw-border tw-border-material-light-thin" }), jsx("div", { onClick: isShowRouteAnimationRunning ? undefined : handleToggleRouteSteps, style: {
18209
18213
  [CSS_VARS.COLLAPSE_ROUTE_DURATION]: `${ANIMATION_DURATIONS.HIDE_ROUTE}ms`,
18210
18214
  [CSS_VARS.EXPAND_ROUTE_DURATION]: `${ANIMATION_DURATIONS.SHOW_ROUTE}ms`,
18211
- }, className: cn('tw-relative tw-h-[60px] tw-max-h-[535px] tw-w-full tw-overflow-hidden tw-rounded-squid-l tw-border tw-border-material-light-thin tw-bg-grey-800 tw-backdrop-blur-2xl', isRouteVisible &&
18215
+ }, className: cn('tw-relative tw-h-[60px] tw-max-h-[470px] tw-w-full tw-overflow-hidden tw-rounded-squid-l tw-border tw-border-material-light-thin tw-bg-grey-800 tw-backdrop-blur-2xl mobile-xs-height:tw-max-h-[535px]', isRouteVisible &&
18212
18216
  (isShowRouteAnimationRunning
18213
18217
  ? 'tw-animate-expand-route'
18214
18218
  : 'tw-animate-collapse-route')), children: jsxs("div", { className: cn('tw-flex tw-flex-col tw-gap-squid-xxs', isRouteVisible || isShowRouteAnimationRunning
18215
- ? 'tw-max-h-[535px]'
18219
+ ? 'tw-max-h-[470px] mobile-xs-height:tw-max-h-[535px]'
18216
18220
  : ''), style: {
18217
18221
  paddingTop: `${STEP_ITEM_HEIGHT / 2}px`,
18218
18222
  transition: isShowRouteAnimationRunning
@@ -18226,7 +18230,7 @@ const SwapStepsCollapsed = forwardRef((props, ref) => {
18226
18230
  }, children: [jsx("ul", { ref: routeStepsListRef, style: {
18227
18231
  zIndex: isRouteVisible ? 0 : -10,
18228
18232
  scrollbarWidth: 'none',
18229
- }, className: "tw-relative tw-flex tw-w-modal-compact tw-flex-1 tw-grow-0 tw-flex-col-reverse tw-items-center tw-self-stretch tw-overflow-y-auto tw-overflow-x-hidden tw-px-squid-xs tw-pb-squid-xxs mobile-lg:tw-w-modal-large", children: steps.map((step, index) => (jsx(SwapStepItem, { descriptionBlocks: step.descriptionBlocks,
18233
+ }, className: "tw-relative tw-flex tw-w-modal-compact tw-max-w-full tw-flex-1 tw-grow-0 tw-flex-col-reverse tw-items-center tw-self-stretch tw-overflow-y-auto tw-overflow-x-hidden tw-px-squid-xs tw-pb-squid-xxs mobile-lg:tw-w-modal-large", children: steps.map((step, index) => (jsx(SwapStepItem, { descriptionBlocks: step.descriptionBlocks,
18230
18234
  // show separator for all steps except the first one
18231
18235
  showStepSeparator: index > 0, link: step.link, status: newStepIndex < index ? 'pending' : step.status }, index))) }), jsx("footer", { className: "tw-flex tw-max-h-[55px] tw-min-h-[55px] tw-w-full tw-justify-center tw-gap-squid-xs tw-self-stretch tw-px-squid-s tw-pb-squid-s", children: jsx(Button$1, { size: "md", variant: "secondary", onClick: footerButton === null || footerButton === void 0 ? void 0 : footerButton.onClick, link: footerButton === null || footerButton === void 0 ? void 0 : footerButton.link, label: footerButton === null || footerButton === void 0 ? void 0 : footerButton.label, className: "tw-w-full", containerClassName: "tw-w-full" }) })] }) })] }) }) }));
18232
18236
  });
@@ -25654,7 +25658,7 @@ function NumericInput({ priceImpactPercentage, balance = '0', error, criticalPri
25654
25658
  const inputRef = useRef(null);
25655
25659
  return (jsxs(Fragment, { children: [isInteractive && !isLoading ? (jsxs("form", { className: containerClassname, onSubmit: (e) => {
25656
25660
  e.preventDefault();
25657
- }, children: [inputMode === InputMode.USD && (jsx("span", { className: "tw-absolute tw-left-5 tw-top-[11px] tw-leading-[43px] tw-text-grey-600 mobile-lg:tw-left-[30px]", children: "$" })), jsx("input", { ref: inputRef, type: "text", value: inputValue, onChange: handleInputChange, placeholder: "0", className: cn('tw-h-[55px] tw-w-full tw-rounded-squid-s tw-bg-transparent tw-px-squid-xs tw-py-squid-s tw-text-grey-300 placeholder:tw-text-grey-600 hover:tw-bg-material-light-thin focus:tw-bg-material-light-thin focus:tw-text-royal-400 focus:tw-outline-none', inputMode === InputMode.USD && 'tw-pl-[33px]') })] })) : (jsx("div", { className: cn(containerClassname, isLoading && loadingClassName), children: jsx("div", { className: "tw-flex tw-h-[55px] tw-w-full tw-items-center tw-rounded-squid-s tw-bg-transparent tw-px-squid-xs tw-py-squid-s tw-text-heading-small tw-font-heading-regular tw-text-grey-300 mobile-sm-height:tw-h-[65px]", children: jsx("span", { children: inputValue || 0 }) }) })), !showDetails ? null : (jsxs("footer", { className: cn('tw-flex tw-h-squid-m tw-max-h-squid-m tw-items-center tw-justify-between tw-gap-2 tw-px-squid-xs tw-text-grey-500 mobile-lg:tw-px-squid-m', isLoading && loadingClassName), children: [error ? (jsx("div", { className: "tw-px-squid-xs", children: jsx(ErrorMessage, { message: error.message }) })) : (jsx(Tooltip, Object.assign({}, (isLoading
25661
+ }, children: [inputMode === InputMode.USD && (jsx("span", { className: "tw-absolute tw-left-5 tw-top-[11px] tw-leading-[43px] tw-text-grey-600 mobile-lg:tw-left-[30px]", children: "$" })), jsx("input", { ref: inputRef, type: "text", value: inputValue, onChange: handleInputChange, placeholder: "0", className: cn('tw-h-[55px] tw-w-full tw-rounded-squid-s tw-bg-transparent tw-px-squid-xs tw-py-squid-s tw-text-grey-300 placeholder:tw-text-grey-600 hover:tw-bg-material-light-thin focus:tw-bg-material-light-thin focus:tw-text-royal-400 focus:tw-outline-none', inputMode === InputMode.USD && 'tw-pl-[33px]') })] })) : (jsx("div", { className: cn(containerClassname, (isLoading || Number(inputValue || 0) === 0) && loadingClassName), children: jsx("div", { className: "tw-flex tw-h-[55px] tw-w-full tw-items-center tw-rounded-squid-s tw-bg-transparent tw-px-squid-xs tw-py-squid-s tw-text-heading-small tw-font-heading-regular tw-text-grey-300 mobile-sm-height:tw-h-[65px]", children: jsx("span", { children: inputValue || 0 }) }) })), !showDetails ? null : (jsxs("footer", { className: cn('tw-flex tw-h-squid-m tw-max-h-squid-m tw-items-center tw-justify-between tw-gap-2 tw-px-squid-xs tw-text-grey-500 mobile-lg:tw-px-squid-m', isLoading && loadingClassName), children: [error ? (jsx("div", { className: "tw-px-squid-xs", children: jsx(ErrorMessage, { message: error.message }) })) : (jsx(Tooltip, Object.assign({}, (isLoading
25658
25662
  ? undefined
25659
25663
  : inputMode === InputMode.TOKEN
25660
25664
  ? inputModeButton === null || inputModeButton === void 0 ? void 0 : inputModeButton.tokenModeTooltip
@@ -61260,7 +61264,7 @@ function SwapProgressView({ steps, isOpen = true, handleClose, handleComplete, s
61260
61264
  ? ''
61261
61265
  : showSwapInfoSection
61262
61266
  ? 'tw-animate-scale-and-fade-up'
61263
- : 'tw-animate-scale-and-fade-down'), children: [jsx("div", { className: "tw-flex tw-h-[160px] tw-w-full tw-items-center tw-justify-center tw-rounded-tl-squid-l tw-rounded-tr-squid-l tw-bg-royal-500 tw-text-material-light-thin", style: {
61267
+ : 'tw-animate-scale-and-fade-down'), children: [jsx("div", { className: "tw-flex tw-h-[130px] tw-w-full tw-items-center tw-justify-center tw-rounded-tl-squid-l tw-rounded-tr-squid-l tw-bg-royal-500 tw-text-material-light-thin mobile-xs-height:tw-h-[160px]", style: {
61264
61268
  // box shadow simulating bottom outline (we do not use css outline because cannot apply it to only one side)
61265
61269
  boxShadow: '0 1px 0 currentColor',
61266
61270
  }, children: jsx("div", { children: jsx(AnimationWrapper, { lottieJsonFile: swapProgressAnimations[swapState], hideAnimations: false, animReplacement: jsx(Loader, { size: "60" }) }) }) }), jsx("div", { className: "tw-relative tw-flex tw-h-squid-m tw-w-full tw-items-end tw-justify-between tw-self-stretch tw-px-squid-m", children: swapState === SwapState.COMPLETED ? (jsxs(Fragment, { children: [jsx("span", { className: "-tw-mb-1 -tw-ml-1", children: jsx(SwapSuccessIcon, {}) }), jsx(Button$1, { size: "md", variant: "secondary", icon: jsx(XSocial, {}), label: "Share", link: socialLink, title: "Share on X" })] })) : swapState === SwapState.ERROR ? (jsx(SwapErrorTopMenu, { supportLink: supportLink, type: "error" })) : swapState === SwapState.PARTIAL_SUCCESS ? (jsx(SwapErrorTopMenu, { supportLink: supportLink, type: "warning" })) : (jsx(TokenPair, { firstToken: {
@@ -61269,7 +61273,7 @@ function SwapProgressView({ steps, isOpen = true, handleClose, handleComplete, s
61269
61273
  }, secondToken: {
61270
61274
  bgColor: toToken.bgColor,
61271
61275
  logoURI: toToken.logoUrl,
61272
- } })) }), jsx(SwapProgressViewHeader, { title: headerTitle, description: headerDescription }), jsxs("ul", { className: "tw-flex tw-h-[195px] tw-w-full tw-flex-col tw-items-center tw-justify-center tw-gap-squid-xxs tw-rounded-squid-l tw-py-squid-s", children: [jsx(PropertyListItem, { icon: jsx(ArrowsSwapIcon, {}), label: "Swap", detail: jsx(Transfer, { from: jsx(IconLabel, { src: fromToken.logoUrl, variant: "round", children: fromAmount }), to: jsx(IconLabel, { src: toToken.logoUrl, variant: "round", children: toAmount }) }) }), jsx(PropertyListItem, { icon: jsx(ChainLink, { size: "24", strokeWidth: "2" }), label: "Chain", detail: jsx(Transfer, { from: jsxs(Fragment, { children: [jsx("img", { className: "tw-h-squid-m tw-w-squid-m tw-rounded-squid-xxs", src: fromChain.logoUrl }), jsx(CaptionText, { children: fromChain.networkName })] }), to: jsxs(Fragment, { children: [jsx("img", { className: "tw-h-squid-m tw-w-squid-m tw-rounded-squid-xxs", src: toChain.logoUrl }), jsx(CaptionText, { children: toChain.networkName })] }) }) }), jsx(PropertyListItem, { icon: jsx(WalletFilledIcon, { size: "24" }), label: "Wallet", detail: jsx(Transfer, { from: fromAddressFormatted, to: toAddressFormatted }) }), jsx(PropertyListItem, { icon: jsx(TimeFliesIcon, {}), label: "Time to complete", detail: swapState === SwapState.PROGRESS ? (jsx(Transfer, { from: timer, to: estimatedTimeToComplete })) : swapState === SwapState.COMPLETED ? (jsx(CaptionText, { children: timer })) : (jsx(CaptionText, { children: estimatedTimeToComplete })) })] })] }), jsx(TrackTransactionView, { ref: trackTransactionViewRef, onTxEnd: () => stopTimer(), onTxStart: () => startTimer(), rawSteps: steps, onClose: handleRouteStepsClosed, onOpen: handleRouteStepsOpen, swapState: swapState, footerButton: footerButton }), !showSwapInfoSection ? (jsx(Button$1, { size: "lg", variant: "secondary", label: "Close", onClick: handleCollapseRouteSteps, className: "tw-min-h-button" })) : swapState === SwapState.PARTIAL_SUCCESS ? (jsxs("div", { className: "tw-flex tw-w-full tw-items-center tw-gap-squid-xxs", children: [jsx(Button$1, { size: "lg", variant: "secondary", label: swapProgressButtonTexts[swapState], onClick: () => handleClose === null || handleClose === void 0 ? void 0 : handleClose(swapState), className: "tw-min-h-button" }), jsx(Button$1, { size: "lg", variant: "primary", label: "Complete", onClick: handleComplete, className: "tw-min-h-button" })] })) : (jsx(Button$1, { size: "lg", variant: "primary", label: swapProgressButtonTexts[swapState], onClick: () => handleClose === null || handleClose === void 0 ? void 0 : handleClose(swapState), className: "tw-min-h-button" }))] }));
61276
+ } })) }), jsx(SwapProgressViewHeader, { title: headerTitle, description: headerDescription }), jsxs("ul", { className: "tw-flex tw-w-full tw-flex-col tw-items-center tw-justify-center tw-gap-squid-xxs tw-rounded-squid-l tw-pb-squid-s tw-pt-squid-xs mobile-xs-height:tw-h-[195px] mobile-sm-height:tw-py-squid-s", children: [jsx(PropertyListItem, { icon: jsx(ArrowsSwapIcon, {}), label: "Swap", detail: jsx(Transfer, { from: jsx(IconLabel, { src: fromToken.logoUrl, variant: "round", children: fromAmount }), to: jsx(IconLabel, { src: toToken.logoUrl, variant: "round", children: toAmount }) }) }), jsx(PropertyListItem, { icon: jsx(ChainLink, { size: "24", strokeWidth: "2" }), label: "Chain", detail: jsx(Transfer, { from: jsxs(Fragment, { children: [jsx("img", { className: "tw-h-squid-m tw-w-squid-m tw-rounded-squid-xxs", src: fromChain.logoUrl }), jsx(CaptionText, { children: fromChain.networkName })] }), to: jsxs(Fragment, { children: [jsx("img", { className: "tw-h-squid-m tw-w-squid-m tw-rounded-squid-xxs", src: toChain.logoUrl }), jsx(CaptionText, { children: toChain.networkName })] }) }) }), jsx(PropertyListItem, { icon: jsx(WalletFilledIcon, { size: "24" }), label: "Wallet", detail: jsx(Transfer, { from: fromAddressFormatted, to: toAddressFormatted }) }), jsx(PropertyListItem, { icon: jsx(TimeFliesIcon, {}), label: "Time to complete", detail: swapState === SwapState.PROGRESS ? (jsx(Transfer, { from: timer, to: estimatedTimeToComplete })) : swapState === SwapState.COMPLETED ? (jsx(CaptionText, { children: timer })) : (jsx(CaptionText, { children: estimatedTimeToComplete })) })] })] }), jsx(TrackTransactionView, { ref: trackTransactionViewRef, onTxEnd: () => stopTimer(), onTxStart: () => startTimer(), rawSteps: steps, onClose: handleRouteStepsClosed, onOpen: handleRouteStepsOpen, swapState: swapState, footerButton: footerButton }), !showSwapInfoSection ? (jsx(Button$1, { size: "lg", variant: "secondary", label: "Close", onClick: handleCollapseRouteSteps, className: "tw-min-h-button" })) : swapState === SwapState.PARTIAL_SUCCESS ? (jsxs("div", { className: "tw-flex tw-w-full tw-items-center tw-gap-squid-xxs", children: [jsx(Button$1, { size: "lg", variant: "secondary", label: swapProgressButtonTexts[swapState], onClick: () => handleClose === null || handleClose === void 0 ? void 0 : handleClose(swapState), className: "tw-min-h-button" }), jsx(Button$1, { size: "lg", variant: "primary", label: "Complete", onClick: handleComplete, className: "tw-min-h-button" })] })) : (jsx(Button$1, { size: "lg", variant: "primary", label: swapProgressButtonTexts[swapState], onClick: () => handleClose === null || handleClose === void 0 ? void 0 : handleClose(swapState), className: "tw-min-h-button" }))] }));
61273
61277
  }
61274
61278
  const TrackTransactionView = forwardRef((props, ref) => {
61275
61279
  const { swapState, rawSteps, onOpen, onClose, onTxStart, onTxEnd, footerButton, } = props;
@@ -26,3 +26,4 @@ export declare const Error: Story;
26
26
  export declare const WithTooltips: Story;
27
27
  export declare const WithoutSourceConnectLabels: Story;
28
28
  export declare const WithoutDestConnectLabels: Story;
29
+ export declare const AddressOnly: Story;
package/dist/index.css CHANGED
@@ -1,4 +1,4 @@
1
1
  .rdp{--rdp-cell-size:40px;--rdp-caption-font-size:18px;--rdp-accent-color:#00f;--rdp-background-color:#e7edff;--rdp-accent-color-dark:#3003e1;--rdp-background-color-dark:#180270;--rdp-outline:2px solid var(--rdp-accent-color);--rdp-outline-selected:3px solid var(--rdp-accent-color);--rdp-selected-color:#fff;margin:1em}.rdp-vhidden{clip:rect(1px,1px,1px,1px)!important;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:transparent;border:0!important;box-sizing:border-box;height:1px!important;margin:0;overflow:hidden!important;padding:0!important;position:absolute!important;top:0;width:1px!important}.rdp-button_reset{appearance:none;-moz-appearance:none;-webkit-appearance:none;background:none;color:inherit;cursor:default;font:inherit;margin:0;padding:0;position:relative}.rdp-button_reset:focus-visible{outline:none}.rdp-button{border:2px solid transparent}.rdp-button[disabled]:not(.rdp-day_selected){opacity:.25}.rdp-button:not([disabled]){cursor:pointer}.rdp-button:focus-visible:not([disabled]){background-color:var(--rdp-background-color);border:var(--rdp-outline);color:inherit}.rdp-button:hover:not([disabled]):not(.rdp-day_selected){background-color:var(--rdp-background-color)}.rdp-months{display:flex}.rdp-month{margin:0 1em}.rdp-month:first-child{margin-left:0}.rdp-month:last-child{margin-right:0}.rdp-table{border-collapse:collapse;margin:0;max-width:calc(var(--rdp-cell-size)*7)}.rdp-with_weeknumber .rdp-table{border-collapse:collapse;max-width:calc(var(--rdp-cell-size)*8)}.rdp-caption{align-items:center;display:flex;justify-content:space-between;padding:0;text-align:left}.rdp-multiple_months .rdp-caption{display:block;position:relative;text-align:center}.rdp-caption_dropdowns,.rdp-caption_label{display:inline-flex;position:relative}.rdp-caption_label{align-items:center;border:2px solid transparent;color:currentColor;font-family:inherit;font-size:var(--rdp-caption-font-size);font-weight:700;margin:0;padding:0 .25em;white-space:nowrap;z-index:1}.rdp-nav{white-space:nowrap}.rdp-multiple_months .rdp-caption_start .rdp-nav{left:0;position:absolute;top:50%;transform:translateY(-50%)}.rdp-multiple_months .rdp-caption_end .rdp-nav{position:absolute;right:0;top:50%;transform:translateY(-50%)}.rdp-nav_button{align-items:center;border-radius:100%;display:inline-flex;height:var(--rdp-cell-size);justify-content:center;padding:.25em;width:var(--rdp-cell-size)}.rdp-dropdown_month,.rdp-dropdown_year{align-items:center;display:inline-flex;position:relative}.rdp-dropdown{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;bottom:0;cursor:inherit;font-family:inherit;font-size:inherit;left:0;line-height:inherit;margin:0;opacity:0;padding:0;position:absolute;top:0;width:100%;z-index:2}.rdp-dropdown[disabled]{color:unset;opacity:unset}.rdp-dropdown:focus-visible:not([disabled])+.rdp-caption_label{background-color:var(--rdp-background-color);border:var(--rdp-outline);border-radius:6px}.rdp-dropdown_icon{margin:0 0 0 5px}.rdp-head{border:0}.rdp-head_row,.rdp-row{height:100%}.rdp-head_cell{font-size:.75em;font-weight:700;height:100%;height:var(--rdp-cell-size);padding:0;text-align:center;text-transform:uppercase;vertical-align:middle}.rdp-tbody{border:0}.rdp-tfoot{margin:.5em}.rdp-cell{height:100%;height:var(--rdp-cell-size);padding:0;text-align:center;width:var(--rdp-cell-size)}.rdp-weeknumber{font-size:.75em}.rdp-day,.rdp-weeknumber{align-items:center;border:2px solid transparent;border-radius:100%;box-sizing:border-box;display:flex;height:var(--rdp-cell-size);justify-content:center;margin:0;max-width:var(--rdp-cell-size);overflow:hidden;width:var(--rdp-cell-size)}.rdp-day_today:not(.rdp-day_outside){font-weight:700}.rdp-day_selected,.rdp-day_selected:focus-visible,.rdp-day_selected:hover{background-color:var(--rdp-accent-color);color:var(--rdp-selected-color);opacity:1}.rdp-day_outside{opacity:.5}.rdp-day_selected:focus-visible{outline:var(--rdp-outline);outline-offset:2px;z-index:1}.rdp:not([dir=rtl]) .rdp-day_range_start:not(.rdp-day_range_end){border-bottom-right-radius:0;border-top-right-radius:0}.rdp:not([dir=rtl]) .rdp-day_range_end:not(.rdp-day_range_start),.rdp[dir=rtl] .rdp-day_range_start:not(.rdp-day_range_end){border-bottom-left-radius:0;border-top-left-radius:0}.rdp[dir=rtl] .rdp-day_range_end:not(.rdp-day_range_start){border-bottom-right-radius:0;border-top-right-radius:0}.rdp-day_range_end.rdp-day_range_start{border-radius:100%}.rdp-day_range_middle{border-radius:0}
2
2
  /*
3
3
  ! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
4
- */*,:after,:before{border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.tw-sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.tw-pointer-events-none{pointer-events:none}.tw-visible{visibility:visible}.tw-invisible{visibility:hidden}.tw-fixed{position:fixed}.tw-absolute{position:absolute}.tw-relative{position:relative}.tw-inset-0{inset:0}.tw-inset-squid-xxs{inset:.3125rem}.tw-inset-y-0{bottom:0;top:0}.-tw-bottom-20{bottom:-5rem}.-tw-left-\[20px\]{left:-20px}.-tw-left-\[2px\]{left:-2px}.-tw-left-\[4px\]{left:-4px}.-tw-left-\[5px\]{left:-5px}.-tw-right-1\/3{right:-33.333333%}.-tw-right-squid-xxs{right:-.3125rem}.-tw-top-8{top:-2rem}.-tw-top-\[2px\]{top:-2px}.-tw-top-\[4px\]{top:-4px}.-tw-top-\[55px\]{top:-55px}.-tw-top-squid-xxs{top:-.3125rem}.tw-bottom-0{bottom:0}.tw-bottom-0\.5{bottom:.125rem}.tw-bottom-1\/2{bottom:50%}.tw-bottom-2{bottom:.5rem}.tw-bottom-7{bottom:1.75rem}.tw-bottom-full{bottom:100%}.tw-bottom-squid-xxs{bottom:.3125rem}.tw-left-0{left:0}.tw-left-1\/2{left:50%}.tw-left-5{left:1.25rem}.tw-left-\[-14px\]{left:-14px}.tw-left-\[15px\]{left:15px}.tw-left-\[17px\]{left:17px}.tw-left-\[1px\]{left:1px}.tw-left-\[26px\]{left:26px}.tw-left-\[2px\]{left:2px}.tw-left-\[54px\]{left:54px}.tw-left-\[calc\(50\%-2px\)\]{left:calc(50% - 2px)}.tw-left-squid-m{left:1.25rem}.tw-left-squid-s{left:.9375rem}.tw-left-squid-xs{left:.625rem}.tw-right-0{right:0}.tw-right-1{right:.25rem}.tw-right-1\.5{right:.375rem}.tw-right-4{right:1rem}.tw-right-\[40px\]{right:40px}.tw-right-\[calc\(100\%-10px\)\]{right:calc(100% - 10px)}.tw-right-full{right:100%}.tw-right-squid-xs{right:.625rem}.tw-right-squid-xxs{right:.3125rem}.tw-top-0{top:0}.tw-top-7{top:1.75rem}.tw-top-\[11px\]{top:11px}.tw-top-\[2px\]{top:2px}.tw-top-full{top:100%}.tw-top-squid-xs{top:.625rem}.tw-top-squid-xxs{top:.3125rem}.-tw-z-40{z-index:-40}.tw-z-0{z-index:0}.tw-z-10{z-index:10}.tw-z-20{z-index:20}.tw-z-40{z-index:40}.tw-z-50{z-index:50}.tw-z-\[5\]{z-index:5}.tw-m-0{margin:0}.tw-mx-auto{margin-left:auto;margin-right:auto}.tw-mx-squid-xxs{margin-left:.3125rem;margin-right:.3125rem}.tw-my-4{margin-bottom:1rem;margin-top:1rem}.-tw-mb-1{margin-bottom:-.25rem}.-tw-ml-1{margin-left:-.25rem}.-tw-ml-squid-xs{margin-left:-.625rem}.tw-ml-2{margin-left:.5rem}.tw-mr-1{margin-right:.25rem}.tw-mr-1\.5{margin-right:.375rem}.tw-mr-squid-xs{margin-right:.625rem}.tw-mt-0{margin-top:0}.tw-mt-0\.5{margin-top:.125rem}.tw-mt-1{margin-top:.25rem}.tw-block{display:block}.tw-inline-block{display:inline-block}.tw-flex{display:flex}.tw-inline-flex{display:inline-flex}.tw-grid{display:grid}.tw-hidden{display:none}.tw-aspect-square{aspect-ratio:1/1}.\!tw-h-\[30px\]{height:30px!important}.tw-h-1{height:.25rem}.tw-h-1\.5{height:.375rem}.tw-h-10{height:2.5rem}.tw-h-2{height:.5rem}.tw-h-2\.5{height:.625rem}.tw-h-4{height:1rem}.tw-h-5{height:1.25rem}.tw-h-52{height:13rem}.tw-h-6{height:1.5rem}.tw-h-8{height:2rem}.tw-h-\[0\.8em\]{height:.8em}.tw-h-\[1\.2em\]{height:1.2em}.tw-h-\[1000px\]{height:1000px}.tw-h-\[10px\]{height:10px}.tw-h-\[110px\]{height:110px}.tw-h-\[14px\]{height:14px}.tw-h-\[160px\]{height:160px}.tw-h-\[16px\]{height:16px}.tw-h-\[17px\]{height:17px}.tw-h-\[195px\]{height:195px}.tw-h-\[21px\]{height:21px}.tw-h-\[240px\]{height:240px}.tw-h-\[26px\]{height:26px}.tw-h-\[30px\]{height:30px}.tw-h-\[40px\]{height:40px}.tw-h-\[42px\]{height:42px}.tw-h-\[46px\]{height:46px}.tw-h-\[50px\]{height:50px}.tw-h-\[52px\]{height:52px}.tw-h-\[535px\]{height:535px}.tw-h-\[536px\]{height:536px}.tw-h-\[540px\]{height:540px}.tw-h-\[55px\]{height:55px}.tw-h-\[60px\]{height:60px}.tw-h-\[65px\]{height:65px}.tw-h-\[69px\]{height:69px}.tw-h-\[80px\]{height:80px}.tw-h-\[94px\]{height:94px}.tw-h-\[95px\]{height:95px}.tw-h-button{height:3.75rem}.tw-h-card-small{height:580px}.tw-h-full{height:100%}.tw-h-list-item-large{height:3.125rem}.tw-h-list-item-small{height:2.5rem}.tw-h-screen{height:100vh}.tw-h-squid-l{height:1.875rem}.tw-h-squid-m{height:1.25rem}.tw-h-squid-xl{height:2.5rem}.tw-h-squid-xs{height:.625rem}.tw-h-squid-xxl{height:3.75rem}.\!tw-max-h-\[470px\]{max-height:470px!important}.tw-max-h-\[120px\]{max-height:120px}.tw-max-h-\[445px\]{max-height:445px}.tw-max-h-\[535px\]{max-height:535px}.tw-max-h-\[540px\]{max-height:540px}.tw-max-h-\[55px\]{max-height:55px}.tw-max-h-\[60px\]{max-height:60px}.tw-max-h-\[80px\]{max-height:80px}.tw-max-h-\[80vh\]{max-height:80vh}.tw-max-h-list-item-small{max-height:2.5rem}.tw-max-h-modal-compact{max-height:631px}.tw-max-h-squid-m{max-height:1.25rem}.tw-max-h-squid-xl{max-height:2.5rem}.tw-min-h-\[195px\]{min-height:195px}.tw-min-h-\[30px\]{min-height:30px}.tw-min-h-\[55px\]{min-height:55px}.tw-min-h-button{min-height:3.75rem}.tw-min-h-full{min-height:100%}.tw-min-h-squid-l{min-height:1.875rem}.tw-min-h-squid-m{min-height:1.25rem}.tw-min-h-squid-xl{min-height:2.5rem}.\!tw-w-fit{width:-moz-fit-content!important;width:fit-content!important}.tw-w-10{width:2.5rem}.tw-w-12{width:3rem}.tw-w-36{width:9rem}.tw-w-4{width:1rem}.tw-w-5{width:1.25rem}.tw-w-52{width:13rem}.tw-w-6{width:1.5rem}.tw-w-8{width:2rem}.tw-w-96{width:24rem}.tw-w-\[1\.2em\]{width:1.2em}.tw-w-\[1\.5px\]{width:1.5px}.tw-w-\[1000px\]{width:1000px}.tw-w-\[100px\]{width:100px}.tw-w-\[106\.5px\]{width:106.5px}.tw-w-\[110px\]{width:110px}.tw-w-\[1260px\]{width:1260px}.tw-w-\[135px\]{width:135px}.tw-w-\[140px\]{width:140px}.tw-w-\[150px\]{width:150px}.tw-w-\[157px\]{width:157px}.tw-w-\[160px\]{width:160px}.tw-w-\[16px\]{width:16px}.tw-w-\[180px\]{width:180px}.tw-w-\[22px\]{width:22px}.tw-w-\[26px\]{width:26px}.tw-w-\[299px\]{width:299px}.tw-w-\[2px\]{width:2px}.tw-w-\[30px\]{width:30px}.tw-w-\[36px\]{width:36px}.tw-w-\[3px\]{width:3px}.tw-w-\[40px\]{width:40px}.tw-w-\[42px\]{width:42px}.tw-w-\[44px\]{width:44px}.tw-w-\[470px\]{width:470px}.tw-w-\[500px\]{width:500px}.tw-w-\[50px\]{width:50px}.tw-w-\[52px\]{width:52px}.tw-w-\[54px\]{width:54px}.tw-w-\[56\%\]{width:56%}.tw-w-\[600px\]{width:600px}.tw-w-\[60px\]{width:60px}.tw-w-\[67\%\]{width:67%}.tw-w-\[69px\]{width:69px}.tw-w-\[70px\]{width:70px}.tw-w-\[720px\]{width:720px}.tw-w-\[72px\]{width:72px}.tw-w-\[80px\]{width:80px}.tw-w-\[90px\]{width:90px}.tw-w-\[92px\]{width:92px}.tw-w-\[94px\]{width:94px}.tw-w-fit{width:-moz-fit-content;width:fit-content}.tw-w-full{width:100%}.tw-w-list-item-compact{width:22.0625rem}.tw-w-list-item-large{width:23.75rem}.tw-w-max{width:-moz-max-content;width:max-content}.tw-w-modal-compact{width:373px}.tw-w-squid-l{width:1.875rem}.tw-w-squid-m{width:1.25rem}.tw-w-squid-s{width:.9375rem}.tw-w-squid-xl{width:2.5rem}.tw-w-squid-xxl{width:3.75rem}.\!tw-min-w-0{min-width:0!important}.tw-min-w-\[30px\]{min-width:30px}.tw-min-w-\[60px\]{min-width:60px}.tw-min-w-list-item-small{min-width:21.25rem}.tw-min-w-modal-compact{min-width:373px}.tw-min-w-squid-xl{min-width:2.5rem}.tw-min-w-squid-xxl{min-width:3.75rem}.tw-max-w-96{max-width:24rem}.tw-max-w-\[100vw\]{max-width:100vw}.tw-max-w-\[180px\]{max-width:180px}.tw-max-w-\[200px\]{max-width:200px}.tw-max-w-\[299px\]{max-width:299px}.tw-max-w-\[320px\]{max-width:320px}.tw-max-w-\[70px\]{max-width:70px}.tw-max-w-\[72px\]{max-width:72px}.tw-max-w-\[80px\]{max-width:80px}.tw-max-w-full{max-width:100%}.tw-max-w-modal-compact{max-width:373px}.tw-max-w-none{max-width:none}.tw-max-w-xl{max-width:36rem}.tw-flex-1{flex:1 1 0%}.tw-flex-shrink-0{flex-shrink:0}.tw-flex-grow{flex-grow:1}.tw-grow-0{flex-grow:0}.tw-origin-center{transform-origin:center}.-tw-translate-x-1\/2{--tw-translate-x:-50%}.-tw-translate-x-1\/2,.-tw-translate-x-1\/3{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-tw-translate-x-1\/3{--tw-translate-x:-33.333333%}.-tw-translate-y-1\/2{--tw-translate-y:-50%}.-tw-translate-y-1\/2,.tw-translate-x-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw-translate-x-1\/2{--tw-translate-x:50%}.tw-translate-y-1\/2{--tw-translate-y:50%}.-tw-rotate-90,.tw-translate-y-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-tw-rotate-90{--tw-rotate:-90deg}.tw-rotate-180{--tw-rotate:180deg}.tw-rotate-180,.tw-rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw-rotate-90{--tw-rotate:90deg}@keyframes tw-blur-in{0%{-webkit-backdrop-filter:blur(0);backdrop-filter:blur(0)}to{-webkit-backdrop-filter:blur(20px) saturate(150%);backdrop-filter:blur(20px) saturate(150%);background-color:var(--squid-theme-material-dark-average)}}.tw-animate-blur-in{animation:tw-blur-in var(--squid-animation-blur-in-duration,0s) cubic-bezier(.165,.84,.44,1) both}@keyframes tw-blur-out{0%{-webkit-backdrop-filter:blur(20px) saturate(150%);backdrop-filter:blur(20px) saturate(150%);background-color:var(--squid-theme-material-dark-average)}to{-webkit-backdrop-filter:blur(0);backdrop-filter:blur(0)}}.tw-animate-blur-out{animation:tw-blur-out var(--squid-animation-blur-out-duration,0s) cubic-bezier(.165,.84,.44,1) both}@keyframes tw-collapse-route{0%{height:100%}to{height:60px}}.tw-animate-collapse-route{animation:tw-collapse-route var(--squid-animation-collapse-to-bottom-duration,0s) linear both}@keyframes tw-expand-route{0%{height:60px}to{height:100%}}.tw-animate-expand-route{animation:tw-expand-route var(--squid-animation-expand-to-top-duration,0s) linear both}@keyframes tw-fade-in{0%{opacity:0}to{opacity:1}}.tw-animate-fade-in{animation:tw-fade-in var(--squid-animation-fade-in-duration,0s) ease-out both}@keyframes tw-fade-out{0%{opacity:1}to{opacity:0}}.tw-animate-fade-out{animation:tw-fade-out var(--squid-animation-fade-out-duration,0s) ease-out both}@keyframes tw-loading-gradient{0%{opacity:0;transform:translateX(-70%)}50%{opacity:1}to{opacity:0;transform:translateX(70%)}}.tw-animate-loading-gradient{animation:tw-loading-gradient 1s ease-in-out infinite both}@keyframes tw-move-loading-cover-to-right{0%{transform:translateX(-64%)}to{transform:translateX(0)}}.tw-animate-move-loading-cover-to-right{animation:tw-move-loading-cover-to-right 1.4s linear infinite}@keyframes tw-scale-and-fade-down{0%{opacity:1;transform:scale(1)}to{opacity:.5;transform:scale(.9)}}.tw-animate-scale-and-fade-down{animation:tw-scale-and-fade-down var(--squid-animation-scale-and-fade-down-duration,0s) linear both}@keyframes tw-scale-and-fade-up{0%{opacity:.5;transform:scale(.9)}to{opacity:1;transform:scale(1)}}.tw-animate-scale-and-fade-up{animation:tw-scale-and-fade-up var(--squid-animation-scale-and-fade-up-duration,0s) linear both}@keyframes tw-slide-to-bottom{0%{transform:translateZ(0)}to{transform:translate3d(0,650px,0)}}.tw-animate-slide-to-bottom{animation:tw-slide-to-bottom var(--squid-animation-slide-to-bottom-duration,0s) cubic-bezier(.165,.84,.44,1) both}@keyframes tw-slide-to-top{0%{transform:translate3d(0,650px,0)}to{transform:translateZ(0)}}.tw-animate-slide-to-top{animation:tw-slide-to-top var(--squid-animation-slide-to-top-duration,0s) cubic-bezier(.165,.84,.44,1) both}.tw-cursor-help{cursor:help}.tw-cursor-not-allowed{cursor:not-allowed}.tw-cursor-pointer{cursor:pointer}.tw-select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.tw-grid-cols-\[100px\,1fr\,100px\]{grid-template-columns:100px 1fr 100px}.tw-grid-cols-\[180px_299px\]{grid-template-columns:180px 299px}.tw-grid-cols-\[40px\,1fr\,60px\]{grid-template-columns:40px 1fr 60px}.tw-grid-cols-\[70px_1fr\]{grid-template-columns:70px 1fr}.tw-flex-row-reverse{flex-direction:row-reverse}.tw-flex-col{flex-direction:column}.tw-flex-col-reverse{flex-direction:column-reverse}.tw-flex-wrap{flex-wrap:wrap}.tw-items-start{align-items:flex-start}.tw-items-end{align-items:flex-end}.tw-items-center{align-items:center}.tw-items-stretch{align-items:stretch}.tw-justify-start{justify-content:flex-start}.tw-justify-end{justify-content:flex-end}.tw-justify-center{justify-content:center}.tw-justify-between{justify-content:space-between}.tw-gap-0{gap:0}.tw-gap-0\.5{gap:.125rem}.tw-gap-1{gap:.25rem}.tw-gap-1\.5{gap:.375rem}.tw-gap-2{gap:.5rem}.tw-gap-\[2px\]{gap:2px}.tw-gap-squid-m{gap:1.25rem}.tw-gap-squid-s{gap:.9375rem}.tw-gap-squid-xs{gap:.625rem}.tw-gap-squid-xxs{gap:.3125rem}.tw-gap-x-squid-xs{-moz-column-gap:.625rem;column-gap:.625rem}.tw-divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.tw-divide-material-light-thin>:not([hidden])~:not([hidden]){border-color:var(--squid-theme-material-light-thin)}.tw-self-end{align-self:flex-end}.tw-self-stretch{align-self:stretch}.tw-overflow-auto{overflow:auto}.tw-overflow-hidden{overflow:hidden}.tw-overflow-y-auto{overflow-y:auto}.tw-overflow-x-hidden{overflow-x:hidden}.tw-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tw-text-nowrap{text-wrap:nowrap}.tw-rounded-2xl{border-radius:1rem}.tw-rounded-\[20px\]{border-radius:20px}.tw-rounded-\[25px\]{border-radius:25px}.tw-rounded-full{border-radius:9999px}.tw-rounded-md{border-radius:.375rem}.tw-rounded-sm{border-radius:.125rem}.tw-rounded-squid-l{border-radius:1.875rem}.tw-rounded-squid-m{border-radius:1.25rem}.tw-rounded-squid-s{border-radius:.9375rem}.tw-rounded-squid-xs{border-radius:.625rem}.tw-rounded-squid-xxl{border-radius:3.75rem}.tw-rounded-squid-xxs{border-radius:.3125rem}.tw-rounded-xl{border-radius:.75rem}.tw-rounded-bl-squid-l{border-bottom-left-radius:1.875rem}.tw-rounded-br-full{border-bottom-right-radius:9999px}.tw-rounded-br-squid-l{border-bottom-right-radius:1.875rem}.tw-rounded-tl-\[25px\]{border-top-left-radius:25px}.tw-rounded-tl-squid-l{border-top-left-radius:1.875rem}.tw-rounded-tl-xl{border-top-left-radius:.75rem}.tw-rounded-tr-\[25px\]{border-top-right-radius:25px}.tw-rounded-tr-full{border-top-right-radius:9999px}.tw-rounded-tr-squid-l{border-top-right-radius:1.875rem}.tw-rounded-tr-xl{border-top-right-radius:.75rem}.tw-border{border-width:1px}.tw-border-2{border-width:2px}.tw-border-\[1px\]{border-width:1px}.tw-border-y-\[4px\]{border-bottom-width:4px;border-top-width:4px}.tw-border-b{border-bottom-width:1px}.tw-border-r{border-right-width:1px}.tw-border-t{border-top-width:1px}.tw-border-solid{border-style:solid}.\!tw-border-transparent{border-color:transparent!important}.tw-border-grey-500{border-color:var(--squid-theme-grey-500)}.tw-border-grey-800{border-color:var(--squid-theme-grey-800)}.tw-border-grey-900{border-color:var(--squid-theme-grey-900)}.tw-border-material-light-thin{border-color:var(--squid-theme-material-light-thin)}.tw-border-slate-800{--tw-border-opacity:1;border-color:rgb(30 41 59/var(--tw-border-opacity))}.tw-border-transparent{border-color:transparent}.tw-border-b-material-dark-thin{border-bottom-color:var(--squid-theme-material-dark-thin)}.tw-border-t-material-light-thin{border-top-color:var(--squid-theme-material-light-thin)}.\!tw-bg-grey-100{background-color:var(--squid-theme-grey-100)!important}.\!tw-bg-grey-300{background-color:var(--squid-theme-grey-300)!important}.\!tw-bg-grey-500{background-color:var(--squid-theme-grey-500)!important}.\!tw-bg-grey-600{background-color:var(--squid-theme-grey-600)!important}.\!tw-bg-grey-800{background-color:var(--squid-theme-grey-800)!important}.\!tw-bg-material-light-thin{background-color:var(--squid-theme-material-light-thin)!important}.\!tw-bg-status-negative{background-color:var(--squid-theme-status-negative)!important}.\!tw-bg-status-partial{background-color:var(--squid-theme-status-partial)!important}.\!tw-bg-status-positive{background-color:var(--squid-theme-status-positive)!important}.\!tw-bg-transparent{background-color:transparent!important}.tw-bg-\[\#E4FE53\]{--tw-bg-opacity:1;background-color:rgb(228 254 83/var(--tw-bg-opacity))}.tw-bg-\[currentColor\]{background-color:currentColor}.tw-bg-grey-100{background-color:var(--squid-theme-grey-100)}.tw-bg-grey-300{background-color:var(--squid-theme-grey-300)}.tw-bg-grey-500{background-color:var(--squid-theme-grey-500)}.tw-bg-grey-700{background-color:var(--squid-theme-grey-700)}.tw-bg-grey-800{background-color:var(--squid-theme-grey-800)}.tw-bg-grey-900{background-color:var(--squid-theme-grey-900)}.tw-bg-inherit{background-color:inherit}.tw-bg-material-dark-thick{background-color:var(--squid-theme-material-dark-thick)}.tw-bg-material-dark-thin{background-color:var(--squid-theme-material-dark-thin)}.tw-bg-material-light-thin{background-color:var(--squid-theme-material-light-thin)}.tw-bg-royal-400{background-color:var(--squid-theme-royal-400)}.tw-bg-royal-500{background-color:var(--squid-theme-royal-500)}.tw-bg-slate-900{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.tw-bg-slate-950{--tw-bg-opacity:1;background-color:rgb(2 6 23/var(--tw-bg-opacity))}.tw-bg-status-negative{background-color:var(--squid-theme-status-negative)}.tw-bg-status-partial{background-color:var(--squid-theme-status-partial)}.tw-bg-status-positive{background-color:var(--squid-theme-status-positive)}.tw-bg-transparent{background-color:transparent}.tw-bg-dark-cover{background-image:linear-gradient(90deg,var(--squid-theme-material-dark-thick) 45.4%,transparent 50.85%,var(--squid-theme-material-dark-thick) 55.61%)}.tw-bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.tw-bg-gradient-to-l{background-image:linear-gradient(to left,var(--tw-gradient-stops))}.tw-bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.tw-bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.tw-bg-royal-dark{background-image:linear-gradient(180deg,#bf91f2,#a577d8)}.tw-bg-royal-light{background-image:linear-gradient(180deg,#a577d8,#bf91f2)}.tw-from-grey-800{--tw-gradient-from:var(--squid-theme-grey-800) var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.tw-from-grey-900{--tw-gradient-from:var(--squid-theme-grey-900) var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.tw-to-transparent{--tw-gradient-to:transparent var(--tw-gradient-to-position)}.tw-object-cover{-o-object-fit:cover;object-fit:cover}.\!tw-p-0{padding:0!important}.tw-p-0{padding:0}.tw-p-0\.5{padding:.125rem}.tw-p-1{padding:.25rem}.tw-p-2{padding:.5rem}.tw-p-4{padding:1rem}.tw-p-8{padding:2rem}.tw-p-\[3px\]{padding:3px}.tw-p-squid-l{padding:1.875rem}.tw-p-squid-xs{padding:.625rem}.tw-p-squid-xxl{padding:3.75rem}.tw-p-squid-xxs{padding:.3125rem}.\!tw-px-0{padding-left:0!important;padding-right:0!important}.\!tw-px-4{padding-left:1rem!important;padding-right:1rem!important}.tw-px-0{padding-left:0;padding-right:0}.tw-px-4{padding-left:1rem;padding-right:1rem}.tw-px-\[3px\]{padding-left:3px;padding-right:3px}.tw-px-squid-l{padding-left:1.875rem;padding-right:1.875rem}.tw-px-squid-m{padding-left:1.25rem;padding-right:1.25rem}.tw-px-squid-s{padding-left:.9375rem;padding-right:.9375rem}.tw-px-squid-xs{padding-left:.625rem;padding-right:.625rem}.tw-px-squid-xxl{padding-left:3.75rem;padding-right:3.75rem}.tw-px-squid-xxs{padding-left:.3125rem;padding-right:.3125rem}.tw-py-0{padding-bottom:0;padding-top:0}.tw-py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.tw-py-2{padding-bottom:.5rem;padding-top:.5rem}.tw-py-\[1px\]{padding-bottom:1px;padding-top:1px}.tw-py-squid-l{padding-bottom:1.875rem;padding-top:1.875rem}.tw-py-squid-m{padding-bottom:1.25rem;padding-top:1.25rem}.tw-py-squid-s{padding-bottom:.9375rem;padding-top:.9375rem}.tw-py-squid-xl{padding-bottom:2.5rem;padding-top:2.5rem}.tw-py-squid-xs{padding-bottom:.625rem;padding-top:.625rem}.tw-py-squid-xxs{padding-bottom:.3125rem;padding-top:.3125rem}.tw-pb-\[15px\]{padding-bottom:15px}.tw-pb-squid-l{padding-bottom:1.875rem}.tw-pb-squid-m{padding-bottom:1.25rem}.tw-pb-squid-s{padding-bottom:.9375rem}.tw-pb-squid-xs{padding-bottom:.625rem}.tw-pb-squid-xxs{padding-bottom:.3125rem}.tw-pl-1{padding-left:.25rem}.tw-pl-\[33px\]{padding-left:33px}.tw-pl-\[40px\]{padding-left:40px}.tw-pl-\[75px\]{padding-left:75px}.tw-pl-\[7px\]{padding-left:7px}.tw-pl-squid-m{padding-left:1.25rem}.tw-pl-squid-xxs{padding-left:.3125rem}.tw-pr-1{padding-right:.25rem}.tw-pr-2{padding-right:.5rem}.tw-pr-2\.5{padding-right:.625rem}.tw-pr-4{padding-right:1rem}.tw-pr-\[40px\]{padding-right:40px}.tw-pr-\[70px\]{padding-right:70px}.tw-pr-squid-l{padding-right:1.875rem}.tw-pr-squid-m{padding-right:1.25rem}.tw-pr-squid-xl{padding-right:2.5rem}.tw-pr-squid-xs{padding-right:.625rem}.tw-pr-squid-xxs{padding-right:.3125rem}.tw-pt-0{padding-top:0}.tw-pt-\[5px\]{padding-top:5px}.tw-pt-squid-m{padding-top:1.25rem}.tw-pt-squid-xs{padding-top:.625rem}.tw-pt-squid-xxs{padding-top:.3125rem}.tw-text-left{text-align:left}.tw-text-center{text-align:center}.tw-text-right{text-align:right}.tw-font-geist{font-family:Geist,sans-serif}.tw-text-body-large{font-size:1.75625rem}.tw-text-body-medium{font-size:1.40625rem}.tw-text-body-small{font-size:1.14375rem}.tw-text-caption{font-size:.875rem}.tw-text-heading-large{font-size:4.40625rem}.tw-text-heading-medium{font-size:3.08125rem}.tw-text-heading-small{font-size:2.1875rem}.tw-text-lg{font-size:1.125rem;line-height:1.75rem}.tw-text-sm{font-size:.875rem;line-height:1.25rem}.tw-text-xs{font-size:.75rem;line-height:1rem}.\!tw-font-medium{font-weight:500!important}.tw-font-heading-bold{font-weight:600}.tw-font-heading-regular{font-weight:400}.tw-font-semibold,.tw-font-typography-bold{font-weight:600}.tw-font-typography-regular{font-weight:400}.\!tw-leading-\[10px\]{line-height:10px!important}.\!tw-leading-\[13px\]{line-height:13px!important}.\!tw-leading-\[16px\]{line-height:16px!important}.\!tw-leading-\[17px\]{line-height:17px!important}.\!tw-leading-\[18px\]{line-height:18px!important}.\!tw-leading-\[1\]{line-height:1!important}.\!tw-leading-\[20px\]{line-height:20px!important}.\!tw-leading-\[9px\]{line-height:9px!important}.tw-leading-5{line-height:1.25rem}.tw-leading-\[0\]{line-height:0}.tw-leading-\[10px\]{line-height:10px}.tw-leading-\[13px\]{line-height:13px}.tw-leading-\[1\]{line-height:1}.tw-leading-\[43px\]{line-height:43px}.tw-leading-body-large{line-height:39.34px}.tw-leading-body-medium{line-height:31.5px}.tw-leading-body-small{line-height:25.62px}.tw-leading-caption{line-height:19.6px}.tw-leading-heading-large{line-height:66.97px}.tw-leading-heading-medium{line-height:49.3px}.tw-leading-heading-small{line-height:38.5px}.tw-tracking-body-large{letter-spacing:-.843px}.tw-tracking-body-medium{letter-spacing:-.675px}.tw-tracking-body-small{letter-spacing:-.366px}.tw-tracking-heading-large{letter-spacing:-3.525px}.tw-tracking-heading-medium{letter-spacing:-2.465px}.tw-tracking-heading-small{letter-spacing:-1.05px}.\!tw-text-\[transparent\]{color:transparent!important}.\!tw-text-grey-300{color:var(--squid-theme-grey-300)!important}.\!tw-text-grey-500{color:var(--squid-theme-grey-500)!important}.\!tw-text-grey-600{color:var(--squid-theme-grey-600)!important}.\!tw-text-grey-800{color:var(--squid-theme-grey-800)!important}.tw-text-\[\#FBFBFD\]{--tw-text-opacity:1;color:rgb(251 251 253/var(--tw-text-opacity))}.tw-text-grey-100{color:var(--squid-theme-grey-100)}.tw-text-grey-200{color:var(--squid-theme-grey-200)}.tw-text-grey-300{color:var(--squid-theme-grey-300)}.tw-text-grey-400{color:var(--squid-theme-grey-400)}.tw-text-grey-500{color:var(--squid-theme-grey-500)}.tw-text-grey-600{color:var(--squid-theme-grey-600)}.tw-text-grey-700{color:var(--squid-theme-grey-700)}.tw-text-grey-800{color:var(--squid-theme-grey-800)}.tw-text-grey-900{color:var(--squid-theme-grey-900)}.tw-text-material-light-average{color:var(--squid-theme-material-light-average)}.tw-text-material-light-thick{color:var(--squid-theme-material-light-thick)}.tw-text-material-light-thin{color:var(--squid-theme-material-light-thin)}.tw-text-royal-400{color:var(--squid-theme-royal-400)}.tw-text-royal-500{color:var(--squid-theme-royal-500)}.tw-text-status-negative{color:var(--squid-theme-status-negative)}.tw-text-status-partial{color:var(--squid-theme-status-partial)}.tw-text-status-positive{color:var(--squid-theme-status-positive)}.tw-text-transparent{color:transparent}.tw-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.\!tw-opacity-100{opacity:1!important}.tw-opacity-0{opacity:0}.tw-opacity-100{opacity:1}.tw-opacity-33{opacity:.33}.tw-opacity-50{opacity:.5}.tw-opacity-66{opacity:.66}.tw-shadow-elevation-light-1{--tw-shadow:0px 1px 2px 0px #0000001a;--tw-shadow-colored:0px 1px 2px 0px var(--tw-shadow-color)}.tw-shadow-elevation-light-1,.tw-shadow-elevation-light-2{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-shadow-elevation-light-2{--tw-shadow:0px 2px 5px 1px rgba(0,0,0,.1),0px 5px 20px -1px rgba(0,0,0,.1);--tw-shadow-colored:0px 2px 5px 1px var(--tw-shadow-color),0px 5px 20px -1px var(--tw-shadow-color)}.tw-shadow-elevation-light-3{--tw-shadow:0px 2px 4px 0px rgba(0,0,0,.1),0px 5px 50px -1px rgba(0,0,0,.2);--tw-shadow-colored:0px 2px 4px 0px var(--tw-shadow-color),0px 5px 50px -1px var(--tw-shadow-color)}.tw-shadow-elevation-light-3,.tw-shadow-inset-royal{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-shadow-inset-royal{--tw-shadow:0px 0px 50px 0px #876fe2 inset;--tw-shadow-colored:inset 0px 0px 50px 0px var(--tw-shadow-color)}.tw-shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-outline{outline-style:solid}.tw-outline-1{outline-width:1px}.tw-outline-2{outline-width:2px}.-tw-outline-offset-2{outline-offset:-2px}.-tw-outline-offset-\[1px\]{outline-offset:-1px}.\!tw-outline-status-negative{outline-color:var(--squid-theme-status-negative)!important}.tw-outline-material-light-thin{outline-color:var(--squid-theme-material-light-thin)}.tw-outline-royal-500{outline-color:var(--squid-theme-royal-500)}.tw-backdrop-blur-2xl{--tw-backdrop-blur:blur(40px)}.tw-backdrop-blur-2xl,.tw-backdrop-blur-lg{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.tw-backdrop-blur-lg{--tw-backdrop-blur:blur(16px)}.tw-backdrop-blur\/10{--tw-backdrop-blur:blur(10px)}.tw-backdrop-blur\/10,.tw-backdrop-blur\/20{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.tw-backdrop-blur\/20{--tw-backdrop-blur:blur(20px)}.tw-backdrop-saturate-150{--tw-backdrop-saturate:saturate(1.5);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.tw-transition-\[border-width\]{transition-duration:.15s;transition-property:border-width;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-\[width\,height\]{transition-duration:.15s;transition-property:width,height;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-delay-300{transition-delay:.3s}.tw-duration-1000{transition-duration:1s}.tw-duration-150{transition-duration:.15s}.tw-duration-200{transition-duration:.2s}.tw-duration-300{transition-duration:.3s}.tw-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}@font-face{font-family:Geist;src:local("Geist"),url(fonts/Geist-Variable.woff2) format("woff2")}*,:after,:before{box-sizing:border-box}:disabled{cursor:not-allowed}.tw-assets-button-mask{-webkit-mask-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMjBBMTkuOTM4IDE5LjkzOCAwIDAgMSA1Ljg1OCA1Ljg1OCAxOS45MzcgMTkuOTM3IDAgMCAxIDIwIDBhMTkuOTM3IDE5LjkzNyAwIDAgMSAxNC4xNDIgNS44NThjLjUyOC41MjcgMS4wNDYgMS4wNiAxLjU2IDEuNTg5QzM4Ljk4OCAxMC44MyA0Mi4wNjcgMTQgNDYgMTRjMy45MzIgMCA3LjAxMS0zLjE3IDEwLjI5OS02LjU1My41MTMtLjUyOCAxLjAzMS0xLjA2MiAxLjU1OS0xLjU5QTE5LjkzNyAxOS45MzcgMCAwIDEgNzIgMHY0MGExOS45MzcgMTkuOTM3IDAgMCAxLTE0LjE0Mi01Ljg1OGMtLjUyNS0uNTI1LTEuMDQtMS4wNTYtMS41NTEtMS41ODJDNTMuMDE3IDI5LjE3NCA0OS45MzQgMjYgNDYgMjZzLTcuMDE3IDMuMTc0LTEwLjMwNiA2LjU2Yy0uNTExLjUyNi0xLjAyNyAxLjA1Ny0xLjU1MiAxLjU4MkExOS45MzcgMTkuOTM3IDAgMCAxIDIwIDQwYTE5LjkzNyAxOS45MzcgMCAwIDEtMTQuMTQyLTUuODU4QTE5LjkzNyAxOS45MzcgMCAwIDEgMCAyMFoiIGZpbGw9IiNGQkZCRkQiIHN0eWxlPSJmaWxsOmNvbG9yKGRpc3BsYXktcDMgLjk4NCAuOTg2MSAuOTkwNCk7ZmlsbC1vcGFjaXR5OjEiLz48L3N2Zz4=");mask-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMjBBMTkuOTM4IDE5LjkzOCAwIDAgMSA1Ljg1OCA1Ljg1OCAxOS45MzcgMTkuOTM3IDAgMCAxIDIwIDBhMTkuOTM3IDE5LjkzNyAwIDAgMSAxNC4xNDIgNS44NThjLjUyOC41MjcgMS4wNDYgMS4wNiAxLjU2IDEuNTg5QzM4Ljk4OCAxMC44MyA0Mi4wNjcgMTQgNDYgMTRjMy45MzIgMCA3LjAxMS0zLjE3IDEwLjI5OS02LjU1My41MTMtLjUyOCAxLjAzMS0xLjA2MiAxLjU1OS0xLjU5QTE5LjkzNyAxOS45MzcgMCAwIDEgNzIgMHY0MGExOS45MzcgMTkuOTM3IDAgMCAxLTE0LjE0Mi01Ljg1OGMtLjUyNS0uNTI1LTEuMDQtMS4wNTYtMS41NTEtMS41ODJDNTMuMDE3IDI5LjE3NCA0OS45MzQgMjYgNDYgMjZzLTcuMDE3IDMuMTc0LTEwLjMwNiA2LjU2Yy0uNTExLjUyNi0xLjAyNyAxLjA1Ny0xLjU1MiAxLjU4MkExOS45MzcgMTkuOTM3IDAgMCAxIDIwIDQwYTE5LjkzNyAxOS45MzcgMCAwIDEtMTQuMTQyLTUuODU4QTE5LjkzNyAxOS45MzcgMCAwIDEgMCAyMFoiIGZpbGw9IiNGQkZCRkQiIHN0eWxlPSJmaWxsOmNvbG9yKGRpc3BsYXktcDMgLjk4NCAuOTg2MSAuOTkwNCk7ZmlsbC1vcGFjaXR5OjEiLz48L3N2Zz4=");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.tw-font-geist{font-feature-settings:"ss01" on,"ss03" on}li{list-style-type:none}.squid-property-row-bg:nth-child(odd)>div{background:linear-gradient(91deg,var(--squid-theme-grey-100-005) 0,transparent 100%)}:focus-visible{outline-color:var(--squid-theme-royal-500);outline-style:solid;outline-width:2px}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}:invalid{outline-color:var(--squid-theme-status-negative)}.tw-group[data-squid-theme-type=dark] #squid-lottie-animation #keystroke{stroke:var(--squid-theme-grey-100)!important}.tw-group[data-squid-theme-type=light] #squid-lottie-animation #keystroke{stroke:var(--squid-theme-grey-900)!important}#squid-lottie-animation #keyfill{fill:var(--squid-theme-royal-500)!important}.tw-timeline-gradient-mask{-webkit-mask-image:linear-gradient(180deg,transparent 0,#000 calc(50% - 15px),#000 calc(50% + 15px),transparent);mask-image:linear-gradient(180deg,transparent 0,#000 calc(50% - 15px),#000 calc(50% + 15px),transparent)}input.date-input-no-icon::-webkit-calendar-picker-indicator,input.date-input-no-icon::-webkit-inner-spin-button{-webkit-appearance:none;display:none}@keyframes loading-gradient-scroll{0%{transform:translateX(-56%)}to{transform:translateX(0)}}.loading-gradient{--mid-color:transparent;overflow:hidden;position:relative;[data-squid-theme-type=dark] &{--mid-color:var(--squid-theme-material-light-average)}&:after{animation:loading-gradient-scroll 1s ease-in-out infinite both;background-image:linear-gradient(to right,var(--squid-theme-material-light-thin) 43%,var(--mid-color) 52%,var(--squid-theme-material-light-thin) 56%);content:"";display:block;height:100%;left:0;position:absolute;top:0;width:230%}}.boost-badge{--boost-badge-badge-color:var(--squid-theme-royal-400);--boost-badge-text-color:var(--squid-theme-grey-900);--boost-badge-shadow-color:#e4fe53;[data-squid-theme-type=dark] &{--boost-badge-badge-color:#e4fe53;--boost-badge-shadow-color:var(--squid-theme-royal-400)}}:root{.rdp{--rdp-accent-color:var(--squid-theme-material-light-thin);--rdp-background-color:transparent;margin:0!important}.rdp-month,.rdp-table{width:100%}.rdp-table{border-spacing:2px}.rdp-nav{width:28.5%;button{width:50%}}.rdp-cell,.rdp-head_cell{flex-grow:1;font-size:.875rem;height:auto;width:auto}.rdp-head_cell{height:2.5rem}.rdp-day{width:100%}.rdp-caption_label{font-weight:400}.rdp-day,.rdp-day_range_end.rdp-day_range_start{border-radius:.3125rem!important}.day-picker-from .rdp-day_range_start,.day-picker-to .rdp-day_range_end{--tw-text-opacity:1;background-color:var(--squid-theme-royal-500);color:rgb(255 255 255/var(--tw-text-opacity))}.rdp-button:hover:not([disabled]):not(.rdp-nav_button){border:2px solid var(--squid-theme-royal-500)}}.sb-show-main.sb-main-centered #storybook-root{margin:0;padding:0;width:100%}@media (min-width:480px){.sb-show-main.sb-main-centered #storybook-root{margin:auto;width:auto}}.squid-animated-loader-dash{stroke-dasharray:20.942,62.827;stroke-dashoffset:0;animation:squid-animated-loader-dash-grow var(--squid-loader-rotate-duration) infinite alternate ease-in-out}@keyframes squid-animated-loader-dash-grow{0%{stroke-dasharray:62.827;stroke-dashoffset:0}to{stroke-dasharray:4141.884;stroke-dashoffset:-20.942}}.squid-animated-loader{animation:rotate-360 var(--squid-loader-rotate-duration) linear infinite}@keyframes rotate-360{to{transform:rotate(1turn)}}.placeholder\:tw-text-grey-600::-moz-placeholder{color:var(--squid-theme-grey-600)}.placeholder\:tw-text-grey-600::placeholder{color:var(--squid-theme-grey-600)}.placeholder-shown\:tw-text-grey-600:-moz-placeholder-shown{color:var(--squid-theme-grey-600)}.placeholder-shown\:tw-text-grey-600:placeholder-shown{color:var(--squid-theme-grey-600)}.invalid\:tw-outline-status-negative:invalid{outline-color:var(--squid-theme-status-negative)}.hover\:tw-border-material-light-average:hover{border-color:var(--squid-theme-material-light-average)}.hover\:tw-bg-material-light-thin:hover{background-color:var(--squid-theme-material-light-thin)}.hover\:tw-text-grey-400:hover{color:var(--squid-theme-grey-400)}.hover\:tw-opacity-100:hover{opacity:1}.focus\:tw-bg-material-light-thin:focus{background-color:var(--squid-theme-material-light-thin)}.focus\:tw-text-royal-400:focus{color:var(--squid-theme-royal-400)}.focus\:tw-opacity-100:focus{opacity:1}.focus\:tw-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus-visible\:tw-outline-status-partial:focus-visible{outline-color:var(--squid-theme-status-partial)}.disabled\:tw-cursor-not-allowed:disabled{cursor:not-allowed}.tw-group\/base-button:hover .group-hover\/base-button\:tw-block,.tw-group\/list-item:hover .group-hover\/list-item\:tw-block{display:block}.tw-group\/history-item:hover .group-hover\/history-item\:tw-hidden{display:none}.tw-group\/flip-button:hover .group-hover\/flip-button\:tw-rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw-group\/boost-toggle:hover .group-hover\/boost-toggle\:tw-from-material-light-blend-grey-900{--tw-gradient-from:var(--squid-theme-material-light-blend-grey-900) var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.tw-group\/swap-step-item-button:hover .group-hover\/swap-step-item-button\:tw-from-grey-700{--tw-gradient-from:var(--squid-theme-grey-700) var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.tw-group\/collapsing-section:hover .group-hover\/collapsing-section\:tw-opacity-100{opacity:1}.tw-group\/history-item:hover .group-hover\/history-item\:tw-opacity-0{opacity:0}.tw-group\/history-item:hover .group-hover\/history-item\:tw-opacity-100,.tw-group\/list-item:focus .group-focus\/list-item\:tw-opacity-100,.tw-group\/list-item:hover .group-hover\/list-item\:tw-opacity-100{opacity:1}.tw-group\/boost-toggle:disabled .group-disabled\/boost-toggle\:tw-grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.tw-peer:focus~.peer-focus\:tw-hidden{display:none}.tw-peer:focus~.peer-focus\:tw-opacity-0{opacity:0}.aria-disabled\:tw-bg-grey-600[aria-disabled=true]{background-color:var(--squid-theme-grey-600)}.aria-disabled\:tw-text-grey-800[aria-disabled=true]{color:var(--squid-theme-grey-800)}@keyframes tw-move-to-left-with-spring-bounce{0%{transform:translateX(25%)}50%{transform:translateX(-27%)}80%{transform:translateX(-24%)}to{transform:translateX(-25%)}}.data-\[boost-mode\=boost\]\:tw-animate-move-to-left-with-spring-bounce[data-boost-mode=boost]{animation:tw-move-to-left-with-spring-bounce var(--squid-animation-move-with-spring-bounce-duration,0s) ease-out both}@keyframes tw-move-to-right-with-spring-bounce{0%{transform:translateX(-25%)}50%{transform:translateX(27%)}80%{transform:translateX(24%)}to{transform:translateX(25%)}}.data-\[boost-mode\=normal\]\:tw-animate-move-to-right-with-spring-bounce[data-boost-mode=normal]{animation:tw-move-to-right-with-spring-bounce var(--squid-animation-move-with-spring-bounce-duration,0s) ease-out both}.tw-group[data-boost-mode=boost] .group-data-\[boost-mode\=boost\]\:tw-left-\[calc\(50\%-2px\)\]{left:calc(50% - 2px)}.tw-group[data-boost-mode=normal] .group-data-\[boost-mode\=normal\]\:tw-left-\[calc\(50\%-6px\)\]{left:calc(50% - 6px)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-bg-grey-100{background-color:var(--squid-theme-grey-100)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-bg-grey-900{background-color:var(--squid-theme-grey-900)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=\'dark\'\]\:tw-bg-royal-dark{background-image:linear-gradient(180deg,#bf91f2,#a577d8)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=\'light\'\]\:tw-bg-royal-light{background-image:linear-gradient(180deg,#a577d8,#bf91f2)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-text-grey-100{color:var(--squid-theme-grey-100)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-text-material-light-average{color:var(--squid-theme-material-light-average)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-text-grey-900{color:var(--squid-theme-grey-900)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-text-transparent{color:transparent}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-shadow-elevation-dark-2{--tw-shadow:0px 2px 5px 1px rgba(0,0,0,.2),0px 5px 20px -1px rgba(0,0,0,.33);--tw-shadow-colored:0px 2px 5px 1px var(--tw-shadow-color),0px 5px 20px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-shadow-elevation-dark-3{--tw-shadow:0px 2px 4px 0px rgba(0,0,0,.2),0px 5px 50px -1px rgba(0,0,0,.33);--tw-shadow-colored:0px 2px 4px 0px var(--tw-shadow-color),0px 5px 50px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-shadow-elevation-light-2{--tw-shadow:0px 2px 5px 1px rgba(0,0,0,.1),0px 5px 20px -1px rgba(0,0,0,.1);--tw-shadow-colored:0px 2px 5px 1px var(--tw-shadow-color),0px 5px 20px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-shadow-elevation-light-3{--tw-shadow:0px 2px 4px 0px rgba(0,0,0,.1),0px 5px 50px -1px rgba(0,0,0,.2);--tw-shadow-colored:0px 2px 4px 0px var(--tw-shadow-color),0px 5px 50px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-peer[data-boost-mode=boost]~.peer-data-\[boost-mode\=boost\]\:tw-bg-status-positive{background-color:var(--squid-theme-status-positive)}.tw-peer[data-boost-mode=normal]~.peer-data-\[boost-mode\=normal\]\:tw-bg-current{background-color:currentColor}@media (min-width:480px){.mobile-lg\:-tw-left-\[3px\]{left:-3px}.mobile-lg\:tw-left-\[30px\]{left:30px}.mobile-lg\:tw-left-squid-l{left:1.875rem}.mobile-lg\:tw-block{display:block}.mobile-lg\:tw-h-auto{height:auto}.mobile-lg\:tw-max-h-modal-large{max-height:600px}.mobile-lg\:tw-w-\[140px\]{width:140px}.mobile-lg\:tw-w-\[190px\]{width:190px}.mobile-lg\:tw-w-card-large{width:480px}.mobile-lg\:tw-w-full{width:100%}.mobile-lg\:tw-w-list-item-large{width:23.75rem}.mobile-lg\:tw-w-modal-extra-large{width:440px}.mobile-lg\:tw-w-modal-large{width:400px}.mobile-lg\:tw-w-squid-xl{width:2.5rem}.mobile-lg\:tw-min-w-modal-large{min-width:400px}.mobile-lg\:tw-max-w-card-large{max-width:480px}.mobile-lg\:tw-max-w-modal-large{max-width:400px}.mobile-lg\:tw-rounded-squid-l{border-radius:1.875rem}.mobile-lg\:tw-px-squid-l{padding-left:1.875rem;padding-right:1.875rem}.mobile-lg\:tw-px-squid-m{padding-left:1.25rem;padding-right:1.25rem}.mobile-lg\:tw-px-squid-xs{padding-left:.625rem;padding-right:.625rem}.mobile-lg\:tw-px-squid-xxs{padding-left:.3125rem;padding-right:.3125rem}.mobile-lg\:tw-pl-squid-l{padding-left:1.875rem}}@media (min-height:650px){.mobile-xs-height\:tw-h-card-compact{height:640px}.mobile-xs-height\:tw-w-\[unset\]{width:unset}.mobile-xs-height\:tw-flex-col{flex-direction:column}.mobile-xs-height\:tw-pr-squid-m{padding-right:1.25rem}}@media (min-height:670px){.mobile-sm-height\:tw-h-\[205px\]{height:205px}.mobile-sm-height\:tw-h-\[65px\]{height:65px}.mobile-sm-height\:tw-h-\[75px\]{height:75px}.mobile-sm-height\:tw-h-card-large{height:660px}.mobile-sm-height\:tw-max-h-\[535px\]{max-height:535px}}@media (min-width:360px){.mobile-xs\:tw-flex{display:flex}.mobile-xs\:tw-justify-normal{justify-content:normal}}@media (prefers-color-scheme:dark){.dark\:tw-border-b-material-light-thin{border-bottom-color:var(--squid-theme-material-light-thin)}.dark\:tw-bg-material-dark-thick{background-color:var(--squid-theme-material-dark-thick)}.dark\:tw-text-grey-900{color:var(--squid-theme-grey-900)}}
4
+ */*,:after,:before{border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.tw-sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.tw-pointer-events-none{pointer-events:none}.tw-visible{visibility:visible}.tw-invisible{visibility:hidden}.tw-fixed{position:fixed}.tw-absolute{position:absolute}.tw-relative{position:relative}.tw-inset-0{inset:0}.tw-inset-squid-xxs{inset:.3125rem}.tw-inset-y-0{bottom:0;top:0}.-tw-bottom-20{bottom:-5rem}.-tw-left-\[20px\]{left:-20px}.-tw-left-\[2px\]{left:-2px}.-tw-left-\[4px\]{left:-4px}.-tw-left-\[5px\]{left:-5px}.-tw-right-1\/3{right:-33.333333%}.-tw-right-squid-xxs{right:-.3125rem}.-tw-top-8{top:-2rem}.-tw-top-\[2px\]{top:-2px}.-tw-top-\[4px\]{top:-4px}.-tw-top-\[55px\]{top:-55px}.-tw-top-squid-xxs{top:-.3125rem}.tw-bottom-0{bottom:0}.tw-bottom-0\.5{bottom:.125rem}.tw-bottom-1\/2{bottom:50%}.tw-bottom-2{bottom:.5rem}.tw-bottom-7{bottom:1.75rem}.tw-bottom-full{bottom:100%}.tw-bottom-squid-xxs{bottom:.3125rem}.tw-left-0{left:0}.tw-left-1\/2{left:50%}.tw-left-5{left:1.25rem}.tw-left-\[-14px\]{left:-14px}.tw-left-\[15px\]{left:15px}.tw-left-\[17px\]{left:17px}.tw-left-\[1px\]{left:1px}.tw-left-\[26px\]{left:26px}.tw-left-\[2px\]{left:2px}.tw-left-\[54px\]{left:54px}.tw-left-\[calc\(50\%-2px\)\]{left:calc(50% - 2px)}.tw-left-squid-m{left:1.25rem}.tw-left-squid-s{left:.9375rem}.tw-left-squid-xs{left:.625rem}.tw-right-0{right:0}.tw-right-1{right:.25rem}.tw-right-1\.5{right:.375rem}.tw-right-4{right:1rem}.tw-right-\[40px\]{right:40px}.tw-right-\[calc\(100\%-10px\)\]{right:calc(100% - 10px)}.tw-right-full{right:100%}.tw-right-squid-xs{right:.625rem}.tw-right-squid-xxs{right:.3125rem}.tw-top-0{top:0}.tw-top-7{top:1.75rem}.tw-top-\[11px\]{top:11px}.tw-top-\[2px\]{top:2px}.tw-top-full{top:100%}.tw-top-squid-xs{top:.625rem}.tw-top-squid-xxs{top:.3125rem}.-tw-z-40{z-index:-40}.tw-z-0{z-index:0}.tw-z-10{z-index:10}.tw-z-20{z-index:20}.tw-z-40{z-index:40}.tw-z-50{z-index:50}.tw-z-\[5\]{z-index:5}.tw-m-0{margin:0}.tw-mx-auto{margin-left:auto;margin-right:auto}.tw-mx-squid-xxs{margin-left:.3125rem;margin-right:.3125rem}.tw-my-4{margin-bottom:1rem;margin-top:1rem}.-tw-mb-1{margin-bottom:-.25rem}.-tw-ml-1{margin-left:-.25rem}.-tw-ml-squid-xs{margin-left:-.625rem}.tw-ml-2{margin-left:.5rem}.tw-mr-1{margin-right:.25rem}.tw-mr-1\.5{margin-right:.375rem}.tw-mr-squid-xs{margin-right:.625rem}.tw-mt-0{margin-top:0}.tw-mt-0\.5{margin-top:.125rem}.tw-mt-1{margin-top:.25rem}.tw-block{display:block}.tw-inline-block{display:inline-block}.tw-flex{display:flex}.tw-inline-flex{display:inline-flex}.tw-grid{display:grid}.tw-hidden{display:none}.tw-aspect-square{aspect-ratio:1/1}.\!tw-h-\[30px\]{height:30px!important}.tw-h-1{height:.25rem}.tw-h-1\.5{height:.375rem}.tw-h-10{height:2.5rem}.tw-h-2{height:.5rem}.tw-h-2\.5{height:.625rem}.tw-h-4{height:1rem}.tw-h-5{height:1.25rem}.tw-h-52{height:13rem}.tw-h-6{height:1.5rem}.tw-h-8{height:2rem}.tw-h-\[0\.8em\]{height:.8em}.tw-h-\[1\.2em\]{height:1.2em}.tw-h-\[1000px\]{height:1000px}.tw-h-\[10px\]{height:10px}.tw-h-\[110px\]{height:110px}.tw-h-\[130px\]{height:130px}.tw-h-\[14px\]{height:14px}.tw-h-\[16px\]{height:16px}.tw-h-\[17px\]{height:17px}.tw-h-\[195px\]{height:195px}.tw-h-\[21px\]{height:21px}.tw-h-\[240px\]{height:240px}.tw-h-\[26px\]{height:26px}.tw-h-\[30px\]{height:30px}.tw-h-\[40px\]{height:40px}.tw-h-\[42px\]{height:42px}.tw-h-\[46px\]{height:46px}.tw-h-\[50px\]{height:50px}.tw-h-\[52px\]{height:52px}.tw-h-\[535px\]{height:535px}.tw-h-\[536px\]{height:536px}.tw-h-\[540px\]{height:540px}.tw-h-\[55px\]{height:55px}.tw-h-\[60px\]{height:60px}.tw-h-\[65px\]{height:65px}.tw-h-\[69px\]{height:69px}.tw-h-\[80px\]{height:80px}.tw-h-\[94px\]{height:94px}.tw-h-\[95px\]{height:95px}.tw-h-button{height:3.75rem}.tw-h-card-small{height:580px}.tw-h-full{height:100%}.tw-h-list-item-large{height:3.125rem}.tw-h-list-item-small{height:2.5rem}.tw-h-screen{height:100vh}.tw-h-squid-l{height:1.875rem}.tw-h-squid-m{height:1.25rem}.tw-h-squid-xl{height:2.5rem}.tw-h-squid-xs{height:.625rem}.tw-h-squid-xxl{height:3.75rem}.\!tw-max-h-\[470px\]{max-height:470px!important}.tw-max-h-\[120px\]{max-height:120px}.tw-max-h-\[445px\]{max-height:445px}.tw-max-h-\[470px\]{max-height:470px}.tw-max-h-\[540px\]{max-height:540px}.tw-max-h-\[55px\]{max-height:55px}.tw-max-h-\[60px\]{max-height:60px}.tw-max-h-\[80px\]{max-height:80px}.tw-max-h-\[80vh\]{max-height:80vh}.tw-max-h-list-item-small{max-height:2.5rem}.tw-max-h-modal-compact{max-height:631px}.tw-max-h-squid-m{max-height:1.25rem}.tw-max-h-squid-xl{max-height:2.5rem}.tw-min-h-\[195px\]{min-height:195px}.tw-min-h-\[30px\]{min-height:30px}.tw-min-h-\[55px\]{min-height:55px}.tw-min-h-button{min-height:3.75rem}.tw-min-h-full{min-height:100%}.tw-min-h-squid-l{min-height:1.875rem}.tw-min-h-squid-m{min-height:1.25rem}.tw-min-h-squid-xl{min-height:2.5rem}.\!tw-w-fit{width:-moz-fit-content!important;width:fit-content!important}.tw-w-10{width:2.5rem}.tw-w-12{width:3rem}.tw-w-36{width:9rem}.tw-w-4{width:1rem}.tw-w-5{width:1.25rem}.tw-w-52{width:13rem}.tw-w-6{width:1.5rem}.tw-w-8{width:2rem}.tw-w-96{width:24rem}.tw-w-\[1\.2em\]{width:1.2em}.tw-w-\[1\.5px\]{width:1.5px}.tw-w-\[1000px\]{width:1000px}.tw-w-\[100px\]{width:100px}.tw-w-\[106\.5px\]{width:106.5px}.tw-w-\[110px\]{width:110px}.tw-w-\[1260px\]{width:1260px}.tw-w-\[135px\]{width:135px}.tw-w-\[140px\]{width:140px}.tw-w-\[150px\]{width:150px}.tw-w-\[157px\]{width:157px}.tw-w-\[160px\]{width:160px}.tw-w-\[16px\]{width:16px}.tw-w-\[180px\]{width:180px}.tw-w-\[22px\]{width:22px}.tw-w-\[26px\]{width:26px}.tw-w-\[299px\]{width:299px}.tw-w-\[2px\]{width:2px}.tw-w-\[30px\]{width:30px}.tw-w-\[36px\]{width:36px}.tw-w-\[3px\]{width:3px}.tw-w-\[40px\]{width:40px}.tw-w-\[42px\]{width:42px}.tw-w-\[44px\]{width:44px}.tw-w-\[470px\]{width:470px}.tw-w-\[500px\]{width:500px}.tw-w-\[50px\]{width:50px}.tw-w-\[52px\]{width:52px}.tw-w-\[54px\]{width:54px}.tw-w-\[56\%\]{width:56%}.tw-w-\[600px\]{width:600px}.tw-w-\[60px\]{width:60px}.tw-w-\[67\%\]{width:67%}.tw-w-\[69px\]{width:69px}.tw-w-\[70px\]{width:70px}.tw-w-\[720px\]{width:720px}.tw-w-\[72px\]{width:72px}.tw-w-\[80px\]{width:80px}.tw-w-\[90px\]{width:90px}.tw-w-\[92px\]{width:92px}.tw-w-\[94px\]{width:94px}.tw-w-fit{width:-moz-fit-content;width:fit-content}.tw-w-full{width:100%}.tw-w-max{width:-moz-max-content;width:max-content}.tw-w-modal-compact{width:373px}.tw-w-squid-l{width:1.875rem}.tw-w-squid-m{width:1.25rem}.tw-w-squid-s{width:.9375rem}.tw-w-squid-xl{width:2.5rem}.tw-w-squid-xxl{width:3.75rem}.\!tw-min-w-0{min-width:0!important}.tw-min-w-\[30px\]{min-width:30px}.tw-min-w-\[60px\]{min-width:60px}.tw-min-w-list-item-small{min-width:21.25rem}.tw-min-w-squid-xl{min-width:2.5rem}.tw-min-w-squid-xxl{min-width:3.75rem}.tw-max-w-96{max-width:24rem}.tw-max-w-\[100vw\]{max-width:100vw}.tw-max-w-\[180px\]{max-width:180px}.tw-max-w-\[200px\]{max-width:200px}.tw-max-w-\[299px\]{max-width:299px}.tw-max-w-\[320px\]{max-width:320px}.tw-max-w-\[70px\]{max-width:70px}.tw-max-w-\[72px\]{max-width:72px}.tw-max-w-\[80px\]{max-width:80px}.tw-max-w-full{max-width:100%}.tw-max-w-modal-compact{max-width:373px}.tw-max-w-none{max-width:none}.tw-max-w-xl{max-width:36rem}.tw-flex-1{flex:1 1 0%}.tw-flex-shrink-0{flex-shrink:0}.tw-flex-grow{flex-grow:1}.tw-grow-0{flex-grow:0}.tw-origin-center{transform-origin:center}.-tw-translate-x-1\/2{--tw-translate-x:-50%}.-tw-translate-x-1\/2,.-tw-translate-x-1\/3{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-tw-translate-x-1\/3{--tw-translate-x:-33.333333%}.-tw-translate-y-1\/2{--tw-translate-y:-50%}.-tw-translate-y-1\/2,.tw-translate-x-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw-translate-x-1\/2{--tw-translate-x:50%}.tw-translate-y-1\/2{--tw-translate-y:50%}.-tw-rotate-90,.tw-translate-y-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-tw-rotate-90{--tw-rotate:-90deg}.tw-rotate-180{--tw-rotate:180deg}.tw-rotate-180,.tw-rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw-rotate-90{--tw-rotate:90deg}@keyframes tw-blur-in{0%{-webkit-backdrop-filter:blur(0);backdrop-filter:blur(0)}to{-webkit-backdrop-filter:blur(20px) saturate(150%);backdrop-filter:blur(20px) saturate(150%);background-color:var(--squid-theme-material-dark-average)}}.tw-animate-blur-in{animation:tw-blur-in var(--squid-animation-blur-in-duration,0s) cubic-bezier(.165,.84,.44,1) both}@keyframes tw-blur-out{0%{-webkit-backdrop-filter:blur(20px) saturate(150%);backdrop-filter:blur(20px) saturate(150%);background-color:var(--squid-theme-material-dark-average)}to{-webkit-backdrop-filter:blur(0);backdrop-filter:blur(0)}}.tw-animate-blur-out{animation:tw-blur-out var(--squid-animation-blur-out-duration,0s) cubic-bezier(.165,.84,.44,1) both}@keyframes tw-collapse-route{0%{height:100%}to{height:60px}}.tw-animate-collapse-route{animation:tw-collapse-route var(--squid-animation-collapse-to-bottom-duration,0s) linear both}@keyframes tw-expand-route{0%{height:60px}to{height:100%}}.tw-animate-expand-route{animation:tw-expand-route var(--squid-animation-expand-to-top-duration,0s) linear both}@keyframes tw-fade-in{0%{opacity:0}to{opacity:1}}.tw-animate-fade-in{animation:tw-fade-in var(--squid-animation-fade-in-duration,0s) ease-out both}@keyframes tw-fade-out{0%{opacity:1}to{opacity:0}}.tw-animate-fade-out{animation:tw-fade-out var(--squid-animation-fade-out-duration,0s) ease-out both}@keyframes tw-loading-gradient{0%{opacity:0;transform:translateX(-70%)}50%{opacity:1}to{opacity:0;transform:translateX(70%)}}.tw-animate-loading-gradient{animation:tw-loading-gradient 1s ease-in-out infinite both}@keyframes tw-move-loading-cover-to-right{0%{transform:translateX(-64%)}to{transform:translateX(0)}}.tw-animate-move-loading-cover-to-right{animation:tw-move-loading-cover-to-right 1.4s linear infinite}@keyframes tw-scale-and-fade-down{0%{opacity:1;transform:scale(1)}to{opacity:.5;transform:scale(.9)}}.tw-animate-scale-and-fade-down{animation:tw-scale-and-fade-down var(--squid-animation-scale-and-fade-down-duration,0s) linear both}@keyframes tw-scale-and-fade-up{0%{opacity:.5;transform:scale(.9)}to{opacity:1;transform:scale(1)}}.tw-animate-scale-and-fade-up{animation:tw-scale-and-fade-up var(--squid-animation-scale-and-fade-up-duration,0s) linear both}@keyframes tw-slide-to-bottom{0%{transform:translateZ(0)}to{transform:translate3d(0,650px,0)}}.tw-animate-slide-to-bottom{animation:tw-slide-to-bottom var(--squid-animation-slide-to-bottom-duration,0s) cubic-bezier(.165,.84,.44,1) both}@keyframes tw-slide-to-top{0%{transform:translate3d(0,650px,0)}to{transform:translateZ(0)}}.tw-animate-slide-to-top{animation:tw-slide-to-top var(--squid-animation-slide-to-top-duration,0s) cubic-bezier(.165,.84,.44,1) both}.tw-cursor-help{cursor:help}.tw-cursor-not-allowed{cursor:not-allowed}.tw-cursor-pointer{cursor:pointer}.tw-select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.tw-grid-cols-\[100px\,1fr\,100px\]{grid-template-columns:100px 1fr 100px}.tw-grid-cols-\[180px_299px\]{grid-template-columns:180px 299px}.tw-grid-cols-\[40px\,1fr\,60px\]{grid-template-columns:40px 1fr 60px}.tw-grid-cols-\[70px_1fr\]{grid-template-columns:70px 1fr}.tw-flex-row-reverse{flex-direction:row-reverse}.tw-flex-col{flex-direction:column}.tw-flex-col-reverse{flex-direction:column-reverse}.tw-flex-wrap{flex-wrap:wrap}.tw-items-start{align-items:flex-start}.tw-items-end{align-items:flex-end}.tw-items-center{align-items:center}.tw-items-stretch{align-items:stretch}.tw-justify-start{justify-content:flex-start}.tw-justify-end{justify-content:flex-end}.tw-justify-center{justify-content:center}.tw-justify-between{justify-content:space-between}.tw-gap-0{gap:0}.tw-gap-0\.5{gap:.125rem}.tw-gap-1{gap:.25rem}.tw-gap-1\.5{gap:.375rem}.tw-gap-2{gap:.5rem}.tw-gap-\[2px\]{gap:2px}.tw-gap-squid-m{gap:1.25rem}.tw-gap-squid-s{gap:.9375rem}.tw-gap-squid-xs{gap:.625rem}.tw-gap-squid-xxs{gap:.3125rem}.tw-gap-x-squid-xs{-moz-column-gap:.625rem;column-gap:.625rem}.tw-divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.tw-divide-material-light-thin>:not([hidden])~:not([hidden]){border-color:var(--squid-theme-material-light-thin)}.tw-self-end{align-self:flex-end}.tw-self-stretch{align-self:stretch}.tw-overflow-auto{overflow:auto}.tw-overflow-hidden{overflow:hidden}.tw-overflow-y-auto{overflow-y:auto}.tw-overflow-x-hidden{overflow-x:hidden}.tw-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tw-text-nowrap{text-wrap:nowrap}.tw-rounded-2xl{border-radius:1rem}.tw-rounded-\[20px\]{border-radius:20px}.tw-rounded-\[25px\]{border-radius:25px}.tw-rounded-full{border-radius:9999px}.tw-rounded-md{border-radius:.375rem}.tw-rounded-sm{border-radius:.125rem}.tw-rounded-squid-l{border-radius:1.875rem}.tw-rounded-squid-m{border-radius:1.25rem}.tw-rounded-squid-s{border-radius:.9375rem}.tw-rounded-squid-xs{border-radius:.625rem}.tw-rounded-squid-xxl{border-radius:3.75rem}.tw-rounded-squid-xxs{border-radius:.3125rem}.tw-rounded-xl{border-radius:.75rem}.tw-rounded-bl-squid-l{border-bottom-left-radius:1.875rem}.tw-rounded-br-full{border-bottom-right-radius:9999px}.tw-rounded-br-squid-l{border-bottom-right-radius:1.875rem}.tw-rounded-tl-\[25px\]{border-top-left-radius:25px}.tw-rounded-tl-squid-l{border-top-left-radius:1.875rem}.tw-rounded-tl-xl{border-top-left-radius:.75rem}.tw-rounded-tr-\[25px\]{border-top-right-radius:25px}.tw-rounded-tr-full{border-top-right-radius:9999px}.tw-rounded-tr-squid-l{border-top-right-radius:1.875rem}.tw-rounded-tr-xl{border-top-right-radius:.75rem}.tw-border{border-width:1px}.tw-border-2{border-width:2px}.tw-border-\[1px\]{border-width:1px}.tw-border-y-\[4px\]{border-bottom-width:4px;border-top-width:4px}.tw-border-b{border-bottom-width:1px}.tw-border-r{border-right-width:1px}.tw-border-t{border-top-width:1px}.tw-border-solid{border-style:solid}.\!tw-border-transparent{border-color:transparent!important}.tw-border-grey-500{border-color:var(--squid-theme-grey-500)}.tw-border-grey-800{border-color:var(--squid-theme-grey-800)}.tw-border-grey-900{border-color:var(--squid-theme-grey-900)}.tw-border-material-light-thin{border-color:var(--squid-theme-material-light-thin)}.tw-border-slate-800{--tw-border-opacity:1;border-color:rgb(30 41 59/var(--tw-border-opacity))}.tw-border-transparent{border-color:transparent}.tw-border-b-material-dark-thin{border-bottom-color:var(--squid-theme-material-dark-thin)}.tw-border-t-material-light-thin{border-top-color:var(--squid-theme-material-light-thin)}.\!tw-bg-grey-100{background-color:var(--squid-theme-grey-100)!important}.\!tw-bg-grey-300{background-color:var(--squid-theme-grey-300)!important}.\!tw-bg-grey-500{background-color:var(--squid-theme-grey-500)!important}.\!tw-bg-grey-600{background-color:var(--squid-theme-grey-600)!important}.\!tw-bg-grey-800{background-color:var(--squid-theme-grey-800)!important}.\!tw-bg-material-light-thin{background-color:var(--squid-theme-material-light-thin)!important}.\!tw-bg-status-negative{background-color:var(--squid-theme-status-negative)!important}.\!tw-bg-status-partial{background-color:var(--squid-theme-status-partial)!important}.\!tw-bg-status-positive{background-color:var(--squid-theme-status-positive)!important}.\!tw-bg-transparent{background-color:transparent!important}.tw-bg-\[\#E4FE53\]{--tw-bg-opacity:1;background-color:rgb(228 254 83/var(--tw-bg-opacity))}.tw-bg-\[currentColor\]{background-color:currentColor}.tw-bg-grey-100{background-color:var(--squid-theme-grey-100)}.tw-bg-grey-300{background-color:var(--squid-theme-grey-300)}.tw-bg-grey-500{background-color:var(--squid-theme-grey-500)}.tw-bg-grey-700{background-color:var(--squid-theme-grey-700)}.tw-bg-grey-800{background-color:var(--squid-theme-grey-800)}.tw-bg-grey-900{background-color:var(--squid-theme-grey-900)}.tw-bg-inherit{background-color:inherit}.tw-bg-material-dark-thick{background-color:var(--squid-theme-material-dark-thick)}.tw-bg-material-dark-thin{background-color:var(--squid-theme-material-dark-thin)}.tw-bg-material-light-thin{background-color:var(--squid-theme-material-light-thin)}.tw-bg-royal-400{background-color:var(--squid-theme-royal-400)}.tw-bg-royal-500{background-color:var(--squid-theme-royal-500)}.tw-bg-slate-900{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.tw-bg-slate-950{--tw-bg-opacity:1;background-color:rgb(2 6 23/var(--tw-bg-opacity))}.tw-bg-status-negative{background-color:var(--squid-theme-status-negative)}.tw-bg-status-partial{background-color:var(--squid-theme-status-partial)}.tw-bg-status-positive{background-color:var(--squid-theme-status-positive)}.tw-bg-transparent{background-color:transparent}.tw-bg-dark-cover{background-image:linear-gradient(90deg,var(--squid-theme-material-dark-thick) 45.4%,transparent 50.85%,var(--squid-theme-material-dark-thick) 55.61%)}.tw-bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.tw-bg-gradient-to-l{background-image:linear-gradient(to left,var(--tw-gradient-stops))}.tw-bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.tw-bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.tw-bg-royal-dark{background-image:linear-gradient(180deg,#bf91f2,#a577d8)}.tw-bg-royal-light{background-image:linear-gradient(180deg,#a577d8,#bf91f2)}.tw-from-grey-800{--tw-gradient-from:var(--squid-theme-grey-800) var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.tw-from-grey-900{--tw-gradient-from:var(--squid-theme-grey-900) var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.tw-to-transparent{--tw-gradient-to:transparent var(--tw-gradient-to-position)}.tw-object-cover{-o-object-fit:cover;object-fit:cover}.\!tw-p-0{padding:0!important}.tw-p-0{padding:0}.tw-p-0\.5{padding:.125rem}.tw-p-1{padding:.25rem}.tw-p-2{padding:.5rem}.tw-p-4{padding:1rem}.tw-p-8{padding:2rem}.tw-p-\[3px\]{padding:3px}.tw-p-squid-l{padding:1.875rem}.tw-p-squid-xs{padding:.625rem}.tw-p-squid-xxl{padding:3.75rem}.tw-p-squid-xxs{padding:.3125rem}.\!tw-px-0{padding-left:0!important;padding-right:0!important}.\!tw-px-4{padding-left:1rem!important;padding-right:1rem!important}.tw-px-0{padding-left:0;padding-right:0}.tw-px-4{padding-left:1rem;padding-right:1rem}.tw-px-\[3px\]{padding-left:3px;padding-right:3px}.tw-px-squid-l{padding-left:1.875rem;padding-right:1.875rem}.tw-px-squid-m{padding-left:1.25rem;padding-right:1.25rem}.tw-px-squid-s{padding-left:.9375rem;padding-right:.9375rem}.tw-px-squid-xs{padding-left:.625rem;padding-right:.625rem}.tw-px-squid-xxl{padding-left:3.75rem;padding-right:3.75rem}.tw-px-squid-xxs{padding-left:.3125rem;padding-right:.3125rem}.tw-py-0{padding-bottom:0;padding-top:0}.tw-py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.tw-py-2{padding-bottom:.5rem;padding-top:.5rem}.tw-py-\[1px\]{padding-bottom:1px;padding-top:1px}.tw-py-squid-l{padding-bottom:1.875rem;padding-top:1.875rem}.tw-py-squid-m{padding-bottom:1.25rem;padding-top:1.25rem}.tw-py-squid-s{padding-bottom:.9375rem;padding-top:.9375rem}.tw-py-squid-xl{padding-bottom:2.5rem;padding-top:2.5rem}.tw-py-squid-xs{padding-bottom:.625rem;padding-top:.625rem}.tw-py-squid-xxs{padding-bottom:.3125rem;padding-top:.3125rem}.tw-pb-\[15px\]{padding-bottom:15px}.tw-pb-squid-l{padding-bottom:1.875rem}.tw-pb-squid-m{padding-bottom:1.25rem}.tw-pb-squid-s{padding-bottom:.9375rem}.tw-pb-squid-xs{padding-bottom:.625rem}.tw-pb-squid-xxs{padding-bottom:.3125rem}.tw-pl-1{padding-left:.25rem}.tw-pl-\[33px\]{padding-left:33px}.tw-pl-\[40px\]{padding-left:40px}.tw-pl-\[75px\]{padding-left:75px}.tw-pl-\[7px\]{padding-left:7px}.tw-pl-squid-m{padding-left:1.25rem}.tw-pl-squid-xxs{padding-left:.3125rem}.tw-pr-1{padding-right:.25rem}.tw-pr-2{padding-right:.5rem}.tw-pr-2\.5{padding-right:.625rem}.tw-pr-4{padding-right:1rem}.tw-pr-\[40px\]{padding-right:40px}.tw-pr-\[70px\]{padding-right:70px}.tw-pr-squid-l{padding-right:1.875rem}.tw-pr-squid-m{padding-right:1.25rem}.tw-pr-squid-xl{padding-right:2.5rem}.tw-pr-squid-xs{padding-right:.625rem}.tw-pr-squid-xxs{padding-right:.3125rem}.tw-pt-0{padding-top:0}.tw-pt-\[5px\]{padding-top:5px}.tw-pt-squid-m{padding-top:1.25rem}.tw-pt-squid-xs{padding-top:.625rem}.tw-pt-squid-xxs{padding-top:.3125rem}.tw-text-left{text-align:left}.tw-text-center{text-align:center}.tw-text-right{text-align:right}.tw-font-geist{font-family:Geist,sans-serif}.tw-text-body-large{font-size:1.75625rem}.tw-text-body-medium{font-size:1.40625rem}.tw-text-body-small{font-size:1.14375rem}.tw-text-caption{font-size:.875rem}.tw-text-heading-large{font-size:4.40625rem}.tw-text-heading-medium{font-size:3.08125rem}.tw-text-heading-small{font-size:2.1875rem}.tw-text-lg{font-size:1.125rem;line-height:1.75rem}.tw-text-sm{font-size:.875rem;line-height:1.25rem}.tw-text-xs{font-size:.75rem;line-height:1rem}.\!tw-font-medium{font-weight:500!important}.tw-font-heading-bold{font-weight:600}.tw-font-heading-regular{font-weight:400}.tw-font-semibold,.tw-font-typography-bold{font-weight:600}.tw-font-typography-regular{font-weight:400}.\!tw-leading-\[10px\]{line-height:10px!important}.\!tw-leading-\[13px\]{line-height:13px!important}.\!tw-leading-\[16px\]{line-height:16px!important}.\!tw-leading-\[17px\]{line-height:17px!important}.\!tw-leading-\[18px\]{line-height:18px!important}.\!tw-leading-\[1\]{line-height:1!important}.\!tw-leading-\[20px\]{line-height:20px!important}.\!tw-leading-\[9px\]{line-height:9px!important}.tw-leading-5{line-height:1.25rem}.tw-leading-\[0\]{line-height:0}.tw-leading-\[10px\]{line-height:10px}.tw-leading-\[13px\]{line-height:13px}.tw-leading-\[1\]{line-height:1}.tw-leading-\[43px\]{line-height:43px}.tw-leading-body-large{line-height:39.34px}.tw-leading-body-medium{line-height:31.5px}.tw-leading-body-small{line-height:25.62px}.tw-leading-caption{line-height:19.6px}.tw-leading-heading-large{line-height:66.97px}.tw-leading-heading-medium{line-height:49.3px}.tw-leading-heading-small{line-height:38.5px}.tw-tracking-body-large{letter-spacing:-.843px}.tw-tracking-body-medium{letter-spacing:-.675px}.tw-tracking-body-small{letter-spacing:-.366px}.tw-tracking-heading-large{letter-spacing:-3.525px}.tw-tracking-heading-medium{letter-spacing:-2.465px}.tw-tracking-heading-small{letter-spacing:-1.05px}.\!tw-text-\[transparent\]{color:transparent!important}.\!tw-text-grey-300{color:var(--squid-theme-grey-300)!important}.\!tw-text-grey-500{color:var(--squid-theme-grey-500)!important}.\!tw-text-grey-600{color:var(--squid-theme-grey-600)!important}.\!tw-text-grey-800{color:var(--squid-theme-grey-800)!important}.tw-text-\[\#FBFBFD\]{--tw-text-opacity:1;color:rgb(251 251 253/var(--tw-text-opacity))}.tw-text-grey-100{color:var(--squid-theme-grey-100)}.tw-text-grey-200{color:var(--squid-theme-grey-200)}.tw-text-grey-300{color:var(--squid-theme-grey-300)}.tw-text-grey-400{color:var(--squid-theme-grey-400)}.tw-text-grey-500{color:var(--squid-theme-grey-500)}.tw-text-grey-600{color:var(--squid-theme-grey-600)}.tw-text-grey-700{color:var(--squid-theme-grey-700)}.tw-text-grey-800{color:var(--squid-theme-grey-800)}.tw-text-grey-900{color:var(--squid-theme-grey-900)}.tw-text-material-light-average{color:var(--squid-theme-material-light-average)}.tw-text-material-light-thick{color:var(--squid-theme-material-light-thick)}.tw-text-material-light-thin{color:var(--squid-theme-material-light-thin)}.tw-text-royal-400{color:var(--squid-theme-royal-400)}.tw-text-royal-500{color:var(--squid-theme-royal-500)}.tw-text-status-negative{color:var(--squid-theme-status-negative)}.tw-text-status-partial{color:var(--squid-theme-status-partial)}.tw-text-status-positive{color:var(--squid-theme-status-positive)}.tw-text-transparent{color:transparent}.tw-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.\!tw-opacity-100{opacity:1!important}.tw-opacity-0{opacity:0}.tw-opacity-100{opacity:1}.tw-opacity-33{opacity:.33}.tw-opacity-50{opacity:.5}.tw-opacity-66{opacity:.66}.tw-shadow-elevation-light-1{--tw-shadow:0px 1px 2px 0px #0000001a;--tw-shadow-colored:0px 1px 2px 0px var(--tw-shadow-color)}.tw-shadow-elevation-light-1,.tw-shadow-elevation-light-2{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-shadow-elevation-light-2{--tw-shadow:0px 2px 5px 1px rgba(0,0,0,.1),0px 5px 20px -1px rgba(0,0,0,.1);--tw-shadow-colored:0px 2px 5px 1px var(--tw-shadow-color),0px 5px 20px -1px var(--tw-shadow-color)}.tw-shadow-elevation-light-3{--tw-shadow:0px 2px 4px 0px rgba(0,0,0,.1),0px 5px 50px -1px rgba(0,0,0,.2);--tw-shadow-colored:0px 2px 4px 0px var(--tw-shadow-color),0px 5px 50px -1px var(--tw-shadow-color)}.tw-shadow-elevation-light-3,.tw-shadow-inset-royal{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-shadow-inset-royal{--tw-shadow:0px 0px 50px 0px #876fe2 inset;--tw-shadow-colored:inset 0px 0px 50px 0px var(--tw-shadow-color)}.tw-shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-outline{outline-style:solid}.tw-outline-1{outline-width:1px}.tw-outline-2{outline-width:2px}.-tw-outline-offset-2{outline-offset:-2px}.-tw-outline-offset-\[1px\]{outline-offset:-1px}.\!tw-outline-status-negative{outline-color:var(--squid-theme-status-negative)!important}.tw-outline-material-light-thin{outline-color:var(--squid-theme-material-light-thin)}.tw-outline-royal-500{outline-color:var(--squid-theme-royal-500)}.tw-backdrop-blur-2xl{--tw-backdrop-blur:blur(40px)}.tw-backdrop-blur-2xl,.tw-backdrop-blur-lg{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.tw-backdrop-blur-lg{--tw-backdrop-blur:blur(16px)}.tw-backdrop-blur\/10{--tw-backdrop-blur:blur(10px)}.tw-backdrop-blur\/10,.tw-backdrop-blur\/20{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.tw-backdrop-blur\/20{--tw-backdrop-blur:blur(20px)}.tw-backdrop-saturate-150{--tw-backdrop-saturate:saturate(1.5);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.tw-transition-\[border-width\]{transition-duration:.15s;transition-property:border-width;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-\[width\,height\]{transition-duration:.15s;transition-property:width,height;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tw-delay-300{transition-delay:.3s}.tw-duration-1000{transition-duration:1s}.tw-duration-150{transition-duration:.15s}.tw-duration-200{transition-duration:.2s}.tw-duration-300{transition-duration:.3s}.tw-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}@font-face{font-family:Geist;src:local("Geist"),url(fonts/Geist-Variable.woff2) format("woff2")}*,:after,:before{box-sizing:border-box}:disabled{cursor:not-allowed}.tw-assets-button-mask{-webkit-mask-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMjBBMTkuOTM4IDE5LjkzOCAwIDAgMSA1Ljg1OCA1Ljg1OCAxOS45MzcgMTkuOTM3IDAgMCAxIDIwIDBhMTkuOTM3IDE5LjkzNyAwIDAgMSAxNC4xNDIgNS44NThjLjUyOC41MjcgMS4wNDYgMS4wNiAxLjU2IDEuNTg5QzM4Ljk4OCAxMC44MyA0Mi4wNjcgMTQgNDYgMTRjMy45MzIgMCA3LjAxMS0zLjE3IDEwLjI5OS02LjU1My41MTMtLjUyOCAxLjAzMS0xLjA2MiAxLjU1OS0xLjU5QTE5LjkzNyAxOS45MzcgMCAwIDEgNzIgMHY0MGExOS45MzcgMTkuOTM3IDAgMCAxLTE0LjE0Mi01Ljg1OGMtLjUyNS0uNTI1LTEuMDQtMS4wNTYtMS41NTEtMS41ODJDNTMuMDE3IDI5LjE3NCA0OS45MzQgMjYgNDYgMjZzLTcuMDE3IDMuMTc0LTEwLjMwNiA2LjU2Yy0uNTExLjUyNi0xLjAyNyAxLjA1Ny0xLjU1MiAxLjU4MkExOS45MzcgMTkuOTM3IDAgMCAxIDIwIDQwYTE5LjkzNyAxOS45MzcgMCAwIDEtMTQuMTQyLTUuODU4QTE5LjkzNyAxOS45MzcgMCAwIDEgMCAyMFoiIGZpbGw9IiNGQkZCRkQiIHN0eWxlPSJmaWxsOmNvbG9yKGRpc3BsYXktcDMgLjk4NCAuOTg2MSAuOTkwNCk7ZmlsbC1vcGFjaXR5OjEiLz48L3N2Zz4=");mask-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMjBBMTkuOTM4IDE5LjkzOCAwIDAgMSA1Ljg1OCA1Ljg1OCAxOS45MzcgMTkuOTM3IDAgMCAxIDIwIDBhMTkuOTM3IDE5LjkzNyAwIDAgMSAxNC4xNDIgNS44NThjLjUyOC41MjcgMS4wNDYgMS4wNiAxLjU2IDEuNTg5QzM4Ljk4OCAxMC44MyA0Mi4wNjcgMTQgNDYgMTRjMy45MzIgMCA3LjAxMS0zLjE3IDEwLjI5OS02LjU1My41MTMtLjUyOCAxLjAzMS0xLjA2MiAxLjU1OS0xLjU5QTE5LjkzNyAxOS45MzcgMCAwIDEgNzIgMHY0MGExOS45MzcgMTkuOTM3IDAgMCAxLTE0LjE0Mi01Ljg1OGMtLjUyNS0uNTI1LTEuMDQtMS4wNTYtMS41NTEtMS41ODJDNTMuMDE3IDI5LjE3NCA0OS45MzQgMjYgNDYgMjZzLTcuMDE3IDMuMTc0LTEwLjMwNiA2LjU2Yy0uNTExLjUyNi0xLjAyNyAxLjA1Ny0xLjU1MiAxLjU4MkExOS45MzcgMTkuOTM3IDAgMCAxIDIwIDQwYTE5LjkzNyAxOS45MzcgMCAwIDEtMTQuMTQyLTUuODU4QTE5LjkzNyAxOS45MzcgMCAwIDEgMCAyMFoiIGZpbGw9IiNGQkZCRkQiIHN0eWxlPSJmaWxsOmNvbG9yKGRpc3BsYXktcDMgLjk4NCAuOTg2MSAuOTkwNCk7ZmlsbC1vcGFjaXR5OjEiLz48L3N2Zz4=");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.tw-font-geist{font-feature-settings:"ss01" on,"ss03" on}li{list-style-type:none}.squid-property-row-bg:nth-child(odd)>div{background:linear-gradient(91deg,var(--squid-theme-grey-100-005) 0,transparent 100%)}:focus-visible{outline-color:var(--squid-theme-royal-500);outline-style:solid;outline-width:2px}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}:invalid{outline-color:var(--squid-theme-status-negative)}.tw-group[data-squid-theme-type=dark] #squid-lottie-animation #keystroke{stroke:var(--squid-theme-grey-100)!important}.tw-group[data-squid-theme-type=light] #squid-lottie-animation #keystroke{stroke:var(--squid-theme-grey-900)!important}#squid-lottie-animation #keyfill{fill:var(--squid-theme-royal-500)!important}.tw-timeline-gradient-mask{-webkit-mask-image:linear-gradient(180deg,transparent 0,#000 calc(50% - 15px),#000 calc(50% + 15px),transparent);mask-image:linear-gradient(180deg,transparent 0,#000 calc(50% - 15px),#000 calc(50% + 15px),transparent)}input.date-input-no-icon::-webkit-calendar-picker-indicator,input.date-input-no-icon::-webkit-inner-spin-button{-webkit-appearance:none;display:none}@keyframes loading-gradient-scroll{0%{transform:translateX(-56%)}to{transform:translateX(0)}}.loading-gradient{--mid-color:transparent;overflow:hidden;position:relative;[data-squid-theme-type=dark] &{--mid-color:var(--squid-theme-material-light-average)}&:after{animation:loading-gradient-scroll 1s ease-in-out infinite both;background-image:linear-gradient(to right,var(--squid-theme-material-light-thin) 43%,var(--mid-color) 52%,var(--squid-theme-material-light-thin) 56%);content:"";display:block;height:100%;left:0;position:absolute;top:0;width:230%}}.boost-badge{--boost-badge-badge-color:var(--squid-theme-royal-400);--boost-badge-text-color:var(--squid-theme-grey-900);--boost-badge-shadow-color:#e4fe53;[data-squid-theme-type=dark] &{--boost-badge-badge-color:#e4fe53;--boost-badge-shadow-color:var(--squid-theme-royal-400)}}:root{.rdp{--rdp-accent-color:var(--squid-theme-material-light-thin);--rdp-background-color:transparent;margin:0!important}.rdp-month,.rdp-table{width:100%}.rdp-table{border-spacing:2px}.rdp-nav{width:28.5%;button{width:50%}}.rdp-cell,.rdp-head_cell{flex-grow:1;font-size:.875rem;height:auto;width:auto}.rdp-head_cell{height:2.5rem}.rdp-day{width:100%}.rdp-caption_label{font-weight:400}.rdp-day,.rdp-day_range_end.rdp-day_range_start{border-radius:.3125rem!important}.day-picker-from .rdp-day_range_start,.day-picker-to .rdp-day_range_end{--tw-text-opacity:1;background-color:var(--squid-theme-royal-500);color:rgb(255 255 255/var(--tw-text-opacity))}.rdp-button:hover:not([disabled]):not(.rdp-nav_button){border:2px solid var(--squid-theme-royal-500)}}.sb-show-main.sb-main-centered #storybook-root{margin:0;padding:0;width:100%}@media (min-width:480px){.sb-show-main.sb-main-centered #storybook-root{margin:auto;width:auto}}.squid-animated-loader-dash{stroke-dasharray:20.942,62.827;stroke-dashoffset:0;animation:squid-animated-loader-dash-grow var(--squid-loader-rotate-duration) infinite alternate ease-in-out}@keyframes squid-animated-loader-dash-grow{0%{stroke-dasharray:62.827;stroke-dashoffset:0}to{stroke-dasharray:4141.884;stroke-dashoffset:-20.942}}.squid-animated-loader{animation:rotate-360 var(--squid-loader-rotate-duration) linear infinite}@keyframes rotate-360{to{transform:rotate(1turn)}}.placeholder\:tw-text-grey-600::-moz-placeholder{color:var(--squid-theme-grey-600)}.placeholder\:tw-text-grey-600::placeholder{color:var(--squid-theme-grey-600)}.placeholder-shown\:tw-text-grey-600:-moz-placeholder-shown{color:var(--squid-theme-grey-600)}.placeholder-shown\:tw-text-grey-600:placeholder-shown{color:var(--squid-theme-grey-600)}.invalid\:tw-outline-status-negative:invalid{outline-color:var(--squid-theme-status-negative)}.hover\:tw-border-material-light-average:hover{border-color:var(--squid-theme-material-light-average)}.hover\:tw-bg-material-light-thin:hover{background-color:var(--squid-theme-material-light-thin)}.hover\:tw-text-grey-400:hover{color:var(--squid-theme-grey-400)}.hover\:tw-opacity-100:hover{opacity:1}.focus\:tw-bg-material-light-thin:focus{background-color:var(--squid-theme-material-light-thin)}.focus\:tw-text-royal-400:focus{color:var(--squid-theme-royal-400)}.focus\:tw-opacity-100:focus{opacity:1}.focus\:tw-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus-visible\:tw-outline-status-partial:focus-visible{outline-color:var(--squid-theme-status-partial)}.disabled\:tw-cursor-not-allowed:disabled{cursor:not-allowed}.tw-group\/base-button:hover .group-hover\/base-button\:tw-block,.tw-group\/list-item:hover .group-hover\/list-item\:tw-block{display:block}.tw-group\/history-item:hover .group-hover\/history-item\:tw-hidden{display:none}.tw-group\/flip-button:hover .group-hover\/flip-button\:tw-rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.tw-group\/boost-toggle:hover .group-hover\/boost-toggle\:tw-from-material-light-blend-grey-900{--tw-gradient-from:var(--squid-theme-material-light-blend-grey-900) var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.tw-group\/swap-step-item-button:hover .group-hover\/swap-step-item-button\:tw-from-grey-700{--tw-gradient-from:var(--squid-theme-grey-700) var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.tw-group\/collapsing-section:hover .group-hover\/collapsing-section\:tw-opacity-100{opacity:1}.tw-group\/history-item:hover .group-hover\/history-item\:tw-opacity-0{opacity:0}.tw-group\/history-item:hover .group-hover\/history-item\:tw-opacity-100,.tw-group\/list-item:focus .group-focus\/list-item\:tw-opacity-100,.tw-group\/list-item:hover .group-hover\/list-item\:tw-opacity-100{opacity:1}.tw-group\/boost-toggle:disabled .group-disabled\/boost-toggle\:tw-grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.tw-peer:focus~.peer-focus\:tw-hidden{display:none}.tw-peer:focus~.peer-focus\:tw-opacity-0{opacity:0}.aria-disabled\:tw-bg-grey-600[aria-disabled=true]{background-color:var(--squid-theme-grey-600)}.aria-disabled\:tw-text-grey-800[aria-disabled=true]{color:var(--squid-theme-grey-800)}@keyframes tw-move-to-left-with-spring-bounce{0%{transform:translateX(25%)}50%{transform:translateX(-27%)}80%{transform:translateX(-24%)}to{transform:translateX(-25%)}}.data-\[boost-mode\=boost\]\:tw-animate-move-to-left-with-spring-bounce[data-boost-mode=boost]{animation:tw-move-to-left-with-spring-bounce var(--squid-animation-move-with-spring-bounce-duration,0s) ease-out both}@keyframes tw-move-to-right-with-spring-bounce{0%{transform:translateX(-25%)}50%{transform:translateX(27%)}80%{transform:translateX(24%)}to{transform:translateX(25%)}}.data-\[boost-mode\=normal\]\:tw-animate-move-to-right-with-spring-bounce[data-boost-mode=normal]{animation:tw-move-to-right-with-spring-bounce var(--squid-animation-move-with-spring-bounce-duration,0s) ease-out both}.tw-group[data-boost-mode=boost] .group-data-\[boost-mode\=boost\]\:tw-left-\[calc\(50\%-2px\)\]{left:calc(50% - 2px)}.tw-group[data-boost-mode=normal] .group-data-\[boost-mode\=normal\]\:tw-left-\[calc\(50\%-6px\)\]{left:calc(50% - 6px)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-bg-grey-100{background-color:var(--squid-theme-grey-100)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-bg-grey-900{background-color:var(--squid-theme-grey-900)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=\'dark\'\]\:tw-bg-royal-dark{background-image:linear-gradient(180deg,#bf91f2,#a577d8)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=\'light\'\]\:tw-bg-royal-light{background-image:linear-gradient(180deg,#a577d8,#bf91f2)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-text-grey-100{color:var(--squid-theme-grey-100)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-text-material-light-average{color:var(--squid-theme-material-light-average)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-text-grey-900{color:var(--squid-theme-grey-900)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-text-transparent{color:transparent}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-shadow-elevation-dark-2{--tw-shadow:0px 2px 5px 1px rgba(0,0,0,.2),0px 5px 20px -1px rgba(0,0,0,.33);--tw-shadow-colored:0px 2px 5px 1px var(--tw-shadow-color),0px 5px 20px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-group[data-squid-theme-type=dark] .group-data-\[squid-theme-type\=dark\]\:tw-shadow-elevation-dark-3{--tw-shadow:0px 2px 4px 0px rgba(0,0,0,.2),0px 5px 50px -1px rgba(0,0,0,.33);--tw-shadow-colored:0px 2px 4px 0px var(--tw-shadow-color),0px 5px 50px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-shadow-elevation-light-2{--tw-shadow:0px 2px 5px 1px rgba(0,0,0,.1),0px 5px 20px -1px rgba(0,0,0,.1);--tw-shadow-colored:0px 2px 5px 1px var(--tw-shadow-color),0px 5px 20px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-group[data-squid-theme-type=light] .group-data-\[squid-theme-type\=light\]\:tw-shadow-elevation-light-3{--tw-shadow:0px 2px 4px 0px rgba(0,0,0,.1),0px 5px 50px -1px rgba(0,0,0,.2);--tw-shadow-colored:0px 2px 4px 0px var(--tw-shadow-color),0px 5px 50px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.tw-peer[data-boost-mode=boost]~.peer-data-\[boost-mode\=boost\]\:tw-bg-status-positive{background-color:var(--squid-theme-status-positive)}.tw-peer[data-boost-mode=normal]~.peer-data-\[boost-mode\=normal\]\:tw-bg-current{background-color:currentColor}@media (min-width:360px){.mobile-xs\:tw-flex{display:flex}.mobile-xs\:tw-w-modal-compact{width:373px}.mobile-xs\:tw-justify-normal{justify-content:normal}}@media (min-width:480px){.mobile-lg\:-tw-left-\[3px\]{left:-3px}.mobile-lg\:tw-left-\[30px\]{left:30px}.mobile-lg\:tw-left-squid-l{left:1.875rem}.mobile-lg\:tw-block{display:block}.mobile-lg\:tw-h-auto{height:auto}.mobile-lg\:tw-max-h-modal-large{max-height:600px}.mobile-lg\:tw-w-\[140px\]{width:140px}.mobile-lg\:tw-w-\[190px\]{width:190px}.mobile-lg\:tw-w-card-large{width:480px}.mobile-lg\:tw-w-full{width:100%}.mobile-lg\:tw-w-modal-extra-large{width:440px}.mobile-lg\:tw-w-modal-large{width:400px}.mobile-lg\:tw-w-squid-xl{width:2.5rem}.mobile-lg\:tw-min-w-modal-large{min-width:400px}.mobile-lg\:tw-max-w-card-large{max-width:480px}.mobile-lg\:tw-max-w-modal-large{max-width:400px}.mobile-lg\:tw-rounded-squid-l{border-radius:1.875rem}.mobile-lg\:tw-px-squid-l{padding-left:1.875rem;padding-right:1.875rem}.mobile-lg\:tw-px-squid-m{padding-left:1.25rem;padding-right:1.25rem}.mobile-lg\:tw-px-squid-xs{padding-left:.625rem;padding-right:.625rem}.mobile-lg\:tw-px-squid-xxs{padding-left:.3125rem;padding-right:.3125rem}.mobile-lg\:tw-pl-squid-l{padding-left:1.875rem}}@media (min-height:650px){.mobile-xs-height\:tw-flex{display:flex}.mobile-xs-height\:tw-h-\[160px\]{height:160px}.mobile-xs-height\:tw-h-\[195px\]{height:195px}.mobile-xs-height\:tw-h-card-compact{height:640px}.mobile-xs-height\:tw-max-h-\[535px\]{max-height:535px}.mobile-xs-height\:tw-w-\[unset\]{width:unset}.mobile-xs-height\:tw-flex-col{flex-direction:column}.mobile-xs-height\:tw-pr-squid-m{padding-right:1.25rem}}@media (min-height:670px){.mobile-sm-height\:tw-h-\[205px\]{height:205px}.mobile-sm-height\:tw-h-\[65px\]{height:65px}.mobile-sm-height\:tw-h-\[75px\]{height:75px}.mobile-sm-height\:tw-h-card-large{height:660px}.mobile-sm-height\:tw-max-h-\[535px\]{max-height:535px}.mobile-sm-height\:tw-py-squid-s{padding-bottom:.9375rem;padding-top:.9375rem}}@media (prefers-color-scheme:dark){.dark\:tw-border-b-material-light-thin{border-bottom-color:var(--squid-theme-material-light-thin)}.dark\:tw-bg-material-dark-thick{background-color:var(--squid-theme-material-dark-thick)}.dark\:tw-text-grey-900{color:var(--squid-theme-grey-900)}}
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "git+https://github.com/0xsquid/squid-ui.git"
6
6
  },
7
7
  "description": "Squid's UI components",
8
- "version": "0.23.0-beta.0",
8
+ "version": "0.23.1",
9
9
  "author": "",
10
10
  "license": "MIT",
11
11
  "resolutions": {