@ncds/ui-admin-mcp 1.0.0-alpha.16 → 1.0.0-alpha.17

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.
@@ -0,0 +1,54 @@
1
+ /**
2
+ * list_sidecar_overrides tool — composition.json sidecar 적용 현황 요약
3
+ *
4
+ * 신규 프로젝트에서 NCDS MCP 와 연결한 뒤, 어느 컴포넌트에 어떤 sidecar 보강이
5
+ * 들어가 있는지 표 형태(컴포넌트별 row)로 한 번에 확인하는 용도. 응답이 크지 않도록
6
+ * 시나리오 키 목록 + 카운트 위주로 구성하고, 상세는 get_component_props 로 유도.
7
+ *
8
+ * 순수 함수 — server.ts 부팅 시 1회 buildListSidecarOverridesResponse() 로 사전 직렬화.
9
+ */
10
+ import type { ComponentData } from '../types.js';
11
+ import type { CompositionEntry } from '../utils/dataLoader.js';
12
+ import { type McpToolResponse } from '../utils/response.js';
13
+ export interface SidecarOverrideSummary {
14
+ /** 컴포넌트 이름 (kebab-case) */
15
+ component: string;
16
+ /** canonicalExamples 시나리오 key 목록 — 비어있으면 [] */
17
+ canonicalExamples: string[];
18
+ /** legacy 단일 시나리오 canonicalExample 존재 여부 */
19
+ hasCanonicalExample: boolean;
20
+ /** bemClassesExtra 항목 수 */
21
+ bemClassesExtra: number;
22
+ /** allowedChildren 정의된 부모 키 목록 (예: ["Table", "Table.Header", ...]) */
23
+ allowedChildrenKeys: string[];
24
+ /** allowedParents 정의된 자식 키 목록 */
25
+ allowedParentsKeys: string[];
26
+ /** descriptionExtra 존재 여부 */
27
+ descriptionExtra: boolean;
28
+ /** aliasesExtra 항목 수 */
29
+ aliasesExtra: number;
30
+ /** AI 의 UI 작성 정확도 추정 점수 (0.0 ~ 1.0). 시나리오 + compound 제약 + validate 정확도 + 자연어 보강의 가중 합. */
31
+ coverageScore: number;
32
+ /** 컴포넌트 구조상 의미 있게 달성 가능한 최대 점수. compound 컴포넌트(subComponents 보유): 1.0, 그 외: 0.8. */
33
+ maxAchievable: number;
34
+ /** coverageScore / maxAchievable — 컴포넌트별 천장 대비 충족율 (0.0 ~ 1.0). 절대 점수가 낮아도 비율이 1.0 이면 더 보강할 게 없다. */
35
+ coverageRatio: number;
36
+ /** coverageScore 한 줄 해석 — high/medium/low 와 강점 영역 요약 */
37
+ coverageNote: string;
38
+ }
39
+ export interface ListSidecarOverridesResult {
40
+ /** sidecar 적용 컴포넌트 수 */
41
+ total: number;
42
+ /** 각 척도가 무엇을 의미하고 AI 의 UI 작성 정확도에 어떻게 영향을 주는지 (AI 가 본 응답을 바로 해석하도록 동봉) */
43
+ metrics: Record<string, string>;
44
+ /** coverageScore 산식 (가중치 명시) */
45
+ coverageScoreFormula: string;
46
+ /** 컴포넌트별 요약 row 배열 — coverageScore 내림차순, 동률은 컴포넌트 이름 알파벳 */
47
+ overrides: SidecarOverrideSummary[];
48
+ }
49
+ /** sidecar map → 요약 결과 (순수 함수). coverageRatio 내림차순 + 동률은 coverageScore + 이름 알파벳 */
50
+ export declare const buildSidecarOverridesSummary: (sidecar: Record<string, CompositionEntry>, componentMap: Map<string, ComponentData>) => ListSidecarOverridesResult;
51
+ /** server.ts 부팅 시 1회 호출 — 응답 사전 직렬화 */
52
+ export declare const buildListSidecarOverridesResponse: (sidecar: Record<string, CompositionEntry>, componentMap: Map<string, ComponentData>) => McpToolResponse;
53
+ /** list_sidecar_overrides tool — 사전 직렬화된 응답을 그대로 반환 */
54
+ export declare const listSidecarOverrides: (prebuilt: McpToolResponse) => McpToolResponse;
@@ -0,0 +1,96 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.listSidecarOverrides = exports.buildListSidecarOverridesResponse = exports.buildSidecarOverridesSummary = void 0;
4
+ const response_js_1 = require("../utils/response.js");
5
+ /** AI 가 UI 를 얼마나 정확히 그릴 수 있는지 추정 — 각 sidecar 보강이 다른 정확도 영역을 커버한다 */
6
+ const METRIC_DESCRIPTIONS = {
7
+ canonicalExamples: 'AI 가 시나리오별로 분기 가능한 정답 트리 수 (form / data-grid / with-tooltip 등). 가장 강한 정확도 신호 — 0 이면 AI 가 prop 조합을 추측해야 한다.',
8
+ hasCanonicalExample: 'legacy 단일 시나리오 존재 여부 — 진입용 표준 트리 1건. canonicalExamples 가 비어있는 컴포넌트의 fallback.',
9
+ bemClassesExtra: 'extract 가 못 잡은 BEM 클래스 화이트리스트 수. validate_html 이 합법/위법을 정확히 판정 — 발명 클래스 사용 차단력.',
10
+ allowedChildrenKeys: 'compound 부모-자식 제약 노드 수. 잘못된 자식 끼우기 / 컨텍스트 위반 (Table.Pagination in DataGrid 등) 차단력.',
11
+ allowedParentsKeys: '역방향 제약 노드 수 — 자식이 어느 부모 안에만 허용되는지 명시.',
12
+ descriptionExtra: 'list_components 응답에 자연어 용도/모드 명시 여부. 같은 컴포넌트가 다른 모드(horizontal/vertical) 로 쓰일 때 AI 가 모드를 인지하는 정확도.',
13
+ aliasesExtra: 'search_component 한국어/유사 키워드 매칭 별칭 수. AI 가 "폼 레이아웃", "세로 테이블" 같은 비공식 용어로 검색해도 정답 컴포넌트에 도달.',
14
+ maxAchievable: '구조상 의미 있게 도달 가능한 최대 점수. compound 컴포넌트(subComponents 보유): 1.0, 그 외(prop 배열로 항목 받는 컴포넌트 — menus/groups/optionItems 등): 0.8. allowedChildren 가중치(+0.20) 가 compound 가 아닌 컴포넌트에는 적용 불가하기 때문.',
15
+ coverageRatio: 'coverageScore / maxAchievable. 절대 점수보다 더 정확한 "보강 충족율" — 1.0 이면 해당 컴포넌트는 더 채울 영역이 없다. 0.8 미만이면 의미 있는 보강 여지 있음.',
16
+ };
17
+ const COVERAGE_FORMULA = 'canonicalExamples>=2: +0.50 (>=1 또는 hasCanonicalExample: +0.25) · allowedChildrenKeys>=2: +0.20 (>=1: +0.10) · bemClassesExtra>=1: +0.10 · descriptionExtra: +0.10 · aliasesExtra>=1: +0.10 · max 1.0. 임계값: high>=0.70, medium>=0.40, 그 외 low. 시나리오 가중치가 가장 큼 — AI hallucination 의 가장 강한 차단 신호이기 때문.';
18
+ const computeCoverageScore = (s) => {
19
+ let score = 0;
20
+ if (s.canonicalExamples.length >= 2)
21
+ score += 0.5;
22
+ else if (s.canonicalExamples.length >= 1 || s.hasCanonicalExample)
23
+ score += 0.25;
24
+ if (s.allowedChildrenKeys.length >= 2)
25
+ score += 0.2;
26
+ else if (s.allowedChildrenKeys.length >= 1)
27
+ score += 0.1;
28
+ if (s.bemClassesExtra >= 1)
29
+ score += 0.1;
30
+ if (s.descriptionExtra)
31
+ score += 0.1;
32
+ if (s.aliasesExtra >= 1)
33
+ score += 0.1;
34
+ return Math.min(1, Math.round(score * 100) / 100);
35
+ };
36
+ /** 컴포넌트 구조상 의미 있게 도달 가능한 최대 점수.
37
+ * compound (subComponents 보유): canonicalExamples 0.5 + allowedChildren 0.2 + bem 0.1 + desc 0.1 + alias 0.1 = 1.0.
38
+ * non-compound: allowedChildren 항목이 의미 없음 → 0.8 cap. */
39
+ const computeMaxAchievable = (isCompound) => (isCompound ? 1.0 : 0.8);
40
+ const noteFor = (s, score) => {
41
+ const strengths = [];
42
+ if (s.canonicalExamples.length >= 2)
43
+ strengths.push(`시나리오 ${s.canonicalExamples.length}`);
44
+ else if (s.canonicalExamples.length >= 1 || s.hasCanonicalExample)
45
+ strengths.push('시나리오 1');
46
+ if (s.allowedChildrenKeys.length >= 1)
47
+ strengths.push(`compound 제약 ${s.allowedChildrenKeys.length}`);
48
+ if (s.bemClassesExtra >= 1)
49
+ strengths.push(`BEM 화이트리스트 ${s.bemClassesExtra}`);
50
+ if (s.descriptionExtra)
51
+ strengths.push('모드 인지 보강');
52
+ if (s.aliasesExtra >= 1)
53
+ strengths.push(`검색 별칭 ${s.aliasesExtra}`);
54
+ const tier = score >= 0.7 ? 'high' : score >= 0.4 ? 'medium' : 'low';
55
+ return strengths.length > 0 ? `${tier} · ${strengths.join(' + ')}` : `${tier} · 보강 거의 없음 — 직접 작성 hallucination 위험`;
56
+ };
57
+ /** 단일 entry 를 row 로 변환 — componentMap 으로 compound 여부 결정해 maxAchievable 계산 */
58
+ const toSummary = (component, entry, componentMap) => {
59
+ const base = {
60
+ component,
61
+ canonicalExamples: Object.keys(entry.canonicalExamples ?? {}).filter((k) => !k.startsWith('_')),
62
+ hasCanonicalExample: !!entry.canonicalExample,
63
+ bemClassesExtra: (entry.bemClassesExtra ?? []).length,
64
+ allowedChildrenKeys: Object.keys(entry.allowedChildren ?? {}),
65
+ allowedParentsKeys: Object.keys(entry.allowedParents ?? {}),
66
+ descriptionExtra: !!entry.descriptionExtra,
67
+ aliasesExtra: (entry.aliasesExtra ?? []).length,
68
+ };
69
+ const coverageScore = computeCoverageScore(base);
70
+ const subComponentCount = Object.keys(componentMap.get(component)?.subComponents ?? {}).length;
71
+ const isCompound = subComponentCount > 0;
72
+ const maxAchievable = computeMaxAchievable(isCompound);
73
+ const coverageRatio = Math.round((coverageScore / maxAchievable) * 100) / 100;
74
+ return { ...base, coverageScore, maxAchievable, coverageRatio, coverageNote: noteFor(base, coverageScore) };
75
+ };
76
+ /** sidecar map → 요약 결과 (순수 함수). coverageRatio 내림차순 + 동률은 coverageScore + 이름 알파벳 */
77
+ const buildSidecarOverridesSummary = (sidecar, componentMap) => {
78
+ const overrides = Object.entries(sidecar)
79
+ .map(([component, entry]) => toSummary(component, entry, componentMap))
80
+ .sort((a, b) => b.coverageRatio - a.coverageRatio ||
81
+ b.coverageScore - a.coverageScore ||
82
+ a.component.localeCompare(b.component));
83
+ return {
84
+ total: overrides.length,
85
+ metrics: METRIC_DESCRIPTIONS,
86
+ coverageScoreFormula: COVERAGE_FORMULA,
87
+ overrides,
88
+ };
89
+ };
90
+ exports.buildSidecarOverridesSummary = buildSidecarOverridesSummary;
91
+ /** server.ts 부팅 시 1회 호출 — 응답 사전 직렬화 */
92
+ const buildListSidecarOverridesResponse = (sidecar, componentMap) => (0, response_js_1.successResponse)((0, exports.buildSidecarOverridesSummary)(sidecar, componentMap));
93
+ exports.buildListSidecarOverridesResponse = buildListSidecarOverridesResponse;
94
+ /** list_sidecar_overrides tool — 사전 직렬화된 응답을 그대로 반환 */
95
+ const listSidecarOverrides = (prebuilt) => prebuilt;
96
+ exports.listSidecarOverrides = listSidecarOverrides;
package/bin/version.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  /**
2
- * version 빌드 scripts/build-npm.js가 자동 생성 (수동 편집 금지)
2
+ * NCDS UI Admin MCP 서버가 노출하는 ui-admin 정합 기준 버전.
3
+ * scripts/generate-version-ts.ts 가 ui-admin/package.json 의 version 으로부터 자동 생성한다.
4
+ * 수동 편집 금지 — 빌드(`pnpm generate:version-ts` 또는 `pnpm build`) 시 덮어쓰여진다.
3
5
  */
