@uipath/apollo-react 4.59.2 → 4.60.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/dist/canvas/components/StageNode/StageTaskEntryConditionIcon.cjs +2 -1
- package/dist/canvas/components/StageNode/StageTaskEntryConditionIcon.d.ts.map +1 -1
- package/dist/canvas/components/StageNode/StageTaskEntryConditionIcon.js +2 -1
- package/dist/canvas/components/StageNode/TaskContent.cjs +17 -27
- package/dist/canvas/components/StageNode/TaskContent.d.ts.map +1 -1
- package/dist/canvas/components/StageNode/TaskContent.js +17 -27
- package/dist/canvas/icons/LayersArrowUpRightIcon.cjs +67 -0
- package/dist/canvas/icons/LayersArrowUpRightIcon.d.ts +5 -0
- package/dist/canvas/icons/LayersArrowUpRightIcon.d.ts.map +1 -0
- package/dist/canvas/icons/LayersArrowUpRightIcon.js +33 -0
- package/dist/canvas/icons/index.cjs +7 -3
- package/dist/canvas/icons/index.d.ts +1 -0
- package/dist/canvas/icons/index.d.ts.map +1 -1
- package/dist/canvas/icons/index.js +2 -1
- package/dist/canvas/styles/tailwind.canvas.css +1 -1
- package/dist/canvas/utils/icon-registry.cjs +4 -0
- package/dist/canvas/utils/icon-registry.d.ts.map +1 -1
- package/dist/canvas/utils/icon-registry.js +5 -1
- package/package.json +1 -1
|
@@ -89,6 +89,10 @@ const iconRegistry = {
|
|
|
89
89
|
w: w ?? 24,
|
|
90
90
|
h: h ?? 24
|
|
91
91
|
}),
|
|
92
|
+
'layers-arrow-up-right': ({ w, h })=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(index_cjs_namespaceObject.LayersArrowUpRightIcon, {
|
|
93
|
+
w: w ?? 24,
|
|
94
|
+
h: h ?? 24
|
|
95
|
+
}),
|
|
92
96
|
switch: ({ w, h })=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(index_cjs_namespaceObject.SwitchIcon, {
|
|
93
97
|
w: w ?? 24,
|
|
94
98
|
h: h ?? 24
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon-registry.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/icon-registry.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,KAAK,GAAG,EAAiB,MAAM,OAAO,CAAC;AAGhD,MAAM,MAAM,aAAa,GAAG,CAAC,KAAK,EAAE;IAClC,CAAC,CAAC,EAAE,MAAM,CAAC;IACX,CAAC,CAAC,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,KAAK,GAAG,CAAC,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"icon-registry.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/icon-registry.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,KAAK,GAAG,EAAiB,MAAM,OAAO,CAAC;AAGhD,MAAM,MAAM,aAAa,GAAG,CAAC,KAAK,EAAE;IAClC,CAAC,CAAC,EAAE,MAAM,CAAC;IACX,CAAC,CAAC,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,KAAK,GAAG,CAAC,OAAO,CAAC;AAyDlB,wBAAgB,OAAO,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,aAAa,CAyCtD;AAED,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAMD,eAAO,MAAM,UAAU,uDASrB,CAAC;AAGH,eAAO,MAAM,QAAQ,uDAAa,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { icons } from "lucide-react";
|
|
3
3
|
import { memo, useMemo } from "react";
|
|
4
|
-
import { AgentDiagramIcon, AgentProject, ApiProject, AutonomousAgentIcon, BusinessProcessProject, CaseManagementProject, CodedAgentIcon, ConnectorBuilderProject, ControlFlowIcon, ConversationalAgentIcon, DataAndTools, DecisionIcon, FlowProject, FunctionProject, RpaProject, SwitchIcon, UiPathIcon, WebAppProject } from "../icons/index.js";
|
|
4
|
+
import { AgentDiagramIcon, AgentProject, ApiProject, AutonomousAgentIcon, BusinessProcessProject, CaseManagementProject, CodedAgentIcon, ConnectorBuilderProject, ControlFlowIcon, ConversationalAgentIcon, DataAndTools, DecisionIcon, FlowProject, FunctionProject, LayersArrowUpRightIcon, RpaProject, SwitchIcon, UiPathIcon, WebAppProject } from "../icons/index.js";
|
|
5
5
|
const iconRegistry = {
|
|
6
6
|
agent: ({ w, h })=>/*#__PURE__*/ jsx(AgentProject, {
|
|
7
7
|
w: w ?? 29,
|
|
@@ -59,6 +59,10 @@ const iconRegistry = {
|
|
|
59
59
|
w: w ?? 24,
|
|
60
60
|
h: h ?? 24
|
|
61
61
|
}),
|
|
62
|
+
'layers-arrow-up-right': ({ w, h })=>/*#__PURE__*/ jsx(LayersArrowUpRightIcon, {
|
|
63
|
+
w: w ?? 24,
|
|
64
|
+
h: h ?? 24
|
|
65
|
+
}),
|
|
62
66
|
switch: ({ w, h })=>/*#__PURE__*/ jsx(SwitchIcon, {
|
|
63
67
|
w: w ?? 24,
|
|
64
68
|
h: h ?? 24
|