@xsolla/xui-core 0.182.0 → 0.184.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 +5 -0
- package/index.d.ts +5 -0
- package/index.js +12 -7
- package/index.js.map +1 -1
- package/index.mjs +12 -7
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1220,7 +1220,7 @@ var ltg_dark_default = {
|
|
|
1220
1220
|
var blueprints_default = {
|
|
1221
1221
|
background: {
|
|
1222
1222
|
primary: "#ffffff",
|
|
1223
|
-
secondary: "
|
|
1223
|
+
secondary: "#f5f6f4",
|
|
1224
1224
|
brand: {
|
|
1225
1225
|
primary: "#80eaff",
|
|
1226
1226
|
secondary: "#b2f2ff"
|
|
@@ -1295,7 +1295,7 @@ var blueprints_default = {
|
|
|
1295
1295
|
},
|
|
1296
1296
|
border: {
|
|
1297
1297
|
primary: "#000000",
|
|
1298
|
-
secondary: "
|
|
1298
|
+
secondary: "rgba(0, 0, 0, 0.08)",
|
|
1299
1299
|
brand: "#31cae8",
|
|
1300
1300
|
brandExtra: "#5031e8",
|
|
1301
1301
|
inverse: "rgba(255, 255, 255, 0.17)",
|
|
@@ -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];
|