@nice2dev/ui 1.0.24 → 1.0.25

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 (60) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/dist/NiceErrorBoundary-CVybqo3l.js +770 -0
  3. package/dist/NiceErrorBoundary-D0NwBkFl.cjs +1 -0
  4. package/dist/NiceForm-BrBaLUkv.js +5386 -0
  5. package/dist/NiceForm-DoiApS60.cjs +382 -0
  6. package/dist/NiceModal-C582SiK7.cjs +1 -0
  7. package/dist/NiceModal-sFJw1CWm.js +95 -0
  8. package/dist/NiceModuleLifecyclePanel-D22ycAMQ.js +6817 -0
  9. package/dist/NiceModuleLifecyclePanel-shRuDyp3.cjs +1 -0
  10. package/dist/NiceModuleLifecyclePanel.css +1 -1
  11. package/dist/NicePagination-CtyaW_b4.cjs +1 -0
  12. package/dist/NicePagination-hGlKrWYL.js +171 -0
  13. package/dist/NicePinCodeInput-DPUlM3E1.cjs +696 -0
  14. package/dist/NicePinCodeInput-xSuOVhE8.js +13097 -0
  15. package/dist/NiceSavedQueryPanel-DzB0g0ak.cjs +596 -0
  16. package/dist/NiceSavedQueryPanel-Mz4jAsGJ.js +6893 -0
  17. package/dist/NiceTabs-1o8cpB_-.js +1657 -0
  18. package/dist/NiceTabs-B-FDOecP.cjs +1 -0
  19. package/dist/NiceWindow-9zQsi0zF.cjs +1 -0
  20. package/dist/NiceWindow-Dq-xx9cw.js +1592 -0
  21. package/dist/charts-DNQXBPGB.js +4657 -0
  22. package/dist/charts-IP38F-wh.cjs +761 -0
  23. package/dist/charts.cjs +1 -1
  24. package/dist/charts.mjs +1 -1
  25. package/dist/core-C7CI2mWz.js +25248 -0
  26. package/dist/core-CjUAwZ6z.cjs +122 -0
  27. package/dist/data-branching-Bv-f_gZk.cjs +1 -0
  28. package/dist/data-branching-CNi8vtZ1.js +6133 -0
  29. package/dist/data-branching.cjs +1 -1
  30. package/dist/data-branching.mjs +1 -1
  31. package/dist/data.cjs +1 -1
  32. package/dist/data.d.ts +19 -1
  33. package/dist/data.mjs +1 -1
  34. package/dist/devops-ZWKP6vRh.cjs +17 -0
  35. package/dist/devops-draw6Jrm.js +7684 -0
  36. package/dist/devops.cjs +1 -1
  37. package/dist/devops.mjs +1 -1
  38. package/dist/editors.cjs +1 -1
  39. package/dist/editors.mjs +3 -3
  40. package/dist/feedback.cjs +1 -1
  41. package/dist/feedback.mjs +2 -2
  42. package/dist/index-BkLJ4tzy.js +68026 -0
  43. package/dist/index-CwOe80Ws.cjs +5518 -0
  44. package/dist/index.cjs +1 -1
  45. package/dist/index.css +1 -1
  46. package/dist/index.d.ts +104 -1
  47. package/dist/index.mjs +757 -753
  48. package/dist/lazy.cjs +1 -1
  49. package/dist/lazy.mjs +24 -24
  50. package/dist/navigation.cjs +1 -1
  51. package/dist/navigation.d.ts +23 -0
  52. package/dist/navigation.mjs +4 -4
  53. package/dist/no-code-BndAN6hG.cjs +332 -0
  54. package/dist/no-code-DKYzw5If.js +7133 -0
  55. package/dist/no-code.cjs +1 -1
  56. package/dist/no-code.mjs +1 -1
  57. package/dist/overlays.cjs +1 -1
  58. package/dist/overlays.mjs +2 -2
  59. package/dist/style.css +2 -2
  60. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,34 @@
1
+ # [1.0.25] — 2026-06-07
2
+
3
+ ### OmniVerk UX/layout batch (7 items)
4
+
5
+ - **`NiceSidebarNav`** — now **sticky full-height by default** (`sticky`, default
6
+ `true`): pins to the viewport (`100vh`) so the collapse button sits in the
7
+ screen's bottom-left corner. _Default-behavior change_ (pre-prod); pass
8
+ `sticky={false}` to opt out (NiceNavShell does this since it provides its own
9
+ full-height column). **`NiceTopNav`** stays `sticky` by default.
10
+ - **Transparency** — `surfaceOpacity` (0–1, default `1`) on `NiceSidebarNav`,
11
+ `NiceTopNav` and `NiceNavShell` (forwarded to the chrome + body) for
12
+ glass/floating-button backdrops; exposed as `--nice-*-surface-alpha` CSS vars.
13
+ - **`NiceSetupWizard`** — in the `sidebar` (stepper-side) layout the action
14
+ buttons are now a full-width **sticky footer under the body** instead of a
15
+ cramped side column. New **`theme`** prop self-scopes a `NiceThemeProvider` so
16
+ the wizard themes correctly even outside an app-level provider (fixes themes on
17
+ standalone /setup pages).
18
+ - **`NiceDataGrid`** — `stickyHeader` / `stickyFooter` (default `true`): keep the
19
+ column header / aggregate row pinned while scrolling the grid's own content
20
+ (engages only when the grid scrolls internally; each grid owns its scroll
21
+ context, so multi-grid views only stick the one being scrolled). New
22
+ **`autoPagination`**: the grid fills its container height and the page size is
23
+ computed from available height ÷ `rowHeight` (recomputed on resize); the
24
+ page-size control shows as a label instead of a select.
25
+ - **View standard** — typed **`NiceViewKind`** (`form | grid | detail | dashboard
26
+ | content | report | print | mix`) on `NiceViewDefinition`; `NiceViewEditor`
27
+ gains the new kinds + an **Export** control for `report`/`print`/`grid` views.
28
+ New **`exportView()`** (and `viewToHtml`/`resolveExportRows`/`deriveExportColumns`)
29
+ produces PDF (print), CSV, XLSX, DOCX and HTML dep-free (delegating to
30
+ `NiceExport`), with an `onExport` host hook for high-fidelity output.
31
+
1
32
  # [1.0.24] — 2026-06-06
2
33
 
3
34
  ### Added — OmniVerk domain icons (`@nice2dev/icons`)