@plumile/ui 0.1.76 → 0.1.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/README.md +38 -0
  2. package/lib/esm/{BackofficeJsonViewerAsync-Dp6ZKmmh.js → BackofficeJsonViewerAsync-CHmTBo9y.js} +3 -3
  3. package/lib/esm/{BackofficeJsonViewerAsync-Dp6ZKmmh.js.map → BackofficeJsonViewerAsync-CHmTBo9y.js.map} +1 -1
  4. package/lib/esm/{MarkdownRenderer-BchAuwsI.js → MarkdownRenderer-Cc-CjEOF.js} +3 -3
  5. package/lib/esm/MarkdownRenderer-Cc-CjEOF.js.map +1 -0
  6. package/lib/esm/{src-DbOGCrwx.js → src-DhyZ4Z7d.js} +1187 -859
  7. package/lib/esm/src-DhyZ4Z7d.js.map +1 -0
  8. package/lib/esm/style.css +1 -1
  9. package/lib/esm/ui.js +5 -5
  10. package/lib/types/admin/organisms/admin_sidebar/adminSidebar.css.d.ts.map +1 -1
  11. package/lib/types/admin/theme/AdminThemeProvider.d.ts +2 -2
  12. package/lib/types/admin/theme/AdminThemeProvider.d.ts.map +1 -1
  13. package/lib/types/atomic/atoms/relative-time-text/RelativeTimeText.d.ts +14 -0
  14. package/lib/types/atomic/atoms/relative-time-text/RelativeTimeText.d.ts.map +1 -0
  15. package/lib/types/backoffice/layout/backofficeLayoutTokens.d.ts.map +1 -1
  16. package/lib/types/backoffice/molecules/backoffice_detail_layout/backofficeDetailLayout.css.d.ts.map +1 -1
  17. package/lib/types/backoffice/molecules/backoffice_table_toolbar/backofficeTableToolbar.css.d.ts.map +1 -1
  18. package/lib/types/backoffice/molecules/backoffice_tabs/backofficeTabs.css.d.ts.map +1 -1
  19. package/lib/types/backoffice/molecules/sidebar_collapse_toggle/sidebarCollapseToggle.css.d.ts.map +1 -1
  20. package/lib/types/backoffice/molecules/sidebar_nav_item/sidebarNavItem.css.d.ts.map +1 -1
  21. package/lib/types/backoffice/molecules/sidebar_nav_section/sidebarNavSection.css.d.ts.map +1 -1
  22. package/lib/types/backoffice/molecules/sidebar_profile_menu/sidebarProfileMenu.css.d.ts.map +1 -1
  23. package/lib/types/backoffice/organisms/backoffice_data_table/BackofficeDataTable.d.ts +1 -1
  24. package/lib/types/backoffice/organisms/backoffice_data_table/BackofficeDataTable.d.ts.map +1 -1
  25. package/lib/types/backoffice/organisms/backoffice_virtualized_connection_table/BackofficeVirtualizedConnectionTable.d.ts +1 -1
  26. package/lib/types/backoffice/organisms/backoffice_virtualized_connection_table/BackofficeVirtualizedConnectionTable.d.ts.map +1 -1
  27. package/lib/types/components/charts/TimeSeriesLineChart.d.ts +20 -0
  28. package/lib/types/components/charts/TimeSeriesLineChart.d.ts.map +1 -0
  29. package/lib/types/components/charts/{billingUsageLineChart.css.d.ts → timeSeriesLineChart.css.d.ts} +1 -1
  30. package/lib/types/components/charts/timeSeriesLineChart.css.d.ts.map +1 -0
  31. package/lib/types/components/layout/PanelShell.d.ts +11 -0
  32. package/lib/types/components/layout/PanelShell.d.ts.map +1 -0
  33. package/lib/types/components/layout/SidebarPageLayout.d.ts +15 -0
  34. package/lib/types/components/layout/SidebarPageLayout.d.ts.map +1 -0
  35. package/lib/types/components/layout/ToolbarRow.css.d.ts +2 -0
  36. package/lib/types/components/layout/ToolbarRow.css.d.ts.map +1 -0
  37. package/lib/types/components/layout/ToolbarRow.d.ts +8 -0
  38. package/lib/types/components/layout/ToolbarRow.d.ts.map +1 -0
  39. package/lib/types/index.d.ts +21 -2
  40. package/lib/types/index.d.ts.map +1 -1
  41. package/lib/types/theme/ThemeProvider.d.ts.map +1 -1
  42. package/package.json +2 -82
  43. package/lib/esm/MarkdownRenderer-BchAuwsI.js.map +0 -1
  44. package/lib/esm/src-DbOGCrwx.js.map +0 -1
  45. package/lib/types/components/charts/BillingUsageLineChart.d.ts +0 -19
  46. package/lib/types/components/charts/BillingUsageLineChart.d.ts.map +0 -1
  47. package/lib/types/components/charts/billingUsageLineChart.css.d.ts.map +0 -1
  48. package/lib/types/components/organization_layout/OrganizationLayout.d.ts +0 -15
  49. package/lib/types/components/organization_layout/OrganizationLayout.d.ts.map +0 -1
package/README.md CHANGED
@@ -1,3 +1,41 @@
1
1
  # @plumile/ui
