@startinblox/core 0.19.1-beta.6 → 0.19.1-beta.8

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 +12 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -54134,6 +54134,10 @@ const SolidMembership = {
54134
54134
  if (newValue !== oldValue)
54135
54135
  this.planRender();
54136
54136
  }
54137
+ },
54138
+ class: {
54139
+ type: String,
54140
+ default: void 0
54137
54141
  }
54138
54142
  },
54139
54143
  initialState: {
@@ -54238,6 +54242,7 @@ const SolidMembership = {
54238
54242
  button = html$1`
54239
54243
  <solid-ac-checker data-src="${this.dataSrc}"
54240
54244
  permission="acl:Read"
54245
+ class=${ifDefined(this.class)}
54241
54246
  >
54242
54247
  <button @click=${this.changeMembership.bind(this)}>${this.dataLeaveLabel || this.t("solid-leave-group.button")}</button>
54243
54248
  ${this.getModalDialog()}
@@ -54247,6 +54252,7 @@ const SolidMembership = {
54247
54252
  button = html$1`
54248
54253
  <solid-ac-checker data-src="${this.dataSrc}"
54249
54254
  permission="acl:Read"
54255
+ class=${ifDefined(this.class)}
54250
54256
  >
54251
54257
  <button @click=${this.changeMembership.bind(this)}>${this.dataJoinLabel || this.t("solid-join-group.button")}</button>
54252
54258
  ${this.getModalDialog()}
@@ -54413,11 +54419,7 @@ const SolidMemberAdd = {
54413
54419
  },
54414
54420
  classSubmitButton: {
54415
54421
  type: String,
54416
- default: "",
54417
- callback: function(newValue, oldValue) {
54418
- if (newValue !== oldValue)
54419
- this.planRender();
54420
- }
54422
+ default: void 0
54421
54423
  }
54422
54424
  },
54423
54425
  initialState: {
@@ -54493,7 +54495,11 @@ const SolidMemberAdd = {
54493
54495
  name="users"
54494
54496
  @change="${this.changeSelectedUser.bind(this)}"
54495
54497
  ></solid-form-dropdown-autocompletion>
54496
- <button class="${this.classSubmitButton}" type="submit">${this.addMemberLabel}</button>
54498
+ <div class=${ifDefined(this.classSubmitButton)}>
54499
+ <button type="submit">
54500
+ ${this.addMemberLabel}
54501
+ </button>
54502
+ </div>
54497
54503
  </form>
54498
54504
 
54499
54505
  ${this.getModalDialog()}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startinblox/core",
3
- "version": "0.19.1-beta.6",
3
+ "version": "0.19.1-beta.8",
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",