madmax983 / LightningFlowComponents

:zap: A collection of unofficial Lightning Components that can be used to enhance Salesforce Lightning Flow.

Home Page:https://developer.salesforce.com/docs/atlas.en-us.salesforce_vpm_guide.meta/salesforce_vpm_guide/vpm_intro.htm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This repository contains a collection of Lightning Components that can be used to enhance Lightning Flow from Salesforce. Note that you do not need to write code, read code, or use developer console to install these into your Flow Designer! You can install them with a few commands by using the new Salesforce DX deployment tools. (See "Installation")

Lightning Flow Screen Components

Lightning Flow Screen Components folder contains lightning components (aura classes) that have been optimized to be inserted into Lightning Flow screens. This mainly means that they:

  1. implement the "lightning:availableForFlowScreens" interface so they appear in and can be dragged into Screen Nodes that are added to Flows using the the Salesforce Cloud Flow Designer
  2. give attention to their design files because only attributes added to the design file show up in Cloud Flow Designer as available for mapping to and from Lightning Flow variables

Flow Screen Components generally have a visual focus, although they don't absolutely have to.

Flow Screen Components are generally available as of Spring '18.

Lightning Flow Action Components

Lightning Action Components folder contains lightning components (aura classes) that have been optimized to be added to Lightning Flows as standalone actions. This mainly means that they:

  1. implement the "flowruntime:availableForLocalInvocableActions" interface so they show up in the tools palette of Cloud Flow Designer as Local Actions that can be dragged onto the canvas and added to flows as discrete actions.
  2. provide an #invoke method that allows the Flow engine to call them at the appropriate point during flow execution, and make a callback to the engine when they're done

Flow Action Components generally do not have a visual focus, although they have to run in Screen Flows to ensure the presence of a client-side javascript runtime.

Flow Action Components are available in pilot status as of Spring '18.

About

:zap: A collection of unofficial Lightning Components that can be used to enhance Salesforce Lightning Flow.

https://developer.salesforce.com/docs/atlas.en-us.salesforce_vpm_guide.meta/salesforce_vpm_guide/vpm_intro.htm

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 99.9%Language:CSS 0.1%