@liner-fe/internal-icon 1.0.45 → 1.0.47

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/.ultra.cache.json CHANGED
@@ -1 +1 @@
1
- {"files":{"lib":"1777428555904.532","node_modules":"1777428541121.5059","CHANGELOG.md":"4b3a1e3902fa384773aeb7fe040f5d6315838d0d","README.md":"e0a89d4fcf5bddf1f816bfb20a928ddb301b8d2c","figma.json":"59f77fec62cc40cbfa38d3cc1851e37cad331146","package.json":"17a2459a39492e8ee716b484eada4ca0b4f80d6e","src/generate-svg-files.ts":"6e4949b774de5b509eaab4a1a8efa600ee9a17fc","src/generate-tsx-components.ts":"29612d03b5e8b69e7919b03627853d2e0f287ea4","src/index.ts":"9e03c9c45c92fc534262982bce233b91892c05f1","tsconfig.json":"298030567ca332304807fcdbb95d1218c9c0814f","tsup.config.ts":"8460f94f8ebd1d42fb4cc968298195ae5dd67cde"},"deps":{}}
1
+ {"files":{"lib":"1778053181392.3274","node_modules":"1778053166568.409","CHANGELOG.md":"b98ef6276f8195711b9dc9594ba7ac1d82f0afdd","README.md":"e0a89d4fcf5bddf1f816bfb20a928ddb301b8d2c","figma.json":"59f77fec62cc40cbfa38d3cc1851e37cad331146","package.json":"584d20a5a33a9119a7089ac090a5adb34501b807","src/generate-svg-files.ts":"6e4949b774de5b509eaab4a1a8efa600ee9a17fc","src/generate-tsx-components.ts":"209fd8782cb7788e7fce3dbd79aee875ee7f317f","src/index.ts":"9e03c9c45c92fc534262982bce233b91892c05f1","tsconfig.json":"298030567ca332304807fcdbb95d1218c9c0814f","tsup.config.ts":"8460f94f8ebd1d42fb4cc968298195ae5dd67cde"},"deps":{}}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @internal/icon
2
2
 
3
+ ## 1.0.47
4
+
5
+ ### Patch Changes
6
+
7
+ - 70ab055: update icon version
8
+
9
+ ## 1.0.46
10
+
11
+ ### Patch Changes
12
+
13
+ - 112e68c: generate-tsx-components의 SVGO 설정에서 `cleanupIds`를 비활성화. 같은 페이지에 inline 렌더되는 아이콘들이 축약된 generic id(`a`, `b` 등)를 공유해 `url(#a)` 참조가 다른 아이콘의 정의를 가리키며 깨지던 문제 수정 (예: color-hwp가 color-table의 clipPath를 참조해 깨짐).
14
+
3
15
  ## 1.0.45
4
16
 
5
17
  ### Patch Changes
package/lib/index.js CHANGED
@@ -62,7 +62,8 @@ var generateTsxComponents = /* @__PURE__ */ __name(() => {
62
62
  name: "preset-default",
63
63
  params: {
64
64
  overrides: {
65
- convertColors: false
65
+ convertColors: false,
66
+ cleanupIds: false
66
67
  }
67
68
  }
68
69
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liner-fe/internal-icon",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -12,6 +12,7 @@ export const generateTsxComponents = () => {
12
12
  params: {
13
13
  overrides: {
14
14
  convertColors: false,
15
+ cleanupIds: false,
15
16
  },
16
17
  },
17
18
  },