@feedbackfun/js 0.2.0 → 0.3.0
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 +61 -168
- package/dist/feedbackfun-widget.esm.js +1 -1
- package/dist/types.d.ts +6 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -16,6 +16,11 @@ export interface ScreenshotMetadata {
|
|
|
16
16
|
viewportHeight: number;
|
|
17
17
|
deviceType: "mobile" | "tablet" | "desktop";
|
|
18
18
|
}
|
|
19
|
+
export interface RoadmapTag {
|
|
20
|
+
id: number;
|
|
21
|
+
name: string;
|
|
22
|
+
color: string;
|
|
23
|
+
}
|
|
19
24
|
export interface RoadmapItem {
|
|
20
25
|
id: number;
|
|
21
26
|
content: string;
|
|
@@ -31,6 +36,7 @@ export interface RoadmapItem {
|
|
|
31
36
|
username?: string;
|
|
32
37
|
avatar?: string;
|
|
33
38
|
plan?: string;
|
|
39
|
+
tags?: RoadmapTag[];
|
|
34
40
|
}
|
|
35
41
|
export interface ThemeConfig {
|
|
36
42
|
primary: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feedbackfun/js",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Complete customer feedback ecosystem - capture feature requests, bug reports, manage product roadmaps, and provide real-time chat support, all in one embeddable widget",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|