@uipath/apollo-react 4.14.0 → 4.14.1
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.
|
@@ -35,6 +35,7 @@ const external_icons_index_cjs_namespaceObject = require("../../icons/index.cjs"
|
|
|
35
35
|
const icon_registry_cjs_namespaceObject = require("../../utils/icon-registry.cjs");
|
|
36
36
|
const external_CanvasTooltip_cjs_namespaceObject = require("../CanvasTooltip.cjs");
|
|
37
37
|
const external_ExecutionStatusIcon_index_cjs_namespaceObject = require("../ExecutionStatusIcon/index.cjs");
|
|
38
|
+
const ExecutionStatusIcon_cjs_namespaceObject = require("../ExecutionStatusIcon/ExecutionStatusIcon.cjs");
|
|
38
39
|
const external_StageNode_styles_cjs_namespaceObject = require("./StageNode.styles.cjs");
|
|
39
40
|
const external_StageNode_types_cjs_namespaceObject = require("./StageNode.types.cjs");
|
|
40
41
|
const CHIP_ICONS = {
|
|
@@ -209,7 +210,11 @@ const StageNodeHeaderInner = ({ props, isReadOnly, isException, status, handleTa
|
|
|
209
210
|
size: "icon",
|
|
210
211
|
className: "h-6 w-6",
|
|
211
212
|
"aria-label": statusLabel,
|
|
212
|
-
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(
|
|
213
|
+
children: 'NotExecuted' === status ? /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(icon_registry_cjs_namespaceObject.CanvasIcon, {
|
|
214
|
+
icon: "hourglass",
|
|
215
|
+
size: 20,
|
|
216
|
+
color: (0, ExecutionStatusIcon_cjs_namespaceObject.getExecutionStatusColor)('NotExecuted')
|
|
217
|
+
}) : /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_ExecutionStatusIcon_index_cjs_namespaceObject.ExecutionStatusIcon, {
|
|
213
218
|
status: status,
|
|
214
219
|
size: 20
|
|
215
220
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StageNodeHeader.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StageNode/StageNodeHeader.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"StageNodeHeader.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StageNode/StageNodeHeader.tsx"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAgMrE,eAAO,MAAM,eAAe,wGA/KzB;IACD,KAAK,EAAE,cAAc,CAAC;IACtB,UAAU,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,kBAAkB,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,KAAK,IAAI,CAAC;CACvD,6CAyKwD,CAAC"}
|
|
@@ -7,6 +7,7 @@ import { EntryConditionIcon, ExitConditionIcon, ReturnToOriginIcon } from "../..
|
|
|
7
7
|
import { CanvasIcon } from "../../utils/icon-registry.js";
|
|
8
8
|
import { CanvasTooltip } from "../CanvasTooltip.js";
|
|
9
9
|
import { ExecutionStatusIcon } from "../ExecutionStatusIcon/index.js";
|
|
10
|
+
import { getExecutionStatusColor } from "../ExecutionStatusIcon/ExecutionStatusIcon.js";
|
|
10
11
|
import { StageChip, StageHeader, StageHeaderChipsRow, StageTitleContainer, StageTitleInput } from "./StageNode.styles.js";
|
|
11
12
|
import { StageHeaderChipType } from "./StageNode.types.js";
|
|
12
13
|
const CHIP_ICONS = {
|
|
@@ -181,7 +182,11 @@ const StageNodeHeaderInner = ({ props, isReadOnly, isException, status, handleTa
|
|
|
181
182
|
size: "icon",
|
|
182
183
|
className: "h-6 w-6",
|
|
183
184
|
"aria-label": statusLabel,
|
|
184
|
-
children: /*#__PURE__*/ jsx(
|
|
185
|
+
children: 'NotExecuted' === status ? /*#__PURE__*/ jsx(CanvasIcon, {
|
|
186
|
+
icon: "hourglass",
|
|
187
|
+
size: 20,
|
|
188
|
+
color: getExecutionStatusColor('NotExecuted')
|
|
189
|
+
}) : /*#__PURE__*/ jsx(ExecutionStatusIcon, {
|
|
185
190
|
status: status,
|
|
186
191
|
size: 20
|
|
187
192
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/apollo-react",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.1",
|
|
4
4
|
"description": "Apollo Design System - React component library with Material UI theming",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -201,8 +201,8 @@
|
|
|
201
201
|
"use-sync-external-store": "^1.2.0",
|
|
202
202
|
"zod": "^4.3.5",
|
|
203
203
|
"zustand": "^5.0.9",
|
|
204
|
-
"@uipath/apollo-
|
|
205
|
-
"@uipath/apollo-
|
|
204
|
+
"@uipath/apollo-wind": "2.7.0",
|
|
205
|
+
"@uipath/apollo-core": "5.9.0"
|
|
206
206
|
},
|
|
207
207
|
"devDependencies": {
|
|
208
208
|
"@lingui/cli": "^5.6.1",
|