@plumile/ui 0.1.64 → 0.1.66

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.
Files changed (35) hide show
  1. package/lib/esm/atomic/molecules/empty-state/EmptyState.css.js +8 -0
  2. package/lib/esm/atomic/molecules/empty-state/EmptyState.css.js.map +1 -0
  3. package/lib/esm/atomic/molecules/empty-state/EmptyState.js +35 -0
  4. package/lib/esm/atomic/molecules/empty-state/EmptyState.js.map +1 -0
  5. package/lib/esm/atomic/molecules/markdown/components/MarkdownArticleContainer.css.js +0 -1
  6. package/lib/esm/atomic/molecules/markdown/components/MarkdownSuperscript.css.js +1 -0
  7. package/lib/esm/atomic/molecules/profile_dropdown/ProfileDropdown.js +119 -0
  8. package/lib/esm/atomic/molecules/profile_dropdown/ProfileDropdown.js.map +1 -0
  9. package/lib/esm/atomic/molecules/profile_dropdown/profileDropdown.css.js +8 -0
  10. package/lib/esm/atomic/molecules/profile_dropdown/profileDropdown.css.js.map +1 -0
  11. package/lib/esm/components/agent/AgentMarkdownCard.css.js +8 -0
  12. package/lib/esm/components/agent/AgentMarkdownCard.css.js.map +1 -0
  13. package/lib/esm/components/agent/AgentMarkdownCard.js +19 -0
  14. package/lib/esm/components/agent/AgentMarkdownCard.js.map +1 -0
  15. package/lib/esm/components/organization_layout/OrganizationLayout.js +16 -0
  16. package/lib/esm/components/organization_layout/OrganizationLayout.js.map +1 -0
  17. package/lib/esm/index.js +91 -85
  18. package/lib/esm/style.css +1 -1
  19. package/lib/types/atomic/molecules/empty-state/EmptyState.css.d.ts +6 -0
  20. package/lib/types/atomic/molecules/empty-state/EmptyState.css.d.ts.map +1 -0
  21. package/lib/types/atomic/molecules/empty-state/EmptyState.d.ts +11 -0
  22. package/lib/types/atomic/molecules/empty-state/EmptyState.d.ts.map +1 -0
  23. package/lib/types/atomic/molecules/profile_dropdown/ProfileDropdown.d.ts +24 -0
  24. package/lib/types/atomic/molecules/profile_dropdown/ProfileDropdown.d.ts.map +1 -0
  25. package/lib/types/atomic/molecules/profile_dropdown/profileDropdown.css.d.ts +14 -0
  26. package/lib/types/atomic/molecules/profile_dropdown/profileDropdown.css.d.ts.map +1 -0
  27. package/lib/types/components/agent/AgentMarkdownCard.css.d.ts +4 -0
  28. package/lib/types/components/agent/AgentMarkdownCard.css.d.ts.map +1 -0
  29. package/lib/types/components/agent/AgentMarkdownCard.d.ts +9 -0
  30. package/lib/types/components/agent/AgentMarkdownCard.d.ts.map +1 -0
  31. package/lib/types/components/organization_layout/OrganizationLayout.d.ts +15 -0
  32. package/lib/types/components/organization_layout/OrganizationLayout.d.ts.map +1 -0
  33. package/lib/types/index.d.ts +6 -0
  34. package/lib/types/index.d.ts.map +1 -1
  35. package/package.json +2 -2
@@ -0,0 +1,8 @@
1
+ /* empty css */
2
+ /* empty css */
3
+ //#region src/atomic/molecules/empty-state/EmptyState.css.ts
4
+ var e = "_1lrdacm0 txvbqbu6f txvbqb9io txvbqbai6 txvbqbco txvbqbdnx txvbqbao6 txvbqbt5x", t = "_1lrdacm1 txvbqb9o", n = "_1lrdacm2 txvbqbfbo txvbqb9f txvbqbamo txvbqbv8p", r = "_1lrdacm3 txvbqbfbo txvbqb8x txvbqbv8r txvbqbjef", i = "_1lrdacm4 txvbqb9io txvbqbajx txvbqbao6 txvbqbdnx";
5
+ //#endregion
6
+ export { i as actions, e as content, r as description, t as icon, n as title };
7
+
8
+ //# sourceMappingURL=EmptyState.css.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyState.css.js","names":[],"sources":["../../../../../src/atomic/molecules/empty-state/EmptyState.css.ts"],"sourcesContent":["import { sprinkles } from '../../../theme/sprinkles.css.js';\n\nexport const content = sprinkles({\n width: 'full',\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n gap: 2,\n textAlign: 'center',\n});\n\nexport const icon = sprinkles({\n fontSize: 'xl',\n});\n\nexport const title = sprinkles({\n margin: 0,\n fontSize: 'lg',\n fontWeight: 'semibold',\n color: 'text',\n});\n\nexport const description = sprinkles({\n margin: 0,\n fontSize: 'sm',\n color: 'textSecondary',\n maxWidth: 'md',\n});\n\nexport const actions = sprinkles({\n display: 'flex',\n flexWrap: 'wrap',\n gap: 2,\n justifyContent: 'center',\n});\n"],"mappings":""}
@@ -0,0 +1,35 @@
1
+ import { Card as e } from "../card/Card.js";
2
+ import { actions as t, content as n, description as r, icon as i, title as a } from "./EmptyState.css.js";
3
+ import { jsx as o, jsxs as s } from "react/jsx-runtime";
4
+ //#region src/atomic/molecules/empty-state/EmptyState.tsx
5
+ var c = ({ title: c, description: l, icon: u, actions: d, className: f }) => {
6
+ let p = null;
7
+ u != null && (p = /* @__PURE__ */ o("div", {
8
+ className: i,
9
+ children: u
10
+ }));
11
+ let m = null;
12
+ return d != null && (m = /* @__PURE__ */ o("div", {
13
+ className: t,
14
+ children: d
15
+ })), /* @__PURE__ */ s(e, {
16
+ className: f,
17
+ contentClassName: n,
18
+ children: [
19
+ p,
20
+ /* @__PURE__ */ o("h2", {
21
+ className: a,
22
+ children: c
23
+ }),
24
+ /* @__PURE__ */ o("p", {
25
+ className: r,
26
+ children: l
27
+ }),
28
+ m
29
+ ]
30
+ });
31
+ };
32
+ //#endregion
33
+ export { c as EmptyState, c as default };
34
+
35
+ //# sourceMappingURL=EmptyState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyState.js","names":[],"sources":["../../../../../src/atomic/molecules/empty-state/EmptyState.tsx"],"sourcesContent":["import { type JSX, type ReactNode } from 'react';\n\nimport { Card } from '../card/Card.js';\nimport * as styles from './EmptyState.css.js';\n\ntype Props = {\n title: string;\n description: ReactNode;\n icon?: ReactNode;\n actions?: ReactNode;\n className?: string;\n};\n\nexport const EmptyState = ({\n title,\n description,\n icon,\n actions,\n className,\n}: Props): JSX.Element => {\n let iconElement: JSX.Element | null = null;\n if (icon != null) {\n iconElement = <div className={styles.icon}>{icon}</div>;\n }\n\n let actionsElement: JSX.Element | null = null;\n if (actions != null) {\n actionsElement = <div className={styles.actions}>{actions}</div>;\n }\n\n return (\n <Card className={className} contentClassName={styles.content}>\n {iconElement}\n <h2 className={styles.title}>{title}</h2>\n <p className={styles.description}>{description}</p>\n {actionsElement}\n </Card>\n );\n};\n\nexport default EmptyState;\n"],"mappings":";;;;AAaA,IAAa,KAAc,EACzB,OAAA,GACA,aAAA,GACA,MAAA,GACA,SAAA,GACA,mBACwB;CACxB,IAAI,IAAkC;AACtC,CAAI,KAAQ,SACV,IAAc,kBAAC,OAAD;EAAK,WAAW;YAAc;EAAW,CAAA;CAGzD,IAAI,IAAqC;AAKzC,QAJI,KAAW,SACb,IAAiB,kBAAC,OAAD;EAAK,WAAW;YAAiB;EAAc,CAAA,GAIhE,kBAAC,GAAD;EAAiB;EAAW,kBAAkB;YAA9C;GACG;GACD,kBAAC,MAAD;IAAI,WAAW;cAAe;IAAW,CAAA;GACzC,kBAAC,KAAD;IAAG,WAAW;cAAqB;IAAgB,CAAA;GAClD;GACI"}
@@ -1,5 +1,4 @@
1
1
  /* empty css */
