@dile/crud 0.0.59 → 0.0.61
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.
|
@@ -166,11 +166,13 @@ export class DileAjaxForm extends DileI18nMixin(LitElement) {
|
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
loadData() {
|
|
169
|
-
|
|
170
|
-
this.ajaxget
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
169
|
+
this.updateComplete.then(()=> {
|
|
170
|
+
if(this.ajaxget) {
|
|
171
|
+
this.ajaxget.generateRequest();
|
|
172
|
+
} else {
|
|
173
|
+
setTimeout(() => this.loadData(), 100);
|
|
174
|
+
}
|
|
175
|
+
})
|
|
174
176
|
}
|
|
175
177
|
|
|
176
178
|
doAction(e) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dile/crud",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.61",
|
|
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.polydile.com/",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@dile/ui": "^2.1.
|
|
27
|
+
"@dile/ui": "^2.1.32",
|
|
28
28
|
"axios": "^1.7.2",
|
|
29
29
|
"lit": "^2.7.0 || ^3.0.0"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "1ec317f503ce6d746ff0edd57b94173d6ee4da0a"
|
|
35
35
|
}
|