@dile/crud 1.1.12 → 1.1.14
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.
|
@@ -48,7 +48,6 @@ export class DileCrudSingle extends DileI18nMixin(DileCrudMixin(LitElement)) {
|
|
|
48
48
|
relatedId: { type: String },
|
|
49
49
|
element: { type: Object },
|
|
50
50
|
actionIds: { type: Array },
|
|
51
|
-
getEndpointOverwrite: { type: String },
|
|
52
51
|
};
|
|
53
52
|
}
|
|
54
53
|
|
|
@@ -100,7 +99,7 @@ export class DileCrudSingle extends DileI18nMixin(DileCrudMixin(LitElement)) {
|
|
|
100
99
|
return html`
|
|
101
100
|
<dile-crud-detail
|
|
102
101
|
id="eldetail"
|
|
103
|
-
endpoint="${this.
|
|
102
|
+
endpoint="${this.config.endpoint}/${this.relatedId}"
|
|
104
103
|
.itemDetailTemplate=${this.config.templates.detail}
|
|
105
104
|
.responseAdapter=${this.config.responseAdapter}
|
|
106
105
|
@crud-item-detail-loaded=${this.elementLoaded}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dile/crud",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
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.14.
|
|
27
|
+
"@dile/ui": "^2.14.1",
|
|
28
28
|
"axios": "^1.13.0",
|
|
29
29
|
"lit": "^2.7.0 || ^3.0.0"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "29c107ef8ff78170087a57c5c47904ce7c72996b"
|
|
35
35
|
}
|