2
- /* empty css */
3
2
  /* empty css */
4
3
  //#region src/atomic/molecules/markdown/components/MarkdownArticleContainer.css.ts
5
4
  var e = "_7ez1431 _7ez1430 txvbqb9io txvbqbai6 txvbqbaoo";
@@ -1,4 +1,5 @@
1
1
  /* empty css */
2
+ /* empty css */
2
3
  /* empty css */
3
4
  //#region src/atomic/molecules/markdown/components/MarkdownSuperscript.css.ts
4
5
  var e = "_4glc0s1 _4glc0s0 txvbqb8o txvbqb7s";
@@ -0,0 +1,119 @@
1
+ import { cx as e } from "../../../theme/tools.js";
2
+ import { ChevronDownSvg as t } from "../../../icons/ChevronDownSvg.js";
3
+ import { ProfileDropdownLogoutSvg as n } from "../../../icons/ProfileDropdownLogoutSvg.js";
4
+ import { ProfileDropdownOrganizationSvg as r } from "../../../icons/ProfileDropdownOrganizationSvg.js";
5
+ import { avatar as i, chevron as a, chevronOpen as o, container as s, dropdown as c, menuIcon as l, menuItem as u, menuLabel as d, organizationName as f, selectButton as p, selectContent as m, selectText as h, userName as g } from "./profileDropdown.css.js";
6
+ import { jsx as _, jsxs as v } from "react/jsx-runtime";
7
+ import { useEffect as y, useRef as b, useState as x } from "react";
8
+ import { Link as S } from "@plumile/router";
9
+ //#region src/atomic/molecules/profile_dropdown/ProfileDropdown.tsx
10
+ var C = {
11
+ menuAriaLabel: "User menu",
12
+ profileSecurity: "Profile & Security",
13
+ switchOrganizations: "Switch Organizations",
14
+ signOut: "Sign Out"
15
+ }, w = (w) => {
16
+ let [T, E] = x(!1), D = b(null), { viewer: O, organization: k, labels: A = C } = w, j = () => {
17
+ E((e) => !e);
18
+ }, M = () => {
19
+ E(!1);
20
+ };
21
+ y(() => {
22
+ let e = (e) => {
23
+ D.current != null && !D.current.contains(e.target) && E(!1);
24
+ };
25
+ return document.addEventListener("mousedown", e), () => {
26
+ document.removeEventListener("mousedown", e);
27
+ };
28
+ }, []);
29
+ let N = [O.firstName, O.lastName].filter((e) => e.trim().length > 0).join(" "), P = null;
30
+ return T && (P = /* @__PURE__ */ v("div", {
31
+ className: c,
32
+ role: "menu",
33
+ children: [
34
+ /* @__PURE__ */ v(S, {
35
+ to: w.profilePath,
36
+ className: u,
37
+ onClick: M,
38
+ children: [/* @__PURE__ */ _("span", {
39
+ className: l,
40
+ children: /* @__PURE__ */ _(r, {
41
+ width: 16,
42
+ height: 16
43
+ })
44
+ }), /* @__PURE__ */ _("span", {
45
+ className: d,
46
+ children: A.profileSecurity
47
+ })]
48
+ }),
49
+ /* @__PURE__ */ v(S, {
50
+ to: k.switchPath,
51
+ className: u,
52
+ onClick: M,
53
+ children: [/* @__PURE__ */ _("span", {
54
+ className: l,
55
+ children: /* @__PURE__ */ _(r, {
56
+ width: 16,
57
+ height: 16
58
+ })
59
+ }), /* @__PURE__ */ _("span", {
60
+ className: d,
61
+ children: A.switchOrganizations
62
+ })]
63
+ }),
64
+ /* @__PURE__ */ v("button", {
65
+ className: u,
66
+ onClick: () => {
67
+ w.onSignOut?.(), M();
68
+ },
69
+ type: "button",
70
+ role: "menuitem",
71
+ children: [/* @__PURE__ */ _("span", {
72
+ className: l,
73
+ children: /* @__PURE__ */ _(n, {
74
+ width: 16,
75
+ height: 16
76
+ })
77
+ }), /* @__PURE__ */ _("span", {
78
+ className: d,
79
+ children: A.signOut
80
+ })]
81
+ })
82
+ ]
83
+ })), /* @__PURE__ */ v("div", {
84
+ className: e(s, w.className),
85
+ ref: D,
86
+ children: [/* @__PURE__ */ v("button", {
87
+ className: p,
88
+ onClick: j,
89
+ "aria-expanded": T,
90
+ "aria-haspopup": "menu",
91
+ "aria-label": A.menuAriaLabel,
92
+ type: "button",
93
+ children: [/* @__PURE__ */ v("span", {
94
+ className: m,
95
+ children: [/* @__PURE__ */ _("span", {
96
+ className: i,
97
+ children: O.initials
98
+ }), /* @__PURE__ */ v("span", {
99
+ className: h,
100
+ children: [/* @__PURE__ */ _("span", {
101
+ className: g,
102
+ children: N
103
+ }), /* @__PURE__ */ _("span", {
104
+ className: f,
105
+ children: k.name
106
+ })]
107
+ })]
108
+ }), /* @__PURE__ */ _(t, {
109
+ width: 16,
110
+ height: 16,
111
+ className: e(a, { [o]: T })
112
+ })]
113
+ }), P]
114
+ });
115
+ };
116
+ //#endregion
117
+ export { w as ProfileDropdown, w as default };
118
+
119
+ //# sourceMappingURL=ProfileDropdown.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProfileDropdown.js","names":[],"sources":["../../../../../src/atomic/molecules/profile_dropdown/ProfileDropdown.tsx"],"sourcesContent":["import { useEffect, useRef, useState, type JSX } from 'react';\nimport { Link } from '@plumile/router';\n\nimport { ChevronDownSvg } from '../../../icons/ChevronDownSvg.js';\nimport { ProfileDropdownLogoutSvg } from '../../../icons/ProfileDropdownLogoutSvg.js';\nimport { ProfileDropdownOrganizationSvg } from '../../../icons/ProfileDropdownOrganizationSvg.js';\nimport { cx } from '../../../theme/tools.js';\nimport * as classes from './profileDropdown.css.js';\n\ntype Props = {\n viewer: {\n firstName: string;\n lastName: string;\n initials: string;\n };\n profilePath: string;\n organization: {\n name: string;\n switchPath: string;\n };\n labels?: {\n menuAriaLabel: string;\n profileSecurity: string;\n switchOrganizations: string;\n signOut: string;\n };\n className?: string;\n onSignOut?: () => void;\n};\n\nconst DEFAULT_LABELS = {\n menuAriaLabel: 'User menu',\n profileSecurity: 'Profile & Security',\n switchOrganizations: 'Switch Organizations',\n signOut: 'Sign Out',\n};\n\nexport const ProfileDropdown = (props: Props): JSX.Element | null => {\n const [isOpen, setIsOpen] = useState(false);\n const dropdownRef = useRef<HTMLDivElement>(null);\n\n const { viewer, organization, labels = DEFAULT_LABELS } = props;\n\n const toggleDropdown = (): void => {\n setIsOpen((prev) => {\n return !prev;\n });\n };\n\n const closeDropdown = (): void => {\n setIsOpen(false);\n };\n\n useEffect(() => {\n const handleClickOutside = (event: MouseEvent): void => {\n if (\n dropdownRef.current != null &&\n !dropdownRef.current.contains(event.target as Node)\n ) {\n setIsOpen(false);\n }\n };\n\n document.addEventListener('mousedown', handleClickOutside);\n return () => {\n document.removeEventListener('mousedown', handleClickOutside);\n };\n }, []);\n\n const displayNameParts = [viewer.firstName, viewer.lastName].filter(\n (part) => {\n return part.trim().length > 0;\n },\n );\n const userDisplayName = displayNameParts.join(' ');\n\n let dropdownMenu: JSX.Element | null = null;\n if (isOpen) {\n dropdownMenu = (\n <div className={classes.dropdown} role=\"menu\">\n <Link\n to={props.profilePath}\n className={classes.menuItem}\n onClick={closeDropdown}\n >\n <span className={classes.menuIcon}>\n <ProfileDropdownOrganizationSvg width={16} height={16} />\n </span>\n <span className={classes.menuLabel}>{labels.profileSecurity}</span>\n </Link>\n <Link\n to={organization.switchPath}\n className={classes.menuItem}\n onClick={closeDropdown}\n >\n <span className={classes.menuIcon}>\n <ProfileDropdownOrganizationSvg width={16} height={16} />\n </span>\n <span className={classes.menuLabel}>\n {labels.switchOrganizations}\n </span>\n </Link>\n\n <button\n className={classes.menuItem}\n onClick={() => {\n props.onSignOut?.();\n closeDropdown();\n }}\n type=\"button\"\n role=\"menuitem\"\n >\n <span className={classes.menuIcon}>\n <ProfileDropdownLogoutSvg width={16} height={16} />\n </span>\n <span className={classes.menuLabel}>{labels.signOut}</span>\n </button>\n </div>\n );\n }\n\n return (\n <div className={cx(classes.container, props.className)} ref={dropdownRef}>\n <button\n className={classes.selectButton}\n onClick={toggleDropdown}\n aria-expanded={isOpen}\n aria-haspopup=\"menu\"\n aria-label={labels.menuAriaLabel}\n type=\"button\"\n >\n <span className={classes.selectContent}>\n <span className={classes.avatar}>{viewer.initials}</span>\n <span className={classes.selectText}>\n <span className={classes.userName}>{userDisplayName}</span>\n <span className={classes.organizationName}>\n {organization.name}\n </span>\n </span>\n </span>\n <ChevronDownSvg\n width={16}\n height={16}\n className={cx(classes.chevron, {\n [classes.chevronOpen]: isOpen,\n })}\n />\n </button>\n\n {dropdownMenu}\n </div>\n );\n};\n\nexport default ProfileDropdown;\n"],"mappings":";;;;;;;;;AA8BA,IAAM,IAAiB;CACrB,eAAe;CACf,iBAAiB;CACjB,qBAAqB;CACrB,SAAS;CACV,EAEY,KAAmB,MAAqC;CACnE,IAAM,CAAC,GAAQ,KAAa,EAAS,GAAM,EACrC,IAAc,EAAuB,KAAK,EAE1C,EAAE,WAAQ,iBAAc,YAAS,MAAmB,GAEpD,UAA6B;AACjC,KAAW,MACF,CAAC,EACR;IAGE,UAA4B;AAChC,IAAU,GAAM;;AAGlB,SAAgB;EACd,IAAM,KAAsB,MAA4B;AACtD,GACE,EAAY,WAAW,QACvB,CAAC,EAAY,QAAQ,SAAS,EAAM,OAAe,IAEnD,EAAU,GAAM;;AAKpB,SADA,SAAS,iBAAiB,aAAa,EAAmB,QAC7C;AACX,YAAS,oBAAoB,aAAa,EAAmB;;IAE9D,EAAE,CAAC;CAON,IAAM,IALmB,CAAC,EAAO,WAAW,EAAO,SAAS,CAAC,QAC1D,MACQ,EAAK,MAAM,CAAC,SAAS,EAE/B,CACwC,KAAK,IAAI,EAE9C,IAAmC;AA6CvC,QA5CI,MACF,IACE,kBAAC,OAAD;EAAK,WAAW;EAAkB,MAAK;YAAvC;GACE,kBAAC,GAAD;IACE,IAAI,EAAM;IACV,WAAW;IACX,SAAS;cAHX,CAKE,kBAAC,QAAD;KAAM,WAAW;eACf,kBAAC,GAAD;MAAgC,OAAO;MAAI,QAAQ;MAAM,CAAA;KACpD,CAAA,EACP,kBAAC,QAAD;KAAM,WAAW;eAAoB,EAAO;KAAuB,CAAA,CAC9D;;GACP,kBAAC,GAAD;IACE,IAAI,EAAa;IACjB,WAAW;IACX,SAAS;cAHX,CAKE,kBAAC,QAAD;KAAM,WAAW;eACf,kBAAC,GAAD;MAAgC,OAAO;MAAI,QAAQ;MAAM,CAAA;KACpD,CAAA,EACP,kBAAC,QAAD;KAAM,WAAW;eACd,EAAO;KACH,CAAA,CACF;;GAEP,kBAAC,UAAD;IACE,WAAW;IACX,eAAe;AAEb,KADA,EAAM,aAAa,EACnB,GAAe;;IAEjB,MAAK;IACL,MAAK;cAPP,CASE,kBAAC,QAAD;KAAM,WAAW;eACf,kBAAC,GAAD;MAA0B,OAAO;MAAI,QAAQ;MAAM,CAAA;KAC9C,CAAA,EACP,kBAAC,QAAD;KAAM,WAAW;eAAoB,EAAO;KAAe,CAAA,CACpD;;GACL;MAKR,kBAAC,OAAD;EAAK,WAAW,EAAG,GAAmB,EAAM,UAAU;EAAE,KAAK;YAA7D,CACE,kBAAC,UAAD;GACE,WAAW;GACX,SAAS;GACT,iBAAe;GACf,iBAAc;GACd,cAAY,EAAO;GACnB,MAAK;aANP,CAQE,kBAAC,QAAD;IAAM,WAAW;cAAjB,CACE,kBAAC,QAAD;KAAM,WAAW;eAAiB,EAAO;KAAgB,CAAA,EACzD,kBAAC,QAAD;KAAM,WAAW;eAAjB,CACE,kBAAC,QAAD;MAAM,WAAW;gBAAmB;MAAuB,CAAA,EAC3D,kBAAC,QAAD;MAAM,WAAW;gBACd,EAAa;MACT,CAAA,CACF;OACF;OACP,kBAAC,GAAD;IACE,OAAO;IACP,QAAQ;IACR,WAAW,EAAG,GAAiB,GAC5B,IAAsB,GACxB,CAAC;IACF,CAAA,CACK;MAER,EACG"}
@@ -0,0 +1,8 @@
1
+ /* empty css */
2
+ /* empty css */
3
+ //#region src/atomic/molecules/profile_dropdown/profileDropdown.css.ts
4
+ var e = "_1vukrf60 txvbqbpsf txvbqbu6f", t = "_1vukrf61 txvbqbnv6 txvbqboif txvbqbp5f txvbqblx6 txvbqb9io txvbqbco txvbqbdoo txvbqbu6f txvbqb1rx txvbqbv4h txvbqbv txvbqbt5o txvbqb1co txvbqb1qf txvbqbwo", n = "_1vukrf62 txvbqb9io txvbqbco txvbqbaof txvbqb9mx txvbqbk4x", r = "_1vukrf63 txvbqb9io txvbqbco txvbqbdnx txvbqbtx6 txvbqbc6o txvbqb1sx txvbqbuy6 txvbqbv9z txvbqb8o txvbqbamo txvbqb66", i = "_1vukrf64 txvbqb9io txvbqbai6 txvbqbk4x", a = "_1vukrf65 txvbqbps6 txvbqbthf txvbqbdpf txvbqbiio txvbqbuso txvbqbkgo txvbqbv4h txvbqb1ro txvbqb1co txvbqb1qf txvbqb106 txvbqbuux txvbqbl9x txvbqb8s6", o = "_1vukrf66 txvbqb8x txvbqbamo txvbqbv53 txvbqbuw6 txvbqbl6f txvbqbt6f", s = "_1vukrf67 txvbqb8o txvbqbamo txvbqbv53 txvbqbvar txvbqbuw6 txvbqbl6f txvbqbt6f", c = "_1vukrf69 _1vukrf68 txvbqbnv6 txvbqboif txvbqbp5f txvbqblx6 txvbqb77 txvbqb6x txvbqb7k txvbqb9io txvbqbco txvbqbu6f txvbqb12f txvbqb1px txvbqbuzj txvbqb1rf txvbqbv txvbqbt5o txvbqb3b txvbqbva3 txvbqb8x txvbqbamo", l = "_1vukrf6a txvbqb9io txvbqbco txvbqbdnx txvbqbha6 txvbqbv4z", u = "_1vukrf6b txvbqb9mx txvbqbuw6", d = "_1vukrf6c txvbqbv9p txvbqb7g txvbqb6x txvbqb7k", f = "_1vukrf6d txvbqb2w";
5
+ //#endregion
6
+ export { r as avatar, d as chevron, f as chevronOpen, e as container, a as dropdown, l as menuIcon, c as menuItem, u as menuLabel, s as organizationName, t as selectButton, n as selectContent, i as selectText, o as userName };
7
+
8
+ //# sourceMappingURL=profileDropdown.css.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"profileDropdown.css.js","names":[],"sources":["../../../../../src/atomic/molecules/profile_dropdown/profileDropdown.css.ts"],"sourcesContent":["import { style } from '@vanilla-extract/css';\n\nimport { sprinkles } from '../../../theme/sprinkles.css.js';\nimport { vars } from '../../../theme/themeContract.js';\n\nexport const container = sprinkles({\n position: 'relative',\n width: 'full',\n});\n\nexport const selectButton = sprinkles({\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'space-between',\n width: 'full',\n paddingY: 2,\n paddingX: 3,\n borderRadius: 'xl',\n backgroundColor: 'brandWhite',\n cursor: 'pointer',\n textAlign: 'left',\n borderWidth: 'default',\n borderStyle: 'solid',\n borderColor: 'borderSubtle',\n});\n\nexport const selectContent = sprinkles({\n display: 'flex',\n alignItems: 'center',\n gap: 3,\n flex: 1,\n minWidth: 0,\n});\n\nexport const avatar = sprinkles({\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n width: 8,\n height: 8,\n borderRadius: '1/2',\n backgroundImage: 'brandDiagonal',\n color: 'brandWhite',\n fontSize: 'xs',\n fontWeight: 'semibold',\n textTransform: 'uppercase',\n});\n\nexport const selectText = sprinkles({\n display: 'flex',\n flexDirection: 'column',\n minWidth: 0,\n});\n\nexport const dropdown = sprinkles({\n position: 'absolute',\n top: 'full',\n left: 0,\n marginTop: 1.5,\n width: 'max',\n minWidth: 'full',\n backgroundColor: 'brandWhite',\n borderRadius: 'lg',\n borderWidth: 'default',\n borderStyle: 'solid',\n borderColor: 'brandPrimaryRed',\n zIndex: 30,\n padding: 2,\n boxShadow: 'profileDropdownShadow',\n});\n\nexport const userName = sprinkles({\n fontSize: 'sm',\n fontWeight: 'semibold',\n color: 'black',\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n});\n\nexport const organizationName = sprinkles({\n fontSize: 'xs',\n fontWeight: 'semibold',\n color: 'black',\n opacity: 50,\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n});\n\nexport const menuItem = style([\n sprinkles({\n transitionProperty: 'default',\n transitionDuration: 150,\n transitionTimingFunction: 'ease',\n display: 'flex',\n alignItems: 'center',\n width: 'full',\n paddingY: 2,\n paddingX: 3,\n borderWidth: 0,\n borderStyle: 'none',\n backgroundColor: 'transparent',\n borderRadius: 'md',\n cursor: 'pointer',\n textAlign: 'left',\n textDecoration: 'none',\n color: 'brandDarkGray',\n fontSize: 'sm',\n fontWeight: 'semibold',\n }),\n {\n selectors: {\n '& + &': {\n marginTop: vars.spacing[1],\n },\n },\n ':hover': {\n backgroundColor: vars.colors.brandLightGray,\n color: vars.colors.brandPrimaryRed,\n textDecoration: 'none',\n },\n ':focus-visible': {\n outline: 'none',\n boxShadow: `0 0 0 2px ${vars.colors.brandPrimaryRed}`,\n },\n },\n]);\n\nexport const menuIcon = sprinkles({\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n marginRight: 3,\n color: 'current',\n});\n\nexport const menuLabel = sprinkles({\n flex: 1,\n whiteSpace: 'nowrap',\n});\n\nexport const chevron = sprinkles({\n color: 'brandPrimaryRed',\n transitionProperty: 'transform',\n transitionDuration: 150,\n transitionTimingFunction: 'ease',\n});\n\nexport const chevronOpen = sprinkles({\n rotate: 180,\n});\n"],"mappings":""}
@@ -0,0 +1,8 @@
1
+ /* empty css */
2
+ /* empty css */
3
+ //#region src/components/agent/AgentMarkdownCard.css.ts
4
+ var e = "_1dmt4ev0 txvbqb9io txvbqbunx txvbqbai6 txvbqbao6", t = "_1dmt4ev1 txvbqbfbo txvbqb9f txvbqbamo", n = "_1dmt4ev2 txvbqb8x txvbqb1o txvbqbfbo";
5
+ //#endregion
6
+ export { e as container, n as emptyMessage, t as title };
7
+
8
+ //# sourceMappingURL=AgentMarkdownCard.css.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgentMarkdownCard.css.js","names":[],"sources":["../../../../src/components/agent/AgentMarkdownCard.css.ts"],"sourcesContent":["import { sprinkles } from '../../theme/sprinkles.css.js';\n\nexport const container = sprinkles({\n display: 'flex',\n width: '4/5',\n flexDirection: 'column',\n gap: 2,\n});\n\nexport const title = sprinkles({\n margin: 0,\n fontSize: 'lg',\n fontWeight: 'semibold',\n});\n\nexport const emptyMessage = sprinkles({\n fontSize: 'sm',\n fontStyle: 'italic',\n margin: 0,\n});\n"],"mappings":""}
@@ -0,0 +1,19 @@
1
+ import { MarkdownRenderer as e } from "../../atomic/molecules/markdown/MarkdownRenderer.js";
2
+ import { sanitizeAgentMarkdown as t } from "../../shared/agentText.js";
3
+ import { container as n, emptyMessage as r } from "./AgentMarkdownCard.css.js";
4
+ import { jsx as i } from "react/jsx-runtime";
5
+ //#region src/components/agent/AgentMarkdownCard.tsx
6
+ var a = ({ content: a, emptyMessage: o }) => {
7
+ let s = t(a), c;
8
+ return c = s == null ? /* @__PURE__ */ i("p", {
9
+ className: r,
10
+ children: o
11
+ }) : /* @__PURE__ */ i(e, { content: s }), /* @__PURE__ */ i("div", {
12
+ className: n,
13
+ children: c
14
+ });
15
+ };
16
+ //#endregion
17
+ export { a as AgentMarkdownCard, a as default };
18
+
19
+ //# sourceMappingURL=AgentMarkdownCard.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgentMarkdownCard.js","names":[],"sources":["../../../../src/components/agent/AgentMarkdownCard.tsx"],"sourcesContent":["import { type JSX } from 'react';\n\nimport { MarkdownRenderer } from '../../atomic/molecules/markdown/MarkdownRenderer.js';\nimport { sanitizeAgentMarkdown } from '../../shared/agentText.js';\nimport * as styles from './AgentMarkdownCard.css.js';\n\ntype Props = {\n title: string;\n content: string;\n emptyMessage: string;\n};\n\nexport const AgentMarkdownCard = ({\n content,\n emptyMessage,\n}: Props): JSX.Element => {\n const sanitizedContent = sanitizeAgentMarkdown(content);\n\n let body: JSX.Element;\n\n if (sanitizedContent != null) {\n body = <MarkdownRenderer content={sanitizedContent} />;\n } else {\n body = <p className={styles.emptyMessage}>{emptyMessage}</p>;\n }\n\n return <div className={styles.container}>{body}</div>;\n};\n\nexport default AgentMarkdownCard;\n"],"mappings":";;;;;AAYA,IAAa,KAAqB,EAChC,YACA,cAAA,QACwB;CACxB,IAAM,IAAmB,EAAsB,EAAQ,EAEnD;AAQJ,QANA,AACE,IADE,KAAoB,OAGf,kBAAC,KAAD;EAAG,WAAW;YAAsB;EAAiB,CAAA,GAFrD,kBAAC,GAAD,EAAkB,SAAS,GAAoB,CAAA,EAKjD,kBAAC,OAAD;EAAK,WAAW;YAAmB;EAAW,CAAA"}
@@ -0,0 +1,16 @@
1
+ import { PageShell as e } from "../layout/PageShell.js";
2
+ import { jsx as t } from "react/jsx-runtime";
3
+ //#region src/components/organization_layout/OrganizationLayout.tsx
4
+ var n = ({ actions: n, breadcrumb: r, breadcrumbItems: i, children: a, contentClassName: o, sidebar: s, sidePanel: c }) => /* @__PURE__ */ t(e, {
5
+ sidebar: s,
6
+ breadcrumb: i,
7
+ breadcrumbSlot: r,
8
+ actions: n,
9
+ sidePanel: c,
10
+ contentClassName: o,
11
+ children: a
12
+ });
13
+ //#endregion
14
+ export { n as OrganizationLayout, n as default };
15
+
16
+ //# sourceMappingURL=OrganizationLayout.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OrganizationLayout.js","names":[],"sources":["../../../../src/components/organization_layout/OrganizationLayout.tsx"],"sourcesContent":["import { type JSX, type ReactNode } from 'react';\n\nimport {\n PageShell,\n type BreadcrumbItem,\n type PageShellActions,\n} from '../layout/PageShell.js';\n\ntype Props = {\n children: ReactNode;\n sidebar: ReactNode;\n breadcrumbItems?: BreadcrumbItem[];\n breadcrumb?: ReactNode;\n actions?: PageShellActions;\n sidePanel?: ReactNode;\n contentClassName?: string;\n};\n\nconst OrganizationLayout = ({\n actions,\n breadcrumb,\n breadcrumbItems,\n children,\n contentClassName,\n sidebar,\n sidePanel,\n}: Props): JSX.Element => {\n return (\n <PageShell\n sidebar={sidebar}\n breadcrumb={breadcrumbItems}\n breadcrumbSlot={breadcrumb}\n actions={actions}\n sidePanel={sidePanel}\n contentClassName={contentClassName}\n >\n {children}\n </PageShell>\n );\n};\n\nexport { OrganizationLayout };\nexport default OrganizationLayout;\n"],"mappings":";;;AAkBA,IAAM,KAAsB,EAC1B,YACA,eACA,oBACA,aACA,qBACA,YACA,mBAGE,kBAAC,GAAD;CACW;CACT,YAAY;CACZ,gBAAgB;CACP;CACE;CACO;CAEjB;CACS,CAAA"}
package/lib/esm/index.js CHANGED
@@ -14,90 +14,96 @@ import { Textarea as d } from "./atomic/atoms/textarea/Textarea.js";
14
14
  import { BreadcrumbNavigation as f } from "./atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.js";
