@0xsquid/ui 0.13.5 → 0.13.6

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
@@ -2682,10 +2682,11 @@ const roundedClassMap = {
2682
2682
  md: 'tw-rounded-squid-m',
2683
2683
  lg: 'tw-rounded-squid-xxl',
2684
2684
  };
2685
+ const buttonBorderClassName = 'tw-border-material-light-thin hover:tw-border-material-light-average';
2685
2686
  const buttonVariantClassMap = {
2686
- primary: 'tw-bg-royal-500 group-data-[squid-theme-type=light]:tw-text-grey-900 group-data-[squid-theme-type=dark]:tw-text-grey-100 tw-border-material-light-thin',
2687
- secondary: 'tw-bg-grey-100 tw-text-grey-800 tw-border-material-light-thin',
2688
- tertiary: 'tw-bg-grey-800 tw-text-grey-300 tw-border-material-light-thin',
2687
+ primary: 'tw-bg-royal-500 group-data-[squid-theme-type=light]:tw-text-grey-900 group-data-[squid-theme-type=dark]:tw-text-grey-100',
2688
+ secondary: 'tw-bg-grey-100 tw-text-grey-800',
2689
+ tertiary: 'tw-bg-grey-800 tw-text-grey-300',
2689
2690
  };
2690
2691
  // right now all variants have the same disabled styles
2691
2692
  // in the future, we can add more disabled styles for different variants
@@ -2699,7 +2700,7 @@ function Button(_a) {
2699
2700
  icon) : (
2700
2701
  // icon and label
2701
2702
  jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [icon, jsxRuntime.jsx(BodyText, { className: "tw-pr-1", size: "small", children: label })] }))) : null })] }));
