zakeke-configurator-react 0.1.365 → 0.1.366
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 +10 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -103516,20 +103516,17 @@ class Mu {
|
|
|
103516
103516
|
const t = e.map((a) => ({
|
|
103517
103517
|
attributeID: a.attributeID,
|
|
103518
103518
|
selectedValue: a.selectedValue,
|
|
103519
|
-
actions: a.actions
|
|
103520
|
-
|
|
103521
|
-
|
|
103522
|
-
|
|
103523
|
-
|
|
103524
|
-
|
|
103525
|
-
|
|
103526
|
-
|
|
103527
|
-
|
|
103528
|
-
|
|
103529
|
-
execOrder: a.get("execOrder"),
|
|
103530
|
-
deviceTypes: a.get("deviceTypes")
|
|
103519
|
+
actions: a.actions.map((o) => ({
|
|
103520
|
+
attributeGuid: o.get("actionGuid"),
|
|
103521
|
+
name: o.get("name"),
|
|
103522
|
+
actionTypeID: o.get("actionTypeID"),
|
|
103523
|
+
sceneElementTypeID: o.get("sceneElementTypeID"),
|
|
103524
|
+
selector: o.get("selector"),
|
|
103525
|
+
propertyName: o.get("propertyName"),
|
|
103526
|
+
value: o.get("value"),
|
|
103527
|
+
execOrder: o.get("execOrder"),
|
|
103528
|
+
deviceTypes: o.get("deviceTypes")
|
|
103531
103529
|
}))
|
|
103532
|
-
*/
|
|
103533
103530
|
}));
|
|
103534
103531
|
let n = this.getOrCreateBroadcastChannel();
|
|
103535
103532
|
if (!n)
|