@xsolla/xui-multi-select 0.188.1 → 0.188.3
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/native/index.mjs
CHANGED
|
@@ -1251,11 +1251,13 @@ var StyledIcon2 = styled2(FilteredDiv)`
|
|
|
1251
1251
|
height: ${(props) => typeof props.size === "number" ? `${props.size}px` : props.size || "24px"};
|
|
1252
1252
|
color: ${(props) => props.color || "currentColor"};
|
|
1253
1253
|
|
|
1254
|
+
/* Icons paint themselves — each icon's own SVG sets its fill/stroke
|
|
1255
|
+
(icons-base via inline "fill: currentColor", Lucide via "fill"/"stroke"
|
|
1256
|
+
attributes). Do not add fill/stroke here: it re-strokes fill-based icons
|
|
1257
|
+
and thickens the glyph. See FEP-877. */
|
|
1254
1258
|
svg {
|
|
1255
1259
|
width: 100%;
|
|
1256
1260
|
height: 100%;
|
|
1257
|
-
fill: none;
|
|
1258
|
-
stroke: currentColor;
|
|
1259
1261
|
}
|
|
1260
1262
|
`;
|
|
1261
1263
|
var Icon3 = ({
|
|
@@ -1547,11 +1549,13 @@ var StyledIcon3 = styled32(FilteredDiv22)`
|
|
|
1547
1549
|
height: ${(props) => typeof props.size === "number" ? `${props.size}px` : props.size || "24px"};
|
|
1548
1550
|
color: ${(props) => props.color || "currentColor"};
|
|
1549
1551
|
|
|
1552
|
+
/* Icons paint themselves — each icon's own SVG sets its fill/stroke
|
|
1553
|
+
(icons-base via inline "fill: currentColor", Lucide via "fill"/"stroke"
|
|
1554
|
+
attributes). Do not add fill/stroke here: it re-strokes fill-based icons
|
|
1555
|
+
and thickens the glyph. See FEP-877. */
|
|
1550
1556
|
svg {
|
|
1551
1557
|
width: 100%;
|
|
1552
1558
|
height: 100%;
|
|
1553
|
-
fill: none;
|
|
1554
|
-
stroke: currentColor;
|
|
1555
1559
|
}
|
|
1556
1560
|
`;
|
|
1557
1561
|
var Icon4 = ({
|