@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.d.mts CHANGED
@@ -6625,6 +6625,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6625
6625
  gap: number;
6626
6626
  borderRadius: 8;
6627
6627
  itemGap: number;
6628
+ tooltipSize: "lg";
6628
6629
  } | {
6629
6630
  height: number;
6630
6631
  paddingHorizontal: number;
@@ -6634,6 +6635,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6634
6635
  gap: number;
6635
6636
  borderRadius: 8;
6636
6637
  itemGap: number;
6638
+ tooltipSize: "md";
6637
6639
  } | {
6638
6640
  height: number;
6639
6641
  paddingHorizontal: number;
@@ -6643,6 +6645,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6643
6645
  gap: number;
6644
6646
  borderRadius: 6;
6645
6647
  itemGap: number;
6648
+ tooltipSize: "md";
6646
6649
  } | {
6647
6650
  height: number;
6648
6651
  paddingHorizontal: number;
@@ -6652,6 +6655,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6652
6655
  gap: number;
6653
6656
  borderRadius: 4;
6654
6657
  itemGap: number;
6658
+ tooltipSize: "sm";
6655
6659
  } | {
6656
6660
  height: number;
6657
6661
  paddingHorizontal: number;
@@ -6661,6 +6665,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6661
6665
  gap: number;
6662
6666
  borderRadius: 4;
6663
6667
  itemGap: number;
6668
+ tooltipSize: "sm";
6664
6669
  };
6665
6670
  table: {
6666
6671
  containerRadius: number;
package/index.d.ts CHANGED
@@ -6625,6 +6625,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6625
6625
  gap: number;
6626
6626
  borderRadius: 8;
6627
6627
  itemGap: number;
6628
+ tooltipSize: "lg";
6628
6629
  } | {
6629
6630
  height: number;
6630
6631
  paddingHorizontal: number;
@@ -6634,6 +6635,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6634
6635
  gap: number;
6635
6636
  borderRadius: 8;
6636
6637
  itemGap: number;
6638
+ tooltipSize: "md";
6637
6639
  } | {
6638
6640
  height: number;
6639
6641
  paddingHorizontal: number;
@@ -6643,6 +6645,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6643
6645
  gap: number;
6644
6646
  borderRadius: 6;
6645
6647
  itemGap: number;
6648
+ tooltipSize: "md";
6646
6649
  } | {
6647
6650
  height: number;
6648
6651
  paddingHorizontal: number;
@@ -6652,6 +6655,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6652
6655
  gap: number;
6653
6656
  borderRadius: 4;
6654
6657
  itemGap: number;
6658
+ tooltipSize: "sm";
6655
6659
  } | {
6656
6660
  height: number;
6657
6661
  paddingHorizontal: number;
@@ -6661,6 +6665,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
6661
6665
  gap: number;
6662
6666
  borderRadius: 4;
6663
6667
  itemGap: number;
6668
+ tooltipSize: "sm";
6664
6669
  };
6665
6670
  table: {
6666
6671
  containerRadius: number;
package/index.js CHANGED
@@ -3841,7 +3841,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3841
3841
  iconSize: 22,
3842
3842
  gap: 6,
3843
3843
  borderRadius: shape.toggleButtonGroup.xl.borderRadius,
3844
- itemGap: 8
3844
+ itemGap: 8,
3845
+ tooltipSize: "lg"
3845
3846
  },
3846
3847
  lg: {
3847
3848
  height: 56,
@@ -3851,7 +3852,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3851
3852
  iconSize: 20,
3852
3853
  gap: 4,
3853
3854
  borderRadius: shape.toggleButtonGroup.lg.borderRadius,
3854
- itemGap: 8
3855
+ itemGap: 8,
3856
+ tooltipSize: "md"
3855
3857
  },
3856
3858
  md: {
3857
3859
  height: 48,
@@ -3861,7 +3863,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3861
3863
  iconSize: 18,
3862
3864
  gap: 4,
3863
3865
  borderRadius: shape.toggleButtonGroup.md.borderRadius,
3864
- itemGap: 6
3866
+ itemGap: 6,
3867
+ tooltipSize: "md"
3865
3868
  },
3866
3869
  sm: {
3867
3870
  height: 40,
@@ -3871,7 +3874,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3871
3874
  iconSize: 16,
3872
3875
  gap: 4,
3873
3876
  borderRadius: shape.toggleButtonGroup.sm.borderRadius,
3874
- itemGap: 4
3877
+ itemGap: 4,
3878
+ tooltipSize: "sm"
3875
3879
  },
3876
3880
  xs: {
3877
3881
  height: 32,
@@ -3881,7 +3885,8 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
3881
3885
  iconSize: 14,
3882
3886
  gap: 4,
3883
3887
  borderRadius: shape.toggleButtonGroup.xs.borderRadius,
3884
- itemGap: 4
3888
+ itemGap: 4,
3889
+ tooltipSize: "sm"
3885
3890
  }
3886
3891
  };
3887
3892
  return configs[size];