@uipath/apollo-react 3.36.1-loop → 3.36.1-pr238.3dad7b7

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.
@@ -52,8 +52,7 @@ const nodeSchema = external_zod_namespaceObject.z.object({
52
52
  handleCustomization: external_zod_namespaceObject.z.object({
53
53
  groups: external_zod_namespaceObject.z.array(handle_cjs_namespaceObject.handleGroupOverrideSchema)
54
54
  }).optional(),
55
- model: external_zod_namespaceObject.z.unknown().optional(),
56
- parentId: external_base_cjs_namespaceObject.idSchema.optional()
55
+ model: external_zod_namespaceObject.z.unknown().optional()
57
56
  });
58
57
  exports.nodeSchema = __webpack_exports__.nodeSchema;
59
58
  exports.uiSchema = __webpack_exports__.uiSchema;
@@ -105,7 +105,6 @@ export declare const nodeSchema: z.ZodObject<{
105
105
  }, z.core.$strip>>;
106
106
  }, z.core.$strip>>;
107
107
  model: z.ZodOptional<z.ZodUnknown>;
108
- parentId: z.ZodOptional<z.ZodString>;
109
108
  }, z.core.$strip>;
110
109
  export type InstanceUiConfig = z.infer<typeof uiSchema>;
111
110
  export type NodeInstance = z.infer<typeof nodeSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../../../src/canvas/schema/node-instance/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,QAAQ;;;;;;;;;;kCAeG,CAAC;AAKzB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiCrB,CAAC;AAGH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC;AAExD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC"}
1
+ {"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../../../src/canvas/schema/node-instance/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,QAAQ;;;;;;;;;;kCAeG,CAAC;AAKzB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA8BrB,CAAC;AAGH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC;AAExD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC"}
@@ -23,7 +23,6 @@ const nodeSchema = z.object({
23
23
  handleCustomization: z.object({
24
24
  groups: z.array(handleGroupOverrideSchema)
25
25
  }).optional(),
26
- model: z.unknown().optional(),
27
- parentId: idSchema.optional()
26
+ model: z.unknown().optional()
28
27
  });
29
28
  export { nodeSchema, uiSchema };
@@ -25,29 +25,37 @@ var __webpack_exports__ = {};
25
25
  __webpack_require__.r(__webpack_exports__);
26
26
  __webpack_require__.d(__webpack_exports__, {
27
27
  COLLAPSED_NODE_SIZE: ()=>COLLAPSED_NODE_SIZE,
28
+ EXPANDED_RECTANGLE_WIDTH: ()=>EXPANDED_RECTANGLE_WIDTH,
28
29
  getCollapsedShape: ()=>getCollapsedShape,
29
30
  getCollapsedSize: ()=>getCollapsedSize,
30
- getExpandedShape: ()=>getExpandedShape
31
+ getExpandedShape: ()=>getExpandedShape,
32
+ getExpandedSize: ()=>getExpandedSize
31
33
  });
32
34
  const COLLAPSED_NODE_SIZE = 96;
33
- const getCollapsedShape = (originalShape)=>{
34
- const shape = originalShape ?? 'rectangle';
35
- return 'rectangle' === shape ? 'square' : shape;
36
- };
37
- const getExpandedShape = (collapsedShape)=>{
38
- const shape = collapsedShape ?? 'rectangle';
39
- return 'square' === shape ? 'rectangle' : shape;
40
- };
41
- const getCollapsedSize = (width, height, measured)=>height ?? measured?.height ?? width ?? measured?.width ?? COLLAPSED_NODE_SIZE;
35
+ const EXPANDED_RECTANGLE_WIDTH = 288;
36
+ const getCollapsedShape = (originalShape)=>'rectangle' === originalShape ? 'square' : originalShape;
37
+ const getExpandedShape = (collapsedShape)=>'square' === collapsedShape ? 'rectangle' : collapsedShape ?? void 0;
38
+ const getCollapsedSize = ()=>({
39
+ width: COLLAPSED_NODE_SIZE,
40
+ height: COLLAPSED_NODE_SIZE
41
+ });
42
+ const getExpandedSize = (shape)=>({
43
+ width: 'rectangle' === shape ? EXPANDED_RECTANGLE_WIDTH : COLLAPSED_NODE_SIZE,
44
+ height: COLLAPSED_NODE_SIZE
45
+ });
42
46
  exports.COLLAPSED_NODE_SIZE = __webpack_exports__.COLLAPSED_NODE_SIZE;
