You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Note: `dataSourceUrl` is required for `autocomplete` guiType.
98
+
* Note: `dataSourceUrl` API must return an array of string, example:
99
+
```json
100
+
[
101
+
"1.0.0",
102
+
"1.1.0",
103
+
"1.2.0",
104
+
"2.0.0"
105
+
]
106
+
```
107
+
- [X] Support for field mutual exclusion(will enable other fields if current field is set) from `3.1.5`.
108
+
* Note: `enableOtherFieldsWhenSet` is support for any field type, it means when current filed is set, will enable other defined disabled fields.
109
+
* Note: `enableOtherFieldsWhenSet` is an array, the value is other filed reference, example: `["installation.tibco.bw5ce", "installation.tibco.others"]`.
110
+
67
111
- [X] Support for field mutual exclusion(will disable other fields if current field is set) from `3.1.2`.
68
112
* Note: `disableOtherFieldsWhenSet` is support for any field type, it means when current filed is set, will disable other defined fields.
69
113
* Note: `disableOtherFieldsWhenSet` is an array, the value is other filed reference, example: `["meta.fileContent", "networking.vpcs[1].cidrs"]`.
@@ -72,7 +116,7 @@ This file is used to define the additional input options of the pipeline.
72
116
* Note: default `fileSize` is 100, the unit is KB.
73
117
* 
74
118
- [X] Support for group option fields from `3.1.0`.
75
-
```
119
+
```yaml
76
120
groups:
77
121
- title: "Step 1: Deploy Control Plane"
78
122
index: 1
@@ -92,7 +136,7 @@ This file is used to define the additional input options of the pipeline.
92
136
- name: "pipeline field 3"
93
137
groupIndex: 3
94
138
- name: "pipeline field others"
95
-
// no groupIndex item will be in the others group
139
+
# If an item does not have a groupIndex, it will appear in a group named others.
96
140
```
97
141

98
142
- [X] Support for define the title of the field. `name: "Field name"`
@@ -103,7 +147,7 @@ This file is used to define the additional input options of the pipeline.
103
147
- [X] Support for reference to the JSON path. `reference: "networking.vpcs[1].identifier"`
104
148
- [X] Support for a test reference path. See the `Test reference path` button in the pipeline page.
105
149
- [X] Support for using a custom recipe to override the default value.
106
-
```
150
+
```yaml
107
151
recipe: |
108
152
version: 2.0.0
109
153
```
@@ -135,10 +179,12 @@ This file is used to define the additional input options of the pipeline.
0 commit comments