2702
- const className = cn(baseButtonClassName, buttonSizeClassMap[size], buttonVariantClassMap[variant], roundedClassMap[size],
2703
+ const className = cn(baseButtonClassName, buttonSizeClassMap[size], buttonVariantClassMap[variant], buttonBorderClassName, roundedClassMap[size],
2703
2704
  // disabled styles
2704
2705
  disabled && buttonDisabledClass,
2705
2706
  // custom classes from props
@@ -3592,15 +3593,18 @@ function SwapStepsCollapsed({ steps, currentStepIndex: _newStepIndex, onOpen, on
3592
3593
  onOpen === null || onOpen === void 0 ? void 0 : onOpen();
3593
3594
  }
3594
3595
  };
3595
- return (jsxRuntime.jsx("div", { className: "tw-relative tw-h-[60px] tw-w-[400px]", children: jsxRuntime.jsxs("div", { className: cn('tw-absolute tw-bottom-0 tw-z-20 tw-flex tw-w-full tw-max-w-[400px] tw-flex-col tw-justify-end tw-gap-squid-xxs tw-overflow-hidden tw-rounded-squid-l', isRouteVisible ? 'tw-h-[536px]' : 'tw-h-[60px]'), children: [jsxRuntime.jsx("div", { style: {
3596
+ return (jsxRuntime.jsx("div", { className: "tw-relative tw-h-[60px] tw-min-w-[400px] tw-rounded-squid-l", children: jsxRuntime.jsxs("div", { className: cn('tw-absolute tw-bottom-0 tw-z-10 tw-flex tw-w-full tw-max-w-[400px] tw-flex-col tw-justify-end tw-gap-squid-xxs tw-overflow-hidden tw-rounded-squid-l', isRouteVisible ? 'tw-h-[535px]' : 'tw-h-[60px]'), 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", { style: {
3596
3597
  [CSS_VARS.FADE_OUT_DURATION]: `${ANIMATION_DURATIONS.HIDE_ROUTE}ms`,
3597
3598
  [CSS_VARS.FADE_IN_DURATION]: `${ANIMATION_DURATIONS.SHOW_ROUTE}ms`,
3598
- }, className: cn('tw-absolute tw-top-0 tw-h-[536px] tw-w-full tw-rounded-squid-l tw-bg-material-dark-thick tw-opacity-0 tw-backdrop-blur/10') }), jsxRuntime.jsx("div", { onClick: isShowRouteAnimationRunning ? undefined : handleToggleRouteSteps, style: {
3599
+ }, className: cn('tw-absolute tw-top-0 tw-h-[535px] tw-w-full tw-rounded-squid-l tw-bg-material-dark-thick tw-opacity-0 tw-backdrop-blur/10') }), jsxRuntime.jsx("div", { style: {
3600
+ zIndex: 20,
3601
+ display: isRouteVisible ? 'none' : 'block',
3602
+ }, 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: {
3599
3603
  [CSS_VARS.COLLAPSE_ROUTE_DURATION]: `${ANIMATION_DURATIONS.HIDE_ROUTE}ms`,
3600
3604
  [CSS_VARS.EXPAND_ROUTE_DURATION]: `${ANIMATION_DURATIONS.SHOW_ROUTE}ms`,
3601
- }, className: cn('tw-h-[60px] tw-max-h-[536px] 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', isShowRouteAnimationRunning
3605
+ }, 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', isShowRouteAnimationRunning
3602
3606
  ? 'tw-animate-expand-route'
3603
- : 'tw-animate-collapse-route'), children: jsxRuntime.jsxs("div", { className: "tw-flex tw-flex-col tw-gap-squid-xxs", style: {
3607
+ : 'tw-animate-collapse-route'), children: jsxRuntime.jsxs("div", { className: "tw-flex tw-h-[535px] tw-flex-col tw-gap-squid-xxs", style: {
3604
3608
  transition: isShowRouteAnimationRunning
3605
3609
  ? `transform ${ANIMATION_DURATIONS.SHOW_ROUTE}ms ${ANIMATION_TIMINGS.CHANGE_SWAP_STEP}`
3606
3610
  : isRouteVisible
@@ -3608,12 +3612,15 @@ function SwapStepsCollapsed({ steps, currentStepIndex: _newStepIndex, onOpen, on
3608
3612
  : `transform ${ANIMATION_DURATIONS.CHANGE_SWAP_STEP}ms ${ANIMATION_TIMINGS.CHANGE_SWAP_STEP}`,
3609
3613
  transform: isShowRouteAnimationRunning
3610
3614
  ? 'translateY(0)'
3611
- : `translateY(-${536 - 50 - (newStepIndex + 1) * 50 - 20}px)`,
3612
- }, children: [jsxRuntime.jsx("div", { className: cn('tw-bg-red- tw-absolute tw-z-10 tw-flex tw-h-[52px] tw-w-full tw-items-center tw-justify-center tw-gap-squid-xs tw-self-stretch tw-bg-transparent tw-p-squid-xs'), children: jsxRuntime.jsx("button", { onClick: handleToggleRouteSteps, className: "tw-flex tw-h-squid-xl tw-w-40 tw-items-center tw-justify-center tw-rounded-squid-xs tw-px-10 hover:tw-bg-material-light-thin", children: jsxRuntime.jsx("span", { className: "tw-flex tw-h-8 tw-w-8 tw-items-center tw-justify-center tw-text-grey-300", children: jsxRuntime.jsx(ChevronLargeDownIcon, { size: "32" }) }) }) }), jsxRuntime.jsx("ul", { className: "tw-relative tw-flex tw-min-h-[460px] tw-w-[400px] tw-flex-1 tw-flex-col-reverse tw-items-center tw-self-stretch tw-overflow-y-auto tw-overflow-x-hidden tw-px-squid-xs", children: steps.map((step, index) => (jsxRuntime.jsx(SwapStepItem, { descriptionBlocks: step.descriptionBlocks, chipContent: step.chipContent, showStepSeparator: !(index === steps.length - 1), link: step.link, status: newStepIndex < index
3615
+ : `translateY(-${535 - 50 - (newStepIndex + 1) * 50 - 30}px)`,
3616
+ }, children: [jsxRuntime.jsx("div", { className: cn('tw-absolute tw-z-10 tw-flex tw-h-[52px] tw-w-full tw-items-center tw-justify-center tw-gap-squid-xs tw-self-stretch tw-bg-transparent tw-p-squid-xs'), children: jsxRuntime.jsx("button", { onClick: handleToggleRouteSteps, className: "tw-flex tw-h-squid-xl tw-w-40 tw-items-center tw-justify-center tw-rounded-squid-xs tw-px-10 hover:tw-bg-material-light-thin", children: jsxRuntime.jsx("span", { className: "tw-flex tw-h-8 tw-w-8 tw-items-center tw-justify-center tw-text-grey-300", children: jsxRuntime.jsx(ChevronLargeDownIcon, { size: "32" }) }) }) }), jsxRuntime.jsx("ul", { style: {
3617
+ zIndex: isRouteVisible ? 0 : -10,
3618
+ scrollbarWidth: 'none',
3619
+ }, className: "tw-relative tw-top-[52px] tw-flex tw-max-h-[413px] tw-w-[400px] tw-flex-1 tw-flex-col-reverse tw-items-center tw-self-stretch tw-overflow-y-auto tw-overflow-x-hidden tw-px-squid-xs tw-py-[15px]", children: steps.map((step, index) => (jsxRuntime.jsx(SwapStepItem, { descriptionBlocks: step.descriptionBlocks, chipContent: step.chipContent, showStepSeparator: !(index === steps.length - 1), link: step.link, status: newStepIndex < index
3613
3620
  ? 'pending'
3614
3621
  : newStepIndex > index
3615
3622
  ? 'executed'
3616
- : 'progress' }, index))) }), jsxRuntime.jsx("footer", { className: "tw-flex tw-items-end tw-justify-center tw-gap-squid-xs tw-self-stretch tw-p-squid-s", children: jsxRuntime.jsx(Button, { size: "md", variant: "secondary", label: "View on Squidscan", className: "tw-w-full" }) })] }) })] }) }));
3623
+ : 'progress' }, index))) }), jsxRuntime.jsx("footer", { className: "tw-absolute tw-bottom-0 tw-flex tw-w-full tw-items-end tw-justify-center tw-gap-squid-xs tw-self-stretch tw-p-squid-s", children: jsxRuntime.jsx(Button, { size: "md", variant: "secondary", label: "View on Squidscan", className: "tw-w-full" }) })] }) })] }) }));
3617
3624
  }
