Sub Steps Icon Pick & Delivery

You can change the default "Icon" used in the order substeps by setting "icon" parameter on each step.

The "Icon" configuration are being set in the "substeps" attribute of the configuration object.

Parameters libParameters webDescription
substeps.confirmed.iconsubStepConfirmedIconString with an URL which will be used as display icon in the Confirmed order substep
substeps.picking.iconsubStepPickingIconString with an URL which will be used as display icon in the Picking order substep
substeps.goingToDestination.iconsubStepGoingToDestinationIconString with an URL which will be used as display icon in the Going To Destination order substep
substeps.delivered.iconsubStepDeliveredIconString with an URL which will be used as display icon in the Delivered order substep

Usage Example

Consider the following example:

<!DOCTYPE html>
<head>
    <title>LSW v3 Embed</title>
</head>
<body>
    <div id="instaleap-lsw-v3"></div>
</body>

<script src="https://xandar-lsw-v3.instaleap.io/lib/status.js"></script>
<script>
    const params = {
        job: "myJob",
        token: "myToken",
        container: "#instaleap-lsw-v3",
        substeps: {
          received: {
            icon: 'url'
          },
          picking: {
            icon: 'url'
          },
          goingToDestination: {
            icon: 'url',
          },
          delivered: {
            icon: 'url',
          },
        },
    }
    window.instaleap.status.render(params)
</script>
</html>
https://xandar-lsw-v3.instaleap.io/status?job=myJob&token=myToken&subStepConfirmedIcon=url&subStepPickingIcon=url&subStepGoingToDestinationIcon=url&subStepDeliveredIcon=url

Note: Not change the example.