@startinblox/core 0.19.11-beta.3 → 0.19.11-beta.5
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 +8 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -54399,6 +54399,9 @@ const SolidMemberDelete = {
|
|
|
54399
54399
|
if (!Array.isArray(this.currentMembers)) {
|
|
54400
54400
|
this.currentMembers = [this.currentMembers];
|
|
54401
54401
|
}
|
|
54402
|
+
this.currentMembers = this.currentMembers.map((member) => {
|
|
54403
|
+
return { "@id": member["@id"] };
|
|
54404
|
+
});
|
|
54402
54405
|
this.isMember = this.currentMembers ? this.currentMembers.some((member) => member["@id"] === this.dataTargetSrc) : false;
|
|
54403
54406
|
},
|
|
54404
54407
|
planRender() {
|
|
@@ -54495,6 +54498,10 @@ const SolidMemberAdd = {
|
|
|
54495
54498
|
classSubmitButton: {
|
|
54496
54499
|
type: String,
|
|
54497
54500
|
default: void 0
|
|
54501
|
+
},
|
|
54502
|
+
orderAsc: {
|
|
54503
|
+
type: String,
|
|
54504
|
+
default: void 0
|
|
54498
54505
|
}
|
|
54499
54506
|
},
|
|
54500
54507
|
initialState: {
|
|
@@ -54570,6 +54577,7 @@ const SolidMemberAdd = {
|
|
|
54570
54577
|
data-src="${this.rangeUsers}"
|
|
54571
54578
|
name="users"
|
|
54572
54579
|
@change="${this.changeSelectedUser.bind(this)}"
|
|
54580
|
+
order-asc="${ifDefined(this.orderAsc || "name")}"
|
|
54573
54581
|
></solid-form-dropdown-autocompletion>
|
|
54574
54582
|
<div class=${ifDefined(this.classSubmitButton)}>
|
|
54575
54583
|
<button type="submit">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@startinblox/core",
|
|
3
|
-
"version": "0.19.11-beta.
|
|
3
|
+
"version": "0.19.11-beta.5",
|
|
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",
|