@uniformdev/design-system 20.7.1-alpha.12 → 20.7.1-alpha.121
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 +1 -1
- package/README.md +246 -0
- package/dist/esm/{importedIcons-SI6R3MYO.js → importedIcons-NFIA4IOK.js} +5 -1
- package/dist/esm/index.js +4399 -2566
- package/dist/index.d.mts +512 -130
- package/dist/index.d.ts +512 -130
- package/dist/index.js +4499 -2615
- package/package.json +38 -25
package/package.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/design-system",
|
|
3
|
-
"version": "20.7.1-alpha.
|
|
3
|
+
"version": "20.7.1-alpha.121+a4f284458c",
|
|
4
4
|
"description": "Uniform design system components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"import": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"default": "./dist/esm/index.js"
|
|
11
|
+
},
|
|
12
|
+
"require": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"default": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
},
|
|
6
18
|
"main": "./dist/index.js",
|
|
7
19
|
"module": "./dist/esm/index.js",
|
|
8
20
|
"types": "./dist/index.d.ts",
|
|
@@ -11,40 +23,41 @@
|
|
|
11
23
|
"build": "tsup",
|
|
12
24
|
"dev": "tsup --watch",
|
|
13
25
|
"clean": "rimraf dist",
|
|
14
|
-
"test": "
|
|
15
|
-
"test:coverage": "
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"test:coverage": "vitest run --coverage",
|
|
16
28
|
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
|
17
29
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\"",
|
|
18
30
|
"create:component": "hygen component with-prompt",
|
|
19
|
-
"document": "api-extractor run --local"
|
|
31
|
+
"document:prebuild": "api-extractor run --local"
|
|
20
32
|
},
|
|
21
33
|
"devDependencies": {
|
|
22
34
|
"@emotion/jest": "11.13.0",
|
|
23
|
-
"@storybook/
|
|
24
|
-
"@
|
|
25
|
-
"@
|
|
26
|
-
"@
|
|
27
|
-
"@
|
|
28
|
-
"@
|
|
29
|
-
"
|
|
30
|
-
"@uniformdev/richtext": "^20.7.1-alpha.12+75bdbe8f17",
|
|
31
|
-
"autoprefixer": "10.4.16",
|
|
35
|
+
"@storybook/react-vite": "10.1.0",
|
|
36
|
+
"@types/react": "18.3.24",
|
|
37
|
+
"@types/react-dom": "18.3.7",
|
|
38
|
+
"@uniformdev/canvas": "^20.7.1-alpha.121+a4f284458c",
|
|
39
|
+
"@uniformdev/richtext": "^20.7.1-alpha.121+a4f284458c",
|
|
40
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
41
|
+
"autoprefixer": "10.4.21",
|
|
32
42
|
"hygen": "6.2.11",
|
|
33
|
-
"
|
|
43
|
+
"jsdom": "20.0.3",
|
|
44
|
+
"nwsapi": "2.2.2",
|
|
45
|
+
"postcss": "8.5.3",
|
|
34
46
|
"react": "18.3.1",
|
|
35
47
|
"react-dom": "18.3.1",
|
|
36
48
|
"react-select-event": "^5.5.1",
|
|
37
|
-
"tsup": "8.3.0"
|
|
49
|
+
"tsup": "8.3.0",
|
|
50
|
+
"vitest": "3.2.4"
|
|
38
51
|
},
|
|
39
52
|
"dependencies": {
|
|
40
|
-
"@ariakit/react": "^0.
|
|
53
|
+
"@ariakit/react": "^0.4.15",
|
|
41
54
|
"@dnd-kit/core": "^6.1.0",
|
|
42
55
|
"@dnd-kit/modifiers": "^7.0.0",
|
|
43
56
|
"@dnd-kit/sortable": "^8.0.0",
|
|
44
57
|
"@dnd-kit/utilities": "^3.2.2",
|
|
45
58
|
"@emotion/css": "11.13.5",
|
|
46
59
|
"@emotion/react": "11.13.5",
|
|
47
|
-
"@internationalized/date": "^3.
|
|
60
|
+
"@internationalized/date": "^3.7.0",
|
|
48
61
|
"@lexical/code": "0.25.0",
|
|
49
62
|
"@lexical/link": "0.25.0",
|
|
50
63
|
"@lexical/list": "0.25.0",
|
|
@@ -54,22 +67,22 @@
|
|
|
54
67
|
"@lexical/selection": "0.25.0",
|
|
55
68
|
"@lexical/table": "0.25.0",
|
|
56
69
|
"@lexical/utils": "0.25.0",
|
|
57
|
-
"@monaco-editor/react": "4.
|
|
58
|
-
"@react-icons/all-files": "https://github.com/react-icons/react-icons/releases/download/v5.
|
|
70
|
+
"@monaco-editor/react": "4.7.0",
|
|
71
|
+
"@react-icons/all-files": "https://github.com/react-icons/react-icons/releases/download/v5.5.0/react-icons-all-files-5.5.0.tgz",
|
|
59
72
|
"fast-equals": "^5.0.1",
|
|
60
73
|
"lexical": "0.25.0",
|
|
61
|
-
"monaco-editor": "0.
|
|
74
|
+
"monaco-editor": "0.52.2",
|
|
62
75
|
"react-aria-components": "^1.1.1",
|
|
63
76
|
"react-hotkeys-hook": "4.5.0",
|
|
64
|
-
"react-paginate": "8.
|
|
65
|
-
"react-select": "5.
|
|
77
|
+
"react-paginate": "8.3.0",
|
|
78
|
+
"react-select": "5.10.0",
|
|
66
79
|
"react-toastify": "10.0.5",
|
|
67
80
|
"react-use": "17.5.1",
|
|
68
81
|
"zod-to-json-schema": "3.21.4"
|
|
69
82
|
},
|
|
70
83
|
"peerDependencies": {
|
|
71
|
-
"react": ">=
|
|
72
|
-
"react-dom": ">=
|
|
84
|
+
"react": ">=18",
|
|
85
|
+
"react-dom": ">=18"
|
|
73
86
|
},
|
|
74
87
|
"files": [
|
|
75
88
|
"/dist"
|
|
@@ -77,5 +90,5 @@
|
|
|
77
90
|
"publishConfig": {
|
|
78
91
|
"access": "public"
|
|
79
92
|
},
|
|
80
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "a4f284458cffb24442299a5210bdad47c05aada3"
|
|
81
94
|
}
|