@archieai/ui 1.4.0 → 1.4.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/README.md +1 -25
- package/dist/{Search-Cll_4Ycv.js → Search-DLE-hZcu.js} +255 -255
- package/dist/{Search-Cll_4Ycv.js.map → Search-DLE-hZcu.js.map} +1 -1
- package/dist/components/molecules/Chip/components/ChipLeadingContent.d.ts +1 -0
- package/dist/components/molecules/Chip/components/ChipLeadingContent.d.ts.map +1 -1
- package/dist/components/molecules/{ChatFile → FileIcon}/FileIcon.d.ts +4 -2
- package/dist/components/molecules/FileIcon/FileIcon.d.ts.map +1 -0
- package/dist/components/molecules/FileIcon/FileIcon.styles.d.ts +4 -0
- package/dist/components/molecules/FileIcon/FileIcon.styles.d.ts.map +1 -0
- package/dist/components/molecules/SidebarItem/SidebarItem.d.ts +2 -0
- package/dist/components/molecules/SidebarItem/SidebarItem.d.ts.map +1 -1
- package/dist/components/molecules/SidebarItem/SidebarItem.styles.d.ts +2 -0
- package/dist/components/molecules/SidebarItem/SidebarItem.styles.d.ts.map +1 -1
- package/dist/icons.js +1 -1
- package/dist/index.cjs +14 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -9
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2302 -2931
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/dist/components/molecules/ChatFile/ChatFile.d.ts +0 -33
- package/dist/components/molecules/ChatFile/ChatFile.d.ts.map +0 -1
- package/dist/components/molecules/ChatFile/ChatFile.styles.d.ts +0 -16
- package/dist/components/molecules/ChatFile/ChatFile.styles.d.ts.map +0 -1
- package/dist/components/molecules/ChatFile/FileIcon.d.ts.map +0 -1
- package/dist/components/molecules/ChatFile/index.d.ts +0 -5
- package/dist/components/molecules/ChatFile/index.d.ts.map +0 -1
- package/dist/components/organisms/ChatInput/ChatInput.d.ts +0 -79
- package/dist/components/organisms/ChatInput/ChatInput.d.ts.map +0 -1
- package/dist/components/organisms/ChatInput/ChatInput.figma.d.ts +0 -2
- package/dist/components/organisms/ChatInput/ChatInput.figma.d.ts.map +0 -1
- package/dist/components/organisms/ChatInput/ChatInput.styles.d.ts +0 -55
- package/dist/components/organisms/ChatInput/ChatInput.styles.d.ts.map +0 -1
- package/dist/components/organisms/ChatInput/HighlightBackdrop.d.ts +0 -28
- package/dist/components/organisms/ChatInput/HighlightBackdrop.d.ts.map +0 -1
- package/dist/components/organisms/ChatInput/index.d.ts +0 -3
- package/dist/components/organisms/ChatInput/index.d.ts.map +0 -1
|
@@ -6,6 +6,7 @@ export interface ChipLeadingContentProps {
|
|
|
6
6
|
}
|
|
7
7
|
/**
|
|
8
8
|
* Renders the appropriate leading content (icon/avatar) based on chip type.
|
|
9
|
+
* Uses the shared FileIcon component for any chip with a file reference (file or fileMention when applicable).
|
|
9
10
|
*/
|
|
10
11
|
export declare const ChipLeadingContent: React.FC<ChipLeadingContentProps>;
|
|
11
12
|
//# sourceMappingURL=ChipLeadingContent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChipLeadingContent.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/Chip/components/ChipLeadingContent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,EAAc,KAAK,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"ChipLeadingContent.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/Chip/components/ChipLeadingContent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,EAAc,KAAK,SAAS,EAAE,MAAM,eAAe,CAAC;AAM3D,MAAM,WAAW,uBAAuB;IACtC,iDAAiD;IACjD,SAAS,EAAE,SAAS,CAAC;CACtB;AAsBD;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CA4EhE,CAAC"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
/**
|
|
3
|
-
* Configuration for a file type including its background color and icon component.
|
|
3
|
+
* Configuration for a file type including its background color, icon color, and icon component.
|
|
4
4
|
*/
|
|
5
5
|
export interface FileTypeConfig {
|
|
6
6
|
background: string;
|
|
7
|
+
iconColor: string;
|
|
7
8
|
icon: React.FC<{
|
|
8
9
|
size?: number | string;
|
|
10
|
+
color?: string;
|
|
9
11
|
className?: string;
|
|
10
12
|
}>;
|
|
11
13
|
}
|
|
@@ -34,5 +36,5 @@ export interface FileIconProps {
|
|
|
34
36
|
/** Additional CSS classes */
|
|
35
37
|
className?: string;
|
|
36
38
|
}
|
|
37
|
-
export declare const FileIcon: React.
|
|
39
|
+
export declare const FileIcon: React.ForwardRefExoticComponent<FileIconProps & React.RefAttributes<HTMLDivElement>>;
|
|
38
40
|
//# sourceMappingURL=FileIcon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/FileIcon/FileIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAkB1C;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC;QAAE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CAChF;AAED;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAqCxD,CAAC;AAWF;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB,aAAc,MAAM,KAAG,MASnD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,iBAAiB,aAAc,MAAM,KAAG,cAGpD,CAAC;AAEF,MAAM,WAAW,aAAa;IAC5B,mDAAmD;IACnD,QAAQ,EAAE,MAAM,CAAC;IACjB,iCAAiC;IACjC,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAWD,eAAO,MAAM,QAAQ,sFAmBpB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileIcon.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/FileIcon/FileIcon.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,uBAAuB;;8EAcnC,CAAC"}
|
|
@@ -10,6 +10,8 @@ export interface SidebarItemProps extends Omit<HTMLAttributes<HTMLDivElement>, '
|
|
|
10
10
|
isActive?: boolean;
|
|
11
11
|
/** Variant of the item */
|
|
12
12
|
variant?: 'default' | 'brand';
|
|
13
|
+
/** Whether the container height should be auto (useful for larger icons like avatars) */
|
|
14
|
+
heightAuto?: boolean;
|
|
13
15
|
/** Whether the item is disabled */
|
|
14
16
|
disabled?: boolean;
|
|
15
17
|
/** Click handler */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SidebarItem.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/SidebarItem/SidebarItem.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAc,SAAS,EAAE,MAAM,OAAO,CAAC;AAM9D,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC;IACrF,0BAA0B;IAC1B,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,qBAAqB;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,6CAA6C;IAC7C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,0CAA0C;IAC1C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,0BAA0B;IAC1B,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC;IAC9B,mCAAmC;IACnC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,oBAAoB;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"SidebarItem.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/SidebarItem/SidebarItem.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAc,SAAS,EAAE,MAAM,OAAO,CAAC;AAM9D,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC;IACrF,0BAA0B;IAC1B,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,qBAAqB;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,6CAA6C;IAC7C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,0CAA0C;IAC1C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,0BAA0B;IAC1B,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC;IAC9B,yFAAyF;IACzF,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,mCAAmC;IACnC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,oBAAoB;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,WAAW,6GA4DvB,CAAC"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
export declare const sidebarItemStyles: (props?: ({
|
|
2
2
|
type?: "expanded" | "collapsed" | null | undefined;
|
|
3
3
|
variant?: "default" | "active" | "brand" | null | undefined;
|
|
4
|
+
heightAuto?: boolean | null | undefined;
|
|
4
5
|
disabled?: boolean | null | undefined;
|
|
5
6
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
7
|
export declare const sidebarItemIconStyles: (props?: ({
|
|
7
8
|
type?: "expanded" | "collapsed" | null | undefined;
|
|
8
9
|
variant?: "default" | "active" | "brand" | null | undefined;
|
|
10
|
+
heightAuto?: boolean | null | undefined;
|
|
9
11
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
10
12
|
export declare const sidebarItemLabelStyles: (props?: ({
|
|
11
13
|
type?: "expanded" | "collapsed" | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SidebarItem.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/SidebarItem/SidebarItem.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"SidebarItem.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/SidebarItem/SidebarItem.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB;;;;;8EAkC7B,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;8EAuBjC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;8EAmBlC,CAAC"}
|
package/dist/icons.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as e, a as r, b as o, c as i, d as n, e as c, f as d, g as l, h as t, i as b, j as C, k as h, l as u, m as g, n as f, o as p, p as w, q as S, r as m, s as P, t as D, u as T, v as k,
|
|
1
|
+
import { A as e, a as r, b as o, c as i, d as n, e as c, f as d, g as l, h as t, i as b, j as C, k as h, l as u, m as g, n as f, o as p, p as w, q as S, r as m, s as P, t as D, u as T, v as k, B as M, w as A, x as U, y as L, z as R, C as v, D as F, E as B, F as y, G as O, H as G, I as V, J as I, K as x, L as H, M as q, N as z, O as E, P as W, Q as X, R as N, S as Z, T as K, U as J, V as j, W as Q, X as Y, Y as _, Z as $, _ as aa, $ as sa, a0 as ea, a1 as ra, a2 as oa, a3 as ia, a4 as na, a5 as ca, a6 as da, a7 as la, a8 as ta, a9 as ba, aa as Ca, ab as ha, ac as ua, ad as ga, ae as fa, af as pa, ag as wa, ah as Sa, ai as ma, aj as Pa, ak as Da, al as Ta, am as ka, an as Ma, ao as Aa, ap as Ua, aq as La, ar as Ra, as as va, at as Fa, au as Ba, av as ya, aw as Oa, ax as Ga, ay as Va, az as Ia, aA as xa, aB as Ha, aC as qa, aD as za, aE as Ea, aF as Wa, aG as Xa, aH as Na, aI as Za, aJ as Ka, aK as Ja, aL as ja, aM as Qa, aN as Ya, aO as _a, aP as $a, aQ as as, aR as ss, aS as es, aT as rs, aU as os, aV as is, aW as ns, aX as cs, aY as ds, aZ as ls, a_ as ts, a$ as bs, b0 as Cs, b1 as hs, b2 as us, b3 as gs, b4 as fs, b5 as ps, b6 as ws, b7 as Ss, b8 as ms, b9 as Ps, ba as Ds, bb as Ts, bc as ks, bd as Ms, be as As, bf as Us, bg as Ls, bh as Rs, bi as vs, bj as Fs, bk as Bs, bl as ys, bm as Os, bn as Gs, bo as Vs, bp as Is, bq as xs, br as Hs, bs as qs, bt as zs, bu as Es, bv as Ws, bw as Xs, bx as Ns, by as Zs, bz as Ks, bA as Js, bB as js, bC as Qs, bD as Ys, bE as _s, bF as $s, bG as ae, bH as se, bI as ee, bJ as re, bK as oe, bL as ie, bM as ne, bN as ce, bO as de, bP as le, bQ as te, bR as be, bS as Ce, bT as he, bU as ue, bV as ge, bW as fe, bX as pe, bY as we, bZ as Se, b_ as me, b$ as Pe, c0 as De, c1 as Te, c2 as ke, c3 as Me, c4 as Ae, c5 as Ue, c6 as Le, c7 as Re, c8 as ve, c9 as Fe, ca as Be, cb as ye, cc as Oe, cd as Ge, ce as Ve, cf as Ie, cg as xe, ch as He, ci as qe, cj as ze, ck as Ee, cl as We, cm as Xe, cn as Ne, co as Ze, cp as Ke, cq as Je, cr as je, cs as Qe, ct as Ye, cu as _e, cv as $e, cw as ar, cx as sr, cy as er, cz as rr, cA as or, cB as ir, cC as nr, cD as cr, cE as dr, cF as lr, cG as tr, cH as br, cI as Cr, cJ as hr, cK as ur, cL as gr, cM as fr, cN as pr, cO as wr, cP as Sr, cQ as mr, cR as Pr, cS as Dr, cT as Tr, cU as kr, cV as Mr, cW as Ar, cX as Ur, cY as Lr, cZ as Rr, c_ as vr, c$ as Fr, d0 as Br, d1 as yr, d2 as Or, d3 as Gr, d4 as Vr, d5 as Ir, d6 as xr, d7 as Hr, d8 as qr, d9 as zr, da as Er, db as Wr, dc as Xr, dd as Nr, de as Zr, df as Kr, dg as Jr, dh as jr, di as Qr, dj as Yr, dk as _r, dl as $r, dm as ao, dn as so, dp as eo, dq as ro, dr as oo, ds as io, dt as no, du as co, dv as lo, dw as to, dx as bo, dy as Co, dz as ho, dA as uo, dB as go, dC as fo, dD as po, dE as wo, dF as So, dG as mo, dH as Po, dI as Do, dJ as To, dK as ko, dL as Mo, dM as Ao, dN as Uo, dO as Lo, dP as Ro, dQ as vo, dR as Fo, dS as Bo, dT as yo, dU as Oo } from "./Search-DLE-hZcu.js";
|
|
2
2
|
export {
|
|
3
3
|
e as Activity,
|
|
4
4
|
r as Airplay,
|