ngx-axis-appforge 0.0.47 → 0.0.48
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.
|
@@ -3049,6 +3049,7 @@ class InputTrigger extends FunFieldBase {
|
|
|
3049
3049
|
const node = {
|
|
3050
3050
|
...desc,
|
|
3051
3051
|
type: "event",
|
|
3052
|
+
expanded: true,
|
|
3052
3053
|
key: key + desc.name,
|
|
3053
3054
|
isLeaf: !value?.[desc.name]?.length,
|
|
3054
3055
|
children: [],
|
|
@@ -3061,6 +3062,7 @@ class InputTrigger extends FunFieldBase {
|
|
|
3061
3062
|
const handlerDesc = this.allEventHanderDescs()[handler.name];
|
|
3062
3063
|
const handlerNode = {
|
|
3063
3064
|
type: "handler",
|
|
3065
|
+
expanded: true,
|
|
3064
3066
|
key: key + desc.name + "." + i,
|
|
3065
3067
|
selectable: false,
|
|
3066
3068
|
isLeaf: !handlerDesc?.events?.length,
|