@akinon/ui-react 0.0.1
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/dist/index.cjs +586 -0
- package/dist/index.d.ts +48 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +84168 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@akinon/ui-react",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@akinon/ui-filter": "0.0.1",
|
|
13
|
+
"@akinon/ui-alert": "0.0.1",
|
|
14
|
+
"@akinon/ui-auto-complete": "0.0.1",
|
|
15
|
+
"@akinon/ui-avatar": "0.0.1",
|
|
16
|
+
"@akinon/ui-button": "0.0.1",
|
|
17
|
+
"@akinon/ui-badge": "0.0.1",
|
|
18
|
+
"@akinon/ui-breadcrumb": "0.0.1",
|
|
19
|
+
"@akinon/ui-card": "0.0.1",
|
|
20
|
+
"@akinon/ui-carousel": "0.0.1",
|
|
21
|
+
"@akinon/ui-checkbox": "0.0.1",
|
|
22
|
+
"@akinon/ui-color-picker": "0.0.1",
|
|
23
|
+
"@akinon/ui-collapse": "0.0.1",
|
|
24
|
+
"@akinon/ui-data-table": "0.0.1",
|
|
25
|
+
"@akinon/ui-drawer": "0.0.1",
|
|
26
|
+
"@akinon/ui-divider": "0.0.1",
|
|
27
|
+
"@akinon/ui-dropdown": "0.0.1",
|
|
28
|
+
"@akinon/ui-menu": "0.0.1",
|
|
29
|
+
"@akinon/ui-input-number": "0.0.1",
|
|
30
|
+
"@akinon/ui-layout": "0.0.1",
|
|
31
|
+
"@akinon/ui-image": "0.0.1",
|
|
32
|
+
"@akinon/ui-list": "0.0.1",
|
|
33
|
+
"@akinon/ui-message": "0.0.1",
|
|
34
|
+
"@akinon/ui-modal": "0.0.1",
|
|
35
|
+
"@akinon/ui-notification": "0.0.1",
|
|
36
|
+
"@akinon/ui-pagination": "0.0.1",
|
|
37
|
+
"@akinon/ui-input": "0.0.1",
|
|
38
|
+
"@akinon/ui-popover": "0.0.1",
|
|
39
|
+
"@akinon/ui-date-picker": "0.0.1",
|
|
40
|
+
"@akinon/ui-segmented": "0.0.1",
|
|
41
|
+
"@akinon/ui-radio": "0.0.1",
|
|
42
|
+
"@akinon/ui-skeleton": "0.0.1",
|
|
43
|
+
"@akinon/ui-slider": "0.0.1",
|
|
44
|
+
"@akinon/ui-spin": "0.0.1",
|
|
45
|
+
"@akinon/ui-space": "0.0.1",
|
|
46
|
+
"@akinon/ui-select": "0.0.1",
|
|
47
|
+
"@akinon/ui-system": "0.0.1",
|
|
48
|
+
"@akinon/ui-switch": "0.0.1",
|
|
49
|
+
"@akinon/ui-progress": "0.0.1",
|
|
50
|
+
"@akinon/ui-table": "0.0.1",
|
|
51
|
+
"@akinon/ui-theme": "0.0.1",
|
|
52
|
+
"@akinon/ui-time-picker": "0.0.1",
|
|
53
|
+
"@akinon/ui-transfer": "0.0.1",
|
|
54
|
+
"@akinon/ui-tooltip": "0.0.1",
|
|
55
|
+
"@akinon/ui-tree": "0.0.1",
|
|
56
|
+
"@akinon/ui-typography": "0.0.1",
|
|
57
|
+
"@akinon/ui-steps": "0.0.1",
|
|
58
|
+
"@akinon/ui-tree-select": "0.0.1"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"clean-package": "2.2.0",
|
|
62
|
+
"tsconfig": "0.0.0",
|
|
63
|
+
"@akinon/vite-config": "^0.1.0",
|
|
64
|
+
"eslint-config-custom": "0.1.0"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"react": ">=18",
|
|
68
|
+
"react-dom": ">=18"
|
|
69
|
+
},
|
|
70
|
+
"clean-package": "../../../clean-package.config.json",
|
|
71
|
+
"types": "dist/index.d.ts",
|
|
72
|
+
"exports": {
|
|
73
|
+
".": {
|
|
74
|
+
"types": "./dist/index.d.ts",
|
|
75
|
+
"import": "./dist/index.js",
|
|
76
|
+
"require": "./dist/index.cjs"
|
|
77
|
+
},
|
|
78
|
+
"./package.json": "./package.json"
|
|
79
|
+
},
|
|
80
|
+
"scripts": {
|
|
81
|
+
"build": "vite build",
|
|
82
|
+
"lint": "eslint *.ts*",
|
|
83
|
+
"test": "vitest run",
|
|
84
|
+
"test:ui": "vitest --ui",
|
|
85
|
+
"test:watch": "vitest watch",
|
|
86
|
+
"typecheck": "tsc --noEmit"
|
|
87
|
+
}
|
|
88
|
+
}
|