@dile/crud 1.14.2 → 1.14.4

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.
@@ -411,4 +411,14 @@ export class DileCrud extends DileI18nMixin(DileCrudMixin(LitElement)) {
411
411
  refresh() {
412
412
  this.listElement.refresh();
413
413
  }
414
+
415
+ setCustomizationOption(optionName, value) {
416
+ this.config = {
417
+ ...this.config,
418
+ customization: {
419
+ ...this.config.customization,
420
+ [optionName]: value
421
+ }
422
+ }
423
+ }
414
424
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/crud",
3
- "version": "1.14.2",
3
+ "version": "1.14.4",
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.25.4",
27
+ "@dile/ui": "^2.25.6",
28
28
  "axios": "^1.16.0",
29
29
  "lit": "^2.7.0 || ^3.0.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "34d14af1dad358ed978b7dcff38710157fdac19a"
34
+ "gitHead": "a825a71cc61133f7acb7e40729cf191500d5ac0f"
35
35
  }