15
15
  import { Card as p } from "./atomic/molecules/card/Card.js";
16
16
  import { CheckboxField as m } from "./atomic/molecules/checkbox_field/CheckboxField.js";
17
- import { Form as h } from "./atomic/molecules/form/Form.js";
18
- import { FormErrorBanner as g } from "./atomic/molecules/form/FormErrorBanner.js";
19
- import { FormGroup as _ } from "./atomic/molecules/form/FormGroup.js";
20
- import { FormActions as v } from "./atomic/molecules/form-actions/FormActions.js";
21
- import { FormError as y } from "./atomic/molecules/form_error/FormError.js";
22
- import { FormField as b } from "./atomic/molecules/form_field/FormField.js";
23
- import { HighlightCode as x } from "./atomic/molecules/highlight/HighlightCode.js";
24
- import { LazyMarkdownRenderer as S } from "./atomic/molecules/markdown/LazyMarkdownRenderer.js";
25
- import { colors as C } from "./theme/colors.js";
26
- import { colors as w, spacing as T, vars as E } from "./theme/themeContract.js";
27
- import { Tabs as D } from "./atomic/molecules/tabs/Tabs.js";
28
- import { ToastViewport as O } from "./atomic/molecules/toast/ToastViewport.js";
29
- import { ToastProvider as k, useToast as A } from "./atomic/molecules/toast/ToastProvider.js";
30
- import { THEME_KEY as j, ThemeProvider as M, useTheme as N } from "./theme/ThemeProvider.js";
31
- import { VisuallyHidden as P } from "./theme/VisuallyHidden.js";
32
- import { containerQueries as F } from "./theme/containerQueries.js";
33
- import { firstChildSprinkles as I, hoverSprinkles as L, sprinkles as R } from "./theme/sprinkles.css.js";
34
- import { opacity as z, screens as B, spacing as V } from "./theme/common.js";
17
+ import { EmptyState as h } from "./atomic/molecules/empty-state/EmptyState.js";
18
+ import { Form as g } from "./atomic/molecules/form/Form.js";
19
+ import { FormErrorBanner as _ } from "./atomic/molecules/form/FormErrorBanner.js";
20
+ import { FormGroup as v } from "./atomic/molecules/form/FormGroup.js";
21
+ import { FormActions as y } from "./atomic/molecules/form-actions/FormActions.js";
22
+ import { FormError as b } from "./atomic/molecules/form_error/FormError.js";
23
+ import { FormField as x } from "./atomic/molecules/form_field/FormField.js";
24
+ import { HighlightCode as S } from "./atomic/molecules/highlight/HighlightCode.js";
25
+ import { LazyMarkdownRenderer as C } from "./atomic/molecules/markdown/LazyMarkdownRenderer.js";
26
+ import { colors as w } from "./theme/colors.js";
27
+ import { colors as T, spacing as E, vars as D } from "./theme/themeContract.js";
28
+ import { MarkdownRenderer as O } from "./atomic/molecules/markdown/MarkdownRenderer.js";
29
+ import { markdownFontSizeVar as k, markdownLinkColorVar as A, markdownLinkDisabledColorVar as j, markdownLinkHoverColorVar as M, markdownLinkIconColorVar as N, markdownTextColorVar as P } from "./atomic/molecules/markdown/markdownVars.css.js";
30
+ import { ProfileDropdown as F } from "./atomic/molecules/profile_dropdown/ProfileDropdown.js";
31
+ import { Tabs as I } from "./atomic/molecules/tabs/Tabs.js";
32
+ import { ToastViewport as L } from "./atomic/molecules/toast/ToastViewport.js";
33
+ import { ToastProvider as R, useToast as z } from "./atomic/molecules/toast/ToastProvider.js";
34
+ import { THEME_KEY as B, ThemeProvider as V, useTheme as H } from "./theme/ThemeProvider.js";
35
+ import { VisuallyHidden as U } from "./theme/VisuallyHidden.js";
36
+ import { containerQueries as W } from "./theme/containerQueries.js";
37
+ import { firstChildSprinkles as G, hoverSprinkles as K, sprinkles as q } from "./theme/sprinkles.css.js";
38
+ import { opacity as J, screens as Y, spacing as X } from "./theme/common.js";
35
39
  import "./theme/index.js";
