@xsolla/xui-core 0.182.0 → 0.183.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.mjs CHANGED
@@ -3770,7 +3770,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3770
3770
  iconSize: 22,
3771
3771
  gap: 6,
3772
3772
  borderRadius: shape.toggleButtonGroup.xl.borderRadius,
3773
- itemGap: 8
3773
+ itemGap: 8,
3774
+ tooltipSize: "lg"
3774
3775
  },
3775
3776
  lg: {
3776
3777
  height: 56,
@@ -3780,7 +3781,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3780
3781
  iconSize: 20,
3781
3782
  gap: 4,
3782
3783
  borderRadius: shape.toggleButtonGroup.lg.borderRadius,
3783
- itemGap: 8
3784
+ itemGap: 8,
3785
+ tooltipSize: "md"
3784
3786
  },
3785
3787
  md: {
3786
3788
  height: 48,
@@ -3790,7 +3792,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3790
3792
  iconSize: 18,
3791
3793
  gap: 4,
3792
3794
  borderRadius: shape.toggleButtonGroup.md.borderRadius,
3793
- itemGap: 6
3795
+ itemGap: 6,
3796
+ tooltipSize: "md"
3794
3797
  },
3795
3798
  sm: {
3796
3799
  height: 40,
@@ -3800,7 +3803,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3800
3803
  iconSize: 16,
3801
3804
  gap: 4,
3802
3805
  borderRadius: shape.toggleButtonGroup.sm.borderRadius,
3803
- itemGap: 4
3806
+ itemGap: 4,
3807
+ tooltipSize: "sm"
3804
3808
  },
3805
3809
  xs: {
3806
3810
  height: 32,
@@ -3810,7 +3814,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3810
3814
  iconSize: 14,
3811
3815
  gap: 4,
3812
3816
  borderRadius: shape.toggleButtonGroup.xs.borderRadius,
3813
- itemGap: 4
3817
+ itemGap: 4,
3818
+ tooltipSize: "sm"
3814
3819
  }
3815
3820
  };
3816
3821
  return configs[size];