@startinblox/core 0.19.1-beta.5 → 0.19.1-beta.7

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.
Files changed (2) hide show
  1. package/dist/index.js +15 -7
  2. 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 @click=${this.removeMember.bind(this)}>${this.dataLabel || this.t("solid-delete-member.button")}</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
  `;
@@ -54405,11 +54413,7 @@ const SolidMemberAdd = {
54405
54413
  },
54406
54414
  classSubmitButton: {
54407
54415
  type: String,
54408
- default: "",
54409
- callback: function(newValue, oldValue) {
54410
- if (newValue !== oldValue)
54411
- this.planRender();
54412
- }
54416
+ default: void 0
54413
54417
  }
54414
54418
  },
54415
54419
  initialState: {
@@ -54485,7 +54489,11 @@ const SolidMemberAdd = {
54485
54489
  name="users"
54486
54490
  @change="${this.changeSelectedUser.bind(this)}"
54487
54491
  ></solid-form-dropdown-autocompletion>
54488
- <button class="${this.classSubmitButton}" type="submit">${this.addMemberLabel}</button>
54492
+ <div class=${ifDefined(this.classSubmitButton)}>
54493
+ <button type="submit">
54494
+ ${this.addMemberLabel}
54495
+ </button>
54496
+ </div>
54489
54497
  </form>
54490
54498
 
54491
54499
  ${this.getModalDialog()}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startinblox/core",
3
- "version": "0.19.1-beta.5",
3
+ "version": "0.19.1-beta.7",
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",