@trackunit/react-modal 2.4.1-alpha-7bd3cf90b54.0 → 2.4.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-modal",
3
- "version": "2.4.1-alpha-7bd3cf90b54.0",
3
+ "version": "2.4.4",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -8,12 +8,12 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "@floating-ui/react": "^0.26.25",
11
- "@trackunit/react-components": "2.5.1-alpha-7bd3cf90b54.0",
12
- "@trackunit/css-class-variance-utilities": "1.14.1-alpha-7bd3cf90b54.0",
13
- "@trackunit/shared-utils": "1.16.1-alpha-7bd3cf90b54.0",
11
+ "@trackunit/react-components": "2.5.4",
12
+ "@trackunit/css-class-variance-utilities": "1.14.1",
13
+ "@trackunit/shared-utils": "1.16.1",
14
14
  "@floating-ui/react-dom": "2.1.2",
15
- "@trackunit/react-core-contexts-api": "1.18.1-alpha-7bd3cf90b54.0",
16
- "@trackunit/i18n-library-translation": "2.3.1-alpha-7bd3cf90b54.0"
15
+ "@trackunit/react-core-contexts-api": "1.18.1",
16
+ "@trackunit/i18n-library-translation": "2.3.1"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "@tanstack/react-router": "^1.114.29",
@@ -60,11 +60,11 @@ type FloatingUiProps = {
60
60
  };
61
61
  export type UseModalReturnValue = Omit<UseOverlayDismissibleReturn, "ref"> & {
62
62
  /**
63
- * The ref for the modal (RefObject or RefCallback).
63
+ * The ref for the modal (RefObject or RefCallback). Provided by `useModal()` hook.
64
64
  */
65
65
  ref: Ref<HTMLDivElement>;
66
66
  /**
67
- * The floating UI properties for the modal.
67
+ * The floating UI properties for the modal. Provided by `useModal()` hook.
68
68
  */
69
69
  floatingUi: FloatingUiProps;
70
70
  /**