@epam/ai-dial-attachment-input 1.1.0-dev.49 → 1.1.0-dev.492
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/AttachmentCard/AttachmentCard.d.ts.map +1 -1
- package/components/AttachmentCard/Attachments/Actions.d.ts +3 -5
- package/components/AttachmentCard/Attachments/Actions.d.ts.map +1 -1
- package/components/AttachmentCard/Attachments/File.d.ts.map +1 -1
- package/components/AttachmentCard/Attachments/Image.d.ts +2 -0
- package/components/AttachmentCard/Attachments/Image.d.ts.map +1 -1
- package/components/AttachmentGroup/AttachmentGroup.d.ts +1 -1
- package/components/AttachmentGroup/AttachmentGroup.d.ts.map +1 -1
- package/components/AttachmentTray/AttachmentTray.d.ts.map +1 -1
- package/constants/attachment-group.d.ts +1 -3
- package/constants/attachment-group.d.ts.map +1 -1
- package/hooks/useClipboardPaste.d.ts +1 -1
- package/hooks/useClipboardPaste.d.ts.map +1 -1
- package/index.css +1 -1
- package/index.d.ts +4 -5
- package/index.d.ts.map +1 -1
- package/index.js +355 -435
- package/models/attachment-card.d.ts +11 -9
- package/models/attachment-card.d.ts.map +1 -1
- package/models/attachment-file-row.d.ts +8 -0
- package/models/attachment-file-row.d.ts.map +1 -1
- package/models/attachment-group.d.ts +2 -24
- package/models/attachment-group.d.ts.map +1 -1
- package/models/attachment-tray.d.ts +2 -0
- package/models/attachment-tray.d.ts.map +1 -1
- package/package.json +8 -6
- package/utils/attachment.d.ts +1 -4
- package/utils/attachment.d.ts.map +1 -1
- package/components/AttachmentCard/Attachments/Audio.d.ts +0 -20
- package/components/AttachmentCard/Attachments/Audio.d.ts.map +0 -1
- package/components/AttachmentMoreTile/AttachmentMoreTile.d.ts +0 -5
- package/components/AttachmentMoreTile/AttachmentMoreTile.d.ts.map +0 -1
- package/models/attachment-more-tile.d.ts +0 -54
- package/models/attachment-more-tile.d.ts.map +0 -1
|
@@ -19,8 +19,6 @@ export interface AttachmentCardState {
|
|
|
19
19
|
isImage: boolean;
|
|
20
20
|
/** Whether the attachment should render as a link tile. */
|
|
21
21
|
isLink: boolean;
|
|
22
|
-
/** Whether the attachment should render as an audio player tile. */
|
|
23
|
-
isAudio: boolean;
|
|
24
22
|
/** Icon component representing the attachment's type. */
|
|
25
23
|
BottomIcon: Icon | null;
|
|
26
24
|
/** Human-readable type/status label rendered next to `BottomIcon`. */
|
|
@@ -32,8 +30,14 @@ export interface AttachmentCardColors {
|
|
|
32
30
|
background?: string;
|
|
33
31
|
/** Tile border color in the default state. */
|
|
34
32
|
border?: string;
|
|
33
|
+
/** Tile background color on hover. */
|
|
34
|
+
backgroundHover?: string;
|
|
35
35
|
/** Tile border color on hover. */
|
|
36
36
|
borderHover?: string;
|
|
37
|
+
/** Tile background color in the selected state. */
|
|
38
|
+
backgroundSelected?: string;
|
|
39
|
+
/** Tile border color in the selected state. */
|
|
40
|
+
borderSelected?: string;
|
|
37
41
|
/** Tile focus outline color. */
|
|
38
42
|
focusOutline?: string;
|
|
39
43
|
/** Tile background color in the error state. */
|
|
@@ -52,17 +56,13 @@ export interface AttachmentCardColors {
|
|
|
52
56
|
hoverIconColor?: string;
|
|
53
57
|
/** Upload progress track background color. */
|
|
54
58
|
trackBackground?: string;
|
|
55
|
-
/** Upload progress indeterminate fill color. */
|
|
56
|
-
fillBackground?: string;
|
|
57
59
|
}
|
|
58
60
|
/** Typography overrides for the `AttachmentCard` component. */
|
|
59
61
|
export interface AttachmentCardTypography {
|
|
60
62
|
/** Utility class applied to the file name text. Defaults to `'dial-tiny-text'`. */
|
|
61
63
|
fontClassName?: string;
|
|
62
|
-
/** Utility class applied to the bottom meta label (file type / status). Defaults to `'dial-
|
|
64
|
+
/** Utility class applied to the bottom meta label (file type / status). Defaults to `'dial-caption-text'`. */
|
|
63
65
|
metaClassName?: string;
|
|
64
|
-
/** Utility class applied to the placeholder icon shown while the image is loading. Defaults to `'text-secondary'`. */
|
|
65
|
-
placeholderIconClassName?: string;
|
|
66
66
|
}
|
|
67
67
|
/** Combined style overrides (colors, typography, and shape) for the `AttachmentCard` component. */
|
|
68
68
|
export interface AttachmentCardStyles {
|
|
@@ -85,8 +85,8 @@ export interface AttachmentCardLabels extends AttachmentTypeLabels {
|
|
|
85
85
|
expandLabel?: string;
|
|
86
86
|
/** Accessible label for the loading spinner shown while the attachment is uploading. Defaults to `'Loading attachment'`. */
|
|
87
87
|
loadingLabel?: string;
|
|
88
|
-
/**
|
|
89
|
-
|
|
88
|
+
/** Accessible label for the file card's in-progress upload progress bar. Defaults to `'Uploading'`. */
|
|
89
|
+
uploadingLabel?: string;
|
|
90
90
|
/** Accessible label for the download button. Defaults to `'Download attachment'`. */
|
|
91
91
|
downloadLabel?: string;
|
|
92
92
|
/** Accessible label for the open-in-new-tab button. Defaults to `'Open in new tab'`. */
|
|
@@ -112,5 +112,7 @@ export interface AttachmentCardProps {
|
|
|
112
112
|
styles?: AttachmentCardStyles;
|
|
113
113
|
/** Called when the user activates the download button. Receives the attachment `id`. */
|
|
114
114
|
onDownload?: (id: string) => void;
|
|
115
|
+
/** Whether this attachment is the one currently open in the canvas panel. Renders the tile's selected visual state. */
|
|
116
|
+
isSelected?: boolean;
|
|
115
117
|
}
|
|
116
118
|
//# sourceMappingURL=attachment-card.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attachment-card.d.ts","sourceRoot":"","sources":["../../src/models/attachment-card.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAEhD,wGAAwG;AACxG,MAAM,WAAW,oBAAoB;IACnC,wEAAwE;IACxE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,wEAAwE;IACxE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kEAAkE;IAClE,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,kFAAkF;AAClF,MAAM,WAAW,mBAAmB;IAClC,qDAAqD;IACrD,SAAS,EAAE,OAAO,CAAC;IACnB,8CAA8C;IAC9C,OAAO,EAAE,OAAO,CAAC;IACjB,wEAAwE;IACxE,OAAO,EAAE,OAAO,CAAC;IACjB,2DAA2D;IAC3D,MAAM,EAAE,OAAO,CAAC;IAChB,
|
|
1
|
+
{"version":3,"file":"attachment-card.d.ts","sourceRoot":"","sources":["../../src/models/attachment-card.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,6 +7,10 @@ export interface FileAttachmentLabels extends AttachmentTypeLabels {
|
|
|
7
7
|
clickLabel?: string;
|
|
8
8
|
/** Accessible label for the retry action. Defaults to `'Retry upload'`. */
|
|
9
9
|
retryLabel?: string;
|
|
10
|
+
/** Accessible label for the remove action. Defaults to `'Remove attachment'`. */
|
|
11
|
+
removeLabel?: string;
|
|
12
|
+
/** Accessible label for the open-in-new-tab action on link attachments. Defaults to `'Open in new tab'`. */
|
|
13
|
+
openInNewTabLabel?: string;
|
|
10
14
|
/** Human-readable size text (e.g. `'2.4 MB'`), appended after the type label in the meta line (`'.pdf · 2.4 MB'`) when derivable; omitted from the meta line if absent. */
|
|
11
15
|
sizeLabel?: string;
|
|
12
16
|
/** Accessible label for the in-progress upload progress bar. Defaults to `'Uploading'`. */
|
|
@@ -34,6 +38,8 @@ export interface FileAttachmentStyles {
|
|
|
34
38
|
export interface FileAttachmentProps {
|
|
35
39
|
/** The non-previewable attachment this row represents. */
|
|
36
40
|
attachment: DisplayAttachment;
|
|
41
|
+
/** Current search query — when set, matches in the file name are highlighted. Defaults to `''`. */
|
|
42
|
+
searchQuery?: string;
|
|
37
43
|
/** Called when the user clicks the row or its download button. */
|
|
38
44
|
onClick?: (id: string) => void;
|
|
39
45
|
/** Called when the user retries a failed upload. */
|
|
@@ -56,5 +62,7 @@ export interface FileAttachmentProps {
|
|
|
56
62
|
cssVars?: CSSProperties;
|
|
57
63
|
/** Whether the attachment is expandable (vs. clickable). Defaults to `false`. */
|
|
58
64
|
isExpandable?: boolean;
|
|
65
|
+
/** Whether this attachment is the one currently open in the canvas panel. Renders the tile's selected visual state. */
|
|
66
|
+
isSelected?: boolean;
|
|
59
67
|
}
|
|
60
68
|
//# sourceMappingURL=attachment-file-row.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attachment-file-row.d.ts","sourceRoot":"","sources":["../../src/models/attachment-file-row.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACrB,iBAAiB,EAClB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AACtC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAE9D,2DAA2D;AAC3D,MAAM,WAAW,oBAAqB,SAAQ,oBAAoB;IAChE,qFAAqF;IACrF,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,2EAA2E;IAC3E,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,2KAA2K;IAC3K,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gJAAgJ;IAChJ,iBAAiB,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,qBAAqB,EAAE,MAAM,CAAC,CAAC,CAAC;IACnE,oIAAoI;IACpI,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,+DAA+D;AAC/D,MAAM,WAAW,wBAAwB;IACvC,yFAAyF;IACzF,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iHAAiH;IACjH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,0DAA0D;AAC1D,MAAM,WAAW,oBAAoB;IACnC,kEAAkE;IAClE,UAAU,CAAC,EAAE,wBAAwB,CAAC;IACtC,wDAAwD;IACxD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wDAAwD;AACxD,MAAM,WAAW,mBAAmB;IAClC,0DAA0D;IAC1D,UAAU,EAAE,iBAAiB,CAAC;IAC9B,kEAAkE;IAClE,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,oDAAoD;IACpD,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,wDAAwD;IACxD,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,uDAAuD;IACvD,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,qDAAqD;IACrD,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,qIAAqI;IACrI,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,mCAAmC;IACnC,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,0EAA0E;IAC1E,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,0EAA0E;IAC1E,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,yDAAyD;IACzD,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,iFAAiF;IACjF,YAAY,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"attachment-file-row.d.ts","sourceRoot":"","sources":["../../src/models/attachment-file-row.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACrB,iBAAiB,EAClB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AACtC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAE9D,2DAA2D;AAC3D,MAAM,WAAW,oBAAqB,SAAQ,oBAAoB;IAChE,qFAAqF;IACrF,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,2EAA2E;IAC3E,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iFAAiF;IACjF,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,4GAA4G;IAC5G,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,2KAA2K;IAC3K,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gJAAgJ;IAChJ,iBAAiB,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,qBAAqB,EAAE,MAAM,CAAC,CAAC,CAAC;IACnE,oIAAoI;IACpI,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,+DAA+D;AAC/D,MAAM,WAAW,wBAAwB;IACvC,yFAAyF;IACzF,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iHAAiH;IACjH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,0DAA0D;AAC1D,MAAM,WAAW,oBAAoB;IACnC,kEAAkE;IAClE,UAAU,CAAC,EAAE,wBAAwB,CAAC;IACtC,wDAAwD;IACxD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wDAAwD;AACxD,MAAM,WAAW,mBAAmB;IAClC,0DAA0D;IAC1D,UAAU,EAAE,iBAAiB,CAAC;IAC9B,mGAAmG;IACnG,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kEAAkE;IAClE,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,oDAAoD;IACpD,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,wDAAwD;IACxD,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,uDAAuD;IACvD,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,qDAAqD;IACrD,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,qIAAqI;IACrI,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,mCAAmC;IACnC,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,0EAA0E;IAC1E,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,0EAA0E;IAC1E,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,yDAAyD;IACzD,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,iFAAiF;IACjF,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,uHAAuH;IACvH,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB"}
|
|
@@ -1,23 +1,5 @@
|
|
|
1
1
|
import { DisplayAttachment } from '@epam/ai-dial-chat-shared';
|
|
2
2
|
import { AttachmentTypeLabels } from './attachment-card';
|
|
3
|
-
/** How the unified attachment tile grid should render for a given total attachment count. */
|
|
4
|
-
export declare enum AttachmentTilesLayout {
|
|
5
|
-
/** No attachments. */
|
|
6
|
-
None = "none",
|
|
7
|
-
/** Below the collapse threshold, or expanded: every tile shown. */
|
|
8
|
-
AllVisible = "all-visible",
|
|
9
|
-
/** At/above the collapse threshold, not yet expanded: a few tiles + a "+N" tile. */
|
|
10
|
-
Collapsed = "collapsed"
|
|
11
|
-
}
|
|
12
|
-
/** Rendering plan for the unified attachment tile grid. */
|
|
13
|
-
export interface AttachmentTilesPlan {
|
|
14
|
-
/** Which rendering mode the grid should use. */
|
|
15
|
-
layout: AttachmentTilesLayout;
|
|
16
|
-
/** Number of tiles to actually render. */
|
|
17
|
-
visibleCount: number;
|
|
18
|
-
/** Number of attachments hidden behind the "+N" tile (0 unless `layout` is `Collapsed`). */
|
|
19
|
-
hiddenCount: number;
|
|
20
|
-
}
|
|
21
3
|
/** Localised accessible labels for the `AttachmentGroup` component. */
|
|
22
4
|
export interface AttachmentGroupLabels extends AttachmentTypeLabels {
|
|
23
5
|
/** Accessible label for the group region. Defaults to `'Attachments'`. */
|
|
@@ -26,8 +8,6 @@ export interface AttachmentGroupLabels extends AttachmentTypeLabels {
|
|
|
26
8
|
clickLabel?: string;
|
|
27
9
|
/** Accessible label for each row's retry action. Defaults to `'Retry upload'`. */
|
|
28
10
|
retryLabel?: string;
|
|
29
|
-
/** Label for the "show less" header action, shown once the group has been expanded via the "+N" tile. Defaults to `'Show less'`. */
|
|
30
|
-
showLessLabel?: string;
|
|
31
11
|
/** Label for the "download all" header action, shown whenever the group has 2+ attachments. Defaults to `'Download all'`. */
|
|
32
12
|
downloadAllLabel?: string;
|
|
33
13
|
/** Accessible label for each tile's open-in-new-tab button. Defaults to `'Open in new tab'`. */
|
|
@@ -41,10 +21,6 @@ export interface AttachmentGroupLabels extends AttachmentTypeLabels {
|
|
|
41
21
|
}
|
|
42
22
|
/** CSS custom-property overrides for the `AttachmentGroup` component. */
|
|
43
23
|
export interface AttachmentGroupColors {
|
|
44
|
-
/** Group container background color. */
|
|
45
|
-
background?: string;
|
|
46
|
-
/** Group container border color. */
|
|
47
|
-
border?: string;
|
|
48
24
|
/** Header icon/label/download-all button text color. */
|
|
49
25
|
text?: string;
|
|
50
26
|
}
|
|
@@ -80,5 +56,7 @@ export interface AttachmentGroupProps {
|
|
|
80
56
|
labels?: AttachmentGroupLabels;
|
|
81
57
|
/** Style overrides for the group. */
|
|
82
58
|
styles?: AttachmentGroupStyles;
|
|
59
|
+
/** ID of the attachment currently open in the canvas panel, if any. Renders that tile's selected visual state. */
|
|
60
|
+
selectedAttachmentId?: string;
|
|
83
61
|
}
|
|
84
62
|
//# sourceMappingURL=attachment-group.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attachment-group.d.ts","sourceRoot":"","sources":["../../src/models/attachment-group.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAE9D,
|
|
1
|
+
{"version":3,"file":"attachment-group.d.ts","sourceRoot":"","sources":["../../src/models/attachment-group.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAE9D,uEAAuE;AACvE,MAAM,WAAW,qBAAsB,SAAQ,oBAAoB;IACjE,0EAA0E;IAC1E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,8FAA8F;IAC9F,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,kFAAkF;IAClF,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,6HAA6H;IAC7H,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gGAAgG;IAChG,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;CAC5C;AAED,yEAAyE;AACzE,MAAM,WAAW,qBAAqB;IACpC,wDAAwD;IACxD,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,gEAAgE;AAChE,MAAM,WAAW,yBAAyB;IACxC,4GAA4G;IAC5G,oBAAoB,CAAC,EAAE,MAAM,CAAC;CAC/B;AAED,2DAA2D;AAC3D,MAAM,WAAW,qBAAqB;IACpC,wDAAwD;IACxD,MAAM,CAAC,EAAE,qBAAqB,CAAC;IAC/B,iDAAiD;IACjD,UAAU,CAAC,EAAE,yBAAyB,CAAC;IACvC,wDAAwD;IACxD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,yDAAyD;AACzD,MAAM,WAAW,oBAAoB;IACnC,sEAAsE;IACtE,WAAW,EAAE,iBAAiB,EAAE,CAAC;IACjC,mGAAmG;IACnG,iBAAiB,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC;;;;OAIG;IACH,aAAa,CAAC,EAAE,CAAC,WAAW,EAAE,iBAAiB,EAAE,KAAK,IAAI,CAAC;IAC3D,oDAAoD;IACpD,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,gKAAgK;IAChK,MAAM,CAAC,EAAE,qBAAqB,CAAC;IAC/B,qCAAqC;IACrC,MAAM,CAAC,EAAE,qBAAqB,CAAC;IAC/B,kHAAkH;IAClH,oBAAoB,CAAC,EAAE,MAAM,CAAC;CAC/B"}
|
|
@@ -9,6 +9,8 @@ export interface AttachmentTrayLabels {
|
|
|
9
9
|
retryLabel?: string;
|
|
10
10
|
/** Accessible label forwarded to each card's root when it is interactive. When omitted, the card's own default (`'Open attachment'`) applies. */
|
|
11
11
|
clickLabel?: string;
|
|
12
|
+
/** Accessible label for each card's in-progress upload progress bar. Defaults to `'Uploading'`. */
|
|
13
|
+
uploadingLabel?: string;
|
|
12
14
|
}
|
|
13
15
|
/** Style overrides for the `AttachmentTray` component. */
|
|
14
16
|
export interface AttachmentTrayStyles {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attachment-tray.d.ts","sourceRoot":"","sources":["../../src/models/attachment-tray.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAEnE,sEAAsE;AACtE,MAAM,WAAW,oBAAoB;IACnC,4EAA4E;IAC5E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,sDAAsD;IACtD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,wEAAwE;IACxE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iJAAiJ;IACjJ,UAAU,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"attachment-tray.d.ts","sourceRoot":"","sources":["../../src/models/attachment-tray.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAEnE,sEAAsE;AACtE,MAAM,WAAW,oBAAoB;IACnC,4EAA4E;IAC5E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,sDAAsD;IACtD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,wEAAwE;IACxE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iJAAiJ;IACjJ,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,mGAAmG;IACnG,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,0DAA0D;AAC1D,MAAM,WAAW,oBAAoB;IACnC,wDAAwD;IACxD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wDAAwD;AACxD,MAAM,WAAW,mBAAmB;IAClC,0CAA0C;IAC1C,WAAW,EAAE,iBAAiB,EAAE,CAAC;IACjC,uDAAuD;IACvD,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,+DAA+D;IAC/D,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,gGAAgG;IAChG,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,0HAA0H;IAC1H,iBAAiB,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,4FAA4F;IAC5F,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,oCAAoC;IACpC,MAAM,CAAC,EAAE,oBAAoB,CAAC;CAC/B"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epam/ai-dial-attachment-input",
|
|
3
3
|
"description": "File attachment input components with upload validation, drag-and-drop, and progress tracking",
|
|
4
|
-
"version": "1.1.0-dev.
|
|
4
|
+
"version": "1.1.0-dev.492",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./index.js",
|
|
@@ -9,18 +9,20 @@
|
|
|
9
9
|
"types": "./index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
"./package.json": "./package.json",
|
|
12
|
-
"./styles.css": "./
|
|
12
|
+
"./styles.css": "./index.css",
|
|
13
13
|
".": {
|
|
14
14
|
"types": "./index.d.ts",
|
|
15
15
|
"import": "./index.js",
|
|
16
16
|
"default": "./index.js"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@tabler/icons-react": "^3.44.0"
|
|
21
|
+
},
|
|
19
22
|
"peerDependencies": {
|
|
20
|
-
"@epam/ai-dial-chat-shared": "1.1.0-dev.
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"@epam/ai-dial-ui-kit": "^0.13.0-dev.12"
|
|
23
|
+
"@epam/ai-dial-chat-shared": "1.1.0-dev.492",
|
|
24
|
+
"react": "^19.2.8",
|
|
25
|
+
"@epam/ai-dial-ui-kit": "^0.14.2"
|
|
24
26
|
},
|
|
25
27
|
"repository": {
|
|
26
28
|
"type": "git",
|
package/utils/attachment.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { DisplayAttachment } from '@epam/ai-dial-chat-shared';
|
|
2
2
|
import { Icon } from '@tabler/icons-react';
|
|
3
3
|
import { AttachmentCardState, AttachmentTypeLabels } from '../models/attachment-card';
|
|
4
|
-
import { AttachmentTilesPlan } from '../models/attachment-group';
|
|
5
4
|
/** Generates a unique identifier for an attachment. */
|
|
6
5
|
export declare const generateAttachmentId: () => string;
|
|
7
|
-
/** Returns the name without its trailing file extension. */
|
|
6
|
+
/** Returns the name without its trailing file extension. Returns an empty string when `name` is nullish. */
|
|
8
7
|
export declare const getNameWithoutExtension: (name: string) => string;
|
|
9
8
|
/** Converts an array of MIME type strings (including wildcards) into a comma-separated human-readable label string. */
|
|
10
9
|
export declare const mimeTypesToExtensionLabels: (types: string[], wildcardLabels?: Record<string, string>) => string;
|
|
@@ -24,6 +23,4 @@ export declare const getAttachmentIcon: (contentType: string) => Icon;
|
|
|
24
23
|
export declare const getExtFromContentType: (contentType: string) => string | undefined;
|
|
25
24
|
/** Derives the display state (icons, labels, color classes) an AttachmentCard needs to render a given attachment. */
|
|
26
25
|
export declare const getAttachmentCardState: (attachment: DisplayAttachment, typeLabels?: AttachmentTypeLabels) => AttachmentCardState;
|
|
27
|
-
/** Decides how the unified tile grid should render for `totalCount` attachments, given whether the group is expanded. */
|
|
28
|
-
export declare const getAttachmentTilesPlan: (totalCount: number, isExpanded: boolean) => AttachmentTilesPlan;
|
|
29
26
|
//# sourceMappingURL=attachment.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attachment.d.ts","sourceRoot":"","sources":["../../src/utils/attachment.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAMnE,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"attachment.d.ts","sourceRoot":"","sources":["../../src/utils/attachment.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAMnE,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAgChD,OAAO,KAAK,EACV,mBAAmB,EACnB,oBAAoB,EACrB,MAAM,2BAA2B,CAAC;AAEnC,uDAAuD;AACvD,eAAO,MAAM,oBAAoB,QAAO,MACgB,CAAC;AAEzD,4GAA4G;AAC5G,eAAO,MAAM,uBAAuB,GAAI,MAAM,MAAM,KAAG,MAItD,CAAC;AAcF,uHAAuH;AACvH,eAAO,MAAM,0BAA0B,GACrC,OAAO,MAAM,EAAE,EACf,iBAAgB,MAAM,CAAC,MAAM,EAAE,MAAM,CAAwB,KAC5D,MAeF,CAAC;AAEF;;;;;;;;GAQG;AACH,eAAO,MAAM,iBAAiB,GAC5B,UAAU,MAAM,EAChB,cAAc,MAAM,EAAE,KACrB,OAUF,CAAC;AAEF,wGAAwG;AACxG,eAAO,MAAM,iBAAiB,GAAI,aAAa,MAAM,KAAG,IA0FvD,CAAC;AAUF,4GAA4G;AAC5G,eAAO,MAAM,qBAAqB,GAChC,aAAa,MAAM,KAClB,MAAM,GAAG,SAUX,CAAC;AA6BF,qHAAqH;AACrH,eAAO,MAAM,sBAAsB,GACjC,YAAY,iBAAiB,EAC7B,aAAY,oBAAyB,KACpC,mBAiBF,CAAC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { DisplayAttachment } from '@epam/ai-dial-chat-shared';
|
|
2
|
-
import { CSSProperties, FC } from 'react';
|
|
3
|
-
import { AttachmentCardLabels, AttachmentCardStyles } from '../../../models/attachment-card';
|
|
4
|
-
interface AudioAttachmentProps {
|
|
5
|
-
attachment: DisplayAttachment;
|
|
6
|
-
searchQuery?: string;
|
|
7
|
-
/** Called when the user clicks the card body — opens the attachment canvas. */
|
|
8
|
-
onClick?: (id: string) => void;
|
|
9
|
-
/** Called when the user clicks the download button. */
|
|
10
|
-
onDownload?: (id: string) => void;
|
|
11
|
-
/** Called when the user clicks the remove button. */
|
|
12
|
-
onRemove?: (id: string) => void;
|
|
13
|
-
labels?: AttachmentCardLabels;
|
|
14
|
-
styles?: AttachmentCardStyles;
|
|
15
|
-
cssVars?: CSSProperties;
|
|
16
|
-
}
|
|
17
|
-
/** Widescreen tile for a single audio attachment inside the composer tray. */
|
|
18
|
-
export declare const AudioAttachment: FC<AudioAttachmentProps>;
|
|
19
|
-
export {};
|
|
20
|
-
//# sourceMappingURL=Audio.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Audio.d.ts","sourceRoot":"","sources":["../../../../src/components/AttachmentCard/Attachments/Audio.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAGlB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAE,aAAa,EAAE,KAAK,EAAE,EAAsB,MAAM,OAAO,CAAC;AACnE,OAAO,EACL,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,iCAAiC,CAAC;AAIzC,UAAU,oBAAoB;IAC5B,UAAU,EAAE,iBAAiB,CAAC;IAC9B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,+EAA+E;IAC/E,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,uDAAuD;IACvD,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,qDAAqD;IACrD,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,OAAO,CAAC,EAAE,aAAa,CAAC;CACzB;AAED,8EAA8E;AAC9E,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,oBAAoB,CAuFpD,CAAC"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
|
-
import { AttachmentMoreTileProps } from '../../models/attachment-more-tile';
|
|
3
|
-
/** Square placeholder tile shown in the attachment grid: a "+N" overflow tile when collapsed, or a collapse-icon tile when expanded. */
|
|
4
|
-
export declare const AttachmentMoreTile: FC<AttachmentMoreTileProps>;
|
|
5
|
-
//# sourceMappingURL=AttachmentMoreTile.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AttachmentMoreTile.d.ts","sourceRoot":"","sources":["../../../src/components/AttachmentMoreTile/AttachmentMoreTile.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAEhC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AAGjF,wIAAwI;AACxI,eAAO,MAAM,kBAAkB,EAAE,EAAE,CAAC,uBAAuB,CAuC1D,CAAC"}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
/** CSS custom-property overrides for the `AttachmentMoreTile` component. */
|
|
3
|
-
export interface AttachmentMoreTileColors {
|
|
4
|
-
/** Tile background color in the default state. */
|
|
5
|
-
background?: string;
|
|
6
|
-
/** Tile border color in the default state. */
|
|
7
|
-
border?: string;
|
|
8
|
-
/** Tile text/icon color in the default state. */
|
|
9
|
-
color?: string;
|
|
10
|
-
/** Tile background color on hover. */
|
|
11
|
-
backgroundHover?: string;
|
|
12
|
-
/** Tile text/icon color on hover. */
|
|
13
|
-
colorHover?: string;
|
|
14
|
-
/** Tile border color on hover. */
|
|
15
|
-
borderHover?: string;
|
|
16
|
-
/** Tile focus outline color. */
|
|
17
|
-
focusOutline?: string;
|
|
18
|
-
}
|
|
19
|
-
/** User-visible strings for the `AttachmentMoreTile` component. */
|
|
20
|
-
export interface AttachmentMoreTileLabels {
|
|
21
|
-
/**
|
|
22
|
-
* Accessible label. Defaults to `'Show {count} more attachments'`; pass an
|
|
23
|
-
* explicit label (e.g. `'Show less'`) when overriding `children`.
|
|
24
|
-
*/
|
|
25
|
-
ariaLabel?: string;
|
|
26
|
-
}
|
|
27
|
-
/** Typography overrides for the `AttachmentMoreTile` component. */
|
|
28
|
-
export interface AttachmentMoreTileTypography {
|
|
29
|
-
/** Typography class applied to the tile's text/icon content. Defaults to `'dial-small-semi-text'`. */
|
|
30
|
-
fontClassName?: string;
|
|
31
|
-
}
|
|
32
|
-
/** Style overrides for the `AttachmentMoreTile` component. */
|
|
33
|
-
export interface AttachmentMoreTileStyles {
|
|
34
|
-
/** Color overrides applied as CSS custom properties. */
|
|
35
|
-
colors?: AttachmentMoreTileColors;
|
|
36
|
-
/** Typography overrides for the tile's text/icon content. */
|
|
37
|
-
typography?: AttachmentMoreTileTypography;
|
|
38
|
-
/** Extra class name(s) merged onto the root element. */
|
|
39
|
-
className?: string;
|
|
40
|
-
}
|
|
41
|
-
/** Props accepted by the `AttachmentMoreTile` component. */
|
|
42
|
-
export interface AttachmentMoreTileProps {
|
|
43
|
-
/** Number of additional, not-yet-visible attachments. Only used for the default `"+N"` content/label. */
|
|
44
|
-
count: number;
|
|
45
|
-
/** Called when the tile is activated (expands or collapses the group). */
|
|
46
|
-
onClick: () => void;
|
|
47
|
-
/** User-visible strings. */
|
|
48
|
-
labels?: AttachmentMoreTileLabels;
|
|
49
|
-
/** Overrides the default `"+N"` content, e.g. a collapse icon for the "show less" placeholder tile. */
|
|
50
|
-
children?: ReactNode;
|
|
51
|
-
/** Style overrides for the tile. */
|
|
52
|
-
styles?: AttachmentMoreTileStyles;
|
|
53
|
-
}
|
|
54
|
-
//# sourceMappingURL=attachment-more-tile.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"attachment-more-tile.d.ts","sourceRoot":"","sources":["../../src/models/attachment-more-tile.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,4EAA4E;AAC5E,MAAM,WAAW,wBAAwB;IACvC,kDAAkD;IAClD,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,8CAA8C;IAC9C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,iDAAiD;IACjD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sCAAsC;IACtC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,qCAAqC;IACrC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,kCAAkC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gCAAgC;IAChC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,mEAAmE;AACnE,MAAM,WAAW,wBAAwB;IACvC;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,mEAAmE;AACnE,MAAM,WAAW,4BAA4B;IAC3C,sGAAsG;IACtG,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,8DAA8D;AAC9D,MAAM,WAAW,wBAAwB;IACvC,wDAAwD;IACxD,MAAM,CAAC,EAAE,wBAAwB,CAAC;IAClC,6DAA6D;IAC7D,UAAU,CAAC,EAAE,4BAA4B,CAAC;IAC1C,wDAAwD;IACxD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,4DAA4D;AAC5D,MAAM,WAAW,uBAAuB;IACtC,yGAAyG;IACzG,KAAK,EAAE,MAAM,CAAC;IACd,0EAA0E;IAC1E,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,4BAA4B;IAC5B,MAAM,CAAC,EAAE,wBAAwB,CAAC;IAClC,uGAAuG;IACvG,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,oCAAoC;IACpC,MAAM,CAAC,EAAE,wBAAwB,CAAC;CACnC"}
|