@andrewyang/ai-workflow-editor 0.1.2 → 0.1.3

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.ts CHANGED
@@ -2,4 +2,218 @@ import { default as AiWorkflowEditor } from './components/AiWorkflowEditor';
2
2
  import { useAi } from './composables/useAi';
3
3
 
4
4
  export { AiWorkflowEditor, useAi };
5
+ export declare const locales: {
6
+ en: {
7
+ common: {
8
+ loading: string;
9
+ generating: string;
10
+ };
11
+ toolbar: {
12
+ draw: string;
13
+ shape: string;
14
+ style: string;
15
+ insert: string;
16
+ save: string;
17
+ import: string;
18
+ undo: string;
19
+ redo: string;
20
+ zoomOut: string;
21
+ zoomIn: string;
22
+ fitView: string;
23
+ untitled: string;
24
+ };
25
+ nodePanel: {
26
+ search: string;
27
+ general: string;
28
+ sysml: string;
29
+ advanced: string;
30
+ moreShapes: string;
31
+ noAdvanced: string;
32
+ nodes: {
33
+ ai: string;
34
+ aiFull: string;
35
+ action: string;
36
+ actionFull: string;
37
+ square: string;
38
+ circle: string;
39
+ diamond: string;
40
+ triangle: string;
41
+ cylinder: string;
42
+ file: string;
43
+ sysmlBlock: string;
44
+ sysmlReq: string;
45
+ sysmlUseCase: string;
46
+ sysmlBlockFull: string;
47
+ sysmlReqFull: string;
48
+ sysmlUseCaseFull: string;
49
+ };
50
+ };
51
+ aiChat: {
52
+ title: string;
53
+ new: string;
54
+ v2: string;
55
+ desc: string;
56
+ createTitle: string;
57
+ createDesc: string;
58
+ quickStarts: string;
59
+ docProcess: {
60
+ title: string;
61
+ desc: string;
62
+ };
63
+ userAuth: {
64
+ title: string;
65
+ desc: string;
66
+ };
67
+ etl: {
68
+ title: string;
69
+ desc: string;
70
+ };
71
+ inputPlaceholder: string;
72
+ generate: string;
73
+ quickInputs: {
74
+ doc: string;
75
+ auth: string;
76
+ etl: string;
77
+ };
78
+ };
79
+ aiGenerator: {
80
+ title: string;
81
+ placeholder: string;
82
+ cancel: string;
83
+ generate: string;
84
+ };
85
+ propertyPanel: {
86
+ title: string;
87
+ noSelection: string;
88
+ tabs: {
89
+ style: string;
90
+ text: string;
91
+ arrange: string;
92
+ };
93
+ style: {
94
+ fill: string;
95
+ stroke: string;
96
+ opacity: string;
97
+ rounded: string;
98
+ shadow: string;
99
+ };
100
+ text: {
101
+ content: string;
102
+ color: string;
103
+ };
104
+ arrange: {
105
+ front: string;
106
+ back: string;
107
+ size: string;
108
+ position: string;
109
+ };
110
+ };
111
+ };
112
+ zh: {
113
+ common: {
114
+ loading: string;
115
+ generating: string;
116
+ };
117
+ toolbar: {
118
+ draw: string;
119
+ shape: string;
120
+ style: string;
121
+ insert: string;
122
+ save: string;
123
+ import: string;
124
+ undo: string;
125
+ redo: string;
126
+ zoomOut: string;
127
+ zoomIn: string;
128
+ fitView: string;
129
+ untitled: string;
130
+ };
131
+ nodePanel: {
132
+ search: string;
133
+ general: string;
134
+ sysml: string;
135
+ advanced: string;
136
+ moreShapes: string;
137
+ noAdvanced: string;
138
+ nodes: {
139
+ ai: string;
140
+ aiFull: string;
141
+ action: string;
142
+ actionFull: string;
143
+ square: string;
144
+ circle: string;
145
+ diamond: string;
146
+ triangle: string;
147
+ cylinder: string;
148
+ file: string;
149
+ sysmlBlock: string;
150
+ sysmlReq: string;
151
+ sysmlUseCase: string;
152
+ sysmlBlockFull: string;
153
+ sysmlReqFull: string;
154
+ sysmlUseCaseFull: string;
155
+ };
156
+ };
157
+ aiChat: {
158
+ title: string;
159
+ new: string;
160
+ v2: string;
161
+ desc: string;
162
+ createTitle: string;
163
+ createDesc: string;
164
+ quickStarts: string;
165
+ docProcess: {
166
+ title: string;
167
+ desc: string;
168
+ };
169
+ userAuth: {
170
+ title: string;
171
+ desc: string;
172
+ };
173
+ etl: {
174
+ title: string;
175
+ desc: string;
176
+ };
177
+ inputPlaceholder: string;
178
+ generate: string;
179
+ quickInputs: {
180
+ doc: string;
181
+ auth: string;
182
+ etl: string;
183
+ };
184
+ };
185
+ aiGenerator: {
186
+ title: string;
187
+ placeholder: string;
188
+ cancel: string;
189
+ generate: string;
190
+ };
191
+ propertyPanel: {
192
+ title: string;
193
+ noSelection: string;
194
+ tabs: {
195
+ style: string;
196
+ text: string;
197
+ arrange: string;
198
+ };
199
+ style: {
200
+ fill: string;
201
+ stroke: string;
202
+ opacity: string;
203
+ rounded: string;
204
+ shadow: string;
205
+ };
206
+ text: {
207
+ content: string;
208
+ color: string;
209
+ };
210
+ arrange: {
211
+ front: string;
212
+ back: string;
213
+ size: string;
214
+ position: string;
215
+ };
216
+ };
217
+ };
218
+ };
5
219
  export default AiWorkflowEditor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andrewyang/ai-workflow-editor",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "main": "./dist/ai-workflow-editor.umd.js",
6
6
  "module": "./dist/ai-workflow-editor.es.js",