3618
3625
 
3619
3626
  function TokenPair({ firstToken, secondToken }) {
package/dist/esm/index.js CHANGED
@@ -2662,10 +2662,11 @@ const roundedClassMap = {
2662
2662
  md: 'tw-rounded-squid-m',
2663
2663
  lg: 'tw-rounded-squid-xxl',
2664
2664
  };
2665
+ const buttonBorderClassName = 'tw-border-material-light-thin hover:tw-border-material-light-average';
2665
2666
  const buttonVariantClassMap = {
2666
- primary: 'tw-bg-royal-500 group-data-[squid-theme-type=light]:tw-text-grey-900 group-data-[squid-theme-type=dark]:tw-text-grey-100 tw-border-material-light-thin',
2667
- secondary: 'tw-bg-grey-100 tw-text-grey-800 tw-border-material-light-thin',
2668
- tertiary: 'tw-bg-grey-800 tw-text-grey-300 tw-border-material-light-thin',
2667
+ primary: 'tw-bg-royal-500 group-data-[squid-theme-type=light]:tw-text-grey-900 group-data-[squid-theme-type=dark]:tw-text-grey-100',
2668
+ secondary: 'tw-bg-grey-100 tw-text-grey-800',
2669
+ tertiary: 'tw-bg-grey-800 tw-text-grey-300',
2669
2670
  };
2670
2671
  // right now all variants have the same disabled styles
2671
2672
  // in the future, we can add more disabled styles for different variants
@@ -2679,7 +2680,7 @@ function Button(_a) {
2679
2680
  icon) : (
2680
2681
  // icon and label
2681
2682
  jsxs(Fragment, { children: [icon, jsx(BodyText, { className: "tw-pr-1", size: "small", children: label })] }))) : null })] }));
