Install

Save-Module Universal.Components.Joyride -Path $Env:ProgramData\UniversalAutomation\Repository\Modules

The above command assumes you are running with default settings. You can also install modules from within the PowerShell Universal admin console by clicking Platform \ Modules. Click here for more information about installing PowerShell Universal modules.

Version

0.0.1

Last Updated

Friday, 12 May 2023

Tags

PowerShellUniversal App Joyride

Author

Ironman Software

PowerShell Universal App Joyride

Create awesome tours for your app!

Showcase your app to new users or explain functionality of new features.

Installation

You can install this component as a PowerShell module using PowerShellGet or via PowerShell Universal.

Install-Module Universal.Components.Joyride

Usage

Basic

New-UDJoyride -Steps {
            New-UDJoyrideStep -Target '#element1' -Content { 'This is element 1'}
            New-UDJoyrideStep -Target '#element2' -Content { 'This is element 2'}
            New-UDJoyrideStep -Target '#element3' -Content { 'This is element 3'}
        } -Id 'joyride' -Continuous -ScrollToFirstStep -ShowProgress -ShowSkipButton -Run $false

        New-UDButton -OnClick {
            Set-UDElement -Id 'joyride' -Properties @{
                run = $true
            }
        } -Text 'Start'

        New-UDPaper -Elevation 3 -Children {
            New-UDTypography -Text 'Element 1'
        } -Id 'element1'
        New-UDPaper -Elevation 3 -Children {
            New-UDTypography -Text 'Element 2'
        } -Id 'element2'
        New-UDPaper -Elevation 3 -Children {
            New-UDTypography -Text 'Element 3'
        } -Id 'element3'