@uipath/apollo-react 6.15.0 → 6.16.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.
@@ -31,6 +31,7 @@ const jsx_runtime_namespaceObject = require("react/jsx-runtime");
31
31
  const apollo_wind_namespaceObject = require("@uipath/apollo-wind");
32
32
  const external_react_namespaceObject = require("react");
33
33
  const index_cjs_namespaceObject = require("../../../i18n/index.cjs");
34
+ const external_icons_index_cjs_namespaceObject = require("../../icons/index.cjs");
34
35
  const icon_registry_cjs_namespaceObject = require("../../utils/icon-registry.cjs");
35
36
  function getExecutionStatusColor(status) {
36
37
  switch(status){
@@ -39,6 +40,7 @@ function getExecutionStatusColor(status) {
39
40
  case 'InProgress':
40
41
  return 'var(--color-primary)';
41
42
  case 'Completed':
43
+ case 'EarlyExit':
42
44
  return 'var(--color-success-icon)';
43
45
  case 'ActionNeeded':
44
46
  case 'Paused':
@@ -141,6 +143,8 @@ function ExecutionStatusIcon({ status, size = 16 }) {
141
143
  size: size,
142
144
  color: color
143
145
  });
146
+ case 'EarlyExit':
147
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_icons_index_cjs_namespaceObject.EarlyExitStatusIcon, {});
144
148
  default:
145
149
  return null;
146
150
  }
@@ -1,6 +1,6 @@
1
1
  export declare function getExecutionStatusColor(status: string | undefined): string;
2
2
  export declare function ExecutionStatusIcon({ status, size, }: {
3
- status?: 'ActionNeeded' | 'InProgress' | 'Cancelled' | 'UserCancelled' | 'Completed' | 'Paused' | 'Failed' | 'NotExecuted' | 'Terminated' | 'Warning' | string;
3
+ status?: 'ActionNeeded' | 'InProgress' | 'Cancelled' | 'UserCancelled' | 'Completed' | 'Paused' | 'Failed' | 'NotExecuted' | 'Terminated' | 'Warning' | 'EarlyExit' | string;
4
4
  size?: number;
5
5
  }): import("react/jsx-runtime").JSX.Element | null;
6
6
  //# sourceMappingURL=ExecutionStatusIcon.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ExecutionStatusIcon.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/ExecutionStatusIcon/ExecutionStatusIcon.tsx"],"names":[],"mappings":"AAKA,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,CAuC1E;AAED,wBAAgB,mBAAmB,CAAC,EAClC,MAAM,EACN,IAAS,GACV,EAAE;IACD,MAAM,CAAC,EACH,cAAc,GACd,YAAY,GACZ,WAAW,GACX,eAAe,GACf,WAAW,GACX,QAAQ,GACR,QAAQ,GACR,aAAa,GACb,YAAY,GACZ,SAAS,GACT,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,kDA4CA"}
1
+ {"version":3,"file":"ExecutionStatusIcon.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/ExecutionStatusIcon/ExecutionStatusIcon.tsx"],"names":[],"mappings":"AAMA,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,CAwC1E;AAED,wBAAgB,mBAAmB,CAAC,EAClC,MAAM,EACN,IAAS,GACV,EAAE;IACD,MAAM,CAAC,EACH,cAAc,GACd,YAAY,GACZ,WAAW,GACX,eAAe,GACf,WAAW,GACX,QAAQ,GACR,QAAQ,GACR,aAAa,GACb,YAAY,GACZ,SAAS,GACT,WAAW,GACX,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,kDA8CA"}
@@ -2,6 +2,7 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Spinner } from "@uipath/apollo-wind";
3
3
  import { useMemo } from "react";
4
4
  import { useSafeLingui } from "../../../i18n/index.js";
5
+ import { EarlyExitStatusIcon } from "../../icons/index.js";
5
6
  import { CanvasIcon } from "../../utils/icon-registry.js";
6
7
  function getExecutionStatusColor(status) {
7
8
  switch(status){
@@ -10,6 +11,7 @@ function getExecutionStatusColor(status) {
10
11
  case 'InProgress':
11
12
  return 'var(--color-primary)';
12
13
  case 'Completed':
14
+ case 'EarlyExit':
13
15
  return 'var(--color-success-icon)';
14
16
  case 'ActionNeeded':
15
17
  case 'Paused':
@@ -112,6 +114,8 @@ function ExecutionStatusIcon({ status, size = 16 }) {
112
114
  size: size,
113
115
  color: color
114
116
  });
117
+ case 'EarlyExit':
118
+ return /*#__PURE__*/ jsx(EarlyExitStatusIcon, {});
115
119
  default:
116
120
  return null;
117
121
  }
@@ -11,7 +11,8 @@ declare enum ElementStatusValues {
11
11
  NotExecuted = "NotExecuted",
12
12
  Paused = "Paused",
13
13
  Terminated = "Terminated",
14
- Warning = "Warning"
14
+ Warning = "Warning",
15
+ EarlyExit = "EarlyExit"
15
16
  }
16
17
  export type StageStatus = `${ElementStatusValues}`;
17
18
  export type StageTaskStatus = `${ElementStatusValues}`;
@@ -1 +1 @@
1
- {"version":3,"file":"StageNode.types.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StageNode/StageNode.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"StageNode.types.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StageNode/StageNode.types.ts"],"names":[],"mappings":"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"}
@@ -73,6 +73,11 @@ function useExecutionStatusLabel() {
73
73
  id: 'stage-node.status.warning',
74
74
  message: 'Warning'
75
75
  });
76
+ case 'EarlyExit':
77
+ return _({
78
+ id: 'stage-node.status.early-exit',
79
+ message: 'Early exit'
80
+ });
76
81
  default:
77
82
  return '';
78
83
  }
@@ -1 +1 @@
1
- {"version":3,"file":"useExecutionStatusLabel.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StageNode/useExecutionStatusLabel.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAStE,wBAAgB,uBAAuB,aAI1B,WAAW,GAAG,eAAe,GAAG,SAAS,KAAG,MAAM,CAyB9D"}
1
+ {"version":3,"file":"useExecutionStatusLabel.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StageNode/useExecutionStatusLabel.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAStE,wBAAgB,uBAAuB,aAI1B,WAAW,GAAG,eAAe,GAAG,SAAS,KAAG,MAAM,CA2B9D"}
@@ -45,6 +45,11 @@ function useExecutionStatusLabel() {
45
45
  id: 'stage-node.status.warning',
46
46
  message: 'Warning'
47
47
  });
48
+ case 'EarlyExit':
49
+ return _({
50
+ id: 'stage-node.status.early-exit',
51
+ message: 'Early exit'
52
+ });
48
53
  default:
49
54
  return '';
50
55
  }