2
2
 
3
3
  Shared React UI primitives and theme for Plumile applications.
4
+
5
+ ## Role
6
+
7
+ `@plumile/ui` is the single visual component package for Plumile applications.
8
+
9
+ It contains:
10
+
11
+ - theme foundations and tokens
12
+ - primitives and form controls
13
+ - generic layouts and page shells
14
+ - data-heavy and admin-oriented visual widgets
15
+ - admin shell components
16
+
17
+ It does not contain:
18
+
19
+ - domain-specific product components
20
+ - application business logic
21
+ - GraphQL or routing orchestration
22
+
23
+ ## Namespaces
24
+
25
+ - `atomic/*`
26
+ small primitives and low-level UI composition
27
+ - `components/*`
28
+ generic cross-application layouts and reusable UI
29
+ - `backoffice/*`
30
+ specialized admin/data-heavy visual widgets
31
+ - `admin/*`
32
+ high-level admin shell components
33
+
34
+ ## Placement rule
35
+
36
+ Add a component to `@plumile/ui` only if it is:
37
+
38
+ - visual
39
+ - generic
40
+ - reusable across multiple products
41
+ - not tied to a business domain
@@ -1,10 +1,10 @@
1
1
  import "./HighlightCode-C-xPmbUz.js";
2
- import { xt as e } from "./src-DbOGCrwx.js";
2
+ import { jt as e } from "./src-DhyZ4Z7d.js";
3
3
  import "./MarkdownCodeBlock-x4jjzmDF.js";
4
- import "./MarkdownRenderer-BchAuwsI.js";
4
+ import "./MarkdownRenderer-Cc-CjEOF.js";
5
5
  //#region src/backoffice/molecules/backoffice_json_viewer/BackofficeJsonViewerAsync.tsx
6
6
  var t = e;
7
7
  //#endregion
8
8
  export { t as default };
9
9
 
10
- //# sourceMappingURL=BackofficeJsonViewerAsync-Dp6ZKmmh.js.map
10
+ //# sourceMappingURL=BackofficeJsonViewerAsync-CHmTBo9y.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"BackofficeJsonViewerAsync-Dp6ZKmmh.js","names":[],"sources":["../../src/backoffice/molecules/backoffice_json_viewer/BackofficeJsonViewerAsync.tsx"],"sourcesContent":["import { BackofficeJsonViewer } from './BackofficeJsonViewer.js';\n\nexport default BackofficeJsonViewer;\n"],"mappings":";;;;;AAEA,IAAA,IAAe"}
1
+ {"version":3,"file":"BackofficeJsonViewerAsync-CHmTBo9y.js","names":[],"sources":["../../src/backoffice/molecules/backoffice_json_viewer/BackofficeJsonViewerAsync.tsx"],"sourcesContent":["import { BackofficeJsonViewer } from './BackofficeJsonViewer.js';\n\nexport default BackofficeJsonViewer;\n"],"mappings":";;;;;AAEA,IAAA,IAAe"}
@@ -4,7 +4,7 @@ import * as n from "react";
4
4
  import { Children as r, Fragment as i, createElement as a, isValidElement as o, useDeferredValue as s, useMemo as c } from "react";
5
5
  import { jsx as l, jsxs as u } from "react/jsx-runtime";
6
6
  import { createRuntimeFn as d } from "@vanilla-extract/recipes/createRuntimeFn";
7
- //#region node_modules/markdown-to-jsx/dist/entities.browser.js
7
+ //#region ../../node_modules/markdown-to-jsx/dist/entities.browser.js
8
8
  var f;
9
9
  function p(e) {
10
10
  if (!f) if (typeof document < "u") f = document.createElement("textarea");
@@ -15,7 +15,7 @@ function p(e) {
15
15
  return n === t ? void 0 : n;
16
16
  }
17
17
  //#endregion
18
- //#region node_modules/markdown-to-jsx/dist/index.js
18
+ //#region ../../node_modules/markdown-to-jsx/dist/index.js
19
19
  var m = 32, h = 9, g = 13, _ = 10, v = 96, y = 126, b = 91, x = 94, S = 62, C = 35, w = 36, T = 37, E = 45, D = 61, O = 92, k = 42, A = 95, j = 60, M = 64, N = 93, P = 33, F = 38, I = 58, L = 70, R = 102, ee = 104, te = 119, z = 116, ne = 112, re = 115, ie = 160, ae = 12, oe = 44, se = 59, ce = 63, le = 46, ue = 47, de = 39, fe = 34, pe = 43, B = 124, V = 123, me = 125, he = 40, ge = 41, _e = 30, ve = 31, H = 48, U = 57, W = 65, G = 90, K = 97, q = 122, ye = 128, be = 32, J = {
20
20
  blockQuote: 0,
21
21
  breakLine: 1,
@@ -3817,4 +3817,4 @@ var xr = "_104091w0 txvbqb9io txvbqbai6 txvbqbb9o txvbqbfzx", Sr = "_104091w1 tx
3817
3817
  //#endregion
3818
3818
  export { gi as n, Li as t };
3819
3819
 
3820
- //# sourceMappingURL=MarkdownRenderer-BchAuwsI.js.map
3820
+ //# sourceMappingURL=MarkdownRenderer-Cc-CjEOF.js.map