-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added plugins top level node to doc nav
- Loading branch information
Showing
3 changed files
with
36 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Plugins | ||
layout: home | ||
nav_order: 3 | ||
--- | ||
|
||
# Plugins | ||
|
||
Productled offers a variety of plugin libraries to extend its capabilities. You can choose and install the plugins that best suit your needs. For example, to install the Spotlight plugin: | ||
|
||
```bash | ||
npm install @productled/<plugin-name> | ||
``` | ||
|
||
Register the plugin with Productled Core at application start. | ||
|
||
e.g., in file: index.tsx | ||
``` typescript | ||
productled.registerPlugin(new SpotlightPlugin()); | ||
``` | ||
|
||
## Available Plugins | ||
|
||
- [Spotlights Plugin documentation](plugins/spotlights.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Spotlights | ||
layout: home | ||
parent: Plugins | ||
nav_order: 1 | ||
--- | ||
|
||
# Spotlights | ||
|
||
Spotlights are a type of interactive overlay that guides users through your application's features. They are commonly used to introduce new features, highlight important elements, or provide onboarding assistance to users. |