@dile/crud 1.10.7 → 1.10.8

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.
@@ -33,7 +33,7 @@ export class DileManyRelation extends DileI18nMixin(LitElement) {
33
33
  flex: 1;
34
34
  padding-left: var(--many-relation-item-content-padding-left, 0.4rem);
35
35
  font-size: var(--many-relation-item-font-size, 0.9rem);
36
- font-weight: var(--many-relation-item-content-font-weight, normal);
36
+ font-weight: var(--many-relation-item-font-weight, normal);
37
37
  color: var(--many-relation-item-color, inherit);
38
38
  }
39
39
  .relation-item > dile-icon {
@@ -149,7 +149,7 @@ export class DileCrudSingle extends DileI18nMixin(DileCrudMixin(LitElement)) {
149
149
  this.updateElement.edit(this.relatedId);
150
150
  this.modalUpdate.open();
151
151
  } else if (this.config.updateOperation?.type == 'handler') {
152
- this.config.updateOperation.handler(this.relatedId, this, element);
152
+ this.config.updateOperation.handler(this.relatedId, this, this.element);
153
153
  }
154
154
 
155
155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/crud",
3
- "version": "1.10.7",
3
+ "version": "1.10.8",
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": "55837f27bec72372e2be12f49583738aa5944f8f"
34
+ "gitHead": "3227f65f0a4c157b9ba9c965353566b46ee45fd1"
35
35
  }