rasp-feedback 1.0.1 → 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.
Files changed (29) hide show
  1. package/dist/nextjs/components/MainViewHandler.d.ts +10 -0
  2. package/dist/nextjs/components/MainViewHandler.d.ts.map +1 -0
  3. package/dist/nextjs/components/MainViewHandler.js +17 -0
  4. package/dist/nextjs/components/PostItem.d.ts +7 -0
  5. package/dist/nextjs/components/PostItem.d.ts.map +1 -0
  6. package/dist/nextjs/components/PostItem.js +34 -0
  7. package/dist/nextjs/components/Posttem.d.ts +7 -0
  8. package/dist/nextjs/components/Posttem.d.ts.map +1 -0
  9. package/dist/nextjs/components/Posttem.js +14 -0
  10. package/dist/nextjs/components/RaspForm.d.ts.map +1 -1
  11. package/dist/nextjs/components/RaspForm.js +11 -0
  12. package/dist/nextjs/components/RaspProvider.d.ts.map +1 -1
  13. package/dist/nextjs/components/RaspProvider.js +220 -49
  14. package/dist/nextjs/components/StaticFormComponent.d.ts.map +1 -1
  15. package/dist/nextjs/components/StaticFormComponent.js +31 -12
  16. package/dist/nextjs/functions/functionsexp.d.ts +3 -0
  17. package/dist/nextjs/functions/functionsexp.d.ts.map +1 -1
  18. package/dist/nextjs/functions/functionsexp.js +71 -0
  19. package/dist/vue/components/PostItem.vue.d.ts +20 -0
  20. package/dist/vue/components/PostItem.vue.d.ts.map +1 -0
  21. package/dist/vue/components/RaspProvider.vue.d.ts.map +1 -1
  22. package/dist/vue/components/StaticFormComponent.vue.d.ts.map +1 -1
  23. package/dist/vue/functions/functionsexp.d.ts +3 -0
  24. package/dist/vue/functions/functionsexp.d.ts.map +1 -1
  25. package/dist/vue/index.js +692 -299
  26. package/dist/vue/index.umd.cjs +1 -1
  27. package/package.json +97 -73
  28. package/dist/nextjs/images/rasp_logo.png +0 -0
  29. package/dist/vue/images/rasp_logo.png +0 -0
package/package.json CHANGED
@@ -1,73 +1,97 @@
1
- {
2
- "name": "rasp-feedback",
3
- "version": "1.0.1",
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": "npm run build:react && npm run build:vue && npm run copy:assets",
12
- "dev:react": "tsc -p tsconfig.react.json --watch",
13
- "dev:vue": "vite build --watch",
14
- "dev": "concurrently \"npm run dev:react\" \"npm run dev:vue\"",
15
- "prepublishOnly": "npm run build"
16
- },
17
- "exports": {
18
- ".": {
19
- "types": "./dist/nextjs/index.d.ts",
20
- "import": "./dist/nextjs/index.js",
21
- "require": "./dist/nextjs/index.js"
22
- },
23
- "./nextjs": {
24
- "types": "./dist/nextjs/index.d.ts",
25
- "import": "./dist/nextjs/index.js",
26
- "require": "./dist/nextjs/index.js"
27
- },
28
- "./vue": {
29
- "types": "./dist/vue/index.d.ts",
30
- "import": "./dist/vue/index.js",
31
- "require": "./dist/vue/index.js"
32
- },
33
- "./nextjs/style.css": "./dist/nextjs/index.css",
34
- "./vue/style.css": "./dist/vue/index.css"
35
- },
36
- "files": [
37
- "dist"
38
- ],
39
- "author": "Rabuuk (Pty) Ltd.",
40
- "license": "MIT",
41
- "peerDependencies": {
42
- "react": "^18.0.0 || ^19.0.0",
43
- "vue": "^3.3.0 || ^3.4.0"
44
- },
45
- "peerDependenciesMeta": {
46
- "react": {
47
- "optional": true
48
- },
49
- "vue": {
50
- "optional": true
51
- }
52
- },
53
- "dependencies": {
54
- "lucide-react": "^0.555.0",
55
- "lucide-vue-next": "^0.561.0",
56
- "react-icons": "^5.5.0",
57
- "react-live": "^4.1.8",
58
- "vue-live": "^2.5.4"
59
- },
60
- "devDependencies": {
61
- "@types/fs-extra": "^11.0.4",
62
- "@types/node": "^20.0.0",
63
- "@types/react": "^18.0.0",
64
- "@vitejs/plugin-vue": "^5.2.4",
65
- "concurrently": "^8.2.2",
66
- "cpy-cli": "^6.0.0",
67
- "fs-extra": "^11.3.3",
68
- "typescript": "^5.0.0",
69
- "vite": "^5.4.21",
70
- "vue": "^3.5.25",
71
- "vue-tsc": "^3.1.8"
72
- }
73
- }
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
+ }
Binary file
Binary file