rasp-feedback 1.0.2 → 1.0.3
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/dist/nextjs/components/MainViewHandler.d.ts +10 -0
- package/dist/nextjs/components/MainViewHandler.d.ts.map +1 -0
- package/dist/nextjs/components/MainViewHandler.js +17 -0
- package/dist/nextjs/components/PostItem.d.ts +7 -0
- package/dist/nextjs/components/PostItem.d.ts.map +1 -0
- package/dist/nextjs/components/PostItem.js +34 -0
- package/dist/nextjs/components/Posttem.d.ts +7 -0
- package/dist/nextjs/components/Posttem.d.ts.map +1 -0
- package/dist/nextjs/components/Posttem.js +14 -0
- package/dist/nextjs/components/RaspProvider.d.ts.map +1 -1
- package/dist/nextjs/components/RaspProvider.js +220 -60
- package/dist/nextjs/components/StaticFormComponent.d.ts.map +1 -1
- package/dist/nextjs/components/StaticFormComponent.js +19 -11
- package/dist/nextjs/functions/functionsexp.d.ts +3 -0
- package/dist/nextjs/functions/functionsexp.d.ts.map +1 -1
- package/dist/nextjs/functions/functionsexp.js +71 -0
- package/dist/vue/components/PostItem.vue.d.ts +20 -0
- package/dist/vue/components/PostItem.vue.d.ts.map +1 -0
- package/dist/vue/components/RaspProvider.vue.d.ts.map +1 -1
- package/dist/vue/components/StaticFormComponent.vue.d.ts.map +1 -1
- package/dist/vue/functions/functionsexp.d.ts +3 -0
- package/dist/vue/functions/functionsexp.d.ts.map +1 -1
- package/dist/vue/index.js +692 -299
- package/dist/vue/index.umd.cjs +1 -1
- package/package.json +96 -96
package/package.json
CHANGED
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "rasp-feedback",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Official Rasp SDK to implement your user feedback collection forms easily into your website.",
|
|
5
|
-
"main": "./dist/nextjs/index.js",
|
|
6
|
-
"types": "./dist/nextjs/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"copy:assets": "node scripts/copy-assets.js",
|
|
9
|
-
"build:react": "tsc -p tsconfig.react.json && xcopy /Y src\\nextjs\\index.css dist\\nextjs\\",
|
|
10
|
-
"build:vue": "vite build && vue-tsc -p tsconfig.vue.json --declaration --emitDeclarationOnly",
|
|
11
|
-
"build:angular": "ng build angular && node scripts/copy-angular-dist.js",
|
|
12
|
-
"build": "npm run build:react && npm run build:vue",
|
|
13
|
-
"dev:react": "tsc -p tsconfig.react.json --watch",
|
|
14
|
-
"dev:vue": "vite build --watch",
|
|
15
|
-
"dev:angular": "ng build angular --watch",
|
|
16
|
-
"dev": "concurrently \"npm run dev:react\" \"npm run dev:vue\"
|
|
17
|
-
"prepublishOnly": "npm run build"
|
|
18
|
-
},
|
|
19
|
-
"exports": {
|
|
20
|
-
".": {
|
|
21
|
-
"types": "./dist/nextjs/index.d.ts",
|
|
22
|
-
"import": "./dist/nextjs/index.js",
|
|
23
|
-
"require": "./dist/nextjs/index.js"
|
|
24
|
-
},
|
|
25
|
-
"./nextjs": {
|
|
26
|
-
"types": "./dist/nextjs/index.d.ts",
|
|
27
|
-
"import": "./dist/nextjs/index.js",
|
|
28
|
-
"require": "./dist/nextjs/index.js"
|
|
29
|
-
},
|
|
30
|
-
"./vue": {
|
|
31
|
-
"types": "./dist/vue/index.d.ts",
|
|
32
|
-
"import": "./dist/vue/index.js",
|
|
33
|
-
"require": "./dist/vue/index.js"
|
|
34
|
-
},
|
|
35
|
-
"./angular": {
|
|
36
|
-
"types": "./dist/angular/index.d.ts",
|
|
37
|
-
"import": "./dist/angular/fesm2022/rasp-feedback-angular.mjs",
|
|
38
|
-
"require": "./dist/angular/fesm2022/rasp-feedback-angular.mjs",
|
|
39
|
-
"default": "./dist/angular/fesm2022/rasp-feedback-angular.mjs"
|
|
40
|
-
},
|
|
41
|
-
"./nextjs/style.css": "./dist/nextjs/index.css",
|
|
42
|
-
"./vue/style.css": "./dist/vue/index.css"
|
|
43
|
-
},
|
|
44
|
-
"files": [
|
|
45
|
-
"dist"
|
|
46
|
-
],
|
|
47
|
-
"author": "Rabuuk (Pty) Ltd.",
|
|
48
|
-
"license": "MIT",
|
|
49
|
-
"peerDependencies": {
|
|
50
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
51
|
-
"vue": "^3.3.0 || ^3.4.0",
|
|
52
|
-
"@angular/core": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
53
|
-
"@angular/common": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
54
|
-
},
|
|
55
|
-
"peerDependenciesMeta": {
|
|
56
|
-
"react": {
|
|
57
|
-
"optional": true
|
|
58
|
-
},
|
|
59
|
-
"vue": {
|
|
60
|
-
"optional": true
|
|
61
|
-
},
|
|
62
|
-
"@angular/core": {
|
|
63
|
-
"optional": true
|
|
64
|
-
},
|
|
65
|
-
"@angular/common": {
|
|
66
|
-
"optional": true
|
|
67
|
-
}
|
|
68
|
-
},
|
|
69
|
-
"dependencies": {
|
|
70
|
-
"lucide-react": "^0.555.0",
|
|
71
|
-
"lucide-vue-next": "^0.561.0",
|
|
72
|
-
"lucide-angular": "^0.469.0",
|
|
73
|
-
"react-icons": "^5.5.0",
|
|
74
|
-
"react-live": "^4.1.8",
|
|
75
|
-
"vue-live": "^2.5.4"
|
|
76
|
-
},
|
|
77
|
-
"devDependencies": {
|
|
78
|
-
"@angular-devkit/build-angular": "^19.0.0",
|
|
79
|
-
"@angular/cli": "^19.0.0",
|
|
80
|
-
"@angular/common": "^19.0.0",
|
|
81
|
-
"@angular/compiler": "^19.0.0",
|
|
82
|
-
"@angular/compiler-cli": "^19.0.0",
|
|
83
|
-
"@angular/core": "^19.0.0",
|
|
84
|
-
"@types/fs-extra": "^11.0.4",
|
|
85
|
-
"@types/node": "^20.0.0",
|
|
86
|
-
"@types/react": "^18.0.0",
|
|
87
|
-
"@vitejs/plugin-vue": "^5.2.4",
|
|
88
|
-
"concurrently": "^8.2.2",
|
|
89
|
-
"cpy-cli": "^6.0.0",
|
|
90
|
-
"fs-extra": "^11.3.3",
|
|
91
|
-
"ng-packagr": "^19.0.0",
|
|
92
|
-
"typescript": "^5.0.0",
|
|
93
|
-
"vite": "^5.4.21",
|
|
94
|
-
"vue": "^3.5.25",
|
|
95
|
-
"vue-tsc": "^3.1.8"
|
|
96
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "rasp-feedback",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "Official Rasp SDK to implement your user feedback collection forms easily into your website.",
|
|
5
|
+
"main": "./dist/nextjs/index.js",
|
|
6
|
+
"types": "./dist/nextjs/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"copy:assets": "node scripts/copy-assets.js",
|
|
9
|
+
"build:react": "tsc -p tsconfig.react.json && xcopy /Y src\\nextjs\\index.css dist\\nextjs\\",
|
|
10
|
+
"build:vue": "vite build && vue-tsc -p tsconfig.vue.json --declaration --emitDeclarationOnly",
|
|
11
|
+
"build:angular": "ng build angular && node scripts/copy-angular-dist.js",
|
|
12
|
+
"build": "npm run build:react && npm run build:vue",
|
|
13
|
+
"dev:react": "tsc -p tsconfig.react.json --watch",
|
|
14
|
+
"dev:vue": "vite build --watch",
|
|
15
|
+
"dev:angular": "ng build angular --watch",
|
|
16
|
+
"dev": "concurrently \"npm run dev:react\" \"npm run dev:vue\"",
|
|
17
|
+
"prepublishOnly": "npm run build"
|
|
18
|
+
},
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/nextjs/index.d.ts",
|
|
22
|
+
"import": "./dist/nextjs/index.js",
|
|
23
|
+
"require": "./dist/nextjs/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./nextjs": {
|
|
26
|
+
"types": "./dist/nextjs/index.d.ts",
|
|
27
|
+
"import": "./dist/nextjs/index.js",
|
|
28
|
+
"require": "./dist/nextjs/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./vue": {
|
|
31
|
+
"types": "./dist/vue/index.d.ts",
|
|
32
|
+
"import": "./dist/vue/index.js",
|
|
33
|
+
"require": "./dist/vue/index.js"
|
|
34
|
+
},
|
|
35
|
+
"./angular": {
|
|
36
|
+
"types": "./dist/angular/index.d.ts",
|
|
37
|
+
"import": "./dist/angular/fesm2022/rasp-feedback-angular.mjs",
|
|
38
|
+
"require": "./dist/angular/fesm2022/rasp-feedback-angular.mjs",
|
|
39
|
+
"default": "./dist/angular/fesm2022/rasp-feedback-angular.mjs"
|
|
40
|
+
},
|
|
41
|
+
"./nextjs/style.css": "./dist/nextjs/index.css",
|
|
42
|
+
"./vue/style.css": "./dist/vue/index.css"
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"dist"
|
|
46
|
+
],
|
|
47
|
+
"author": "Rabuuk (Pty) Ltd.",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
51
|
+
"vue": "^3.3.0 || ^3.4.0",
|
|
52
|
+
"@angular/core": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
53
|
+
"@angular/common": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
54
|
+
},
|
|
55
|
+
"peerDependenciesMeta": {
|
|
56
|
+
"react": {
|
|
57
|
+
"optional": true
|
|
58
|
+
},
|
|
59
|
+
"vue": {
|
|
60
|
+
"optional": true
|
|
61
|
+
},
|
|
62
|
+
"@angular/core": {
|
|
63
|
+
"optional": true
|
|
64
|
+
},
|
|
65
|
+
"@angular/common": {
|
|
66
|
+
"optional": true
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"lucide-react": "^0.555.0",
|
|
71
|
+
"lucide-vue-next": "^0.561.0",
|
|
72
|
+
"lucide-angular": "^0.469.0",
|
|
73
|
+
"react-icons": "^5.5.0",
|
|
74
|
+
"react-live": "^4.1.8",
|
|
75
|
+
"vue-live": "^2.5.4"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@angular-devkit/build-angular": "^19.0.0",
|
|
79
|
+
"@angular/cli": "^19.0.0",
|
|
80
|
+
"@angular/common": "^19.0.0",
|
|
81
|
+
"@angular/compiler": "^19.0.0",
|
|
82
|
+
"@angular/compiler-cli": "^19.0.0",
|
|
83
|
+
"@angular/core": "^19.0.0",
|
|
84
|
+
"@types/fs-extra": "^11.0.4",
|
|
85
|
+
"@types/node": "^20.0.0",
|
|
86
|
+
"@types/react": "^18.0.0",
|
|
87
|
+
"@vitejs/plugin-vue": "^5.2.4",
|
|
88
|
+
"concurrently": "^8.2.2",
|
|
89
|
+
"cpy-cli": "^6.0.0",
|
|
90
|
+
"fs-extra": "^11.3.3",
|
|
91
|
+
"ng-packagr": "^19.0.0",
|
|
92
|
+
"typescript": "^5.0.0",
|
|
93
|
+
"vite": "^5.4.21",
|
|
94
|
+
"vue": "^3.5.25",
|
|
95
|
+
"vue-tsc": "^3.1.8"
|
|
96
|
+
}
|
|
97
97
|
}
|