@sellmate/design-system-react 1.0.78 → 1.1.0
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/README.md +50 -60
- package/dist/components/components.d.ts +120 -112
- package/dist/components/components.js +27 -12
- package/dist/components/components.server.d.ts +121 -113
- package/dist/components/components.server.js +96 -94
- package/dist/index.d.ts +1 -1
- package/lib/components/components.server.ts +274 -267
- package/lib/components/components.ts +149 -134
- package/lib/index.ts +2 -3
- package/package.json +68 -67
package/lib/index.ts
CHANGED
|
@@ -20,9 +20,7 @@ export type {
|
|
|
20
20
|
RadioValue,
|
|
21
21
|
RadioOption,
|
|
22
22
|
// Button types
|
|
23
|
-
|
|
24
|
-
ButtonSize,
|
|
25
|
-
ButtonV2Name,
|
|
23
|
+
ButtonName,
|
|
26
24
|
DropdownButtonItem,
|
|
27
25
|
DropdownButtonName,
|
|
28
26
|
DropdownButtonSize,
|
|
@@ -36,6 +34,7 @@ export type {
|
|
|
36
34
|
TagName,
|
|
37
35
|
// Toast types
|
|
38
36
|
ToastType,
|
|
37
|
+
ToastPosition,
|
|
39
38
|
// Checkbox types
|
|
40
39
|
CheckedType,
|
|
41
40
|
// Date types
|
package/package.json
CHANGED
|
@@ -1,71 +1,72 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
},
|
|
16
|
-
"bugs": {
|
|
17
|
-
"url": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system/-/issues"
|
|
18
|
-
},
|
|
19
|
-
"license": "MIT",
|
|
20
|
-
"author": {
|
|
21
|
-
"name": "MeeKyeong Kim",
|
|
22
|
-
"email": "kmeijjing@gmail.com"
|
|
23
|
-
},
|
|
24
|
-
"main": "dist/index.js",
|
|
25
|
-
"module": "dist/index.js",
|
|
26
|
-
"types": "dist/index.d.ts",
|
|
27
|
-
"exports": {
|
|
28
|
-
".": {
|
|
29
|
-
"types": "./dist/index.d.ts",
|
|
30
|
-
"import": "./dist/index.js",
|
|
31
|
-
"require": "./dist/index.js"
|
|
2
|
+
"name": "@sellmate/design-system-react",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Design System - React Component Wrappers",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"web-components",
|
|
8
|
+
"design-system",
|
|
9
|
+
"ui-library"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system/-/blob/main/README.md?ref_type=heads",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system.git"
|
|
32
15
|
},
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system/-/issues"
|
|
18
|
+
},
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"author": {
|
|
21
|
+
"name": "MeeKyeong Kim",
|
|
22
|
+
"email": "kmeijjing@gmail.com"
|
|
23
|
+
},
|
|
24
|
+
"main": "dist/index.js",
|
|
25
|
+
"module": "dist/index.js",
|
|
26
|
+
"types": "dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"import": "./dist/index.js",
|
|
31
|
+
"require": "./dist/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./next": {
|
|
34
|
+
"types": "./dist/components/components.server.d.ts",
|
|
35
|
+
"import": "./dist/components/components.server.js",
|
|
36
|
+
"require": "./dist/components/components.server.js"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"directories": {
|
|
40
|
+
"lib": "lib",
|
|
41
|
+
"test": "__tests__"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist",
|
|
45
|
+
"lib"
|
|
46
|
+
],
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"prebuild": "rimraf dist",
|
|
52
|
+
"build": "tsc",
|
|
53
|
+
"clean": "rimraf lib dist",
|
|
54
|
+
"dev": "tsc --watch",
|
|
55
|
+
"typecheck": "tsc --noEmit"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@sellmate/design-system": "^1.1.0",
|
|
59
|
+
"@stencil/react-output-target": "^1.2.0"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"react": ">=16.8.0",
|
|
63
|
+
"react-dom": ">=16.8.0"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@types/react": "^19.2.2",
|
|
67
|
+
"react": "^19.2.0",
|
|
68
|
+
"react-dom": "^19.2.0",
|
|
69
|
+
"rimraf": "^6.0.1",
|
|
70
|
+
"typescript": "^5.9.3"
|
|
37
71
|
}
|
|
38
|
-
},
|
|
39
|
-
"directories": {
|
|
40
|
-
"lib": "lib",
|
|
41
|
-
"test": "__tests__"
|
|
42
|
-
},
|
|
43
|
-
"files": [
|
|
44
|
-
"dist",
|
|
45
|
-
"lib"
|
|
46
|
-
],
|
|
47
|
-
"publishConfig": {
|
|
48
|
-
"access": "public"
|
|
49
|
-
},
|
|
50
|
-
"scripts": {
|
|
51
|
-
"prebuild": "rimraf dist",
|
|
52
|
-
"build": "tsc",
|
|
53
|
-
"clean": "rimraf lib dist",
|
|
54
|
-
"dev": "tsc --watch"
|
|
55
|
-
},
|
|
56
|
-
"dependencies": {
|
|
57
|
-
"@sellmate/design-system": "^1.0.78",
|
|
58
|
-
"@stencil/react-output-target": "^1.2.0"
|
|
59
|
-
},
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"react": ">=16.8.0",
|
|
62
|
-
"react-dom": ">=16.8.0"
|
|
63
|
-
},
|
|
64
|
-
"devDependencies": {
|
|
65
|
-
"@types/react": "^19.2.2",
|
|
66
|
-
"react": "^19.2.0",
|
|
67
|
-
"react-dom": "^19.2.0",
|
|
68
|
-
"rimraf": "^6.0.1",
|
|
69
|
-
"typescript": "^5.9.3"
|
|
70
|
-
}
|
|
71
72
|
}
|