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

  1. <template>
  2. <vlocity_cmt-omniscript-step
  3. json-def={jsonDef}
  4. data-omni-key={jsonDef.name}
  5. json-data={jsonData}
  6. layout={layout}
  7. resume={resume}
  8. script-header-def={scriptHeaderDef}
  9. seed-json={seedDataJSON}>
  10. <slot></slot>
  11. <div class="nds-grid nds-grid_align-spread nds-size_12-of-12">
  12. <div class="nds-col">
  13. <!-- All this JUST to specify the button variant for NDS... -->
  14. <vlocity_cmt-button
  15. theme="nds"
  16. onclick={gotoPrev}
  17. variant="primary"
  18. label="Previous">
  19. </vlocity_cmt-button>
  20. </div>
  21. <div class="nds-col">
  22. <!-- All this JUST to specify the button variant for NDS... -->
  23. <vlocity_cmt-button
  24. theme="nds"
  25. onclick={gotoNext}
  26. variant="secondary"
  27. label="Next">
  28. </vlocity_cmt-button>
  29. </div>
  30. </div>
  31. </vlocity_cmt-omniscript-step>
  32. </template>