@processmaker/screen-builder 2.83.1 → 2.83.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@processmaker/screen-builder",
3
- "version": "2.83.1",
3
+ "version": "2.83.2",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "serve": "vue-cli-service serve",
@@ -69,6 +69,7 @@
69
69
  </template>
70
70
 
71
71
  <script>
72
+ import VueFormRenderer from './vue-form-renderer.vue';
72
73
  import _ from 'lodash';
73
74
  import simpleErrorMessage from './SimpleErrorMessage.vue';
74
75
 
@@ -80,7 +81,8 @@ const defaultBeforeLoadTask = () => {
80
81
 
81
82
  export default {
82
83
  components:{
83
- simpleErrorMessage
84
+ simpleErrorMessage,
85
+ VueFormRenderer
84
86
  },
85
87
  props: {
86
88
  initialTaskId: { type: Number, default: null },