@sequencing/design-system 1.0.64 → 1.0.66

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.
@@ -22,15 +22,15 @@ export interface HeaderProps {
22
22
  * e.g. for NextJs `onRequestHomePage={(url) => router.push(url)}`
23
23
  * WARNING: Do not change or modify url argument inside your callback, because you will have undocumented behavior
24
24
  * with your navigation. Your goal is only call the navigation method with the url argument.
25
- * Default value is `/`.
26
25
  * Without the `onRequestHomePage` prop, the component will use the default behavior of the anchor tag.
26
+ * Default: `/`.
27
27
  */
28
28
  homePageUrl?: string;
29
29
  /** Displays loading skeleton animation when set to `true` */
30
30
  isLoading?: boolean;
31
- /** The URL of user's account page */
32
- myAccountUrl: string;
33
- /** Specify number of skeleton links to display during loading. Default value is 6 */
31
+ /** The URL of user's account page. Default: ``/account/personal-information`` */
32
+ myAccountUrl?: string;
33
+ /** Specify number of skeleton links to display during loading. Default: 6 */
34
34
  numberOfSkeletonLinks?: number;
35
35
  /** Link clicks callback. Use it together with ``preventHardNavigation``
36
36
  * to support different routers (Next, react-router-dom, etc.).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sequencing/design-system",
3
- "version": "1.0.64",
3
+ "version": "1.0.66",
4
4
  "description": "Sequencing Design System",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\"",