@dile/crud 1.14.1 → 1.14.3

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.
@@ -40,14 +40,14 @@ export class DileAjaxChange extends LitElement {
40
40
  @ajax-success="${this.doSuccessAjax}"
41
41
  @ajax-error="${this.doErrorAjax}"
42
42
  ></dile-ajax>
43
- <slot name="select"></slot>
43
+ <slot name="input"></slot>
44
44
  `;
45
45
  }
46
46
 
47
47
  firstUpdated() {
48
- const slot = this.shadowRoot.querySelector('slot[name="select"]');
48
+ const slot = this.shadowRoot.querySelector('slot[name="input"]');
49
49
  if (!slot) {
50
- throw new Error('slot with name="select" not found');
50
+ throw new Error('slot with name="input" not found');
51
51
  }
52
52
 
53
53
  this.slotElement = slot;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/crud",
3
- "version": "1.14.1",
3
+ "version": "1.14.3",
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": "895b1e00cf101531e72fa6c303049d26e61df27f"
34
+ "gitHead": "23545d34486a852eb091d262227ab9378599beca"
35
35
  }