47
+ exports.EXPANDED_RECTANGLE_WIDTH = __webpack_exports__.EXPANDED_RECTANGLE_WIDTH;
43
48
  exports.getCollapsedShape = __webpack_exports__.getCollapsedShape;
44
49
  exports.getCollapsedSize = __webpack_exports__.getCollapsedSize;
45
50
  exports.getExpandedShape = __webpack_exports__.getExpandedShape;
51
+ exports.getExpandedSize = __webpack_exports__.getExpandedSize;
46
52
  for(var __webpack_i__ in __webpack_exports__)if (-1 === [
47
53
  "COLLAPSED_NODE_SIZE",
54
+ "EXPANDED_RECTANGLE_WIDTH",
48
55
  "getCollapsedShape",
49
56
  "getCollapsedSize",
50
- "getExpandedShape"
57
+ "getExpandedShape",
58
+ "getExpandedSize"
51
59
  ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
52
60
  Object.defineProperty(exports, '__esModule', {
53
61
  value: true
@@ -1,9 +1,14 @@
1
1
  import type { NodeShape } from '../schema/node-definition';
2
2
  export declare const COLLAPSED_NODE_SIZE = 96;
3
- export declare const getCollapsedShape: (originalShape: NodeShape | undefined) => NodeShape;
4
- export declare const getExpandedShape: (collapsedShape: NodeShape | undefined) => NodeShape;
5
- export declare const getCollapsedSize: (width: number | undefined, height: number | undefined, measured?: {
6
- width?: number;
7
- height?: number;
8
- }) => number;
3
+ export declare const EXPANDED_RECTANGLE_WIDTH = 288;
4
+ export declare const getCollapsedShape: (originalShape?: NodeShape) => NodeShape | undefined;
5
+ export declare const getExpandedShape: (collapsedShape?: NodeShape) => NodeShape | undefined;
6
+ export declare const getCollapsedSize: () => {
7
+ width: number;
8
+ height: number;
9
+ };
10
+ export declare const getExpandedSize: (shape?: NodeShape) => {
11
+ width: number;
12
+ height: number;
13
+ };
9
14
  //# sourceMappingURL=collapse.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"collapse.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/collapse.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC;AAK3D,eAAO,MAAM,mBAAmB,KAAK,CAAC;AAMtC,eAAO,MAAM,iBAAiB,GAAI,eAAe,SAAS,GAAG,SAAS,KAAG,SAGxE,CAAC;AAOF,eAAO,MAAM,gBAAgB,GAAI,gBAAgB,SAAS,GAAG,SAAS,KAAG,SAGxE,CAAC;AAMF,eAAO,MAAM,gBAAgB,GAC3B,OAAO,MAAM,GAAG,SAAS,EACzB,QAAQ,MAAM,GAAG,SAAS,EAC1B,WAAW;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,KAC7C,MAEF,CAAC"}
1
+ {"version":3,"file":"collapse.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/collapse.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC;AAK3D,eAAO,MAAM,mBAAmB,KAAK,CAAC;AAKtC,eAAO,MAAM,wBAAwB,MAAM,CAAC;AAM5C,eAAO,MAAM,iBAAiB,GAAI,gBAAgB,SAAS,KAAG,SAAS,GAAG,SAEzE,CAAC;AAOF,eAAO,MAAM,gBAAgB,GAAI,iBAAiB,SAAS,KAAG,SAAS,GAAG,SAEzE,CAAC;AAMF,eAAO,MAAM,gBAAgB,QAAO;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAKlE,CAAC;AAOF,eAAO,MAAM,eAAe,GAAI,QAAQ,SAAS,KAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAKlF,CAAC"}
@@ -1,11 +1,13 @@
1
1
  const COLLAPSED_NODE_SIZE = 96;
2
- const getCollapsedShape = (originalShape)=>{
3
- const shape = originalShape ?? 'rectangle';
4
- return 'rectangle' === shape ? 'square' : shape;
5
- };
6
- const getExpandedShape = (collapsedShape)=>{
7
- const shape = collapsedShape ?? 'rectangle';
8
- return 'square' === shape ? 'rectangle' : shape;
9
- };
10
- const getCollapsedSize = (width, height, measured)=>height ?? measured?.height ?? width ?? measured?.width ?? COLLAPSED_NODE_SIZE;
11
- export { COLLAPSED_NODE_SIZE, getCollapsedShape, getCollapsedSize, getExpandedShape };
2
+ const EXPANDED_RECTANGLE_WIDTH = 288;
3
+ const getCollapsedShape = (originalShape)=>'rectangle' === originalShape ? 'square' : originalShape;
4
+ const getExpandedShape = (collapsedShape)=>'square' === collapsedShape ? 'rectangle' : collapsedShape ?? void 0;
5
+ const getCollapsedSize = ()=>({
6
+ width: COLLAPSED_NODE_SIZE,
7
+ height: COLLAPSED_NODE_SIZE
8
+ });
9
+ const getExpandedSize = (shape)=>({
10
+ width: 'rectangle' === shape ? EXPANDED_RECTANGLE_WIDTH : COLLAPSED_NODE_SIZE,
11
+ height: COLLAPSED_NODE_SIZE
12
+ });
13
+ export { COLLAPSED_NODE_SIZE, EXPANDED_RECTANGLE_WIDTH, getCollapsedShape, getCollapsedSize, getExpandedShape, getExpandedSize };
@@ -370,11 +370,12 @@ __webpack_require__.d(__webpack_exports__, {
370
370
  TerminateWorkflow: ()=>external_TerminateWorkflow_cjs_namespaceObject.TerminateWorkflow,
371
371
  DocumentationIcon: ()=>external_Documentation_cjs_default(),
372
372
  FetchBatchFromStreamIcon: ()=>external_FetchBatchFromStream_cjs_default(),
373
+ TypeDurationIcon: ()=>external_TypeDuration_cjs_default(),
374
+ ZoomOff: ()=>external_ZoomOff_cjs_namespaceObject.ZoomOff,
373
375
  OrchestratorGetCredentials: ()=>external_OrchestratorGetCredentials_cjs_namespaceObject.OrchestratorGetCredentials,
374
376
  Form: ()=>external_Form_cjs_namespaceObject.Form,
375
377
  ActivityPOP3: ()=>external_ActivityPOP3_cjs_namespaceObject.ActivityPOP3,
376
378
  AzureVirtualDesktopScope: ()=>external_AzureVirtualDesktopScope_cjs_namespaceObject.AzureVirtualDesktopScope,
377
- ZoomOff: ()=>external_ZoomOff_cjs_namespaceObject.ZoomOff,
378
379
  ArrowDropRightIcon: ()=>external_ArrowDropRight_cjs_default(),
379
380
  AgentsEscalationsIcon: ()=>external_AgentsEscalations_cjs_default(),
380
381
  Control1RemoveDataRow: ()=>external_Control1RemoveDataRow_cjs_namespaceObject.Control1RemoveDataRow,
@@ -394,7 +395,6 @@ __webpack_require__.d(__webpack_exports__, {
394
395
  AmazonWebServicesWorkspacesIcon: ()=>external_AmazonWebServicesWorkspaces_cjs_default(),
395
396
  AttachIcon: ()=>external_Attach_cjs_default(),
396
397
  Control1RemoveDuplicateRows: ()=>external_Control1RemoveDuplicateRows_cjs_namespaceObject.Control1RemoveDuplicateRows,
397
- TypeDurationIcon: ()=>external_TypeDuration_cjs_default(),
398
398
  AddLogFieldsIcon: ()=>external_AddLogFields_cjs_default(),
399
399
  Minimize: ()=>external_Minimize_cjs_namespaceObject.Minimize,
400
400
  FormatAlignJustifyIcon: ()=>external_FormatAlignJustify_cjs_default(),
@@ -720,16 +720,16 @@ __webpack_require__.d(__webpack_exports__, {
720
720
  BackstagePublishHistoryIcon: ()=>external_BackstagePublishHistory_cjs_default(),
721
721
  AzureVirtualDesktopGetWorkspace: ()=>external_AzureVirtualDesktopGetWorkspace_cjs_namespaceObject.AzureVirtualDesktopGetWorkspace,
722
722
  Commit: ()=>external_Commit_cjs_namespaceObject.Commit,
723
- ItAutomationAmazonWebServicesWorkspacesIcon: ()=>external_ItAutomationAmazonWebServicesWorkspaces_cjs_default(),
724
723
  IfSplitIcon: ()=>external_IfSplit_cjs_default(),
724
+ ItAutomationAmazonWebServicesWorkspacesIcon: ()=>external_ItAutomationAmazonWebServicesWorkspaces_cjs_default(),
725
725
  GenericActivityIconsListAll: ()=>external_GenericActivityIconsListAll_cjs_namespaceObject.GenericActivityIconsListAll,
726
726
  TriggerWebhook: ()=>external_TriggerWebhook_cjs_namespaceObject.TriggerWebhook,
727
727
  Cropp: ()=>external_Cropp_cjs_namespaceObject.Cropp,
728
728
  ArchiveIcon: ()=>external_Archive_cjs_default(),
729
729
  FTPFTPConnectionIcon: ()=>external_FTPFTPConnection_cjs_default(),
730
730
  GoogleCloudPlatformGetIamPolicyIcon: ()=>external_GoogleCloudPlatformGetIamPolicy_cjs_default(),
731
- NetiqEdirectory: ()=>external_NetiqEdirectory_cjs_namespaceObject.NetiqEdirectory,
732
731
  LayoutStretchVerticalIcon: ()=>external_LayoutStretchVertical_cjs_default(),
732
+ NetiqEdirectory: ()=>external_NetiqEdirectory_cjs_namespaceObject.NetiqEdirectory,
733
733
  RunProgramInVmIcon: ()=>external_RunProgramInVm_cjs_default(),
734
734
  ScreenShareIcon: ()=>external_ScreenShare_cjs_default(),
735
735
  SentimentVeryDissatisfied: ()=>external_SentimentVeryDissatisfied_cjs_namespaceObject.SentimentVeryDissatisfied,
@@ -859,11 +859,11 @@ __webpack_require__.d(__webpack_exports__, {
859
859
  EntityIcon: ()=>external_Entity_cjs_default(),
860
860
  Atlassian: ()=>external_Atlassian_cjs_namespaceObject.Atlassian,
861
861
  ImageIcon: ()=>external_Image_cjs_default(),
862
+ WorkdayIcon: ()=>external_Workday_cjs_default(),
862
863
  EntitiesDeleteRecordIcon: ()=>external_EntitiesDeleteRecord_cjs_default(),
863
864
  GoogleAds: ()=>external_GoogleAds_cjs_namespaceObject.GoogleAds,
864
865
  Box: ()=>external_Box_cjs_namespaceObject.Box,
865
866
  YahooIcon: ()=>external_Yahoo_cjs_default(),
866
- WorkdayIcon: ()=>external_Workday_cjs_default(),
867
867
  ReadGetOutputDataTable: ()=>external_ReadGetOutputDataTable_cjs_namespaceObject.ReadGetOutputDataTable,
868
868
  Stripe: ()=>external_Stripe_cjs_namespaceObject.Stripe,
869
869
  AgentsRunHistory: ()=>external_AgentsRunHistory_cjs_namespaceObject.AgentsRunHistory,
@@ -984,11 +984,11 @@ __webpack_require__.d(__webpack_exports__, {
984
984
  FTPGetFiles: ()=>external_FTPGetFiles_cjs_namespaceObject.FTPGetFiles,
985
985
  Control1ClearDataTableIcon: ()=>external_Control1ClearDataTable_cjs_default(),
986
986
  UserFromDirectoryIcon: ()=>external_UserFromDirectory_cjs_default(),
987
- WebAPIDeserializeJSONIcon: ()=>external_WebAPIDeserializeJSON_cjs_default(),
987
+ Watch: ()=>external_Watch_cjs_namespaceObject.Watch,
988
988
  DataTypesBooleanIcon: ()=>external_DataTypesBoolean_cjs_default(),
989
989
  DatabaseConnectIcon: ()=>external_DatabaseConnect_cjs_default(),
990
990
  TableRow: ()=>external_TableRow_cjs_namespaceObject.TableRow,
991
- Watch: ()=>external_Watch_cjs_namespaceObject.Watch,
991
+ WebAPIDeserializeJSONIcon: ()=>external_WebAPIDeserializeJSON_cjs_default(),
992
992
  MicIcon: ()=>external_Mic_cjs_default(),
993
993
  GoogleCloud: ()=>external_GoogleCloud_cjs_namespaceObject.GoogleCloud,
994
994
  GlobalHandlerIcon: ()=>external_GlobalHandler_cjs_default(),
@@ -996,7 +996,7 @@ __webpack_require__.d(__webpack_exports__, {
996
996
  WebhookIcon: ()=>external_Webhook_cjs_default(),
997
997
  BpmnToolbarChangeElementIcon: ()=>external_BpmnToolbarChangeElement_cjs_default(),
998
998
  SentimentNeutralIcon: ()=>external_SentimentNeutral_cjs_default(),
999
- Zuora: ()=>external_Zuora_cjs_namespaceObject.Zuora,
999
+ WriteStorageText: ()=>external_WriteStorageText_cjs_namespaceObject.WriteStorageText,
1000
1000
  AgentTraceConversationCitationIcon: ()=>external_AgentTraceConversationCitation_cjs_default(),
1001
1001
  OrchestratorHTTPRequestIcon: ()=>external_OrchestratorHTTPRequest_cjs_default(),
1002
1002
  InvokeWorkflowFileIcon: ()=>external_InvokeWorkflowFile_cjs_default(),
@@ -1005,7 +1005,6 @@ __webpack_require__.d(__webpack_exports__, {
1005
1005
  UIPathIcon: ()=>external_UIPath_cjs_default(),
1006
1006
  CreateIcon: ()=>external_Create_cjs_default(),
1007
1007
  InsightsIcon: ()=>external_Insights_cjs_default(),
1008
- WriteStorageText: ()=>external_WriteStorageText_cjs_namespaceObject.WriteStorageText,
1009
1008
  VmwareGetVm: ()=>external_VmwareGetVm_cjs_namespaceObject.VmwareGetVm,
1010
1009
  BuildCollection: ()=>external_BuildCollection_cjs_namespaceObject.BuildCollection,
1011
1010
  ProcessesIcon: ()=>external_Processes_cjs_default(),
@@ -1018,6 +1017,7 @@ __webpack_require__.d(__webpack_exports__, {
1018
1017
  TypeObject: ()=>external_TypeObject_cjs_namespaceObject.TypeObject,
1019
1018
  FileExistsIcon: ()=>external_FileExists_cjs_default(),
1020
1019
  AlertErrorIcon: ()=>external_AlertError_cjs_default(),
1020
+ Zuora: ()=>external_Zuora_cjs_namespaceObject.Zuora,
1021
1021
  ReportStatus: ()=>external_ReportStatus_cjs_namespaceObject.ReportStatus,
1022
1022
  DebugHistoryIcon: ()=>external_DebugHistory_cjs_default(),
1023
1023
  TypeDictionary: ()=>external_TypeDictionary_cjs_namespaceObject.TypeDictionary,
@@ -1330,8 +1330,8 @@ __webpack_require__.d(__webpack_exports__, {
1330
1330
  WorkdayBg: ()=>external_WorkdayBg_cjs_namespaceObject.WorkdayBg,
1331
1331
  ArrowDropRight: ()=>external_ArrowDropRight_cjs_namespaceObject.ArrowDropRight,
1332
1332
  BpmnBoundaryEventCondition: ()=>external_BpmnBoundaryEventCondition_cjs_namespaceObject.BpmnBoundaryEventCondition,
1333
- KeyReturnIcon: ()=>external_KeyReturn_cjs_default(),
1334
1333
  CryptographyDecryptTextIcon: ()=>external_CryptographyDecryptText_cjs_default(),
1334
+ KeyReturnIcon: ()=>external_KeyReturn_cjs_default(),
1335
1335
  PriorityMediumHigh: ()=>external_PriorityMediumHigh_cjs_namespaceObject.PriorityMediumHigh,
1336
1336
  AgentDesktopLogoBg: ()=>external_AgentDesktopLogoBg_cjs_namespaceObject.AgentDesktopLogoBg,
1337
1337
  Citrix: ()=>external_Citrix_cjs_namespaceObject.Citrix,
@@ -1432,9 +1432,9 @@ __webpack_require__.d(__webpack_exports__, {
1432
1432
  PanelsOutputPanelNewIcon: ()=>external_PanelsOutputPanelNew_cjs_default(),
1433
1433
  Smartsheet: ()=>external_Smartsheet_cjs_namespaceObject.Smartsheet,
1434
1434
  DataTypesListIcon: ()=>external_DataTypesList_cjs_default(),
1435
+ UserGroupIcon: ()=>external_UserGroup_cjs_default(),
1435
1436
  MergeIcon: ()=>external_Merge_cjs_default(),
1436
1437
  ClickIcon: ()=>external_Click_cjs_default(),
1437
- UserGroupIcon: ()=>external_UserGroup_cjs_default(),
1438
1438
  VmwareRunProgramInVm: ()=>external_VmwareRunProgramInVm_cjs_namespaceObject.VmwareRunProgramInVm,
1439
1439
  UserAddIcon: ()=>external_UserAdd_cjs_default(),
1440
1440
  DataTypesDataTableIcon: ()=>external_DataTypesDataTable_cjs_default(),
@@ -1845,10 +1845,10 @@ __webpack_require__.d(__webpack_exports__, {
1845
1845
  EcryptTextIcon: ()=>external_EcryptText_cjs_default(),
1846
1846
  ComponentAPIWorkflowIcon: ()=>external_ComponentAPIWorkflow_cjs_default(),
1847
1847
  Control2TerminateWorkflow: ()=>external_Control2TerminateWorkflow_cjs_namespaceObject.Control2TerminateWorkflow,
1848
- EntitiesQueryRecords: ()=>external_EntitiesQueryRecords_cjs_namespaceObject.EntitiesQueryRecords,
1848
+ EntitiesEntityIcon: ()=>external_EntitiesEntity_cjs_default(),
1849
1849
  Control1RemoveLogFields: ()=>external_Control1RemoveLogFields_cjs_namespaceObject.Control1RemoveLogFields,
1850
1850
  Control1GenerateDataTableIcon: ()=>external_Control1GenerateDataTable_cjs_default(),
1851
- EntitiesEntityIcon: ()=>external_EntitiesEntity_cjs_default(),
1851
+ EntitiesQueryRecords: ()=>external_EntitiesQueryRecords_cjs_namespaceObject.EntitiesQueryRecords,
1852
1852
  MicrosoftOneDrive: ()=>external_MicrosoftOneDrive_cjs_namespaceObject.MicrosoftOneDrive,
1853
1853
  GoToURLIcon: ()=>external_GoToURL_cjs_default(),
1854
1854
  AddCanvas: ()=>external_AddCanvas_cjs_namespaceObject.AddCanvas,
@@ -1867,11 +1867,11 @@ __webpack_require__.d(__webpack_exports__, {
1867
1867
  SlackDownloadFileIcon: ()=>external_SlackDownloadFile_cjs_default(),
1868
1868
  SlackInvokeSlackAdminOperationIcon: ()=>external_SlackInvokeSlackAdminOperation_cjs_default(),
1869
1869
  StudioIconsPlaceholderIcon: ()=>external_StudioIconsPlaceholder_cjs_default(),
1870
- TypeDoubleIcon: ()=>external_TypeDouble_cjs_default(),
1870
+ TypeCurrency: ()=>external_TypeCurrency_cjs_namespaceObject.TypeCurrency,
1871
1871
  Expensify: ()=>external_Expensify_cjs_namespaceObject.Expensify,
1872
1872
  Issues: ()=>external_Issues_cjs_namespaceObject.Issues,
1873
1873
  ComponentTestAutomation: ()=>external_ComponentTestAutomation_cjs_namespaceObject.ComponentTestAutomation,
1874
- TypeCurrency: ()=>external_TypeCurrency_cjs_namespaceObject.TypeCurrency,
1874
+ TypeDoubleIcon: ()=>external_TypeDouble_cjs_default(),
1875
1875
  UITriggersScheduledIcon: ()=>external_UITriggersScheduled_cjs_default(),
1876
1876
  VisibilityOff: ()=>external_VisibilityOff_cjs_namespaceObject.VisibilityOff,
1877
1877
  WaitForDownload: ()=>external_WaitForDownload_cjs_namespaceObject.WaitForDownload,
@@ -2027,13 +2027,13 @@ __webpack_require__.d(__webpack_exports__, {
2027
2027
  ChecklistIcon: ()=>external_Checklist_cjs_default(),
2028
2028
  GsuiteGsuite: ()=>external_GsuiteGsuite_cjs_namespaceObject.GsuiteGsuite,
2029
2029
  ExtractFiles: ()=>external_ExtractFiles_cjs_namespaceObject.ExtractFiles,
2030
+ UIDataExtractionExtractURL: ()=>external_UIDataExtractionExtractURL_cjs_namespaceObject.UIDataExtractionExtractURL,
2030
2031
  VolumeUpIcon: ()=>external_VolumeUp_cjs_default(),
2031
2032
  BpmnBoundaryLinkThrow: ()=>external_BpmnBoundaryLinkThrow_cjs_namespaceObject.BpmnBoundaryLinkThrow,
2032
2033
  BpmnBoundaryTimer: ()=>external_BpmnBoundaryTimer_cjs_namespaceObject.BpmnBoundaryTimer,
2033
2034
  ComponentBusinessRule: ()=>external_ComponentBusinessRule_cjs_namespaceObject.ComponentBusinessRule,
2034
2035
  Output: ()=>external_Output_cjs_namespaceObject.Output,
2035
2036
  OrchestratorReadStorageText: ()=>external_OrchestratorReadStorageText_cjs_namespaceObject.OrchestratorReadStorageText,
2036
- UIDataExtractionExtractURL: ()=>external_UIDataExtractionExtractURL_cjs_namespaceObject.UIDataExtractionExtractURL,
2037
2037
  BpmnBoundaryEventDefaultIcon: ()=>external_BpmnBoundaryEventDefault_cjs_default(),
2038
2038
  Document: ()=>external_Document_cjs_namespaceObject.Document,
2039
2039
  UIAutomationSemanticFillForm: ()=>external_UIAutomationSemanticFillForm_cjs_namespaceObject.UIAutomationSemanticFillForm,
@@ -2644,9 +2644,9 @@ __webpack_require__.d(__webpack_exports__, {
2644
2644
  BorderOuterIcon: ()=>external_BorderOuter_cjs_default(),
2645
2645
  DiffAcceptAllIcon: ()=>external_DiffAcceptAll_cjs_default(),
2646
2646
  DiffRejectIcon: ()=>external_DiffReject_cjs_default(),
2647
- ItAutomationGoogleCloudIcon: ()=>external_ItAutomationGoogleCloud_cjs_default(),
2648
2647
  ForEachRowInDataTableIcon: ()=>external_ForEachRowInDataTable_cjs_default(),
2649
2648
  GetFolderIcon: ()=>external_GetFolder_cjs_default(),
2649
+ ItAutomationGoogleCloudIcon: ()=>external_ItAutomationGoogleCloud_cjs_default(),
2650
2650
  Search: ()=>external_Search_cjs_namespaceObject.Search,
2651
2651
  SentimentDissatisfied: ()=>external_SentimentDissatisfied_cjs_namespaceObject.SentimentDissatisfied,
2652
2652
  SuspendVm: ()=>external_SuspendVm_cjs_namespaceObject.SuspendVm,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipath/apollo-react",
3
- "version": "3.36.1-loop",
3
+ "version": "3.36.1-pr238.3dad7b7",
4
4
  "description": "Apollo Design System - React component library with Material UI theming",
5
5
  "repository": {
6
6
  "type": "git",