@plumile/ui 0.1.63 → 0.1.65
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/empty-state/EmptyState.css.js +8 -0
- package/lib/esm/atomic/molecules/empty-state/EmptyState.css.js.map +1 -0
- package/lib/esm/atomic/molecules/empty-state/EmptyState.js +35 -0
- package/lib/esm/atomic/molecules/empty-state/EmptyState.js.map +1 -0
- package/lib/esm/atomic/molecules/markdown/components/MarkdownFootnoteReference.css.js +0 -1
- package/lib/esm/atomic/molecules/markdown/components/MarkdownLink.css.js +1 -0
- package/lib/esm/atomic/molecules/profile_dropdown/ProfileDropdown.js +119 -0
- package/lib/esm/atomic/molecules/profile_dropdown/ProfileDropdown.js.map +1 -0
- package/lib/esm/atomic/molecules/profile_dropdown/profileDropdown.css.js +8 -0
- package/lib/esm/atomic/molecules/profile_dropdown/profileDropdown.css.js.map +1 -0
- package/lib/esm/atomic/organisms/sidebar/NavigationSidebar.js +191 -0
- package/lib/esm/atomic/organisms/sidebar/NavigationSidebar.js.map +1 -0
- package/lib/esm/atomic/organisms/sidebar/navigationSidebar.css.js +49 -0
- package/lib/esm/atomic/organisms/sidebar/navigationSidebar.css.js.map +1 -0
- package/lib/esm/components/agent/AgentMarkdownCard.css.js +8 -0
- package/lib/esm/components/agent/AgentMarkdownCard.css.js.map +1 -0
- package/lib/esm/components/agent/AgentMarkdownCard.js +19 -0
- package/lib/esm/components/agent/AgentMarkdownCard.js.map +1 -0
- package/lib/esm/components/organization_layout/OrganizationLayout.js +16 -0
- package/lib/esm/components/organization_layout/OrganizationLayout.js.map +1 -0
- package/lib/esm/index.js +91 -84
- package/lib/esm/style.css +1 -1
- package/lib/types/atomic/molecules/empty-state/EmptyState.css.d.ts +6 -0
- package/lib/types/atomic/molecules/empty-state/EmptyState.css.d.ts.map +1 -0
- package/lib/types/atomic/molecules/empty-state/EmptyState.d.ts +11 -0
- package/lib/types/atomic/molecules/empty-state/EmptyState.d.ts.map +1 -0
- package/lib/types/atomic/molecules/profile_dropdown/ProfileDropdown.d.ts +24 -0
- package/lib/types/atomic/molecules/profile_dropdown/ProfileDropdown.d.ts.map +1 -0
- package/lib/types/atomic/molecules/profile_dropdown/profileDropdown.css.d.ts +14 -0
- package/lib/types/atomic/molecules/profile_dropdown/profileDropdown.css.d.ts.map +1 -0
- package/lib/types/atomic/organisms/sidebar/NavigationSidebar.d.ts +37 -0
- package/lib/types/atomic/organisms/sidebar/NavigationSidebar.d.ts.map +1 -0
- package/lib/types/atomic/organisms/sidebar/navigationSidebar.css.d.ts +70 -0
- package/lib/types/atomic/organisms/sidebar/navigationSidebar.css.d.ts.map +1 -0
- package/lib/types/components/agent/AgentMarkdownCard.css.d.ts +4 -0
- package/lib/types/components/agent/AgentMarkdownCard.css.d.ts.map +1 -0
- package/lib/types/components/agent/AgentMarkdownCard.d.ts +9 -0
- package/lib/types/components/agent/AgentMarkdownCard.d.ts.map +1 -0
- package/lib/types/components/organization_layout/OrganizationLayout.d.ts +15 -0
- package/lib/types/components/organization_layout/OrganizationLayout.d.ts.map +1 -0
- package/lib/types/index.d.ts +7 -0
- package/lib/types/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/i18n/locales/en/ui.json +7 -0
- package/src/i18n/locales/fr/ui.json +7 -0
package/lib/esm/index.js
CHANGED
|
@@ -14,89 +14,96 @@ import { Textarea as d } from "./atomic/atoms/textarea/Textarea.js";
|
|
|
14
14
|
import { BreadcrumbNavigation as f } from "./atomic/molecules/breadcrumb_navigation/BreadcrumbNavigation.js";
|
|
15
15
|
import { Card as p } from "./atomic/molecules/card/Card.js";
|
|
16
16
|
import { CheckboxField as m } from "./atomic/molecules/checkbox_field/CheckboxField.js";
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import { colors as w
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
17
|
+
import { EmptyState as h } from "./atomic/molecules/empty-state/EmptyState.js";
|
|
18
|
+
import { Form as g } from "./atomic/molecules/form/Form.js";
|
|
19
|
+
import { FormErrorBanner as _ } from "./atomic/molecules/form/FormErrorBanner.js";
|
|
20
|
+
import { FormGroup as v } from "./atomic/molecules/form/FormGroup.js";
|
|
21
|
+
import { FormActions as y } from "./atomic/molecules/form-actions/FormActions.js";
|
|
22
|
+
import { FormError as b } from "./atomic/molecules/form_error/FormError.js";
|
|
23
|
+
import { FormField as x } from "./atomic/molecules/form_field/FormField.js";
|
|
24
|
+
import { HighlightCode as S } from "./atomic/molecules/highlight/HighlightCode.js";
|
|
25
|
+
import { LazyMarkdownRenderer as C } from "./atomic/molecules/markdown/LazyMarkdownRenderer.js";
|
|
26
|
+
import { colors as w } from "./theme/colors.js";
|
|
27
|
+
import { colors as T, spacing as E, vars as D } from "./theme/themeContract.js";
|
|
28
|
+
import { MarkdownRenderer as O } from "./atomic/molecules/markdown/MarkdownRenderer.js";
|
|
29
|
+
import { markdownFontSizeVar as k, markdownLinkColorVar as A, markdownLinkDisabledColorVar as j, markdownLinkHoverColorVar as M, markdownLinkIconColorVar as N, markdownTextColorVar as P } from "./atomic/molecules/markdown/markdownVars.css.js";
|
|
30
|
+
import { ProfileDropdown as F } from "./atomic/molecules/profile_dropdown/ProfileDropdown.js";
|
|
31
|
+
import { Tabs as I } from "./atomic/molecules/tabs/Tabs.js";
|
|
32
|
+
import { ToastViewport as L } from "./atomic/molecules/toast/ToastViewport.js";
|
|
33
|
+
import { ToastProvider as R, useToast as z } from "./atomic/molecules/toast/ToastProvider.js";
|
|
34
|
+
import { THEME_KEY as B, ThemeProvider as V, useTheme as H } from "./theme/ThemeProvider.js";
|
|
35
|
+
import { VisuallyHidden as U } from "./theme/VisuallyHidden.js";
|
|
36
|
+
import { containerQueries as W } from "./theme/containerQueries.js";
|
|
37
|
+
import { firstChildSprinkles as G, hoverSprinkles as K, sprinkles as q } from "./theme/sprinkles.css.js";
|
|
38
|
+
import { opacity as J, screens as Y, spacing as X } from "./theme/common.js";
|
|
35
39
|
import "./theme/index.js";
|
|
36
|
-
import { useLoginForm as
|
|
37
|
-
import { SidebarContainer as
|
|
40
|
+
import { useLoginForm as Z } from "./atomic/organisms/login_form/useLoginForm.js";
|
|
41
|
+
import { SidebarContainer as Q } from "./atomic/organisms/sidebar/SidebarContainer.js";
|
|
38
42
|
import "./atomic/organisms/sidebar/Sidebar.js";
|
|
39
|
-
import { ChevronLeftIcon as
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
|
|
43
|
+
import { ChevronLeftIcon as ne, ChevronRightIcon as re, DocumentationIcon as ie, HomeIcon as ae, InitiativesIcon as oe, PlusIcon as se, ProjectsIcon as ce, SearchIcon as le, SettingsIcon as ue, TasksIcon as de, TeamIcon as fe } from "./atomic/organisms/sidebar/icons.js";
|
|
44
|
+
import { NavigationSidebar as pe } from "./atomic/organisms/sidebar/NavigationSidebar.js";
|
|
45
|
+
import { AuthLayout as me } from "./atomic/templates/auth_layout/AuthLayout.js";
|
|
46
|
+
import { BillingUsageLineChart as he } from "./components/charts/BillingUsageLineChart.js";
|
|
47
|
+
import { DataTable as ge } from "./components/data-table/DataTable.js";
|
|
48
|
+
import { ContentLayout as _e } from "./components/layout/ContentLayout.js";
|
|
49
|
+
import { PageShell as ve } from "./components/layout/PageShell.js";
|
|
50
|
+
import { OrganizationLayout as ye } from "./components/organization_layout/OrganizationLayout.js";
|
|
51
|
+
import { sanitizeAgentAnswer as be, sanitizeAgentMarkdown as xe } from "./shared/agentText.js";
|
|
52
|
+
import { AgentMarkdownCard as Se } from "./components/agent/AgentMarkdownCard.js";
|
|
53
|
+
import { SimpleSelect as $ } from "./components/select/SimpleSelect.js";
|
|
54
|
+
import { RefetchNeededBanner as Ce } from "./components/subscriptions/RefetchNeededBanner.js";
|
|
55
|
+
import { TabsContentLayout as we } from "./components/layout/TabsContentLayout.js";
|
|
56
|
+
import { InfoTile as Te } from "./components/tile/InfoTile.js";
|
|
57
|
+
import { VirtualizedConnectionTable as Ee } from "./components/data-table/VirtualizedConnectionTable.js";
|
|
58
|
+
import { CopyableText as De } from "./backoffice/atoms/copyable_text/CopyableText.js";
|
|
59
|
+
import { BackofficeIdBadge as Oe } from "./backoffice/atoms/backoffice_id_badge/BackofficeIdBadge.js";
|
|
60
|
+
import { EnvironmentBadge as ke } from "./backoffice/atoms/environment_badge/EnvironmentBadge.js";
|
|
61
|
+
import { ShortcutHint as Ae } from "./backoffice/atoms/shortcut_hint/ShortcutHint.js";
|
|
62
|
+
import { Skeleton as je } from "./backoffice/atoms/skeleton/Skeleton.js";
|
|
63
|
+
import { Spinner as Me } from "./backoffice/atoms/spinner/Spinner.js";
|
|
64
|
+
import { StatusBadge as Ne } from "./backoffice/atoms/status_badge/StatusBadge.js";
|
|
65
|
+
import { Tag as Pe } from "./backoffice/atoms/tag/Tag.js";
|
|
66
|
+
import { BackofficeDetailLayout as Fe } from "./backoffice/molecules/backoffice_detail_layout/BackofficeDetailLayout.js";
|
|
67
|
+
import { BackofficeEmptyState as Ie } from "./backoffice/molecules/backoffice_empty_state/BackofficeEmptyState.js";
|
|
68
|
+
import { BackofficeFilterDrawer as Le } from "./backoffice/molecules/backoffice_filter_drawer/BackofficeFilterDrawer.js";
|
|
69
|
+
import { BackofficeFilterField as Re } from "./backoffice/molecules/backoffice_filter_field/BackofficeFilterField.js";
|
|
70
|
+
import { BackofficeFiltersBar as ze } from "./backoffice/molecules/backoffice_filters_bar/BackofficeFiltersBar.js";
|
|
71
|
+
import { BackofficeFormSection as Be } from "./backoffice/molecules/backoffice_form_section/BackofficeFormSection.js";
|
|
72
|
+
import { ConfirmDialog as Ve } from "./backoffice/molecules/confirm_dialog/ConfirmDialog.js";
|
|
73
|
+
import { BackofficeJsonViewer as He } from "./backoffice/molecules/backoffice_json_viewer/BackofficeJsonViewer.js";
|
|
74
|
+
import { BackofficeKeyValueList as Ue } from "./backoffice/molecules/backoffice_key_value_list/BackofficeKeyValueList.js";
|
|
75
|
+
import { BackofficeLoadMore as We } from "./backoffice/molecules/backoffice_load_more/BackofficeLoadMore.js";
|
|
76
|
+
import { BackofficePageHeader as Ge } from "./backoffice/molecules/backoffice_page_header/BackofficePageHeader.js";
|
|
77
|
+
import { BackofficeRelationsMenu as Ke } from "./backoffice/molecules/backoffice_relations_menu/BackofficeRelationsMenu.js";
|
|
78
|
+
import { BackofficeTableSkeleton as qe } from "./backoffice/molecules/backoffice_table_skeleton/BackofficeTableSkeleton.js";
|
|
79
|
+
import { BackofficeTableToolbar as Je } from "./backoffice/molecules/backoffice_table_toolbar/BackofficeTableToolbar.js";
|
|
80
|
+
import { BackofficeTabs as Ye } from "./backoffice/molecules/backoffice_tabs/BackofficeTabs.js";
|
|
81
|
+
import { BulkActionsBar as Xe } from "./backoffice/molecules/bulk_actions_bar/BulkActionsBar.js";
|
|
82
|
+
import { FilterChipRow as Ze } from "./backoffice/molecules/filter_chip_row/FilterChipRow.js";
|
|
83
|
+
import { GlobalSearchInput as Qe } from "./backoffice/molecules/global_search_input/GlobalSearchInput.js";
|
|
84
|
+
import { InlineBanner as $e } from "./backoffice/molecules/inline_banner/InlineBanner.js";
|
|
85
|
+
import { SidebarNavItem as et } from "./backoffice/molecules/sidebar_nav_item/SidebarNavItem.js";
|
|
86
|
+
import { SidebarNavSection as tt } from "./backoffice/molecules/sidebar_nav_section/SidebarNavSection.js";
|
|
87
|
+
import { BackofficeSidebarProfileMenu as nt } from "./backoffice/molecules/sidebar_profile_menu/BackofficeSidebarProfileMenu.js";
|
|
88
|
+
import { SidebarCollapseToggle as rt } from "./backoffice/molecules/sidebar_collapse_toggle/SidebarCollapseToggle.js";
|
|
89
|
+
import { TableToolbar as it } from "./backoffice/molecules/table_toolbar/TableToolbar.js";
|
|
90
|
+
import { BackofficeAppShell as at } from "./backoffice/organisms/backoffice_app_shell/BackofficeAppShell.js";
|
|
91
|
+
import { AuditTimeline as ot } from "./backoffice/organisms/audit_timeline/AuditTimeline.js";
|
|
92
|
+
import { BackofficeDataTable as st } from "./backoffice/organisms/backoffice_data_table/BackofficeDataTable.js";
|
|
93
|
+
import { BackofficeSidebar as ct } from "./backoffice/organisms/backoffice_sidebar/BackofficeSidebar.js";
|
|
94
|
+
import { BackofficeTopbar as lt } from "./backoffice/organisms/backoffice_topbar/BackofficeTopbar.js";
|
|
95
|
+
import { BackofficeVirtualizedConnectionTable as ut } from "./backoffice/organisms/backoffice_virtualized_connection_table/BackofficeVirtualizedConnectionTable.js";
|
|
96
|
+
import { EntityHeader as dt } from "./backoffice/organisms/entity_header/EntityHeader.js";
|
|
97
|
+
import { BackofficeShellTemplate as ft } from "./backoffice/templates/backoffice_shell_template/BackofficeShellTemplate.js";
|
|
98
|
+
import { DetailPageTemplate as pt } from "./backoffice/templates/detail_page_template/DetailPageTemplate.js";
|
|
99
|
+
import { ListPageTemplate as mt } from "./backoffice/templates/list_page_template/ListPageTemplate.js";
|
|
100
|
+
import { SettingsTemplate as ht } from "./backoffice/templates/settings_template/SettingsTemplate.js";
|
|
101
|
+
import { SplitViewTemplate as gt } from "./backoffice/templates/split_view_template/SplitViewTemplate.js";
|
|
102
|
+
import { backofficeThemeClass as _t } from "./backoffice/theme/backofficeTheme.css.js";
|
|
103
|
+
import { BackofficeThemeProvider as vt } from "./backoffice/theme/BackofficeThemeProvider.js";
|
|
104
|
+
import { FALLBACK_REFERENCE as yt, formatNullableCurrency as bt, formatNullableNumber as xt, formatNullableString as St, formatStringList as Ct } from "./shared/agentJobRequestFormatting.js";
|
|
105
|
+
import { denseTableClass as wt } from "./shared/backofficeTableDensity.css.js";
|
|
106
|
+
import { WrapperPage as Tt } from "./pages/WrapperPage.js";
|
|
107
|
+
import { ChevronDownIcon as Et } from "./svg/ChevronDownIcon.js";
|
|
108
|
+
import { LoginForm as Dt } from "./atomic/organisms/login_form/LoginForm.js";
|
|
109
|
+
export { Se as AgentMarkdownCard, ot as AuditTimeline, me as AuthLayout, at as BackofficeAppShell, st as BackofficeDataTable, Fe as BackofficeDetailLayout, Ie as BackofficeEmptyState, Le as BackofficeFilterDrawer, Re as BackofficeFilterField, ze as BackofficeFiltersBar, Be as BackofficeFormSection, Oe as BackofficeIdBadge, He as BackofficeJsonViewer, Ue as BackofficeKeyValueList, We as BackofficeLoadMore, Ge as BackofficePageHeader, Ke as BackofficeRelationsMenu, ft as BackofficeShellTemplate, ct as BackofficeSidebar, nt as BackofficeSidebarProfileMenu, qe as BackofficeTableSkeleton, Je as BackofficeTableToolbar, Ye as BackofficeTabs, vt as BackofficeThemeProvider, lt as BackofficeTopbar, ut as BackofficeVirtualizedConnectionTable, e as Badge, he as BillingUsageLineChart, f as BreadcrumbNavigation, Xe as BulkActionsBar, t as Button, p as Card, a as Checkbox, m as CheckboxField, Et as ChevronDownIcon, ne as ChevronLeftIcon, re as ChevronRightIcon, Ve as ConfirmDialog, _e as ContentLayout, De as CopyableText, ge as DataTable, pt as DetailPageTemplate, ie as DocumentationIcon, h as EmptyState, dt as EntityHeader, ke as EnvironmentBadge, o as ErrorMessage, yt as FALLBACK_REFERENCE, Ze as FilterChipRow, g as Form, y as FormActions, b as FormError, _ as FormErrorBanner, x as FormField, v as FormGroup, s as FormattedDate, Qe as GlobalSearchInput, S as HighlightCode, ae as HomeIcon, c as IconMenuButton, Te as InfoTile, oe as InitiativesIcon, $e as InlineBanner, r as Input, i as Label, C as LazyMarkdownRenderer, n as LinkButton, mt as ListPageTemplate, Dt as LoginForm, O as MarkdownRenderer, u as Modal, pe as NavigationSidebar, ye as OrganizationLayout, l as Overlay, ve as PageShell, se as PlusIcon, F as ProfileDropdown, ce as ProjectsIcon, Ce as RefetchNeededBanner, le as SearchIcon, ue as SettingsIcon, ht as SettingsTemplate, Ae as ShortcutHint, Q as Sidebar, rt as SidebarCollapseToggle, Q as SidebarContainer, et as SidebarNavItem, tt as SidebarNavSection, $ as SimpleSelect, je as Skeleton, Me as Spinner, gt as SplitViewTemplate, Ne as StatusBadge, B as THEME_KEY, it as TableToolbar, I as Tabs, we as TabsContentLayout, Pe as Tag, de as TasksIcon, fe as TeamIcon, d as Textarea, V as ThemeProvider, R as ToastProvider, L as ToastViewport, Ee as VirtualizedConnectionTable, U as VisuallyHidden, Tt as WrapperPage, _t as backofficeThemeClass, T as colors, W as containerQueries, ee as cx, wt as denseTableClass, G as firstChildSprinkles, bt as formatNullableCurrency, xt as formatNullableNumber, St as formatNullableString, Ct as formatStringList, K as hoverSprinkles, k as markdownFontSizeVar, A as markdownLinkColorVar, j as markdownLinkDisabledColorVar, M as markdownLinkHoverColorVar, N as markdownLinkIconColorVar, P as markdownTextColorVar, te as onlyDefinedStyles, J as opacity, be as sanitizeAgentAnswer, xe as sanitizeAgentMarkdown, Y as screens, E as spacing, q as sprinkles, w as themeColorValues, X as themeSpacingValues, Z as useLoginForm, H as useTheme, z as useToast, D as vars };
|