@epam/ai-dial-conversation-panel 1.1.0-dev.21 → 1.1.0-dev.214
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/components/ConversationGroupHeader/ConversationGroupHeader.d.ts +2 -5
- package/components/ConversationGroupHeader/ConversationGroupHeader.d.ts.map +1 -1
- package/components/ConversationPanel/ConversationPanel.d.ts.map +1 -1
- package/components/{ConversationGroup → ConversationRow}/ConversationRow.d.ts +6 -9
- package/components/ConversationRow/ConversationRow.d.ts.map +1 -0
- package/components/FilterTabs/FilterTabs.d.ts +3 -0
- package/components/FilterTabs/FilterTabs.d.ts.map +1 -1
- package/components/NewChatButton/NewChatButton.d.ts +4 -1
- package/components/NewChatButton/NewChatButton.d.ts.map +1 -1
- package/components/PillTabs/PillTabs.d.ts +53 -0
- package/components/PillTabs/PillTabs.d.ts.map +1 -0
- package/components/RowRenderer/RowRenderer.d.ts +1 -1
- package/components/RowRenderer/RowRenderer.d.ts.map +1 -1
- package/index.css +1 -1
- package/index.d.ts +2 -2
- package/index.d.ts.map +1 -1
- package/index.js +469 -425
- package/models/panel-props.d.ts +51 -66
- package/models/panel-props.d.ts.map +1 -1
- package/models/virtual-row.d.ts +5 -6
- package/models/virtual-row.d.ts.map +1 -1
- package/package.json +4 -5
- package/types/conversation-classification.d.ts +1 -4
- package/types/conversation-classification.d.ts.map +1 -1
- package/utils/conversation-row.d.ts +1 -7
- package/utils/conversation-row.d.ts.map +1 -1
- package/utils/drag.d.ts +2 -14
- package/utils/drag.d.ts.map +1 -1
- package/components/ConversationGroup/ConversationGroup.d.ts +0 -31
- package/components/ConversationGroup/ConversationGroup.d.ts.map +0 -1
- package/components/ConversationGroup/ConversationRow.d.ts.map +0 -1
package/models/panel-props.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { DropdownItem } from '@epam/ai-dial-ui-kit';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
|
+
import { PillTabsColors } from '../components/PillTabs/PillTabs';
|
|
3
4
|
import { FilterTab } from '../types/conversation-classification';
|
|
4
|
-
/** Labels for each filter tab
|
|
5
|
+
/** Labels for each filter tab. */
|
|
5
6
|
export interface FilterLabels {
|
|
6
7
|
/** Label for the "All" tab. */
|
|
7
8
|
all: string;
|
|
@@ -16,7 +17,7 @@ export interface FilterLabels {
|
|
|
16
17
|
export interface ConversationItem {
|
|
17
18
|
/** Unique conversation identifier (path or UUID). */
|
|
18
19
|
id: string;
|
|
19
|
-
/** Human-readable title
|
|
20
|
+
/** Human-readable conversation title. */
|
|
20
21
|
title: string;
|
|
21
22
|
/** When true the item is shown in the Pinned section. */
|
|
22
23
|
isPinned?: boolean;
|
|
@@ -24,22 +25,24 @@ export interface ConversationItem {
|
|
|
24
25
|
source?: FilterTab;
|
|
25
26
|
/** URL of the model or conversation icon. When absent a default icon is shown. */
|
|
26
27
|
iconUrl?: string;
|
|
27
|
-
/** Tooltip text shown on the deployment icon.
|
|
28
|
+
/** Tooltip text shown on the deployment icon. */
|
|
28
29
|
iconTooltip?: string;
|
|
29
30
|
/** When `true`, a skeleton placeholder is shown instead of the deployment icon. */
|
|
30
31
|
isIconLoading?: boolean;
|
|
31
|
-
/**
|
|
32
|
-
* Browser-navigable URL for the conversation (e.g. `/conversations/<id>`).
|
|
33
|
-
* When provided, a middle mouse button click on the row opens this URL in a new tab,
|
|
34
|
-
* matching standard browser link behaviour.
|
|
35
|
-
*/
|
|
32
|
+
/** Conversation URL. When provided, middle-click opens it in a new tab. */
|
|
36
33
|
href?: string;
|
|
34
|
+
/** When `true`, a "TASK" pill badge is rendered at the end of the row. */
|
|
35
|
+
showTaskBadge?: boolean;
|
|
36
|
+
/** Text shown inside the task badge. When `showTaskBadge` is `true` and this is omitted, the badge renders with no text. */
|
|
37
|
+
taskBadgeLabel?: string;
|
|
38
|
+
/** When `true`, an unread indicator dot is rendered before the row's leading icon. */
|
|
39
|
+
isUnread?: boolean;
|
|
37
40
|
}
|
|
38
41
|
/** Font overrides for the header title in `ConversationPanel`. */
|
|
39
42
|
export interface ConversationPanelTypography {
|
|
40
43
|
/** A single utility class (e.g. `'dial-body-semi-text'`) applied to the title span. */
|
|
41
44
|
fontClassName?: string;
|
|
42
|
-
/** Typography class applied to collapsible group header buttons. Defaults to `'dial-tiny-semi-text
|
|
45
|
+
/** Typography class applied to collapsible group header buttons. Defaults to `'dial-tiny-lead-semi-text'`. */
|
|
43
46
|
groupHeaderClassName?: string;
|
|
44
47
|
/** Typography class applied to conversation title text in each row. Defaults to `'dial-small-text'`. */
|
|
45
48
|
itemTitleClassName?: string;
|
|
@@ -48,6 +51,15 @@ export interface ConversationPanelTypography {
|
|
|
48
51
|
/** Class applied to each filter tab. Defaults to `'dial-tiny-semi-text'` (an additional `'flex-1'` class is always applied). */
|
|
49
52
|
tabClassName?: string;
|
|
50
53
|
}
|
|
54
|
+
/** CSS custom-property overrides for the New chat button. */
|
|
55
|
+
export interface NewChatButtonColors {
|
|
56
|
+
/** Default background. */
|
|
57
|
+
background?: string;
|
|
58
|
+
/** Label and icon color. */
|
|
59
|
+
text?: string;
|
|
60
|
+
/** Keyboard focus ring color. Defaults to `--stroke-focus-black`. */
|
|
61
|
+
focusOutline?: string;
|
|
62
|
+
}
|
|
51
63
|
/** CSS custom-property overrides for `ConversationPanel`. */
|
|
52
64
|
export interface ConversationColors {
|
|
53
65
|
/** Panel background color. */
|
|
@@ -62,26 +74,6 @@ export interface ConversationColors {
|
|
|
62
74
|
text?: string;
|
|
63
75
|
/** Secondary text color (dates, metadata). */
|
|
64
76
|
textSecondary?: string;
|
|
65
|
-
/** Hover background of the New chat button. */
|
|
66
|
-
newChatHoverBackground?: string;
|
|
67
|
-
/** Active/pressed background of the New chat button. */
|
|
68
|
-
newChatActiveBackground?: string;
|
|
69
|
-
/** Background of the New chat button. */
|
|
70
|
-
newChatBackground?: string;
|
|
71
|
-
/** Label/icon text color of the New chat button. */
|
|
72
|
-
newChatText?: string;
|
|
73
|
-
/** Blue shadow color of the New chat button in the default state. */
|
|
74
|
-
newChatShadowBlue?: string;
|
|
75
|
-
/** Blue shadow color of the New chat button on hover. */
|
|
76
|
-
newChatShadowBlueHover?: string;
|
|
77
|
-
/** Blue shadow color of the New chat button while active/pressed. */
|
|
78
|
-
newChatShadowBlueActive?: string;
|
|
79
|
-
/** Purple shadow color of the New chat button in the default state. */
|
|
80
|
-
newChatShadowPurple?: string;
|
|
81
|
-
/** Purple shadow color of the New chat button on hover. */
|
|
82
|
-
newChatShadowPurpleHover?: string;
|
|
83
|
-
/** Purple shadow color of the New chat button while active/pressed. */
|
|
84
|
-
newChatShadowPurpleActive?: string;
|
|
85
77
|
/** Ring color shown around a group header acting as a drag-and-drop target. */
|
|
86
78
|
dropZoneRing?: string;
|
|
87
79
|
/** Background color of the active row actions trigger button. */
|
|
@@ -92,15 +84,29 @@ export interface ConversationColors {
|
|
|
92
84
|
triggerIconIdle?: string;
|
|
93
85
|
/** Shimmer color of the loading skeleton avatar. */
|
|
94
86
|
skeletonColor?: string;
|
|
87
|
+
/** Border color of the task pill badge. Defaults to `--stroke-tertiary`. */
|
|
88
|
+
taskBadgeBorder?: string;
|
|
89
|
+
/** Background color of the task pill badge. Defaults to `--bg-layer-base`. */
|
|
90
|
+
taskBadgeBackground?: string;
|
|
91
|
+
/** Text color of the task pill badge. Defaults to `--text-secondary`. */
|
|
92
|
+
taskBadgeText?: string;
|
|
93
|
+
/** Fill color of the unread indicator dot. Defaults to `--text-accent`. */
|
|
94
|
+
unreadDot?: string;
|
|
95
95
|
}
|
|
96
96
|
/** Combined style overrides (colors and typography) for `ConversationPanel`. */
|
|
97
97
|
export interface ConversationPanelStyles {
|
|
98
98
|
/** Color overrides applied as CSS custom properties. */
|
|
99
99
|
colors?: ConversationColors;
|
|
100
|
+
/** Color overrides forwarded to the New chat button. */
|
|
101
|
+
newChatButton?: NewChatButtonColors;
|
|
102
|
+
/** Color overrides forwarded to the filter pill tabs. */
|
|
103
|
+
filterTabs?: PillTabsColors;
|
|
100
104
|
/** Typography overrides for the panel and its children. */
|
|
101
105
|
typography?: ConversationPanelTypography;
|
|
102
106
|
/** CSS class applied to the icon badge in each conversation row. Defaults to `'rounded-full'`. */
|
|
103
107
|
itemIconBadgeClassName?: string;
|
|
108
|
+
/** Typography class applied to the task pill badge in each conversation row. Defaults to `'dial-caption-lead-semi-text'`. Colors come from the module stylesheet. */
|
|
109
|
+
taskBadgeClassName?: string;
|
|
104
110
|
}
|
|
105
111
|
/** Localised labels and text content for `ConversationPanel`. */
|
|
106
112
|
export interface ConversationPanelLabels {
|
|
@@ -133,6 +139,8 @@ export interface ConversationPanelLabels {
|
|
|
133
139
|
};
|
|
134
140
|
/** Accessible label for the row actions trigger button. Defaults to `"More actions"`. */
|
|
135
141
|
actionsLabel?: string;
|
|
142
|
+
/** Accessible (visually hidden) label announced for the unread indicator dot. Defaults to `"Unread"`. */
|
|
143
|
+
unreadIndicatorLabel?: string;
|
|
136
144
|
/** Accessible label for the sidebar toggle icon button. Required when `onToggle` is provided. */
|
|
137
145
|
closeAriaLabel?: string;
|
|
138
146
|
}
|
|
@@ -156,49 +164,29 @@ export interface ConversationPanelProps {
|
|
|
156
164
|
styles?: ConversationPanelStyles;
|
|
157
165
|
/** Extra class name(s) merged onto the panel root element. */
|
|
158
166
|
className?: string;
|
|
159
|
-
/**
|
|
160
|
-
* Builds the dropdown menu items for a conversation row.
|
|
161
|
-
* Receives the full item so actions can reflect per-item state (e.g. `isPinned` toggle).
|
|
162
|
-
* When omitted or returns an empty array, no actions trigger is rendered on rows.
|
|
163
|
-
*/
|
|
167
|
+
/** Builds dropdown actions for a row. When absent or empty, no action trigger is rendered. */
|
|
164
168
|
getActions?: (item: ConversationItem) => DropdownItem[];
|
|
165
|
-
/** Called when a row action menu opens
|
|
169
|
+
/** Called when a row action menu opens; receives the trigger button. */
|
|
166
170
|
onActionMenuOpen?: (item: ConversationItem, trigger: HTMLButtonElement) => void;
|
|
167
|
-
/**
|
|
168
|
-
* Called when the mobile sidebar toggle icon in the panel header is clicked.
|
|
169
|
-
* When provided, the toggle button becomes visible on mobile screens.
|
|
170
|
-
* The parent is responsible for managing `isOpen` state in response to this callback.
|
|
171
|
-
*/
|
|
171
|
+
/** Called when the panel header toggle button is clicked. When provided, the toggle is visible on mobile. */
|
|
172
172
|
onToggle?: () => void;
|
|
173
|
-
/**
|
|
174
|
-
* Content rendered in the end action group of the panel header bar.
|
|
175
|
-
* The app supplies any ReactNode — the library does not prescribe its content.
|
|
176
|
-
*/
|
|
173
|
+
/** Extra content rendered in the panel header action area. */
|
|
177
174
|
headerActions?: ReactNode;
|
|
178
175
|
/**
|
|
179
|
-
* Called when the user completes a
|
|
180
|
-
* `
|
|
181
|
-
* `targetGroupKey` is the group it was dropped into.
|
|
182
|
-
* `afterId` is the id of the item the dragged conversation should be placed after,
|
|
183
|
-
* or `null` when dropped at the top of the target group.
|
|
184
|
-
*
|
|
185
|
-
* The app derives the action type from `targetGroupKey`:
|
|
186
|
-
* - dropping into `Pinned` → pin the conversation
|
|
187
|
-
* - dragging from `Pinned` into another group → unpin
|
|
188
|
-
* - same-group drop → reorder
|
|
176
|
+
* Called when the user completes a drag-and-drop move.
|
|
177
|
+
* See `ConversationMove` for the payload shape.
|
|
189
178
|
*/
|
|
190
179
|
onMoveConversation?: (move: ConversationMove) => void;
|
|
191
|
-
/**
|
|
192
|
-
* Imperatively sets the active filter tab. When provided the panel switches
|
|
193
|
-
* to this tab; the user can still change it afterwards. Pass `undefined` to
|
|
194
|
-
* leave the current tab unchanged.
|
|
195
|
-
*/
|
|
180
|
+
/** Programmatically sets the active filter tab. Pass `undefined` to leave the tab unchanged. */
|
|
196
181
|
activeFilter?: FilterTab;
|
|
182
|
+
/** Called when the active filter tab changes. */
|
|
183
|
+
onActiveFilterChange?: (tab: FilterTab) => void;
|
|
197
184
|
/**
|
|
198
|
-
*
|
|
199
|
-
*
|
|
185
|
+
* When `true`, the filter tabs are not rendered and the list stays on
|
|
186
|
+
* whichever tab is active — `FilterTab.All` unless `activeFilter` says
|
|
187
|
+
* otherwise. Defaults to `false`.
|
|
200
188
|
*/
|
|
201
|
-
|
|
189
|
+
isFilterTabsHidden?: boolean;
|
|
202
190
|
}
|
|
203
191
|
/** Describes a completed drag-and-drop move in the conversation panel. */
|
|
204
192
|
export interface ConversationMove {
|
|
@@ -206,10 +194,7 @@ export interface ConversationMove {
|
|
|
206
194
|
draggedId: string;
|
|
207
195
|
/** The group the item was dropped into. */
|
|
208
196
|
targetGroupKey: FilterTab;
|
|
209
|
-
/**
|
|
210
|
-
* Id of the item the dragged conversation should be placed after.
|
|
211
|
-
* `null` means the item was dropped at the top of the target group.
|
|
212
|
-
*/
|
|
197
|
+
/** Item to insert after; `null` means top of the target group. */
|
|
213
198
|
afterId: string | null;
|
|
214
199
|
}
|
|
215
200
|
//# sourceMappingURL=panel-props.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"panel-props.d.ts","sourceRoot":"","sources":["../../src/models/panel-props.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AAEjE,
|
|
1
|
+
{"version":3,"file":"panel-props.d.ts","sourceRoot":"","sources":["../../src/models/panel-props.ts"],"names":[],"mappings":"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"}
|
package/models/virtual-row.d.ts
CHANGED
|
@@ -31,6 +31,8 @@ export interface RowStyles {
|
|
|
31
31
|
itemTitleClassName?: string;
|
|
32
32
|
/** CSS class applied to the icon badge in each conversation row. */
|
|
33
33
|
itemIconBadgeClassName?: string;
|
|
34
|
+
/** CSS class applied to the task pill badge in each conversation row. */
|
|
35
|
+
taskBadgeClassName?: string;
|
|
34
36
|
}
|
|
35
37
|
/** Data passed to every virtual row renderer via `react-window`'s `rowProps`. */
|
|
36
38
|
export interface RowRendererData {
|
|
@@ -54,6 +56,8 @@ export interface RowRendererData {
|
|
|
54
56
|
onActionMenuOpen?: (item: ConversationItem, trigger: HTMLButtonElement) => void;
|
|
55
57
|
/** Accessible label for the actions trigger button. */
|
|
56
58
|
actionsLabel?: string;
|
|
59
|
+
/** Accessible (visually hidden) label announced for the unread indicator dot. */
|
|
60
|
+
unreadIndicatorLabel?: string;
|
|
57
61
|
/** Typography/class overrides applied to virtual row elements. */
|
|
58
62
|
styles?: RowStyles;
|
|
59
63
|
/** Id of the conversation currently being dragged. `null` when no drag is in progress. */
|
|
@@ -70,12 +74,7 @@ export interface RowRendererData {
|
|
|
70
74
|
onDragOver: (id: string) => void;
|
|
71
75
|
/** Called when the drag cursor leaves a row. */
|
|
72
76
|
onDragLeave: () => void;
|
|
73
|
-
/**
|
|
74
|
-
* Called when the user drops onto a target row or group header.
|
|
75
|
-
* `targetId` is the item id or `FilterTab` sentinel for header drops.
|
|
76
|
-
* `targetGroupKey` is the group the item was dropped into.
|
|
77
|
-
* `afterId` is the id of the item to insert after, or `null` for top of group.
|
|
78
|
-
*/
|
|
77
|
+
/** Called when the user drops a conversation row onto a target position. */
|
|
79
78
|
onDrop: (targetId: string, targetGroupKey: FilterTab, afterId: string | null) => void;
|
|
80
79
|
}
|
|
81
80
|
//# sourceMappingURL=virtual-row.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"virtual-row.d.ts","sourceRoot":"","sources":["../../src/models/virtual-row.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AACtE,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEtD,OAAO,EAAE,cAAc,EAAE,CAAC;AAE1B,0DAA0D;AAC1D,MAAM,WAAW,cAAc;IAC7B,wBAAwB;IACxB,IAAI,EAAE,cAAc,CAAC,MAAM,CAAC;IAC5B,qDAAqD;IACrD,QAAQ,EAAE,SAAS,CAAC;IACpB,oCAAoC;IACpC,KAAK,EAAE,MAAM,CAAC;CACf;AAED,0DAA0D;AAC1D,MAAM,WAAW,mBAAmB;IAClC,wBAAwB;IACxB,IAAI,EAAE,cAAc,CAAC,IAAI,CAAC;IAC1B,kCAAkC;IAClC,IAAI,EAAE,gBAAgB,CAAC;IACvB,0EAA0E;IAC1E,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,gDAAgD;AAChD,MAAM,MAAM,UAAU,GAAG,cAAc,GAAG,mBAAmB,CAAC;AAE9D,kEAAkE;AAClE,MAAM,WAAW,SAAS;IACxB,wDAAwD;IACxD,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,2DAA2D;IAC3D,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,oEAAoE;IACpE,sBAAsB,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"virtual-row.d.ts","sourceRoot":"","sources":["../../src/models/virtual-row.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epam/ai-dial-conversation-panel",
|
|
3
3
|
"description": "Virtualized sidebar panel for browsing conversation history with grouping, tabs, and search",
|
|
4
|
-
"version": "1.1.0-dev.
|
|
4
|
+
"version": "1.1.0-dev.214",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./index.js",
|
|
@@ -18,14 +18,13 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"react-window": "^2.2.7",
|
|
21
|
-
"@epam/ai-dial-kit": "
|
|
21
|
+
"@epam/ai-dial-ui-kit": "^0.13.0-dev.26"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"react": "^19.0.0",
|
|
25
25
|
"@tabler/icons-react": "^3.0.0",
|
|
26
|
-
"@epam/ai-dial-chat-shared": "1.1.0-dev.
|
|
27
|
-
"@epam/ai-dial-
|
|
28
|
-
"@epam/ai-dial-sidebar": "1.1.0-dev.21"
|
|
26
|
+
"@epam/ai-dial-chat-shared": "1.1.0-dev.214",
|
|
27
|
+
"@epam/ai-dial-sidebar": "1.1.0-dev.214"
|
|
29
28
|
},
|
|
30
29
|
"repository": {
|
|
31
30
|
"type": "git",
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Active filter tab value; also used as the source/ownership of a conversation
|
|
3
|
-
* and to identify one of the collapsible groups in the conversation panel.
|
|
4
|
-
*/
|
|
1
|
+
/** Filter tab identifier; also used as conversation source and group key. */
|
|
5
2
|
export declare enum FilterTab {
|
|
6
3
|
All = "all",
|
|
7
4
|
Pinned = "pinned",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation-classification.d.ts","sourceRoot":"","sources":["../../src/types/conversation-classification.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"conversation-classification.d.ts","sourceRoot":"","sources":["../../src/types/conversation-classification.ts"],"names":[],"mappings":"AAAA,6EAA6E;AAC7E,oBAAY,SAAS;IACnB,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,OAAO,aAAa;IACpB,MAAM,WAAW;IACjB,YAAY,iBAAiB;CAC9B"}
|
|
@@ -5,12 +5,6 @@ export declare const SKELETON_ROW_COUNT = 15;
|
|
|
5
5
|
export declare const getSkeletonWidth: (i: number) => string;
|
|
6
6
|
/** Returns the inline-end padding Tailwind class for the row's ghost button based on action state. */
|
|
7
7
|
export declare const getButtonPaddingEnd: (hasActions: boolean, isMenuOpen: boolean) => string;
|
|
8
|
-
/**
|
|
9
|
-
* Returns the pixel height for a virtual list row.
|
|
10
|
-
*
|
|
11
|
-
* Items use `ITEM_ROW_HEIGHT` (32px content + 4px top gap).
|
|
12
|
-
* The first group header uses `FIRST_GROUP_HEADER_ROW_HEIGHT` (24px, no gap above).
|
|
13
|
-
* Subsequent group headers use `GROUP_HEADER_ROW_HEIGHT` (24px + 8px top gap).
|
|
14
|
-
*/
|
|
8
|
+
/** Returns the pixel height for a virtual list row (item, first group header, or subsequent group header). */
|
|
15
9
|
export declare const getRowHeight: (index: number, rowProps: RowRendererData) => number;
|
|
16
10
|
//# sourceMappingURL=conversation-row.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation-row.d.ts","sourceRoot":"","sources":["../../src/utils/conversation-row.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,eAAe,EAAkB,MAAM,uBAAuB,CAAC;AAE7E,iFAAiF;AACjF,eAAO,MAAM,kBAAkB,KAAK,CAAC;AAErC,4FAA4F;AAC5F,eAAO,MAAM,gBAAgB,GAAI,GAAG,MAAM,WAA+B,CAAC;AAE1E,sGAAsG;AACtG,eAAO,MAAM,mBAAmB,GAC9B,YAAY,OAAO,EACnB,YAAY,OAAO,KAClB,MAIF,CAAC;AAEF
|
|
1
|
+
{"version":3,"file":"conversation-row.d.ts","sourceRoot":"","sources":["../../src/utils/conversation-row.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,eAAe,EAAkB,MAAM,uBAAuB,CAAC;AAE7E,iFAAiF;AACjF,eAAO,MAAM,kBAAkB,KAAK,CAAC;AAErC,4FAA4F;AAC5F,eAAO,MAAM,gBAAgB,GAAI,GAAG,MAAM,WAA+B,CAAC;AAE1E,sGAAsG;AACtG,eAAO,MAAM,mBAAmB,GAC9B,YAAY,OAAO,EACnB,YAAY,OAAO,KAClB,MAIF,CAAC;AAEF,8GAA8G;AAC9G,eAAO,MAAM,YAAY,GACvB,OAAO,MAAM,EACb,UAAU,eAAe,KACxB,MAIF,CAAC"}
|
package/utils/drag.d.ts
CHANGED
|
@@ -6,20 +6,8 @@ import { FilterTab } from '../types/conversation-classification';
|
|
|
6
6
|
export declare const sourceToGroupKey: (source?: FilterTab) => FilterTab;
|
|
7
7
|
/** Returns the `FilterTab` of the virtual row containing the given item id. */
|
|
8
8
|
export declare const findGroupKeyForItem: (rows: VirtualRow[], id: string) => FilterTab | null;
|
|
9
|
-
/**
|
|
10
|
-
* Returns the set of groups that are valid drop targets for the given dragged item.
|
|
11
|
-
*
|
|
12
|
-
* Rules:
|
|
13
|
-
* - Same group as the drag source is always allowed (reorder).
|
|
14
|
-
* - Any non-Pinned group → Pinned is allowed (pin action).
|
|
15
|
-
* - Pinned → non-Pinned is allowed only when the item's `source` matches the target group (unpin action).
|
|
16
|
-
*/
|
|
9
|
+
/** Returns the set of groups that are valid drop targets for the given dragged item. */
|
|
17
10
|
export declare const computeAllowedDropGroups: (draggedId: string, draggingGroupKey: FilterTab | null, conversations: ConversationItem[]) => Set<FilterTab>;
|
|
18
|
-
/**
|
|
19
|
-
* Computes the `afterId` for a drop based on cursor vertical position within a row.
|
|
20
|
-
*
|
|
21
|
-
* - Bottom half of the row → insert after the item (`afterId = itemId`).
|
|
22
|
-
* - Top half → insert before the item (`afterId` = id of the preceding item in the group, or `null` for first).
|
|
23
|
-
*/
|
|
11
|
+
/** Returns the `afterId` for a drop based on cursor vertical position within a row. */
|
|
24
12
|
export declare const getDropAfterId: (e: Pick<DragEvent, "currentTarget" | "clientY">, itemId: string, rows: VirtualRow[], targetGroupKey: FilterTab) => string | null;
|
|
25
13
|
//# sourceMappingURL=drag.d.ts.map
|
package/utils/drag.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"drag.d.ts","sourceRoot":"","sources":["../../src/utils/drag.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AAGjE,2FAA2F;AAC3F,eAAO,MAAM,gBAAgB,GAAI,SAAS,SAAS,KAAG,SASrD,CAAC;AAEF,+EAA+E;AAC/E,eAAO,MAAM,mBAAmB,GAC9B,MAAM,UAAU,EAAE,EAClB,IAAI,MAAM,KACT,SAAS,GAAG,IAUd,CAAC;AAEF
|
|
1
|
+
{"version":3,"file":"drag.d.ts","sourceRoot":"","sources":["../../src/utils/drag.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AAGjE,2FAA2F;AAC3F,eAAO,MAAM,gBAAgB,GAAI,SAAS,SAAS,KAAG,SASrD,CAAC;AAEF,+EAA+E;AAC/E,eAAO,MAAM,mBAAmB,GAC9B,MAAM,UAAU,EAAE,EAClB,IAAI,MAAM,KACT,SAAS,GAAG,IAUd,CAAC;AAEF,wFAAwF;AACxF,eAAO,MAAM,wBAAwB,GACnC,WAAW,MAAM,EACjB,kBAAkB,SAAS,GAAG,IAAI,EAClC,eAAe,gBAAgB,EAAE,KAChC,GAAG,CAAC,SAAS,CAiBf,CAAC;AAEF,uFAAuF;AACvF,eAAO,MAAM,cAAc,GACzB,GAAG,IAAI,CAAC,SAAS,EAAE,eAAe,GAAG,SAAS,CAAC,EAC/C,QAAQ,MAAM,EACd,MAAM,UAAU,EAAE,EAClB,gBAAgB,SAAS,KACxB,MAAM,GAAG,IAkBX,CAAC"}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { DropdownItem } from '@epam/ai-dial-ui-kit';
|
|
2
|
-
import { FC } from 'react';
|
|
3
|
-
import { ConversationItem } from '../../models/panel-props';
|
|
4
|
-
/** Props for `ConversationGroup`. */
|
|
5
|
-
export interface ConversationGroupProps {
|
|
6
|
-
/** Section heading label. */
|
|
7
|
-
label: string;
|
|
8
|
-
/** Conversation items belonging to this group. */
|
|
9
|
-
items: ConversationItem[];
|
|
10
|
-
/** `id` of the currently active conversation. */
|
|
11
|
-
activeConversationId?: string;
|
|
12
|
-
/** Called when the user selects a conversation row. */
|
|
13
|
-
onSelectConversation: (id: string) => void;
|
|
14
|
-
/**
|
|
15
|
-
* Builds the dropdown menu items for a row.
|
|
16
|
-
* Receives the item so actions can reflect per-item state (e.g. pin toggle).
|
|
17
|
-
* When omitted or returns an empty array, no action trigger is rendered.
|
|
18
|
-
*/
|
|
19
|
-
getActions?: (item: ConversationItem) => DropdownItem[];
|
|
20
|
-
/** Called when a row action menu opens. */
|
|
21
|
-
onActionMenuOpen?: (item: ConversationItem, trigger: HTMLButtonElement) => void;
|
|
22
|
-
/** Accessible label for the actions trigger button. Defaults to `"More actions"`. */
|
|
23
|
-
actionsLabel?: string;
|
|
24
|
-
/** Typography class applied to the group header button. Defaults to `'dial-tiny-semi-text uppercase'`. */
|
|
25
|
-
groupHeaderClassName?: string;
|
|
26
|
-
/** Typography class applied to the conversation title text. */
|
|
27
|
-
itemTitleClassName?: string;
|
|
28
|
-
}
|
|
29
|
-
/** Collapsible section rendering a labelled group of conversation rows. */
|
|
30
|
-
export declare const ConversationGroup: FC<ConversationGroupProps>;
|
|
31
|
-
//# sourceMappingURL=ConversationGroup.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ConversationGroup.d.ts","sourceRoot":"","sources":["../../../src/components/ConversationGroup/ConversationGroup.tsx"],"names":[],"mappings":"AACA,OAAO,EAAuB,KAAK,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAE9E,OAAO,EAAE,KAAK,EAAE,EAAyB,MAAM,OAAO,CAAC;AACvD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAIjE,qCAAqC;AACrC,MAAM,WAAW,sBAAsB;IACrC,6BAA6B;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,kDAAkD;IAClD,KAAK,EAAE,gBAAgB,EAAE,CAAC;IAC1B,iDAAiD;IACjD,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,uDAAuD;IACvD,oBAAoB,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C;;;;OAIG;IACH,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,gBAAgB,KAAK,YAAY,EAAE,CAAC;IACxD,2CAA2C;IAC3C,gBAAgB,CAAC,EAAE,CACjB,IAAI,EAAE,gBAAgB,EACtB,OAAO,EAAE,iBAAiB,KACvB,IAAI,CAAC;IACV,qFAAqF;IACrF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,0GAA0G;IAC1G,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,+DAA+D;IAC/D,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,2EAA2E;AAC3E,eAAO,MAAM,iBAAiB,EAAE,EAAE,CAAC,sBAAsB,CAmExD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ConversationRow.d.ts","sourceRoot":"","sources":["../../../src/components/ConversationGroup/ConversationRow.tsx"],"names":[],"mappings":"AAKA,OAAO,EASL,KAAK,YAAY,EAClB,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EAAiD,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAC/E,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AAKpE,mCAAmC;AACnC,MAAM,WAAW,oBAAoB;IACnC,wCAAwC;IACxC,IAAI,EAAE,gBAAgB,CAAC;IACvB,qDAAqD;IACrD,QAAQ,EAAE,OAAO,CAAC;IAClB,sEAAsE;IACtE,oBAAoB,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,uEAAuE;IACvE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,gBAAgB,KAAK,YAAY,EAAE,CAAC;IACxD,gDAAgD;IAChD,gBAAgB,CAAC,EAAE,CACjB,IAAI,EAAE,gBAAgB,EACtB,OAAO,EAAE,iBAAiB,KACvB,IAAI,CAAC;IACV,qFAAqF;IACrF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,yFAAyF;IACzF,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,yEAAyE;IACzE,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC;;;OAGG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,mEAAmE;IACnE,IAAI,CAAC,EAAE,UAAU,EAAE,CAAC;IACpB,qFAAqF;IACrF,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,qDAAqD;IACrD,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,8FAA8F;IAC9F,iBAAiB,CAAC,EAAE,GAAG,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC;IAC1C,qDAAqD;IACrD,WAAW,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,kDAAkD;IAClD,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IACvB,mDAAmD;IACnD,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,mDAAmD;IACnD,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,gDAAgD;IAChD,MAAM,CAAC,EAAE,CACP,QAAQ,EAAE,MAAM,EAChB,cAAc,EAAE,SAAS,EACzB,OAAO,EAAE,MAAM,GAAG,IAAI,KACnB,IAAI,CAAC;CACX;AAED,8GAA8G;AAC9G,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,oBAAoB,CAoLpD,CAAC"}
|