@gomeniucivan/ui 1.0.33 → 1.0.36
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.d.mts +4055 -0
- package/dist/index.d.ts +4055 -1
- package/dist/index.js +5671 -9
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +5672 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +156 -79
- package/dist/index.cjs +0 -10
- package/dist/style.css +0 -2
package/package.json
CHANGED
|
@@ -1,102 +1,179 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gomeniucivan/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.36",
|
|
4
4
|
"private": false,
|
|
5
|
+
"sideEffects": [
|
|
6
|
+
"**/*.css"
|
|
7
|
+
],
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.cjs",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"main": "dist/index.cjs",
|
|
17
|
+
"module": "dist/index.js",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
5
22
|
"scripts": {
|
|
6
|
-
"
|
|
7
|
-
"build": "tsup --config tsup.config.ts",
|
|
8
|
-
"build:preview": "vite build --outDir preview-dist",
|
|
9
|
-
"preview": "vite preview",
|
|
10
|
-
"prepublishOnly": "npm run build",
|
|
23
|
+
"build": "tsup",
|
|
11
24
|
"publish": "npm publish",
|
|
12
|
-
"
|
|
25
|
+
"dev": "dumi dev"
|
|
26
|
+
},
|
|
27
|
+
"lint-staged": {
|
|
28
|
+
"*.md": [
|
|
29
|
+
"remark --quiet --output --",
|
|
30
|
+
"prettier --write --no-error-on-unmatched-pattern"
|
|
31
|
+
],
|
|
32
|
+
"*.json": [
|
|
33
|
+
"prettier --write --no-error-on-unmatched-pattern"
|
|
34
|
+
],
|
|
35
|
+
"*.{js,jsx}": [
|
|
36
|
+
"prettier --write",
|
|
37
|
+
"stylelint --fix",
|
|
38
|
+
"eslint --fix"
|
|
39
|
+
],
|
|
40
|
+
"*.{ts,tsx}": [
|
|
41
|
+
"prettier --parser=typescript --write",
|
|
42
|
+
"stylelint --fix",
|
|
43
|
+
"eslint --fix"
|
|
44
|
+
]
|
|
13
45
|
},
|
|
14
46
|
"dependencies": {
|
|
47
|
+
"@ant-design/cssinjs": "^2.0.3",
|
|
48
|
+
"@base-ui/react": "1.0.0",
|
|
15
49
|
"@dnd-kit/core": "^6.3.1",
|
|
16
50
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
17
51
|
"@dnd-kit/sortable": "^10.0.0",
|
|
18
52
|
"@dnd-kit/utilities": "^3.2.2",
|
|
19
|
-
"@
|
|
20
|
-
"@
|
|
21
|
-
"@
|
|
22
|
-
"@
|
|
53
|
+
"@emoji-mart/data": "^1.2.1",
|
|
54
|
+
"@emoji-mart/react": "^1.1.1",
|
|
55
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
56
|
+
"@floating-ui/react": "^0.27.17",
|
|
57
|
+
"@giscus/react": "^3.1.0",
|
|
58
|
+
"@mdx-js/mdx": "^3.1.1",
|
|
59
|
+
"@mdx-js/react": "^3.1.1",
|
|
60
|
+
"@pierre/diffs": "^1.0.10",
|
|
61
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
62
|
+
"@shikijs/core": "^3.22.0",
|
|
63
|
+
"@shikijs/transformers": "^3.22.0",
|
|
64
|
+
"@splinetool/runtime": "0.9.526",
|
|
65
|
+
"ahooks": "^3.9.6",
|
|
66
|
+
"antd-style": "^4.1.0",
|
|
67
|
+
"chroma-js": "^3.2.0",
|
|
23
68
|
"class-variance-authority": "^0.7.1",
|
|
24
69
|
"clsx": "^2.1.1",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"react
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
70
|
+
"dayjs": "^1.11.19",
|
|
71
|
+
"emoji-mart": "^5.6.0",
|
|
72
|
+
"es-toolkit": "^1.44.0",
|
|
73
|
+
"fast-deep-equal": "^3.1.3",
|
|
74
|
+
"immer": "^11.1.3",
|
|
75
|
+
"katex": "^0.16.28",
|
|
76
|
+
"leva": "^0.10.1",
|
|
77
|
+
"lucide-react": "^0.563.0",
|
|
78
|
+
"marked": "^17.0.1",
|
|
79
|
+
"mermaid": "^11.12.2",
|
|
80
|
+
"motion": "^12.0.0",
|
|
81
|
+
"numeral": "^2.0.6",
|
|
82
|
+
"polished": "^4.3.1",
|
|
83
|
+
"query-string": "^9.3.1",
|
|
84
|
+
"rc-collapse": "^4.0.0",
|
|
85
|
+
"rc-footer": "^0.6.8",
|
|
86
|
+
"rc-image": "^7.12.0",
|
|
87
|
+
"rc-input-number": "^9.5.0",
|
|
88
|
+
"rc-menu": "^9.16.1",
|
|
89
|
+
"re-resizable": "^6.11.2",
|
|
90
|
+
"react-avatar-editor": "^14.0.0",
|
|
91
|
+
"react-error-boundary": "^6.1.0",
|
|
92
|
+
"react-hotkeys-hook": "^5.2.4",
|
|
93
|
+
"react-markdown": "^10.1.0",
|
|
94
|
+
"react-merge-refs": "^3.0.2",
|
|
95
|
+
"react-rnd": "^10.5.2",
|
|
96
|
+
"react-zoom-pan-pinch": "^3.7.0",
|
|
97
|
+
"rehype-github-alerts": "^4.2.0",
|
|
98
|
+
"rehype-katex": "^7.0.1",
|
|
99
|
+
"rehype-raw": "^7.0.0",
|
|
100
|
+
"remark-breaks": "^4.0.0",
|
|
101
|
+
"remark-cjk-friendly": "^1.2.3",
|
|
102
|
+
"remark-gfm": "^4.0.1",
|
|
103
|
+
"remark-github": "^12.0.0",
|
|
104
|
+
"remark-math": "^6.0.0",
|
|
105
|
+
"shiki": "^3.22.0",
|
|
106
|
+
"shiki-stream": "^0.1.4",
|
|
107
|
+
"swr": "^2.4.0",
|
|
108
|
+
"ts-md5": "^2.0.1",
|
|
109
|
+
"tsup": "^8.5.1",
|
|
110
|
+
"unified": "^11.0.5",
|
|
111
|
+
"url-join": "^5.0.0",
|
|
112
|
+
"use-merge-value": "^1.2.0",
|
|
113
|
+
"uuid": "^13.0.0",
|
|
114
|
+
"virtua": "^0.48.5"
|
|
41
115
|
},
|
|
42
116
|
"devDependencies": {
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"@types/
|
|
50
|
-
"@types/
|
|
51
|
-
"@types/
|
|
117
|
+
"@ant-design/icons": "^6.1.0",
|
|
118
|
+
"@commitlint/cli": "^19.8.1",
|
|
119
|
+
"@lobehub/fluent-emoji": "^4.1.0",
|
|
120
|
+
"@lobehub/icons": "^4.2.0",
|
|
121
|
+
"@lobehub/lint": "^1.26.3",
|
|
122
|
+
"@testing-library/react": "^16.3.2",
|
|
123
|
+
"@types/chroma-js": "^3.1.2",
|
|
124
|
+
"@types/hast": "^3.0.4",
|
|
125
|
+
"@types/katex": "^0.16.8",
|
|
126
|
+
"@types/mdx": "^2.0.13",
|
|
127
|
+
"@types/numeral": "^2.0.5",
|
|
128
|
+
"@types/pangu": "^4.0.2",
|
|
129
|
+
"@types/react": "^19.2.10",
|
|
130
|
+
"@types/react-avatar-editor": "^13.0.4",
|
|
52
131
|
"@types/react-dom": "^19.2.3",
|
|
53
|
-
"@
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
132
|
+
"@types/unist": "^3.0.3",
|
|
133
|
+
"@types/uuid": "^11.0.0",
|
|
134
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
135
|
+
"antd": "^6.2.3",
|
|
136
|
+
"babel-plugin-antd-style": "^1.0.4",
|
|
137
|
+
"cheerio": "^1.2.0",
|
|
138
|
+
"clean-package": "^2.2.0",
|
|
139
|
+
"commitlint": "^19.8.1",
|
|
140
|
+
"concurrently": "^9.2.1",
|
|
141
|
+
"cross-env": "^10.1.0",
|
|
142
|
+
"dotenv": "^17.2.3",
|
|
143
|
+
"dpdm": "^3.14.0",
|
|
144
|
+
"dumi": "^2.4.23",
|
|
145
|
+
"dumi-theme-lobehub": "^4.0.2",
|
|
146
|
+
"eslint": "^8.57.1",
|
|
147
|
+
"figma-js": "1.16.1-0",
|
|
148
|
+
"husky": "^9.1.7",
|
|
149
|
+
"jsdom": "^26.1.0",
|
|
62
150
|
"lint-staged": "^16.2.7",
|
|
63
|
-
"
|
|
64
|
-
"prettier": "^3.
|
|
65
|
-
"
|
|
66
|
-
"react": "^19.2.
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
151
|
+
"mdast-util-to-markdown": "^2.1.2",
|
|
152
|
+
"prettier": "^3.8.1",
|
|
153
|
+
"react": "^19.2.4",
|
|
154
|
+
"react-dom": "^19.2.4",
|
|
155
|
+
"remark": "^15.0.1",
|
|
156
|
+
"remark-cli": "^12.0.1",
|
|
157
|
+
"semantic-release": "^21.1.2",
|
|
158
|
+
"stylelint": "^15.11.0",
|
|
159
|
+
"svgo": "^4.0.0",
|
|
160
|
+
"tsdown": "^0.18.2",
|
|
161
|
+
"tsx": "^4.21.0",
|
|
72
162
|
"typescript": "^5.9.3",
|
|
73
|
-
"
|
|
74
|
-
"
|
|
163
|
+
"unist-util-is": "^6.0.1",
|
|
164
|
+
"unist-util-visit": "^5.1.0",
|
|
165
|
+
"vitest": "^3.2.4"
|
|
75
166
|
},
|
|
76
|
-
"files": [
|
|
77
|
-
"dist/index.js",
|
|
78
|
-
"dist/index.cjs",
|
|
79
|
-
"dist/index.d.ts",
|
|
80
|
-
"dist/style.css"
|
|
81
|
-
],
|
|
82
|
-
"main": "dist/index.cjs",
|
|
83
|
-
"module": "dist/index.js",
|
|
84
|
-
"types": "dist/index.d.ts",
|
|
85
|
-
"sideEffects": [
|
|
86
|
-
"**/*.css"
|
|
87
|
-
],
|
|
88
167
|
"peerDependencies": {
|
|
89
|
-
"
|
|
90
|
-
"
|
|
168
|
+
"@lobehub/fluent-emoji": "^4.0.0",
|
|
169
|
+
"@lobehub/icons": "^4.0.0",
|
|
170
|
+
"antd": "^6.1.1",
|
|
171
|
+
"motion": "^12.0.0",
|
|
172
|
+
"react": "^19.0.0",
|
|
173
|
+
"react-dom": "^19.0.0"
|
|
91
174
|
},
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
|
|
95
|
-
"import": "./dist/index.js",
|
|
96
|
-
"require": "./dist/index.cjs"
|
|
97
|
-
},
|
|
98
|
-
"./style.css": "./dist/style.css",
|
|
99
|
-
"./styles.css": "./src/styles/style.css",
|
|
100
|
-
"./styles/*": "./src/styles/*"
|
|
175
|
+
"publishConfig": {
|
|
176
|
+
"access": "public",
|
|
177
|
+
"registry": "https://registry.npmjs.org"
|
|
101
178
|
}
|
|
102
179
|
}
|