galadrim-feedback 1.0.35 → 1.0.37
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 +9 -2
- package/dist/index.cjs +34 -35
- package/dist/index.mjs +34 -35
- package/dist/styles.css +1 -1
- package/dist/types/src/components/molecules/feedbacks/shared/FeedbackPositioner.d.ts +1 -0
- package/package.json +1 -1
- package/src/components/boundary/StyleBoundary.tsx +1 -0
- package/src/components/molecules/feedbacks/menu/FilterButton.tsx +1 -1
- package/src/components/molecules/feedbacks/menu/MenuButton.tsx +0 -1
- package/src/components/molecules/feedbacks/shared/FeedbackPositioner.tsx +4 -3
- package/src/components/molecules/kanban/CreateCardModal.tsx +0 -1
- package/src/components/molecules/kanban/LinkToTicketModal.tsx +0 -1
- package/src/components/organisms/SideBar.tsx +4 -4
- package/src/index.css +1 -1
- package/src/index.tsx +2 -1
- package/src/internal.css +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Galadrim Feedback
|
|
2
2
|
|
|
3
|
+
[Page Notion](https://www.notion.so/galadrim/Fiche-Galadrim-Feedback-2573c3f19e4380df8a92f2a2bf60957a#2573c3f19e4380df8a92f2a2bf60957a)
|
|
4
|
+
|
|
3
5
|
## Project Configuration
|
|
4
6
|
|
|
5
7
|
Go to https://feedback.galadrim.ovh/admin
|
|
@@ -206,8 +208,13 @@ Galadrim Feedback requires a plugin to add file path data to your components.
|
|
|
206
208
|
[
|
|
207
209
|
"swc-plugin-react-generate-paths",
|
|
208
210
|
{
|
|
209
|
-
|
|
210
|
-
|
|
211
|
+
{
|
|
212
|
+
/* For example if my monorepo is at /path/to/monorepo, and the project to apply the plugin to, is at /path/to/monorepo/apps/web
|
|
213
|
+
This is needed to strip this part in dev mode, so the path are the same in production
|
|
214
|
+
You can add PATH_TO_ROOT to the dev .env, and leave it undefined in the staging .env
|
|
215
|
+
*/
|
|
216
|
+
pathToRoot: process.env.PATH_TO_ROOT,
|
|
217
|
+
},
|
|
211
218
|
},
|
|
212
219
|
],
|
|
213
220
|
],
|