@orchestrator-ui/orchestrator-ui-components 5.0.0 → 5.1.0
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/.turbo/turbo-build.log +8 -8
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +4 -4
- package/CHANGELOG.md +11 -0
- package/dist/index.d.ts +2061 -292
- package/dist/index.js +1726 -1435
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/WfoForms/formFields/SubscriptionSummaryField.tsx +1 -1
- package/src/components/WfoForms/formFields/commonStyles.ts +2 -0
- package/src/components/WfoForms/formFields/index.ts +1 -0
- package/src/components/WfoPydanticForm/Footer.tsx +75 -34
- package/src/components/WfoPydanticForm/Row.tsx +2 -2
- package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +99 -8
- package/src/components/WfoPydanticForm/fields/Checkbox.tsx +22 -0
- package/src/components/WfoPydanticForm/fields/Divider.tsx +17 -0
- package/src/components/WfoPydanticForm/fields/Label.tsx +23 -0
- package/src/components/WfoPydanticForm/fields/Summary.tsx +125 -0
- package/src/components/WfoPydanticForm/fields/Text.tsx +28 -0
- package/src/components/WfoPydanticForm/fields/index.ts +5 -0
- package/src/configuration/version.ts +1 -1
- package/src/icons/WfoExclamationTriangle.tsx +29 -0
- package/src/icons/index.ts +1 -0
- package/src/pages/metadata/WfoTasksPage.tsx +11 -26
- package/src/pages/metadata/WfoWorkflowsPage.tsx +11 -12
- package/src/rtk/endpoints/index.ts +1 -0
- package/src/types/types.ts +2 -2
|
@@ -131,18 +131,17 @@ export const WfoWorkflowsPage = () => {
|
|
|
131
131
|
columnType: ColumnType.DATA,
|
|
132
132
|
label: t('description'),
|
|
133
133
|
width: '700px',
|
|
134
|
-
renderData: (value, row) =>
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
) : null,
|
|
134
|
+
renderData: (value, row) => (
|
|
135
|
+
<WfoMetadataDescriptionField
|
|
136
|
+
onSave={(updatedNote) =>
|
|
137
|
+
updateWorkflow({
|
|
138
|
+
id: row.workflowId,
|
|
139
|
+
description: updatedNote,
|
|
140
|
+
})
|
|
141
|
+
}
|
|
142
|
+
description={value}
|
|
143
|
+
/>
|
|
144
|
+
),
|
|
146
145
|
},
|
|
147
146
|
target: {
|
|
148
147
|
columnType: ColumnType.DATA,
|
package/src/types/types.ts
CHANGED
|
@@ -259,7 +259,7 @@ export interface Step {
|
|
|
259
259
|
export interface WorkflowDefinition {
|
|
260
260
|
workflowId: string;
|
|
261
261
|
name: string;
|
|
262
|
-
description
|
|
262
|
+
description: string;
|
|
263
263
|
target: WorkflowTarget;
|
|
264
264
|
isTask: boolean;
|
|
265
265
|
products: Pick<ProductDefinition, 'tag' | 'productId' | 'name'>[];
|
|
@@ -269,7 +269,7 @@ export interface WorkflowDefinition {
|
|
|
269
269
|
export interface TaskDefinition {
|
|
270
270
|
workflowId: string;
|
|
271
271
|
name: string;
|
|
272
|
-
description
|
|
272
|
+
description: string;
|
|
273
273
|
target: WorkflowTarget;
|
|
274
274
|
isTask: boolean;
|
|
275
275
|
products: Pick<ProductDefinition, 'tag' | 'productId' | 'name'>[];
|