@cyoda/workflow-react 0.4.0 → 0.5.0
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.cjs +1762 -1329
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -4
- package/dist/index.d.ts +20 -4
- package/dist/index.js +1838 -1407
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.cts
CHANGED
|
@@ -28,8 +28,6 @@ declare const defaultMessages: {
|
|
|
28
28
|
statesTitle: string;
|
|
29
29
|
stateInitial: string;
|
|
30
30
|
stateDefault: string;
|
|
31
|
-
stateProcessing: string;
|
|
32
|
-
stateManualReview: string;
|
|
33
31
|
stateTerminal: string;
|
|
34
32
|
stateError: string;
|
|
35
33
|
stateWarning: string;
|
|
@@ -93,6 +91,7 @@ declare const defaultMessages: {
|
|
|
93
91
|
annotationsRevert: string;
|
|
94
92
|
annotationsRemove: string;
|
|
95
93
|
annotationsDocChanged: string;
|
|
94
|
+
format: string;
|
|
96
95
|
executionMode: string;
|
|
97
96
|
addProcessor: string;
|
|
98
97
|
removeProcessor: string;
|
|
@@ -115,6 +114,11 @@ declare const defaultMessages: {
|
|
|
115
114
|
anchorLeftTop: string;
|
|
116
115
|
anchorLeft: string;
|
|
117
116
|
anchorLeftBottom: string;
|
|
117
|
+
detachPanel: string;
|
|
118
|
+
dockPanel: string;
|
|
119
|
+
minimize: string;
|
|
120
|
+
restore: string;
|
|
121
|
+
minimizedTitle: string;
|
|
118
122
|
};
|
|
119
123
|
confirmDelete: {
|
|
120
124
|
title: string;
|
|
@@ -167,8 +171,12 @@ declare const defaultMessages: {
|
|
|
167
171
|
noneManual: string;
|
|
168
172
|
noneAutomated: string;
|
|
169
173
|
noneAutomatedWarning: string;
|
|
174
|
+
workflowCaption: string;
|
|
175
|
+
workflowNone: string;
|
|
170
176
|
cancel: string;
|
|
171
177
|
applyModal: string;
|
|
178
|
+
revert: string;
|
|
179
|
+
collapse: string;
|
|
172
180
|
};
|
|
173
181
|
};
|
|
174
182
|
type Messages = typeof defaultMessages;
|
|
@@ -195,8 +203,6 @@ declare const I18nContext: react.Context<{
|
|
|
195
203
|
statesTitle: string;
|
|
196
204
|
stateInitial: string;
|
|
197
205
|
stateDefault: string;
|
|
198
|
-
stateProcessing: string;
|
|
199
|
-
stateManualReview: string;
|
|
200
206
|
stateTerminal: string;
|
|
201
207
|
stateError: string;
|
|
202
208
|
stateWarning: string;
|
|
@@ -260,6 +266,7 @@ declare const I18nContext: react.Context<{
|
|
|
260
266
|
annotationsRevert: string;
|
|
261
267
|
annotationsRemove: string;
|
|
262
268
|
annotationsDocChanged: string;
|
|
269
|
+
format: string;
|
|
263
270
|
executionMode: string;
|
|
264
271
|
addProcessor: string;
|
|
265
272
|
removeProcessor: string;
|
|
@@ -282,6 +289,11 @@ declare const I18nContext: react.Context<{
|
|
|
282
289
|
anchorLeftTop: string;
|
|
283
290
|
anchorLeft: string;
|
|
284
291
|
anchorLeftBottom: string;
|
|
292
|
+
detachPanel: string;
|
|
293
|
+
dockPanel: string;
|
|
294
|
+
minimize: string;
|
|
295
|
+
restore: string;
|
|
296
|
+
minimizedTitle: string;
|
|
285
297
|
};
|
|
286
298
|
confirmDelete: {
|
|
287
299
|
title: string;
|
|
@@ -334,8 +346,12 @@ declare const I18nContext: react.Context<{
|
|
|
334
346
|
noneManual: string;
|
|
335
347
|
noneAutomated: string;
|
|
336
348
|
noneAutomatedWarning: string;
|
|
349
|
+
workflowCaption: string;
|
|
350
|
+
workflowNone: string;
|
|
337
351
|
cancel: string;
|
|
338
352
|
applyModal: string;
|
|
353
|
+
revert: string;
|
|
354
|
+
collapse: string;
|
|
339
355
|
};
|
|
340
356
|
}>;
|
|
341
357
|
declare function useMessages(): Messages;
|
package/dist/index.d.ts
CHANGED
|
@@ -28,8 +28,6 @@ declare const defaultMessages: {
|
|
|
28
28
|
statesTitle: string;
|
|
29
29
|
stateInitial: string;
|
|
30
30
|
stateDefault: string;
|
|
31
|
-
stateProcessing: string;
|
|
32
|
-
stateManualReview: string;
|
|
33
31
|
stateTerminal: string;
|
|
34
32
|
stateError: string;
|
|
35
33
|
stateWarning: string;
|
|
@@ -93,6 +91,7 @@ declare const defaultMessages: {
|
|
|
93
91
|
annotationsRevert: string;
|
|
94
92
|
annotationsRemove: string;
|
|
95
93
|
annotationsDocChanged: string;
|
|
94
|
+
format: string;
|
|
96
95
|
executionMode: string;
|
|
97
96
|
addProcessor: string;
|
|
98
97
|
removeProcessor: string;
|
|
@@ -115,6 +114,11 @@ declare const defaultMessages: {
|
|
|
115
114
|
anchorLeftTop: string;
|
|
116
115
|
anchorLeft: string;
|
|
117
116
|
anchorLeftBottom: string;
|
|
117
|
+
detachPanel: string;
|
|
118
|
+
dockPanel: string;
|
|
119
|
+
minimize: string;
|
|
120
|
+
restore: string;
|
|
121
|
+
minimizedTitle: string;
|
|
118
122
|
};
|
|
119
123
|
confirmDelete: {
|
|
120
124
|
title: string;
|
|
@@ -167,8 +171,12 @@ declare const defaultMessages: {
|
|
|
167
171
|
noneManual: string;
|
|
168
172
|
noneAutomated: string;
|
|
169
173
|
noneAutomatedWarning: string;
|
|
174
|
+
workflowCaption: string;
|
|
175
|
+
workflowNone: string;
|
|
170
176
|
cancel: string;
|
|
171
177
|
applyModal: string;
|
|
178
|
+
revert: string;
|
|
179
|
+
collapse: string;
|
|
172
180
|
};
|
|
173
181
|
};
|
|
174
182
|
type Messages = typeof defaultMessages;
|
|
@@ -195,8 +203,6 @@ declare const I18nContext: react.Context<{
|
|
|
195
203
|
statesTitle: string;
|
|
196
204
|
stateInitial: string;
|
|
197
205
|
stateDefault: string;
|
|
198
|
-
stateProcessing: string;
|
|
199
|
-
stateManualReview: string;
|
|
200
206
|
stateTerminal: string;
|
|
201
207
|
stateError: string;
|
|
202
208
|
stateWarning: string;
|
|
@@ -260,6 +266,7 @@ declare const I18nContext: react.Context<{
|
|
|
260
266
|
annotationsRevert: string;
|
|
261
267
|
annotationsRemove: string;
|
|
262
268
|
annotationsDocChanged: string;
|
|
269
|
+
format: string;
|
|
263
270
|
executionMode: string;
|
|
264
271
|
addProcessor: string;
|
|
265
272
|
removeProcessor: string;
|
|
@@ -282,6 +289,11 @@ declare const I18nContext: react.Context<{
|
|
|
282
289
|
anchorLeftTop: string;
|
|
283
290
|
anchorLeft: string;
|
|
284
291
|
anchorLeftBottom: string;
|
|
292
|
+
detachPanel: string;
|
|
293
|
+
dockPanel: string;
|
|
294
|
+
minimize: string;
|
|
295
|
+
restore: string;
|
|
296
|
+
minimizedTitle: string;
|
|
285
297
|
};
|
|
286
298
|
confirmDelete: {
|
|
287
299
|
title: string;
|
|
@@ -334,8 +346,12 @@ declare const I18nContext: react.Context<{
|
|
|
334
346
|
noneManual: string;
|
|
335
347
|
noneAutomated: string;
|
|
336
348
|
noneAutomatedWarning: string;
|
|
349
|
+
workflowCaption: string;
|
|
350
|
+
workflowNone: string;
|
|
337
351
|
cancel: string;
|
|
338
352
|
applyModal: string;
|
|
353
|
+
revert: string;
|
|
354
|
+
collapse: string;
|
|
339
355
|
};
|
|
340
356
|
}>;
|
|
341
357
|
declare function useMessages(): Messages;
|