36
- import { useLoginForm as H } from "./atomic/organisms/login_form/useLoginForm.js";
37
- import { SidebarContainer as U } from "./atomic/organisms/sidebar/SidebarContainer.js";
40
+ import { useLoginForm as Z } from "./atomic/organisms/login_form/useLoginForm.js";
41
+ import { SidebarContainer as Q } from "./atomic/organisms/sidebar/SidebarContainer.js";
38
42
  import "./atomic/organisms/sidebar/Sidebar.js";
39
- import { ChevronLeftIcon as W, ChevronRightIcon as G, DocumentationIcon as K, HomeIcon as q, InitiativesIcon as J, PlusIcon as Y, ProjectsIcon as X, SearchIcon as Z, SettingsIcon as Q, TasksIcon as ne, TeamIcon as re } from "./atomic/organisms/sidebar/icons.js";
40
- import { NavigationSidebar as ie } from "./atomic/organisms/sidebar/NavigationSidebar.js";
41
- import { AuthLayout as ae } from "./atomic/templates/auth_layout/AuthLayout.js";
42
- import { BillingUsageLineChart as oe } from "./components/charts/BillingUsageLineChart.js";
43
- import { DataTable as se } from "./components/data-table/DataTable.js";
44
- import { ContentLayout as ce } from "./components/layout/ContentLayout.js";
45
- import { PageShell as le } from "./components/layout/PageShell.js";
46
- import { SimpleSelect as ue } from "./components/select/SimpleSelect.js";
47
- import { RefetchNeededBanner as $ } from "./components/subscriptions/RefetchNeededBanner.js";
48
- import { TabsContentLayout as de } from "./components/layout/TabsContentLayout.js";
49
- import { InfoTile as fe } from "./components/tile/InfoTile.js";
50
- import { VirtualizedConnectionTable as pe } from "./components/data-table/VirtualizedConnectionTable.js";
51
- import { CopyableText as me } from "./backoffice/atoms/copyable_text/CopyableText.js";
52
- import { BackofficeIdBadge as he } from "./backoffice/atoms/backoffice_id_badge/BackofficeIdBadge.js";
53
- import { EnvironmentBadge as ge } from "./backoffice/atoms/environment_badge/EnvironmentBadge.js";
54
- import { ShortcutHint as _e } from "./backoffice/atoms/shortcut_hint/ShortcutHint.js";
55
- import { Skeleton as ve } from "./backoffice/atoms/skeleton/Skeleton.js";
56
- import { Spinner as ye } from "./backoffice/atoms/spinner/Spinner.js";
57
- import { StatusBadge as be } from "./backoffice/atoms/status_badge/StatusBadge.js";
58
- import { Tag as xe } from "./backoffice/atoms/tag/Tag.js";
59
- import { BackofficeDetailLayout as Se } from "./backoffice/molecules/backoffice_detail_layout/BackofficeDetailLayout.js";
60
- import { BackofficeEmptyState as Ce } from "./backoffice/molecules/backoffice_empty_state/BackofficeEmptyState.js";
61
- import { BackofficeFilterDrawer as we } from "./backoffice/molecules/backoffice_filter_drawer/BackofficeFilterDrawer.js";
62
- import { BackofficeFilterField as Te } from "./backoffice/molecules/backoffice_filter_field/BackofficeFilterField.js";
63
- import { BackofficeFiltersBar as Ee } from "./backoffice/molecules/backoffice_filters_bar/BackofficeFiltersBar.js";
64
- import { BackofficeFormSection as De } from "./backoffice/molecules/backoffice_form_section/BackofficeFormSection.js";
65
- import { ConfirmDialog as Oe } from "./backoffice/molecules/confirm_dialog/ConfirmDialog.js";
66
- import { BackofficeJsonViewer as ke } from "./backoffice/molecules/backoffice_json_viewer/BackofficeJsonViewer.js";
67
- import { BackofficeKeyValueList as Ae } from "./backoffice/molecules/backoffice_key_value_list/BackofficeKeyValueList.js";
68
- import { BackofficeLoadMore as je } from "./backoffice/molecules/backoffice_load_more/BackofficeLoadMore.js";
69
- import { BackofficePageHeader as Me } from "./backoffice/molecules/backoffice_page_header/BackofficePageHeader.js";
70
- import { BackofficeRelationsMenu as Ne } from "./backoffice/molecules/backoffice_relations_menu/BackofficeRelationsMenu.js";
71
- import { BackofficeTableSkeleton as Pe } from "./backoffice/molecules/backoffice_table_skeleton/BackofficeTableSkeleton.js";
72
- import { BackofficeTableToolbar as Fe } from "./backoffice/molecules/backoffice_table_toolbar/BackofficeTableToolbar.js";
73
- import { BackofficeTabs as Ie } from "./backoffice/molecules/backoffice_tabs/BackofficeTabs.js";
74
- import { BulkActionsBar as Le } from "./backoffice/molecules/bulk_actions_bar/BulkActionsBar.js";
75
- import { FilterChipRow as Re } from "./backoffice/molecules/filter_chip_row/FilterChipRow.js";
76
- import { GlobalSearchInput as ze } from "./backoffice/molecules/global_search_input/GlobalSearchInput.js";
77
- import { InlineBanner as Be } from "./backoffice/molecules/inline_banner/InlineBanner.js";
78
- import { SidebarNavItem as Ve } from "./backoffice/molecules/sidebar_nav_item/SidebarNavItem.js";
79
- import { SidebarNavSection as He } from "./backoffice/molecules/sidebar_nav_section/SidebarNavSection.js";
80
- import { BackofficeSidebarProfileMenu as Ue } from "./backoffice/molecules/sidebar_profile_menu/BackofficeSidebarProfileMenu.js";
81
- import { SidebarCollapseToggle as We } from "./backoffice/molecules/sidebar_collapse_toggle/SidebarCollapseToggle.js";
82
- import { TableToolbar as Ge } from "./backoffice/molecules/table_toolbar/TableToolbar.js";
83
- import { BackofficeAppShell as Ke } from "./backoffice/organisms/backoffice_app_shell/BackofficeAppShell.js";
84
- import { AuditTimeline as qe } from "./backoffice/organisms/audit_timeline/AuditTimeline.js";
85
- import { BackofficeDataTable as Je } from "./backoffice/organisms/backoffice_data_table/BackofficeDataTable.js";
86
- import { BackofficeSidebar as Ye } from "./backoffice/organisms/backoffice_sidebar/BackofficeSidebar.js";
87
- import { BackofficeTopbar as Xe } from "./backoffice/organisms/backoffice_topbar/BackofficeTopbar.js";
88
- import { BackofficeVirtualizedConnectionTable as Ze } from "./backoffice/organisms/backoffice_virtualized_connection_table/BackofficeVirtualizedConnectionTable.js";
89
- import { EntityHeader as Qe } from "./backoffice/organisms/entity_header/EntityHeader.js";
90
- import { BackofficeShellTemplate as $e } from "./backoffice/templates/backoffice_shell_template/BackofficeShellTemplate.js";
91
- import { DetailPageTemplate as et } from "./backoffice/templates/detail_page_template/DetailPageTemplate.js";
92
- import { ListPageTemplate as tt } from "./backoffice/templates/list_page_template/ListPageTemplate.js";
93
- import { SettingsTemplate as nt } from "./backoffice/templates/settings_template/SettingsTemplate.js";
94
- import { SplitViewTemplate as rt } from "./backoffice/templates/split_view_template/SplitViewTemplate.js";
95
- import { backofficeThemeClass as it } from "./backoffice/theme/backofficeTheme.css.js";
96
- import { BackofficeThemeProvider as at } from "./backoffice/theme/BackofficeThemeProvider.js";
97
- import { FALLBACK_REFERENCE as ot, formatNullableCurrency as st, formatNullableNumber as ct, formatNullableString as lt, formatStringList as ut } from "./shared/agentJobRequestFormatting.js";
98
- import { sanitizeAgentAnswer as dt, sanitizeAgentMarkdown as ft } from "./shared/agentText.js";
99
- import { denseTableClass as pt } from "./shared/backofficeTableDensity.css.js";
100
- import { WrapperPage as mt } from "./pages/WrapperPage.js";
101
- import { ChevronDownIcon as ht } from "./svg/ChevronDownIcon.js";
102
- import { LoginForm as gt } from "./atomic/organisms/login_form/LoginForm.js";
103
- export { qe as AuditTimeline, ae as AuthLayout, Ke as BackofficeAppShell, Je as BackofficeDataTable, Se as BackofficeDetailLayout, Ce as BackofficeEmptyState, we as BackofficeFilterDrawer, Te as BackofficeFilterField, Ee as BackofficeFiltersBar, De as BackofficeFormSection, he as BackofficeIdBadge, ke as BackofficeJsonViewer, Ae as BackofficeKeyValueList, je as BackofficeLoadMore, Me as BackofficePageHeader, Ne as BackofficeRelationsMenu, $e as BackofficeShellTemplate, Ye as BackofficeSidebar, Ue as BackofficeSidebarProfileMenu, Pe as BackofficeTableSkeleton, Fe as BackofficeTableToolbar, Ie as BackofficeTabs, at as BackofficeThemeProvider, Xe as BackofficeTopbar, Ze as BackofficeVirtualizedConnectionTable, e as Badge, oe as BillingUsageLineChart, f as BreadcrumbNavigation, Le as BulkActionsBar, t as Button, p as Card, a as Checkbox, m as CheckboxField, ht as ChevronDownIcon, W as ChevronLeftIcon, G as ChevronRightIcon, Oe as ConfirmDialog, ce as ContentLayout, me as CopyableText, se as DataTable, et as DetailPageTemplate, K as DocumentationIcon, Qe as EntityHeader, ge as EnvironmentBadge, o as ErrorMessage, ot as FALLBACK_REFERENCE, Re as FilterChipRow, h as Form, v as FormActions, y as FormError, g as FormErrorBanner, b as FormField, _ as FormGroup, s as FormattedDate, ze as GlobalSearchInput, x as HighlightCode, q as HomeIcon, c as IconMenuButton, fe as InfoTile, J as InitiativesIcon, Be as InlineBanner, r as Input, i as Label, S as LazyMarkdownRenderer, n as LinkButton, tt as ListPageTemplate, gt as LoginForm, u as Modal, ie as NavigationSidebar, l as Overlay, le as PageShell, Y as PlusIcon, X as ProjectsIcon, $ as RefetchNeededBanner, Z as SearchIcon, Q as SettingsIcon, nt as SettingsTemplate, _e as ShortcutHint, U as Sidebar, We as SidebarCollapseToggle, U as SidebarContainer, Ve as SidebarNavItem, He as SidebarNavSection, ue as SimpleSelect, ve as Skeleton, ye as Spinner, rt as SplitViewTemplate, be as StatusBadge, j as THEME_KEY, Ge as TableToolbar, D as Tabs, de as TabsContentLayout, xe as Tag, ne as TasksIcon, re as TeamIcon, d as Textarea, M as ThemeProvider, k as ToastProvider, O as ToastViewport, pe as VirtualizedConnectionTable, P as VisuallyHidden, mt as WrapperPage, it as backofficeThemeClass, w as colors, F as containerQueries, ee as cx, pt as denseTableClass, I as firstChildSprinkles, st as formatNullableCurrency, ct as formatNullableNumber, lt as formatNullableString, ut as formatStringList, L as hoverSprinkles, te as onlyDefinedStyles, z as opacity, dt as sanitizeAgentAnswer, ft as sanitizeAgentMarkdown, B as screens, T as spacing, R as sprinkles, C as themeColorValues, V as themeSpacingValues, H as useLoginForm, N as useTheme, A as useToast, E as vars };
43
+ import { ChevronLeftIcon as ne, ChevronRightIcon as re, DocumentationIcon as ie, HomeIcon as ae, InitiativesIcon as oe, PlusIcon as se, ProjectsIcon as ce, SearchIcon as le, SettingsIcon as ue, TasksIcon as de, TeamIcon as fe } from "./atomic/organisms/sidebar/icons.js";
44
+ import { NavigationSidebar as pe } from "./atomic/organisms/sidebar/NavigationSidebar.js";
45
+ import { AuthLayout as me } from "./atomic/templates/auth_layout/AuthLayout.js";
46
+ import { BillingUsageLineChart as he } from "./components/charts/BillingUsageLineChart.js";
47
+ import { DataTable as ge } from "./components/data-table/DataTable.js";
48
+ import { ContentLayout as _e } from "./components/layout/ContentLayout.js";
49
+ import { PageShell as ve } from "./components/layout/PageShell.js";
50
+ import { OrganizationLayout as ye } from "./components/organization_layout/OrganizationLayout.js";
51
+ import { sanitizeAgentAnswer as be, sanitizeAgentMarkdown as xe } from "./shared/agentText.js";
52
+ import { AgentMarkdownCard as Se } from "./components/agent/AgentMarkdownCard.js";
53
+ import { SimpleSelect as $ } from "./components/select/SimpleSelect.js";
54
+ import { RefetchNeededBanner as Ce } from "./components/subscriptions/RefetchNeededBanner.js";
55
+ import { TabsContentLayout as we } from "./components/layout/TabsContentLayout.js";
56
+ import { InfoTile as Te } from "./components/tile/InfoTile.js";
57
+ import { VirtualizedConnectionTable as Ee } from "./components/data-table/VirtualizedConnectionTable.js";
58
+ import { CopyableText as De } from "./backoffice/atoms/copyable_text/CopyableText.js";
59
+ import { BackofficeIdBadge as Oe } from "./backoffice/atoms/backoffice_id_badge/BackofficeIdBadge.js";
60
+ import { EnvironmentBadge as ke } from "./backoffice/atoms/environment_badge/EnvironmentBadge.js";
61
+ import { ShortcutHint as Ae } from "./backoffice/atoms/shortcut_hint/ShortcutHint.js";
62
+ import { Skeleton as je } from "./backoffice/atoms/skeleton/Skeleton.js";
63
+ import { Spinner as Me } from "./backoffice/atoms/spinner/Spinner.js";
64
+ import { StatusBadge as Ne } from "./backoffice/atoms/status_badge/StatusBadge.js";
65
+ import { Tag as Pe } from "./backoffice/atoms/tag/Tag.js";
66
+ import { BackofficeDetailLayout as Fe } from "./backoffice/molecules/backoffice_detail_layout/BackofficeDetailLayout.js";
67
+ import { BackofficeEmptyState as Ie } from "./backoffice/molecules/backoffice_empty_state/BackofficeEmptyState.js";
68
+ import { BackofficeFilterDrawer as Le } from "./backoffice/molecules/backoffice_filter_drawer/BackofficeFilterDrawer.js";
69
+ import { BackofficeFilterField as Re } from "./backoffice/molecules/backoffice_filter_field/BackofficeFilterField.js";
70
+ import { BackofficeFiltersBar as ze } from "./backoffice/molecules/backoffice_filters_bar/BackofficeFiltersBar.js";
71
+ import { BackofficeFormSection as Be } from "./backoffice/molecules/backoffice_form_section/BackofficeFormSection.js";
72
+ import { ConfirmDialog as Ve } from "./backoffice/molecules/confirm_dialog/ConfirmDialog.js";
73
+ import { BackofficeJsonViewer as He } from "./backoffice/molecules/backoffice_json_viewer/BackofficeJsonViewer.js";
74
+ import { BackofficeKeyValueList as Ue } from "./backoffice/molecules/backoffice_key_value_list/BackofficeKeyValueList.js";
75
+ import { BackofficeLoadMore as We } from "./backoffice/molecules/backoffice_load_more/BackofficeLoadMore.js";
76
+ import { BackofficePageHeader as Ge } from "./backoffice/molecules/backoffice_page_header/BackofficePageHeader.js";
77
+ import { BackofficeRelationsMenu as Ke } from "./backoffice/molecules/backoffice_relations_menu/BackofficeRelationsMenu.js";
78
+ import { BackofficeTableSkeleton as qe } from "./backoffice/molecules/backoffice_table_skeleton/BackofficeTableSkeleton.js";
79
+ import { BackofficeTableToolbar as Je } from "./backoffice/molecules/backoffice_table_toolbar/BackofficeTableToolbar.js";
80
+ import { BackofficeTabs as Ye } from "./backoffice/molecules/backoffice_tabs/BackofficeTabs.js";
81
+ import { BulkActionsBar as Xe } from "./backoffice/molecules/bulk_actions_bar/BulkActionsBar.js";
82
+ import { FilterChipRow as Ze } from "./backoffice/molecules/filter_chip_row/FilterChipRow.js";
83
+ import { GlobalSearchInput as Qe } from "./backoffice/molecules/global_search_input/GlobalSearchInput.js";
84
+ import { InlineBanner as $e } from "./backoffice/molecules/inline_banner/InlineBanner.js";
85
+ import { SidebarNavItem as et } from "./backoffice/molecules/sidebar_nav_item/SidebarNavItem.js";
86
+ import { SidebarNavSection as tt } from "./backoffice/molecules/sidebar_nav_section/SidebarNavSection.js";
87
+ import { BackofficeSidebarProfileMenu as nt } from "./backoffice/molecules/sidebar_profile_menu/BackofficeSidebarProfileMenu.js";
88
+ import { SidebarCollapseToggle as rt } from "./backoffice/molecules/sidebar_collapse_toggle/SidebarCollapseToggle.js";
89
+ import { TableToolbar as it } from "./backoffice/molecules/table_toolbar/TableToolbar.js";
90
+ import { BackofficeAppShell as at } from "./backoffice/organisms/backoffice_app_shell/BackofficeAppShell.js";
91
+ import { AuditTimeline as ot } from "./backoffice/organisms/audit_timeline/AuditTimeline.js";
92
+ import { BackofficeDataTable as st } from "./backoffice/organisms/backoffice_data_table/BackofficeDataTable.js";
93
+ import { BackofficeSidebar as ct } from "./backoffice/organisms/backoffice_sidebar/BackofficeSidebar.js";
94
+ import { BackofficeTopbar as lt } from "./backoffice/organisms/backoffice_topbar/BackofficeTopbar.js";
95
+ import { BackofficeVirtualizedConnectionTable as ut } from "./backoffice/organisms/backoffice_virtualized_connection_table/BackofficeVirtualizedConnectionTable.js";
96
+ import { EntityHeader as dt } from "./backoffice/organisms/entity_header/EntityHeader.js";
97
+ import { BackofficeShellTemplate as ft } from "./backoffice/templates/backoffice_shell_template/BackofficeShellTemplate.js";
98
+ import { DetailPageTemplate as pt } from "./backoffice/templates/detail_page_template/DetailPageTemplate.js";
99
+ import { ListPageTemplate as mt } from "./backoffice/templates/list_page_template/ListPageTemplate.js";
100
+ import { SettingsTemplate as ht } from "./backoffice/templates/settings_template/SettingsTemplate.js";
101
+ import { SplitViewTemplate as gt } from "./backoffice/templates/split_view_template/SplitViewTemplate.js";
102
+ import { backofficeThemeClass as _t } from "./backoffice/theme/backofficeTheme.css.js";
103
+ import { BackofficeThemeProvider as vt } from "./backoffice/theme/BackofficeThemeProvider.js";
104
+ import { FALLBACK_REFERENCE as yt, formatNullableCurrency as bt, formatNullableNumber as xt, formatNullableString as St, formatStringList as Ct } from "./shared/agentJobRequestFormatting.js";
105
+ import { denseTableClass as wt } from "./shared/backofficeTableDensity.css.js";
106
+ import { WrapperPage as Tt } from "./pages/WrapperPage.js";
107
+ import { ChevronDownIcon as Et } from "./svg/ChevronDownIcon.js";
108
+ import { LoginForm as Dt } from "./atomic/organisms/login_form/LoginForm.js";
109
+ export { Se as AgentMarkdownCard, ot as AuditTimeline, me as AuthLayout, at as BackofficeAppShell, st as BackofficeDataTable, Fe as BackofficeDetailLayout, Ie as BackofficeEmptyState, Le as BackofficeFilterDrawer, Re as BackofficeFilterField, ze as BackofficeFiltersBar, Be as BackofficeFormSection, Oe as BackofficeIdBadge, He as BackofficeJsonViewer, Ue as BackofficeKeyValueList, We as BackofficeLoadMore, Ge as BackofficePageHeader, Ke as BackofficeRelationsMenu, ft as BackofficeShellTemplate, ct as BackofficeSidebar, nt as BackofficeSidebarProfileMenu, qe as BackofficeTableSkeleton, Je as BackofficeTableToolbar, Ye as BackofficeTabs, vt as BackofficeThemeProvider, lt as BackofficeTopbar, ut as BackofficeVirtualizedConnectionTable, e as Badge, he as BillingUsageLineChart, f as BreadcrumbNavigation, Xe as BulkActionsBar, t as Button, p as Card, a as Checkbox, m as CheckboxField, Et as ChevronDownIcon, ne as ChevronLeftIcon, re as ChevronRightIcon, Ve as ConfirmDialog, _e as ContentLayout, De as CopyableText, ge as DataTable, pt as DetailPageTemplate, ie as DocumentationIcon, h as EmptyState, dt as EntityHeader, ke as EnvironmentBadge, o as ErrorMessage, yt as FALLBACK_REFERENCE, Ze as FilterChipRow, g as Form, y as FormActions, b as FormError, _ as FormErrorBanner, x as FormField, v as FormGroup, s as FormattedDate, Qe as GlobalSearchInput, S as HighlightCode, ae as HomeIcon, c as IconMenuButton, Te as InfoTile, oe as InitiativesIcon, $e as InlineBanner, r as Input, i as Label, C as LazyMarkdownRenderer, n as LinkButton, mt as ListPageTemplate, Dt as LoginForm, O as MarkdownRenderer, u as Modal, pe as NavigationSidebar, ye as OrganizationLayout, l as Overlay, ve as PageShell, se as PlusIcon, F as ProfileDropdown, ce as ProjectsIcon, Ce as RefetchNeededBanner, le as SearchIcon, ue as SettingsIcon, ht as SettingsTemplate, Ae as ShortcutHint, Q as Sidebar, rt as SidebarCollapseToggle, Q as SidebarContainer, et as SidebarNavItem, tt as SidebarNavSection, $ as SimpleSelect, je as Skeleton, Me as Spinner, gt as SplitViewTemplate, Ne as StatusBadge, B as THEME_KEY, it as TableToolbar, I as Tabs, we as TabsContentLayout, Pe as Tag, de as TasksIcon, fe as TeamIcon, d as Textarea, V as ThemeProvider, R as ToastProvider, L as ToastViewport, Ee as VirtualizedConnectionTable, U as VisuallyHidden, Tt as WrapperPage, _t as backofficeThemeClass, T as colors, W as containerQueries, ee as cx, wt as denseTableClass, G as firstChildSprinkles, bt as formatNullableCurrency, xt as formatNullableNumber, St as formatNullableString, Ct as formatStringList, K as hoverSprinkles, k as markdownFontSizeVar, A as markdownLinkColorVar, j as markdownLinkDisabledColorVar, M as markdownLinkHoverColorVar, N as markdownLinkIconColorVar, P as markdownTextColorVar, te as onlyDefinedStyles, J as opacity, be as sanitizeAgentAnswer, xe as sanitizeAgentMarkdown, Y as screens, E as spacing, q as sprinkles, w as themeColorValues, X as themeSpacingValues, Z as useLoginForm, H as useTheme, z as useToast, D as vars };