Fixes item submission options not propagating to compound input.

This commit is contained in:
mateuswetah 2023-05-29 10:56:45 -03:00
parent f1b3e015e3
commit 9c71273a0b
2 changed files with 15 additions and 0 deletions

View File

@ -57,6 +57,9 @@
:ref="'tainacan-form-item--' + groupIndex + '-' + childIndex"
:item-metadatum="childItemMetadatum"
:hide-collapses="hideCollapses"
:hide-metadata-types="hideMetadataTypes"
:hide-help-buttons="hideHelpButtons"
:help-info-bellow-label="helpInfoBellowLabel"
:is-collapsed="childItemMetadatum.collapse"
:is-mobile-screen="isMobileScreen"
@changeCollapse="onChangeCollapse($event, groupIndex, childIndex)"
@ -120,6 +123,9 @@
value: [String, Number, Array],
disabled: false,
hideCollapses: false,
hideMetadataTypes: Boolean,
hideHelpButtons: Boolean,
helpInfoBellowLabel: Boolean,
metadataNameFilterString: '',
isMobileScreen: false,
isMetadataNavigation: false,

View File

@ -64,6 +64,9 @@
@blur="performValueChange"
:metadata-name-filter-string="metadataNameFilterString"
:hide-collapses="hideCollapses"
:hide-metadata-types="hideMetadataTypes"
:hide-help-buttons="hideHelpButtons"
:help-info-bellow-label="helpInfoBellowLabel"
:is-mobile-screen="isMobileScreen"
@mobileSpecialFocus="onMobileSpecialFocus"
:is-focused="isFocused"
@ -83,6 +86,9 @@
@blur="performValueChange"
:metadata-name-filter-string="metadataNameFilterString"
:hide-collapses="hideCollapses"
:hide-metadata-types="hideMetadataTypes"
:hide-help-buttons="hideHelpButtons"
:help-info-bellow-label="helpInfoBellowLabel"
:is-mobile-screen="isMobileScreen"
@mobileSpecialFocus="onMobileSpecialFocus"
:is-focused="isFocused"
@ -134,6 +140,9 @@
@blur="performValueChange"
:is-last-metadatum="isLastMetadatum"
:hide-collapses="hideCollapses"
:hide-metadata-types="hideMetadataTypes"
:hide-help-buttons="hideHelpButtons"
:help-info-bellow-label="helpInfoBellowLabel"
:is-mobile-screen="isMobileScreen"
:metadata-name-filter-string="metadataNameFilterString"
@mobileSpecialFocus="onMobileSpecialFocus"