@dile/crud 1.3.8 → 1.3.10

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.
@@ -18,7 +18,7 @@ export class DileAjax extends DileAxios(DileI18nMixin(LitElement)) {
18
18
  super();
19
19
  this.method = 'post';
20
20
  this.url = '';
21
- this.statusSuccessCodes = [200, 201];
21
+ this.statusSuccessCodes = [200, 201, 202];
22
22
  this.getValidationErrors = (data) => {
23
23
  return data.errors
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/crud",
3
- "version": "1.3.8",
3
+ "version": "1.3.10",
4
4
  "description": "Components to create a generic crud system based on Web Components and Lit",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -24,12 +24,12 @@
24
24
  },
25
25
  "homepage": "https://dile-components.com/",
26
26
  "dependencies": {
27
- "@dile/ui": "^2.16.2",
27
+ "@dile/ui": "^2.17.0",
28
28
  "axios": "^1.13.0",
29
29
  "lit": "^2.7.0 || ^3.0.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "8ef9bee84a3a5b6acaf22dc3b9d39550f5ceeb80"
34
+ "gitHead": "7fc465be414441dd34305ee125d99e232d2830dd"
35
35
  }