@plumile/ui 0.1.166 → 0.1.167
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/lib/esm/admin/organisms/admin_topbar/adminTopbar.css.js +0 -2
- package/lib/esm/admin/theme/adminDensity.css.js +2 -0
- package/lib/esm/atomic/molecules/markdown/components/MarkdownArticleContainer.css.js +0 -1
- package/lib/esm/atomic/molecules/markdown/components/MarkdownList.css.js +1 -0
- package/lib/esm/backoffice/molecules/backoffice_sticky_disclosure/BackofficeStickyDisclosure.js +65 -0
- package/lib/esm/backoffice/molecules/backoffice_sticky_disclosure/BackofficeStickyDisclosure.js.map +1 -0
- package/lib/esm/backoffice/molecules/backoffice_sticky_disclosure/backofficeStickyDisclosure.css.js +71 -0
- package/lib/esm/backoffice/molecules/backoffice_sticky_disclosure/backofficeStickyDisclosure.css.js.map +1 -0
- package/lib/esm/index.js +121 -120
- package/lib/esm/style.css +1 -1
- package/lib/types/backoffice/molecules/backoffice_sticky_disclosure/BackofficeStickyDisclosure.d.ts +21 -0
- package/lib/types/backoffice/molecules/backoffice_sticky_disclosure/BackofficeStickyDisclosure.d.ts.map +1 -0
- package/lib/types/backoffice/molecules/backoffice_sticky_disclosure/backofficeStickyDisclosure.css.d.ts +47 -0
- package/lib/types/backoffice/molecules/backoffice_sticky_disclosure/backofficeStickyDisclosure.css.d.ts.map +1 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/index.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -4,8 +4,6 @@
|
|
|
4
4
|
/* empty css */
|
|
5
5
|
/* empty css */
|
|
6
6
|
/* empty css */
|
|
7
|
-
/* empty css */
|
|
8
|
-
/* empty css */
|
|
9
7
|
/* empty css */
|
|
10
8
|
//#region src/admin/organisms/admin_topbar/adminTopbar.css.ts
|
|
11
9
|
var e = "_1lo5q0p0 txvbqbfpn txvbqbh4x txvbqbhdy txvbqbv7x txvbqb19uf", t = "_1lo5q0p1 txvbqbfpn txvbqbey txvbqbheb txvbqbh7g txvbqbv7x", n = "_1lo5q0p2 txvbqbfpn txvbqbey txvbqbh7g txvbqbhdy txvbqbfvs txvbqbv7x txvbqb19uf", r = "_1lo5q0p3 txvbqbfqq txvbqbey txvbqbhdl txvbqblsh txvbqbh6d", i = "_1lo5q0p4 txvbqbfqq txvbqbey txvbqbjlr txvbqb1aao txvbqb1b9f";
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
/* empty css */
|
|
6
6
|
/* empty css */
|
|
7
7
|
/* empty css */
|
|
8
|
+
/* empty css */
|
|
9
|
+
/* empty css */
|
|
8
10
|
//#region src/admin/theme/adminDensity.css.ts
|
|
9
11
|
var e = "var(--_1eea990)", t = "var(--_1eea991)", n = "var(--_1eea992)", r = "var(--_1eea993)", i = "var(--_1eea994)", a = "var(--_1eea995)", o = "var(--_1eea996)", s = "_1eea997", c = "_1eea998", l = "_1eea999";
|
|
10
12
|
//#endregion
|
package/lib/esm/backoffice/molecules/backoffice_sticky_disclosure/BackofficeStickyDisclosure.js
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { cx as e } from "../../../theme/tools.js";
|
|
2
|
+
import { ChevronDownSvg as t } from "../../../icons/ChevronDownSvg.js";
|
|
3
|
+
import { body as n, chevron as r, chevronOpen as i, header as a, heading as o, root as s, title as c } from "./backofficeStickyDisclosure.css.js";
|
|
4
|
+
import { jsx as l, jsxs as u } from "react/jsx-runtime";
|
|
5
|
+
//#region src/backoffice/molecules/backoffice_sticky_disclosure/BackofficeStickyDisclosure.tsx
|
|
6
|
+
var d = ({ actions: d, badges: f, bodyId: p, children: m, className: h, depth: g = 0, headerClassName: _, isOpen: v, meta: y, onToggle: b, preview: x, scrollMode: S = "page", title: C }) => {
|
|
7
|
+
let w = S === "contained";
|
|
8
|
+
return /* @__PURE__ */ u("section", {
|
|
9
|
+
className: e(s({
|
|
10
|
+
depth: g,
|
|
11
|
+
open: v,
|
|
12
|
+
scrollMode: S
|
|
13
|
+
}), h),
|
|
14
|
+
"data-scroll-mode": S,
|
|
15
|
+
"data-depth": g,
|
|
16
|
+
children: [/* @__PURE__ */ u("button", {
|
|
17
|
+
type: "button",
|
|
18
|
+
className: e(a({ sticky: w }), _),
|
|
19
|
+
"aria-expanded": v,
|
|
20
|
+
"aria-controls": p,
|
|
21
|
+
onClick: b,
|
|
22
|
+
children: [
|
|
23
|
+
/* @__PURE__ */ l("span", {
|
|
24
|
+
className: e(r, { [i]: v }),
|
|
25
|
+
"aria-hidden": "true",
|
|
26
|
+
children: /* @__PURE__ */ l(t, {
|
|
27
|
+
width: 16,
|
|
28
|
+
height: 16
|
|
29
|
+
})
|
|
30
|
+
}),
|
|
31
|
+
/* @__PURE__ */ u("span", {
|
|
32
|
+
className: o,
|
|
33
|
+
children: [/* @__PURE__ */ l("span", {
|
|
34
|
+
className: c,
|
|
35
|
+
children: C
|
|
36
|
+
}), y != null && /* @__PURE__ */ l("span", {
|
|
37
|
+
className: "p88k6ko txvbqbfpn txvbqbh7g txvbqbhd8 txvbqb1bg3 txvbqb96",
|
|
38
|
+
children: y
|
|
39
|
+
})]
|
|
40
|
+
}),
|
|
41
|
+
f != null && /* @__PURE__ */ l("span", {
|
|
42
|
+
className: "p88k6kp txvbqbfpn txvbqbh7g txvbqblsh txvbqbey txvbqbhd8",
|
|
43
|
+
children: f
|
|
44
|
+
}),
|
|
45
|
+
d != null && /* @__PURE__ */ l("span", {
|
|
46
|
+
className: "p88k6kq txvbqbfpn txvbqbh7g txvbqblsh txvbqbey txvbqbhd8",
|
|
47
|
+
children: d
|
|
48
|
+
}),
|
|
49
|
+
x != null && /* @__PURE__ */ l("span", {
|
|
50
|
+
className: "p88k6kr txvbqbfpn txvbqbgcr txvbqbv7x",
|
|
51
|
+
children: x
|
|
52
|
+
})
|
|
53
|
+
]
|
|
54
|
+
}), v && /* @__PURE__ */ l("div", {
|
|
55
|
+
id: p,
|
|
56
|
+
className: n({ scrollMode: S }),
|
|
57
|
+
"data-disclosure-body": "",
|
|
58
|
+
children: m
|
|
59
|
+
})]
|
|
60
|
+
});
|
|
61
|
+
};
|
|
62
|
+
//#endregion
|
|
63
|
+
export { d as BackofficeStickyDisclosure, d as default };
|
|
64
|
+
|
|
65
|
+
//# sourceMappingURL=BackofficeStickyDisclosure.js.map
|
package/lib/esm/backoffice/molecules/backoffice_sticky_disclosure/BackofficeStickyDisclosure.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BackofficeStickyDisclosure.js","names":[],"sources":["../../../../../src/backoffice/molecules/backoffice_sticky_disclosure/BackofficeStickyDisclosure.tsx"],"sourcesContent":["import { type JSX, type ReactNode } from 'react';\n\nimport { ChevronDownSvg } from '../../../icons/ChevronDownSvg.js';\nimport { cx } from '../../../theme/tools.js';\nimport * as styles from './backofficeStickyDisclosure.css.js';\n\nexport type BackofficeStickyDisclosureDepth = 0 | 1 | 2 | 3;\nexport type BackofficeStickyDisclosureScrollMode = 'page' | 'contained';\n\nexport type BackofficeStickyDisclosureProps = {\n title: ReactNode;\n bodyId: string;\n children: ReactNode;\n isOpen: boolean;\n onToggle: () => void;\n actions?: ReactNode;\n badges?: ReactNode;\n className?: string;\n depth?: BackofficeStickyDisclosureDepth;\n headerClassName?: string;\n meta?: ReactNode;\n preview?: ReactNode;\n scrollMode?: BackofficeStickyDisclosureScrollMode;\n};\n\nexport const BackofficeStickyDisclosure = ({\n actions,\n badges,\n bodyId,\n children,\n className,\n depth = 0,\n headerClassName,\n isOpen,\n meta,\n onToggle,\n preview,\n scrollMode = 'page',\n title,\n}: BackofficeStickyDisclosureProps): JSX.Element => {\n const isContained = scrollMode === 'contained';\n\n return (\n <section\n className={cx(\n styles.root({\n depth,\n open: isOpen,\n scrollMode,\n }),\n className,\n )}\n data-scroll-mode={scrollMode}\n data-depth={depth}\n >\n <button\n type=\"button\"\n className={cx(styles.header({ sticky: isContained }), headerClassName)}\n aria-expanded={isOpen}\n aria-controls={bodyId}\n onClick={onToggle}\n >\n <span\n className={cx(styles.chevron, {\n [styles.chevronOpen]: isOpen,\n })}\n aria-hidden=\"true\"\n >\n <ChevronDownSvg width={16} height={16} />\n </span>\n <span className={styles.heading}>\n <span className={styles.title}>{title}</span>\n {meta != null && <span className={styles.meta}>{meta}</span>}\n </span>\n {badges != null && <span className={styles.badges}>{badges}</span>}\n {actions != null && <span className={styles.actions}>{actions}</span>}\n {preview != null && <span className={styles.preview}>{preview}</span>}\n </button>\n {isOpen && (\n <div\n id={bodyId}\n className={styles.body({ scrollMode })}\n data-disclosure-body=\"\"\n >\n {children}\n </div>\n )}\n </section>\n );\n};\n\nexport default BackofficeStickyDisclosure;\n"],"mappings":";;;;;AAyBA,IAAa,KAA8B,EACzC,SAAA,GACA,QAAA,GACA,WACA,aACA,cACA,WAAQ,GACR,oBACA,WACA,MAAA,GACA,aACA,SAAA,GACA,gBAAa,QACb,OAAA,QACkD;CAClD,IAAM,IAAc,MAAe;CAEnC,OACE,kBAAC,WAAD;EACE,WAAW,EACT,EAAY;GACV;GACA,MAAM;GACN;EACF,CAAC,GACD,CACF;EACA,oBAAkB;EAClB,cAAY;YAVd,CAYE,kBAAC,UAAD;GACE,MAAK;GACL,WAAW,EAAG,EAAc,EAAE,QAAQ,EAAY,CAAC,GAAG,CAAe;GACrE,iBAAe;GACf,iBAAe;GACf,SAAS;aALX;IAOE,kBAAC,QAAD;KACE,WAAW,EAAG,GAAgB,GAC3B,IAAqB,EACxB,CAAC;KACD,eAAY;eAEZ,kBAAC,GAAD;MAAgB,OAAO;MAAI,QAAQ;KAAK,CAAA;IACpC,CAAA;IACN,kBAAC,QAAD;KAAM,WAAW;eAAjB,CACE,kBAAC,QAAD;MAAM,WAAW;gBAAe;KAAY,CAAA,GAC3C,KAAQ,QAAQ,kBAAC,QAAD;MAAM,WAAW;gBAAc;KAAW,CAAA,CACvD;;IACL,KAAU,QAAQ,kBAAC,QAAD;KAAM,WAAW;eAAgB;IAAa,CAAA;IAChE,KAAW,QAAQ,kBAAC,QAAD;KAAM,WAAW;eAAiB;IAAc,CAAA;IACnE,KAAW,QAAQ,kBAAC,QAAD;KAAM,WAAW;eAAiB;IAAc,CAAA;GAC9D;MACP,KACC,kBAAC,OAAD;GACE,IAAI;GACJ,WAAW,EAAY,EAAE,cAAW,CAAC;GACrC,wBAAqB;GAEpB;EACE,CAAA,CAEA;;AAEb"}
|
package/lib/esm/backoffice/molecules/backoffice_sticky_disclosure/backofficeStickyDisclosure.css.js
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/* empty css */
|
|
2
|
+
/* empty css */
|
|
3
|
+
/* empty css */
|
|
4
|
+
/* empty css */
|
|
5
|
+
/* empty css */
|
|
6
|
+
/* empty css */
|
|
7
|
+
/* empty css */
|
|
8
|
+
import { createRuntimeFn as e } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
9
|
+
//#region src/backoffice/molecules/backoffice_sticky_disclosure/backofficeStickyDisclosure.css.ts
|
|
10
|
+
var t = e({
|
|
11
|
+
defaultClassName: "p88k6k2 p88k6k1 txvbqbfq0 txvbqbv7x txvbqb2tz txvbqb1b85",
|
|
12
|
+
variantClassNames: {
|
|
13
|
+
depth: {
|
|
14
|
+
0: "p88k6k3",
|
|
15
|
+
1: "p88k6k4",
|
|
16
|
+
2: "p88k6k5",
|
|
17
|
+
3: "p88k6k6"
|
|
18
|
+
},
|
|
19
|
+
open: {
|
|
20
|
+
true: "p88k6k7",
|
|
21
|
+
false: "p88k6k8"
|
|
22
|
+
},
|
|
23
|
+
scrollMode: {
|
|
24
|
+
page: "p88k6k9",
|
|
25
|
+
contained: "p88k6ka"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
defaultVariants: {},
|
|
29
|
+
compoundVariants: [
|
|
30
|
+
[{
|
|
31
|
+
open: !0,
|
|
32
|
+
scrollMode: "contained",
|
|
33
|
+
depth: 0
|
|
34
|
+
}, "p88k6kb"],
|
|
35
|
+
[{
|
|
36
|
+
open: !0,
|
|
37
|
+
scrollMode: "contained",
|
|
38
|
+
depth: 1
|
|
39
|
+
}, "p88k6kc"],
|
|
40
|
+
[{
|
|
41
|
+
open: !0,
|
|
42
|
+
scrollMode: "contained",
|
|
43
|
+
depth: 2
|
|
44
|
+
}, "p88k6kd"],
|
|
45
|
+
[{
|
|
46
|
+
open: !0,
|
|
47
|
+
scrollMode: "contained",
|
|
48
|
+
depth: 3
|
|
49
|
+
}, "p88k6ke"]
|
|
50
|
+
]
|
|
51
|
+
}), n = e({
|
|
52
|
+
defaultClassName: "p88k6kg p88k6kf txvbqbfpn txvbqbel txvbqbh7g txvbqbhdl txvbqb19uf txvbqbwwl txvbqb1tv txvbqb1b85 txvbqb1bg1 txvbqb18dc txvbqbv txvbqbv7x",
|
|
53
|
+
variantClassNames: { sticky: {
|
|
54
|
+
true: "p88k6kh p88k6k0",
|
|
55
|
+
false: "p88k6ki"
|
|
56
|
+
} },
|
|
57
|
+
defaultVariants: {},
|
|
58
|
+
compoundVariants: []
|
|
59
|
+
}), r = "p88k6kk p88k6kj txvbqbfqq txvbqbey txvbqbls4 txvbqb1bg3 txvbqbh6d", i = "p88k6kl", a = "p88k6km txvbqbfpn txvbqbh4x txvbqbgc1 txvbqbhd8 txvbqbv7x txvbqbfvs", o = "p88k6kn txvbqb1bg1 txvbqb9j txvbqbhbf", s = "p88k6ko txvbqbfpn txvbqbh7g txvbqbhd8 txvbqb1bg3 txvbqb96", c = "p88k6kp txvbqbfpn txvbqbh7g txvbqblsh txvbqbey txvbqbhd8", l = "p88k6kq txvbqbfpn txvbqbh7g txvbqblsh txvbqbey txvbqbhd8", u = "p88k6kr txvbqbfpn txvbqbgcr txvbqbv7x", d = e({
|
|
60
|
+
defaultClassName: "p88k6kt p88k6ks txvbqbfpn txvbqbh4x txvbqbhdl txvbqbwwl txvbqb12h0 txvbqbv7x txvbqbu86",
|
|
61
|
+
variantClassNames: { scrollMode: {
|
|
62
|
+
page: "p88k6ku",
|
|
63
|
+
contained: "p88k6kv"
|
|
64
|
+
} },
|
|
65
|
+
defaultVariants: {},
|
|
66
|
+
compoundVariants: []
|
|
67
|
+
});
|
|
68
|
+
//#endregion
|
|
69
|
+
export { l as actions, c as badges, d as body, r as chevron, i as chevronOpen, n as header, a as heading, s as meta, u as preview, t as root, o as title };
|
|
70
|
+
|
|
71
|
+
//# sourceMappingURL=backofficeStickyDisclosure.css.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"backofficeStickyDisclosure.css.js","names":[],"sources":["../../../../../src/backoffice/molecules/backoffice_sticky_disclosure/backofficeStickyDisclosure.css.ts"],"sourcesContent":["import { style } from '@vanilla-extract/css';\nimport { recipe } from '@vanilla-extract/recipes';\n\nimport { sprinkles, vars } from '../../../theme/index.js';\n\nconst stickyHeaderBase = style({\n insetBlockStart: 0,\n});\n\nexport const root = recipe({\n base: [\n sprinkles({\n display: 'grid',\n minWidth: 0,\n borderRadius: 'md',\n backgroundColor: 'surfaceElevated',\n }),\n {\n border: `1px solid ${vars.colors.border}`,\n gridTemplateRows: 'auto',\n },\n ],\n variants: {\n depth: {\n 0: {},\n 1: {},\n 2: {},\n 3: {},\n },\n open: {\n true: {},\n false: {},\n },\n scrollMode: {\n page: {},\n contained: {\n minBlockSize: 0,\n },\n },\n },\n compoundVariants: [\n {\n variants: { open: true, scrollMode: 'contained', depth: 0 },\n style: {\n gridTemplateRows: 'auto minmax(0, 1fr)',\n maxBlockSize: 'clamp(28rem, 78dvh, 62rem)',\n },\n },\n {\n variants: { open: true, scrollMode: 'contained', depth: 1 },\n style: {\n gridTemplateRows: 'auto minmax(0, 1fr)',\n maxBlockSize: 'clamp(24rem, 68dvh, 52rem)',\n },\n },\n {\n variants: { open: true, scrollMode: 'contained', depth: 2 },\n style: {\n gridTemplateRows: 'auto minmax(0, 1fr)',\n maxBlockSize: 'clamp(20rem, 58dvh, 44rem)',\n },\n },\n {\n variants: { open: true, scrollMode: 'contained', depth: 3 },\n style: {\n gridTemplateRows: 'auto minmax(0, 1fr)',\n maxBlockSize: 'clamp(16rem, 48dvh, 36rem)',\n },\n },\n ],\n});\n\nexport const header = recipe({\n base: [\n sprinkles({\n display: 'flex',\n alignItems: 'flex-start',\n flexWrap: 'wrap',\n gap: 2,\n width: 'full',\n padding: 3,\n borderWidth: 0,\n backgroundColor: 'surfaceElevated',\n color: 'text',\n textAlign: 'left',\n cursor: 'pointer',\n minWidth: 0,\n }),\n {\n font: 'inherit',\n selectors: {\n '&:hover': {\n backgroundColor: vars.colors.surfaceSecondary,\n },\n '&:focus-visible': {\n outline: `2px solid ${vars.colors.primary}`,\n outlineOffset: '2px',\n },\n },\n },\n ],\n variants: {\n sticky: {\n true: [\n stickyHeaderBase,\n {\n position: 'sticky',\n zIndex: 1,\n },\n ],\n false: {},\n },\n },\n});\n\nexport const chevron = style([\n sprinkles({\n display: 'inline-flex',\n alignItems: 'center',\n justifyContent: 'center',\n color: 'textSecondary',\n flexShrink: 0,\n }),\n {\n transform: 'rotate(-90deg)',\n transition: 'transform 120ms ease',\n },\n]);\n\nexport const chevronOpen = style({\n transform: 'rotate(0deg)',\n});\n\nexport const heading = sprinkles({\n display: 'flex',\n flexDirection: 'column',\n flexBasis: 260,\n gap: 1,\n minWidth: 0,\n flex: 1,\n});\n\nexport const title = sprinkles({\n color: 'text',\n fontSize: 'sm',\n fontWeight: 'semibold',\n});\n\nexport const meta = sprinkles({\n display: 'flex',\n flexWrap: 'wrap',\n gap: 1,\n color: 'textSecondary',\n fontSize: 'xs',\n});\n\nexport const badges = sprinkles({\n display: 'flex',\n flexWrap: 'wrap',\n justifyContent: 'flex-end',\n alignItems: 'center',\n gap: 1,\n});\n\nexport const actions = sprinkles({\n display: 'flex',\n flexWrap: 'wrap',\n justifyContent: 'flex-end',\n alignItems: 'center',\n gap: 1,\n});\n\nexport const preview = sprinkles({\n display: 'flex',\n flexBasis: 'full',\n minWidth: 0,\n});\n\nexport const body = recipe({\n base: [\n sprinkles({\n display: 'flex',\n flexDirection: 'column',\n gap: 2,\n padding: 3,\n paddingTop: 0,\n minWidth: 0,\n minHeight: 0,\n }),\n {\n borderTop: `1px solid ${vars.colors.border}`,\n },\n ],\n variants: {\n scrollMode: {\n page: {},\n contained: {\n overflowY: 'auto',\n overscrollBehaviorBlock: 'contain',\n scrollbarGutter: 'stable',\n scrollbarWidth: 'thin',\n },\n },\n },\n});\n"],"mappings":""}
|
package/lib/esm/index.js
CHANGED
|
@@ -151,73 +151,74 @@ import { BackofficeRelationsMenu as ei } from "./backoffice/molecules/backoffice
|
|
|
151
151
|
import { BackofficeScopeStack as ti } from "./backoffice/molecules/backoffice_scope_stack/BackofficeScopeStack.js";
|
|
152
152
|
import { BackofficeStatusMetaBadge as ni } from "./backoffice/molecules/backoffice_status_meta_badge/BackofficeStatusMetaBadge.js";
|
|
153
153
|
import { BackofficeStatusGroup as ri } from "./backoffice/molecules/backoffice_status_group/BackofficeStatusGroup.js";
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
197
|
-
import {
|
|
198
|
-
import {
|
|
199
|
-
import {
|
|
200
|
-
import {
|
|
201
|
-
import {
|
|
202
|
-
import {
|
|
154
|
+
import { BackofficeStickyDisclosure as ii } from "./backoffice/molecules/backoffice_sticky_disclosure/BackofficeStickyDisclosure.js";
|
|
155
|
+
import { BackofficeTableSkeleton as ai } from "./backoffice/molecules/backoffice_table_skeleton/BackofficeTableSkeleton.js";
|
|
156
|
+
import { BackofficeToolbar as oi } from "./backoffice/molecules/backoffice_toolbar/BackofficeToolbar.js";
|
|
157
|
+
import { BulkActionsBar as si } from "./backoffice/molecules/bulk_actions_bar/BulkActionsBar.js";
|
|
158
|
+
import { FilterChipRow as ci } from "./backoffice/molecules/filter_chip_row/FilterChipRow.js";
|
|
159
|
+
import { GlobalSearchInput as li } from "./backoffice/molecules/global_search_input/GlobalSearchInput.js";
|
|
160
|
+
import { AuditTimeline as ui } from "./backoffice/organisms/audit_timeline/AuditTimeline.js";
|
|
161
|
+
import { BackofficeDataTable as di } from "./backoffice/organisms/backoffice_data_table/BackofficeDataTable.js";
|
|
162
|
+
import { EntityHeader as a } from "./backoffice/organisms/entity_header/EntityHeader.js";
|
|
163
|
+
import { DetailPageTemplate as fi, DetailPageTemplateContent as pi } from "./backoffice/templates/detail_page_template/DetailPageTemplate.js";
|
|
164
|
+
import { ListPageTemplate as mi } from "./backoffice/templates/list_page_template/ListPageTemplate.js";
|
|
165
|
+
import { AdminTopbar as hi } from "./admin/organisms/admin_topbar/AdminTopbar.js";
|
|
166
|
+
import { AdminShellLayout as gi } from "./admin/templates/admin_shell_layout/AdminShellLayout.js";
|
|
167
|
+
import { adminControlHeightVar as _i, adminDensityComfortableClass as vi, adminDensityCompactClass as yi, adminDensityDefaultClass as bi, adminPanelPaddingVar as xi, adminTableCellPaddingXVar as Si, adminTableCellPaddingYVar as Ci, adminTableFontSizeVar as wi, adminTableRowMinHeightVar as Ti, adminToolbarGapVar as Ei } from "./admin/theme/adminDensity.css.js";
|
|
168
|
+
import { BACKOFFICE_THEME_MODE_KEY as Di, BackofficeThemeProvider as Oi, __backofficeThemeTest as ki } from "./admin/theme/BackofficeThemeProvider.js";
|
|
169
|
+
import { FALLBACK_REFERENCE as Ai, formatNullableCurrency as ji, formatNullableNumber as Mi, formatNullableString as Ni, formatStringList as Pi } from "./shared/agentJobRequestFormatting.js";
|
|
170
|
+
import { denseTableClass as Fi } from "./shared/backofficeTableDensity.css.js";
|
|
171
|
+
import { MoneyAmount as Ii, formatCurrencyAmount as Li, formatCurrencyAmountTitle as Ri } from "./shared/currencyAmount.js";
|
|
172
|
+
import { normalizeProgress as zi } from "./shared/progress.js";
|
|
173
|
+
import { aggregateMappedValuesByDayAndCategory as Bi, aggregateValuesByDayAndCategory as Vi, buildUtcDayRange as Hi, mapTimeSeriesBuckets as Ui, toMappedUtcDailyCategorySeries as Wi, toUtcDailyCategorySeries as Gi, toUtcDayKey as Ki } from "./shared/timeSeries.js";
|
|
174
|
+
import { readPersistentBooleanState as qi, usePersistentBooleanState as Ji } from "./hooks/usePersistentBooleanState.js";
|
|
175
|
+
import { useStickToBottom as Yi } from "./hooks/useStickToBottom.js";
|
|
176
|
+
import { useSubmitOnEnter as Xi } from "./hooks/useSubmitOnEnter.js";
|
|
177
|
+
import { WrapperPage as Zi } from "./pages/WrapperPage.js";
|
|
178
|
+
import { BanSvg as Qi } from "./icons/BanSvg.js";
|
|
179
|
+
import { ChatSizeLargeSvg as $i } from "./icons/ChatSizeLargeSvg.js";
|
|
180
|
+
import { ChatSizeMediumSvg as ea } from "./icons/ChatSizeMediumSvg.js";
|
|
181
|
+
import { ChatSizeSmallSvg as ta } from "./icons/ChatSizeSmallSvg.js";
|
|
182
|
+
import { ChatCheckSvg as na } from "./icons/ChatCheckSvg.js";
|
|
183
|
+
import { ChatXSvg as ra } from "./icons/ChatXSvg.js";
|
|
184
|
+
import { CheckSvg as ia } from "./icons/CheckSvg.js";
|
|
185
|
+
import { CoinOffSvg as aa } from "./icons/CoinOffSvg.js";
|
|
186
|
+
import { ClockSvg as oa } from "./icons/ClockSvg.js";
|
|
187
|
+
import { DatabaseCheckSvg as sa } from "./icons/DatabaseCheckSvg.js";
|
|
188
|
+
import { DatabaseXSvg as ca } from "./icons/DatabaseXSvg.js";
|
|
189
|
+
import { DevModeSvg as la } from "./icons/DevModeSvg.js";
|
|
190
|
+
import { EyeSvg as ua } from "./icons/EyeSvg.js";
|
|
191
|
+
import { GripDotsSvg as da } from "./icons/GripDotsSvg.js";
|
|
192
|
+
import { HomeActivityAssignUserSvg as fa } from "./icons/HomeActivityAssignUserSvg.js";
|
|
193
|
+
import { HomeStatsCheckBadgeSvg as pa } from "./icons/HomeStatsCheckBadgeSvg.js";
|
|
194
|
+
import { HomeStatsClipboardSvg as ma } from "./icons/HomeStatsClipboardSvg.js";
|
|
195
|
+
import { HomeStatsClockSvg as ha } from "./icons/HomeStatsClockSvg.js";
|
|
196
|
+
import { KeyOffSvg as ga } from "./icons/KeyOffSvg.js";
|
|
197
|
+
import { KeySvg as _a } from "./icons/KeySvg.js";
|
|
198
|
+
import { LinkCheckSvg as va } from "./icons/LinkCheckSvg.js";
|
|
199
|
+
import { LinkXSvg as ya } from "./icons/LinkXSvg.js";
|
|
200
|
+
import { BackofficeSidebarActivitySvg as ba } from "./icons/backoffice/BackofficeSidebarActivitySvg.js";
|
|
201
|
+
import { BackofficeSidebarArchiveSvg as xa } from "./icons/backoffice/BackofficeSidebarArchiveSvg.js";
|
|
202
|
+
import { BackofficeSidebarBadgeCheckSvg as Sa } from "./icons/backoffice/BackofficeSidebarBadgeCheckSvg.js";
|
|
203
|
+
import { BackofficeSidebarBotSvg as Ca } from "./icons/backoffice/BackofficeSidebarBotSvg.js";
|
|
203
204
|
import { BackofficeSidebarBracesSvg as o } from "./icons/backoffice/BackofficeSidebarBracesSvg.js";
|
|
204
|
-
import { BackofficeSidebarBrainCircuitSvg as
|
|
205
|
-
import { BackofficeSidebarBriefcaseSvg as
|
|
206
|
-
import { BackofficeSidebarBuildingSvg as
|
|
207
|
-
import { BackofficeSidebarCableSvg as
|
|
208
|
-
import { BackofficeSidebarCalendarSvg as
|
|
205
|
+
import { BackofficeSidebarBrainCircuitSvg as wa } from "./icons/backoffice/BackofficeSidebarBrainCircuitSvg.js";
|
|
206
|
+
import { BackofficeSidebarBriefcaseSvg as Ta } from "./icons/backoffice/BackofficeSidebarBriefcaseSvg.js";
|
|
207
|
+
import { BackofficeSidebarBuildingSvg as Ea } from "./icons/backoffice/BackofficeSidebarBuildingSvg.js";
|
|
208
|
+
import { BackofficeSidebarCableSvg as Da } from "./icons/backoffice/BackofficeSidebarCableSvg.js";
|
|
209
|
+
import { BackofficeSidebarCalendarSvg as Oa } from "./icons/backoffice/BackofficeSidebarCalendarSvg.js";
|
|
209
210
|
import { BackofficeSidebarChartBarSvg as s } from "./icons/backoffice/BackofficeSidebarChartBarSvg.js";
|
|
210
|
-
import { BackofficeSidebarChartLineSvg as
|
|
211
|
-
import { BackofficeSidebarChartPieSvg as
|
|
211
|
+
import { BackofficeSidebarChartLineSvg as ka } from "./icons/backoffice/BackofficeSidebarChartLineSvg.js";
|
|
212
|
+
import { BackofficeSidebarChartPieSvg as Aa } from "./icons/backoffice/BackofficeSidebarChartPieSvg.js";
|
|
212
213
|
import { BackofficeSidebarClipboardCheckSvg as c } from "./icons/backoffice/BackofficeSidebarClipboardCheckSvg.js";
|
|
213
|
-
import { BackofficeSidebarClipboardListSvg as
|
|
214
|
+
import { BackofficeSidebarClipboardListSvg as ja } from "./icons/backoffice/BackofficeSidebarClipboardListSvg.js";
|
|
214
215
|
import { BackofficeSidebarClockSvg as l } from "./icons/backoffice/BackofficeSidebarClockSvg.js";
|
|
215
216
|
import { BackofficeSidebarCodeSvg as u } from "./icons/backoffice/BackofficeSidebarCodeSvg.js";
|
|
216
217
|
import { BackofficeSidebarCopyCheckSvg as d } from "./icons/backoffice/BackofficeSidebarCopyCheckSvg.js";
|
|
217
218
|
import { BackofficeSidebarCopySvg as f } from "./icons/backoffice/BackofficeSidebarCopySvg.js";
|
|
218
219
|
import { BackofficeSidebarCopyXSvg as p } from "./icons/backoffice/BackofficeSidebarCopyXSvg.js";
|
|
219
220
|
import { BackofficeSidebarCrosshairSvg as m } from "./icons/backoffice/BackofficeSidebarCrosshairSvg.js";
|
|
220
|
-
import { BackofficeSidebarDatabaseSvg as
|
|
221
|
+
import { BackofficeSidebarDatabaseSvg as Ma } from "./icons/backoffice/BackofficeSidebarDatabaseSvg.js";
|
|
221
222
|
import { BackofficeSidebarDiffSvg as h } from "./icons/backoffice/BackofficeSidebarDiffSvg.js";
|
|
222
223
|
import { BackofficeSidebarFileCodeSvg as g } from "./icons/backoffice/BackofficeSidebarFileCodeSvg.js";
|
|
223
224
|
import { BackofficeSidebarFileCogSvg as _ } from "./icons/backoffice/BackofficeSidebarFileCogSvg.js";
|
|
@@ -230,64 +231,64 @@ import { BackofficeSidebarFlameSvg as C } from "./icons/backoffice/BackofficeSid
|
|
|
230
231
|
import { BackofficeSidebarFolderGitSvg as w } from "./icons/backoffice/BackofficeSidebarFolderGitSvg.js";
|
|
231
232
|
import { BackofficeSidebarFolderKanbanSvg as T } from "./icons/backoffice/BackofficeSidebarFolderKanbanSvg.js";
|
|
232
233
|
import { BackofficeSidebarFolderTreeSvg as E } from "./icons/backoffice/BackofficeSidebarFolderTreeSvg.js";
|
|
233
|
-
import { BackofficeSidebarGaugeSvg as
|
|
234
|
-
import { BackofficeSidebarGitBranchPlusSvg as
|
|
235
|
-
import { BackofficeSidebarGitBranchSvg as
|
|
234
|
+
import { BackofficeSidebarGaugeSvg as Na } from "./icons/backoffice/BackofficeSidebarGaugeSvg.js";
|
|
235
|
+
import { BackofficeSidebarGitBranchPlusSvg as Pa } from "./icons/backoffice/BackofficeSidebarGitBranchPlusSvg.js";
|
|
236
|
+
import { BackofficeSidebarGitBranchSvg as Fa } from "./icons/backoffice/BackofficeSidebarGitBranchSvg.js";
|
|
236
237
|
import { BackofficeSidebarGitCommitSvg as D } from "./icons/backoffice/BackofficeSidebarGitCommitSvg.js";
|
|
237
|
-
import { BackofficeSidebarGitCompareSvg as
|
|
238
|
+
import { BackofficeSidebarGitCompareSvg as Ia } from "./icons/backoffice/BackofficeSidebarGitCompareSvg.js";
|
|
238
239
|
import { BackofficeSidebarGitForkSvg as O } from "./icons/backoffice/BackofficeSidebarGitForkSvg.js";
|
|
239
|
-
import { BackofficeSidebarGitMergeSvg as
|
|
240
|
-
import { BackofficeSidebarGitPullRequestSvg as
|
|
240
|
+
import { BackofficeSidebarGitMergeSvg as La } from "./icons/backoffice/BackofficeSidebarGitMergeSvg.js";
|
|
241
|
+
import { BackofficeSidebarGitPullRequestSvg as Ra } from "./icons/backoffice/BackofficeSidebarGitPullRequestSvg.js";
|
|
241
242
|
import { BackofficeSidebarGlobeSvg as k } from "./icons/backoffice/BackofficeSidebarGlobeSvg.js";
|
|
242
243
|
import { BackofficeSidebarHistorySvg as A } from "./icons/backoffice/BackofficeSidebarHistorySvg.js";
|
|
243
244
|
import { BackofficeSidebarInfoSvg as j } from "./icons/backoffice/BackofficeSidebarInfoSvg.js";
|
|
244
|
-
import { BackofficeSidebarKeySquareSvg as
|
|
245
|
-
import { BackofficeSidebarKeySvg as
|
|
246
|
-
import { BackofficeSidebarLandmarkSvg as
|
|
247
|
-
import { BackofficeSidebarLayoutDashboardSvg as
|
|
245
|
+
import { BackofficeSidebarKeySquareSvg as za } from "./icons/backoffice/BackofficeSidebarKeySquareSvg.js";
|
|
246
|
+
import { BackofficeSidebarKeySvg as Ba } from "./icons/backoffice/BackofficeSidebarKeySvg.js";
|
|
247
|
+
import { BackofficeSidebarLandmarkSvg as Va } from "./icons/backoffice/BackofficeSidebarLandmarkSvg.js";
|
|
248
|
+
import { BackofficeSidebarLayoutDashboardSvg as Ha } from "./icons/backoffice/BackofficeSidebarLayoutDashboardSvg.js";
|
|
248
249
|
import { BackofficeSidebarLinkSvg as M } from "./icons/backoffice/BackofficeSidebarLinkSvg.js";
|
|
249
250
|
import { BackofficeSidebarListChecksSvg as N } from "./icons/backoffice/BackofficeSidebarListChecksSvg.js";
|
|
250
251
|
import { BackofficeSidebarListTodoSvg as P } from "./icons/backoffice/BackofficeSidebarListTodoSvg.js";
|
|
251
|
-
import { BackofficeSidebarListTreeSvg as
|
|
252
|
+
import { BackofficeSidebarListTreeSvg as Ua } from "./icons/backoffice/BackofficeSidebarListTreeSvg.js";
|
|
252
253
|
import { BackofficeSidebarLocateSvg as F } from "./icons/backoffice/BackofficeSidebarLocateSvg.js";
|
|
253
|
-
import { BackofficeSidebarLockKeyholeSvg as
|
|
254
|
-
import { BackofficeSidebarLockSvg as
|
|
255
|
-
import { BackofficeSidebarMailPlusSvg as
|
|
256
|
-
import { BackofficeSidebarMapPinSvg as
|
|
254
|
+
import { BackofficeSidebarLockKeyholeSvg as Wa } from "./icons/backoffice/BackofficeSidebarLockKeyholeSvg.js";
|
|
255
|
+
import { BackofficeSidebarLockSvg as Ga } from "./icons/backoffice/BackofficeSidebarLockSvg.js";
|
|
256
|
+
import { BackofficeSidebarMailPlusSvg as Ka } from "./icons/backoffice/BackofficeSidebarMailPlusSvg.js";
|
|
257
|
+
import { BackofficeSidebarMapPinSvg as qa } from "./icons/backoffice/BackofficeSidebarMapPinSvg.js";
|
|
257
258
|
import { BackofficeSidebarMapSvg as I } from "./icons/backoffice/BackofficeSidebarMapSvg.js";
|
|
258
|
-
import { BackofficeSidebarMessagePlusSvg as
|
|
259
|
-
import { BackofficeSidebarMessageTextSvg as
|
|
260
|
-
import { BackofficeSidebarMessagesSvg as
|
|
259
|
+
import { BackofficeSidebarMessagePlusSvg as Ja } from "./icons/backoffice/BackofficeSidebarMessagePlusSvg.js";
|
|
260
|
+
import { BackofficeSidebarMessageTextSvg as Ya } from "./icons/backoffice/BackofficeSidebarMessageTextSvg.js";
|
|
261
|
+
import { BackofficeSidebarMessagesSvg as Xa } from "./icons/backoffice/BackofficeSidebarMessagesSvg.js";
|
|
261
262
|
import { BackofficeSidebarMonitorCheckSvg as L } from "./icons/backoffice/BackofficeSidebarMonitorCheckSvg.js";
|
|
262
263
|
import { BackofficeSidebarMouseClickSvg as R } from "./icons/backoffice/BackofficeSidebarMouseClickSvg.js";
|
|
263
264
|
import { BackofficeSidebarNetworkSvg as z } from "./icons/backoffice/BackofficeSidebarNetworkSvg.js";
|
|
264
265
|
import { BackofficeSidebarPanelsSvg as B } from "./icons/backoffice/BackofficeSidebarPanelsSvg.js";
|
|
265
266
|
import { BackofficeSidebarPenToolSvg as V } from "./icons/backoffice/BackofficeSidebarPenToolSvg.js";
|
|
266
|
-
import { BackofficeSidebarPinSvg as
|
|
267
|
-
import { BackofficeSidebarPlayCircleSvg as
|
|
267
|
+
import { BackofficeSidebarPinSvg as Za } from "./icons/backoffice/BackofficeSidebarPinSvg.js";
|
|
268
|
+
import { BackofficeSidebarPlayCircleSvg as Qa } from "./icons/backoffice/BackofficeSidebarPlayCircleSvg.js";
|
|
268
269
|
import { BackofficeSidebarRadarSvg as H } from "./icons/backoffice/BackofficeSidebarRadarSvg.js";
|
|
269
|
-
import { BackofficeSidebarReceiptSvg as
|
|
270
|
-
import { BackofficeSidebarRocketSvg as
|
|
270
|
+
import { BackofficeSidebarReceiptSvg as $a } from "./icons/backoffice/BackofficeSidebarReceiptSvg.js";
|
|
271
|
+
import { BackofficeSidebarRocketSvg as eo } from "./icons/backoffice/BackofficeSidebarRocketSvg.js";
|
|
271
272
|
import { BackofficeSidebarRouteSvg as U } from "./icons/backoffice/BackofficeSidebarRouteSvg.js";
|
|
272
273
|
import { BackofficeSidebarScrollTextSvg as W } from "./icons/backoffice/BackofficeSidebarScrollTextSvg.js";
|
|
273
274
|
import { BackofficeSidebarSearchCodeSvg as G } from "./icons/backoffice/BackofficeSidebarSearchCodeSvg.js";
|
|
274
275
|
import { BackofficeSidebarSearchSvg as K } from "./icons/backoffice/BackofficeSidebarSearchSvg.js";
|
|
275
|
-
import { BackofficeSidebarSendSvg as
|
|
276
|
-
import { BackofficeSidebarShieldAlertSvg as
|
|
277
|
-
import { BackofficeSidebarShieldCheckSvg as
|
|
278
|
-
import { BackofficeSidebarShieldUserSvg as
|
|
279
|
-
import { BackofficeSidebarStepForwardSvg as
|
|
276
|
+
import { BackofficeSidebarSendSvg as to } from "./icons/backoffice/BackofficeSidebarSendSvg.js";
|
|
277
|
+
import { BackofficeSidebarShieldAlertSvg as no } from "./icons/backoffice/BackofficeSidebarShieldAlertSvg.js";
|
|
278
|
+
import { BackofficeSidebarShieldCheckSvg as ro } from "./icons/backoffice/BackofficeSidebarShieldCheckSvg.js";
|
|
279
|
+
import { BackofficeSidebarShieldUserSvg as io } from "./icons/backoffice/BackofficeSidebarShieldUserSvg.js";
|
|
280
|
+
import { BackofficeSidebarStepForwardSvg as ao } from "./icons/backoffice/BackofficeSidebarStepForwardSvg.js";
|
|
280
281
|
import { BackofficeSidebarStethoscopeSvg as q } from "./icons/backoffice/BackofficeSidebarStethoscopeSvg.js";
|
|
281
282
|
import { BackofficeSidebarTerminalSquareSvg as J } from "./icons/backoffice/BackofficeSidebarTerminalSquareSvg.js";
|
|
282
283
|
import { BackofficeSidebarTestTubeSvg as Y } from "./icons/backoffice/BackofficeSidebarTestTubeSvg.js";
|
|
283
284
|
import { BackofficeSidebarTrashSvg as X } from "./icons/backoffice/BackofficeSidebarTrashSvg.js";
|
|
284
|
-
import { BackofficeSidebarUploadCloudSvg as
|
|
285
|
-
import { BackofficeSidebarUserCheckSvg as
|
|
286
|
-
import { BackofficeSidebarUserCogSvg as
|
|
287
|
-
import { BackofficeSidebarUserSearchSvg as
|
|
288
|
-
import { BackofficeSidebarUserSvg as
|
|
289
|
-
import { BackofficeSidebarUsersSvg as
|
|
290
|
-
import { BackofficeSidebarWalletSvg as
|
|
285
|
+
import { BackofficeSidebarUploadCloudSvg as oo } from "./icons/backoffice/BackofficeSidebarUploadCloudSvg.js";
|
|
286
|
+
import { BackofficeSidebarUserCheckSvg as so } from "./icons/backoffice/BackofficeSidebarUserCheckSvg.js";
|
|
287
|
+
import { BackofficeSidebarUserCogSvg as co } from "./icons/backoffice/BackofficeSidebarUserCogSvg.js";
|
|
288
|
+
import { BackofficeSidebarUserSearchSvg as lo } from "./icons/backoffice/BackofficeSidebarUserSearchSvg.js";
|
|
289
|
+
import { BackofficeSidebarUserSvg as uo } from "./icons/backoffice/BackofficeSidebarUserSvg.js";
|
|
290
|
+
import { BackofficeSidebarUsersSvg as fo } from "./icons/backoffice/BackofficeSidebarUsersSvg.js";
|
|
291
|
+
import { BackofficeSidebarWalletSvg as po } from "./icons/backoffice/BackofficeSidebarWalletSvg.js";
|
|
291
292
|
import { BackofficeSidebarWandSvg as Z } from "./icons/backoffice/BackofficeSidebarWandSvg.js";
|
|
292
293
|
import { BackofficeSidebarWorkflowSvg as Q } from "./icons/backoffice/BackofficeSidebarWorkflowSvg.js";
|
|
293
294
|
import { BackofficeSidebarWrenchSvg as $ } from "./icons/backoffice/BackofficeSidebarWrenchSvg.js";
|
|
@@ -344,31 +345,31 @@ import "./icons/backoffice/tools/BackofficeToolTestsSvg.js";
|
|
|
344
345
|
import "./icons/backoffice/tools/BackofficeToolTodosSvg.js";
|
|
345
346
|
import "./icons/backoffice/tools/BackofficeToolTreeListSvg.js";
|
|
346
347
|
import "./icons/backoffice/tools/BackofficeToolTreeStatsSvg.js";
|
|
347
|
-
import { LockOpenSvg as
|
|
348
|
-
import { LockSvg as
|
|
349
|
-
import { MailCheckSvg as
|
|
350
|
-
import { MailXSvg as
|
|
351
|
-
import { PencilSvg as
|
|
352
|
-
import { PinFilledSvg as
|
|
353
|
-
import { PinSvg as
|
|
354
|
-
import { ProfileDropdownOrganizationSvg as
|
|
355
|
-
import { RobotCheckSvg as
|
|
356
|
-
import { RobotSvg as
|
|
357
|
-
import { RobotXSvg as
|
|
358
|
-
import { RocketOffSvg as
|
|
359
|
-
import { RocketSvg as
|
|
360
|
-
import { SendCheckSvg as
|
|
361
|
-
import { SendMessageSvg as
|
|
362
|
-
import { SendXSvg as
|
|
363
|
-
import { SettingsCheckSvg as
|
|
364
|
-
import { SettingsXSvg as
|
|
365
|
-
import { ShieldLockSvg as
|
|
366
|
-
import { ShieldOffSvg as
|
|
367
|
-
import { TaskAttachmentSvg as
|
|
368
|
-
import { TaskCommentBubbleSvg as
|
|
369
|
-
import { TaskDependencyBlockedSvg as
|
|
370
|
-
import { TaskDependencyReadySvg as
|
|
371
|
-
import { WrenchSvg as
|
|
372
|
-
import { XBadgeSvg as
|
|
373
|
-
import { ChevronDownIcon as
|
|
374
|
-
export { hn as ActionPanel, Sn as ActivityCard, Cn as ActivityFeed, hi as AdminShellLayout, mi as AdminTopbar, cr as AgentMarkdownCard, gn as AppHeader, li as AuditTimeline, Jt as AuthLayout, Ei as BACKOFFICE_THEME_MODE_KEY, Sr as BackofficeAuditMetadataPanel, ui as BackofficeDataTable, yr as BackofficeDetailField, kr as BackofficeDetailFlagTag, br as BackofficeDetailSection, Ar as BackofficeDetailTaggedValue, vr as BackofficeEmptyState, jr as BackofficeEnumLabel, Cr as BackofficeFilterDrawer, wr as BackofficeFilterField, Tr as BackofficeFormSection, pr as BackofficeIdBadge, Nr as BackofficeJsonViewer, $n as BackofficeKeyValueList, Lr as BackofficeKeyValueSection, Gr as BackofficeListFooter, Yt as BackofficePageHeader, Ir as BackofficePayloadSection, Fr as BackofficePayloadViewer, Er as BackofficePickerList, Dr as BackofficePickerRow, Or as BackofficePickerShell, xr as BackofficeReferenceValue, ei as BackofficeRelationsMenu, ti as BackofficeScopeStack, ya as BackofficeSidebarActivitySvg, ba as BackofficeSidebarArchiveSvg, xa as BackofficeSidebarBadgeCheckSvg, Sa as BackofficeSidebarBotSvg, o as BackofficeSidebarBracesSvg, Ca as BackofficeSidebarBrainCircuitSvg, wa as BackofficeSidebarBriefcaseSvg, Ta as BackofficeSidebarBuildingSvg, Ea as BackofficeSidebarCableSvg, Da as BackofficeSidebarCalendarSvg, s as BackofficeSidebarChartBarSvg, Oa as BackofficeSidebarChartLineSvg, ka as BackofficeSidebarChartPieSvg, c as BackofficeSidebarClipboardCheckSvg, Aa as BackofficeSidebarClipboardListSvg, l as BackofficeSidebarClockSvg, u as BackofficeSidebarCodeSvg, d as BackofficeSidebarCopyCheckSvg, f as BackofficeSidebarCopySvg, p as BackofficeSidebarCopyXSvg, m as BackofficeSidebarCrosshairSvg, ja as BackofficeSidebarDatabaseSvg, h as BackofficeSidebarDiffSvg, g as BackofficeSidebarFileCodeSvg, _ as BackofficeSidebarFileCogSvg, v as BackofficeSidebarFileSearchSvg, y as BackofficeSidebarFileStackSvg, b as BackofficeSidebarFileTextSvg, x as BackofficeSidebarFilesSvg, S as BackofficeSidebarFingerprintSvg, C as BackofficeSidebarFlameSvg, w as BackofficeSidebarFolderGitSvg, T as BackofficeSidebarFolderKanbanSvg, E as BackofficeSidebarFolderTreeSvg, Ma as BackofficeSidebarGaugeSvg, Na as BackofficeSidebarGitBranchPlusSvg, Pa as BackofficeSidebarGitBranchSvg, D as BackofficeSidebarGitCommitSvg, Fa as BackofficeSidebarGitCompareSvg, O as BackofficeSidebarGitForkSvg, Ia as BackofficeSidebarGitMergeSvg, La as BackofficeSidebarGitPullRequestSvg, k as BackofficeSidebarGlobeSvg, A as BackofficeSidebarHistorySvg, j as BackofficeSidebarInfoSvg, Ra as BackofficeSidebarKeySquareSvg, za as BackofficeSidebarKeySvg, Ba as BackofficeSidebarLandmarkSvg, Va as BackofficeSidebarLayoutDashboardSvg, M as BackofficeSidebarLinkSvg, N as BackofficeSidebarListChecksSvg, P as BackofficeSidebarListTodoSvg, Ha as BackofficeSidebarListTreeSvg, F as BackofficeSidebarLocateSvg, Ua as BackofficeSidebarLockKeyholeSvg, Wa as BackofficeSidebarLockSvg, Ga as BackofficeSidebarMailPlusSvg, Ka as BackofficeSidebarMapPinSvg, I as BackofficeSidebarMapSvg, qa as BackofficeSidebarMessagePlusSvg, Ja as BackofficeSidebarMessageTextSvg, Ya as BackofficeSidebarMessagesSvg, L as BackofficeSidebarMonitorCheckSvg, R as BackofficeSidebarMouseClickSvg, z as BackofficeSidebarNetworkSvg, B as BackofficeSidebarPanelsSvg, V as BackofficeSidebarPenToolSvg, Xa as BackofficeSidebarPinSvg, Za as BackofficeSidebarPlayCircleSvg, H as BackofficeSidebarRadarSvg, Qa as BackofficeSidebarReceiptSvg, $a as BackofficeSidebarRocketSvg, U as BackofficeSidebarRouteSvg, W as BackofficeSidebarScrollTextSvg, G as BackofficeSidebarSearchCodeSvg, K as BackofficeSidebarSearchSvg, eo as BackofficeSidebarSendSvg, to as BackofficeSidebarShieldAlertSvg, no as BackofficeSidebarShieldCheckSvg, ro as BackofficeSidebarShieldUserSvg, io as BackofficeSidebarStepForwardSvg, q as BackofficeSidebarStethoscopeSvg, J as BackofficeSidebarTerminalSquareSvg, Y as BackofficeSidebarTestTubeSvg, X as BackofficeSidebarTrashSvg, ao as BackofficeSidebarUploadCloudSvg, oo as BackofficeSidebarUserCheckSvg, so as BackofficeSidebarUserCogSvg, co as BackofficeSidebarUserSearchSvg, lo as BackofficeSidebarUserSvg, uo as BackofficeSidebarUsersSvg, fo as BackofficeSidebarWalletSvg, Z as BackofficeSidebarWandSvg, Q as BackofficeSidebarWorkflowSvg, $ as BackofficeSidebarWrenchSvg, ri as BackofficeStatusGroup, ni as BackofficeStatusMetaBadge, ii as BackofficeTableSkeleton, Di as BackofficeThemeProvider, B as BackofficeToolArchitectureSvg, Rr as BackofficeToolCallFrame, O as BackofficeToolCallgraphSvg, u as BackofficeToolCodePlacementSvg, S as BackofficeToolCommitBlameSvg, D as BackofficeToolCommitDetailSvg, h as BackofficeToolCommitDiffSvg, K as BackofficeToolCommitSearchSvg, R as BackofficeToolCommitTouchesSvg, A as BackofficeToolCommitsLogSvg, D as BackofficeToolCommitsSvg, o as BackofficeToolComplexSymbolsSvg, X as BackofficeToolDeadCodeSvg, Q as BackofficeToolDependenciesSvg, V as BackofficeToolDesignSvg, J as BackofficeToolDevSvg, q as BackofficeToolDiagnosticsSvg, W as BackofficeToolDocsListSvg, W as BackofficeToolDocsSvg, I as BackofficeToolDomainMapSvg, f as BackofficeToolDuplicateFilesSvg, d as BackofficeToolDuplicateSymbolsSvg, p as BackofficeToolDuplicationsSvg, F as BackofficeToolFeatureImpactSvg, P as BackofficeToolFeaturePlanSvg, v as BackofficeToolFileFindSvg, l as BackofficeToolFileHistorySvg, _ as BackofficeToolFileMetadataSvg, b as BackofficeToolFileReadSvg, y as BackofficeToolFilesReadManySvg, x as BackofficeToolFilesSvg, G as BackofficeToolFulltextSearchSvg, H as BackofficeToolGraphNeighborsSvg, z as BackofficeToolGraphSvg, C as BackofficeToolHotspotsSvg, k as BackofficeToolHttpFetchSvg, m as BackofficeToolImpactSvg, L as BackofficeToolPreflightCheckSvg, T as BackofficeToolProjectsListSvg, Z as BackofficeToolRefactorSvg, j as BackofficeToolRepoInfoSvg, w as BackofficeToolRepoSvg, U as BackofficeToolRequestFlowSvg, $ as BackofficeToolScaffoldSvg, Y as BackofficeToolSuggestTestsSvg, b as BackofficeToolSummarySvg, g as BackofficeToolSymbolDefinitionSvg, M as BackofficeToolSymbolReferencesSvg, o as BackofficeToolSymbolsListSvg, q as BackofficeToolTechDebtSvg, c as BackofficeToolTestsSvg, N as BackofficeToolTodosSvg, E as BackofficeToolTreeListSvg, s as BackofficeToolTreeStatsSvg, ai as BackofficeToolbar, Qe as Badge, Zi as BanSvg, _t as BreadcrumbNavigation, oi as BulkActionsBar, et as Button, $e as ButtonLoadingSpinnerSvg, mt as Card, ta as ChatCheckSvg, Qi as ChatSizeLargeSvg, $i as ChatSizeMediumSvg, ea as ChatSizeSmallSvg, na as ChatXSvg, ra as CheckSvg, it as Checkbox, bt as CheckboxField, zo as ChevronDownIcon, gt as ChevronDownSvg, Wn as ChevronLeftSvg, aa as ClockSvg, ia as CoinOffSvg, Mr as ConfirmDialog, vn as ContentLayout, Dn as CopyableText, wn as DashboardGrid, Tn as DashboardGridColumn, En as DashboardGridItem, An as DashboardMetricGroup, Mn as DashboardPanel, Nn as DashboardQuickActions, Pn as DashboardStatusList, $t as DataTable, en as DataTableBody, tn as DataTableEmptyRow, nn as DataTableHeader, rn as DataTableRoot, an as DataTableRow, oa as DatabaseCheckSvg, sa as DatabaseXSvg, a as DetailPageTemplate, fi as DetailPageTemplateContent, yn as DetailSummaryHeader, ca as DevModeSvg, Vt as EmptyState, di as EntityHeader, mr as EnvironmentBadge, at as ErrorMessage, Nt as ExternalLinkSvg, la as EyeSvg, ki as FALLBACK_REFERENCE, si as FilterChipRow, wt as Form, vt as FormActions, St as FormError, xt as FormErrorAlertSvg, Ct as FormField, yt as FormGrid, Tt as FormGroup, ot as FormattedDate, ci as GlobalSearchInput, Kr as GlobeSvg, ua as GripDotsSvg, At as HighlightCode, da as HomeActivityAssignUserSvg, fa as HomeStatsCheckBadgeSvg, pa as HomeStatsClipboardSvg, ma as HomeStatsClockSvg, ct as IconMenuButton, dr as ImagePreviewModal, sn as InfiniteScrollTrigger, jn as InfoTile, cn as InlineBanner, nt as Input, ha as KeyOffSvg, ga as KeySvg, rt as Label, Pr as LazyBackofficeJsonViewer, jt as LazyMarkdownCodeBlock, Mt as LazyMarkdownRenderer, tt as LinkButton, _a as LinkCheckSvg, va as LinkXSvg, pi as ListPageTemplate, po as LockOpenSvg, mo as LockSvg, qt as LoginForm, ho as MailCheckSvg, go as MailXSvg, Pt as MarkdownRenderer, Fn as MetadataStrip, On as MetricCard, Zt as MetricHistoryChart, kn as MetricTileGroup, ut as Modal, Fi as MoneyAmount, ln as MutationFeedback, un as OperationFeedback, lt as Overlay, Xt as PageContainer, In as PageHero, Rn as PageShell, zn as PageShellRuntimeProvider, xn as PanelShell, _o as PencilSvg, vo as PinFilledSvg, yo as PinSvg, Xn as ProfileDropdownLogoutSvg, bo as ProfileDropdownOrganizationSvg, qr as ProjectsFolderSvg, ur as RefetchNeededBanner, st as RelativeTimeText, Ln as ResizableSplitView, pn as ResponsiveCollectionRenderer, on as ResponsiveRecordList, xo as RobotCheckSvg, So as RobotSvg, Co as RobotXSvg, wo as RocketOffSvg, To as RocketSvg, dn as RouteFallback, fn as RoutePendingBar, Un as SelectableCard, Eo as SendCheckSvg, Do as SendMessageSvg, Oo as SendXSvg, ko as SettingsCheckSvg, Qn as SettingsLayout, Ao as SettingsXSvg, jo as ShieldLockSvg, Mo as ShieldOffSvg, Gn as ShortcutHint, ht as SidebarHomeSvg, Jr as SidebarInitiativesSvg, Yn as SidebarNavigation, Kn as SidebarNavigationCollapseToggle, qn as SidebarNavigationItemComponent, Jn as SidebarNavigationSectionComponent, Yr as SidebarPlusSvg, Zn as SidebarProfileMenu, Xr as SidebarSearchSvg, Zr as SidebarSettingsSvg, Qr as SidebarTasksSvg, $r as SidebarTeamSvg, lr as SimpleSelect, hr as Skeleton, gr as Spinner, bn as StatusBadge, er as StatusSummaryPanel, ft as Surface, pt as SurfaceSection, de as THEME_MODE_KEY, mn as TableCell, Ht as Tabs, _r as Tag, No as TaskAttachmentSvg, Po as TaskCommentBubbleSvg, Fo as TaskDependencyBlockedSvg, Io as TaskDependencyReadySvg, dt as Textarea, fe as ThemeProvider, Qt as TimeSeriesLineChart, tr as TimelineEventRow, Wt as ToastProvider, Ut as ToastViewport, nr as Toolbar, rr as ToolbarGroup, ir as ToolbarSeparator, ar as ToolbarSpacer, _n as TopNavigationShell, fr as VirtualizedConnectionTable, _e as VisuallyHidden, Xi as WrapperPage, Lo as WrenchSvg, Ro as XBadgeSvg, Oi as __backofficeThemeTest, pe as __test, gi as adminControlHeightVar, _i as adminDensityComfortableClass, vi as adminDensityCompactClass, yi as adminDensityDefaultClass, bi as adminPanelPaddingVar, xi as adminTableCellPaddingXVar, Si as adminTableCellPaddingYVar, Ci as adminTableFontSizeVar, wi as adminTableRowMinHeightVar, Ti as adminToolbarGapVar, zi as aggregateMappedValuesByDayAndCategory, Bi as aggregateValuesByDayAndCategory, re as backofficeDarkThemeClass, ie as backofficeDarkThemeValues, ae as backofficeLightThemeClass, oe as backofficeLightThemeValues, Se as brandFocusRing, Vi as buildUtcDayRange, ye as colors, zr as compactBackofficeValueLine, ve as containerQueries, Ce as controlFocusRing, Et as copyRichClipboard, Dt as copyTextToClipboard, Ot as copyWithExecCommand, Br as createBackofficeKeyValueItem, he as cx, Pi as denseTableClass, we as disabledControl, Te as entityReferenceLink, Ee as errorControlFocusRing, Je as findFirstFocusable, Ye as findFirstFormControl, Be as firstChildSprinkles, e as focusElement, De as focusRing, Vr as formatBackofficeBoolean, Hr as formatBackofficeNullableBoolean, Ii as formatCurrencyAmount, Li as formatCurrencyAmountTitle, Ai as formatNullableCurrency, ji as formatNullableNumber, Mi as formatNullableString, Ur as formatOptionalBackofficeValue, Ni as formatStringList, t as getFocusableElements, Oe as ghostIconButton, Ve as hoverSprinkles, ke as iconBox, Ae as iconBoxCompact, je as insetFocusRing, Me as interactiveControlSurface, Ne as interactiveLinkSurface, n as isFocusableElement, Pe as liftOnHover, Fe as loadingShimmer, Wr as mapBackofficeTextItems, Hi as mapTimeSeriesBuckets, Ft as markdownFontSizeVar, It as markdownLinkColorVar, Lt as markdownLinkDisabledColorVar, Rt as markdownLinkHoverColorVar, zt as markdownLinkIconColorVar, Bt as markdownTextColorVar, Ri as normalizeProgress, ge as onlyDefinedStyles, We as opacity, Ie as pillLink, Le as pressInteraction, se as publicDarkThemeClass, ce as publicDarkThemeValues, le as publicLightThemeClass, ue as publicLightThemeValues, Ki as readPersistentBooleanState, r as resolveFormInitialFocusTarget, i as resolveInitialFocusTarget, or as sanitizeAgentAnswer, sr as sanitizeAgentMarkdown, Ge as screens, be as spacing, ee as spin, te as spinAnimation, He as sprinkles, Ue as stateSprinkles, Re as surfaceInteractive, qe as themeColorValues, Ke as themeSpacingValues, Ui as toMappedUtcDailyCategorySeries, Wi as toUtcDailyCategorySeries, Gi as toUtcDayKey, ze as truncate, Xe as uiI18nResources, kt as useClipboardCopy, Kt as useLoginForm, Bn as usePageShellContentClassName, Vn as usePageShellRuntime, Hn as usePageShellSidePanel, qi as usePersistentBooleanState, Ji as useStickToBottom, Yi as useSubmitOnEnter, me as useTheme, Gt as useToast, xe as vars, ne as visuallyHidden, Ze as withUiI18nResources };
|
|
348
|
+
import { LockOpenSvg as mo } from "./icons/LockOpenSvg.js";
|
|
349
|
+
import { LockSvg as ho } from "./icons/LockSvg.js";
|
|
350
|
+
import { MailCheckSvg as go } from "./icons/MailCheckSvg.js";
|
|
351
|
+
import { MailXSvg as _o } from "./icons/MailXSvg.js";
|
|
352
|
+
import { PencilSvg as vo } from "./icons/PencilSvg.js";
|
|
353
|
+
import { PinFilledSvg as yo } from "./icons/PinFilledSvg.js";
|
|
354
|
+
import { PinSvg as bo } from "./icons/PinSvg.js";
|
|
355
|
+
import { ProfileDropdownOrganizationSvg as xo } from "./icons/ProfileDropdownOrganizationSvg.js";
|
|
356
|
+
import { RobotCheckSvg as So } from "./icons/RobotCheckSvg.js";
|
|
357
|
+
import { RobotSvg as Co } from "./icons/RobotSvg.js";
|
|
358
|
+
import { RobotXSvg as wo } from "./icons/RobotXSvg.js";
|
|
359
|
+
import { RocketOffSvg as To } from "./icons/RocketOffSvg.js";
|
|
360
|
+
import { RocketSvg as Eo } from "./icons/RocketSvg.js";
|
|
361
|
+
import { SendCheckSvg as Do } from "./icons/SendCheckSvg.js";
|
|
362
|
+
import { SendMessageSvg as Oo } from "./icons/SendMessageSvg.js";
|
|
363
|
+
import { SendXSvg as ko } from "./icons/SendXSvg.js";
|
|
364
|
+
import { SettingsCheckSvg as Ao } from "./icons/SettingsCheckSvg.js";
|
|
365
|
+
import { SettingsXSvg as jo } from "./icons/SettingsXSvg.js";
|
|
366
|
+
import { ShieldLockSvg as Mo } from "./icons/ShieldLockSvg.js";
|
|
367
|
+
import { ShieldOffSvg as No } from "./icons/ShieldOffSvg.js";
|
|
368
|
+
import { TaskAttachmentSvg as Po } from "./icons/TaskAttachmentSvg.js";
|
|
369
|
+
import { TaskCommentBubbleSvg as Fo } from "./icons/TaskCommentBubbleSvg.js";
|
|
370
|
+
import { TaskDependencyBlockedSvg as Io } from "./icons/TaskDependencyBlockedSvg.js";
|
|
371
|
+
import { TaskDependencyReadySvg as Lo } from "./icons/TaskDependencyReadySvg.js";
|
|
372
|
+
import { WrenchSvg as Ro } from "./icons/WrenchSvg.js";
|
|
373
|
+
import { XBadgeSvg as zo } from "./icons/XBadgeSvg.js";
|
|
374
|
+
import { ChevronDownIcon as Bo } from "./svg/ChevronDownIcon.js";
|
|
375
|
+
export { hn as ActionPanel, Sn as ActivityCard, Cn as ActivityFeed, gi as AdminShellLayout, hi as AdminTopbar, cr as AgentMarkdownCard, gn as AppHeader, ui as AuditTimeline, Jt as AuthLayout, Di as BACKOFFICE_THEME_MODE_KEY, Sr as BackofficeAuditMetadataPanel, di as BackofficeDataTable, yr as BackofficeDetailField, kr as BackofficeDetailFlagTag, br as BackofficeDetailSection, Ar as BackofficeDetailTaggedValue, vr as BackofficeEmptyState, jr as BackofficeEnumLabel, Cr as BackofficeFilterDrawer, wr as BackofficeFilterField, Tr as BackofficeFormSection, pr as BackofficeIdBadge, Nr as BackofficeJsonViewer, $n as BackofficeKeyValueList, Lr as BackofficeKeyValueSection, Gr as BackofficeListFooter, Yt as BackofficePageHeader, Ir as BackofficePayloadSection, Fr as BackofficePayloadViewer, Er as BackofficePickerList, Dr as BackofficePickerRow, Or as BackofficePickerShell, xr as BackofficeReferenceValue, ei as BackofficeRelationsMenu, ti as BackofficeScopeStack, ba as BackofficeSidebarActivitySvg, xa as BackofficeSidebarArchiveSvg, Sa as BackofficeSidebarBadgeCheckSvg, Ca as BackofficeSidebarBotSvg, o as BackofficeSidebarBracesSvg, wa as BackofficeSidebarBrainCircuitSvg, Ta as BackofficeSidebarBriefcaseSvg, Ea as BackofficeSidebarBuildingSvg, Da as BackofficeSidebarCableSvg, Oa as BackofficeSidebarCalendarSvg, s as BackofficeSidebarChartBarSvg, ka as BackofficeSidebarChartLineSvg, Aa as BackofficeSidebarChartPieSvg, c as BackofficeSidebarClipboardCheckSvg, ja as BackofficeSidebarClipboardListSvg, l as BackofficeSidebarClockSvg, u as BackofficeSidebarCodeSvg, d as BackofficeSidebarCopyCheckSvg, f as BackofficeSidebarCopySvg, p as BackofficeSidebarCopyXSvg, m as BackofficeSidebarCrosshairSvg, Ma as BackofficeSidebarDatabaseSvg, h as BackofficeSidebarDiffSvg, g as BackofficeSidebarFileCodeSvg, _ as BackofficeSidebarFileCogSvg, v as BackofficeSidebarFileSearchSvg, y as BackofficeSidebarFileStackSvg, b as BackofficeSidebarFileTextSvg, x as BackofficeSidebarFilesSvg, S as BackofficeSidebarFingerprintSvg, C as BackofficeSidebarFlameSvg, w as BackofficeSidebarFolderGitSvg, T as BackofficeSidebarFolderKanbanSvg, E as BackofficeSidebarFolderTreeSvg, Na as BackofficeSidebarGaugeSvg, Pa as BackofficeSidebarGitBranchPlusSvg, Fa as BackofficeSidebarGitBranchSvg, D as BackofficeSidebarGitCommitSvg, Ia as BackofficeSidebarGitCompareSvg, O as BackofficeSidebarGitForkSvg, La as BackofficeSidebarGitMergeSvg, Ra as BackofficeSidebarGitPullRequestSvg, k as BackofficeSidebarGlobeSvg, A as BackofficeSidebarHistorySvg, j as BackofficeSidebarInfoSvg, za as BackofficeSidebarKeySquareSvg, Ba as BackofficeSidebarKeySvg, Va as BackofficeSidebarLandmarkSvg, Ha as BackofficeSidebarLayoutDashboardSvg, M as BackofficeSidebarLinkSvg, N as BackofficeSidebarListChecksSvg, P as BackofficeSidebarListTodoSvg, Ua as BackofficeSidebarListTreeSvg, F as BackofficeSidebarLocateSvg, Wa as BackofficeSidebarLockKeyholeSvg, Ga as BackofficeSidebarLockSvg, Ka as BackofficeSidebarMailPlusSvg, qa as BackofficeSidebarMapPinSvg, I as BackofficeSidebarMapSvg, Ja as BackofficeSidebarMessagePlusSvg, Ya as BackofficeSidebarMessageTextSvg, Xa as BackofficeSidebarMessagesSvg, L as BackofficeSidebarMonitorCheckSvg, R as BackofficeSidebarMouseClickSvg, z as BackofficeSidebarNetworkSvg, B as BackofficeSidebarPanelsSvg, V as BackofficeSidebarPenToolSvg, Za as BackofficeSidebarPinSvg, Qa as BackofficeSidebarPlayCircleSvg, H as BackofficeSidebarRadarSvg, $a as BackofficeSidebarReceiptSvg, eo as BackofficeSidebarRocketSvg, U as BackofficeSidebarRouteSvg, W as BackofficeSidebarScrollTextSvg, G as BackofficeSidebarSearchCodeSvg, K as BackofficeSidebarSearchSvg, to as BackofficeSidebarSendSvg, no as BackofficeSidebarShieldAlertSvg, ro as BackofficeSidebarShieldCheckSvg, io as BackofficeSidebarShieldUserSvg, ao as BackofficeSidebarStepForwardSvg, q as BackofficeSidebarStethoscopeSvg, J as BackofficeSidebarTerminalSquareSvg, Y as BackofficeSidebarTestTubeSvg, X as BackofficeSidebarTrashSvg, oo as BackofficeSidebarUploadCloudSvg, so as BackofficeSidebarUserCheckSvg, co as BackofficeSidebarUserCogSvg, lo as BackofficeSidebarUserSearchSvg, uo as BackofficeSidebarUserSvg, fo as BackofficeSidebarUsersSvg, po as BackofficeSidebarWalletSvg, Z as BackofficeSidebarWandSvg, Q as BackofficeSidebarWorkflowSvg, $ as BackofficeSidebarWrenchSvg, ri as BackofficeStatusGroup, ni as BackofficeStatusMetaBadge, ii as BackofficeStickyDisclosure, ai as BackofficeTableSkeleton, Oi as BackofficeThemeProvider, B as BackofficeToolArchitectureSvg, Rr as BackofficeToolCallFrame, O as BackofficeToolCallgraphSvg, u as BackofficeToolCodePlacementSvg, S as BackofficeToolCommitBlameSvg, D as BackofficeToolCommitDetailSvg, h as BackofficeToolCommitDiffSvg, K as BackofficeToolCommitSearchSvg, R as BackofficeToolCommitTouchesSvg, A as BackofficeToolCommitsLogSvg, D as BackofficeToolCommitsSvg, o as BackofficeToolComplexSymbolsSvg, X as BackofficeToolDeadCodeSvg, Q as BackofficeToolDependenciesSvg, V as BackofficeToolDesignSvg, J as BackofficeToolDevSvg, q as BackofficeToolDiagnosticsSvg, W as BackofficeToolDocsListSvg, W as BackofficeToolDocsSvg, I as BackofficeToolDomainMapSvg, f as BackofficeToolDuplicateFilesSvg, d as BackofficeToolDuplicateSymbolsSvg, p as BackofficeToolDuplicationsSvg, F as BackofficeToolFeatureImpactSvg, P as BackofficeToolFeaturePlanSvg, v as BackofficeToolFileFindSvg, l as BackofficeToolFileHistorySvg, _ as BackofficeToolFileMetadataSvg, b as BackofficeToolFileReadSvg, y as BackofficeToolFilesReadManySvg, x as BackofficeToolFilesSvg, G as BackofficeToolFulltextSearchSvg, H as BackofficeToolGraphNeighborsSvg, z as BackofficeToolGraphSvg, C as BackofficeToolHotspotsSvg, k as BackofficeToolHttpFetchSvg, m as BackofficeToolImpactSvg, L as BackofficeToolPreflightCheckSvg, T as BackofficeToolProjectsListSvg, Z as BackofficeToolRefactorSvg, j as BackofficeToolRepoInfoSvg, w as BackofficeToolRepoSvg, U as BackofficeToolRequestFlowSvg, $ as BackofficeToolScaffoldSvg, Y as BackofficeToolSuggestTestsSvg, b as BackofficeToolSummarySvg, g as BackofficeToolSymbolDefinitionSvg, M as BackofficeToolSymbolReferencesSvg, o as BackofficeToolSymbolsListSvg, q as BackofficeToolTechDebtSvg, c as BackofficeToolTestsSvg, N as BackofficeToolTodosSvg, E as BackofficeToolTreeListSvg, s as BackofficeToolTreeStatsSvg, oi as BackofficeToolbar, Qe as Badge, Qi as BanSvg, _t as BreadcrumbNavigation, si as BulkActionsBar, et as Button, $e as ButtonLoadingSpinnerSvg, mt as Card, na as ChatCheckSvg, $i as ChatSizeLargeSvg, ea as ChatSizeMediumSvg, ta as ChatSizeSmallSvg, ra as ChatXSvg, ia as CheckSvg, it as Checkbox, bt as CheckboxField, Bo as ChevronDownIcon, gt as ChevronDownSvg, Wn as ChevronLeftSvg, oa as ClockSvg, aa as CoinOffSvg, Mr as ConfirmDialog, vn as ContentLayout, Dn as CopyableText, wn as DashboardGrid, Tn as DashboardGridColumn, En as DashboardGridItem, An as DashboardMetricGroup, Mn as DashboardPanel, Nn as DashboardQuickActions, Pn as DashboardStatusList, $t as DataTable, en as DataTableBody, tn as DataTableEmptyRow, nn as DataTableHeader, rn as DataTableRoot, an as DataTableRow, sa as DatabaseCheckSvg, ca as DatabaseXSvg, fi as DetailPageTemplate, pi as DetailPageTemplateContent, yn as DetailSummaryHeader, la as DevModeSvg, Vt as EmptyState, a as EntityHeader, mr as EnvironmentBadge, at as ErrorMessage, Nt as ExternalLinkSvg, ua as EyeSvg, Ai as FALLBACK_REFERENCE, ci as FilterChipRow, wt as Form, vt as FormActions, St as FormError, xt as FormErrorAlertSvg, Ct as FormField, yt as FormGrid, Tt as FormGroup, ot as FormattedDate, li as GlobalSearchInput, Kr as GlobeSvg, da as GripDotsSvg, At as HighlightCode, fa as HomeActivityAssignUserSvg, pa as HomeStatsCheckBadgeSvg, ma as HomeStatsClipboardSvg, ha as HomeStatsClockSvg, ct as IconMenuButton, dr as ImagePreviewModal, sn as InfiniteScrollTrigger, jn as InfoTile, cn as InlineBanner, nt as Input, ga as KeyOffSvg, _a as KeySvg, rt as Label, Pr as LazyBackofficeJsonViewer, jt as LazyMarkdownCodeBlock, Mt as LazyMarkdownRenderer, tt as LinkButton, va as LinkCheckSvg, ya as LinkXSvg, mi as ListPageTemplate, mo as LockOpenSvg, ho as LockSvg, qt as LoginForm, go as MailCheckSvg, _o as MailXSvg, Pt as MarkdownRenderer, Fn as MetadataStrip, On as MetricCard, Zt as MetricHistoryChart, kn as MetricTileGroup, ut as Modal, Ii as MoneyAmount, ln as MutationFeedback, un as OperationFeedback, lt as Overlay, Xt as PageContainer, In as PageHero, Rn as PageShell, zn as PageShellRuntimeProvider, xn as PanelShell, vo as PencilSvg, yo as PinFilledSvg, bo as PinSvg, Xn as ProfileDropdownLogoutSvg, xo as ProfileDropdownOrganizationSvg, qr as ProjectsFolderSvg, ur as RefetchNeededBanner, st as RelativeTimeText, Ln as ResizableSplitView, pn as ResponsiveCollectionRenderer, on as ResponsiveRecordList, So as RobotCheckSvg, Co as RobotSvg, wo as RobotXSvg, To as RocketOffSvg, Eo as RocketSvg, dn as RouteFallback, fn as RoutePendingBar, Un as SelectableCard, Do as SendCheckSvg, Oo as SendMessageSvg, ko as SendXSvg, Ao as SettingsCheckSvg, Qn as SettingsLayout, jo as SettingsXSvg, Mo as ShieldLockSvg, No as ShieldOffSvg, Gn as ShortcutHint, ht as SidebarHomeSvg, Jr as SidebarInitiativesSvg, Yn as SidebarNavigation, Kn as SidebarNavigationCollapseToggle, qn as SidebarNavigationItemComponent, Jn as SidebarNavigationSectionComponent, Yr as SidebarPlusSvg, Zn as SidebarProfileMenu, Xr as SidebarSearchSvg, Zr as SidebarSettingsSvg, Qr as SidebarTasksSvg, $r as SidebarTeamSvg, lr as SimpleSelect, hr as Skeleton, gr as Spinner, bn as StatusBadge, er as StatusSummaryPanel, ft as Surface, pt as SurfaceSection, de as THEME_MODE_KEY, mn as TableCell, Ht as Tabs, _r as Tag, Po as TaskAttachmentSvg, Fo as TaskCommentBubbleSvg, Io as TaskDependencyBlockedSvg, Lo as TaskDependencyReadySvg, dt as Textarea, fe as ThemeProvider, Qt as TimeSeriesLineChart, tr as TimelineEventRow, Wt as ToastProvider, Ut as ToastViewport, nr as Toolbar, rr as ToolbarGroup, ir as ToolbarSeparator, ar as ToolbarSpacer, _n as TopNavigationShell, fr as VirtualizedConnectionTable, _e as VisuallyHidden, Zi as WrapperPage, Ro as WrenchSvg, zo as XBadgeSvg, ki as __backofficeThemeTest, pe as __test, _i as adminControlHeightVar, vi as adminDensityComfortableClass, yi as adminDensityCompactClass, bi as adminDensityDefaultClass, xi as adminPanelPaddingVar, Si as adminTableCellPaddingXVar, Ci as adminTableCellPaddingYVar, wi as adminTableFontSizeVar, Ti as adminTableRowMinHeightVar, Ei as adminToolbarGapVar, Bi as aggregateMappedValuesByDayAndCategory, Vi as aggregateValuesByDayAndCategory, re as backofficeDarkThemeClass, ie as backofficeDarkThemeValues, ae as backofficeLightThemeClass, oe as backofficeLightThemeValues, Se as brandFocusRing, Hi as buildUtcDayRange, ye as colors, zr as compactBackofficeValueLine, ve as containerQueries, Ce as controlFocusRing, Et as copyRichClipboard, Dt as copyTextToClipboard, Ot as copyWithExecCommand, Br as createBackofficeKeyValueItem, he as cx, Fi as denseTableClass, we as disabledControl, Te as entityReferenceLink, Ee as errorControlFocusRing, Je as findFirstFocusable, Ye as findFirstFormControl, Be as firstChildSprinkles, e as focusElement, De as focusRing, Vr as formatBackofficeBoolean, Hr as formatBackofficeNullableBoolean, Li as formatCurrencyAmount, Ri as formatCurrencyAmountTitle, ji as formatNullableCurrency, Mi as formatNullableNumber, Ni as formatNullableString, Ur as formatOptionalBackofficeValue, Pi as formatStringList, t as getFocusableElements, Oe as ghostIconButton, Ve as hoverSprinkles, ke as iconBox, Ae as iconBoxCompact, je as insetFocusRing, Me as interactiveControlSurface, Ne as interactiveLinkSurface, n as isFocusableElement, Pe as liftOnHover, Fe as loadingShimmer, Wr as mapBackofficeTextItems, Ui as mapTimeSeriesBuckets, Ft as markdownFontSizeVar, It as markdownLinkColorVar, Lt as markdownLinkDisabledColorVar, Rt as markdownLinkHoverColorVar, zt as markdownLinkIconColorVar, Bt as markdownTextColorVar, zi as normalizeProgress, ge as onlyDefinedStyles, We as opacity, Ie as pillLink, Le as pressInteraction, se as publicDarkThemeClass, ce as publicDarkThemeValues, le as publicLightThemeClass, ue as publicLightThemeValues, qi as readPersistentBooleanState, r as resolveFormInitialFocusTarget, i as resolveInitialFocusTarget, or as sanitizeAgentAnswer, sr as sanitizeAgentMarkdown, Ge as screens, be as spacing, ee as spin, te as spinAnimation, He as sprinkles, Ue as stateSprinkles, Re as surfaceInteractive, qe as themeColorValues, Ke as themeSpacingValues, Wi as toMappedUtcDailyCategorySeries, Gi as toUtcDailyCategorySeries, Ki as toUtcDayKey, ze as truncate, Xe as uiI18nResources, kt as useClipboardCopy, Kt as useLoginForm, Bn as usePageShellContentClassName, Vn as usePageShellRuntime, Hn as usePageShellSidePanel, Ji as usePersistentBooleanState, Yi as useStickToBottom, Xi as useSubmitOnEnter, me as useTheme, Gt as useToast, xe as vars, ne as visuallyHidden, Ze as withUiI18nResources };
|