@startinblox/core 0.19.1-beta.5 → 0.19.1-beta.6
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.
- package/dist/index.js +9 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -54294,6 +54294,10 @@ const SolidMemberDelete = {
|
|
|
54294
54294
|
if (newValue !== oldValue)
|
|
54295
54295
|
this.planRender();
|
|
54296
54296
|
}
|
|
54297
|
+
},
|
|
54298
|
+
classSubmitButton: {
|
|
54299
|
+
type: String,
|
|
54300
|
+
default: void 0
|
|
54297
54301
|
}
|
|
54298
54302
|
},
|
|
54299
54303
|
initialState: {
|
|
@@ -54368,8 +54372,12 @@ const SolidMemberDelete = {
|
|
|
54368
54372
|
button = html$1`
|
|
54369
54373
|
<solid-ac-checker data-src="${this.dataSrc}"
|
|
54370
54374
|
permission="acl:Write"
|
|
54375
|
+
class=${ifDefined(this.classSubmitButton)}
|
|
54371
54376
|
>
|
|
54372
|
-
<button
|
|
54377
|
+
<button
|
|
54378
|
+
@click=${this.removeMember.bind(this)}>
|
|
54379
|
+
${this.dataLabel || this.t("solid-delete-member.button")}
|
|
54380
|
+
</button>
|
|
54373
54381
|
${this.getModalDialog()}
|
|
54374
54382
|
</solid-ac-checker>
|
|
54375
54383
|
`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@startinblox/core",
|
|
3
|
-
"version": "0.19.1-beta.
|
|
3
|
+
"version": "0.19.1-beta.6",
|
|
4
4
|
"description": "This is a series of web component respecting both the web components standards and the Linked Data Platform convention.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|