@@ -0,0 +1,66 @@
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
+ EarlyExitStatusIcon: ()=>EarlyExitStatusIcon
28
+ });
29
+ const jsx_runtime_namespaceObject = require("react/jsx-runtime");
30
+ const EarlyExitStatusIcon = ()=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
31
+ style: {
32
+ position: 'absolute',
33
+ top: '20px',
34
+ right: '20px'
35
+ },
36
+ "data-testid": "early-exit-status-icon",
37
+ children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("svg", {
38
+ width: "20",
39
+ height: "20",
40
+ viewBox: "0 0 20 20",
41
+ fill: "none",
42
+ xmlns: "http://www.w3.org/2000/svg",
43
+ children: [
44
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
45
+ d: "M9.45792 4.39058C9.61909 4.20282 9.88073 4.20281 10.0419 4.39058L14.1288 9.15914C14.2899 9.34713 14.2897 9.6517 14.1288 9.8398L10.0419 14.6084C9.88068 14.7965 9.61914 14.7964 9.45792 14.6084L5.371 9.8398C5.21006 9.6517 5.20992 9.34713 5.371 9.15914L9.45792 4.39058Z",
46
+ fill: "var(--color-foreground)"
47
+ }),
48
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("circle", {
49
+ cx: "9.75",
50
+ cy: "9.75",
51
+ r: "9",
52
+ stroke: "var(--color-success-icon)",
53
+ strokeWidth: "1.5",
54
+ strokeLinecap: "round",
55
+ strokeDasharray: "3 6"
56
+ })
57
+ ]
58
+ })
59
+ });
60
+ exports.EarlyExitStatusIcon = __webpack_exports__.EarlyExitStatusIcon;
61
+ for(var __rspack_i in __webpack_exports__)if (-1 === [
62
+ "EarlyExitStatusIcon"
63
+ ].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
64
+ Object.defineProperty(exports, '__esModule', {
65
+ value: true
66
+ });
@@ -0,0 +1,2 @@
1
+ export declare const EarlyExitStatusIcon: () => import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=EarlyExitStatusIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EarlyExitStatusIcon.d.ts","sourceRoot":"","sources":["../../../src/canvas/icons/EarlyExitStatusIcon.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,+CAiC/B,CAAC"}
@@ -0,0 +1,32 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const EarlyExitStatusIcon = ()=>/*#__PURE__*/ jsx("div", {
3
+ style: {
4
+ position: 'absolute',
5
+ top: '20px',
6
+ right: '20px'
7
+ },
8
+ "data-testid": "early-exit-status-icon",
9
+ children: /*#__PURE__*/ jsxs("svg", {
10
+ width: "20",
11
+ height: "20",
12
+ viewBox: "0 0 20 20",
13
+ fill: "none",
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ children: [
16
+ /*#__PURE__*/ jsx("path", {
17
+ d: "M9.45792 4.39058C9.61909 4.20282 9.88073 4.20281 10.0419 4.39058L14.1288 9.15914C14.2899 9.34713 14.2897 9.6517 14.1288 9.8398L10.0419 14.6084C9.88068 14.7965 9.61914 14.7964 9.45792 14.6084L5.371 9.8398C5.21006 9.6517 5.20992 9.34713 5.371 9.15914L9.45792 4.39058Z",
18
+ fill: "var(--color-foreground)"
19
+ }),
20
+ /*#__PURE__*/ jsx("circle", {
21
+ cx: "9.75",
22
+ cy: "9.75",
23
+ r: "9",
24
+ stroke: "var(--color-success-icon)",
25
+ strokeWidth: "1.5",
26
+ strokeLinecap: "round",
27
+ strokeDasharray: "3 6"
28
+ })
29
+ ]
30
+ })
31
+ });
32
+ export { EarlyExitStatusIcon };
@@ -66,13 +66,14 @@ __webpack_require__.d(__webpack_exports__, {
66
66
  AutonomousAgentIcon: ()=>external_AutonomousAgentIcon_cjs_namespaceObject.AutonomousAgentIcon,
67
67
  EntryConditionIcon: ()=>external_EntryConditionIcon_cjs_namespaceObject.EntryConditionIcon,
68
68
  CaseManagementProject: ()=>external_CaseManagementProject_cjs_namespaceObject.CaseManagementProject,
69
- UiPathIcon: ()=>external_UiPathIcon_cjs_namespaceObject.UiPathIcon,
69
+ EarlyExitStatusIcon: ()=>external_EarlyExitStatusIcon_cjs_namespaceObject.EarlyExitStatusIcon,
70
70
  ExitConditionIcon: ()=>external_ExitConditionIcon_cjs_namespaceObject.ExitConditionIcon,
71
+ UiPathIcon: ()=>external_UiPathIcon_cjs_namespaceObject.UiPathIcon,
71
72
  AgentIcon: ()=>external_AgentIcon_cjs_namespaceObject.AgentIcon,
72
73
  WebAppProject: ()=>external_WebAppProject_cjs_namespaceObject.WebAppProject,
73
74
  ZoomOutIcon: ()=>external_ZoomOutIcon_cjs_namespaceObject.ZoomOutIcon,
74
- FlowProject: ()=>external_FlowProject_cjs_namespaceObject.FlowProject,
75
75
  AgentProject: ()=>external_AgentProject_cjs_namespaceObject.AgentProject,
76
+ FlowProject: ()=>external_FlowProject_cjs_namespaceObject.FlowProject,
76
77
  CasePlanIcon: ()=>external_CasePlanIcon_cjs_namespaceObject.CasePlanIcon,
77
78
  CodedAgentIcon: ()=>external_CodedAgentIcon_cjs_namespaceObject.CodedAgentIcon
78
79
  });
@@ -100,6 +101,7 @@ const external_DataTransformGroupIcon_cjs_namespaceObject = require("./DataTrans
100
101
  const external_DataTransformIcon_cjs_namespaceObject = require("./DataTransformIcon.cjs");
101
102
  const external_DataTransformMapIcon_cjs_namespaceObject = require("./DataTransformMapIcon.cjs");
102
103
  const external_DecisionIcon_cjs_namespaceObject = require("./DecisionIcon.cjs");
104
+ const external_EarlyExitStatusIcon_cjs_namespaceObject = require("./EarlyExitStatusIcon.cjs");
103
105
  const external_EntryConditionIcon_cjs_namespaceObject = require("./EntryConditionIcon.cjs");
104
106
  const external_ExitConditionIcon_cjs_namespaceObject = require("./ExitConditionIcon.cjs");
105
107
  const external_FlaskRunIcon_cjs_namespaceObject = require("./FlaskRunIcon.cjs");
@@ -151,6 +153,7 @@ exports.DataTransformGroupIcon = __webpack_exports__.DataTransformGroupIcon;
151
153
  exports.DataTransformIcon = __webpack_exports__.DataTransformIcon;
152
154
  exports.DataTransformMapIcon = __webpack_exports__.DataTransformMapIcon;
153
155
  exports.DecisionIcon = __webpack_exports__.DecisionIcon;
156
+ exports.EarlyExitStatusIcon = __webpack_exports__.EarlyExitStatusIcon;
154
157
  exports.EntryConditionIcon = __webpack_exports__.EntryConditionIcon;
155
158
  exports.ExitConditionIcon = __webpack_exports__.ExitConditionIcon;
156
159
  exports.FlaskRunIcon = __webpack_exports__.FlaskRunIcon;
@@ -203,6 +206,7 @@ for(var __rspack_i in __webpack_exports__)if (-1 === [
203
206
  "DataTransformIcon",
204
207
  "DataTransformMapIcon",
205
208
  "DecisionIcon",
209
+ "EarlyExitStatusIcon",
206
210
  "EntryConditionIcon",
207
211
  "ExitConditionIcon",
208
212
  "FlaskRunIcon",
@@ -22,6 +22,7 @@ export { DataTransformGroupIcon } from './DataTransformGroupIcon';
22
22
  export { DataTransformIcon } from './DataTransformIcon';
23
23
  export { DataTransformMapIcon } from './DataTransformMapIcon';
24
24
  export { DecisionIcon } from './DecisionIcon';
25
+ export { EarlyExitStatusIcon } from './EarlyExitStatusIcon';
25
26
  export { EntryConditionIcon } from './EntryConditionIcon';
26
27
  export { ExitConditionIcon } from './ExitConditionIcon';
27
28
  export { FlaskRunIcon } from './FlaskRunIcon';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/canvas/icons/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/canvas/icons/index.ts"],"names":[],"mappings":"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"}
@@ -22,6 +22,7 @@ import { DataTransformGroupIcon } from "./DataTransformGroupIcon.js";
22
22
  import { DataTransformIcon } from "./DataTransformIcon.js";
23
23
  import { DataTransformMapIcon } from "./DataTransformMapIcon.js";
24
24
  import { DecisionIcon } from "./DecisionIcon.js";
25
+ import { EarlyExitStatusIcon } from "./EarlyExitStatusIcon.js";
25
26
  import { EntryConditionIcon } from "./EntryConditionIcon.js";
26
27
  import { ExitConditionIcon } from "./ExitConditionIcon.js";
27
28
  import { FlaskRunIcon } from "./FlaskRunIcon.js";
@@ -49,4 +50,4 @@ import { WebAppProject } from "./WebAppProject.js";
49
50
  import { ZoomInIcon } from "./ZoomInIcon.js";
50
51
  import { ZoomOutIcon } from "./ZoomOutIcon.js";
51
52
  import { ZoomToFitIcon } from "./ZoomToFitIcon.js";
52
- export { A2aIcon, AgentDiagramIcon, AgentIcon, AgentProject, AnthropicIcon, ApiProject, AutonomousAgentIcon, BusinessProcessProject, CaseManagementProject, CasePlanIcon, CodedAgentIcon, ConnectorBuilderProject, ConnectorHandleIcon, ContextIcon, ControlFlowIcon, ConversationalAgentIcon, DataAndTools, DataTransformExtractIcon, DataTransformFilterIcon, DataTransformFlattenIcon, DataTransformGroupIcon, DataTransformIcon, DataTransformMapIcon, DecisionIcon, EntryConditionIcon, ExitConditionIcon, FlaskRunIcon, FlowProject, FunctionProject, GoogleIcon, HealthScoreIcon, HumanIcon, LayersArrowUpRightIcon, LoopIcon, McpIcon, MemoryIcon, OpenAIIcon, OrganizeIcon, PatternsIcon, ReturnToOriginIcon, RpaProject, ScriptTaskIcon, SwitchIcon, TimelinePauseIcon, TimelinePlayIcon, TimelineProgressIcon, UiPathIcon, WebAppProject, ZoomInIcon, ZoomOutIcon, ZoomToFitIcon };
53
+ export { A2aIcon, AgentDiagramIcon, AgentIcon, AgentProject, AnthropicIcon, ApiProject, AutonomousAgentIcon, BusinessProcessProject, CaseManagementProject, CasePlanIcon, CodedAgentIcon, ConnectorBuilderProject, ConnectorHandleIcon, ContextIcon, ControlFlowIcon, ConversationalAgentIcon, DataAndTools, DataTransformExtractIcon, DataTransformFilterIcon, DataTransformFlattenIcon, DataTransformGroupIcon, DataTransformIcon, DataTransformMapIcon, DecisionIcon, EarlyExitStatusIcon, EntryConditionIcon, ExitConditionIcon, FlaskRunIcon, FlowProject, FunctionProject, GoogleIcon, HealthScoreIcon, HumanIcon, LayersArrowUpRightIcon, LoopIcon, McpIcon, MemoryIcon, OpenAIIcon, OrganizeIcon, PatternsIcon, ReturnToOriginIcon, RpaProject, ScriptTaskIcon, SwitchIcon, TimelinePauseIcon, TimelinePlayIcon, TimelineProgressIcon, UiPathIcon, WebAppProject, ZoomInIcon, ZoomOutIcon, ZoomToFitIcon };
@@ -26,7 +26,7 @@ __webpack_require__.r(__webpack_exports__);
26
26
  __webpack_require__.d(__webpack_exports__, {
27
27
  messages: ()=>messages
28
28
  });
29
- const messages = JSON.parse('{"add-node-panel.search-nodes":["Search nodes"],"canvas.json_value_panel.apply":["Apply"],"canvas.json_value_panel.array_item":["item"],"canvas.json_value_panel.cancel":["Cancel"],"canvas.json_value_panel.clear_search":["Clear search"],"canvas.json_value_panel.collapse_all":["Collapse all"],"canvas.json_value_panel.collapse_key":["Collapse ",["key"]],"canvas.json_value_panel.copy_path_for":["Copy path for ",["path"]],"canvas.json_value_panel.copy_path_hint":["Click to copy this path"],"canvas.json_value_panel.copy_value":["Copy value"],"canvas.json_value_panel.copy_value_of":["Copy value of ",["key"]],"canvas.json_value_panel.edit_as_json":["Edit as JSON"],"canvas.json_value_panel.edit_hint":["Click to edit"],"canvas.json_value_panel.edit_json_of":["Edit JSON of ",["key"]],"canvas.json_value_panel.edit_key_as_json":["Edit ",["key"]," as JSON"],"canvas.json_value_panel.edit_value_of":["Edit value of ",["key"]],"canvas.json_value_panel.empty_default":["No fields to display."],"canvas.json_value_panel.empty_search":["No fields match your search."],"canvas.json_value_panel.enter_number":["Enter a number"],"canvas.json_value_panel.enter_value":["Enter a value"],"canvas.json_value_panel.expand_all":["Expand all"],"canvas.json_value_panel.expand_key":["Expand ",["key"]],"canvas.json_value_panel.filter":["Filter"],"canvas.json_value_panel.filter_active":["Filter: ",["label"]],"canvas.json_value_panel.filter_all":["All"],"canvas.json_value_panel.invalid_json":["Invalid JSON"],"canvas.json_value_panel.item_count":[["count","plural",{"one":["#"," item"],"other":["#"," items"]}]],"canvas.json_value_panel.json_tab":["JSON"],"canvas.json_value_panel.key_count":[["count","plural",{"one":["#"," key"],"other":["#"," keys"]}]],"canvas.json_value_panel.path_copied":["Path copied"],"canvas.json_value_panel.required_marker":["required"],"canvas.json_value_panel.schema_tab":["Schema"],"canvas.json_value_panel.search_fields":["Search fields and values..."],"canvas.json_value_panel.search_fields_action":["Search fields and values"],"canvas.json_value_panel.toggle_hint":["Click to toggle"],"canvas.json_value_panel.unset_edit_hint":["Click to set a value"],"canvas.json_value_panel.unset_value":["unset"],"canvas.json_value_panel.unwrap_value":["Unwrap value"],"canvas.json_value_panel.unwrap_value_of":["Unwrap value of ",["key"]],"canvas.json_value_panel.wrap_value":["Wrap value"],"canvas.json_value_panel.wrap_value_of":["Wrap value of ",["key"]],"canvas.node_mode_select.disabled_description":["Don\'t execute this node"],"canvas.node_mode_select.disabled_label":["Skip node"],"canvas.node_mode_select.live_description":["Use the real response from this node"],"canvas.node_mode_select.live_label":["Live"],"canvas.node_mode_select.node_mode":["Node mode"],"canvas.node_mode_select.simulated_description":["Generate a response dynamically using an LLM"],"canvas.node_mode_select.simulated_label":["Simulated"],"canvas.node_mode_select.static_description":["Always return a value you define"],"canvas.node_mode_select.static_label":["Static mock"],"canvas.property_trigger.always_persist":["Always persist"],"canvas.property_trigger.apply_preset_with_label":["Apply ",["label"]],"canvas.property_trigger.auto_hide":["Auto hide"],"canvas.property_trigger.default_layouts":["Default layouts"],"canvas.property_trigger.delete_preset_with_label":["Delete ",["label"]],"canvas.property_trigger.layout_bottom":["Default — Bottom"],"canvas.property_trigger.layout_right":["Default — Right"],"canvas.property_trigger.layout_split":["Default — Split"],"canvas.property_trigger.no_saved_presets":["No saved presets yet."],"canvas.property_trigger.panel_behavior":["Panel behavior"],"canvas.property_trigger.panel_options":["Panel options"],"canvas.property_trigger.properties":["Properties"],"canvas.property_trigger.rename_preset_with_label":["Rename ",["label"]],"canvas.property_trigger.save_as_preset":["Save as preset"],"canvas.property_trigger.saved_presets":["Saved presets"],"loop-node.add-node":["Add node to loop"],"loop-node.execution-count.click-to-jump":["Click to jump to a specific iteration"],"loop-node.execution-count.click-to-return":["Click to return to individual iteration view"],"loop-node.execution-count.jump-to-failed":["Jump to first failed iteration"],"loop-node.execution-count.jump-to-iteration":["Jump to iteration ",["iterationNumber"]," (failed)"],"loop-node.execution-count.next-iteration":["Next iteration"],"loop-node.execution-count.previous-iteration":["Previous iteration"],"loop-node.execution-count.return-to-individual":["Return to individual iteration view"],"loop-node.execution-count.show-aggregate":["Show aggregate across all iterations"],"loop-node.mode.parallel":["Parallel"],"loop-node.mode.sequential":["Sequential"],"loop-node.title":["Loop"],"stage-node.add-first-task":["Add first task"],"stage-node.add-task":["Add task"],"stage-node.add-task-to-parallel-group-above":["Add task to parallel group above"],"stage-node.add-task-to-parallel-group-below":["Add task to parallel group below"],"stage-node.adhoc-tasks":["Manually triggered tasks"],"stage-node.create-parallel-group-with-task-above":["Create parallel group with task above"],"stage-node.create-parallel-group-with-task-below":["Create parallel group with task below"],"stage-node.delete-task":["Delete task"],"stage-node.event-driven-tasks":["Event-triggered tasks"],"stage-node.move-down":["Move down"],"stage-node.move-up":["Move up"],"stage-node.no-tasks":["No tasks"],"stage-node.parallel":["Parallel"],"stage-node.remove-from-parallel-group":["Remove from parallel group"],"stage-node.remove-group-from-stage":["Remove group from stage"],"stage-node.replace-task":["Replace task"],"stage-node.status.cancelled":["Cancelled"],"stage-node.status.completed":["Completed"],"stage-node.status.failed":["Failed"],"stage-node.status.in-progress":["In progress"],"stage-node.status.not-executed":["Not started"],"stage-node.status.paused":["Paused"],"stage-node.status.terminated":["Terminated"],"stage-node.status.warning":["Warning"],"stage-node.task-badge.ran-n-times":[["count","plural",{"one":["Ran ","#"," time"],"other":["Ran ","#"," times"]}]],"stage-node.task-badge.running-again":["Running again"],"stage-node.ungroup-parallel-tasks":["Ungroup parallel tasks"],"stage-node.untitled-stage":["Untitled stage"],"sticky-note.formatting.bold":["Bold (",["boldShortcut"],")"],"sticky-note.formatting.bullet-list":["Bullet list"],"sticky-note.formatting.italic":["Italic (",["italicShortcut"],")"],"sticky-note.formatting.numbered-list":["Numbered list"],"sticky-note.formatting.strikethrough":["Strikethrough (",["strikethroughShortcut"],")"],"sticky-note.formatting.toolbar":["Text formatting"],"sticky-note.media.dialog.add-title":["Embed image or video"],"sticky-note.media.dialog.alt-help":["Describe the image for people who use screen readers."],"sticky-note.media.dialog.alt-label":["Alternative text"],"sticky-note.media.dialog.cancel":["Cancel"],"sticky-note.media.dialog.description":["Add a public link. Video supports YouTube and direct video files."],"sticky-note.media.dialog.edit-title":["Edit media"],"sticky-note.media.dialog.embed":["Embed media"],"sticky-note.media.dialog.full-width-help":["The image or video spans the available width of the sticky note."],"sticky-note.media.dialog.full-width-label":["Make full width"],"sticky-note.media.dialog.image-option":["Image"],"sticky-note.media.dialog.image-preview":["Image preview"],"sticky-note.media.dialog.image-url-help":["Use a public HTTPS image link."],"sticky-note.media.dialog.image-url-label":["Image URL"],"sticky-note.media.dialog.image-url-placeholder":["https://example.com/image.png"],"sticky-note.media.dialog.invalid-url":["Enter a valid public HTTPS URL"],"sticky-note.media.dialog.invalid-youtube":["Add a valid YouTube video URL"],"sticky-note.media.dialog.preview-unavailable":["We could not load a preview for this URL."],"sticky-note.media.dialog.save":["Save changes"],"sticky-note.media.dialog.type-label":["Media type"],"sticky-note.media.dialog.unsupported-video":["Add a YouTube URL or a direct public video file URL such as MP4"],"sticky-note.media.dialog.video-option":["Video"],"sticky-note.media.dialog.video-preview":["Video preview"],"sticky-note.media.dialog.video-url-help":["Use a YouTube link or a direct public HTTPS video file link."],"sticky-note.media.dialog.video-url-label":["Video URL"],"sticky-note.media.dialog.video-url-placeholder":["https://youtube.com/watch?v=… or https://example.com/video.mp4"],"sticky-note.media.edit":["Edit media"],"sticky-note.media.embed-action":["Embed image or video"],"sticky-note.media.image-unavailable":["Image unavailable"],"sticky-note.media.image-unavailable-label":["Image unavailable"],"sticky-note.media.play-video":["Play video"],"sticky-note.media.unavailable":["Media unavailable"],"sticky-note.media.video-label":["Embedded video"],"sticky-note.media.video-unavailable":["Video playback is unavailable."],"sticky-note.media.youtube-title":["YouTube video"],"sticky-note.toolbar.color":["Color"],"sticky-note.toolbar.delete":["Delete"],"sticky-note.toolbar.edit":["Edit"],"toolbox.search":["Search"]}');
29
+ const messages = JSON.parse('{"add-node-panel.search-nodes":["Search nodes"],"canvas.json_value_panel.apply":["Apply"],"canvas.json_value_panel.array_item":["item"],"canvas.json_value_panel.cancel":["Cancel"],"canvas.json_value_panel.clear_search":["Clear search"],"canvas.json_value_panel.collapse_all":["Collapse all"],"canvas.json_value_panel.collapse_key":["Collapse ",["key"]],"canvas.json_value_panel.copy_path_for":["Copy path for ",["path"]],"canvas.json_value_panel.copy_path_hint":["Click to copy this path"],"canvas.json_value_panel.copy_value":["Copy value"],"canvas.json_value_panel.copy_value_of":["Copy value of ",["key"]],"canvas.json_value_panel.edit_as_json":["Edit as JSON"],"canvas.json_value_panel.edit_hint":["Click to edit"],"canvas.json_value_panel.edit_json_of":["Edit JSON of ",["key"]],"canvas.json_value_panel.edit_key_as_json":["Edit ",["key"]," as JSON"],"canvas.json_value_panel.edit_value_of":["Edit value of ",["key"]],"canvas.json_value_panel.empty_default":["No fields to display."],"canvas.json_value_panel.empty_search":["No fields match your search."],"canvas.json_value_panel.enter_number":["Enter a number"],"canvas.json_value_panel.enter_value":["Enter a value"],"canvas.json_value_panel.expand_all":["Expand all"],"canvas.json_value_panel.expand_key":["Expand ",["key"]],"canvas.json_value_panel.filter":["Filter"],"canvas.json_value_panel.filter_active":["Filter: ",["label"]],"canvas.json_value_panel.filter_all":["All"],"canvas.json_value_panel.invalid_json":["Invalid JSON"],"canvas.json_value_panel.item_count":[["count","plural",{"one":["#"," item"],"other":["#"," items"]}]],"canvas.json_value_panel.json_tab":["JSON"],"canvas.json_value_panel.key_count":[["count","plural",{"one":["#"," key"],"other":["#"," keys"]}]],"canvas.json_value_panel.path_copied":["Path copied"],"canvas.json_value_panel.required_marker":["required"],"canvas.json_value_panel.schema_tab":["Schema"],"canvas.json_value_panel.search_fields":["Search fields and values..."],"canvas.json_value_panel.search_fields_action":["Search fields and values"],"canvas.json_value_panel.toggle_hint":["Click to toggle"],"canvas.json_value_panel.unset_edit_hint":["Click to set a value"],"canvas.json_value_panel.unset_value":["unset"],"canvas.json_value_panel.unwrap_value":["Unwrap value"],"canvas.json_value_panel.unwrap_value_of":["Unwrap value of ",["key"]],"canvas.json_value_panel.wrap_value":["Wrap value"],"canvas.json_value_panel.wrap_value_of":["Wrap value of ",["key"]],"canvas.node_mode_select.disabled_description":["Don\'t execute this node"],"canvas.node_mode_select.disabled_label":["Skip node"],"canvas.node_mode_select.live_description":["Use the real response from this node"],"canvas.node_mode_select.live_label":["Live"],"canvas.node_mode_select.node_mode":["Node mode"],"canvas.node_mode_select.simulated_description":["Generate a response dynamically using an LLM"],"canvas.node_mode_select.simulated_label":["Simulated"],"canvas.node_mode_select.static_description":["Always return a value you define"],"canvas.node_mode_select.static_label":["Static mock"],"canvas.property_trigger.always_persist":["Always persist"],"canvas.property_trigger.apply_preset_with_label":["Apply ",["label"]],"canvas.property_trigger.auto_hide":["Auto hide"],"canvas.property_trigger.default_layouts":["Default layouts"],"canvas.property_trigger.delete_preset_with_label":["Delete ",["label"]],"canvas.property_trigger.layout_bottom":["Default — Bottom"],"canvas.property_trigger.layout_right":["Default — Right"],"canvas.property_trigger.layout_split":["Default — Split"],"canvas.property_trigger.no_saved_presets":["No saved presets yet."],"canvas.property_trigger.panel_behavior":["Panel behavior"],"canvas.property_trigger.panel_options":["Panel options"],"canvas.property_trigger.properties":["Properties"],"canvas.property_trigger.rename_preset_with_label":["Rename ",["label"]],"canvas.property_trigger.save_as_preset":["Save as preset"],"canvas.property_trigger.saved_presets":["Saved presets"],"loop-node.add-node":["Add node to loop"],"loop-node.execution-count.click-to-jump":["Click to jump to a specific iteration"],"loop-node.execution-count.click-to-return":["Click to return to individual iteration view"],"loop-node.execution-count.jump-to-failed":["Jump to first failed iteration"],"loop-node.execution-count.jump-to-iteration":["Jump to iteration ",["iterationNumber"]," (failed)"],"loop-node.execution-count.next-iteration":["Next iteration"],"loop-node.execution-count.previous-iteration":["Previous iteration"],"loop-node.execution-count.return-to-individual":["Return to individual iteration view"],"loop-node.execution-count.show-aggregate":["Show aggregate across all iterations"],"loop-node.mode.parallel":["Parallel"],"loop-node.mode.sequential":["Sequential"],"loop-node.title":["Loop"],"stage-node.add-first-task":["Add first task"],"stage-node.add-task":["Add task"],"stage-node.add-task-to-parallel-group-above":["Add task to parallel group above"],"stage-node.add-task-to-parallel-group-below":["Add task to parallel group below"],"stage-node.adhoc-tasks":["Manually triggered tasks"],"stage-node.create-parallel-group-with-task-above":["Create parallel group with task above"],"stage-node.create-parallel-group-with-task-below":["Create parallel group with task below"],"stage-node.delete-task":["Delete task"],"stage-node.event-driven-tasks":["Event-triggered tasks"],"stage-node.move-down":["Move down"],"stage-node.move-up":["Move up"],"stage-node.no-tasks":["No tasks"],"stage-node.parallel":["Parallel"],"stage-node.remove-from-parallel-group":["Remove from parallel group"],"stage-node.remove-group-from-stage":["Remove group from stage"],"stage-node.replace-task":["Replace task"],"stage-node.status.cancelled":["Cancelled"],"stage-node.status.completed":["Completed"],"stage-node.status.early-exit":["Early exit"],"stage-node.status.failed":["Failed"],"stage-node.status.in-progress":["In progress"],"stage-node.status.not-executed":["Not started"],"stage-node.status.paused":["Paused"],"stage-node.status.terminated":["Terminated"],"stage-node.status.warning":["Warning"],"stage-node.task-badge.ran-n-times":[["count","plural",{"one":["Ran ","#"," time"],"other":["Ran ","#"," times"]}]],"stage-node.task-badge.running-again":["Running again"],"stage-node.ungroup-parallel-tasks":["Ungroup parallel tasks"],"stage-node.untitled-stage":["Untitled stage"],"sticky-note.formatting.bold":["Bold (",["boldShortcut"],")"],"sticky-note.formatting.bullet-list":["Bullet list"],"sticky-note.formatting.italic":["Italic (",["italicShortcut"],")"],"sticky-note.formatting.numbered-list":["Numbered list"],"sticky-note.formatting.strikethrough":["Strikethrough (",["strikethroughShortcut"],")"],"sticky-note.formatting.toolbar":["Text formatting"],"sticky-note.media.dialog.add-title":["Embed image or video"],"sticky-note.media.dialog.alt-help":["Describe the image for people who use screen readers."],"sticky-note.media.dialog.alt-label":["Alternative text"],"sticky-note.media.dialog.cancel":["Cancel"],"sticky-note.media.dialog.description":["Add a public link. Video supports YouTube and direct video files."],"sticky-note.media.dialog.edit-title":["Edit media"],"sticky-note.media.dialog.embed":["Embed media"],"sticky-note.media.dialog.full-width-help":["The image or video spans the available width of the sticky note."],"sticky-note.media.dialog.full-width-label":["Make full width"],"sticky-note.media.dialog.image-option":["Image"],"sticky-note.media.dialog.image-preview":["Image preview"],"sticky-note.media.dialog.image-url-help":["Use a public HTTPS image link."],"sticky-note.media.dialog.image-url-label":["Image URL"],"sticky-note.media.dialog.image-url-placeholder":["https://example.com/image.png"],"sticky-note.media.dialog.invalid-url":["Enter a valid public HTTPS URL"],"sticky-note.media.dialog.invalid-youtube":["Add a valid YouTube video URL"],"sticky-note.media.dialog.preview-unavailable":["We could not load a preview for this URL."],"sticky-note.media.dialog.save":["Save changes"],"sticky-note.media.dialog.type-label":["Media type"],"sticky-note.media.dialog.unsupported-video":["Add a YouTube URL or a direct public video file URL such as MP4"],"sticky-note.media.dialog.video-option":["Video"],"sticky-note.media.dialog.video-preview":["Video preview"],"sticky-note.media.dialog.video-url-help":["Use a YouTube link or a direct public HTTPS video file link."],"sticky-note.media.dialog.video-url-label":["Video URL"],"sticky-note.media.dialog.video-url-placeholder":["https://youtube.com/watch?v=… or https://example.com/video.mp4"],"sticky-note.media.edit":["Edit media"],"sticky-note.media.embed-action":["Embed image or video"],"sticky-note.media.image-unavailable":["Image unavailable"],"sticky-note.media.image-unavailable-label":["Image unavailable"],"sticky-note.media.play-video":["Play video"],"sticky-note.media.unavailable":["Media unavailable"],"sticky-note.media.video-label":["Embedded video"],"sticky-note.media.video-unavailable":["Video playback is unavailable."],"sticky-note.media.youtube-title":["YouTube video"],"sticky-note.toolbar.color":["Color"],"sticky-note.toolbar.delete":["Delete"],"sticky-note.toolbar.edit":["Edit"],"toolbox.search":["Search"]}');
30
30
  exports.messages = __webpack_exports__.messages;
31
31
  for(var __rspack_i in __webpack_exports__)if (-1 === [
32
32
  "messages"
@@ -1 +1 @@
1
- {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/canvas/locales/en.ts"],"names":[],"mappings":"AAAkB,OAAO,KAAI,EAAC,QAAQ,EAAC,MAAI,cAAc,CAAC;AAAA,eAAO,MAAM,QAAQ,EAA2pT,QAAQ,CAAC"}
1
+ {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/canvas/locales/en.ts"],"names":[],"mappings":"AAAkB,OAAO,KAAI,EAAC,QAAQ,EAAC,MAAI,cAAc,CAAC;AAAA,eAAO,MAAM,QAAQ,EAA6sT,QAAQ,CAAC"}
@@ -1,2 +1,2 @@
1
- const messages = JSON.parse('{"add-node-panel.search-nodes":["Search nodes"],"canvas.json_value_panel.apply":["Apply"],"canvas.json_value_panel.array_item":["item"],"canvas.json_value_panel.cancel":["Cancel"],"canvas.json_value_panel.clear_search":["Clear search"],"canvas.json_value_panel.collapse_all":["Collapse all"],"canvas.json_value_panel.collapse_key":["Collapse ",["key"]],"canvas.json_value_panel.copy_path_for":["Copy path for ",["path"]],"canvas.json_value_panel.copy_path_hint":["Click to copy this path"],"canvas.json_value_panel.copy_value":["Copy value"],"canvas.json_value_panel.copy_value_of":["Copy value of ",["key"]],"canvas.json_value_panel.edit_as_json":["Edit as JSON"],"canvas.json_value_panel.edit_hint":["Click to edit"],"canvas.json_value_panel.edit_json_of":["Edit JSON of ",["key"]],"canvas.json_value_panel.edit_key_as_json":["Edit ",["key"]," as JSON"],"canvas.json_value_panel.edit_value_of":["Edit value of ",["key"]],"canvas.json_value_panel.empty_default":["No fields to display."],"canvas.json_value_panel.empty_search":["No fields match your search."],"canvas.json_value_panel.enter_number":["Enter a number"],"canvas.json_value_panel.enter_value":["Enter a value"],"canvas.json_value_panel.expand_all":["Expand all"],"canvas.json_value_panel.expand_key":["Expand ",["key"]],"canvas.json_value_panel.filter":["Filter"],"canvas.json_value_panel.filter_active":["Filter: ",["label"]],"canvas.json_value_panel.filter_all":["All"],"canvas.json_value_panel.invalid_json":["Invalid JSON"],"canvas.json_value_panel.item_count":[["count","plural",{"one":["#"," item"],"other":["#"," items"]}]],"canvas.json_value_panel.json_tab":["JSON"],"canvas.json_value_panel.key_count":[["count","plural",{"one":["#"," key"],"other":["#"," keys"]}]],"canvas.json_value_panel.path_copied":["Path copied"],"canvas.json_value_panel.required_marker":["required"],"canvas.json_value_panel.schema_tab":["Schema"],"canvas.json_value_panel.search_fields":["Search fields and values..."],"canvas.json_value_panel.search_fields_action":["Search fields and values"],"canvas.json_value_panel.toggle_hint":["Click to toggle"],"canvas.json_value_panel.unset_edit_hint":["Click to set a value"],"canvas.json_value_panel.unset_value":["unset"],"canvas.json_value_panel.unwrap_value":["Unwrap value"],"canvas.json_value_panel.unwrap_value_of":["Unwrap value of ",["key"]],"canvas.json_value_panel.wrap_value":["Wrap value"],"canvas.json_value_panel.wrap_value_of":["Wrap value of ",["key"]],"canvas.node_mode_select.disabled_description":["Don\'t execute this node"],"canvas.node_mode_select.disabled_label":["Skip node"],"canvas.node_mode_select.live_description":["Use the real response from this node"],"canvas.node_mode_select.live_label":["Live"],"canvas.node_mode_select.node_mode":["Node mode"],"canvas.node_mode_select.simulated_description":["Generate a response dynamically using an LLM"],"canvas.node_mode_select.simulated_label":["Simulated"],"canvas.node_mode_select.static_description":["Always return a value you define"],"canvas.node_mode_select.static_label":["Static mock"],"canvas.property_trigger.always_persist":["Always persist"],"canvas.property_trigger.apply_preset_with_label":["Apply ",["label"]],"canvas.property_trigger.auto_hide":["Auto hide"],"canvas.property_trigger.default_layouts":["Default layouts"],"canvas.property_trigger.delete_preset_with_label":["Delete ",["label"]],"canvas.property_trigger.layout_bottom":["Default — Bottom"],"canvas.property_trigger.layout_right":["Default — Right"],"canvas.property_trigger.layout_split":["Default — Split"],"canvas.property_trigger.no_saved_presets":["No saved presets yet."],"canvas.property_trigger.panel_behavior":["Panel behavior"],"canvas.property_trigger.panel_options":["Panel options"],"canvas.property_trigger.properties":["Properties"],"canvas.property_trigger.rename_preset_with_label":["Rename ",["label"]],"canvas.property_trigger.save_as_preset":["Save as preset"],"canvas.property_trigger.saved_presets":["Saved presets"],"loop-node.add-node":["Add node to loop"],"loop-node.execution-count.click-to-jump":["Click to jump to a specific iteration"],"loop-node.execution-count.click-to-return":["Click to return to individual iteration view"],"loop-node.execution-count.jump-to-failed":["Jump to first failed iteration"],"loop-node.execution-count.jump-to-iteration":["Jump to iteration ",["iterationNumber"]," (failed)"],"loop-node.execution-count.next-iteration":["Next iteration"],"loop-node.execution-count.previous-iteration":["Previous iteration"],"loop-node.execution-count.return-to-individual":["Return to individual iteration view"],"loop-node.execution-count.show-aggregate":["Show aggregate across all iterations"],"loop-node.mode.parallel":["Parallel"],"loop-node.mode.sequential":["Sequential"],"loop-node.title":["Loop"],"stage-node.add-first-task":["Add first task"],"stage-node.add-task":["Add task"],"stage-node.add-task-to-parallel-group-above":["Add task to parallel group above"],"stage-node.add-task-to-parallel-group-below":["Add task to parallel group below"],"stage-node.adhoc-tasks":["Manually triggered tasks"],"stage-node.create-parallel-group-with-task-above":["Create parallel group with task above"],"stage-node.create-parallel-group-with-task-below":["Create parallel group with task below"],"stage-node.delete-task":["Delete task"],"stage-node.event-driven-tasks":["Event-triggered tasks"],"stage-node.move-down":["Move down"],"stage-node.move-up":["Move up"],"stage-node.no-tasks":["No tasks"],"stage-node.parallel":["Parallel"],"stage-node.remove-from-parallel-group":["Remove from parallel group"],"stage-node.remove-group-from-stage":["Remove group from stage"],"stage-node.replace-task":["Replace task"],"stage-node.status.cancelled":["Cancelled"],"stage-node.status.completed":["Completed"],"stage-node.status.failed":["Failed"],"stage-node.status.in-progress":["In progress"],"stage-node.status.not-executed":["Not started"],"stage-node.status.paused":["Paused"],"stage-node.status.terminated":["Terminated"],"stage-node.status.warning":["Warning"],"stage-node.task-badge.ran-n-times":[["count","plural",{"one":["Ran ","#"," time"],"other":["Ran ","#"," times"]}]],"stage-node.task-badge.running-again":["Running again"],"stage-node.ungroup-parallel-tasks":["Ungroup parallel tasks"],"stage-node.untitled-stage":["Untitled stage"],"sticky-note.formatting.bold":["Bold (",["boldShortcut"],")"],"sticky-note.formatting.bullet-list":["Bullet list"],"sticky-note.formatting.italic":["Italic (",["italicShortcut"],")"],"sticky-note.formatting.numbered-list":["Numbered list"],"sticky-note.formatting.strikethrough":["Strikethrough (",["strikethroughShortcut"],")"],"sticky-note.formatting.toolbar":["Text formatting"],"sticky-note.media.dialog.add-title":["Embed image or video"],"sticky-note.media.dialog.alt-help":["Describe the image for people who use screen readers."],"sticky-note.media.dialog.alt-label":["Alternative text"],"sticky-note.media.dialog.cancel":["Cancel"],"sticky-note.media.dialog.description":["Add a public link. Video supports YouTube and direct video files."],"sticky-note.media.dialog.edit-title":["Edit media"],"sticky-note.media.dialog.embed":["Embed media"],"sticky-note.media.dialog.full-width-help":["The image or video spans the available width of the sticky note."],"sticky-note.media.dialog.full-width-label":["Make full width"],"sticky-note.media.dialog.image-option":["Image"],"sticky-note.media.dialog.image-preview":["Image preview"],"sticky-note.media.dialog.image-url-help":["Use a public HTTPS image link."],"sticky-note.media.dialog.image-url-label":["Image URL"],"sticky-note.media.dialog.image-url-placeholder":["https://example.com/image.png"],"sticky-note.media.dialog.invalid-url":["Enter a valid public HTTPS URL"],"sticky-note.media.dialog.invalid-youtube":["Add a valid YouTube video URL"],"sticky-note.media.dialog.preview-unavailable":["We could not load a preview for this URL."],"sticky-note.media.dialog.save":["Save changes"],"sticky-note.media.dialog.type-label":["Media type"],"sticky-note.media.dialog.unsupported-video":["Add a YouTube URL or a direct public video file URL such as MP4"],"sticky-note.media.dialog.video-option":["Video"],"sticky-note.media.dialog.video-preview":["Video preview"],"sticky-note.media.dialog.video-url-help":["Use a YouTube link or a direct public HTTPS video file link."],"sticky-note.media.dialog.video-url-label":["Video URL"],"sticky-note.media.dialog.video-url-placeholder":["https://youtube.com/watch?v=… or https://example.com/video.mp4"],"sticky-note.media.edit":["Edit media"],"sticky-note.media.embed-action":["Embed image or video"],"sticky-note.media.image-unavailable":["Image unavailable"],"sticky-note.media.image-unavailable-label":["Image unavailable"],"sticky-note.media.play-video":["Play video"],"sticky-note.media.unavailable":["Media unavailable"],"sticky-note.media.video-label":["Embedded video"],"sticky-note.media.video-unavailable":["Video playback is unavailable."],"sticky-note.media.youtube-title":["YouTube video"],"sticky-note.toolbar.color":["Color"],"sticky-note.toolbar.delete":["Delete"],"sticky-note.toolbar.edit":["Edit"],"toolbox.search":["Search"]}');
1
+ const messages = JSON.parse('{"add-node-panel.search-nodes":["Search nodes"],"canvas.json_value_panel.apply":["Apply"],"canvas.json_value_panel.array_item":["item"],"canvas.json_value_panel.cancel":["Cancel"],"canvas.json_value_panel.clear_search":["Clear search"],"canvas.json_value_panel.collapse_all":["Collapse all"],"canvas.json_value_panel.collapse_key":["Collapse ",["key"]],"canvas.json_value_panel.copy_path_for":["Copy path for ",["path"]],"canvas.json_value_panel.copy_path_hint":["Click to copy this path"],"canvas.json_value_panel.copy_value":["Copy value"],"canvas.json_value_panel.copy_value_of":["Copy value of ",["key"]],"canvas.json_value_panel.edit_as_json":["Edit as JSON"],"canvas.json_value_panel.edit_hint":["Click to edit"],"canvas.json_value_panel.edit_json_of":["Edit JSON of ",["key"]],"canvas.json_value_panel.edit_key_as_json":["Edit ",["key"]," as JSON"],"canvas.json_value_panel.edit_value_of":["Edit value of ",["key"]],"canvas.json_value_panel.empty_default":["No fields to display."],"canvas.json_value_panel.empty_search":["No fields match your search."],"canvas.json_value_panel.enter_number":["Enter a number"],"canvas.json_value_panel.enter_value":["Enter a value"],"canvas.json_value_panel.expand_all":["Expand all"],"canvas.json_value_panel.expand_key":["Expand ",["key"]],"canvas.json_value_panel.filter":["Filter"],"canvas.json_value_panel.filter_active":["Filter: ",["label"]],"canvas.json_value_panel.filter_all":["All"],"canvas.json_value_panel.invalid_json":["Invalid JSON"],"canvas.json_value_panel.item_count":[["count","plural",{"one":["#"," item"],"other":["#"," items"]}]],"canvas.json_value_panel.json_tab":["JSON"],"canvas.json_value_panel.key_count":[["count","plural",{"one":["#"," key"],"other":["#"," keys"]}]],"canvas.json_value_panel.path_copied":["Path copied"],"canvas.json_value_panel.required_marker":["required"],"canvas.json_value_panel.schema_tab":["Schema"],"canvas.json_value_panel.search_fields":["Search fields and values..."],"canvas.json_value_panel.search_fields_action":["Search fields and values"],"canvas.json_value_panel.toggle_hint":["Click to toggle"],"canvas.json_value_panel.unset_edit_hint":["Click to set a value"],"canvas.json_value_panel.unset_value":["unset"],"canvas.json_value_panel.unwrap_value":["Unwrap value"],"canvas.json_value_panel.unwrap_value_of":["Unwrap value of ",["key"]],"canvas.json_value_panel.wrap_value":["Wrap value"],"canvas.json_value_panel.wrap_value_of":["Wrap value of ",["key"]],"canvas.node_mode_select.disabled_description":["Don\'t execute this node"],"canvas.node_mode_select.disabled_label":["Skip node"],"canvas.node_mode_select.live_description":["Use the real response from this node"],"canvas.node_mode_select.live_label":["Live"],"canvas.node_mode_select.node_mode":["Node mode"],"canvas.node_mode_select.simulated_description":["Generate a response dynamically using an LLM"],"canvas.node_mode_select.simulated_label":["Simulated"],"canvas.node_mode_select.static_description":["Always return a value you define"],"canvas.node_mode_select.static_label":["Static mock"],"canvas.property_trigger.always_persist":["Always persist"],"canvas.property_trigger.apply_preset_with_label":["Apply ",["label"]],"canvas.property_trigger.auto_hide":["Auto hide"],"canvas.property_trigger.default_layouts":["Default layouts"],"canvas.property_trigger.delete_preset_with_label":["Delete ",["label"]],"canvas.property_trigger.layout_bottom":["Default — Bottom"],"canvas.property_trigger.layout_right":["Default — Right"],"canvas.property_trigger.layout_split":["Default — Split"],"canvas.property_trigger.no_saved_presets":["No saved presets yet."],"canvas.property_trigger.panel_behavior":["Panel behavior"],"canvas.property_trigger.panel_options":["Panel options"],"canvas.property_trigger.properties":["Properties"],"canvas.property_trigger.rename_preset_with_label":["Rename ",["label"]],"canvas.property_trigger.save_as_preset":["Save as preset"],"canvas.property_trigger.saved_presets":["Saved presets"],"loop-node.add-node":["Add node to loop"],"loop-node.execution-count.click-to-jump":["Click to jump to a specific iteration"],"loop-node.execution-count.click-to-return":["Click to return to individual iteration view"],"loop-node.execution-count.jump-to-failed":["Jump to first failed iteration"],"loop-node.execution-count.jump-to-iteration":["Jump to iteration ",["iterationNumber"]," (failed)"],"loop-node.execution-count.next-iteration":["Next iteration"],"loop-node.execution-count.previous-iteration":["Previous iteration"],"loop-node.execution-count.return-to-individual":["Return to individual iteration view"],"loop-node.execution-count.show-aggregate":["Show aggregate across all iterations"],"loop-node.mode.parallel":["Parallel"],"loop-node.mode.sequential":["Sequential"],"loop-node.title":["Loop"],"stage-node.add-first-task":["Add first task"],"stage-node.add-task":["Add task"],"stage-node.add-task-to-parallel-group-above":["Add task to parallel group above"],"stage-node.add-task-to-parallel-group-below":["Add task to parallel group below"],"stage-node.adhoc-tasks":["Manually triggered tasks"],"stage-node.create-parallel-group-with-task-above":["Create parallel group with task above"],"stage-node.create-parallel-group-with-task-below":["Create parallel group with task below"],"stage-node.delete-task":["Delete task"],"stage-node.event-driven-tasks":["Event-triggered tasks"],"stage-node.move-down":["Move down"],"stage-node.move-up":["Move up"],"stage-node.no-tasks":["No tasks"],"stage-node.parallel":["Parallel"],"stage-node.remove-from-parallel-group":["Remove from parallel group"],"stage-node.remove-group-from-stage":["Remove group from stage"],"stage-node.replace-task":["Replace task"],"stage-node.status.cancelled":["Cancelled"],"stage-node.status.completed":["Completed"],"stage-node.status.early-exit":["Early exit"],"stage-node.status.failed":["Failed"],"stage-node.status.in-progress":["In progress"],"stage-node.status.not-executed":["Not started"],"stage-node.status.paused":["Paused"],"stage-node.status.terminated":["Terminated"],"stage-node.status.warning":["Warning"],"stage-node.task-badge.ran-n-times":[["count","plural",{"one":["Ran ","#"," time"],"other":["Ran ","#"," times"]}]],"stage-node.task-badge.running-again":["Running again"],"stage-node.ungroup-parallel-tasks":["Ungroup parallel tasks"],"stage-node.untitled-stage":["Untitled stage"],"sticky-note.formatting.bold":["Bold (",["boldShortcut"],")"],"sticky-note.formatting.bullet-list":["Bullet list"],"sticky-note.formatting.italic":["Italic (",["italicShortcut"],")"],"sticky-note.formatting.numbered-list":["Numbered list"],"sticky-note.formatting.strikethrough":["Strikethrough (",["strikethroughShortcut"],")"],"sticky-note.formatting.toolbar":["Text formatting"],"sticky-note.media.dialog.add-title":["Embed image or video"],"sticky-note.media.dialog.alt-help":["Describe the image for people who use screen readers."],"sticky-note.media.dialog.alt-label":["Alternative text"],"sticky-note.media.dialog.cancel":["Cancel"],"sticky-note.media.dialog.description":["Add a public link. Video supports YouTube and direct video files."],"sticky-note.media.dialog.edit-title":["Edit media"],"sticky-note.media.dialog.embed":["Embed media"],"sticky-note.media.dialog.full-width-help":["The image or video spans the available width of the sticky note."],"sticky-note.media.dialog.full-width-label":["Make full width"],"sticky-note.media.dialog.image-option":["Image"],"sticky-note.media.dialog.image-preview":["Image preview"],"sticky-note.media.dialog.image-url-help":["Use a public HTTPS image link."],"sticky-note.media.dialog.image-url-label":["Image URL"],"sticky-note.media.dialog.image-url-placeholder":["https://example.com/image.png"],"sticky-note.media.dialog.invalid-url":["Enter a valid public HTTPS URL"],"sticky-note.media.dialog.invalid-youtube":["Add a valid YouTube video URL"],"sticky-note.media.dialog.preview-unavailable":["We could not load a preview for this URL."],"sticky-note.media.dialog.save":["Save changes"],"sticky-note.media.dialog.type-label":["Media type"],"sticky-note.media.dialog.unsupported-video":["Add a YouTube URL or a direct public video file URL such as MP4"],"sticky-note.media.dialog.video-option":["Video"],"sticky-note.media.dialog.video-preview":["Video preview"],"sticky-note.media.dialog.video-url-help":["Use a YouTube link or a direct public HTTPS video file link."],"sticky-note.media.dialog.video-url-label":["Video URL"],"sticky-note.media.dialog.video-url-placeholder":["https://youtube.com/watch?v=… or https://example.com/video.mp4"],"sticky-note.media.edit":["Edit media"],"sticky-note.media.embed-action":["Embed image or video"],"sticky-note.media.image-unavailable":["Image unavailable"],"sticky-note.media.image-unavailable-label":["Image unavailable"],"sticky-note.media.play-video":["Play video"],"sticky-note.media.unavailable":["Media unavailable"],"sticky-note.media.video-label":["Embedded video"],"sticky-note.media.video-unavailable":["Video playback is unavailable."],"sticky-note.media.youtube-title":["YouTube video"],"sticky-note.toolbar.color":["Color"],"sticky-note.toolbar.delete":["Delete"],"sticky-note.toolbar.edit":["Edit"],"toolbox.search":["Search"]}');
2
2
  export { messages };
@@ -78,7 +78,7 @@ const StyledTextareaAutosize = (0, styles_namespaceObject.styled)(material_names
78
78
  cursor: 'default'
79
79
  }
80
80
  }));
81
- const ApTextArea = /*#__PURE__*/ external_react_default().forwardRef(({ label, value, placeholder, readOnly = false, required = false, disabled = false, errorMessage, helperText, width, rows = 4, minRows, maxRows, characterLimit, resize = 'vertical', dataTestid, onChange, ...restProps }, ref)=>{
81
+ const ApTextArea = /*#__PURE__*/ external_react_default().forwardRef(({ label, value, placeholder, readOnly = false, required = false, disabled = false, errorMessage, helperText, width, rows = 4, minRows, maxRows, characterLimit, resize = 'vertical', dataTestid, onChange, id, ...restProps }, ref)=>{
82
82
  const [cursorPosition, setCursorPosition] = (0, external_react_namespaceObject.useState)(null);
83
83
  const textareaRef = (0, external_react_namespaceObject.useRef)(null);
84
84
  const hasError = Boolean(errorMessage);
@@ -115,38 +115,24 @@ const ApTextArea = /*#__PURE__*/ external_react_default().forwardRef(({ label, v
115
115
  }, [
116
116
  ref
117
117
  ]);
118
- const labelId = label ? `textarea-label-${dataTestid || 'default'}` : void 0;
119
- const helperId = helperText || errorMessage ? `textarea-helper-${dataTestid || 'default'}` : void 0;
118
+ const instanceId = (0, external_react_namespaceObject.useId)();
119
+ const labelId = label ? `textarea-label-${instanceId}` : void 0;
120
+ const helperId = helperText || errorMessage ? `textarea-helper-${instanceId}` : void 0;
121
+ const textareaId = id ?? `textarea-${instanceId}`;
120
122
  return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(material_namespaceObject.Box, {
121
123
  sx: {
122
124
  width: width || '100%'
123
125
  },
124
126
  children: [
125
- label && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(material_namespaceObject.Box, {
126
- sx: {
127
- marginBottom: apollo_core_default().Spacing.SpacingMicro
128
- },
129
- children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(index_cjs_namespaceObject.ApTypography, {
130
- variant: apollo_core_namespaceObject.FontVariantToken.fontSizeM,
131
- id: labelId,
132
- style: {
133
- color: 'var(--color-foreground)'
134
- },
135
- children: [
136
- label,
137
- required && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(material_namespaceObject.Box, {
138
- component: "span",
139
- sx: {
140
- color: 'var(--color-error-text)',
141
- marginLeft: apollo_core_default().Spacing.SpacingMicro
142
- },
143
- children: "*"
144
- })
145
- ]
146
- })
127
+ label && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(material_namespaceObject.InputLabel, {
128
+ id: labelId,
129
+ htmlFor: textareaId,
130
+ required: required,
131
+ children: label
147
132
  }),
148
133
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(StyledTextareaAutosize, {
149
134
  ref: combinedRef,
135
+ id: textareaId,
150
136
  value: stringValue,
151
137
  placeholder: placeholder,
152
138
  readOnly: readOnly,
@@ -1 +1 @@
1
- {"version":3,"file":"ApTextArea.d.ts","sourceRoot":"","sources":["../../../../src/material/components/ap-text-area/ApTextArea.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAwC,MAAM,OAAO,CAAC;AAG7D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAuD1D,eAAO,MAAM,UAAU,6FA2KtB,CAAC"}
1
+ {"version":3,"file":"ApTextArea.d.ts","sourceRoot":"","sources":["../../../../src/material/components/ap-text-area/ApTextArea.tsx"],"names":[],"mappings":"AAGA,OAAO,KAA+C,MAAM,OAAO,CAAC;AAGpE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAuD1D,eAAO,MAAM,UAAU,6FAyKtB,CAAC"}
@@ -1,8 +1,8 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
- import { Box, TextareaAutosize } from "@mui/material";
2
+ import { Box, InputLabel, TextareaAutosize } from "@mui/material";
3
3
  import { styled } from "@mui/material/styles";
4
4
  import apollo_core, { FontVariantToken } from "@uipath/apollo-core";
5
- import react, { useCallback, useRef, useState } from "react";
5
+ import react, { useCallback, useId, useRef, useState } from "react";
6
6
  import { ApTypography } from "../ap-typography/index.js";
7
7
  const StyledTextareaAutosize = styled(TextareaAutosize, {
8
8
  shouldForwardProp: (prop)=>'hasError' !== prop && 'width' !== prop && 'resize' !== prop
@@ -39,7 +39,7 @@ const StyledTextareaAutosize = styled(TextareaAutosize, {
39
39
  cursor: 'default'
40
40
  }
41
41
  }));
42
- const ApTextArea = /*#__PURE__*/ react.forwardRef(({ label, value, placeholder, readOnly = false, required = false, disabled = false, errorMessage, helperText, width, rows = 4, minRows, maxRows, characterLimit, resize = 'vertical', dataTestid, onChange, ...restProps }, ref)=>{
42
+ const ApTextArea = /*#__PURE__*/ react.forwardRef(({ label, value, placeholder, readOnly = false, required = false, disabled = false, errorMessage, helperText, width, rows = 4, minRows, maxRows, characterLimit, resize = 'vertical', dataTestid, onChange, id, ...restProps }, ref)=>{
43
43
  const [cursorPosition, setCursorPosition] = useState(null);
44
44
  const textareaRef = useRef(null);
45
45
  const hasError = Boolean(errorMessage);
@@ -76,38 +76,24 @@ const ApTextArea = /*#__PURE__*/ react.forwardRef(({ label, value, placeholder,
76
76
  }, [
77
77
  ref
78
78
  ]);
79
- const labelId = label ? `textarea-label-${dataTestid || 'default'}` : void 0;
80
- const helperId = helperText || errorMessage ? `textarea-helper-${dataTestid || 'default'}` : void 0;
79
+ const instanceId = useId();
80
+ const labelId = label ? `textarea-label-${instanceId}` : void 0;
81
+ const helperId = helperText || errorMessage ? `textarea-helper-${instanceId}` : void 0;
82
+ const textareaId = id ?? `textarea-${instanceId}`;
81
83
  return /*#__PURE__*/ jsxs(Box, {
82
84
  sx: {
83
85
  width: width || '100%'
84
86
  },
85
87
  children: [
86
- label && /*#__PURE__*/ jsx(Box, {
87
- sx: {
88
- marginBottom: apollo_core.Spacing.SpacingMicro
89
- },
90
- children: /*#__PURE__*/ jsxs(ApTypography, {
91
- variant: FontVariantToken.fontSizeM,
92
- id: labelId,
93
- style: {
94
- color: 'var(--color-foreground)'
95
- },
96
- children: [
97
- label,
98
- required && /*#__PURE__*/ jsx(Box, {
99
- component: "span",
100
- sx: {
101
- color: 'var(--color-error-text)',
102
- marginLeft: apollo_core.Spacing.SpacingMicro
103
- },
104
- children: "*"
105
- })
106
- ]
107
- })
88
+ label && /*#__PURE__*/ jsx(InputLabel, {
89
+ id: labelId,
90
+ htmlFor: textareaId,
91
+ required: required,
92
+ children: label
108
93
  }),
109
94
  /*#__PURE__*/ jsx(StyledTextareaAutosize, {
110
95
  ref: combinedRef,
96
+ id: textareaId,
111
97
  value: stringValue,
112
98
  placeholder: placeholder,
113
99
  readOnly: readOnly,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipath/apollo-react",
3
- "version": "6.15.0",
3
+ "version": "6.16.0",
4
4
  "description": "Apollo Design System - React component library with Material UI theming",
5
5
  "repository": {
6
6
  "type": "git",