2682
- const className = cn(baseButtonClassName, buttonSizeClassMap[size], buttonVariantClassMap[variant], roundedClassMap[size],
2683
+ const className = cn(baseButtonClassName, buttonSizeClassMap[size], buttonVariantClassMap[variant], buttonBorderClassName, roundedClassMap[size],
2683
2684
  // disabled styles
2684
2685
  disabled && buttonDisabledClass,
2685
2686
  // custom classes from props
@@ -3572,15 +3573,18 @@ function SwapStepsCollapsed({ steps, currentStepIndex: _newStepIndex, onOpen, on
3572
3573
  onOpen === null || onOpen === void 0 ? void 0 : onOpen();
3573
3574
  }
3574
3575
  };
3575
- return (jsx("div", { className: "tw-relative tw-h-[60px] tw-w-[400px]", children: jsxs("div", { className: cn('tw-absolute tw-bottom-0 tw-z-20 tw-flex tw-w-full tw-max-w-[400px] tw-flex-col tw-justify-end tw-gap-squid-xxs tw-overflow-hidden tw-rounded-squid-l', isRouteVisible ? 'tw-h-[536px]' : 'tw-h-[60px]'), children: [jsx("div", { style: {
3576
+ return (jsx("div", { className: "tw-relative tw-h-[60px] tw-min-w-[400px] tw-rounded-squid-l", children: jsxs("div", { className: cn('tw-absolute tw-bottom-0 tw-z-10 tw-flex tw-w-full tw-max-w-[400px] tw-flex-col tw-justify-end tw-gap-squid-xxs tw-overflow-hidden tw-rounded-squid-l', isRouteVisible ? 'tw-h-[535px]' : 'tw-h-[60px]'), 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", { style: {
3576
3577
  [CSS_VARS.FADE_OUT_DURATION]: `${ANIMATION_DURATIONS.HIDE_ROUTE}ms`,
3577
3578
  [CSS_VARS.FADE_IN_DURATION]: `${ANIMATION_DURATIONS.SHOW_ROUTE}ms`,
3578
- }, className: cn('tw-absolute tw-top-0 tw-h-[536px] tw-w-full tw-rounded-squid-l tw-bg-material-dark-thick tw-opacity-0 tw-backdrop-blur/10') }), jsx("div", { onClick: isShowRouteAnimationRunning ? undefined : handleToggleRouteSteps, style: {
3579
+ }, className: cn('tw-absolute tw-top-0 tw-h-[535px] tw-w-full tw-rounded-squid-l tw-bg-material-dark-thick tw-opacity-0 tw-backdrop-blur/10') }), jsx("div", { style: {
3580
+ zIndex: 20,
3581
+ display: isRouteVisible ? 'none' : 'block',
3582
+ }, 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: {
3579
3583
  [CSS_VARS.COLLAPSE_ROUTE_DURATION]: `${ANIMATION_DURATIONS.HIDE_ROUTE}ms`,
3580
3584
  [CSS_VARS.EXPAND_ROUTE_DURATION]: `${ANIMATION_DURATIONS.SHOW_ROUTE}ms`,
3581
- }, className: cn('tw-h-[60px] tw-max-h-[536px] 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', isShowRouteAnimationRunning
3585
+ }, 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', isShowRouteAnimationRunning
3582
3586
  ? 'tw-animate-expand-route'
3583
- : 'tw-animate-collapse-route'), children: jsxs("div", { className: "tw-flex tw-flex-col tw-gap-squid-xxs", style: {
3587
+ : 'tw-animate-collapse-route'), children: jsxs("div", { className: "tw-flex tw-h-[535px] tw-flex-col tw-gap-squid-xxs", style: {
3584
3588
  transition: isShowRouteAnimationRunning
3585
3589
  ? `transform ${ANIMATION_DURATIONS.SHOW_ROUTE}ms ${ANIMATION_TIMINGS.CHANGE_SWAP_STEP}`
3586
3590
  : isRouteVisible
@@ -3588,12 +3592,15 @@ function SwapStepsCollapsed({ steps, currentStepIndex: _newStepIndex, onOpen, on
3588
3592
  : `transform ${ANIMATION_DURATIONS.CHANGE_SWAP_STEP}ms ${ANIMATION_TIMINGS.CHANGE_SWAP_STEP}`,
3589
3593
  transform: isShowRouteAnimationRunning
3590
3594
  ? 'translateY(0)'
3591
- : `translateY(-${536 - 50 - (newStepIndex + 1) * 50 - 20}px)`,
3592
- }, children: [jsx("div", { className: cn('tw-bg-red- tw-absolute tw-z-10 tw-flex tw-h-[52px] tw-w-full tw-items-center tw-justify-center tw-gap-squid-xs tw-self-stretch tw-bg-transparent tw-p-squid-xs'), children: jsx("button", { onClick: handleToggleRouteSteps, className: "tw-flex tw-h-squid-xl tw-w-40 tw-items-center tw-justify-center tw-rounded-squid-xs tw-px-10 hover:tw-bg-material-light-thin", children: jsx("span", { className: "tw-flex tw-h-8 tw-w-8 tw-items-center tw-justify-center tw-text-grey-300", children: jsx(ChevronLargeDownIcon, { size: "32" }) }) }) }), jsx("ul", { className: "tw-relative tw-flex tw-min-h-[460px] tw-w-[400px] tw-flex-1 tw-flex-col-reverse tw-items-center tw-self-stretch tw-overflow-y-auto tw-overflow-x-hidden tw-px-squid-xs", children: steps.map((step, index) => (jsx(SwapStepItem, { descriptionBlocks: step.descriptionBlocks, chipContent: step.chipContent, showStepSeparator: !(index === steps.length - 1), link: step.link, status: newStepIndex < index
3595
+ : `translateY(-${535 - 50 - (newStepIndex + 1) * 50 - 30}px)`,
3596
+ }, children: [jsx("div", { className: cn('tw-absolute tw-z-10 tw-flex tw-h-[52px] tw-w-full tw-items-center tw-justify-center tw-gap-squid-xs tw-self-stretch tw-bg-transparent tw-p-squid-xs'), children: jsx("button", { onClick: handleToggleRouteSteps, className: "tw-flex tw-h-squid-xl tw-w-40 tw-items-center tw-justify-center tw-rounded-squid-xs tw-px-10 hover:tw-bg-material-light-thin", children: jsx("span", { className: "tw-flex tw-h-8 tw-w-8 tw-items-center tw-justify-center tw-text-grey-300", children: jsx(ChevronLargeDownIcon, { size: "32" }) }) }) }), jsx("ul", { style: {
3597
+ zIndex: isRouteVisible ? 0 : -10,
3598
+ scrollbarWidth: 'none',
3599
+ }, className: "tw-relative tw-top-[52px] tw-flex tw-max-h-[413px] tw-w-[400px] tw-flex-1 tw-flex-col-reverse tw-items-center tw-self-stretch tw-overflow-y-auto tw-overflow-x-hidden tw-px-squid-xs tw-py-[15px]", children: steps.map((step, index) => (jsx(SwapStepItem, { descriptionBlocks: step.descriptionBlocks, chipContent: step.chipContent, showStepSeparator: !(index === steps.length - 1), link: step.link, status: newStepIndex < index
3593
3600
  ? 'pending'
3594
3601
  : newStepIndex > index
3595
3602
  ? 'executed'
3596
- : 'progress' }, index))) }), jsx("footer", { className: "tw-flex tw-items-end tw-justify-center tw-gap-squid-xs tw-self-stretch tw-p-squid-s", children: jsx(Button, { size: "md", variant: "secondary", label: "View on Squidscan", className: "tw-w-full" }) })] }) })] }) }));
3603
+ : 'progress' }, index))) }), jsx("footer", { className: "tw-absolute tw-bottom-0 tw-flex tw-w-full tw-items-end tw-justify-center tw-gap-squid-xs tw-self-stretch tw-p-squid-s", children: jsx(Button, { size: "md", variant: "secondary", label: "View on Squidscan", className: "tw-w-full" }) })] }) })] }) }));
3597
3604
  }
