Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ypcode
Created April 7, 2019 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ypcode/e1424727c94ecf70df79785058dbc4e1 to your computer and use it in GitHub Desktop.
Save ypcode/e1424727c94ecf70df79785058dbc4e1 to your computer and use it in GitHub Desktop.
import { ITutorial } from "../../ui-fabric-tutorial/index";
export default {
id: 'tuto_sample',
items: [
{
key: 'newItem',
caption: 'New Item',
content: 'This action allows to add a new item',
delay: 3000,
nextTrigger: 'delay'
},
{
key: 'upload',
caption: 'Upload',
content: 'This action allows to upload a new document',
delay: 3000,
nextTrigger: 'delay'
},
{
key: 'share',
caption: 'Share',
content: 'Share the document with a contact',
delay: 3000,
nextTrigger: 'delay'
},
{
key: 'download',
caption: 'Download',
content: 'This action allows to download a document',
delay: 3000,
nextTrigger: 'delay'
},
{
key: 'dateModifiedColumn',
caption: 'Modified date',
content: 'This columns displays the last modification date',
delay: 3000,
nextTrigger: 'delay'
},
{
key: 'modifiedByColumn',
caption: 'Modified by',
content: 'This columns displays the last person who modified the document',
delay: 3000,
nextTrigger: 'delay'
}
]
} as ITutorial;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment