maru_design2 2.26.8 → 2.26.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.26.9](https://github.com/42maru-ai/maru-design2/compare/v2.26.8...v2.26.9) (2025-07-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * :bug: Icon - update AlertCircle_s1610 transparent ([3f8125a](https://github.com/42maru-ai/maru-design2/commit/3f8125aa518d35ef7f7cabe2bb2102cd8343ba90))
9
+
3
10
  ## [2.26.8](https://github.com/42maru-ai/maru-design2/compare/v2.26.7...v2.26.8) (2025-07-04)
4
11
 
5
12
 
package/dist/index.js CHANGED
@@ -7306,7 +7306,13 @@ function Icon(_a) {
7306
7306
  * circle.fill은 지정 색이 아니라 white로 고정시켜야함
7307
7307
  */
7308
7308
  var staticCircleFill = useMemo(function () {
7309
- return name === ICONS.QuestionCircleBg_s1610 || name === ICONS.AlertCircle_s1610;
7309
+ return name === ICONS.QuestionCircleBg_s1610;
7310
+ }, [name]);
7311
+ /**
7312
+ * circle.fill을 transparent로 두고 싶으면 true
7313
+ */
7314
+ var transparentCircleFill = useMemo(function () {
7315
+ return name === ICONS.AlertCircle_s1610;
7310
7316
  }, [name]);
7311
7317
  /**
7312
7318
  * 마지막 path.stroke를 svg에 있는대로 두고 싶으면 true
@@ -7352,7 +7358,7 @@ function Icon(_a) {
7352
7358
  cx: circle.cx,
7353
7359
  cy: circle.cy,
7354
7360
  r: circle.r,
7355
- fill: circle.fill && (staticCircleFill ? circle.fill : iconColor),
7361
+ fill: circle.fill && (staticCircleFill ? circle.fill : transparentCircleFill ? 'transparent' : iconColor),
7356
7362
  stroke: circle.stroke && (staticPathStorke && idx === paths.length - 1 ? circle.stroke : iconColor),
7357
7363
  strokeWidth: circle.strokeWidth
7358
7364
  }, "circle-".concat(idx));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maru_design2",
3
- "version": "2.26.8",
3
+ "version": "2.26.9",
4
4
  "main": "./dist/index.js",
5
5
  "author": "zena-42maru",
6
6
  "license": "MIT",