@uipath/apollo-react 3.57.0 → 3.58.0-test-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.
@@ -37,8 +37,8 @@ __webpack_require__.d(__webpack_exports__, {
37
37
  });
38
38
  const jsx_runtime_namespaceObject = require("react/jsx-runtime");
39
39
  const react_namespaceObject = require("@emotion/react");
40
- const react_cjs_namespaceObject = require("../../xyflow/react.cjs");
41
40
  const external_index_cjs_namespaceObject = require("../../index.cjs");
41
+ const react_cjs_namespaceObject = require("../../xyflow/react.cjs");
42
42
  const external_motion_react_namespaceObject = require("motion/react");
43
43
  const external_react_namespaceObject = require("react");
44
44
  const external_react_markdown_namespaceObject = require("react-markdown");
@@ -49,6 +49,7 @@ const external_constants_cjs_namespaceObject = require("../../constants.cjs");
49
49
  const index_cjs_namespaceObject = require("../Toolbar/index.cjs");
50
50
  const external_StickyNoteNode_styles_cjs_namespaceObject = require("./StickyNoteNode.styles.cjs");
51
51
  const external_StickyNoteNode_types_cjs_namespaceObject = require("./StickyNoteNode.types.cjs");
52
+ const external_StickyNoteNode_utils_cjs_namespaceObject = require("./StickyNoteNode.utils.cjs");
52
53
  const minWidth = 8 * external_constants_cjs_namespaceObject.GRID_SPACING;
53
54
  const minHeight = 8 * external_constants_cjs_namespaceObject.GRID_SPACING;
54
55
  const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = 'Add text', renderPlaceholderOnSelect = false })=>{
@@ -222,7 +223,8 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
222
223
  }, [
223
224
  handleEditClick,
224
225
  handleToggleColorPicker,
225
- color
226
+ color,
227
+ handleDelete
226
228
  ]);
227
229
  return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(jsx_runtime_namespaceObject.Fragment, {
228
230
  children: [
@@ -324,7 +326,7 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
324
326
  external_remark_gfm_default()
325
327
  ],
326
328
  components: markdownComponents,
327
- children: localContent
329
+ children: (0, external_StickyNoteNode_utils_cjs_namespaceObject.preserveNewlines)(localContent)
328
330
  }) : renderPlaceholderOnSelect && selected && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_react_markdown_default(), {
329
331
  remarkPlugins: [
330
332
  external_remark_gfm_default()
@@ -1 +1 @@
1
- {"version":3,"file":"StickyNoteNode.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StickyNoteNode/StickyNoteNode.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAuB1E,OAAO,KAAK,EAAmB,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAG9E,MAAM,WAAW,mBAAoB,SAAQ,SAAS;IACpD,IAAI,EAAE,cAAc,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,yBAAyB,CAAC,EAAE,OAAO,CAAC;CACrC;AA8TD,eAAO,MAAM,cAAc,kHAlTxB,mBAAmB,6CAkTqC,CAAC"}
1
+ {"version":3,"file":"StickyNoteNode.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StickyNoteNode/StickyNoteNode.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAsB1E,OAAO,KAAK,EAAmB,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAI9E,MAAM,WAAW,mBAAoB,SAAQ,SAAS;IACpD,IAAI,EAAE,cAAc,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,yBAAyB,CAAC,EAAE,OAAO,CAAC;CACrC;AA8TD,eAAO,MAAM,cAAc,kHAlTxB,mBAAmB,6CAkTqC,CAAC"}
@@ -1,7 +1,7 @@
1
1
  import { Fragment, jsx, jsxs } from "react/jsx-runtime";
2
2
  import { Global } from "@emotion/react";
3
- import { NodeResizeControl, useReactFlow } from "../../xyflow/react.js";
4
3
  import { NodeIcon } from "../../index.js";
4
+ import { NodeResizeControl, useReactFlow } from "../../xyflow/react.js";
5
5
  import { AnimatePresence } from "motion/react";
6
6
  import { memo, useCallback, useEffect, useMemo, useRef, useState } from "react";
7
7
  import react_markdown from "react-markdown";
@@ -10,6 +10,7 @@ import { GRID_SPACING } from "../../constants.js";
10
10
  import { NodeToolbar } from "../Toolbar/index.js";
11
11
  import { BottomCornerIndicators, ColorOption, ColorPickerPanel, RESIZE_CONTROL_Z_INDEX, ResizeHandle, StickyNoteContainer, StickyNoteMarkdown, StickyNoteTextArea, StickyNoteWrapper, TopCornerIndicators, stickyNoteGlobalStyles } from "./StickyNoteNode.styles.js";
12
12
  import { STICKY_NOTE_COLORS, withAlpha } from "./StickyNoteNode.types.js";
13
+ import { preserveNewlines } from "./StickyNoteNode.utils.js";
13
14
  const minWidth = 8 * GRID_SPACING;
14
15
  const minHeight = 8 * GRID_SPACING;
15
16
  const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = 'Add text', renderPlaceholderOnSelect = false })=>{
@@ -183,7 +184,8 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
183
184
  }, [
184
185
  handleEditClick,
185
186
  handleToggleColorPicker,
186
- color
187
+ color,
188
+ handleDelete
187
189
  ]);
