Examples of Vlocity/SF LWC components (in various states of working)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
1.1 KiB

<template>
<vlocity_cmt-omniscript-step
json-def={jsonDef}
data-omni-key={jsonDef.name}
json-data={jsonData}
layout={layout}
resume={resume}
script-header-def={scriptHeaderDef}
seed-json={seedDataJSON}>
<slot></slot>
<div class="nds-grid nds-grid_align-spread nds-size_12-of-12">
<div class="nds-col">
<!-- All this JUST to specify the button variant for NDS... -->
<vlocity_cmt-button
theme="nds"
onclick={gotoPrev}
variant="primary"
label="Previous">
</vlocity_cmt-button>
</div>
<div class="nds-col">
<!-- All this JUST to specify the button variant for NDS... -->
<vlocity_cmt-button
theme="nds"
onclick={gotoNext}
variant="secondary"
label="Next">
</vlocity_cmt-button>
</div>
</div>
</vlocity_cmt-omniscript-step>
</template>