@plumile/ui 0.1.77 → 0.1.79
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/{BackofficeJsonViewerAsync-BjFvd7IR.js → BackofficeJsonViewerAsync-DjokCwz8.js} +3 -3
- package/lib/esm/{BackofficeJsonViewerAsync-BjFvd7IR.js.map → BackofficeJsonViewerAsync-DjokCwz8.js.map} +1 -1
- package/lib/esm/{MarkdownRenderer-BchAuwsI.js → MarkdownRenderer-Cc-CjEOF.js} +3 -3
- package/lib/esm/MarkdownRenderer-Cc-CjEOF.js.map +1 -0
- package/lib/esm/{src-DI1_-ttD.js → src-DNBomOI9.js} +1040 -902
- package/lib/esm/src-DNBomOI9.js.map +1 -0
- package/lib/esm/style.css +1 -1
- package/lib/esm/ui.js +4 -4
- package/lib/types/components/charts/TimeSeriesLineChart.d.ts +20 -0
- package/lib/types/components/charts/TimeSeriesLineChart.d.ts.map +1 -0
- package/lib/types/components/charts/{billingUsageLineChart.css.d.ts → timeSeriesLineChart.css.d.ts} +1 -1
- package/lib/types/components/charts/timeSeriesLineChart.css.d.ts.map +1 -0
- package/lib/types/components/dashboard/activity_card/ActivityCard.css.d.ts +6 -0
- package/lib/types/components/dashboard/activity_card/ActivityCard.css.d.ts.map +1 -0
- package/lib/types/components/dashboard/activity_card/ActivityCard.d.ts +14 -0
- package/lib/types/components/dashboard/activity_card/ActivityCard.d.ts.map +1 -0
- package/lib/types/components/dashboard/dashboard_grid/DashboardGrid.css.d.ts +4 -0
- package/lib/types/components/dashboard/dashboard_grid/DashboardGrid.css.d.ts.map +1 -0
- package/lib/types/components/dashboard/dashboard_grid/DashboardGrid.d.ts +15 -0
- package/lib/types/components/dashboard/dashboard_grid/DashboardGrid.d.ts.map +1 -0
- package/lib/types/components/dashboard/metric_card/MetricCard.css.d.ts +7 -0
- package/lib/types/components/dashboard/metric_card/MetricCard.css.d.ts.map +1 -0
- package/lib/types/components/dashboard/metric_card/MetricCard.d.ts +12 -0
- package/lib/types/components/dashboard/metric_card/MetricCard.d.ts.map +1 -0
- package/lib/types/components/dashboard/page_hero/PageHero.css.d.ts +7 -0
- package/lib/types/components/dashboard/page_hero/PageHero.css.d.ts.map +1 -0
- package/lib/types/components/dashboard/page_hero/PageHero.d.ts +11 -0
- package/lib/types/components/dashboard/page_hero/PageHero.d.ts.map +1 -0
- package/lib/types/components/dashboard/section_nav/SectionNav.css.d.ts +4 -0
- package/lib/types/components/dashboard/section_nav/SectionNav.css.d.ts.map +1 -0
- package/lib/types/components/dashboard/section_nav/SectionNav.d.ts +15 -0
- package/lib/types/components/dashboard/section_nav/SectionNav.d.ts.map +1 -0
- package/lib/types/components/dashboard/selectable_card/SelectableCard.css.d.ts +7 -0
- package/lib/types/components/dashboard/selectable_card/SelectableCard.css.d.ts.map +1 -0
- package/lib/types/components/dashboard/selectable_card/SelectableCard.d.ts +13 -0
- package/lib/types/components/dashboard/selectable_card/SelectableCard.d.ts.map +1 -0
- package/lib/types/components/dashboard/status_summary_panel/StatusSummaryPanel.css.d.ts +4 -0
- package/lib/types/components/dashboard/status_summary_panel/StatusSummaryPanel.css.d.ts.map +1 -0
- package/lib/types/components/dashboard/status_summary_panel/StatusSummaryPanel.d.ts +16 -0
- package/lib/types/components/dashboard/status_summary_panel/StatusSummaryPanel.d.ts.map +1 -0
- package/lib/types/components/layout/SidebarPageLayout.d.ts +15 -0
- package/lib/types/components/layout/SidebarPageLayout.d.ts.map +1 -0
- package/lib/types/index.d.ts +9 -2
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/theme/ThemeProvider.d.ts.map +1 -1
- package/package.json +2 -2
- package/lib/esm/MarkdownRenderer-BchAuwsI.js.map +0 -1
- package/lib/esm/src-DI1_-ttD.js.map +0 -1
- package/lib/types/components/charts/BillingUsageLineChart.d.ts +0 -19
- package/lib/types/components/charts/BillingUsageLineChart.d.ts.map +0 -1
- package/lib/types/components/charts/billingUsageLineChart.css.d.ts.map +0 -1
- package/lib/types/components/organization_layout/OrganizationLayout.d.ts +0 -15
- package/lib/types/components/organization_layout/OrganizationLayout.d.ts.map +0 -1
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { JSX } from 'react';
|
|
2
|
-
export type BillingUsageLineChartPoint = {
|
|
3
|
-
x: string;
|
|
4
|
-
y: number;
|
|
5
|
-
};
|
|
6
|
-
export type BillingUsageLineChartSerie<Category extends string> = {
|
|
7
|
-
id: Category;
|
|
8
|
-
data: readonly BillingUsageLineChartPoint[];
|
|
9
|
-
};
|
|
10
|
-
export type BillingUsageLineChartProps<Category extends string> = {
|
|
11
|
-
series: readonly BillingUsageLineChartSerie<Category>[];
|
|
12
|
-
categoryOrder: readonly Category[];
|
|
13
|
-
categoryColorById: Readonly<Record<Category, string>>;
|
|
14
|
-
categoryLabel: (category: Category) => string;
|
|
15
|
-
formatValue: (value: number) => string;
|
|
16
|
-
ariaLabel: string;
|
|
17
|
-
};
|
|
18
|
-
export declare const BillingUsageLineChart: <Category extends string>(props: BillingUsageLineChartProps<Category>) => JSX.Element;
|
|
19
|
-
//# sourceMappingURL=BillingUsageLineChart.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BillingUsageLineChart.d.ts","sourceRoot":"","sources":["../../../../src/components/charts/BillingUsageLineChart.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAKjC,MAAM,MAAM,0BAA0B,GAAG;IACvC,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX,CAAC;AAEF,MAAM,MAAM,0BAA0B,CAAC,QAAQ,SAAS,MAAM,IAAI;IAChE,EAAE,EAAE,QAAQ,CAAC;IACb,IAAI,EAAE,SAAS,0BAA0B,EAAE,CAAC;CAC7C,CAAC;AAUF,MAAM,MAAM,0BAA0B,CAAC,QAAQ,SAAS,MAAM,IAAI;IAChE,MAAM,EAAE,SAAS,0BAA0B,CAAC,QAAQ,CAAC,EAAE,CAAC;IACxD,aAAa,EAAE,SAAS,QAAQ,EAAE,CAAC;IACnC,iBAAiB,EAAE,QAAQ,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC,CAAC;IACtD,aAAa,EAAE,CAAC,QAAQ,EAAE,QAAQ,KAAK,MAAM,CAAC;IAC9C,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IACvC,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAsDF,eAAO,MAAM,qBAAqB,GAAI,QAAQ,SAAS,MAAM,EAC3D,OAAO,0BAA0B,CAAC,QAAQ,CAAC,KAC1C,GAAG,CAAC,OAoMN,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"billingUsageLineChart.css.d.ts","sourceRoot":"","sources":["../../../../src/components/charts/billingUsageLineChart.css.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,cAAc,QAmBzB,CAAC;AAEH,eAAO,MAAM,OAAO,QAYlB,CAAC;AAEH,eAAO,MAAM,WAAW,QAKtB,CAAC;AAEH,eAAO,MAAM,UAAU,QAOrB,CAAC;AAEH,eAAO,MAAM,eAAe,QAI1B,CAAC;AAEH,eAAO,MAAM,aAAa,QAMxB,CAAC"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { type JSX, type ReactNode } from 'react';
|
|
2
|
-
import { type BreadcrumbItem, type PageShellActions } from '../layout/PageShell.js';
|
|
3
|
-
type Props = {
|
|
4
|
-
children: ReactNode;
|
|
5
|
-
sidebar: ReactNode;
|
|
6
|
-
breadcrumbItems?: BreadcrumbItem[];
|
|
7
|
-
breadcrumb?: ReactNode;
|
|
8
|
-
actions?: PageShellActions;
|
|
9
|
-
sidePanel?: ReactNode;
|
|
10
|
-
contentClassName?: string;
|
|
11
|
-
};
|
|
12
|
-
declare const OrganizationLayout: ({ actions, breadcrumb, breadcrumbItems, children, contentClassName, sidebar, sidePanel, }: Props) => JSX.Element;
|
|
13
|
-
export { OrganizationLayout };
|
|
14
|
-
export default OrganizationLayout;
|
|
15
|
-
//# sourceMappingURL=OrganizationLayout.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"OrganizationLayout.d.ts","sourceRoot":"","sources":["../../../../src/components/organization_layout/OrganizationLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,GAAG,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAEjD,OAAO,EAEL,KAAK,cAAc,EACnB,KAAK,gBAAgB,EACtB,MAAM,wBAAwB,CAAC;AAEhC,KAAK,KAAK,GAAG;IACX,QAAQ,EAAE,SAAS,CAAC;IACpB,OAAO,EAAE,SAAS,CAAC;IACnB,eAAe,CAAC,EAAE,cAAc,EAAE,CAAC;IACnC,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,OAAO,CAAC,EAAE,gBAAgB,CAAC;IAC3B,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,QAAA,MAAM,kBAAkB,GAAI,2FAQzB,KAAK,KAAG,GAAG,CAAC,OAad,CAAC;AAEF,OAAO,EAAE,kBAAkB,EAAE,CAAC;AAC9B,eAAe,kBAAkB,CAAC"}
|