@xsolla/xui-multi-select 0.188.2 → 0.188.4
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/native/index.js +8 -4
- package/native/index.js.map +1 -1
- package/native/index.mjs +8 -4
- package/native/index.mjs.map +1 -1
- package/package.json +5 -5
- package/web/index.js +12 -6
- package/web/index.js.map +1 -1
- package/web/index.mjs +12 -6
- package/web/index.mjs.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xsolla/xui-multi-select",
|
|
3
|
-
"version": "0.188.
|
|
3
|
+
"version": "0.188.4",
|
|
4
4
|
"main": "./web/index.js",
|
|
5
5
|
"module": "./web/index.mjs",
|
|
6
6
|
"types": "./web/index.d.ts",
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"build:native": "PLATFORM=native tsup"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xsolla/xui-checkbox": "0.188.
|
|
14
|
-
"@xsolla/xui-core": "0.188.
|
|
15
|
-
"@xsolla/xui-dropdown": "0.188.
|
|
16
|
-
"@xsolla/xui-primitives-core": "0.188.
|
|
13
|
+
"@xsolla/xui-checkbox": "0.188.4",
|
|
14
|
+
"@xsolla/xui-core": "0.188.4",
|
|
15
|
+
"@xsolla/xui-dropdown": "0.188.4",
|
|
16
|
+
"@xsolla/xui-primitives-core": "0.188.4"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"react": ">=16.8.0",
|
package/web/index.js
CHANGED
|
@@ -337,11 +337,13 @@ var StyledIcon = (0, import_styled_components3.default)(FilteredDiv2)`
|
|
|
337
337
|
height: ${(props) => typeof props.size === "number" ? `${props.size}px` : props.size || "24px"};
|
|
338
338
|
color: ${(props) => props.color || "currentColor"};
|
|
339
339
|
|
|
340
|
+
/* Icons paint themselves — each icon's own SVG sets its fill/stroke
|
|
341
|
+
(icons-base via inline "fill: currentColor", Lucide via "fill"/"stroke"
|
|
342
|
+
attributes). Do not add fill/stroke here: it re-strokes fill-based icons
|
|
343
|
+
and thickens the glyph. See FEP-877. */
|
|
340
344
|
svg {
|
|
341
345
|
width: 100%;
|
|
342
346
|
height: 100%;
|
|
343
|
-
fill: none;
|
|
344
|
-
stroke: currentColor;
|
|
345
347
|
}
|
|
346
348
|
`;
|
|
347
349
|
var Icon = ({
|
|
@@ -1312,11 +1314,13 @@ var StyledIcon3 = (0, import_styled_components5.default)(FilteredDiv3)`
|
|
|
1312
1314
|
height: ${(props) => typeof props.size === "number" ? `${props.size}px` : props.size || "24px"};
|
|
1313
1315
|
color: ${(props) => props.color || "currentColor"};
|
|
1314
1316
|
|
|
1317
|
+
/* Icons paint themselves — each icon's own SVG sets its fill/stroke
|
|
1318
|
+
(icons-base via inline "fill: currentColor", Lucide via "fill"/"stroke"
|
|
1319
|
+
attributes). Do not add fill/stroke here: it re-strokes fill-based icons
|
|
1320
|
+
and thickens the glyph. See FEP-877. */
|
|
1315
1321
|
svg {
|
|
1316
1322
|
width: 100%;
|
|
1317
1323
|
height: 100%;
|
|
1318
|
-
fill: none;
|
|
1319
|
-
stroke: currentColor;
|
|
1320
1324
|
}
|
|
1321
1325
|
`;
|
|
1322
1326
|
var Icon3 = ({
|
|
@@ -1608,11 +1612,13 @@ var StyledIcon4 = (0, import_styled_components8.default)(FilteredDiv22)`
|
|
|
1608
1612
|
height: ${(props) => typeof props.size === "number" ? `${props.size}px` : props.size || "24px"};
|
|
1609
1613
|
color: ${(props) => props.color || "currentColor"};
|
|
1610
1614
|
|
|
1615
|
+
/* Icons paint themselves — each icon's own SVG sets its fill/stroke
|
|
1616
|
+
(icons-base via inline "fill: currentColor", Lucide via "fill"/"stroke"
|
|
1617
|
+
attributes). Do not add fill/stroke here: it re-strokes fill-based icons
|
|
1618
|
+
and thickens the glyph. See FEP-877. */
|
|
1611
1619
|
svg {
|
|
1612
1620
|
width: 100%;
|
|
1613
1621
|
height: 100%;
|
|
1614
|
-
fill: none;
|
|
1615
|
-
stroke: currentColor;
|
|
1616
1622
|
}
|
|
1617
1623
|
`;
|
|
1618
1624
|
var Icon4 = ({
|