@jsenv/navi 0.2.1 → 0.3.1

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/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ import "./src/navi_css_vars.js";
2
+
1
3
  // actions
2
4
  export { createAction, rerunActions, updateActions } from "./src/actions.js";
3
5
  export { useRunOnMount } from "./src/components/action_execution/use_run_on_mount.js";
@@ -24,7 +26,7 @@ export { useDocumentState } from "./src/browser_integration/document_state_signa
24
26
  export { useDocumentUrl } from "./src/browser_integration/document_url_signal.js";
25
27
  export { defineRoutes, setBaseUrl, useRouteStatus } from "./src/route/route.js";
26
28
 
27
- // UI
29
+ // Components
28
30
  export { ActionRenderer } from "./src/components/action_renderer.jsx";
29
31
  export { Details } from "./src/components/details/details.jsx";
30
32
  export { SummaryMarker } from "./src/components/details/summary_marker.jsx";
@@ -75,7 +77,6 @@ export { useCellsAndColumns } from "./src/components/table/use_cells_and_columns
75
77
  export { Tab, TabList } from "./src/components/tablist/tablist.jsx";
76
78
  export { UITransition } from "./src/components/ui_transition.jsx";
77
79
  export { useSignalSync } from "./src/components/use_signal_sync.js";
78
-
79
80
  // Text and icons
80
81
  export { LinkWithIcon } from "./src/components/link/link_with_icon.jsx";
81
82
  export { FontSizedSvg } from "./src/components/svg/font_sized_svg.jsx";
@@ -83,6 +84,8 @@ export { IconAndText } from "./src/components/svg/icon_and_text.jsx";
83
84
  export { SVGMaskOverlay } from "./src/components/svg/svg_mask_overlay.jsx";
84
85
  export { Overflow } from "./src/components/text/overflow.jsx";
85
86
  export { TextAndCount } from "./src/components/text/text_and_count.jsx";
87
+ // Callout, dialogs, ...
88
+ export { openCallout } from "./src/components/callout/callout.js";
86
89
 
87
90
  // Validation
88
91
  export { createUniqueValueConstraint } from "./src/validation/constraints/create_unique_value_constraint.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/navi",
3
- "version": "0.2.1",
3
+ "version": "0.3.1",
4
4
  "description": "Library of components including navigation to create frontend applications",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,7 +13,8 @@
13
13
  "email": "dmaillard06@gmail.com"
14
14
  },
15
15
  "sideEffects": [
16
- "./dist/jsenv_navi.js"
16
+ "./dist/jsenv_navi.js",
17
+ "./src/navi_css_vars.js"
17
18
  ],
18
19
  "type": "module",
19
20
  "exports": {
@@ -33,7 +34,7 @@
33
34
  "prepublishOnly": "npm run build"
34
35
  },
35
36
  "dependencies": {
36
- "@jsenv/dom": "0.4.0",
37
+ "@jsenv/dom": "0.5.0",
37
38
  "@jsenv/humanize": "1.6.0"
38
39
  },
39
40
  "devDependencies": {