@sequencing/design-system 1.0.67 → 1.0.68
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/dist/documentation.json +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Organisms/Header/Header.d.ts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/components/Organisms/Header/Header.d.ts +5 -1
- package/package.json +1 -1
package/dist/documentation.json
CHANGED
|
@@ -2806,14 +2806,14 @@
|
|
|
2806
2806
|
},
|
|
2807
2807
|
"onRequestHomePage": {
|
|
2808
2808
|
"defaultValue": null,
|
|
2809
|
-
"description": "Called when a user clicks on the site's logo, provide url argument to callback.\nTypically used to make soft navigation in your framework (React, NextJs, etc).\ne.g. for NextJs `onRequestHomePage={(url) => router.push(url)}`\nurl argument is the `homePageUrl` prop value
|
|
2809
|
+
"description": "Called when a user clicks on the site's logo, provide url argument to callback.\nTypically used to make soft navigation in your framework (React, NextJs, etc).\ne.g. for NextJs `onRequestHomePage={(url) => router.push(url)}`\nurl argument is the `homePageUrl` prop value.\nNOTE: When ``preventHardNavigation`` is disabled, it has no effect and the user will be hard redirected\nto ``homePageUrl``.",
|
|
2810
2810
|
"name": "onRequestHomePage",
|
|
2811
2811
|
"required": false,
|
|
2812
2812
|
"type": "((homePageUrl: string) => void)"
|
|
2813
2813
|
},
|
|
2814
2814
|
"onRequestMyAccount": {
|
|
2815
2815
|
"defaultValue": null,
|
|
2816
|
-
"description": "Called when an authenticated user clicks on the My Account link inside the main right HeaderChip.\nThe url parameter is ``myAccountUrl``",
|
|
2816
|
+
"description": "Called when an authenticated user clicks on the My Account link inside the main right HeaderChip.\nThe url parameter is ``myAccountUrl``.\nNOTE: When ``preventHardNavigation`` is disabled, it has no effect and the user will be hard redirected\nto ``myAccountUrl``.",
|
|
2817
2817
|
"name": "onRequestMyAccount",
|
|
2818
2818
|
"required": false,
|
|
2819
2819
|
"type": "((myAccountUrl: string) => void)"
|