maru_design2 2.26.7 → 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,20 @@
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
+
10
+ ## [2.26.8](https://github.com/42maru-ai/maru-design2/compare/v2.26.7...v2.26.8) (2025-07-04)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * :bento: Icon - add ChevronUp_s2415 [#402](https://github.com/42maru-ai/maru-design2/issues/402) ([c6804ef](https://github.com/42maru-ai/maru-design2/commit/c6804ef807ef66b7d34044e134c6f2de12f26b4d))
16
+ * :bug: Icon - delete bg from AlertCircle_s1610 [#402](https://github.com/42maru-ai/maru-design2/issues/402) ([210dcd6](https://github.com/42maru-ai/maru-design2/commit/210dcd656b17e55479decd4c7c23c792e42abc11))
17
+
3
18
  ## [2.26.7](https://github.com/42maru-ai/maru-design2/compare/v2.26.6...v2.26.7) (2025-07-03)
4
19
 
5
20
 
@@ -116,6 +116,7 @@ export declare const ICONS: {
116
116
  readonly ChevronSelectorVertical_s2020: "ChevronSelectorVertical_s2020";
117
117
  readonly ChevronUp_s1613: "ChevronUp_s1613";
118
118
  readonly ChevronUp_s1615: "ChevronUp_s1615";
119
+ readonly ChevronUp_s2415: "ChevronUp_s2415";
119
120
  readonly ChevronUp_s2420: "ChevronUp_s2420";
120
121
  readonly Clip_s1813: "Clip_s1813";
121
122
  readonly ClipboardCheck_s1612: "ClipboardCheck_s1612";
package/dist/index.js CHANGED
@@ -290,7 +290,7 @@ var iconmap = {
290
290
  "cx": "8",
291
291
  "cy": "8",
292
292
  "r": "7.5",
293
- "fill": "#ffffff",
293
+ "fill": "#8C8C8C",
294
294
  "stroke": "#8C8C8C"
295
295
  }],
296
296
  "rects": []
@@ -1496,6 +1496,21 @@ var iconmap = {
1496
1496
  "circles": [],
1497
1497
  "rects": []
1498
1498
  },
1499
+ "ChevronUp_s2415": {
1500
+ "width": "24",
1501
+ "height": "24",
1502
+ "viewBox": "0 0 24 24",
1503
+ "fill": "none",
1504
+ "paths": [{
1505
+ "d": "M18 15L12 9L6 15",
1506
+ "stroke": "#5C5C5C",
1507
+ "strokeWidth": "1.5",
1508
+ "strokeLinecap": "round",
1509
+ "strokeLinejoin": "round"
1510
+ }],
1511
+ "circles": [],
1512
+ "rects": []
1513
+ },
1499
1514
  "ChevronUp_s2420": {
1500
1515
  "width": "24",
1501
1516
  "height": "24",
@@ -6968,6 +6983,7 @@ var ICONS = {
6968
6983
  "ChevronSelectorVertical_s2020": "ChevronSelectorVertical_s2020",
6969
6984
  "ChevronUp_s1613": "ChevronUp_s1613",
6970
6985
  "ChevronUp_s1615": "ChevronUp_s1615",
6986
+ "ChevronUp_s2415": "ChevronUp_s2415",
6971
6987
  "ChevronUp_s2420": "ChevronUp_s2420",
6972
6988
  "Clip_s1813": "Clip_s1813",
6973
6989
  "ClipboardCheck_s1612": "ClipboardCheck_s1612",
@@ -7290,7 +7306,13 @@ function Icon(_a) {
7290
7306
  * circle.fill은 지정 색이 아니라 white로 고정시켜야함
7291
7307
  */
7292
7308
  var staticCircleFill = useMemo(function () {
7293
- 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;
7294
7316
  }, [name]);
7295
7317
  /**
7296
7318
  * 마지막 path.stroke를 svg에 있는대로 두고 싶으면 true
@@ -7336,7 +7358,7 @@ function Icon(_a) {
7336
7358
  cx: circle.cx,
7337
7359
  cy: circle.cy,
7338
7360
  r: circle.r,
7339
- fill: circle.fill && (staticCircleFill ? circle.fill : iconColor),
7361
+ fill: circle.fill && (staticCircleFill ? circle.fill : transparentCircleFill ? 'transparent' : iconColor),
7340
7362
  stroke: circle.stroke && (staticPathStorke && idx === paths.length - 1 ? circle.stroke : iconColor),
7341
7363
  strokeWidth: circle.strokeWidth
7342
7364
  }, "circle-".concat(idx));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maru_design2",
3
- "version": "2.26.7",
3
+ "version": "2.26.9",
4
4
  "main": "./dist/index.js",
5
5
  "author": "zena-42maru",
6
6
  "license": "MIT",