@processmaker/screen-builder 2.92.0 → 2.93.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/vue-form-builder.css +1 -1
- package/dist/vue-form-builder.es.js +10 -17
- package/dist/vue-form-builder.es.js.map +1 -1
- package/dist/vue-form-builder.umd.js +4 -4
- package/dist/vue-form-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/renderer/form-requests.vue +1 -4
- package/src/components/renderer/form-tasks.vue +5 -11
package/package.json
CHANGED
|
@@ -170,7 +170,6 @@ export default {
|
|
|
170
170
|
};
|
|
171
171
|
const tasksDropdown = [];
|
|
172
172
|
this.$emit("requestsCount", { dataControls, tasksDropdown });
|
|
173
|
-
this.$refs["form-case"].resetToOriginalWidths();
|
|
174
173
|
})
|
|
175
174
|
.catch(() => {
|
|
176
175
|
this.tableData = [];
|
|
@@ -303,8 +302,7 @@ export default {
|
|
|
303
302
|
default: true,
|
|
304
303
|
truncate: true,
|
|
305
304
|
width: 314,
|
|
306
|
-
fixed_width: 314
|
|
307
|
-
resizable: false
|
|
305
|
+
fixed_width: 314
|
|
308
306
|
},
|
|
309
307
|
{
|
|
310
308
|
label: "Status",
|
|
@@ -313,7 +311,6 @@ export default {
|
|
|
313
311
|
default: true,
|
|
314
312
|
width: 113,
|
|
315
313
|
fixed_width: 113,
|
|
316
|
-
resizable: false,
|
|
317
314
|
filter_subject: { type: "Status" }
|
|
318
315
|
},
|
|
319
316
|
{
|
|
@@ -271,7 +271,6 @@ export default {
|
|
|
271
271
|
dropdownShow: "tasks"
|
|
272
272
|
};
|
|
273
273
|
this.$emit("tasksCount", { dataControls, tasksDropdown });
|
|
274
|
-
this.$refs["form-task"].resetToOriginalWidths();
|
|
275
274
|
})
|
|
276
275
|
.catch(() => {
|
|
277
276
|
this.tableData = [];
|
|
@@ -332,8 +331,7 @@ export default {
|
|
|
332
331
|
default: true,
|
|
333
332
|
width: 153,
|
|
334
333
|
fixed_width: 153,
|
|
335
|
-
truncate: true
|
|
336
|
-
resizable: false
|
|
334
|
+
truncate: true
|
|
337
335
|
},
|
|
338
336
|
{
|
|
339
337
|
label: "Priority",
|
|
@@ -341,8 +339,7 @@ export default {
|
|
|
341
339
|
sortable: false,
|
|
342
340
|
default: true,
|
|
343
341
|
width: 48,
|
|
344
|
-
fixed_width: 48
|
|
345
|
-
resizable: false
|
|
342
|
+
fixed_width: 48
|
|
346
343
|
},
|
|
347
344
|
{
|
|
348
345
|
label: "Case title",
|
|
@@ -352,8 +349,7 @@ export default {
|
|
|
352
349
|
default: true,
|
|
353
350
|
width: 314,
|
|
354
351
|
truncate: true,
|
|
355
|
-
fixed_width: 314
|
|
356
|
-
resizable: false
|
|
352
|
+
fixed_width: 314
|
|
357
353
|
}
|
|
358
354
|
];
|
|
359
355
|
|
|
@@ -364,8 +360,7 @@ export default {
|
|
|
364
360
|
sortable: true,
|
|
365
361
|
default: true,
|
|
366
362
|
width: 220,
|
|
367
|
-
fixed_width: 220
|
|
368
|
-
resizable: false
|
|
363
|
+
fixed_width: 220
|
|
369
364
|
});
|
|
370
365
|
} else {
|
|
371
366
|
columns.push({
|
|
@@ -374,8 +369,7 @@ export default {
|
|
|
374
369
|
sortable: true,
|
|
375
370
|
default: true,
|
|
376
371
|
width: 220,
|
|
377
|
-
fixed_width: 220
|
|
378
|
-
resizable: false
|
|
372
|
+
fixed_width: 220
|
|
379
373
|
});
|
|
380
374
|
}
|
|
381
375
|
columns.push({
|