@elyra/pipeline-schemas 3.0.42 → 3.0.46
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.
|
@@ -166,6 +166,10 @@
|
|
|
166
166
|
"description": "Indicates whether panels, contained with a panelSelector, should be inserted between the radio buttons of a radio button set indicated by the dependsOn parameter.",
|
|
167
167
|
"type": "boolean"
|
|
168
168
|
},
|
|
169
|
+
"nestedPanel": {
|
|
170
|
+
"description": "Indicate whether panel should be nested. Nested panels are indented by 16px from the left and display left border. Default is false.",
|
|
171
|
+
"type": "boolean"
|
|
172
|
+
},
|
|
169
173
|
"action": {
|
|
170
174
|
"description": "Action definition for 'action' items.",
|
|
171
175
|
"type": "object",
|
|
@@ -592,11 +596,11 @@
|
|
|
592
596
|
"type": "string"
|
|
593
597
|
},
|
|
594
598
|
"number_generator": {
|
|
595
|
-
"description": "Adds a number generation
|
|
599
|
+
"description": "Adds a number generation button beside the numeric control",
|
|
596
600
|
"type": "object",
|
|
597
601
|
"properties": {
|
|
598
602
|
"label": {
|
|
599
|
-
"description": "
|
|
603
|
+
"description": "Number generator button label. It is visible on hover.",
|
|
600
604
|
"type": "string"
|
|
601
605
|
},
|
|
602
606
|
"range": {
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"$ref": "#/definitions/allow_change_definition"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"$ref": "#/definitions/default_value_definition"
|
|
45
48
|
}
|
|
46
49
|
]
|
|
47
50
|
},
|
|
@@ -599,6 +602,43 @@
|
|
|
599
602
|
"required": [
|
|
600
603
|
"allow_change"
|
|
601
604
|
]
|
|
605
|
+
},
|
|
606
|
+
"default_value_definition": {
|
|
607
|
+
"properties": {
|
|
608
|
+
"default_value": {
|
|
609
|
+
"description": "Set default value of the parameter_ref if condition evaluates to true.",
|
|
610
|
+
"type": "object",
|
|
611
|
+
"properties": {
|
|
612
|
+
"parameter_ref": {
|
|
613
|
+
"description": "Parameter whose default value is to be set.",
|
|
614
|
+
"type": "string"
|
|
615
|
+
},
|
|
616
|
+
"value": {
|
|
617
|
+
"description": "This will be the default value of parameter_ref if condition evaluates to true.",
|
|
618
|
+
"type": [
|
|
619
|
+
"number",
|
|
620
|
+
"string",
|
|
621
|
+
"boolean",
|
|
622
|
+
"object",
|
|
623
|
+
"array"
|
|
624
|
+
]
|
|
625
|
+
},
|
|
626
|
+
"evaluate": {
|
|
627
|
+
"description": "Evaluates to a boolean result",
|
|
628
|
+
"type": "object",
|
|
629
|
+
"$ref": "#/definitions/evaluate_definition"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"required": [
|
|
633
|
+
"parameter_ref",
|
|
634
|
+
"value",
|
|
635
|
+
"evaluate"
|
|
636
|
+
]
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
"required": [
|
|
640
|
+
"default_value"
|
|
641
|
+
]
|
|
602
642
|
}
|
|
603
643
|
}
|
|
604
644
|
}
|
|
@@ -134,6 +134,14 @@
|
|
|
134
134
|
"description": "Indicates whether panels, contained with a panelSelector, should be inserted between the radio buttons of a radio button set indicated by the depends_on_ref parameter.",
|
|
135
135
|
"type": "boolean"
|
|
136
136
|
},
|
|
137
|
+
"nested_panel": {
|
|
138
|
+
"description": "Indicate whether panel should be nested. Nested panels are indented by 16px from the left and display left border. Default is false.",
|
|
139
|
+
"type": "boolean"
|
|
140
|
+
},
|
|
141
|
+
"open": {
|
|
142
|
+
"description": "Used to determine if a panel is open or closed when UI is displayed. Currenty only supported with twistyPanel. Default is false.",
|
|
143
|
+
"type": "boolean"
|
|
144
|
+
},
|
|
137
145
|
"label": {
|
|
138
146
|
"description": "Group label",
|
|
139
147
|
"type": "object",
|
|
@@ -375,11 +383,11 @@
|
|
|
375
383
|
]
|
|
376
384
|
},
|
|
377
385
|
"number_generator": {
|
|
378
|
-
"description": "Adds a number generation
|
|
386
|
+
"description": "Adds a number generation button beside the numeric control",
|
|
379
387
|
"type": "object",
|
|
380
388
|
"properties": {
|
|
381
389
|
"label": {
|
|
382
|
-
"description": "
|
|
390
|
+
"description": "Number generator button label. It is visible on hover.",
|
|
383
391
|
"type": "object",
|
|
384
392
|
"$ref": "#/definitions/resource_definition"
|
|
385
393
|
},
|
package/package.json
CHANGED