@elyra/pipeline-schemas 3.0.100 → 3.0.102
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.
- package/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json +4 -0
- package/package.json +1 -1
- package/types/{canvas-info-v3.ts → canvas-info-v3.d.ts} +4 -0
- package/types/index.d.ts +5 -5
- package/types/{palette-v3.ts → palette-v3.d.ts} +4 -0
- package/types/{pipeline-flow-v3.ts → pipeline-flow-v3.d.ts} +4 -0
- /package/types/{expression-info-v3.ts → expression-info-v3.d.ts} +0 -0
- /package/types/{parameter-defs-v3.ts → parameter-defs-v3.d.ts} +0 -0
|
@@ -491,6 +491,10 @@
|
|
|
491
491
|
"temporary": {
|
|
492
492
|
"description": "If set to true, the decoration will not be serialized in the pipeline flow.",
|
|
493
493
|
"type": "boolean"
|
|
494
|
+
},
|
|
495
|
+
"focusable": {
|
|
496
|
+
"description": "Indicates whether the decoration can receive keyboard focus or not.",
|
|
497
|
+
"type": "boolean"
|
|
494
498
|
}
|
|
495
499
|
},
|
|
496
500
|
"required": [
|
package/package.json
CHANGED
|
@@ -668,6 +668,10 @@ export interface DecorationSharedProperties {
|
|
|
668
668
|
* If set to true, the decoration will not be serialized in the pipeline flow.
|
|
669
669
|
*/
|
|
670
670
|
temporary?: boolean;
|
|
671
|
+
/**
|
|
672
|
+
* Indicates whether the decoration can receive keyboard focus or not.
|
|
673
|
+
*/
|
|
674
|
+
focusable?: boolean;
|
|
671
675
|
[k: string]: unknown;
|
|
672
676
|
}
|
|
673
677
|
/**
|
package/types/index.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export {
|
|
|
61
61
|
RecordSchema,
|
|
62
62
|
Field,
|
|
63
63
|
Metadata
|
|
64
|
-
} from "./pipeline-flow-v3.
|
|
64
|
+
} from "./pipeline-flow-v3.js";
|
|
65
65
|
export {
|
|
66
66
|
CanvasInfo,
|
|
67
67
|
CanvasPipeline,
|
|
@@ -80,11 +80,11 @@ export {
|
|
|
80
80
|
CanvasNodeLink,
|
|
81
81
|
CanvasAssociationLink,
|
|
82
82
|
CanvasCommentLink
|
|
83
|
-
} from "./canvas-info-v3.
|
|
83
|
+
} from "./canvas-info-v3.js";
|
|
84
84
|
export {
|
|
85
85
|
PipelineFlowPalette,
|
|
86
86
|
CategoryDef
|
|
87
|
-
} from "./palette-v3.
|
|
87
|
+
} from "./palette-v3.js";
|
|
88
88
|
export {
|
|
89
89
|
ParameterDefinitions,
|
|
90
90
|
ConditionsDefinition,
|
|
@@ -111,7 +111,7 @@ export {
|
|
|
111
111
|
ComplexTypeDefinition,
|
|
112
112
|
ActionDefinition,
|
|
113
113
|
ResourceDefinition
|
|
114
|
-
} from "./parameter-defs-v3.
|
|
114
|
+
} from "./parameter-defs-v3.js";
|
|
115
115
|
export {
|
|
116
116
|
ExpressionInfo,
|
|
117
117
|
FunctionList,
|
|
@@ -125,4 +125,4 @@ export {
|
|
|
125
125
|
FieldValueGroupsItemDef,
|
|
126
126
|
ValueDef,
|
|
127
127
|
AdditionalInfoItem
|
|
128
|
-
} from "./expression-info-v3.
|
|
128
|
+
} from "./expression-info-v3.js";
|
|
@@ -360,6 +360,10 @@ export interface DecorationSharedProperties {
|
|
|
360
360
|
* If set to true, the decoration will not be serialized in the pipeline flow.
|
|
361
361
|
*/
|
|
362
362
|
temporary?: boolean;
|
|
363
|
+
/**
|
|
364
|
+
* Indicates whether the decoration can receive keyboard focus or not.
|
|
365
|
+
*/
|
|
366
|
+
focusable?: boolean;
|
|
363
367
|
[k: string]: unknown;
|
|
364
368
|
}
|
|
365
369
|
/**
|
|
@@ -445,6 +445,10 @@ export interface DecorationSharedProperties {
|
|
|
445
445
|
* If set to true, the decoration will not be serialized in the pipeline flow.
|
|
446
446
|
*/
|
|
447
447
|
temporary?: boolean;
|
|
448
|
+
/**
|
|
449
|
+
* Indicates whether the decoration can receive keyboard focus or not.
|
|
450
|
+
*/
|
|
451
|
+
focusable?: boolean;
|
|
448
452
|
[k: string]: unknown;
|
|
449
453
|
}
|
|
450
454
|
/**
|
|
File without changes
|
|
File without changes
|