@bexis2/bexis2-core-ui 0.4.76 → 0.4.77

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 CHANGED
@@ -1,4 +1,8 @@
1
1
  # bexis-core-ui
2
+ ## 0.4.77
3
+ - Fileuploader
4
+ - after submited add the responce to the event
5
+
2
6
  ## 0.4.76
3
7
  - API
4
8
  - Extending the API with custom headers and configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.4.76",
3
+ "version": "0.4.77",
4
4
  "private": false,
5
5
  "description": "Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).",
6
6
  "keywords": [
@@ -148,7 +148,7 @@
148
148
  const response = await Api.post(url, formData);
149
149
 
150
150
  if (response.status == 200) {
151
- dispatch('submited');
151
+ dispatch('submited', response);
152
152
 
153
153
  let message = files.accepted.length + ' is/are uploaded';
154
154