@sequencing/design-system 1.0.67 → 1.0.69

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.
@@ -42,11 +42,15 @@ export interface HeaderProps {
42
42
  * Typically used to make soft navigation in your framework (React, NextJs, etc).
43
43
  * e.g. for NextJs `onRequestHomePage={(url) => router.push(url)}`
44
44
  * url argument is the `homePageUrl` prop value.
45
+ * NOTE: When ``preventHardNavigation`` is disabled, it has no effect and the user will be hard redirected
46
+ * to ``homePageUrl``.
45
47
  */
46
48
  onRequestHomePage?: (homePageUrl: string) => void;
47
49
  /**
48
50
  * Called when an authenticated user clicks on the My Account link inside the main right HeaderChip.
49
- * The url parameter is ``myAccountUrl``
51
+ * The url parameter is ``myAccountUrl``.
52
+ * NOTE: When ``preventHardNavigation`` is disabled, it has no effect and the user will be hard redirected
53
+ * to ``myAccountUrl``.
50
54
  */
51
55
  onRequestMyAccount?: (myAccountUrl: string) => void;
52
56
  /** Called when an anonymous user clicks on the Sign In button inside the auxiliary links section */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sequencing/design-system",
3
- "version": "1.0.67",
3
+ "version": "1.0.69",
4
4
  "description": "Sequencing Design System",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\"",