@plumile/ui 0.1.70 → 0.1.72
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/atomic/molecules/breadcrumb_navigation/BreadcrumbMenuDropdown.js +12 -2
- package/lib/esm/atomic/molecules/breadcrumb_navigation/BreadcrumbMenuDropdown.js.map +1 -1
- package/lib/esm/atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.js +35 -46
- package/lib/esm/atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.js.map +1 -1
- package/lib/esm/atomic/molecules/markdown/components/MarkdownFootnoteReference.css.js +1 -0
- package/lib/esm/atomic/molecules/markdown/components/MarkdownParagraph.css.js +0 -1
- package/lib/esm/index.js +103 -104
- package/lib/esm/style.css +1 -1
- package/lib/esm/theme/ThemeProvider.js +14 -14
- package/lib/esm/theme/ThemeProvider.js.map +1 -1
- package/lib/esm/theme/themeContract.js +1 -1
- package/lib/esm/theme/themeContract.js.map +1 -1
- package/lib/types/atomic/molecules/breadcrumb_navigation/BreadcrumbMenuDropdown.d.ts.map +1 -1
- package/lib/types/atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.d.ts +5 -7
- package/lib/types/atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.d.ts.map +1 -1
- package/lib/types/atomic/molecules/breadcrumb_navigation/types.d.ts +18 -0
- package/lib/types/atomic/molecules/breadcrumb_navigation/types.d.ts.map +1 -1
- package/lib/types/index.d.ts +1 -2
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/theme/ThemeProvider.d.ts +1 -1
- package/lib/types/theme/ThemeProvider.d.ts.map +1 -1
- package/package.json +2 -2
- package/lib/esm/atomic/molecules/profile_dropdown/ProfileDropdown.js +0 -119
- package/lib/esm/atomic/molecules/profile_dropdown/ProfileDropdown.js.map +0 -1
- package/lib/esm/atomic/molecules/profile_dropdown/profileDropdown.css.js +0 -8
- package/lib/esm/atomic/molecules/profile_dropdown/profileDropdown.css.js.map +0 -1
- package/lib/types/atomic/molecules/profile_dropdown/ProfileDropdown.d.ts +0 -24
- package/lib/types/atomic/molecules/profile_dropdown/ProfileDropdown.d.ts.map +0 -1
- package/lib/types/atomic/molecules/profile_dropdown/profileDropdown.css.d.ts +0 -14
- package/lib/types/atomic/molecules/profile_dropdown/profileDropdown.css.d.ts.map +0 -1
|
@@ -8,7 +8,17 @@ import { Link as p } from "@plumile/router";
|
|
|
8
8
|
//#region src/atomic/molecules/breadcrumb_navigation/BreadcrumbMenuDropdown.tsx
|
|
9
9
|
var m = ({ node: m, menu: h, ariaLabel: g, searchPlaceholder: _, searchAriaLabel: v, emptyLabel: y, emptyMatchesLabel: b }) => {
|
|
10
10
|
let x = h?.items ?? [];
|
|
11
|
-
return /* @__PURE__ */ d("div", {
|
|
11
|
+
return h == null ? /* @__PURE__ */ d("div", {
|
|
12
|
+
className: o,
|
|
13
|
+
children: /* @__PURE__ */ d("div", {
|
|
14
|
+
className: a,
|
|
15
|
+
children: /* @__PURE__ */ d(p, {
|
|
16
|
+
to: m.to,
|
|
17
|
+
className: i,
|
|
18
|
+
children: m.name
|
|
19
|
+
})
|
|
20
|
+
})
|
|
21
|
+
}) : /* @__PURE__ */ d("div", {
|
|
12
22
|
className: o,
|
|
13
23
|
children: /* @__PURE__ */ f("div", {
|
|
14
24
|
className: a,
|
|
@@ -32,7 +42,7 @@ var m = ({ node: m, menu: h, ariaLabel: g, searchPlaceholder: _, searchAriaLabel
|
|
|
32
42
|
contentClassName: s,
|
|
33
43
|
children: /* @__PURE__ */ d(u, {
|
|
34
44
|
items: x,
|
|
35
|
-
selectedId: h
|
|
45
|
+
selectedId: h.selectedId,
|
|
36
46
|
searchPlaceholder: _,
|
|
37
47
|
searchAriaLabel: v,
|
|
38
48
|
emptyLabel: y,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BreadcrumbMenuDropdown.js","names":[],"sources":["../../../../../src/atomic/molecules/breadcrumb_navigation/BreadcrumbMenuDropdown.tsx"],"sourcesContent":["import { type JSX } from 'react';\nimport { Link } from '@plumile/router';\nimport { ChevronDownSvg } from '../../../icons/ChevronDownSvg.js';\nimport { Dropdown } from '../dropdown/Dropdown.js';\nimport { cx } from '../../../theme/tools.js';\n\nimport * as styles from './breadcrumbNavigation.css.js';\nimport { BreadcrumbMenuPopover } from './BreadcrumbMenuPopover.js';\nimport type { BreadcrumbMenuConfig, BreadcrumbNode } from './types.js';\n\ntype Props = {\n node: BreadcrumbNode;\n menu?: BreadcrumbMenuConfig;\n ariaLabel: string;\n searchPlaceholder: string;\n searchAriaLabel: string;\n emptyLabel: string;\n emptyMatchesLabel: string;\n};\n\nexport const BreadcrumbMenuDropdown = ({\n node,\n menu,\n ariaLabel,\n searchPlaceholder,\n searchAriaLabel,\n emptyLabel,\n emptyMatchesLabel,\n}: Props): JSX.Element => {\n const menuItems = menu?.items ?? [];\n\n return (\n <div className={styles.breadcrumbSection}>\n {/* <span className={styles.breadcrumbLabel}>{sectionLabel}</span> */}\n <div className={styles.breadcrumbNameRow}>\n <Link to={node.to} className={styles.breadcrumbLink}>\n {node.name}\n </Link>\n <Dropdown\n trigger={(isOpen) => {\n return (\n <button type=\"button\" className={styles.breadcrumbChevronButton}>\n <ChevronDownSvg\n width={14}\n height={14}\n className={cx(styles.breadcrumbChevron, {\n [styles.breadcrumbChevronOpen]: isOpen,\n })}\n />\n </button>\n );\n }}\n ariaLabel={ariaLabel}\n placement=\"bottom-start\"\n matchTriggerWidth={false}\n contentClassName={styles.popoverPanel}\n >\n <BreadcrumbMenuPopover\n items={menuItems}\n selectedId={menu
|
|
1
|
+
{"version":3,"file":"BreadcrumbMenuDropdown.js","names":[],"sources":["../../../../../src/atomic/molecules/breadcrumb_navigation/BreadcrumbMenuDropdown.tsx"],"sourcesContent":["import { type JSX } from 'react';\nimport { Link } from '@plumile/router';\nimport { ChevronDownSvg } from '../../../icons/ChevronDownSvg.js';\nimport { Dropdown } from '../dropdown/Dropdown.js';\nimport { cx } from '../../../theme/tools.js';\n\nimport * as styles from './breadcrumbNavigation.css.js';\nimport { BreadcrumbMenuPopover } from './BreadcrumbMenuPopover.js';\nimport type { BreadcrumbMenuConfig, BreadcrumbNode } from './types.js';\n\ntype Props = {\n node: BreadcrumbNode;\n menu?: BreadcrumbMenuConfig;\n ariaLabel: string;\n searchPlaceholder: string;\n searchAriaLabel: string;\n emptyLabel: string;\n emptyMatchesLabel: string;\n};\n\nexport const BreadcrumbMenuDropdown = ({\n node,\n menu,\n ariaLabel,\n searchPlaceholder,\n searchAriaLabel,\n emptyLabel,\n emptyMatchesLabel,\n}: Props): JSX.Element => {\n const menuItems = menu?.items ?? [];\n\n if (menu == null) {\n return (\n <div className={styles.breadcrumbSection}>\n <div className={styles.breadcrumbNameRow}>\n <Link to={node.to} className={styles.breadcrumbLink}>\n {node.name}\n </Link>\n </div>\n </div>\n );\n }\n\n return (\n <div className={styles.breadcrumbSection}>\n {/* <span className={styles.breadcrumbLabel}>{sectionLabel}</span> */}\n <div className={styles.breadcrumbNameRow}>\n <Link to={node.to} className={styles.breadcrumbLink}>\n {node.name}\n </Link>\n <Dropdown\n trigger={(isOpen) => {\n return (\n <button type=\"button\" className={styles.breadcrumbChevronButton}>\n <ChevronDownSvg\n width={14}\n height={14}\n className={cx(styles.breadcrumbChevron, {\n [styles.breadcrumbChevronOpen]: isOpen,\n })}\n />\n </button>\n );\n }}\n ariaLabel={ariaLabel}\n placement=\"bottom-start\"\n matchTriggerWidth={false}\n contentClassName={styles.popoverPanel}\n >\n <BreadcrumbMenuPopover\n items={menuItems}\n selectedId={menu.selectedId}\n searchPlaceholder={searchPlaceholder}\n searchAriaLabel={searchAriaLabel}\n emptyLabel={emptyLabel}\n emptyMatchesLabel={emptyMatchesLabel}\n />\n </Dropdown>\n </div>\n </div>\n );\n};\n"],"mappings":";;;;;;;;AAoBA,IAAa,KAA0B,EACrC,SACA,SACA,cACA,sBACA,oBACA,eACA,2BACwB;CACxB,IAAM,IAAY,GAAM,SAAS,EAAE;AAcnC,QAZI,KAAQ,OAER,kBAAC,OAAD;EAAK,WAAW;YACd,kBAAC,OAAD;GAAK,WAAW;aACd,kBAAC,GAAD;IAAM,IAAI,EAAK;IAAI,WAAW;cAC3B,EAAK;IACD,CAAA;GACH,CAAA;EACF,CAAA,GAKR,kBAAC,OAAD;EAAK,WAAW;YAEd,kBAAC,OAAD;GAAK,WAAW;aAAhB,CACE,kBAAC,GAAD;IAAM,IAAI,EAAK;IAAI,WAAW;cAC3B,EAAK;IACD,CAAA,EACP,kBAAC,GAAD;IACE,UAAU,MAEN,kBAAC,UAAD;KAAQ,MAAK;KAAS,WAAW;eAC/B,kBAAC,GAAD;MACE,OAAO;MACP,QAAQ;MACR,WAAW,EAAG,GAA0B,GACrC,IAA+B,GACjC,CAAC;MACF,CAAA;KACK,CAAA;IAGF;IACX,WAAU;IACV,mBAAmB;IACnB,kBAAkB;cAElB,kBAAC,GAAD;KACE,OAAO;KACP,YAAY,EAAK;KACE;KACF;KACL;KACO;KACnB,CAAA;IACO,CAAA,CACP;;EACF,CAAA"}
|
|
@@ -1,63 +1,52 @@
|
|
|
1
1
|
import { cx as e } from "../../../theme/tools.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { Link as d } from "@plumile/router";
|
|
2
|
+
import { SidebarHomeSvg as t } from "../../../icons/SidebarHomeSvg.js";
|
|
3
|
+
import { breadcrumb as n, breadcrumbItem as r, breadcrumbList as i, breadcrumbSeparator as a, homeIcon as o, homeLink as s } from "./breadcrumbNavigation.css.js";
|
|
4
|
+
import { BreadcrumbMenuDropdown as c } from "./BreadcrumbMenuDropdown.js";
|
|
5
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
6
|
+
import { Link as u } from "@plumile/router";
|
|
8
7
|
//#region src/atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.tsx
|
|
9
|
-
var
|
|
10
|
-
let {
|
|
11
|
-
|
|
12
|
-
className:
|
|
13
|
-
children: /* @__PURE__ */ u
|
|
14
|
-
to:
|
|
15
|
-
className:
|
|
16
|
-
"aria-label":
|
|
17
|
-
children: /* @__PURE__ */
|
|
8
|
+
var d = (d) => {
|
|
9
|
+
let { root: f, rootAriaLabel: p, items: m = [], className: h } = d, g = [];
|
|
10
|
+
g.push(/* @__PURE__ */ l("li", {
|
|
11
|
+
className: r,
|
|
12
|
+
children: /* @__PURE__ */ l(u, {
|
|
13
|
+
to: f.to,
|
|
14
|
+
className: s,
|
|
15
|
+
"aria-label": p,
|
|
16
|
+
children: /* @__PURE__ */ l(t, {
|
|
18
17
|
width: 16,
|
|
19
18
|
height: 16,
|
|
20
|
-
className:
|
|
19
|
+
className: o
|
|
21
20
|
})
|
|
22
21
|
})
|
|
23
|
-
}, "home"))
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
22
|
+
}, "home"));
|
|
23
|
+
for (let e of m) g.push(/* @__PURE__ */ l("li", {
|
|
24
|
+
className: r,
|
|
25
|
+
children: /* @__PURE__ */ l(c, {
|
|
26
|
+
node: e.node,
|
|
27
|
+
menu: e.menu,
|
|
28
|
+
ariaLabel: e.labels?.ariaLabel ?? e.node.name,
|
|
29
|
+
searchPlaceholder: e.labels?.searchPlaceholder ?? "",
|
|
30
|
+
searchAriaLabel: e.labels?.searchAriaLabel ?? "",
|
|
31
|
+
emptyLabel: e.labels?.emptyLabel ?? "",
|
|
32
|
+
emptyMatchesLabel: e.labels?.emptyMatchesLabel ?? ""
|
|
33
33
|
})
|
|
34
|
-
},
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
node: h,
|
|
38
|
-
menu: _,
|
|
39
|
-
ariaLabel: E,
|
|
40
|
-
searchPlaceholder: w,
|
|
41
|
-
searchAriaLabel: w,
|
|
42
|
-
emptyLabel: T,
|
|
43
|
-
emptyMatchesLabel: b
|
|
44
|
-
})
|
|
45
|
-
}, "project"));
|
|
46
|
-
let O = D.flatMap((e, t) => t === 0 ? [e] : [/* @__PURE__ */ u("li", {
|
|
47
|
-
className: o,
|
|
34
|
+
}, e.id));
|
|
35
|
+
let _ = g.flatMap((e, t) => t === 0 ? [e] : [/* @__PURE__ */ l("li", {
|
|
36
|
+
className: a,
|
|
48
37
|
"aria-hidden": "true",
|
|
49
38
|
children: "/"
|
|
50
39
|
}, `separator-${t}`), e]);
|
|
51
|
-
return /* @__PURE__ */
|
|
52
|
-
className: e(
|
|
40
|
+
return /* @__PURE__ */ l("nav", {
|
|
41
|
+
className: e(n, h),
|
|
53
42
|
"aria-label": "Breadcrumb",
|
|
54
|
-
children: /* @__PURE__ */
|
|
55
|
-
className:
|
|
56
|
-
children:
|
|
43
|
+
children: /* @__PURE__ */ l("ol", {
|
|
44
|
+
className: i,
|
|
45
|
+
children: _
|
|
57
46
|
})
|
|
58
47
|
});
|
|
59
48
|
};
|
|
60
49
|
//#endregion
|
|
61
|
-
export {
|
|
50
|
+
export { d as BreadcrumbNavigation };
|
|
62
51
|
|
|
63
52
|
//# sourceMappingURL=BreadcrumbNavigation.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BreadcrumbNavigation.js","names":[],"sources":["../../../../../src/atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.tsx"],"sourcesContent":["import { type JSX } from 'react';\nimport {
|
|
1
|
+
{"version":3,"file":"BreadcrumbNavigation.js","names":[],"sources":["../../../../../src/atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.tsx"],"sourcesContent":["import { type JSX } from 'react';\nimport { Link } from '@plumile/router';\nimport { SidebarHomeSvg } from '../../../icons/SidebarHomeSvg.js';\n\nimport * as styles from './breadcrumbNavigation.css.js';\nimport { cx } from '../../../theme/tools.js';\nimport { BreadcrumbMenuDropdown } from './BreadcrumbMenuDropdown.js';\nimport type { BreadcrumbNavigationItem, BreadcrumbNode } from './types.js';\n\ntype Props = {\n root: BreadcrumbNode;\n rootAriaLabel: string;\n items?: readonly BreadcrumbNavigationItem[];\n className?: string;\n};\n\nexport const BreadcrumbNavigation = (props: Props): JSX.Element => {\n const { root, rootAriaLabel, items = [], className } = props;\n const breadcrumbItems: JSX.Element[] = [];\n\n breadcrumbItems.push(\n <li key=\"home\" className={styles.breadcrumbItem}>\n <Link to={root.to} className={styles.homeLink} aria-label={rootAriaLabel}>\n <SidebarHomeSvg width={16} height={16} className={styles.homeIcon} />\n </Link>\n </li>,\n );\n\n for (const item of items) {\n breadcrumbItems.push(\n <li key={item.id} className={styles.breadcrumbItem}>\n <BreadcrumbMenuDropdown\n node={item.node}\n menu={item.menu}\n ariaLabel={item.labels?.ariaLabel ?? item.node.name}\n searchPlaceholder={item.labels?.searchPlaceholder ?? ''}\n searchAriaLabel={item.labels?.searchAriaLabel ?? ''}\n emptyLabel={item.labels?.emptyLabel ?? ''}\n emptyMatchesLabel={item.labels?.emptyMatchesLabel ?? ''}\n />\n </li>,\n );\n }\n\n const breadcrumbsWithSeparators = breadcrumbItems.flatMap((item, index) => {\n if (index === 0) {\n return [item];\n }\n return [\n <li\n key={`separator-${index}`}\n className={styles.breadcrumbSeparator}\n aria-hidden=\"true\"\n >\n /{/* <ChevronRightSvg width={16} height={16} /> */}\n </li>,\n item,\n ];\n });\n\n return (\n <nav className={cx(styles.breadcrumb, className)} aria-label=\"Breadcrumb\">\n <ol className={styles.breadcrumbList}>{breadcrumbsWithSeparators}</ol>\n </nav>\n );\n};\n\nexport type {\n BreadcrumbNavigationItem,\n BreadcrumbNode,\n BreadcrumbMenuItem,\n BreadcrumbMenuConfig,\n BreadcrumbMenuLabels,\n} from './types.js';\n"],"mappings":";;;;;;;AAgBA,IAAa,KAAwB,MAA8B;CACjE,IAAM,EAAE,SAAM,kBAAe,WAAQ,EAAE,EAAE,iBAAc,GACjD,IAAiC,EAAE;AAEzC,GAAgB,KACd,kBAAC,MAAD;EAAe,WAAW;YACxB,kBAAC,GAAD;GAAM,IAAI,EAAK;GAAI,WAAW;GAAiB,cAAY;aACzD,kBAAC,GAAD;IAAgB,OAAO;IAAI,QAAQ;IAAI,WAAW;IAAmB,CAAA;GAChE,CAAA;EACJ,EAJG,OAIH,CACN;AAED,MAAK,IAAM,KAAQ,EACjB,GAAgB,KACd,kBAAC,MAAD;EAAkB,WAAW;YAC3B,kBAAC,GAAD;GACE,MAAM,EAAK;GACX,MAAM,EAAK;GACX,WAAW,EAAK,QAAQ,aAAa,EAAK,KAAK;GAC/C,mBAAmB,EAAK,QAAQ,qBAAqB;GACrD,iBAAiB,EAAK,QAAQ,mBAAmB;GACjD,YAAY,EAAK,QAAQ,cAAc;GACvC,mBAAmB,EAAK,QAAQ,qBAAqB;GACrD,CAAA;EACC,EAVI,EAAK,GAUT,CACN;CAGH,IAAM,IAA4B,EAAgB,SAAS,GAAM,MAC3D,MAAU,IACL,CAAC,EAAK,GAER,CACL,kBAAC,MAAD;EAEE,WAAW;EACX,eAAY;YACb;EAEI,EALE,aAAa,IAKf,EACL,EACD,CACD;AAEF,QACE,kBAAC,OAAD;EAAK,WAAW,EAAG,GAAmB,EAAU;EAAE,cAAW;YAC3D,kBAAC,MAAD;GAAI,WAAW;aAAwB;GAA+B,CAAA;EAClE,CAAA"}
|
package/lib/esm/index.js
CHANGED
|
@@ -1,39 +1,38 @@
|
|
|
1
|
-
import { THEME_KEY as ee, ThemeProvider as te, useTheme as
|
|
2
|
-
import { cx as
|
|
3
|
-
import { VisuallyHidden as
|
|
4
|
-
import { containerQueries as
|
|
5
|
-
import { colors as
|
|
6
|
-
import { firstChildSprinkles as
|
|
7
|
-
import { opacity as
|
|
8
|
-
import { colors as
|
|
1
|
+
import { THEME_KEY as ee, ThemeProvider as te, useTheme as e } from "./theme/ThemeProvider.js";
|
|
2
|
+
import { cx as t, onlyDefinedStyles as n } from "./theme/tools.js";
|
|
3
|
+
import { VisuallyHidden as r } from "./theme/VisuallyHidden.js";
|
|
4
|
+
import { containerQueries as i } from "./theme/containerQueries.js";
|
|
5
|
+
import { colors as a, spacing as o, vars as s } from "./theme/themeContract.js";
|
|
6
|
+
import { firstChildSprinkles as c, hoverSprinkles as l, sprinkles as u } from "./theme/sprinkles.css.js";
|
|
7
|
+
import { opacity as d, screens as f, spacing as p } from "./theme/common.js";
|
|
8
|
+
import { colors as m } from "./theme/colors.js";
|
|
9
9
|
import "./theme/index.js";
|
|
10
|
-
import { Badge as
|
|
11
|
-
import { Button as
|
|
12
|
-
import { LinkButton as
|
|
13
|
-
import { Input as
|
|
14
|
-
import { Label as
|
|
15
|
-
import { Checkbox as
|
|
16
|
-
import { ErrorMessage as
|
|
17
|
-
import { FormattedDate as
|
|
18
|
-
import { IconMenuButton as
|
|
19
|
-
import { Overlay as
|
|
20
|
-
import { Modal as
|
|
21
|
-
import { Textarea as
|
|
22
|
-
import { Card as
|
|
23
|
-
import { BreadcrumbNavigation as
|
|
24
|
-
import { FormActions as
|
|
25
|
-
import { CheckboxField as
|
|
26
|
-
import { FormError as
|
|
27
|
-
import { FormField as
|
|
28
|
-
import { Form as
|
|
29
|
-
import { FormErrorBanner as
|
|
30
|
-
import { FormGroup as
|
|
31
|
-
import { HighlightCode as
|
|
32
|
-
import { LazyMarkdownRenderer as
|
|
33
|
-
import { MarkdownRenderer as
|
|
34
|
-
import { markdownFontSizeVar as
|
|
35
|
-
import { EmptyState as
|
|
36
|
-
import { ProfileDropdown as G } from "./atomic/molecules/profile_dropdown/ProfileDropdown.js";
|
|
10
|
+
import { Badge as h } from "./atomic/atoms/badge/Badge.js";
|
|
11
|
+
import { Button as g } from "./atomic/atoms/button/Button.js";
|
|
12
|
+
import { LinkButton as _ } from "./atomic/atoms/button/LinkButton.js";
|
|
13
|
+
import { Input as v } from "./atomic/atoms/input/Input.js";
|
|
14
|
+
import { Label as y } from "./atomic/atoms/label/Label.js";
|
|
15
|
+
import { Checkbox as b } from "./atomic/atoms/checkbox/Checkbox.js";
|
|
16
|
+
import { ErrorMessage as x } from "./atomic/atoms/error_message/ErrorMessage.js";
|
|
17
|
+
import { FormattedDate as S } from "./atomic/atoms/formatted-date/FormattedDate.js";
|
|
18
|
+
import { IconMenuButton as C } from "./atomic/atoms/icon-button/IconMenuButton.js";
|
|
19
|
+
import { Overlay as w } from "./atomic/atoms/overlay/Overlay.js";
|
|
20
|
+
import { Modal as T } from "./atomic/atoms/modal/Modal.js";
|
|
21
|
+
import { Textarea as E } from "./atomic/atoms/textarea/Textarea.js";
|
|
22
|
+
import { Card as D } from "./atomic/molecules/card/Card.js";
|
|
23
|
+
import { BreadcrumbNavigation as O } from "./atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.js";
|
|
24
|
+
import { FormActions as k } from "./atomic/molecules/form-actions/FormActions.js";
|
|
25
|
+
import { CheckboxField as A } from "./atomic/molecules/checkbox_field/CheckboxField.js";
|
|
26
|
+
import { FormError as j } from "./atomic/molecules/form_error/FormError.js";
|
|
27
|
+
import { FormField as M } from "./atomic/molecules/form_field/FormField.js";
|
|
28
|
+
import { Form as N } from "./atomic/molecules/form/Form.js";
|
|
29
|
+
import { FormErrorBanner as P } from "./atomic/molecules/form/FormErrorBanner.js";
|
|
30
|
+
import { FormGroup as F } from "./atomic/molecules/form/FormGroup.js";
|
|
31
|
+
import { HighlightCode as I } from "./atomic/molecules/highlight/HighlightCode.js";
|
|
32
|
+
import { LazyMarkdownRenderer as L } from "./atomic/molecules/markdown/LazyMarkdownRenderer.js";
|
|
33
|
+
import { MarkdownRenderer as R } from "./atomic/molecules/markdown/MarkdownRenderer.js";
|
|
34
|
+
import { markdownFontSizeVar as z, markdownLinkColorVar as B, markdownLinkDisabledColorVar as V, markdownLinkHoverColorVar as H, markdownLinkIconColorVar as U, markdownTextColorVar as W } from "./atomic/molecules/markdown/markdownVars.css.js";
|
|
35
|
+
import { EmptyState as G } from "./atomic/molecules/empty-state/EmptyState.js";
|
|
37
36
|
import { Tabs as K } from "./atomic/molecules/tabs/Tabs.js";
|
|
38
37
|
import { ToastViewport as q } from "./atomic/molecules/toast/ToastViewport.js";
|
|
39
38
|
import { ToastProvider as J, useToast as Y } from "./atomic/molecules/toast/ToastProvider.js";
|
|
@@ -41,72 +40,72 @@ import { useLoginForm as X } from "./atomic/organisms/login_form/useLoginForm.js
|
|
|
41
40
|
import { LoginForm as Z } from "./atomic/organisms/login_form/LoginForm.js";
|
|
42
41
|
import { SidebarContainer as Q } from "./atomic/organisms/sidebar/SidebarContainer.js";
|
|
43
42
|
import "./atomic/organisms/sidebar/Sidebar.js";
|
|
44
|
-
import { ChevronLeftIcon as
|
|
45
|
-
import { NavigationSidebar as
|
|
46
|
-
import { AuthLayout as
|
|
47
|
-
import { BackofficePageHeader as
|
|
48
|
-
import { PageContainer as
|
|
49
|
-
import { DetailPage as
|
|
50
|
-
import { BillingUsageLineChart as
|
|
51
|
-
import { DataTable as
|
|
52
|
-
import { ContentLayout as
|
|
53
|
-
import { PageShell as
|
|
54
|
-
import { AppShell as
|
|
55
|
-
import { OrganizationLayout as
|
|
56
|
-
import { SettingsLayout as
|
|
57
|
-
import { SplitViewLayout as
|
|
58
|
-
import { sanitizeAgentAnswer as
|
|
59
|
-
import { AgentMarkdownCard as
|
|
60
|
-
import { SimpleSelect as
|
|
61
|
-
import { RefetchNeededBanner as
|
|
62
|
-
import { TabsContentLayout as
|
|
63
|
-
import { InfoTile as
|
|
64
|
-
import { VirtualizedConnectionTable as
|
|
65
|
-
import { CopyableText as
|
|
66
|
-
import { BackofficeIdBadge as
|
|
67
|
-
import { EnvironmentBadge as
|
|
68
|
-
import { Skeleton as
|
|
69
|
-
import { Spinner as
|
|
70
|
-
import { StatusBadge as
|
|
71
|
-
import { Tag as
|
|
72
|
-
import { BackofficeDetailLayout as
|
|
73
|
-
import { BackofficeEmptyState as
|
|
74
|
-
import { BackofficeFilterDrawer as
|
|
75
|
-
import { BackofficeFilterField as
|
|
76
|
-
import { BackofficeFiltersBar as
|
|
77
|
-
import { BackofficeFormSection as
|
|
78
|
-
import { ConfirmDialog as
|
|
79
|
-
import { BackofficeJsonViewer as
|
|
80
|
-
import { LazyBackofficeJsonViewer as
|
|
81
|
-
import { BackofficeKeyValueList as
|
|
82
|
-
import { BackofficeLoadMore as
|
|
83
|
-
import { BackofficeRelationsMenu as
|
|
84
|
-
import { BackofficeTableSkeleton as
|
|
85
|
-
import { BackofficeTableToolbar as
|
|
86
|
-
import { BackofficeTabs as
|
|
87
|
-
import { BulkActionsBar as
|
|
88
|
-
import { FilterChipRow as
|
|
89
|
-
import { GlobalSearchInput as
|
|
90
|
-
import { InlineBanner as
|
|
91
|
-
import { SidebarNavItem as
|
|
92
|
-
import { SidebarNavSection as
|
|
93
|
-
import { BackofficeSidebarProfileMenu as
|
|
94
|
-
import { TableToolbar as
|
|
95
|
-
import { AuditTimeline as
|
|
96
|
-
import { BackofficeDataTable as
|
|
97
|
-
import { BackofficeVirtualizedConnectionTable as
|
|
98
|
-
import { EntityHeader as
|
|
99
|
-
import { DetailPageTemplate as
|
|
100
|
-
import { ListPageTemplate as
|
|
101
|
-
import { AdminTopbar as
|
|
102
|
-
import { AdminShellLayout as
|
|
103
|
-
import { adminThemeClass as
|
|
104
|
-
import { AdminThemeProvider as
|
|
105
|
-
import { FALLBACK_REFERENCE as
|
|
106
|
-
import { denseTableClass as
|
|
107
|
-
import { WrapperPage as
|
|
108
|
-
import { ChevronDownIcon as
|
|
109
|
-
import { ShortcutHint as
|
|
110
|
-
import { SidebarCollapseToggle as
|
|
111
|
-
import { AdminSidebar as
|
|
112
|
-
export {
|
|
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 { BackofficePageHeader as he } from "./backoffice/molecules/backoffice_page_header/BackofficePageHeader.js";
|
|
47
|
+
import { PageContainer as ge } from "./atomic/templates/page-container/PageContainer.js";
|
|
48
|
+
import { DetailPage as _e, DetailPageContent as ve } from "./atomic/templates/detail-page/DetailPage.js";
|
|
49
|
+
import { BillingUsageLineChart as ye } from "./components/charts/BillingUsageLineChart.js";
|
|
50
|
+
import { DataTable as be } from "./components/data-table/DataTable.js";
|
|
51
|
+
import { ContentLayout as xe } from "./components/layout/ContentLayout.js";
|
|
52
|
+
import { PageShell as Se } from "./components/layout/PageShell.js";
|
|
53
|
+
import { AppShell as $ } from "./components/layout/AppShell.js";
|
|
54
|
+
import { OrganizationLayout as Ce } from "./components/organization_layout/OrganizationLayout.js";
|
|
55
|
+
import { SettingsLayout as we } from "./components/layout/SettingsLayout.js";
|
|
56
|
+
import { SplitViewLayout as Te } from "./components/layout/SplitViewLayout.js";
|
|
57
|
+
import { sanitizeAgentAnswer as Ee, sanitizeAgentMarkdown as De } from "./shared/agentText.js";
|
|
58
|
+
import { AgentMarkdownCard as Oe } from "./components/agent/AgentMarkdownCard.js";
|
|
59
|
+
import { SimpleSelect as ke } from "./components/select/SimpleSelect.js";
|
|
60
|
+
import { RefetchNeededBanner as Ae } from "./components/subscriptions/RefetchNeededBanner.js";
|
|
61
|
+
import { TabsContentLayout as je } from "./components/layout/TabsContentLayout.js";
|
|
62
|
+
import { InfoTile as Me } from "./components/tile/InfoTile.js";
|
|
63
|
+
import { VirtualizedConnectionTable as Ne } from "./components/data-table/VirtualizedConnectionTable.js";
|
|
64
|
+
import { CopyableText as Pe } from "./backoffice/atoms/copyable_text/CopyableText.js";
|
|
65
|
+
import { BackofficeIdBadge as Fe } from "./backoffice/atoms/backoffice_id_badge/BackofficeIdBadge.js";
|
|
66
|
+
import { EnvironmentBadge as Ie } from "./backoffice/atoms/environment_badge/EnvironmentBadge.js";
|
|
67
|
+
import { Skeleton as Le } from "./backoffice/atoms/skeleton/Skeleton.js";
|
|
68
|
+
import { Spinner as Re } from "./backoffice/atoms/spinner/Spinner.js";
|
|
69
|
+
import { StatusBadge as ze } from "./backoffice/atoms/status_badge/StatusBadge.js";
|
|
70
|
+
import { Tag as Be } from "./backoffice/atoms/tag/Tag.js";
|
|
71
|
+
import { BackofficeDetailLayout as Ve } from "./backoffice/molecules/backoffice_detail_layout/BackofficeDetailLayout.js";
|
|
72
|
+
import { BackofficeEmptyState as He } from "./backoffice/molecules/backoffice_empty_state/BackofficeEmptyState.js";
|
|
73
|
+
import { BackofficeFilterDrawer as Ue } from "./backoffice/molecules/backoffice_filter_drawer/BackofficeFilterDrawer.js";
|
|
74
|
+
import { BackofficeFilterField as We } from "./backoffice/molecules/backoffice_filter_field/BackofficeFilterField.js";
|
|
75
|
+
import { BackofficeFiltersBar as Ge } from "./backoffice/molecules/backoffice_filters_bar/BackofficeFiltersBar.js";
|
|
76
|
+
import { BackofficeFormSection as Ke } from "./backoffice/molecules/backoffice_form_section/BackofficeFormSection.js";
|
|
77
|
+
import { ConfirmDialog as qe } from "./backoffice/molecules/confirm_dialog/ConfirmDialog.js";
|
|
78
|
+
import { BackofficeJsonViewer as Je } from "./backoffice/molecules/backoffice_json_viewer/BackofficeJsonViewer.js";
|
|
79
|
+
import { LazyBackofficeJsonViewer as Ye } from "./backoffice/molecules/backoffice_json_viewer/LazyBackofficeJsonViewer.js";
|
|
80
|
+
import { BackofficeKeyValueList as Xe } from "./backoffice/molecules/backoffice_key_value_list/BackofficeKeyValueList.js";
|
|
81
|
+
import { BackofficeLoadMore as Ze } from "./backoffice/molecules/backoffice_load_more/BackofficeLoadMore.js";
|
|
82
|
+
import { BackofficeRelationsMenu as Qe } from "./backoffice/molecules/backoffice_relations_menu/BackofficeRelationsMenu.js";
|
|
83
|
+
import { BackofficeTableSkeleton as $e } from "./backoffice/molecules/backoffice_table_skeleton/BackofficeTableSkeleton.js";
|
|
84
|
+
import { BackofficeTableToolbar as et } from "./backoffice/molecules/backoffice_table_toolbar/BackofficeTableToolbar.js";
|
|
85
|
+
import { BackofficeTabs as tt } from "./backoffice/molecules/backoffice_tabs/BackofficeTabs.js";
|
|
86
|
+
import { BulkActionsBar as nt } from "./backoffice/molecules/bulk_actions_bar/BulkActionsBar.js";
|
|
87
|
+
import { FilterChipRow as rt } from "./backoffice/molecules/filter_chip_row/FilterChipRow.js";
|
|
88
|
+
import { GlobalSearchInput as it } from "./backoffice/molecules/global_search_input/GlobalSearchInput.js";
|
|
89
|
+
import { InlineBanner as at } from "./backoffice/molecules/inline_banner/InlineBanner.js";
|
|
90
|
+
import { SidebarNavItem as ot } from "./backoffice/molecules/sidebar_nav_item/SidebarNavItem.js";
|
|
91
|
+
import { SidebarNavSection as st } from "./backoffice/molecules/sidebar_nav_section/SidebarNavSection.js";
|
|
92
|
+
import { BackofficeSidebarProfileMenu as ct } from "./backoffice/molecules/sidebar_profile_menu/BackofficeSidebarProfileMenu.js";
|
|
93
|
+
import { TableToolbar as lt } from "./backoffice/molecules/table_toolbar/TableToolbar.js";
|
|
94
|
+
import { AuditTimeline as ut } from "./backoffice/organisms/audit_timeline/AuditTimeline.js";
|
|
95
|
+
import { BackofficeDataTable as dt } from "./backoffice/organisms/backoffice_data_table/BackofficeDataTable.js";
|
|
96
|
+
import { BackofficeVirtualizedConnectionTable as ft } from "./backoffice/organisms/backoffice_virtualized_connection_table/BackofficeVirtualizedConnectionTable.js";
|
|
97
|
+
import { EntityHeader as pt } from "./backoffice/organisms/entity_header/EntityHeader.js";
|
|
98
|
+
import { DetailPageTemplate as mt } from "./backoffice/templates/detail_page_template/DetailPageTemplate.js";
|
|
99
|
+
import { ListPageTemplate as ht } from "./backoffice/templates/list_page_template/ListPageTemplate.js";
|
|
100
|
+
import { AdminTopbar as gt } from "./admin/organisms/admin_topbar/AdminTopbar.js";
|
|
101
|
+
import { AdminShellLayout as _t } from "./admin/templates/admin_shell_layout/AdminShellLayout.js";
|
|
102
|
+
import { adminThemeClass as vt } from "./admin/theme/adminTheme.css.js";
|
|
103
|
+
import { AdminThemeProvider as yt } from "./admin/theme/AdminThemeProvider.js";
|
|
104
|
+
import { FALLBACK_REFERENCE as bt, formatNullableCurrency as xt, formatNullableNumber as St, formatNullableString as Ct, formatStringList as wt } from "./shared/agentJobRequestFormatting.js";
|
|
105
|
+
import { denseTableClass as Tt } from "./shared/backofficeTableDensity.css.js";
|
|
106
|
+
import { WrapperPage as Et } from "./pages/WrapperPage.js";
|
|
107
|
+
import { ChevronDownIcon as Dt } from "./svg/ChevronDownIcon.js";
|
|
108
|
+
import { ShortcutHint as Ot } from "./backoffice/atoms/shortcut_hint/ShortcutHint.js";
|
|
109
|
+
import { SidebarCollapseToggle as kt } from "./backoffice/molecules/sidebar_collapse_toggle/SidebarCollapseToggle.js";
|
|
110
|
+
import { AdminSidebar as At } from "./admin/organisms/admin_sidebar/AdminSidebar.js";
|
|
111
|
+
export { _t as AdminShellLayout, At as AdminSidebar, yt as AdminThemeProvider, gt as AdminTopbar, Oe as AgentMarkdownCard, $ as AppShell, ut as AuditTimeline, me as AuthLayout, dt as BackofficeDataTable, Ve as BackofficeDetailLayout, He as BackofficeEmptyState, Ue as BackofficeFilterDrawer, We as BackofficeFilterField, Ge as BackofficeFiltersBar, Ke as BackofficeFormSection, Fe as BackofficeIdBadge, Je as BackofficeJsonViewer, Xe as BackofficeKeyValueList, Ze as BackofficeLoadMore, he as BackofficePageHeader, Qe as BackofficeRelationsMenu, ct as BackofficeSidebarProfileMenu, $e as BackofficeTableSkeleton, et as BackofficeTableToolbar, tt as BackofficeTabs, ft as BackofficeVirtualizedConnectionTable, h as Badge, ye as BillingUsageLineChart, O as BreadcrumbNavigation, nt as BulkActionsBar, g as Button, D as Card, b as Checkbox, A as CheckboxField, Dt as ChevronDownIcon, ne as ChevronLeftIcon, re as ChevronRightIcon, qe as ConfirmDialog, xe as ContentLayout, Pe as CopyableText, be as DataTable, _e as DetailPage, ve as DetailPageContent, mt as DetailPageTemplate, ie as DocumentationIcon, G as EmptyState, pt as EntityHeader, Ie as EnvironmentBadge, x as ErrorMessage, bt as FALLBACK_REFERENCE, rt as FilterChipRow, N as Form, k as FormActions, j as FormError, P as FormErrorBanner, M as FormField, F as FormGroup, S as FormattedDate, it as GlobalSearchInput, I as HighlightCode, ae as HomeIcon, C as IconMenuButton, Me as InfoTile, oe as InitiativesIcon, at as InlineBanner, v as Input, y as Label, Ye as LazyBackofficeJsonViewer, L as LazyMarkdownRenderer, _ as LinkButton, ht as ListPageTemplate, Z as LoginForm, R as MarkdownRenderer, T as Modal, pe as NavigationSidebar, Ce as OrganizationLayout, w as Overlay, ge as PageContainer, Se as PageShell, se as PlusIcon, ce as ProjectsIcon, Ae as RefetchNeededBanner, le as SearchIcon, ue as SettingsIcon, we as SettingsLayout, Ot as ShortcutHint, Q as Sidebar, kt as SidebarCollapseToggle, Q as SidebarContainer, ot as SidebarNavItem, st as SidebarNavSection, ke as SimpleSelect, Le as Skeleton, Re as Spinner, Te as SplitViewLayout, ze as StatusBadge, ee as THEME_KEY, lt as TableToolbar, K as Tabs, je as TabsContentLayout, Be as Tag, de as TasksIcon, fe as TeamIcon, E as Textarea, te as ThemeProvider, J as ToastProvider, q as ToastViewport, Ne as VirtualizedConnectionTable, r as VisuallyHidden, Et as WrapperPage, vt as adminThemeClass, a as colors, i as containerQueries, t as cx, Tt as denseTableClass, c as firstChildSprinkles, xt as formatNullableCurrency, St as formatNullableNumber, Ct as formatNullableString, wt as formatStringList, l as hoverSprinkles, z as markdownFontSizeVar, B as markdownLinkColorVar, V as markdownLinkDisabledColorVar, H as markdownLinkHoverColorVar, U as markdownLinkIconColorVar, W as markdownTextColorVar, n as onlyDefinedStyles, d as opacity, Ee as sanitizeAgentAnswer, De as sanitizeAgentMarkdown, f as screens, o as spacing, u as sprinkles, m as themeColorValues, p as themeSpacingValues, X as useLoginForm, e as useTheme, Y as useToast, s as vars };
|