@1urso/generic-editor 0.1.21 → 0.1.23
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 +373 -316
- package/dist/editor/components/ColorPicker.d.ts +11 -0
- package/dist/editor/components/DraggableElement.d.ts +8 -0
- package/dist/editor/utils/helpers.d.ts +3 -0
- package/dist/generic-editor.js +7389 -6669
- package/dist/generic-editor.umd.cjs +82 -16
- package/package.json +78 -77
package/package.json
CHANGED
|
@@ -1,77 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@1urso/generic-editor",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"publishConfig": {
|
|
5
|
-
"access": "public"
|
|
6
|
-
},
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "./dist/generic-editor.umd.cjs",
|
|
9
|
-
"module": "./dist/generic-editor.js",
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": "./dist/generic-editor.js",
|
|
14
|
-
"require": "./dist/generic-editor.umd.cjs"
|
|
15
|
-
},
|
|
16
|
-
"./dist/generic-editor.css": "./dist/generic-editor.css"
|
|
17
|
-
},
|
|
18
|
-
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
],
|
|
21
|
-
"scripts": {
|
|
22
|
-
"dev": "vite",
|
|
23
|
-
"build": "tsc -b && vite build",
|
|
24
|
-
"lint": "eslint .",
|
|
25
|
-
"preview": "vite preview",
|
|
26
|
-
"pack:local": "npm run build && npm pack"
|
|
27
|
-
},
|
|
28
|
-
"peerDependencies": {
|
|
29
|
-
"@dnd-kit/core": "^6.3.1",
|
|
30
|
-
"@dnd-kit/sortable": "^10.0.0",
|
|
31
|
-
"@dnd-kit/utilities": "^3.2.2",
|
|
32
|
-
"@emotion/react": "^11.14.0",
|
|
33
|
-
"@emotion/styled": "^11.14.1",
|
|
34
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
35
|
-
"@radix-ui/react-icons": "^1.3.2",
|
|
36
|
-
"@radix-ui/themes": "^3.2.1",
|
|
37
|
-
"framer-motion": "^12.24.12",
|
|
38
|
-
"re-resizable": "^6.11.2",
|
|
39
|
-
"react": "^19.2.0",
|
|
40
|
-
"react-dom": "^19.2.0",
|
|
41
|
-
"react-resizable-panels": "^4.3.1"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@dnd-kit/core": "^6.3.1",
|
|
45
|
-
"@dnd-kit/sortable": "^10.0.0",
|
|
46
|
-
"@dnd-kit/utilities": "^3.2.2",
|
|
47
|
-
"@emotion/react": "^11.14.0",
|
|
48
|
-
"@emotion/styled": "^11.14.1",
|
|
49
|
-
"@eslint/js": "^9.39.1",
|
|
50
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
51
|
-
"@radix-ui/react-icons": "^1.3.2",
|
|
52
|
-
"@radix-ui/themes": "^3.2.1",
|
|
53
|
-
"@types/node": "^24.10.1",
|
|
54
|
-
"@types/react": "^19.2.5",
|
|
55
|
-
"@types/react-dom": "^19.2.3",
|
|
56
|
-
"@vitejs/plugin-react-swc": "^4.2.2",
|
|
57
|
-
"eslint": "^9.39.1",
|
|
58
|
-
"eslint-plugin-react-hooks": "^7.0.1",
|
|
59
|
-
"eslint-plugin-react-refresh": "^0.4.24",
|
|
60
|
-
"framer-motion": "^12.24.12",
|
|
61
|
-
"globals": "^16.5.0",
|
|
62
|
-
"re-resizable": "^6.11.2",
|
|
63
|
-
"react": "^19.2.0",
|
|
64
|
-
"react-dom": "^19.2.0",
|
|
65
|
-
"react-resizable-panels": "^4.3.1",
|
|
66
|
-
"typescript": "~5.9.3",
|
|
67
|
-
"typescript-eslint": "^8.46.4",
|
|
68
|
-
"vite": "npm:rolldown-vite@7.2.5",
|
|
69
|
-
"vite-plugin-dts": "^4.5.4"
|
|
70
|
-
},
|
|
71
|
-
"resolutions": {
|
|
72
|
-
"vite": "npm:rolldown-vite@7.2.5"
|
|
73
|
-
},
|
|
74
|
-
"dependencies": {
|
|
75
|
-
"@radix-ui/react-context-menu": "^2.2.16"
|
|
76
|
-
|
|
77
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@1urso/generic-editor",
|
|
3
|
+
"version": "0.1.23",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/generic-editor.umd.cjs",
|
|
9
|
+
"module": "./dist/generic-editor.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/generic-editor.js",
|
|
14
|
+
"require": "./dist/generic-editor.umd.cjs"
|
|
15
|
+
},
|
|
16
|
+
"./dist/generic-editor.css": "./dist/generic-editor.css"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "vite",
|
|
23
|
+
"build": "tsc -b && vite build",
|
|
24
|
+
"lint": "eslint .",
|
|
25
|
+
"preview": "vite preview",
|
|
26
|
+
"pack:local": "npm run build && npm pack"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@dnd-kit/core": "^6.3.1",
|
|
30
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
31
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
32
|
+
"@emotion/react": "^11.14.0",
|
|
33
|
+
"@emotion/styled": "^11.14.1",
|
|
34
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
35
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
36
|
+
"@radix-ui/themes": "^3.2.1",
|
|
37
|
+
"framer-motion": "^12.24.12",
|
|
38
|
+
"re-resizable": "^6.11.2",
|
|
39
|
+
"react": "^19.2.0",
|
|
40
|
+
"react-dom": "^19.2.0",
|
|
41
|
+
"react-resizable-panels": "^4.3.1"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@dnd-kit/core": "^6.3.1",
|
|
45
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
46
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
47
|
+
"@emotion/react": "^11.14.0",
|
|
48
|
+
"@emotion/styled": "^11.14.1",
|
|
49
|
+
"@eslint/js": "^9.39.1",
|
|
50
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
51
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
52
|
+
"@radix-ui/themes": "^3.2.1",
|
|
53
|
+
"@types/node": "^24.10.1",
|
|
54
|
+
"@types/react": "^19.2.5",
|
|
55
|
+
"@types/react-dom": "^19.2.3",
|
|
56
|
+
"@vitejs/plugin-react-swc": "^4.2.2",
|
|
57
|
+
"eslint": "^9.39.1",
|
|
58
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
59
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
60
|
+
"framer-motion": "^12.24.12",
|
|
61
|
+
"globals": "^16.5.0",
|
|
62
|
+
"re-resizable": "^6.11.2",
|
|
63
|
+
"react": "^19.2.0",
|
|
64
|
+
"react-dom": "^19.2.0",
|
|
65
|
+
"react-resizable-panels": "^4.3.1",
|
|
66
|
+
"typescript": "~5.9.3",
|
|
67
|
+
"typescript-eslint": "^8.46.4",
|
|
68
|
+
"vite": "npm:rolldown-vite@7.2.5",
|
|
69
|
+
"vite-plugin-dts": "^4.5.4"
|
|
70
|
+
},
|
|
71
|
+
"resolutions": {
|
|
72
|
+
"vite": "npm:rolldown-vite@7.2.5"
|
|
73
|
+
},
|
|
74
|
+
"dependencies": {
|
|
75
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
76
|
+
"react-colorful": "^5.6.1"
|
|
77
|
+
}
|
|
78
|
+
}
|