4
- export declare const VERSION = "1.6.3";
6
+ export declare const VERSION = "1.8.4";
package/bin/version.js CHANGED
@@ -2,6 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  /**
5
- * version 빌드 scripts/build-npm.js가 자동 생성 (수동 편집 금지)
5
+ * NCDS UI Admin MCP 서버가 노출하는 ui-admin 정합 기준 버전.
6
+ * scripts/generate-version-ts.ts 가 ui-admin/package.json 의 version 으로부터 자동 생성한다.
7
+ * 수동 편집 금지 — 빌드(`pnpm generate:version-ts` 또는 `pnpm build`) 시 덮어쓰여진다.
6
8
  */
7
- exports.VERSION = '1.6.3';
9
+ exports.VERSION = '1.8.4';
package/data/_icons.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "totalCount": 2479,
3
- "fillCount": 1187,
2
+ "totalCount": 2542,
3
+ "fillCount": 1198,
4
4
  "icons": [
5
5
  {
6
6
  "name": "Activity",
@@ -137,6 +137,11 @@
137
137
  "kebab": "align-bottom02-fill",
138
138
  "fill": true
139
139
  },
140
+ {
141
+ "name": "AlignBottom03",
142
+ "kebab": "align-bottom03",
143
+ "fill": false
144
+ },
140
145
  {
141
146
  "name": "AlignCenter",
142
147
  "kebab": "align-center",
@@ -167,6 +172,11 @@
167
172
  "kebab": "align-horizontal-centre02-fill",
168
173
  "fill": true
169
174
  },
175
+ {
176
+ "name": "AlignHorizontalCentre03",
177
+ "kebab": "align-horizontal-centre03",
178
+ "fill": false
179
+ },
170
180
  {
171
181
  "name": "AlignJustify",
172
182
  "kebab": "align-justify",
@@ -202,6 +212,11 @@
202
212
  "kebab": "align-left02-fill",
203
213
  "fill": true
204
214
  },
215
+ {
216
+ "name": "AlignLeft03",
217
+ "kebab": "align-left03",
218
+ "fill": false
219
+ },
205
220
  {
206
221
  "name": "AlignLeftFill",
207
222
  "kebab": "align-left-fill",
@@ -232,6 +247,11 @@
232
247
  "kebab": "align-right02-fill",
233
248
  "fill": true
234
249
  },
250
+ {
251
+ "name": "AlignRight03",
252
+ "kebab": "align-right03",
253
+ "fill": false
254
+ },
235
255
  {
236
256
  "name": "AlignRightFill",
237
257
  "kebab": "align-right-fill",
@@ -257,6 +277,11 @@
257
277
  "kebab": "align-top02-fill",
258
278
  "fill": true
259
279
  },
280
+ {
281
+ "name": "AlignTop03",
282
+ "kebab": "align-top03",
283
+ "fill": false
284
+ },
260
285
  {
261
286
  "name": "AlignVerticalCenter01",
262
287
  "kebab": "align-vertical-center01",
@@ -277,6 +302,66 @@
277
302
  "kebab": "align-vertical-center02-fill",
278
303
  "fill": true
279
304
  },
305
+ {
306
+ "name": "AlignVerticalCenter03",
307
+ "kebab": "align-vertical-center03",
308
+ "fill": false
309
+ },
310
+ {
311
+ "name": "AlignmentBottomCenterFill",
312
+ "kebab": "alignment-bottom-center-fill",
313
+ "fill": true
314
+ },
315
+ {
316
+ "name": "AlignmentCenterFill",
317
+ "kebab": "alignment-center-fill",
318
+ "fill": true
319
+ },
320
+ {
321
+ "name": "AlignmentHorizontalFill",
322
+ "kebab": "alignment-horizontal-fill",
323
+ "fill": true
324
+ },
325
+ {
326
+ "name": "AlignmentLeftCenterFill",
327
+ "kebab": "alignment-left-center-fill",
328
+ "fill": true
329
+ },
330
+ {
331
+ "name": "AlignmentLeftEndFill",
332
+ "kebab": "alignment-left-end-fill",
333
+ "fill": true
334
+ },
335
+ {
336
+ "name": "AlignmentLeftStartFill",
337
+ "kebab": "alignment-left-start-fill",
338
+ "fill": true
339
+ },
340
+ {
341
+ "name": "AlignmentRightCenterFill",
342
+ "kebab": "alignment-right-center-fill",
343
+ "fill": true
344
+ },
345
+ {
346
+ "name": "AlignmentRightEndFill",
347
+ "kebab": "alignment-right-end-fill",
348
+ "fill": true
349
+ },
350
+ {
351
+ "name": "AlignmentRightStartFill",
352
+ "kebab": "alignment-right-start-fill",
353
+ "fill": true
354
+ },
355
+ {
356
+ "name": "AlignmentTopCenterFill",
357
+ "kebab": "alignment-top-center-fill",
358
+ "fill": true
359
+ },
360
+ {
361
+ "name": "AlignmentVerticalFill",
362
+ "kebab": "alignment-vertical-fill",
363
+ "fill": true
364
+ },
280
365
  {
281
366
  "name": "Anchor",
282
367
  "kebab": "anchor",
@@ -1927,6 +2012,11 @@
1927
2012
  "kebab": "bus-fill",
1928
2013
  "fill": true
1929
2014
  },
2015
+ {
2016
+ "name": "Button",
2017
+ "kebab": "button",
2018
+ "fill": false
2019
+ },
1930
2020
  {
1931
2021
  "name": "Calculator",
1932
2022
  "kebab": "calculator",
@@ -2072,6 +2162,11 @@
2072
2162
  "kebab": "car02-fill",
2073
2163
  "fill": true
2074
2164
  },
2165
+ {
2166
+ "name": "CartAlert",
2167
+ "kebab": "cart-alert",
2168
+ "fill": false
2169
+ },
2075
2170
  {
2076
2171
  "name": "Certificate01",
2077
2172
  "kebab": "certificate01",
@@ -2332,6 +2427,11 @@
2332
2427
  "kebab": "chrome-cast-fill",
2333
2428
  "fill": true
2334
2429
  },
2430
+ {
2431
+ "name": "Circle",
2432
+ "kebab": "circle",
2433
+ "fill": false
2434
+ },
2335
2435
  {
2336
2436
  "name": "CircleCut",
2337
2437
  "kebab": "circle-cut",
@@ -2777,6 +2877,11 @@
2777
2877
  "kebab": "codepen-fill",
2778
2878
  "fill": true
2779
2879
  },
2880
+ {
2881
+ "name": "CoinStopwatch",
2882
+ "kebab": "coin-stopwatch",
2883
+ "fill": false
2884
+ },
2780
2885
  {
2781
2886
  "name": "Coins01",
2782
2887
  "kebab": "coins01",
@@ -4732,6 +4837,31 @@
4732
4837
  "kebab": "dots-vertical-fill",
4733
4838
  "fill": true
4734
4839
  },
4840
+ {
4841
+ "name": "DottedLine1",
4842
+ "kebab": "dotted-line1",
4843
+ "fill": false
4844
+ },
4845
+ {
4846
+ "name": "DottedLine2",
4847
+ "kebab": "dotted-line2",
4848
+ "fill": false
4849
+ },
4850
+ {
4851
+ "name": "DottedLineArrowBoth",
4852
+ "kebab": "dotted-line-arrow-both",
4853
+ "fill": false
4854
+ },
4855
+ {
4856
+ "name": "DottedLineArrowLeft",
4857
+ "kebab": "dotted-line-arrow-left",
4858
+ "fill": false
4859
+ },
4860
+ {
4861
+ "name": "DottedLineArrowRight",
4862
+ "kebab": "dotted-line-arrow-right",
4863
+ "fill": false
4864
+ },
4735
4865
  {
4736
4866
  "name": "Download01",
4737
4867
  "kebab": "download01",
@@ -9232,6 +9362,11 @@
9232
9362
  "kebab": "pilcrow-square-fill",
9233
9363
  "fill": true
9234
9364
  },
9365
+ {
9366
+ "name": "Pill",
9367
+ "kebab": "pill",
9368
+ "fill": false
9369
+ },
9235
9370
  {
9236
9371
  "name": "Pin01",
9237
9372
  "kebab": "pin01",
@@ -9452,6 +9587,41 @@
9452
9587
  "kebab": "qr-code02-fill",
9453
9588
  "fill": true
9454
9589
  },
9590
+ {
9591
+ "name": "Ratio16By9",
9592
+ "kebab": "ratio16-by9",
9593
+ "fill": false
9594
+ },
9595
+ {
9596
+ "name": "Ratio1By1",
9597
+ "kebab": "ratio1-by1",
9598
+ "fill": false
9599
+ },
9600
+ {
9601
+ "name": "Ratio2By3",
9602
+ "kebab": "ratio2-by3",
9603
+ "fill": false
9604
+ },
9605
+ {
9606
+ "name": "Ratio3By2",
9607
+ "kebab": "ratio3-by2",
9608
+ "fill": false
9609
+ },
9610
+ {
9611
+ "name": "Ratio3By4",
9612
+ "kebab": "ratio3-by4",
9613
+ "fill": false
9614
+ },
9615
+ {
9616
+ "name": "Ratio4By3",
9617
+ "kebab": "ratio4-by3",
9618
+ "fill": false
9619
+ },
9620
+ {
9621
+ "name": "Ratio9By16",
9622
+ "kebab": "ratio9-by16",
9623
+ "fill": false
9624
+ },
9455
9625
  {
9456
9626
  "name": "Receipt",
9457
9627
  "kebab": "receipt",
@@ -9502,6 +9672,21 @@
9502
9672
  "kebab": "recording03-fill",
9503
9673
  "fill": true
9504
9674
  },
9675
+ {
9676
+ "name": "Rectangle",
9677
+ "kebab": "rectangle",
9678
+ "fill": false
9679
+ },
9680
+ {
9681
+ "name": "RectangleRound",
9682
+ "kebab": "rectangle-round",
9683
+ "fill": false
9684
+ },
9685
+ {
9686
+ "name": "RectangleSlider",
9687
+ "kebab": "rectangle-slider",
9688
+ "fill": false
9689
+ },
9505
9690
  {
9506
9691
  "name": "Reflect01",
9507
9692
  "kebab": "reflect01",
@@ -10022,6 +10207,26 @@
10022
10207
  "kebab": "search-sm-fill",
10023
10208
  "fill": true
10024
10209
  },
10210
+ {
10211
+ "name": "Section",
10212
+ "kebab": "section",
10213
+ "fill": false
10214
+ },
10215
+ {
10216
+ "name": "SectionBottom",
10217
+ "kebab": "section-bottom",
10218
+ "fill": false
10219
+ },
10220
+ {
10221
+ "name": "SectionCenter",
10222
+ "kebab": "section-center",
10223
+ "fill": false
10224
+ },
10225
+ {
10226
+ "name": "SectionTop",
10227
+ "kebab": "section-top",
10228
+ "fill": false
10229
+ },
10025
10230
  {
10026
10231
  "name": "Send01",
10027
10232
  "kebab": "send01",
@@ -10347,6 +10552,21 @@
10347
10552
  "kebab": "shopping-bag03-fill",
10348
10553
  "fill": true
10349
10554
  },
10555
+ {
10556
+ "name": "ShoppingBagAlert",
10557
+ "kebab": "shopping-bag-alert",
10558
+ "fill": false
10559
+ },
10560
+ {
10561
+ "name": "ShoppingBagRepeat",
10562
+ "kebab": "shopping-bag-repeat",
10563
+ "fill": false
10564
+ },
10565
+ {
10566
+ "name": "ShoppingBagX",
10567
+ "kebab": "shopping-bag-x",
10568
+ "fill": false
10569
+ },
10350
10570
  {
10351
10571
  "name": "ShoppingCart01",
10352
10572
  "kebab": "shopping-cart01",
@@ -10567,6 +10787,96 @@
10567
10787
  "kebab": "snowflake02-fill",
10568
10788
  "fill": true
10569
10789
  },
10790
+ {
10791
+ "name": "SocialApple",
10792
+ "kebab": "social-apple",
10793
+ "fill": false
10794
+ },
10795
+ {
10796
+ "name": "SocialFacebook",
10797
+ "kebab": "social-facebook",
10798
+ "fill": false
10799
+ },
10800
+ {
10801
+ "name": "SocialGoogle",
10802
+ "kebab": "social-google",
10803
+ "fill": false
10804
+ },
10805
+ {
10806
+ "name": "SocialInstagram",
10807
+ "kebab": "social-instagram",
10808
+ "fill": false
10809
+ },
10810
+ {
10811
+ "name": "SocialKakao",
10812
+ "kebab": "social-kakao",
10813
+ "fill": false
10814
+ },
10815
+ {
10816
+ "name": "SocialNaver",
10817
+ "kebab": "social-naver",
10818
+ "fill": false
10819
+ },
10820
+ {
10821
+ "name": "SocialNaverBlog",
10822
+ "kebab": "social-naver-blog",
10823
+ "fill": false
10824
+ },
10825
+ {
10826
+ "name": "SocialPayco",
10827
+ "kebab": "social-payco",
10828
+ "fill": false
10829
+ },
10830
+ {
10831
+ "name": "SocialTiktok",
10832
+ "kebab": "social-tiktok",
10833
+ "fill": false
10834
+ },
10835
+ {
10836
+ "name": "SocialTistory",
10837
+ "kebab": "social-tistory",
10838
+ "fill": false
10839
+ },
10840
+ {
10841
+ "name": "SocialVemeo",
10842
+ "kebab": "social-vemeo",
10843
+ "fill": false
10844
+ },
10845
+ {
10846
+ "name": "SocialX",
10847
+ "kebab": "social-x",
10848
+ "fill": false
10849
+ },
10850
+ {
10851
+ "name": "SocialYoutube",
10852
+ "kebab": "social-youtube",
10853
+ "fill": false
10854
+ },
10855
+ {
10856
+ "name": "SolidLine1",
10857
+ "kebab": "solid-line1",
10858
+ "fill": false
10859
+ },
10860
+ {
10861
+ "name": "SolidLine2",
10862
+ "kebab": "solid-line2",
10863
+ "fill": false
10864
+ },
10865
+ {
10866
+ "name": "SolidLineArrowBoth",
10867
+ "kebab": "solid-line-arrow-both",
10868
+ "fill": false
10869
+ },
10870
+ {
10871
+ "name": "SolidLineArrowLeft",
10872
+ "kebab": "solid-line-arrow-left",
10873
+ "fill": false
10874
+ },
10875
+ {
10876
+ "name": "SolidLineArrowRight",
10877
+ "kebab": "solid-line-arrow-right",
10878
+ "fill": false
10879
+ },
10570
10880
  {
10571
10881
  "name": "SpacingHeight01",
10572
10882
  "kebab": "spacing-height01",
@@ -10677,6 +10987,11 @@
10677
10987
  "kebab": "speedometer04-fill",
10678
10988
  "fill": true
10679
10989
  },
10990
+ {
10991
+ "name": "Square",
10992
+ "kebab": "square",
10993
+ "fill": false
10994
+ },
10680
10995
  {
10681
10996
  "name": "SquareFill",
10682
10997
  "kebab": "square-fill",
@@ -59,7 +59,7 @@
59
59
  "groupIcon": {
60
60
  "type": "object",
61
61
  "required": false,
62
- "rawType": "import(\"/Users/nhncommerce/Desktop/project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
62
+ "rawType": "import(\"/Users/nhn/Project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
63
63
  "properties": {
64
64
  "type": {
65
65
  "type": "string",
@@ -134,7 +134,7 @@
134
134
  "leadingIcon": {
135
135
  "type": "object",
136
136
  "required": false,
137
- "rawType": "import(\"/Users/nhncommerce/Desktop/project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
137
+ "rawType": "import(\"/Users/nhn/Project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
138
138
  "properties": {
139
139
  "type": {
140
140
  "type": "string",
@@ -211,7 +211,7 @@
211
211
  "trailingIcon": {
212
212
  "type": "object",
213
213
  "required": false,
214
- "rawType": "import(\"/Users/nhncommerce/Desktop/project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
214
+ "rawType": "import(\"/Users/nhn/Project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
215
215
  "properties": {
216
216
  "type": {
217
217
  "type": "string",
package/data/badge.json CHANGED
@@ -81,7 +81,7 @@
81
81
  "leadingIcon": {
82
82
  "type": "object",
83
83
  "required": false,
84
- "rawType": "import(\"/Users/nhncommerce/Desktop/project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
84
+ "rawType": "import(\"/Users/nhn/Project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
85
85
  "properties": {
86
86
  "type": {
87
87
  "type": "string",
@@ -154,7 +154,7 @@
154
154
  "trailingIcon": {
155
155
  "type": "object",
156
156
  "required": false,
157
- "rawType": "import(\"/Users/nhncommerce/Desktop/project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
157
+ "rawType": "import(\"/Users/nhn/Project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
158
158
  "properties": {
159
159
  "type": {
160
160
  "type": "string",