@uipath/apollo-react 3.30.1 → 3.30.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/canvas/icons/AgentDiagramIcon.d.ts.map +1 -1
- package/dist/material/components/ap-chat/components/input/chat-input-resource-picker.cjs +6 -6
- package/dist/material/components/ap-chat/components/input/chat-input-resource-picker.js +6 -6
- package/dist/material/components/ap-chat/components/input/tiptap/resource-chip-node-view.cjs +5 -5
- package/dist/material/components/ap-chat/components/input/tiptap/resource-chip-node-view.js +5 -5
- package/dist/material/components/ap-chat/components/input/tiptap/tiptap-editor.d.ts +1 -1
- package/dist/material/components/ap-chat/components/input/tiptap/tiptap-editor.d.ts.map +1 -1
- package/dist/material/components/ap-chat/components/input/tiptap/tiptap-editor.styles.cjs +2 -2
- package/dist/material/components/ap-chat/components/input/tiptap/tiptap-editor.styles.js +2 -2
- package/dist/material/components/ap-chat/components/message/markdown/resource-chip.d.ts +1 -1
- package/dist/material/components/ap-chat/components/message/markdown/resource-chip.d.ts.map +1 -1
- package/dist/material/components/ap-chat/providers/resource-data-provider.d.ts +1 -1
- package/dist/material/components/ap-chat/providers/resource-data-provider.d.ts.map +1 -1
- package/dist/material/components/ap-chat/providers/resource-picker-provider.d.ts +1 -1
- package/dist/material/components/ap-chat/providers/resource-picker-provider.d.ts.map +1 -1
- package/dist/material/components/ap-sankey-diagram/ApSankeyDiagram.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AgentDiagramIcon.d.ts","sourceRoot":"","sources":["../../../src/canvas/icons/AgentDiagramIcon.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,GAAI,WAG9B;
|
|
1
|
+
{"version":3,"file":"AgentDiagramIcon.d.ts","sourceRoot":"","sources":["../../../src/canvas/icons/AgentDiagramIcon.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,GAAI,WAG9B;IACD,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACpB,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACrB,4CAOA,CAAC"}
|
|
@@ -74,27 +74,27 @@ const ResourceItemContent = (0, styles_namespaceObject.styled)('div')({
|
|
|
74
74
|
flex: 1,
|
|
75
75
|
minWidth: 0
|
|
76
76
|
});
|
|
77
|
-
const ErrorContainer = (0, styles_namespaceObject.styled)('div')((
|
|
77
|
+
const ErrorContainer = (0, styles_namespaceObject.styled)('div')(()=>({
|
|
78
78
|
display: 'flex',
|
|
79
79
|
flexDirection: 'column',
|
|
80
80
|
alignItems: 'center',
|
|
81
81
|
gap: apollo_core_default().Spacing.SpacingS,
|
|
82
82
|
padding: apollo_core_default().Padding.PadXxxl,
|
|
83
|
-
color:
|
|
83
|
+
color: 'var(--color-error-text)'
|
|
84
84
|
}));
|
|
85
|
-
const EmptyContainer = (0, styles_namespaceObject.styled)('div')((
|
|
85
|
+
const EmptyContainer = (0, styles_namespaceObject.styled)('div')(()=>({
|
|
86
86
|
display: 'flex',
|
|
87
87
|
alignItems: 'center',
|
|
88
88
|
justifyContent: 'center',
|
|
89
89
|
padding: `${apollo_core_default().Padding.PadXxl} ${apollo_core_default().Padding.PadXxxl}`,
|
|
90
|
-
color:
|
|
90
|
+
color: 'var(--color-foreground-de-emp)'
|
|
91
91
|
}));
|
|
92
|
-
const DrillDownHeader = (0, styles_namespaceObject.styled)('div')((
|
|
92
|
+
const DrillDownHeader = (0, styles_namespaceObject.styled)('div')(()=>({
|
|
93
93
|
display: 'flex',
|
|
94
94
|
alignItems: 'center',
|
|
95
95
|
gap: apollo_core_default().Spacing.SpacingMicro,
|
|
96
96
|
padding: `${apollo_core_default().Padding.PadXs} ${apollo_core_default().Padding.PadXxxl} ${apollo_core_default().Padding.PadXs} ${apollo_core_default().Padding.PadXxl}`,
|
|
97
|
-
backgroundColor:
|
|
97
|
+
backgroundColor: 'var(--color-background-secondary)'
|
|
98
98
|
}));
|
|
99
99
|
const SkeletonItem = (0, styles_namespaceObject.styled)(StyledMenuItem)({
|
|
100
100
|
pointerEvents: 'none'
|
|
@@ -32,27 +32,27 @@ const ResourceItemContent = styled('div')({
|
|
|
32
32
|
flex: 1,
|
|
33
33
|
minWidth: 0
|
|
34
34
|
});
|
|
35
|
-
const ErrorContainer = styled('div')((
|
|
35
|
+
const ErrorContainer = styled('div')(()=>({
|
|
36
36
|
display: 'flex',
|
|
37
37
|
flexDirection: 'column',
|
|
38
38
|
alignItems: 'center',
|
|
39
39
|
gap: apollo_core.Spacing.SpacingS,
|
|
40
40
|
padding: apollo_core.Padding.PadXxxl,
|
|
41
|
-
color:
|
|
41
|
+
color: 'var(--color-error-text)'
|
|
42
42
|
}));
|
|
43
|
-
const EmptyContainer = styled('div')((
|
|
43
|
+
const EmptyContainer = styled('div')(()=>({
|
|
44
44
|
display: 'flex',
|
|
45
45
|
alignItems: 'center',
|
|
46
46
|
justifyContent: 'center',
|
|
47
47
|
padding: `${apollo_core.Padding.PadXxl} ${apollo_core.Padding.PadXxxl}`,
|
|
48
|
-
color:
|
|
48
|
+
color: 'var(--color-foreground-de-emp)'
|
|
49
49
|
}));
|
|
50
|
-
const DrillDownHeader = styled('div')((
|
|
50
|
+
const DrillDownHeader = styled('div')(()=>({
|
|
51
51
|
display: 'flex',
|
|
52
52
|
alignItems: 'center',
|
|
53
53
|
gap: apollo_core.Spacing.SpacingMicro,
|
|
54
54
|
padding: `${apollo_core.Padding.PadXs} ${apollo_core.Padding.PadXxxl} ${apollo_core.Padding.PadXs} ${apollo_core.Padding.PadXxl}`,
|
|
55
|
-
backgroundColor:
|
|
55
|
+
backgroundColor: 'var(--color-background-secondary)'
|
|
56
56
|
}));
|
|
57
57
|
const SkeletonItem = styled(StyledMenuItem)({
|
|
58
58
|
pointerEvents: 'none'
|
package/dist/material/components/ap-chat/components/input/tiptap/resource-chip-node-view.cjs
CHANGED
|
@@ -49,12 +49,12 @@ const index_cjs_namespaceObject = require("../../../service/index.cjs");
|
|
|
49
49
|
const font_by_variant_cjs_namespaceObject = require("../../../utils/font-by-variant.cjs");
|
|
50
50
|
const action_button_cjs_namespaceObject = require("../../common/action-button.cjs");
|
|
51
51
|
const tooltip_cjs_namespaceObject = require("../../common/tooltip.cjs");
|
|
52
|
-
const ChipContent = (0, styles_namespaceObject.styled)('span')(({
|
|
52
|
+
const ChipContent = (0, styles_namespaceObject.styled)('span')(({ readonly })=>({
|
|
53
53
|
display: 'inline-flex',
|
|
54
54
|
alignItems: 'center',
|
|
55
55
|
padding: `0 ${apollo_core_default().Padding.PadS}`,
|
|
56
|
-
backgroundColor:
|
|
57
|
-
color:
|
|
56
|
+
backgroundColor: 'var(--color-primary-lighter)',
|
|
57
|
+
color: 'var(--color-foreground)',
|
|
58
58
|
borderRadius: `calc(${apollo_core_default().Border.BorderRadiusL} * 2)`,
|
|
59
59
|
verticalAlign: 'middle',
|
|
60
60
|
...!readonly && {
|
|
@@ -76,7 +76,7 @@ const ChipLabel = (0, styles_namespaceObject.styled)('span')(()=>({
|
|
|
76
76
|
whiteSpace: 'nowrap',
|
|
77
77
|
padding: `0 ${apollo_core_default().Padding.PadS}`
|
|
78
78
|
}));
|
|
79
|
-
const ChipDeleteContainer = (0, styles_namespaceObject.styled)('span')(({ visible, compactMode
|
|
79
|
+
const ChipDeleteContainer = (0, styles_namespaceObject.styled)('span')(({ visible, compactMode })=>({
|
|
80
80
|
opacity: visible ? 1 : 0,
|
|
81
81
|
position: 'absolute',
|
|
82
82
|
right: apollo_core_default().Spacing.SpacingMicro,
|
|
@@ -84,7 +84,7 @@ const ChipDeleteContainer = (0, styles_namespaceObject.styled)('span')(({ visibl
|
|
|
84
84
|
transform: 'translateY(-50%)',
|
|
85
85
|
display: 'flex',
|
|
86
86
|
alignItems: 'center',
|
|
87
|
-
backgroundColor:
|
|
87
|
+
backgroundColor: 'var(--color-primary-lighter)',
|
|
88
88
|
borderRadius: `calc(${apollo_core_default().Border.BorderRadiusL} * 2)`,
|
|
89
89
|
transition: 'opacity 0.15s ease-in-out',
|
|
90
90
|
'& .MuiButtonBase-root.MuiButtonBase-root': {
|
|
@@ -9,12 +9,12 @@ import { CHAT_RESOURCE_CHIP_MAX_WIDTH } from "../../../service/index.js";
|
|
|
9
9
|
import { fontByVariant } from "../../../utils/font-by-variant.js";
|
|
10
10
|
import { AutopilotChatActionButton } from "../../common/action-button.js";
|
|
11
11
|
import { AutopilotChatTooltip } from "../../common/tooltip.js";
|
|
12
|
-
const ChipContent = styled('span')(({
|
|
12
|
+
const ChipContent = styled('span')(({ readonly })=>({
|
|
13
13
|
display: 'inline-flex',
|
|
14
14
|
alignItems: 'center',
|
|
15
15
|
padding: `0 ${apollo_core.Padding.PadS}`,
|
|
16
|
-
backgroundColor:
|
|
17
|
-
color:
|
|
16
|
+
backgroundColor: 'var(--color-primary-lighter)',
|
|
17
|
+
color: 'var(--color-foreground)',
|
|
18
18
|
borderRadius: `calc(${apollo_core.Border.BorderRadiusL} * 2)`,
|
|
19
19
|
verticalAlign: 'middle',
|
|
20
20
|
...!readonly && {
|
|
@@ -36,7 +36,7 @@ const ChipLabel = styled('span')(()=>({
|
|
|
36
36
|
whiteSpace: 'nowrap',
|
|
37
37
|
padding: `0 ${apollo_core.Padding.PadS}`
|
|
38
38
|
}));
|
|
39
|
-
const ChipDeleteContainer = styled('span')(({ visible, compactMode
|
|
39
|
+
const ChipDeleteContainer = styled('span')(({ visible, compactMode })=>({
|
|
40
40
|
opacity: visible ? 1 : 0,
|
|
41
41
|
position: 'absolute',
|
|
42
42
|
right: apollo_core.Spacing.SpacingMicro,
|
|
@@ -44,7 +44,7 @@ const ChipDeleteContainer = styled('span')(({ visible, compactMode, theme })=>({
|
|
|
44
44
|
transform: 'translateY(-50%)',
|
|
45
45
|
display: 'flex',
|
|
46
46
|
alignItems: 'center',
|
|
47
|
-
backgroundColor:
|
|
47
|
+
backgroundColor: 'var(--color-primary-lighter)',
|
|
48
48
|
borderRadius: `calc(${apollo_core.Border.BorderRadiusL} * 2)`,
|
|
49
49
|
transition: 'opacity 0.15s ease-in-out',
|
|
50
50
|
'& .MuiButtonBase-root.MuiButtonBase-root': {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Range } from '@tiptap/core';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import type { AutopilotChatResourceItem } from './../../../service';
|
|
4
4
|
import { type CursorCoordinates } from './tiptap-resource-suggestion';
|
|
5
5
|
export interface TipTapEditorHandle {
|
|
6
6
|
focus: () => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiptap-editor.d.ts","sourceRoot":"","sources":["../../../../../../../src/material/components/ap-chat/components/input/tiptap/tiptap-editor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAU1C,OAAO,KAAkC,MAAM,OAAO,CAAC;AACvD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"tiptap-editor.d.ts","sourceRoot":"","sources":["../../../../../../../src/material/components/ap-chat/components/input/tiptap/tiptap-editor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAU1C,OAAO,KAAkC,MAAM,OAAO,CAAC;AACvD,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,oBAAoB,CAAC;AAIpE,OAAO,EACL,KAAK,iBAAiB,EAGvB,MAAM,8BAA8B,CAAC;AA2BtC,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB,cAAc,EAAE,CAAC,QAAQ,EAAE,yBAAyB,EAAE,KAAK,CAAC,EAAE,KAAK,KAAK,IAAI,CAAC;IAC7E,oBAAoB,EAAE,MAAM,MAAM,CAAC;IACnC,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB,iBAAiB,EAAE,MAAM,IAAI,CAAC;IAC9B,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,WAAW,EAAE,MAAM,IAAI,CAAC;CACzB;AAED,UAAU,qBAAqB;IAC7B,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,OAAO,CAAC;IAC9C,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,iBAAiB,KAAK,IAAI,CAAC;IACnE,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,oBAAoB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;CAC9D;AAED,UAAU,iBAAkB,SAAQ,qBAAqB;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAiQD,eAAO,MAAM,YAAY,yFAA4C,CAAC"}
|
|
@@ -39,7 +39,7 @@ const styles_namespaceObject = require("@mui/material/styles");
|
|
|
39
39
|
const apollo_core_namespaceObject = require("@uipath/apollo-core");
|
|
40
40
|
var apollo_core_default = /*#__PURE__*/ __webpack_require__.n(apollo_core_namespaceObject);
|
|
41
41
|
const EDITOR_PADDING = apollo_core_default().Spacing.SpacingXs;
|
|
42
|
-
const EditorContainer = (0, styles_namespaceObject.styled)('div')(({
|
|
42
|
+
const EditorContainer = (0, styles_namespaceObject.styled)('div')(({ minRows, maxRows, lineHeight })=>({
|
|
43
43
|
width: '100%',
|
|
44
44
|
minHeight: `calc(${minRows} * ${lineHeight} + ${EDITOR_PADDING})`,
|
|
45
45
|
maxHeight: `calc(${maxRows} * ${lineHeight} + ${EDITOR_PADDING})`,
|
|
@@ -57,7 +57,7 @@ const EditorContainer = (0, styles_namespaceObject.styled)('div')(({ theme, minR
|
|
|
57
57
|
'& p.is-editor-empty:first-of-type::before': {
|
|
58
58
|
content: 'attr(data-placeholder)',
|
|
59
59
|
float: 'left',
|
|
60
|
-
color:
|
|
60
|
+
color: 'var(--color-foreground-de-emp)',
|
|
61
61
|
pointerEvents: 'none',
|
|
62
62
|
height: 0
|
|
63
63
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { styled } from "@mui/material/styles";
|
|
2
2
|
import apollo_core from "@uipath/apollo-core";
|
|
3
3
|
const EDITOR_PADDING = apollo_core.Spacing.SpacingXs;
|
|
4
|
-
const EditorContainer = styled('div')(({
|
|
4
|
+
const EditorContainer = styled('div')(({ minRows, maxRows, lineHeight })=>({
|
|
5
5
|
width: '100%',
|
|
6
6
|
minHeight: `calc(${minRows} * ${lineHeight} + ${EDITOR_PADDING})`,
|
|
7
7
|
maxHeight: `calc(${maxRows} * ${lineHeight} + ${EDITOR_PADDING})`,
|
|
@@ -19,7 +19,7 @@ const EditorContainer = styled('div')(({ theme, minRows, maxRows, lineHeight })=
|
|
|
19
19
|
'& p.is-editor-empty:first-of-type::before': {
|
|
20
20
|
content: 'attr(data-placeholder)',
|
|
21
21
|
float: 'left',
|
|
22
|
-
color:
|
|
22
|
+
color: 'var(--color-foreground-de-emp)',
|
|
23
23
|
pointerEvents: 'none',
|
|
24
24
|
height: 0
|
|
25
25
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { AutopilotChatResourceItem } from '../../../service';
|
|
2
|
+
import type { AutopilotChatResourceItem } from '../../../service';
|
|
3
3
|
export declare const ResourceChip: React.MemoExoticComponent<({ icon, displayName }: AutopilotChatResourceItem) => import("react/jsx-runtime").JSX.Element>;
|
|
4
4
|
//# sourceMappingURL=resource-chip.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-chip.d.ts","sourceRoot":"","sources":["../../../../../../../src/material/components/ap-chat/components/message/markdown/resource-chip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"resource-chip.d.ts","sourceRoot":"","sources":["../../../../../../../src/material/components/ap-chat/components/message/markdown/resource-chip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAC;AAGlE,eAAO,MAAM,YAAY,oDAAsC,yBAAyB,6CAEtF,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import type React from 'react';
|
|
2
2
|
import type { AutopilotChatResourceItemSelector, AutopilotChatResourceManager } from '../service';
|
|
3
3
|
interface ResourceDataContextType extends Required<Pick<AutopilotChatResourceManager, 'getNestedResources' | 'globalSearch' | 'onResourceSelected'>> {
|
|
4
4
|
topLevelResources: AutopilotChatResourceItemSelector[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-data-provider.d.ts","sourceRoot":"","sources":["../../../../../src/material/components/ap-chat/providers/resource-data-provider.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"resource-data-provider.d.ts","sourceRoot":"","sources":["../../../../../src/material/components/ap-chat/providers/resource-data-provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAEV,iCAAiC,EACjC,4BAA4B,EAG7B,MAAM,YAAY,CAAC;AAMpB,UAAU,uBACR,SAAQ,QAAQ,CACd,IAAI,CAAC,4BAA4B,EAAE,oBAAoB,GAAG,cAAc,GAAG,oBAAoB,CAAC,CACjG;IACD,iBAAiB,EAAE,iCAAiC,EAAE,CAAC;IACvD,YAAY,EAAE,OAAO,CAAC;IACtB,kBAAkB,EAAE,OAAO,CAAC;CAC7B;AAWD,wBAAgB,6BAA6B,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,2CAkFxF;AAED,eAAO,MAAM,eAAe,+BAAwC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import type React from 'react';
|
|
2
2
|
import type { CursorCoordinates, TipTapRange } from '../components/input/tiptap';
|
|
3
3
|
import { type DrillDownState } from '../hooks/use-resource-picker-state';
|
|
4
4
|
import { type AutopilotChatResourceItem, type AutopilotChatResourceItemSelector } from '../service';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-picker-provider.d.ts","sourceRoot":"","sources":["../../../../../src/material/components/ap-chat/providers/resource-picker-provider.tsx"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"resource-picker-provider.d.ts","sourceRoot":"","sources":["../../../../../src/material/components/ap-chat/providers/resource-picker-provider.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAU/B,OAAO,KAAK,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AACjF,OAAO,EAAE,KAAK,cAAc,EAA0B,MAAM,oCAAoC,CAAC;AACjG,OAAO,EACL,KAAK,yBAAyB,EAC9B,KAAK,iCAAiC,EAEvC,MAAM,YAAY,CAAC;AAGpB,YAAY,EAAE,cAAc,EAAE,CAAC;AAK/B,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,yBAAyB,GAAG,iCAAiC,GAClE,IAAI,IAAI,iCAAiC,CAE3C;AAID,MAAM,WAAW,sCAAsC;IACrD,MAAM,EAAE,OAAO,CAAC;IAChB,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IACpC,cAAc,EAAE,iBAAiB,GAAG,IAAI,CAAC;IACzC,KAAK,EAAE,MAAM,CAAC;IACd,cAAc,EAAE,yBAAyB,EAAE,CAAC;IAC5C,SAAS,EAAE,cAAc,GAAG,IAAI,CAAC;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,WAAW,EAAE,OAAO,CAAC;IACrB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,IAAI,EAAE,CAAC,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,iBAAiB,KAAK,IAAI,CAAC;IAC9D,KAAK,EAAE,MAAM,IAAI,CAAC;IAClB,gBAAgB,EAAE,MAAM,IAAI,CAAC;IAC7B,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC;IACtD,eAAe,EAAE,CAAC,IAAI,EAAE,yBAAyB,GAAG,iCAAiC,KAAK,IAAI,CAAC;IAC/F,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAKD,UAAU,wCAAwC;IAChD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,gBAAgB,EAAE,CAAC,QAAQ,EAAE,yBAAyB,EAAE,KAAK,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;IACrF,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,wBAAgB,mCAAmC,CAAC,EAClD,QAAQ,EACR,gBAAgB,EAChB,WAAW,EACX,OAAO,GACR,EAAE,wCAAwC,2CA8U1C;AAED,wBAAgB,8BAA8B,IAAI,sCAAsC,CAQvF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApSankeyDiagram.d.ts","sourceRoot":"","sources":["../../../../src/material/components/ap-sankey-diagram/ApSankeyDiagram.tsx"],"names":[],"mappings":"AAeA,OAAO,KAON,MAAM,OAAO,CAAC;AAEf,OAAO,KAAK,EAAE,oBAAoB,EAA0B,MAAM,yBAAyB,CAAC;AAqI5F,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"ApSankeyDiagram.d.ts","sourceRoot":"","sources":["../../../../src/material/components/ap-sankey-diagram/ApSankeyDiagram.tsx"],"names":[],"mappings":"AAeA,OAAO,KAON,MAAM,OAAO,CAAC;AAEf,OAAO,KAAK,EAAE,oBAAoB,EAA0B,MAAM,yBAAyB,CAAC;AAqI5F,eAAO,MAAM,eAAe,6FAqb3B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/apollo-react",
|
|
3
|
-
"version": "3.30.
|
|
3
|
+
"version": "3.30.2",
|
|
4
4
|
"description": "Apollo Design System - React component library with Material UI theming",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
"zod": "^4.3.5",
|
|
200
200
|
"zustand": "^5.0.9",
|
|
201
201
|
"@uipath/apollo-core": "5.7.0",
|
|
202
|
-
"@uipath/apollo-wind": "0.9.
|
|
202
|
+
"@uipath/apollo-wind": "0.9.1"
|
|
203
203
|
},
|
|
204
204
|
"devDependencies": {
|
|
205
205
|
"@lingui/cli": "^5.6.1",
|