Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,17 @@
onvaluechanged={handleFlowComboboxValueChange}
automatic-output-variables={automaticOutputVariables}
></c-fsc_flow-combobox>
<c-fsc_flow-combobox
name="select_fieldLevelHelp"
label={inputValues.fieldLevelHelp.label}
value={inputValues.fieldLevelHelp.value}
value-type={inputValues.fieldLevelHelp.valueDataType}
builder-context-filter-type="String"
builder-context-filter-collection-boolean={inputValues.fieldLevelHelp.isCollection}
builder-context={_builderContext}
onvaluechanged={handleFlowComboboxValueChange}
automatic-output-variables={automaticOutputVariables}
></c-fsc_flow-combobox>
</div>
<div class="slds-grid slds-wrap">
<div class="slds-col slds-size_1-of-1 slds-panel__header-title slds-text-heading_small slds-p-top_small">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export default class DualListBoxCpe extends LightningElement {
label: {value: null, valueDataType: null, isCollection: false, label: 'Master Label'},
allOptionsStringFormat: {value: null, valueDataType: null, isCollection: false, label: 'Select datasource'},
sourceLabel: {value: null, valueDataType: null, isCollection: false, label: 'Available Choices Label'},
fieldLevelHelp: {value: null, valueDataType: null, isCollection: false, label: 'Add a \'None\' choice'},
selectedLabel: {value: null, valueDataType: null, isCollection: false, label: 'Selected Chocies Label'},
fieldLevelHelp: {value: null, valueDataType: null, isCollection: false, label: 'Help Text'},
min: {value: null, valueDataType: null, isCollection: false, label: 'Min'},
max: {value: null, valueDataType: null, isCollection: false, label: 'Max'},
disableReordering: {value: null, valueDataType: null, isCollection: false, label: 'Disable Reordering'},
Expand Down