@elyra/pipeline-schemas 3.0.55 → 3.0.58
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.
|
@@ -599,6 +599,36 @@
|
|
|
599
599
|
"type": "object",
|
|
600
600
|
"$ref": "#/definitions/resource_definition"
|
|
601
601
|
},
|
|
602
|
+
"button": {
|
|
603
|
+
"description": "Properties for button kind and size. Use when control=button.",
|
|
604
|
+
"type": "object",
|
|
605
|
+
"properties": {
|
|
606
|
+
"kind": {
|
|
607
|
+
"description": "button kind",
|
|
608
|
+
"type": "string",
|
|
609
|
+
"enum": [
|
|
610
|
+
"primary",
|
|
611
|
+
"secondary",
|
|
612
|
+
"tertiary",
|
|
613
|
+
"ghost",
|
|
614
|
+
"danger",
|
|
615
|
+
"danger--tertiary",
|
|
616
|
+
"danger--ghost"
|
|
617
|
+
],
|
|
618
|
+
"default": "tertiary"
|
|
619
|
+
},
|
|
620
|
+
"size": {
|
|
621
|
+
"description": "button size",
|
|
622
|
+
"enum": [
|
|
623
|
+
"sm",
|
|
624
|
+
"md",
|
|
625
|
+
"lg",
|
|
626
|
+
"xl"
|
|
627
|
+
],
|
|
628
|
+
"default": "sm"
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
},
|
|
602
632
|
"image": {
|
|
603
633
|
"description": "Properties for how the image will look. Use when control=image.",
|
|
604
634
|
"type": "object",
|
|
@@ -54,9 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"k": {
|
|
56
56
|
"description": "Scale amount. 1.0 is the standard scale amount. Smaller values zoom out. Larger values zoom in.",
|
|
57
|
-
"type": "number"
|
|
58
|
-
"minimum": 0.2,
|
|
59
|
-
"maximum": 1.8
|
|
57
|
+
"type": "number"
|
|
60
58
|
}
|
|
61
59
|
},
|
|
62
60
|
"required": [
|
|
@@ -171,6 +169,15 @@
|
|
|
171
169
|
"description": "Width of resized node. The node will be displayed with this width, when is_resized is true, in preference to its default width.",
|
|
172
170
|
"type": "number"
|
|
173
171
|
},
|
|
172
|
+
"sub_pipelines": {
|
|
173
|
+
"description": "An array of pipelines referenced when this node is a supernode. This field is only used when the supernode is in a palette or on the clipboard. It will be an empty array when the supernode references an external pipeline.",
|
|
174
|
+
"type": "array",
|
|
175
|
+
"minItems": 0,
|
|
176
|
+
"items": {
|
|
177
|
+
"$ref": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-v3-schema.json#/definitions/pipeline_def"
|
|
178
|
+
},
|
|
179
|
+
"uniqueItems": true
|
|
180
|
+
},
|
|
174
181
|
"attributes": {
|
|
175
182
|
"description": "additional attributes",
|
|
176
183
|
"type": "string"
|
package/package.json
CHANGED