@elyra/pipeline-schemas 3.0.54 → 3.0.57
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.
|
@@ -163,11 +163,17 @@
|
|
|
163
163
|
"properties": {
|
|
164
164
|
"min": {
|
|
165
165
|
"description": "Lowest value discovered in the data",
|
|
166
|
-
"type":
|
|
166
|
+
"type": [
|
|
167
|
+
"string",
|
|
168
|
+
"number"
|
|
169
|
+
]
|
|
167
170
|
},
|
|
168
171
|
"max": {
|
|
169
172
|
"description": "Highest value discovered in the data",
|
|
170
|
-
"type":
|
|
173
|
+
"type": [
|
|
174
|
+
"string",
|
|
175
|
+
"number"
|
|
176
|
+
]
|
|
171
177
|
}
|
|
172
178
|
},
|
|
173
179
|
"required": [
|
|
@@ -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",
|
package/package.json
CHANGED