@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.js
CHANGED
|
@@ -1265,11 +1265,13 @@ var StyledIcon2 = (0, import_styled_components2.default)(FilteredDiv)`
|
|
|
1265
1265
|
height: ${(props) => typeof props.size === "number" ? `${props.size}px` : props.size || "24px"};
|
|
1266
1266
|
color: ${(props) => props.color || "currentColor"};
|
|
1267
1267
|
|
|
1268
|
+
/* Icons paint themselves — each icon's own SVG sets its fill/stroke
|
|
1269
|
+
(icons-base via inline "fill: currentColor", Lucide via "fill"/"stroke"
|
|
1270
|
+
attributes). Do not add fill/stroke here: it re-strokes fill-based icons
|
|
1271
|
+
and thickens the glyph. See FEP-877. */
|
|
1268
1272
|
svg {
|
|
1269
1273
|
width: 100%;
|
|
1270
1274
|
height: 100%;
|
|
1271
|
-
fill: none;
|
|
1272
|
-
stroke: currentColor;
|
|
1273
1275
|
}
|
|
1274
1276
|
`;
|
|
1275
1277
|
var Icon3 = ({
|
|
@@ -1561,11 +1563,13 @@ var StyledIcon3 = (0, import_styled_components5.default)(FilteredDiv22)`
|
|
|
1561
1563
|
height: ${(props) => typeof props.size === "number" ? `${props.size}px` : props.size || "24px"};
|
|
1562
1564
|
color: ${(props) => props.color || "currentColor"};
|
|
1563
1565
|
|
|
1566
|
+
/* Icons paint themselves — each icon's own SVG sets its fill/stroke
|
|
1567
|
+
(icons-base via inline "fill: currentColor", Lucide via "fill"/"stroke"
|
|
1568
|
+
attributes). Do not add fill/stroke here: it re-strokes fill-based icons
|
|
1569
|
+
and thickens the glyph. See FEP-877. */
|
|
1564
1570
|
svg {
|
|
1565
1571
|
width: 100%;
|
|
1566
1572
|
height: 100%;
|
|
1567
|
-
fill: none;
|
|
1568
|
-
stroke: currentColor;
|
|
1569
1573
|
}
|
|
1570
1574
|
`;
|
|
1571
1575
|
var Icon4 = ({
|