@bagelink/vue 0.0.182 → 0.0.186

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.182",
4
+ "version": "0.0.186",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -157,7 +157,7 @@ function uploadFiles() {
157
157
  if (file.uploaded || file.uploading || !file.file) return;
158
158
  file.uploading = true;
159
159
  file.serverFile = await bagel.uploadFile(file.file, {
160
- onUploadProgress: (e) => (file.progress = e.progress * 100 - 1),
160
+ onUploadProgress: (e: any) => (file.progress = e.progress * 100 - 1),
161
161
  });
162
162
  file.progress += 1;
163
163
  emitValue();
package/tsconfig.json CHANGED
@@ -35,36 +35,6 @@
35
35
  "@bagelink/vue/*": [
36
36
  "./vue/src/*"
37
37
  ],
38
- // "#": [
39
- // "./src/index.ts"
40
- // ],
41
- // "#/*": [
42
- // "./src/*"
43
- // ],
44
- // "#/components": [
45
- // "./src/components/index.ts"
46
- // ],
47
- // "#/components/*": [
48
- // "./src/components/*"
49
- // ],
50
- // "#/types": [
51
- // "./src/types/index.ts"
52
- // ],
53
- // "#/types/*": [
54
- // "./src/types/*"
55
- // ],
56
- // "#/utils": [
57
- // "./src/utils/index.ts"
58
- // ],
59
- // "#/utils/*": [
60
- // "./src/utils/*"
61
- // ],
62
- // "#/plugins": [
63
- // "./src/plugins/index.ts"
64
- // ],
65
- // "#/plugins/*": [
66
- // "./src/plugins/*"
67
- // ],
68
38
  },
69
39
  },
70
40
  "include": [