@cyoda/workflow-react 0.3.0 → 0.4.1
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 +1411 -1077
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.js +1350 -1018
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.cts
CHANGED
|
@@ -87,6 +87,13 @@ declare const defaultMessages: {
|
|
|
87
87
|
processes: string;
|
|
88
88
|
criterion: string;
|
|
89
89
|
criteria: string;
|
|
90
|
+
annotations: string;
|
|
91
|
+
annotationsAdd: string;
|
|
92
|
+
annotationsApply: string;
|
|
93
|
+
annotationsRevert: string;
|
|
94
|
+
annotationsRemove: string;
|
|
95
|
+
annotationsDocChanged: string;
|
|
96
|
+
format: string;
|
|
90
97
|
executionMode: string;
|
|
91
98
|
addProcessor: string;
|
|
92
99
|
removeProcessor: string;
|
|
@@ -109,6 +116,11 @@ declare const defaultMessages: {
|
|
|
109
116
|
anchorLeftTop: string;
|
|
110
117
|
anchorLeft: string;
|
|
111
118
|
anchorLeftBottom: string;
|
|
119
|
+
detachPanel: string;
|
|
120
|
+
dockPanel: string;
|
|
121
|
+
minimize: string;
|
|
122
|
+
restore: string;
|
|
123
|
+
minimizedTitle: string;
|
|
112
124
|
};
|
|
113
125
|
confirmDelete: {
|
|
114
126
|
title: string;
|
|
@@ -163,6 +175,8 @@ declare const defaultMessages: {
|
|
|
163
175
|
noneAutomatedWarning: string;
|
|
164
176
|
cancel: string;
|
|
165
177
|
applyModal: string;
|
|
178
|
+
revert: string;
|
|
179
|
+
collapse: string;
|
|
166
180
|
};
|
|
167
181
|
};
|
|
168
182
|
type Messages = typeof defaultMessages;
|
|
@@ -248,6 +262,13 @@ declare const I18nContext: react.Context<{
|
|
|
248
262
|
processes: string;
|
|
249
263
|
criterion: string;
|
|
250
264
|
criteria: string;
|
|
265
|
+
annotations: string;
|
|
266
|
+
annotationsAdd: string;
|
|
267
|
+
annotationsApply: string;
|
|
268
|
+
annotationsRevert: string;
|
|
269
|
+
annotationsRemove: string;
|
|
270
|
+
annotationsDocChanged: string;
|
|
271
|
+
format: string;
|
|
251
272
|
executionMode: string;
|
|
252
273
|
addProcessor: string;
|
|
253
274
|
removeProcessor: string;
|
|
@@ -270,6 +291,11 @@ declare const I18nContext: react.Context<{
|
|
|
270
291
|
anchorLeftTop: string;
|
|
271
292
|
anchorLeft: string;
|
|
272
293
|
anchorLeftBottom: string;
|
|
294
|
+
detachPanel: string;
|
|
295
|
+
dockPanel: string;
|
|
296
|
+
minimize: string;
|
|
297
|
+
restore: string;
|
|
298
|
+
minimizedTitle: string;
|
|
273
299
|
};
|
|
274
300
|
confirmDelete: {
|
|
275
301
|
title: string;
|
|
@@ -324,6 +350,8 @@ declare const I18nContext: react.Context<{
|
|
|
324
350
|
noneAutomatedWarning: string;
|
|
325
351
|
cancel: string;
|
|
326
352
|
applyModal: string;
|
|
353
|
+
revert: string;
|
|
354
|
+
collapse: string;
|
|
327
355
|
};
|
|
328
356
|
}>;
|
|
329
357
|
declare function useMessages(): Messages;
|
package/dist/index.d.ts
CHANGED
|
@@ -87,6 +87,13 @@ declare const defaultMessages: {
|
|
|
87
87
|
processes: string;
|
|
88
88
|
criterion: string;
|
|
89
89
|
criteria: string;
|
|
90
|
+
annotations: string;
|
|
91
|
+
annotationsAdd: string;
|
|
92
|
+
annotationsApply: string;
|
|
93
|
+
annotationsRevert: string;
|
|
94
|
+
annotationsRemove: string;
|
|
95
|
+
annotationsDocChanged: string;
|
|
96
|
+
format: string;
|
|
90
97
|
executionMode: string;
|
|
91
98
|
addProcessor: string;
|
|
92
99
|
removeProcessor: string;
|
|
@@ -109,6 +116,11 @@ declare const defaultMessages: {
|
|
|
109
116
|
anchorLeftTop: string;
|
|
110
117
|
anchorLeft: string;
|
|
111
118
|
anchorLeftBottom: string;
|
|
119
|
+
detachPanel: string;
|
|
120
|
+
dockPanel: string;
|
|
121
|
+
minimize: string;
|
|
122
|
+
restore: string;
|
|
123
|
+
minimizedTitle: string;
|
|
112
124
|
};
|
|
113
125
|
confirmDelete: {
|
|
114
126
|
title: string;
|
|
@@ -163,6 +175,8 @@ declare const defaultMessages: {
|
|
|
163
175
|
noneAutomatedWarning: string;
|
|
164
176
|
cancel: string;
|
|
165
177
|
applyModal: string;
|
|
178
|
+
revert: string;
|
|
179
|
+
collapse: string;
|
|
166
180
|
};
|
|
167
181
|
};
|
|
168
182
|
type Messages = typeof defaultMessages;
|
|
@@ -248,6 +262,13 @@ declare const I18nContext: react.Context<{
|
|
|
248
262
|
processes: string;
|
|
249
263
|
criterion: string;
|
|
250
264
|
criteria: string;
|
|
265
|
+
annotations: string;
|
|
266
|
+
annotationsAdd: string;
|
|
267
|
+
annotationsApply: string;
|
|
268
|
+
annotationsRevert: string;
|
|
269
|
+
annotationsRemove: string;
|
|
270
|
+
annotationsDocChanged: string;
|
|
271
|
+
format: string;
|
|
251
272
|
executionMode: string;
|
|
252
273
|
addProcessor: string;
|
|
253
274
|
removeProcessor: string;
|
|
@@ -270,6 +291,11 @@ declare const I18nContext: react.Context<{
|
|
|
270
291
|
anchorLeftTop: string;
|
|
271
292
|
anchorLeft: string;
|
|
272
293
|
anchorLeftBottom: string;
|
|
294
|
+
detachPanel: string;
|
|
295
|
+
dockPanel: string;
|
|
296
|
+
minimize: string;
|
|
297
|
+
restore: string;
|
|
298
|
+
minimizedTitle: string;
|
|
273
299
|
};
|
|
274
300
|
confirmDelete: {
|
|
275
301
|
title: string;
|
|
@@ -324,6 +350,8 @@ declare const I18nContext: react.Context<{
|
|
|
324
350
|
noneAutomatedWarning: string;
|
|
325
351
|
cancel: string;
|
|
326
352
|
applyModal: string;
|
|
353
|
+
revert: string;
|
|
354
|
+
collapse: string;
|
|
327
355
|
};
|
|
328
356
|
}>;
|
|
329
357
|
declare function useMessages(): Messages;
|