add signature id

This commit is contained in:
Pete Matsyburka
2024-07-24 20:55:35 +03:00
parent 09074e2ac0
commit 43db15b350
18 changed files with 236 additions and 12 deletions
+11
View File
@@ -23,7 +23,9 @@
:submittable="true"
:field-index="fieldIndex"
:scroll-padding="scrollPadding"
:submitter="submitter"
:with-field-placeholder="withFieldPlaceholder"
:with-signature-id="withSignatureId"
:is-active="currentStep === step"
:with-label="withLabel && !withFieldPlaceholder"
:is-value-set="step.some((f) => f.uuid in values)"
@@ -50,6 +52,15 @@ export default {
required: false,
default: () => []
},
withSignatureId: {
type: Boolean,
required: false,
default: false
},
submitter: {
type: Object,
required: true
},
values: {
type: Object,
required: false,