@digitalsee-ai/rcs 0.0.14 → 0.0.15
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 +237 -237
- package/dist/components/digitalsee/workflow/NodesConfig/define/config-form-item.d.ts +7 -1
- package/dist/components/digitalsee/workflow/api/index.d.ts +4 -0
- package/dist/components/digitalsee/workflow/builtin/controls/AuthTokenField/index.d.ts +11 -0
- package/dist/components/digitalsee/workflow/builtin/controls/ConfigSubflow/index.d.ts +10 -0
- package/dist/components/digitalsee/workflow/builtin/controls/ConfigSubflow/types.d.ts +81 -0
- package/dist/components/digitalsee/workflow/builtin/controls/MutilRowGuard/index.d.ts +13 -0
- package/dist/components/digitalsee/workflow/builtin/controls/MutilRowGuard/types.d.ts +106 -0
- package/dist/components/digitalsee/workflow/builtin/controls/SecretKeyField/index.d.ts +11 -0
- package/dist/components/digitalsee/workflow/builtin/controls/SelectOAuth2ClientField/index.d.ts +11 -0
- package/dist/components/digitalsee/workflow/types/engine.d.ts +2 -0
- package/dist/rcs.css +1 -1
- package/dist/rcs.es.js +18041 -13977
- package/dist/rcs.umd.js +58 -54
- package/package.json +150 -146
package/package.json
CHANGED
|
@@ -1,147 +1,151 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@digitalsee-ai/rcs",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"packageManager": "pnpm@10.12.1",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git"
|
|
7
|
-
},
|
|
8
|
-
"main": "./dist/rcs.umd.js",
|
|
9
|
-
"module": "./dist/rcs.es.js",
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"types": "./dist/index.d.ts",
|
|
14
|
-
"import": "./dist/rcs.es.js",
|
|
15
|
-
"require": "./dist/rcs.umd.js"
|
|
16
|
-
},
|
|
17
|
-
"./styles.css": "./dist/rcs.css"
|
|
18
|
-
},
|
|
19
|
-
"engines": {
|
|
20
|
-
"node": ">=22"
|
|
21
|
-
},
|
|
22
|
-
"scripts": {
|
|
23
|
-
"dev": "storybook dev -p 8888",
|
|
24
|
-
"build": "storybook build",
|
|
25
|
-
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
26
|
-
"build:lib": "pnpm clean && tsc && vite build",
|
|
27
|
-
"build:vite": "pnpm clean && vite build",
|
|
28
|
-
"lint": "npx @biomejs/biome lint --write ./src",
|
|
29
|
-
"format": "npx @biomejs/biome format --write ./src",
|
|
30
|
-
"format:check": "npx @biomejs/biome format ./src",
|
|
31
|
-
"check": "npx @biomejs/biome check --write ./src",
|
|
32
|
-
"test": "vitest",
|
|
33
|
-
"test:cov": "vitest run --coverage",
|
|
34
|
-
"pub": "npm publish --registry
|
|
35
|
-
"bump": "npm version patch",
|
|
36
|
-
"bump:minor": "npm version minor",
|
|
37
|
-
"bump:major": "npm version major",
|
|
38
|
-
"update:version": "npm run build:vite && npm run pub"
|
|
39
|
-
},
|
|
40
|
-
"peerDependencies": {
|
|
41
|
-
"@ant-design/icons": ">=4.8.0",
|
|
42
|
-
"@ant-design/pro-components": ">=2.0.0",
|
|
43
|
-
"@reduxjs/toolkit": ">=1.9.0",
|
|
44
|
-
"@xyflow/react": ">=12.0.0",
|
|
45
|
-
"ahooks": ">=3.0.0",
|
|
46
|
-
"antd": ">=5.0.0",
|
|
47
|
-
"lodash-es": ">=4.17.0",
|
|
48
|
-
"monaco-editor": "*",
|
|
49
|
-
"react": ">=18.0.0",
|
|
50
|
-
"react-dom": ">=18.0.0",
|
|
51
|
-
"react-intl": ">=3.0.0",
|
|
52
|
-
"react-markdown": "*",
|
|
53
|
-
"react-monaco-editor": "*",
|
|
54
|
-
"react-redux": ">=8.0.0"
|
|
55
|
-
},
|
|
56
|
-
"files": [
|
|
57
|
-
"dist"
|
|
58
|
-
],
|
|
59
|
-
"lint-staged": {
|
|
60
|
-
"*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [
|
|
61
|
-
"biome check --files-ignore-unknown=true",
|
|
62
|
-
"biome check --write --no-errors-on-unmatched",
|
|
63
|
-
"biome lint --write --no-errors-on-unmatched --files-ignore-unknown=true",
|
|
64
|
-
"biome format --write --no-errors-on-unmatched"
|
|
65
|
-
]
|
|
66
|
-
},
|
|
67
|
-
"dependencies": {
|
|
68
|
-
"@codemirror/autocomplete": "^6.20.0",
|
|
69
|
-
"@codemirror/lang-json": "^6.0.2",
|
|
70
|
-
"@codemirror/state": "^6.5.3",
|
|
71
|
-
"@codemirror/view": "^6.39.8",
|
|
72
|
-
"@dagrejs/dagre": "^1.1.8",
|
|
73
|
-
"@
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
"@
|
|
95
|
-
"@
|
|
96
|
-
"@
|
|
97
|
-
"@
|
|
98
|
-
"@
|
|
99
|
-
"@
|
|
100
|
-
"@
|
|
101
|
-
"@
|
|
102
|
-
"@
|
|
103
|
-
"@
|
|
104
|
-
"@
|
|
105
|
-
"@
|
|
106
|
-
"@
|
|
107
|
-
"@
|
|
108
|
-
"@
|
|
109
|
-
"@
|
|
110
|
-
"@
|
|
111
|
-
"@
|
|
112
|
-
"@
|
|
113
|
-
"@
|
|
114
|
-
"@
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"react
|
|
135
|
-
"react-
|
|
136
|
-
"react-
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@digitalsee-ai/rcs",
|
|
3
|
+
"version": "0.0.15",
|
|
4
|
+
"packageManager": "pnpm@10.12.1",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git"
|
|
7
|
+
},
|
|
8
|
+
"main": "./dist/rcs.umd.js",
|
|
9
|
+
"module": "./dist/rcs.es.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/rcs.es.js",
|
|
15
|
+
"require": "./dist/rcs.umd.js"
|
|
16
|
+
},
|
|
17
|
+
"./styles.css": "./dist/rcs.css"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=22"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "storybook dev -p 8888",
|
|
24
|
+
"build": "storybook build",
|
|
25
|
+
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
26
|
+
"build:lib": "pnpm clean && tsc && vite build",
|
|
27
|
+
"build:vite": "pnpm clean && vite build",
|
|
28
|
+
"lint": "npx @biomejs/biome lint --write ./src",
|
|
29
|
+
"format": "npx @biomejs/biome format --write ./src",
|
|
30
|
+
"format:check": "npx @biomejs/biome format ./src",
|
|
31
|
+
"check": "npx @biomejs/biome check --write ./src",
|
|
32
|
+
"test": "vitest",
|
|
33
|
+
"test:cov": "vitest run --coverage",
|
|
34
|
+
"pub": "npm publish --registry",
|
|
35
|
+
"bump": "npm version patch",
|
|
36
|
+
"bump:minor": "npm version minor",
|
|
37
|
+
"bump:major": "npm version major",
|
|
38
|
+
"update:version": "npm run build:vite && npm run pub"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"@ant-design/icons": ">=4.8.0",
|
|
42
|
+
"@ant-design/pro-components": ">=2.0.0",
|
|
43
|
+
"@reduxjs/toolkit": ">=1.9.0",
|
|
44
|
+
"@xyflow/react": ">=12.0.0",
|
|
45
|
+
"ahooks": ">=3.0.0",
|
|
46
|
+
"antd": ">=5.0.0",
|
|
47
|
+
"lodash-es": ">=4.17.0",
|
|
48
|
+
"monaco-editor": "*",
|
|
49
|
+
"react": ">=18.0.0",
|
|
50
|
+
"react-dom": ">=18.0.0",
|
|
51
|
+
"react-intl": ">=3.0.0",
|
|
52
|
+
"react-markdown": "*",
|
|
53
|
+
"react-monaco-editor": "*",
|
|
54
|
+
"react-redux": ">=8.0.0"
|
|
55
|
+
},
|
|
56
|
+
"files": [
|
|
57
|
+
"dist"
|
|
58
|
+
],
|
|
59
|
+
"lint-staged": {
|
|
60
|
+
"*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [
|
|
61
|
+
"biome check --files-ignore-unknown=true",
|
|
62
|
+
"biome check --write --no-errors-on-unmatched",
|
|
63
|
+
"biome lint --write --no-errors-on-unmatched --files-ignore-unknown=true",
|
|
64
|
+
"biome format --write --no-errors-on-unmatched"
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@codemirror/autocomplete": "^6.20.0",
|
|
69
|
+
"@codemirror/lang-json": "^6.0.2",
|
|
70
|
+
"@codemirror/state": "^6.5.3",
|
|
71
|
+
"@codemirror/view": "^6.39.8",
|
|
72
|
+
"@dagrejs/dagre": "^1.1.8",
|
|
73
|
+
"@dnd-kit/core": "^6.3.1",
|
|
74
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
75
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
76
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
77
|
+
"@hookform/resolvers": "^5.2.1",
|
|
78
|
+
"class-variance-authority": "^0.7.1",
|
|
79
|
+
"classnames": "^2.5.1",
|
|
80
|
+
"clsx": "^2.1.1",
|
|
81
|
+
"dayjs": "^1.11.19",
|
|
82
|
+
"history": "^5.3.0",
|
|
83
|
+
"immer": "^11.1.3",
|
|
84
|
+
"lucide-react": "^0.562.0",
|
|
85
|
+
"react-hook-form": "^7.56.4",
|
|
86
|
+
"remark-gfm": "^4.0.1",
|
|
87
|
+
"tailwind-merge": "^2.5.2",
|
|
88
|
+
"tailwindcss-animate": "^1.0.7",
|
|
89
|
+
"tw-animate-css": "^1.3.9",
|
|
90
|
+
"uuid": "^13.0.0",
|
|
91
|
+
"zod": "^3.25.76"
|
|
92
|
+
},
|
|
93
|
+
"devDependencies": {
|
|
94
|
+
"@ant-design/icons": "^6.1.0",
|
|
95
|
+
"@ant-design/pro-components": "^2.8.10",
|
|
96
|
+
"@babel/core": "7.27.4",
|
|
97
|
+
"@biomejs/biome": "2.0.4",
|
|
98
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
99
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
100
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
101
|
+
"@reduxjs/toolkit": "^2.11.2",
|
|
102
|
+
"@storybook/addon-docs": "9.0.12",
|
|
103
|
+
"@storybook/addon-links": "9.0.12",
|
|
104
|
+
"@storybook/addon-themes": "9.0.12",
|
|
105
|
+
"@storybook/react-vite": "9.0.12",
|
|
106
|
+
"@storybook/test": "8.6.14",
|
|
107
|
+
"@tailwindcss/postcss": "4.1.10",
|
|
108
|
+
"@tailwindcss/vite": "4.1.10",
|
|
109
|
+
"@testing-library/react": "16.3.0",
|
|
110
|
+
"@types/lodash-es": "^4.17.12",
|
|
111
|
+
"@types/node": "24.0.3",
|
|
112
|
+
"@types/react": "19.1.8",
|
|
113
|
+
"@types/react-dom": "19.1.6",
|
|
114
|
+
"@uiw/codemirror-theme-gruvbox-dark": "^4.25.4",
|
|
115
|
+
"@uiw/react-codemirror": "^4.25.4",
|
|
116
|
+
"@vitejs/plugin-react": "4.5.2",
|
|
117
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
118
|
+
"@xyflow/react": "^12.10.0",
|
|
119
|
+
"ahooks": "^3.9.6",
|
|
120
|
+
"antd": "^5.19.0",
|
|
121
|
+
"autoprefixer": "10.4.21",
|
|
122
|
+
"axios": "^1.13.2",
|
|
123
|
+
"babel-loader": "10.0.0",
|
|
124
|
+
"husky": "9.1.7",
|
|
125
|
+
"jsdom": "26.1.0",
|
|
126
|
+
"json": "11.0.0",
|
|
127
|
+
"less": "^4.5.1",
|
|
128
|
+
"less-loader": "^12.3.0",
|
|
129
|
+
"lint-staged": "16.1.2",
|
|
130
|
+
"lodash-es": "^4.17.22",
|
|
131
|
+
"monaco-editor": "^0.55.1",
|
|
132
|
+
"postcss": "8.5.6",
|
|
133
|
+
"prop-types": "15.8.1",
|
|
134
|
+
"react": "19.1.0",
|
|
135
|
+
"react-dom": "19.1.0",
|
|
136
|
+
"react-icons": "^5.5.0",
|
|
137
|
+
"react-intl": "^8.0.9",
|
|
138
|
+
"react-markdown": "^10.1.0",
|
|
139
|
+
"react-monaco-editor": "^0.59.0",
|
|
140
|
+
"react-redux": "^9.2.0",
|
|
141
|
+
"slate": "^0.120.0",
|
|
142
|
+
"slate-history": "^0.113.1",
|
|
143
|
+
"slate-react": "^0.120.0",
|
|
144
|
+
"storybook": "9.0.12",
|
|
145
|
+
"tailwindcss": "4.1.10",
|
|
146
|
+
"typescript": "5.8.3",
|
|
147
|
+
"vite": "6.3.5",
|
|
148
|
+
"vite-plugin-dts": "4.5.4",
|
|
149
|
+
"vitest": "3.2.4"
|
|
150
|
+
}
|
|
147
151
|
}
|