@ncds/ui-admin-mcp 1.0.0-alpha.15 → 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.
- package/bin/components.bundle.js +17 -1
- package/bin/overrides/composition.json +1302 -0
- package/bin/tools/listSidecarOverrides.d.ts +54 -0
- package/bin/tools/listSidecarOverrides.js +96 -0
- package/bin/version.d.ts +4 -2
- package/bin/version.js +4 -2
- package/data/_icons.json +317 -2
- package/data/badge-group.json +3 -3
- package/data/badge.json +2 -2
- package/data/block-container.json +95 -0
- package/data/block-header.json +208 -0
- package/data/bread-crumb.json +1 -1
- package/data/button.json +2 -2
- package/data/combo-box.json +4 -5
- package/data/data-grid.json +24 -5
- package/data/date-picker.json +1 -1
- package/data/dropdown.json +10 -5
- package/data/empty-state.json +3 -3
- package/data/file-input.json +6 -5
- package/data/horizontal-tab.json +4 -4
- package/data/image-file-input.json +6 -5
- package/data/input-base.json +1 -1
- package/data/modal.json +6 -3
- package/data/notification.json +9 -5
- package/data/number-input.json +1 -1
- package/data/page-title.json +135 -0
- package/data/pagination.json +8 -4
- package/data/password-input.json +25 -10
- package/data/progress-bar.json +7 -6
- package/data/progress-circle.json +8 -5
- package/data/radio.json +3 -2
- package/data/range-date-picker-with-buttons.json +4 -4
- package/data/range-date-picker.json +4 -4
- package/data/select-box.json +15 -13
- package/data/select.json +2 -2
- package/data/table.json +26 -6
- package/data/tag.json +8 -5
- package/data/vertical-tab.json +4 -4
- package/package.json +6 -3
package/data/vertical-tab.json
CHANGED
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"menus": {
|
|
60
60
|
"type": "object",
|
|
61
61
|
"required": false,
|
|
62
|
-
"rawType": "import(\"/Users/
|
|
62
|
+
"rawType": "import(\"/Users/nhn/Project/ncds/packages/ui-admin/src/components/tab/TabButton\").TabButtonProps[] | undefined",
|
|
63
63
|
"properties": {
|
|
64
64
|
"id": {
|
|
65
65
|
"type": "string",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"badgeInfo": {
|
|
97
97
|
"type": "object",
|
|
98
98
|
"required": false,
|
|
99
|
-
"rawType": "import(\"/Users/
|
|
99
|
+
"rawType": "import(\"/Users/nhn/Project/ncds/packages/ui-admin/src/components/feedback-and-status/badge/Badge\").BadgeProps | undefined",
|
|
100
100
|
"properties": {
|
|
101
101
|
"label": {
|
|
102
102
|
"type": "string",
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"leadingIcon": {
|
|
131
131
|
"type": "object",
|
|
132
132
|
"required": false,
|
|
133
|
-
"rawType": "import(\"/Users/
|
|
133
|
+
"rawType": "import(\"/Users/nhn/Project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
|
|
134
134
|
"properties": {
|
|
135
135
|
"type": {
|
|
136
136
|
"type": "string",
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"trailingIcon": {
|
|
194
194
|
"type": "object",
|
|
195
195
|
"required": false,
|
|
196
|
-
"rawType": "import(\"/Users/
|
|
196
|
+
"rawType": "import(\"/Users/nhn/Project/ncds/packages/ui-admin/src/types/side-slot\").SideSlotType | undefined",
|
|
197
197
|
"properties": {
|
|
198
198
|
"type": {
|
|
199
199
|
"type": "string",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ncds/ui-admin-mcp",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.17",
|
|
4
4
|
"description": "NCDS UI Admin MCP 서버 — AI 에이전트가 NCUA 컴포넌트를 조회하고 HTML을 검증할 수 있는 MCP 서버",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ncua-mcp": "./bin/server.mjs"
|
|
@@ -19,9 +19,10 @@
|
|
|
19
19
|
"extract:icons": "tsx scripts/extract-icons.ts",
|
|
20
20
|
"extract:tokens": "tsx scripts/extract-design-tokens.ts",
|
|
21
21
|
"generate:cdn-meta": "tsx scripts/generate-cdn-meta.ts",
|
|
22
|
+
"generate:version-ts": "tsx scripts/generate-version-ts.ts",
|
|
22
23
|
"build:bundle": "tsx scripts/build-bundle.ts",
|
|
23
24
|
"build:server": "mkdir -p bin && rm -rf bin/definitions && cp -r src/definitions bin/definitions && find bin/definitions -name '*.ts' -delete && tsc --project tsconfig.json",
|
|
24
|
-
"build": "pnpm extract && pnpm extract:icons && pnpm extract:tokens && pnpm generate:cdn-meta && pnpm build:bundle && pnpm build:server",
|
|
25
|
+
"build": "pnpm extract && pnpm extract:icons && pnpm extract:tokens && pnpm generate:cdn-meta && pnpm generate:version-ts && pnpm build:bundle && pnpm build:server",
|
|
25
26
|
"check-meta": "tsx scripts/check-meta-coherence.ts",
|
|
26
27
|
"test": "vitest run --config vitest.config.ts",
|
|
27
28
|
"test:coverage": "vitest run --coverage --config vitest.config.ts",
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
42
43
|
"@ncds/types-common": "^1.0.0",
|
|
43
44
|
"@ncds/types-layout": "^1.0.0",
|
|
44
|
-
"@ncds/ui-admin-icon": "0.1.
|
|
45
|
+
"@ncds/ui-admin-icon": "0.1.9",
|
|
45
46
|
"classnames": "^2.3.2",
|
|
46
47
|
"flatpickr": "4.6.13",
|
|
47
48
|
"jsdom": "^26.1.0",
|
|
@@ -62,6 +63,8 @@
|
|
|
62
63
|
"@types/react": "^18.3.20",
|
|
63
64
|
"esbuild": "^0.28.0",
|
|
64
65
|
"ts-morph": "^27.0.2",
|
|
66
|
+
"tsx": "^4.21.0",
|
|
67
|
+
"typescript": "5.9.3",
|
|
65
68
|
"vitest": "^4.1.4"
|
|
66
69
|
}
|
|
67
70
|
}
|