3598
3605
 
3599
3606
  function TokenPair({ firstToken, secondToken }) {
package/dist/index.css CHANGED
@@ -633,10 +633,6 @@ video {
633
633
  top: -55px;
634
634
  }
635
635
 
636
- .-tw-top-full {
637
- top: -100%;
638
- }
639
-
640
636
  .tw-bottom-0 {
641
637
  bottom: 0px;
642
638
  }
@@ -753,8 +749,8 @@ video {
753
749
  top: 1.75rem;
754
750
  }
755
751
 
756
- .tw-top-full {
757
- top: 100%;
752
+ .tw-top-\[52px\] {
753
+ top: 52px;
758
754
  }
759
755
 
760
756
  .tw-top-squid-xxs {
@@ -952,6 +948,10 @@ video {
952
948
  height: 52px;
953
949
  }
954
950
 
951
+ .tw-h-\[535px\] {
952
+ height: 535px;
953
+ }
954
+
955
955
  .tw-h-\[536px\] {
956
956
  height: 536px;
957
957
  }
@@ -1024,12 +1024,12 @@ video {
1024
1024
  max-height: 205px;
1025
1025
  }
1026
1026
 
1027
- .tw-max-h-\[535px\] {
1028
- max-height: 535px;
1027
+ .tw-max-h-\[413px\] {
1028
+ max-height: 413px;
1029
1029
  }
1030
1030
 
1031
- .tw-max-h-\[536px\] {
1032
- max-height: 536px;
1031
+ .tw-max-h-\[535px\] {
1032
+ max-height: 535px;
1033
1033
  }
1034
1034
 
1035
1035
  .tw-max-h-\[540px\] {
@@ -1068,10 +1068,6 @@ video {
1068
1068
  min-height: 30px;
1069
1069
  }
1070
1070
 
1071
- .tw-min-h-\[460px\] {
1072
- min-height: 460px;
1073
- }
1074
-
1075
1071
  .tw-min-h-button {
1076
1072
  min-height: 3.75rem;
1077
1073
  }
@@ -1299,6 +1295,10 @@ video {
1299
1295
  min-width: 30px;
1300
1296
  }
1301
1297
 
1298
+ .tw-min-w-\[400px\] {
1299
+ min-width: 400px;
1300
+ }
1301
+
1302
1302
  .tw-min-w-\[60px\] {
1303
1303
  min-width: 60px;
1304
1304
  }
@@ -1566,34 +1566,6 @@ video {
1566
1566
  animation: tw-slide-to-top 0.35s ease-out both;
1567
1567
  }
1568
1568
 
1569
- @keyframes tw-translate-to-bottom {
1570
- 0% {
1571
- transform: translateY(0);
1572
- }
1573
-
1574
- 100% {
1575
- transform: translateY(100%);
1576
- }
1577
- }
1578
-
1579
- .tw-animate-translate-to-bottom {
1580
- animation: tw-translate-to-bottom var(--squid-animation-translate-top-or-bottom, 0s) linear both;
1581
- }
1582
-
1583
- @keyframes tw-translate-to-top {
1584
- 0% {
1585
- transform: translateY(0);
1586
- }
1587
-
1588
- 100% {
1589
- transform: translateY(-100%);
1590
- }
1591
- }
1592
-
1593
- .tw-animate-translate-to-top {
1594
- animation: tw-translate-to-top var(--squid-animation-translate-top-or-bottom, 0s) linear both;
1595
- }
1596
-
1597
1569
  .tw-cursor-help {
1598
1570
  cursor: help;
1599
1571
  }
@@ -2139,6 +2111,11 @@ video {
2139
2111
  padding-bottom: 0.5rem;
2140
2112
  }
2141
2113
 
2114
+ .tw-py-\[15px\] {
2115
+ padding-top: 15px;
2116
+ padding-bottom: 15px;
2117
+ }
2118
+
2142
2119
  .tw-py-squid-s {
2143
2120
  padding-top: 0.9375rem;
2144
2121
  padding-bottom: 0.9375rem;
@@ -2764,8 +2741,8 @@ input[type='number'] {
2764
2741
  animation: tw-display 0s var(--squid-animation-display-delayed-duration, 0s) ease-out both;
2765
2742
  }
2766
2743
 
2767
- .hover\:tw-bg-grey-700:hover {
2768
- background-color: var(--squid-theme-grey-700);
2744
+ .hover\:tw-border-material-light-average:hover {
2745
+ border-color: var(--squid-theme-material-light-average);
2769
2746
  }
2770
2747
 
2771
2748
  .hover\:tw-bg-material-light-thin:hover {
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.13.5",
8
+ "version": "0.13.6",
9
9
  "author": "",
10
10
  "license": "MIT",
11
11
  "resolutions": {