@exem-ui/react 0.0.0-next-20260227030322
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/LICENSE +190 -0
- package/README.en.md +142 -0
- package/README.md +178 -0
- package/dist/chunk-5M47B2XJ.js +4096 -0
- package/dist/chunk-5M47B2XJ.js.map +1 -0
- package/dist/chunk-LZWKMQJL.mjs +3886 -0
- package/dist/chunk-LZWKMQJL.mjs.map +1 -0
- package/dist/icon/index.d.mts +1258 -0
- package/dist/icon/index.d.ts +1258 -0
- package/dist/icon/index.js +1672 -0
- package/dist/icon/index.js.map +1 -0
- package/dist/icon/index.mjs +3 -0
- package/dist/icon/index.mjs.map +1 -0
- package/dist/index.d.mts +1166 -0
- package/dist/index.d.ts +1166 -0
- package/dist/index.js +3075 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3018 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +130 -0
- package/styles.css +20 -0
package/package.json
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@exem-ui/react",
|
|
3
|
+
"version": "0.0.0-next-20260227030322",
|
|
4
|
+
"description": "EXEM Design System - React Components",
|
|
5
|
+
"author": "EXEM Design Team",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"module": "dist/index.mjs",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.mjs",
|
|
14
|
+
"require": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./icon": {
|
|
17
|
+
"types": "./dist/icon/index.d.ts",
|
|
18
|
+
"import": "./dist/icon/index.mjs",
|
|
19
|
+
"require": "./dist/icon/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./styles": "./styles.css"
|
|
22
|
+
},
|
|
23
|
+
"sideEffects": [
|
|
24
|
+
"styles.css"
|
|
25
|
+
],
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"styles.css"
|
|
29
|
+
],
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"react",
|
|
35
|
+
"components",
|
|
36
|
+
"exem",
|
|
37
|
+
"design-system",
|
|
38
|
+
"typescript"
|
|
39
|
+
],
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "https://github.com/CloudMOA/exem-ui.git",
|
|
43
|
+
"directory": "packages/react"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://github.com/CloudMOA/exem-ui",
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/CloudMOA/exem-ui/issues"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"react": ">=19.0.0",
|
|
51
|
+
"react-dom": ">=19.0.0"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@atlaskit/pragmatic-drag-and-drop": "^1.7.7",
|
|
55
|
+
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
|
|
56
|
+
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.11",
|
|
57
|
+
"@dnd-kit/core": "^6.3.1",
|
|
58
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
59
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
60
|
+
"@radix-ui/react-checkbox": "^1.2.3",
|
|
61
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
62
|
+
"@radix-ui/react-radio-group": "^1.2.3",
|
|
63
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
64
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
65
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
66
|
+
"@radix-ui/react-switch": "^1.2.3",
|
|
67
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
68
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
69
|
+
"@tanstack/react-table": "^8.21.3",
|
|
70
|
+
"@tanstack/react-virtual": "^3.13.16",
|
|
71
|
+
"class-variance-authority": "^0.7.1",
|
|
72
|
+
"clsx": "^2.1.1",
|
|
73
|
+
"lodash-es": "^4.17.22",
|
|
74
|
+
"react-day-picker": "^9.13.2",
|
|
75
|
+
"sonner": "^2.0.7",
|
|
76
|
+
"tailwind-merge": "^3.3.1",
|
|
77
|
+
"tailwind-scrollbar-hide": "^4.0.0",
|
|
78
|
+
"tiny-invariant": "^1.3.3",
|
|
79
|
+
"@exem-ui/core": "0.0.0-next-20260227030322"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@eslint/js": "^9.15.0",
|
|
83
|
+
"@svgr/core": "^8.1.0",
|
|
84
|
+
"@svgr/plugin-jsx": "^8.1.0",
|
|
85
|
+
"@types/lodash-es": "^4.17.12",
|
|
86
|
+
"@types/react": "^19.1.9",
|
|
87
|
+
"@types/react-dom": "^19.1.7",
|
|
88
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
89
|
+
"autoprefixer": "^10.4.20",
|
|
90
|
+
"eslint": "^9.15.0",
|
|
91
|
+
"eslint-config-prettier": "^9.1.0",
|
|
92
|
+
"eslint-import-resolver-typescript": "^3.6.3",
|
|
93
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
94
|
+
"eslint-plugin-import": "^2.31.0",
|
|
95
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
96
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
97
|
+
"eslint-plugin-react": "^7.37.2",
|
|
98
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
99
|
+
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
|
100
|
+
"eslint-plugin-tailwindcss": "^3.17.5",
|
|
101
|
+
"eslint-plugin-unused-imports": "^4.1.4",
|
|
102
|
+
"globals": "^15.12.0",
|
|
103
|
+
"prettier": "^3.4.2",
|
|
104
|
+
"prettier-plugin-tailwindcss": "^0.6.9",
|
|
105
|
+
"react": "^19.1.1",
|
|
106
|
+
"react-dom": "^19.1.1",
|
|
107
|
+
"svgo": "^3.3.2",
|
|
108
|
+
"tailwindcss": "^3.4.15",
|
|
109
|
+
"tailwindcss-animate": "^1.0.7",
|
|
110
|
+
"tsup": "^8.5.0",
|
|
111
|
+
"typescript": "^5.8.2",
|
|
112
|
+
"typescript-eslint": "^8.16.0",
|
|
113
|
+
"@exem-ui/tailwindcss3": "0.0.0-next-20260227030322"
|
|
114
|
+
},
|
|
115
|
+
"scripts": {
|
|
116
|
+
"generate": "node scripts/generate-icons.js",
|
|
117
|
+
"prebuild": "pnpm generate",
|
|
118
|
+
"build": "tsup",
|
|
119
|
+
"dev": "pnpm generate && tsup --watch",
|
|
120
|
+
"pretypecheck": "pnpm generate",
|
|
121
|
+
"typecheck": "tsc --noEmit",
|
|
122
|
+
"test": "vitest run",
|
|
123
|
+
"test:watch": "vitest watch",
|
|
124
|
+
"test:coverage": "vitest run --coverage",
|
|
125
|
+
"test:ui": "vitest --ui",
|
|
126
|
+
"lint": "biome check src",
|
|
127
|
+
"lint:fix": "biome check --write src",
|
|
128
|
+
"format": "prettier --write \"src/**/*.{ts,tsx}\""
|
|
129
|
+
}
|
|
130
|
+
}
|
package/styles.css
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @exem-ui/react — Tailwind CSS 4 Source Detection
|
|
3
|
+
*
|
|
4
|
+
* TW4는 node_modules를 기본 스캔하지 않으므로,
|
|
5
|
+
* 컴포넌트 내부 유틸리티 클래스(rounded-full, shrink-0 등)를
|
|
6
|
+
* TW4가 인식하려면 이 파일을 @import 해야 합니다.
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```css
|
|
10
|
+
* @import "tailwindcss";
|
|
11
|
+
* @import "@exem-ui/core/css";
|
|
12
|
+
* @import "@exem-ui/tailwindcss4";
|
|
13
|
+
* @import "@exem-ui/react/styles";
|
|
14
|
+
* ```
|
|
15
|
+
*
|
|
16
|
+
* 참고: Tailwind CSS 3에서는 tailwind.config.js의 content 배열이
|
|
17
|
+
* node_modules를 포함할 수 있어 별도 설정이 불필요했습니다.
|
|
18
|
+
* TW4의 CSS-first 아키텍처에서는 @source로 대체됩니다.
|
|
19
|
+
*/
|
|
20
|
+
@source "./dist";
|