Skip to content

Commit

Permalink
docs improveemnts
Browse files Browse the repository at this point in the history
  • Loading branch information
hasith committed Sep 8, 2024
1 parent 7c297e2 commit bbc1dc5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
4 changes: 3 additions & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ nav_order: 2
---

# Installation Guide

{: .no_toc }

Welcome to the Productled Library Installation Guide. This guide will walk you through the process of setting up and configuring the Productled Library in your project. By following these steps, you'll be able to leverage the powerful features provided by Productled to enhance your application's user experience.

## Table of contents
## Table of contents

{: .no_toc .text-delta }

1. TOC
Expand Down
13 changes: 4 additions & 9 deletions docs/plugin-development.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Installation
title: Plugin Development
layout: home
nav_order: 5
---
Expand All @@ -16,14 +16,9 @@ in the solution root's package.json add an new entry to the workspaces array wit

```json
{
...
"workspaces": [
"packages/@productled/core",
"packages/@productled/spotlights",
"packages/samples/react-sample",
<add new plugin path here>
"packages/@productled/new-plugin-path
],
...
}
```

Expand Down Expand Up @@ -65,8 +60,8 @@ In the new plugin folder, create a `tsconfig.json` file with the following conte
"target": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"declaration": true, // set to true on prod
"sourceMap": true, // set to true on dev
"declaration": true,
"sourceMap": true,
"strict": true,
"types": ["node"]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/spotlight.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ parent: Plugins
nav_order: 2
---

# Spotlights Plugin Documentation
# Spotlights Plugin

The Spotlights plugin is a powerful tool that allows you to create in-app spotlights to guide users through new features, highlight important UI elements. This guide will walk you through the installation process and show you how to configure the Spotlights plugin within Productled.

Expand Down
4 changes: 2 additions & 2 deletions docs/plugins/tooltip.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: Spotlights
title: Tooltip
parent: Plugins
nav_order: 2
---

# Tooltip Plugin Documentation
# Tooltip Plugin

The Tooltip Plugin provides a way to display helpful tooltips to users when they hover over specific elements in your application. This guide covers the installation and configuration steps to get the Tooltip plugin working with Productled.

Expand Down

0 comments on commit bbc1dc5

Please sign in to comment.