@optimajet/workflow-designer 0.0.7 → 0.0.11

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/index.js CHANGED
@@ -1,6 +1,11 @@
1
1
  import jQuery from "jquery";
2
2
  window.$ = window.jQuery = jQuery;
3
3
 
4
+ import moment from 'moment'
5
+ window.moment = moment;
6
+
7
+ import Vue from 'vue';
8
+
4
9
  import './dist/workflowdesignerfull.min.js'
5
10
  import './dist/workflowdesigner.min.css'
6
11
 
@@ -362,39 +362,97 @@
362
362
  InvalidJson: "JSON object is invalid or does not match the model",
363
363
  CustomForms: {
364
364
  HTTPRequest: {
365
+ Name: "Name",
366
+ State: "State",
365
367
  UseAuth: "Use authentication",
366
- Heading: "Request"
368
+ Heading: "Request",
369
+ Url: "Url",
370
+ Post: "Post",
371
+ StoreResponse: "Store response",
372
+ Username: "Username",
373
+ Password: "Password",
374
+ ParameterName: "Parameter name",
375
+ ParameterPurpose: "Parameter purpose",
376
+ ContentType: "Content type",
377
+ AddProcessInstanceParameters: "Add process instance parameters",
378
+ Parameters: "Parameters",
379
+ Headers: "Headers",
367
380
  },
368
381
  SendEmail:{
382
+ Name: "Name",
383
+ State: "State",
369
384
  Heading: "Form",
370
- UseAuth: "Use authentication"
385
+ UseAuth: "Use authentication",
386
+ MailServer: "Mail server",
387
+ MailServerPort: "Mail server port",
388
+ MailServerFrom: "Mail server from",
389
+ To: "To",
390
+ Subject: "Subject",
391
+ MailServerSsl: "MailServerSsl",
392
+ IsHTML: "IsHTML",
393
+ MailServerLogin: "Mail server login",
394
+ MailServerPass: "Mail server pass",
395
+ Body: "Body",
371
396
  },
372
397
  StartLoopFor: {
398
+ Name: "Name",
399
+ State: "State",
400
+
373
401
  Heading: "Loop",
374
402
  DateRange: "Date range",
375
403
  RangeSeparator: "To",
376
404
  StartDate: "Start date",
377
405
  EndDate: "End date",
378
- Reverse: "Reverse"
406
+ Reverse: "Reverse",
407
+ LoopName: "Loop name",
408
+ LoopStateParameterName: "Loop state parameter name",
409
+ LoopCounterValueParameterName: "Loop counter value parameter name",
410
+ CounterType: "Counter type",
411
+ StartValue: "Start balue",
412
+ EndValue: "End value",
413
+ Step: "Step",
414
+ StepType: "Step type",
415
+ IncludeLastValue: "Include last value"
379
416
  },
380
417
  StartLoopForeach: {
418
+ Name: "Name",
419
+ State: "State",
381
420
  Heading: "Loop",
382
421
  ValuesError: "None value cannot be empty!",
383
- Values: "Values"
422
+ Values: "Values",
423
+ LoopName: "Loop name",
424
+ LoopStateParameterName: "Loop state parameter name",
425
+ LoopCounterValueParameterName: "Loop counter value parameter name",
426
+ Reverse: "Reverse",
384
427
  },
385
428
  CreateProcess: {
429
+ Name: "Name",
430
+ State: "State",
386
431
  Heading: "Main settings",
387
432
  ParameterName: "Name",
388
433
  ParameterPurpose: "Purpose",
389
- ParameterInitialValue: "Value"
434
+ ParameterValue: "Value",
435
+ Scheme: "Scheme",
436
+ ProcessId: "Process id",
437
+ ProcessCreationParameters: "Process creation parameters"
390
438
  },
391
439
  AssignmentCreate: {
392
- Heading: "Assignment",
393
440
  Name: "Name",
441
+ State: "State",
442
+ Heading: "Assignment",
394
443
  Code: "Code",
395
- NewTag: "New Tag"
444
+ NewTag: "New Tag",
445
+ Executors: "Executors",
446
+ IsActive: "Is active",
447
+ Description: "Description",
448
+ DeadlineToStart: "Deadline to start",
449
+ DeadlineToComplete: "Deadline to complete",
450
+ Observers: "Observers",
451
+ Tags: "Tags",
396
452
  },
397
453
  AssignmentChange: {
454
+ Name: "Name",
455
+ State: "State",
398
456
  Heading: "Assignment",
399
457
  Code: "Code",
400
458
  ReplacementExecutors: "Replacement of executors",
@@ -403,12 +461,22 @@
403
461
  AllExecutors: "All",
404
462
  Change: "Change",
405
463
  Status: "Status",
406
- State: "State",
407
464
  DeadlineToStart: "Deadline to start",
408
465
  DeadlineToComplete: "Deadline to complete",
409
466
  Tags: "Tags",
410
467
  Observers: "Observers",
411
- NewTag: "New Tag"
468
+ NewTag: "New Tag",
469
+ StatusState: "Status state",
470
+ IsActive: "Is active",
471
+ },
472
+ AssignmentsHaveStatus:{
473
+ Name: "Name",
474
+ State: "State",
475
+ Code: "Code",
476
+ Condition: "Condition",
477
+ IncludeInactive: "Include inactive",
478
+ StatusState: "Status state",
479
+ Assignments: "Assignments"
412
480
  },
413
481
  SetLoopState: {
414
482
  Name: "Name",
@@ -667,4 +667,5 @@
667
667
  CodeHeight: 480
668
668
  }
669
669
  };
670
- window.WorkflowDesignerConstants = WorkflowDesignerConstants;
670
+ window.WorkflowDesignerConstants = WorkflowDesignerConstants;
671
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optimajet/workflow-designer",
3
- "version": "0.0.7",
3
+ "version": "0.0.11",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -18,9 +18,12 @@
18
18
  "license": "ISC",
19
19
  "devDependencies": {
20
20
  "@babel/core": "^7.15.0",
21
+ "@babel/plugin-proposal-class-properties": "^7.14.5",
22
+ "@babel/plugin-proposal-decorators": "^7.15.4",
21
23
  "@babel/preset-env": "^7.15.0",
22
24
  "@types/ace": "0.0.47",
23
25
  "babel-loader": "^8.2.2",
26
+ "core-js": "^3.17.3",
24
27
  "css-loader": "^6.2.0",
25
28
  "html-loader": "^2.1.2",
26
29
  "html-webpack-plugin": "^5.3.2",
@@ -34,10 +37,11 @@
34
37
  "dependencies": {
35
38
  "element-ui": "^2.15.5",
36
39
  "jquery": "^3.6.0",
37
- "js-base64": "^3.6.1",
40
+ "js-base64": "2.6.3",
38
41
  "json5": "^2.2.0",
39
42
  "konva": "^8.1.3",
40
43
  "moment": "^2.29.1",
41
- "vue": "^2.6.14"
44
+ "vue": "^2.6.14",
45
+ "vue-infinite-loading": "^2.4.5"
42
46
  }
43
47
  }