@dile/crud 0.0.53 → 0.0.54

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.
@@ -259,7 +259,8 @@ export class DileAjaxForm extends DileI18nMixin(LitElement) {
259
259
  bubbles: true,
260
260
  composed: true,
261
261
  detail: {
262
- data: this.form.getData()
262
+ data: this.form.getData(),
263
+ isDirty: this.form.isDirty(),
263
264
  }
264
265
  }));
265
266
  }
@@ -116,6 +116,7 @@ export class DileCrudSingle extends DileI18nMixin(DileCrudMixin(LitElement)) {
116
116
  @crud-action-success=${this.actionSuccess}
117
117
  language="${this.language}"
118
118
  .element=${this.element}
119
+ .responseAdapter=${this.config.responseAdapter}
119
120
  ></dile-crud-single-actions>
120
121
  `
121
122
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/crud",
3
- "version": "0.0.53",
3
+ "version": "0.0.54",
4
4
  "description": "Components to create a generic crud system based on Web Components and Lit",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "ae6bb276e5139b7924bb81e4235d0745a59057b8"
34
+ "gitHead": "64a15d3e1432479c7005299f0e0fc8ee4e70aedd"
35
35
  }