@easy-editor/setters 0.0.2
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 +9 -0
- package/README.md +256 -0
- package/dist/basic/color-setter/index.d.ts +6 -0
- package/dist/basic/node-id-setter/index.d.ts +5 -0
- package/dist/basic/number-setter/index.d.ts +7 -0
- package/dist/basic/rect-setter/index.d.ts +5 -0
- package/dist/basic/string-setter/index.d.ts +7 -0
- package/dist/basic/switch-setter/index.d.ts +5 -0
- package/dist/basic/upload-setter/index.d.ts +17 -0
- package/dist/components/ui/button.d.ts +13 -0
- package/dist/components/ui/collapsible.d.ts +5 -0
- package/dist/components/ui/dropdown-menu.d.ts +25 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/label.d.ts +4 -0
- package/dist/components/ui/popover.d.ts +7 -0
- package/dist/components/ui/switch.d.ts +4 -0
- package/dist/components/ui/tabs.d.ts +7 -0
- package/dist/custom-field-item.d.ts +3 -0
- package/dist/group/collapse-setter/index.d.ts +7 -0
- package/dist/group/tab-setter/index.d.ts +11 -0
- package/dist/index.cjs +3768 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.esm.js +3701 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +3764 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +2 -0
- package/dist/index.min.js.map +1 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/styles.css +1 -0
- package/dist/types.d.ts +50 -0
- package/package.json +92 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@easy-editor/setters",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Official setters library for EasyEditor - A collection of property setter components",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.esm.js",
|
|
12
|
+
"require": "./dist/index.cjs"
|
|
13
|
+
},
|
|
14
|
+
"./styles.css": "./dist/styles.css"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public",
|
|
23
|
+
"jsdelivr": "dist/index.min.js",
|
|
24
|
+
"registry": "https://registry.npmjs.org/"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/Easy-Editor/EasySetters",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"author": "JinSo <kimjinso@qq.com>",
|
|
29
|
+
"keywords": [
|
|
30
|
+
"@easy-editor",
|
|
31
|
+
"easyeditor",
|
|
32
|
+
"low-code",
|
|
33
|
+
"setter",
|
|
34
|
+
"property-editor",
|
|
35
|
+
"react"
|
|
36
|
+
],
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/Easy-Editor/EasySetters",
|
|
40
|
+
"directory": "packages/setters"
|
|
41
|
+
},
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/Easy-Editor/EasySetters/issues"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"@easy-editor/core": "*",
|
|
47
|
+
"@types/react": "^18 || ^19",
|
|
48
|
+
"@types/react-dom": "^18 || ^19",
|
|
49
|
+
"react": "^18 || ^19",
|
|
50
|
+
"react-dom": "^18 || ^19"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
54
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
55
|
+
"@types/events": "^3.0.3",
|
|
56
|
+
"autoprefixer": "^10.4.23",
|
|
57
|
+
"postcss": "^8.5.6",
|
|
58
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
59
|
+
"shadcn": "^3.6.3",
|
|
60
|
+
"tailwindcss": "^4.1.18",
|
|
61
|
+
"tailwindcss-animate": "^1.0.7"
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
65
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
66
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
67
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
68
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
69
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
70
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
71
|
+
"@uiw/react-color-sketch": "^2.3.2",
|
|
72
|
+
"class-variance-authority": "^0.7.1",
|
|
73
|
+
"clsx": "^2.1.1",
|
|
74
|
+
"lucide-react": "^0.561.0",
|
|
75
|
+
"tailwind-merge": "^3.4.0",
|
|
76
|
+
"tw-animate-css": "^1.4.0"
|
|
77
|
+
},
|
|
78
|
+
"scripts": {
|
|
79
|
+
"dev": "vite --config vite.config.ts",
|
|
80
|
+
"format": "biome format --write .",
|
|
81
|
+
"lint": "biome check .",
|
|
82
|
+
"build": "npm-run-all -nl build:*",
|
|
83
|
+
"build:clean": "rimraf dist/",
|
|
84
|
+
"build:js": "rollup -c",
|
|
85
|
+
"build:types": "pnpm types",
|
|
86
|
+
"types": "npm-run-all -nl types:*",
|
|
87
|
+
"types:src": "tsc --project tsconfig.build.json",
|
|
88
|
+
"test-types": "tsc --project tsconfig.test.json"
|
|
89
|
+
},
|
|
90
|
+
"module": "dist/index.esm.js",
|
|
91
|
+
"unpkg": "dist/index.min.js"
|
|
92
|
+
}
|