galadrim-feedback 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/bin/cli.js +1 -0
- package/dist/index.cjs +7 -6
- package/dist/index.es +7 -6
- package/package.json +1 -1
- package/src/components/atoms/buttons/OpenFeedbackButton.tsx +5 -5
- package/src/services/api.ts +1 -0
package/README.md
CHANGED
|
@@ -71,6 +71,7 @@ Install and configure Galadrim Feedback in this React project:
|
|
|
71
71
|
- projectId="your-project-id" (placeholder - user needs to get this from admin)
|
|
72
72
|
- navigate={(path) => navigate(path)} (using detected navigation method)
|
|
73
73
|
- position="bottom-right"
|
|
74
|
+
- notionDatabaseId=... (ask the user to give you this, if the kanban is on Notion)
|
|
74
75
|
* Place it inside the router context but outside main content areas
|
|
75
76
|
|
|
76
77
|
4. Verification:
|
|
@@ -190,14 +191,14 @@ import "galadrim-feedback/dist/styles.css"; // Don't forget to import the CSS st
|
|
|
190
191
|
- **position**: The position of the button to open Feedback mode (bottom-right, bottom-left, top-right, top-left)
|
|
191
192
|
- **notionDatabaseId**: The unique identifier for your Notion database. To obtain this ID:
|
|
192
193
|
|
|
193
|
-
1. **Navigate to your Notion Board**
|
|
194
|
+
1. **Navigate to your Notion Board**
|
|
194
195
|
2. **Access database view**:
|
|
195
196
|
- Click the **3 dots (⋯)** next to the board name
|
|
196
197
|
- Select **"View database"** from the dropdown menu
|
|
197
198
|
3. **Extract the database ID**:
|
|
198
199
|
- Copy the **first ID** from the URL
|
|
199
|
-
- Example URL: `https://www.notion.so/galadrim/
|
|
200
|
-
- Database ID: `
|
|
200
|
+
- Example URL: `https://www.notion.so/galadrim/22c3c3f19e43808b9675f769eaeea394?v=22c3c3f19e43803cb4d0000c592bd047`
|
|
201
|
+
- Database ID: `22c3c3f19e43808b9675f769eaeea394`
|
|
201
202
|
|
|
202
203
|
This concludes the installation of **Galadrim Feedback** in your project!
|
|
203
204
|
|
package/bin/cli.js
CHANGED
|
@@ -61,6 +61,7 @@ const CURSOR_PROMPT = `Install and configure Galadrim Feedback in this React pro
|
|
|
61
61
|
- projectId="${PROJECT_ID}"
|
|
62
62
|
- navigate={(path) => navigate(path)} (using detected navigation method)
|
|
63
63
|
- position="bottom-right"
|
|
64
|
+
- notionDatabaseId=... (ask the user to give you this, if the kanban is on Notion)
|
|
64
65
|
* Place it inside the router context but outside main content areas
|
|
65
66
|
|
|
66
67
|
4. Verification:
|