188
190
  return /*#__PURE__*/ jsxs(Fragment, {
189
191
  children: [
@@ -285,7 +287,7 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
285
287
  remark_gfm
286
288
  ],
287
289
  components: markdownComponents,
288
- children: localContent
290
+ children: preserveNewlines(localContent)
289
291
  }) : renderPlaceholderOnSelect && selected && /*#__PURE__*/ jsx(react_markdown, {
290
292
  remarkPlugins: [
291
293
  remark_gfm
@@ -51,6 +51,30 @@ const styled_namespaceObject = require("@emotion/styled");
51
51
  var styled_default = /*#__PURE__*/ __webpack_require__.n(styled_namespaceObject);
52
52
  const external_motion_react_namespaceObject = require("motion/react");
53
53
  const STICKY_NOTE_BELOW_EDGE_Z_INDEX = -10;
54
+ const stickyNoteContentStyles = `
55
+ width: 100%;
56
+ height: 100%;
57
+
58
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
59
+ font-size: 14px;
60
+ line-height: 1.5;
61
+ color: var(--uix-canvas-foreground);
62
+
63
+ overflow-y: auto;
64
+
65
+ &::-webkit-scrollbar {
66
+ width: 6px;
67
+ }
68
+
69
+ &::-webkit-scrollbar-track {
70
+ background: transparent;
71
+ }
72
+
73
+ &::-webkit-scrollbar-thumb {
74
+ background: var(--uix-canvas-border);
75
+ border-radius: 4px;
76
+ }
77
+ `;
54
78
  const RESIZE_CONTROL_Z_INDEX = 100;
55
79
  const stickyNoteGlobalStyles = (0, react_namespaceObject.css)`
56
80
  /* Override React Flow's elevateNodesOnSelect behavior for sticky notes */
@@ -87,21 +111,15 @@ const StickyNoteContainer = styled_default().div`
87
111
  }
88
112
  `;
89
113
  const StickyNoteTextArea = styled_default().textarea`
90
- width: 100%;
91
- height: 100%;
114
+ ${stickyNoteContentStyles}
115
+
92
116
  background: transparent;
93
117
  border: none;
94
118
  outline: none;
95
119
  resize: none;
96
- font-family:
97
- -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
98
- font-size: 14px;
99
- line-height: 1.5;
100
- color: var(--uix-canvas-foreground);
101
120
  cursor: ${(props)=>props.isEditing ? 'text' : 'move'};
102
121
  user-select: ${(props)=>props.isEditing ? 'text' : 'none'};
103
122
  pointer-events: ${(props)=>props.isEditing ? 'auto' : 'none'};
104
- overflow-y: auto;
105
123
 
106
124
  &::placeholder {
107
125
  color: var(--uix-canvas-foreground-de-emp);
@@ -114,14 +132,8 @@ const StickyNoteTextArea = styled_default().textarea`
114
132
  }
115
133
  `;
116
134
  const StickyNoteMarkdown = styled_default().div`
117
- width: 100%;
118
- height: 100%;
119
- overflow-y: auto;
120
- font-family:
121
- -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
122
- font-size: 14px;
123
- line-height: 1.5;
124
- color: var(--uix-canvas-foreground);
135
+ ${stickyNoteContentStyles}
136
+
125
137
  word-wrap: break-word;
126
138
 
127
139
  /* Markdown styles */
@@ -1 +1 @@
1
- {"version":3,"file":"StickyNoteNode.styles.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StickyNoteNode/StickyNoteNode.styles.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,8BAA8B,MAAM,CAAC;AAGlD,eAAO,MAAM,sBAAsB,MAAM,CAAC;AAE1C,eAAO,MAAM,sBAAsB,2CAUlC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;yGAI7B,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;iBACjB,MAAM;qBACF,MAAM;eACZ,OAAO;eACP,OAAO;yGAqBnB,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;eAAgC,OAAO;2HA0BrE,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;yGAmG9B,CAAC;AAEF,eAAO,MAAM,YAAY;;;;eAA2B,OAAO;aAAW,MAAM;yGAW3E,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;eAA2B,OAAO;yGA+BjE,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;eAA2B,OAAO;yGA+BpE,CAAC;AAEF,eAAO,MAAM,gBAAgB;;UAa5B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;WAA0B,MAAM;gBAAc,OAAO;qHAkB5E,CAAC"}
1
+ {"version":3,"file":"StickyNoteNode.styles.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StickyNoteNode/StickyNoteNode.styles.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,8BAA8B,MAAM,CAAC;AA4BlD,eAAO,MAAM,sBAAsB,MAAM,CAAC;AAE1C,eAAO,MAAM,sBAAsB,2CAUlC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;yGAI7B,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;iBACjB,MAAM;qBACF,MAAM;eACZ,OAAO;eACP,OAAO;yGAqBnB,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;eAAgC,OAAO;2HAoBrE,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;yGA6F9B,CAAC;AAEF,eAAO,MAAM,YAAY;;;;eAA2B,OAAO;aAAW,MAAM;yGAW3E,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;eAA2B,OAAO;yGA+BjE,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;eAA2B,OAAO;yGA+BpE,CAAC;AAEF,eAAO,MAAM,gBAAgB;;UAa5B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;WAA0B,MAAM;gBAAc,OAAO;qHAkB5E,CAAC"}
@@ -2,6 +2,30 @@ import { css } from "@emotion/react";
2
2
  import styled from "@emotion/styled";
3
3
  import { motion } from "motion/react";
4
4
  const STICKY_NOTE_BELOW_EDGE_Z_INDEX = -10;
5
+ const stickyNoteContentStyles = `
6
+ width: 100%;
7
+ height: 100%;
8
+
9
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
10
+ font-size: 14px;
11
+ line-height: 1.5;
12
+ color: var(--uix-canvas-foreground);
13
+
14
+ overflow-y: auto;
15
+
16
+ &::-webkit-scrollbar {
17
+ width: 6px;
18
+ }
19
+
20
+ &::-webkit-scrollbar-track {
21
+ background: transparent;
22
+ }
23
+
24
+ &::-webkit-scrollbar-thumb {
25
+ background: var(--uix-canvas-border);
26
+ border-radius: 4px;
27
+ }
28
+ `;
5
29
  const RESIZE_CONTROL_Z_INDEX = 100;
6
30
  const stickyNoteGlobalStyles = css`
7
31
  /* Override React Flow's elevateNodesOnSelect behavior for sticky notes */
@@ -38,21 +62,15 @@ const StickyNoteContainer = styled.div`
38
62
  }
39
63
  `;
40
64
  const StickyNoteTextArea = styled.textarea`
41
- width: 100%;
42
- height: 100%;
65
+ ${stickyNoteContentStyles}
66
+
43
67
  background: transparent;
44
68
  border: none;
45
69
  outline: none;
46
70
  resize: none;
47
- font-family:
48
- -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
49
- font-size: 14px;
50
- line-height: 1.5;
51
- color: var(--uix-canvas-foreground);
52
71
  cursor: ${(props)=>props.isEditing ? 'text' : 'move'};
53
72
  user-select: ${(props)=>props.isEditing ? 'text' : 'none'};
54
73
  pointer-events: ${(props)=>props.isEditing ? 'auto' : 'none'};
55
- overflow-y: auto;
56
74
 
57
75
  &::placeholder {
58
76
  color: var(--uix-canvas-foreground-de-emp);
@@ -65,14 +83,8 @@ const StickyNoteTextArea = styled.textarea`
65
83
  }
66
84
  `;
67
85
  const StickyNoteMarkdown = styled.div`
68
- width: 100%;
69
- height: 100%;
70
- overflow-y: auto;
71
- font-family:
72
- -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
73
- font-size: 14px;
74
- line-height: 1.5;
75
- color: var(--uix-canvas-foreground);
86
+ ${stickyNoteContentStyles}
87
+
76
88
  word-wrap: break-word;
77
89
 
78
90
  /* Markdown styles */
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.d = (exports1, definition)=>{
5
+ for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
6
+ enumerable: true,
7
+ get: definition[key]
8
+ });
9
+ };
10
+ })();
11
+ (()=>{
12
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
13
+ })();
14
+ (()=>{
15
+ __webpack_require__.r = (exports1)=>{
16
+ if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
17
+ value: 'Module'
18
+ });
19
+ Object.defineProperty(exports1, '__esModule', {
20
+ value: true
21
+ });
22
+ };
23
+ })();
24
+ var __webpack_exports__ = {};
25
+ __webpack_require__.r(__webpack_exports__);
26
+ __webpack_require__.d(__webpack_exports__, {
27
+ preserveNewlines: ()=>preserveNewlines
28
+ });
29
+ const preserveNewlines = (markdown)=>{
30
+ const codeBlocks = [];
31
+ let result = markdown.replace(/```[\s\S]*?```/g, (m)=>{
32
+ codeBlocks.push(m);
33
+ return `\n%%CODE_BLOCK_${codeBlocks.length - 1}%%\n`;
34
+ });
35
+ result = result.replace(/\n{3,}/g, (match)=>{
36
+ const extraBreaks = match.length - 2;
37
+ return `\n\n${' \n\n'.repeat(extraBreaks)}`;
38
+ });
39
+ result = result.replace(/%%CODE_BLOCK_(\d+)%%/g, (_, i)=>codeBlocks[Number(i)] ?? '');
40
+ return result;
41
+ };
42
+ exports.preserveNewlines = __webpack_exports__.preserveNewlines;
43
+ for(var __rspack_i in __webpack_exports__)if (-1 === [
44
+ "preserveNewlines"
45
+ ].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
46
+ Object.defineProperty(exports, '__esModule', {
47
+ value: true
48
+ });
@@ -0,0 +1,2 @@
1
+ export declare const preserveNewlines: (markdown: string) => string;
2
+ //# sourceMappingURL=StickyNoteNode.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StickyNoteNode.utils.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StickyNoteNode/StickyNoteNode.utils.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB,GAAI,UAAU,MAAM,KAAG,MAqBnD,CAAC"}
@@ -0,0 +1,14 @@
1
+ const preserveNewlines = (markdown)=>{
2
+ const codeBlocks = [];
3
+ let result = markdown.replace(/```[\s\S]*?```/g, (m)=>{
4
+ codeBlocks.push(m);
5
+ return `\n%%CODE_BLOCK_${codeBlocks.length - 1}%%\n`;
6
+ });
7
+ result = result.replace(/\n{3,}/g, (match)=>{
8
+ const extraBreaks = match.length - 2;
9
+ return `\n\n${' \n\n'.repeat(extraBreaks)}`;
10
+ });
11
+ result = result.replace(/%%CODE_BLOCK_(\d+)%%/g, (_, i)=>codeBlocks[Number(i)] ?? '');
12
+ return result;
13
+ };
14
+ export { preserveNewlines };
@@ -1,6 +1,6 @@
1
1
  @import "./variables.css";
2
2
 
3
- body.light, .light {
3
+ body.light, .apollo-design.light {
4
4
  --color-background: #ffffff;
5
5
  --color-background-secondary: #f4f5f7;
6
6
  --color-background-inverse: #182027;
@@ -125,7 +125,7 @@ body.light, .light {
125
125
  color-scheme: light;
126
126
  }
127
127
 
128
- body.light-hc, .light-hc {
128
+ body.light-hc, .apollo-design.light-hc {
129
129
  --color-background: #ffffff;
130
130
  --color-background-secondary: #f4f5f7;
131
131
  --color-background-inverse: #182027;
@@ -250,7 +250,7 @@ body.light-hc, .light-hc {
250
250
  color-scheme: light;
251
251
  }
252
252
 
253
- body.dark, .dark {
253
+ body.dark, .apollo-design.dark {
254
254
  --color-background: #182027;
255
255
  --color-background-secondary: #273139;
256
256
  --color-background-inverse: #f8f9fa;
@@ -375,7 +375,7 @@ body.dark, .dark {
375
375
  color-scheme: dark;
376
376
  }
377
377
 
378
- body.dark-hc, .dark-hc {
378
+ body.dark-hc, .apollo-design.dark-hc {
379
379
  --color-background: #182027;
380
380
  --color-background-secondary: #273139;
381
381
  --color-background-inverse: #f8f9fa;
@@ -1,6 +1,6 @@
1
1
  @import "./variables";
2
2
 
3
- body.light, .light {
3
+ body.light, .apollo-design.light {
4
4
  --color-background: #{$color-background-light};
5
5
  --color-background-secondary: #{$color-background-secondary-light};
6
6
  --color-background-inverse: #{$color-background-inverse-light};
@@ -125,7 +125,7 @@ body.light, .light {
125
125
  color-scheme: light;
126
126
  }
127
127
 
128
- body.light-hc, .light-hc {
128
+ body.light-hc, .apollo-design.light-hc {
129
129
  --color-background: #{$color-background-light-hc};
130
130
  --color-background-secondary: #{$color-background-secondary-light-hc};
131
131
  --color-background-inverse: #{$color-background-inverse-light-hc};
@@ -250,7 +250,7 @@ body.light-hc, .light-hc {
250
250
  color-scheme: light;
251
251
  }
252
252
 
253
- body.dark, .dark {
253
+ body.dark, .apollo-design.dark {
254
254
  --color-background: #{$color-background-dark};
255
255
  --color-background-secondary: #{$color-background-secondary-dark};
256
256
  --color-background-inverse: #{$color-background-inverse-dark};
@@ -375,7 +375,7 @@ body.dark, .dark {
375
375
  color-scheme: dark;
376
376
  }
377
377
 
378
- body.dark-hc, .dark-hc {
378
+ body.dark-hc, .apollo-design.dark-hc {
379
379
  --color-background: #{$color-background-dark-hc};
380
380
  --color-background-secondary: #{$color-background-secondary-dark-hc};
381
381
  --color-background-inverse: #{$color-background-inverse-dark-hc};
@@ -370,12 +370,11 @@ __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,
375
373
  OrchestratorGetCredentials: ()=>external_OrchestratorGetCredentials_cjs_namespaceObject.OrchestratorGetCredentials,
376
374
  Form: ()=>external_Form_cjs_namespaceObject.Form,
377
375
  ActivityPOP3: ()=>external_ActivityPOP3_cjs_namespaceObject.ActivityPOP3,
378
376
  AzureVirtualDesktopScope: ()=>external_AzureVirtualDesktopScope_cjs_namespaceObject.AzureVirtualDesktopScope,
377
+ ZoomOff: ()=>external_ZoomOff_cjs_namespaceObject.ZoomOff,
379
378
  ArrowDropRightIcon: ()=>external_ArrowDropRight_cjs_default(),
380
379
  AgentsEscalationsIcon: ()=>external_AgentsEscalations_cjs_default(),
381
380
  Control1RemoveDataRow: ()=>external_Control1RemoveDataRow_cjs_namespaceObject.Control1RemoveDataRow,
@@ -395,6 +394,7 @@ __webpack_require__.d(__webpack_exports__, {
395
394
  AmazonWebServicesWorkspacesIcon: ()=>external_AmazonWebServicesWorkspaces_cjs_default(),
396
395
  AttachIcon: ()=>external_Attach_cjs_default(),
397
396
  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
- IfSplitIcon: ()=>external_IfSplit_cjs_default(),
724
723
  ItAutomationAmazonWebServicesWorkspacesIcon: ()=>external_ItAutomationAmazonWebServicesWorkspaces_cjs_default(),
724
+ IfSplitIcon: ()=>external_IfSplit_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
- LayoutStretchVerticalIcon: ()=>external_LayoutStretchVertical_cjs_default(),
732
731
  NetiqEdirectory: ()=>external_NetiqEdirectory_cjs_namespaceObject.NetiqEdirectory,
732
+ LayoutStretchVerticalIcon: ()=>external_LayoutStretchVertical_cjs_default(),
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(),
863
862
  EntitiesDeleteRecordIcon: ()=>external_EntitiesDeleteRecord_cjs_default(),
864
863
  GoogleAds: ()=>external_GoogleAds_cjs_namespaceObject.GoogleAds,
865
864
  Box: ()=>external_Box_cjs_namespaceObject.Box,
866
865
  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
- Watch: ()=>external_Watch_cjs_namespaceObject.Watch,
987
+ WebAPIDeserializeJSONIcon: ()=>external_WebAPIDeserializeJSON_cjs_default(),
988
988
  DataTypesBooleanIcon: ()=>external_DataTypesBoolean_cjs_default(),
989
989
  DatabaseConnectIcon: ()=>external_DatabaseConnect_cjs_default(),
990
990
  TableRow: ()=>external_TableRow_cjs_namespaceObject.TableRow,
991
- WebAPIDeserializeJSONIcon: ()=>external_WebAPIDeserializeJSON_cjs_default(),
991
+ Watch: ()=>external_Watch_cjs_namespaceObject.Watch,
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
- WriteStorageText: ()=>external_WriteStorageText_cjs_namespaceObject.WriteStorageText,
999
+ Zuora: ()=>external_Zuora_cjs_namespaceObject.Zuora,
1000
1000
  AgentTraceConversationCitationIcon: ()=>external_AgentTraceConversationCitation_cjs_default(),
1001
1001
  OrchestratorHTTPRequestIcon: ()=>external_OrchestratorHTTPRequest_cjs_default(),
1002
1002
  InvokeWorkflowFileIcon: ()=>external_InvokeWorkflowFile_cjs_default(),
@@ -1005,6 +1005,7 @@ __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,
1008
1009
  VmwareGetVm: ()=>external_VmwareGetVm_cjs_namespaceObject.VmwareGetVm,
1009
1010
  BuildCollection: ()=>external_BuildCollection_cjs_namespaceObject.BuildCollection,
1010
1011
  ProcessesIcon: ()=>external_Processes_cjs_default(),
@@ -1017,7 +1018,6 @@ __webpack_require__.d(__webpack_exports__, {
1017
1018
  TypeObject: ()=>external_TypeObject_cjs_namespaceObject.TypeObject,
1018
1019
  FileExistsIcon: ()=>external_FileExists_cjs_default(),
1019
1020
  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
- CryptographyDecryptTextIcon: ()=>external_CryptographyDecryptText_cjs_default(),
1334
1333
  KeyReturnIcon: ()=>external_KeyReturn_cjs_default(),
1334
+ CryptographyDecryptTextIcon: ()=>external_CryptographyDecryptText_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(),
1436
1435
  MergeIcon: ()=>external_Merge_cjs_default(),
1437
1436
  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
- EntitiesEntityIcon: ()=>external_EntitiesEntity_cjs_default(),
1848
+ EntitiesQueryRecords: ()=>external_EntitiesQueryRecords_cjs_namespaceObject.EntitiesQueryRecords,
1849
1849
  Control1RemoveLogFields: ()=>external_Control1RemoveLogFields_cjs_namespaceObject.Control1RemoveLogFields,
1850
1850
  Control1GenerateDataTableIcon: ()=>external_Control1GenerateDataTable_cjs_default(),
1851
- EntitiesQueryRecords: ()=>external_EntitiesQueryRecords_cjs_namespaceObject.EntitiesQueryRecords,
1851
+ EntitiesEntityIcon: ()=>external_EntitiesEntity_cjs_default(),
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
- TypeCurrency: ()=>external_TypeCurrency_cjs_namespaceObject.TypeCurrency,
1870
+ TypeDoubleIcon: ()=>external_TypeDouble_cjs_default(),
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
- TypeDoubleIcon: ()=>external_TypeDouble_cjs_default(),
1874
+ TypeCurrency: ()=>external_TypeCurrency_cjs_namespaceObject.TypeCurrency,
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,
2031
2030
  VolumeUpIcon: ()=>external_VolumeUp_cjs_default(),
2032
2031
  BpmnBoundaryLinkThrow: ()=>external_BpmnBoundaryLinkThrow_cjs_namespaceObject.BpmnBoundaryLinkThrow,
2033
2032
  BpmnBoundaryTimer: ()=>external_BpmnBoundaryTimer_cjs_namespaceObject.BpmnBoundaryTimer,
2034
2033
  ComponentBusinessRule: ()=>external_ComponentBusinessRule_cjs_namespaceObject.ComponentBusinessRule,
2035
2034
  Output: ()=>external_Output_cjs_namespaceObject.Output,
2036
2035
  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(),
2647
2648
  ForEachRowInDataTableIcon: ()=>external_ForEachRowInDataTable_cjs_default(),
2648
2649
  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.57.0",
3
+ "version": "3.58.0-test-1",
4
4
  "description": "Apollo Design System - React component library with Material UI theming",
5
5
  "repository": {
6
6
  "type": "git",
@@ -201,7 +201,7 @@
201
201
  "zod": "^4.3.5",
202
202
  "zustand": "^5.0.9",
203
203
  "@uipath/apollo-core": "5.7.3",
204
- "@uipath/apollo-wind": "1.1.0"
204
+ "@uipath/apollo-wind": "1.2.0"
205
205
  },
206
206
  "devDependencies": {
207
207
  "@lingui/cli": "^5.6.1",