@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/dist/index.d.ts CHANGED
@@ -499,15 +499,15 @@ interface HeaderProps {
499
499
  * e.g. for NextJs `onRequestHomePage={(url) => router.push(url)}`
500
500
  * WARNING: Do not change or modify url argument inside your callback, because you will have undocumented behavior
501
501
  * with your navigation. Your goal is only call the navigation method with the url argument.
502
- * Default value is `/`.
503
502
  * Without the `onRequestHomePage` prop, the component will use the default behavior of the anchor tag.
503
+ * Default: `/`.
504
504
  */
505
505
  homePageUrl?: string;
506
506
  /** Displays loading skeleton animation when set to `true` */
507
507
  isLoading?: boolean;
508
- /** The URL of user's account page */
509
- myAccountUrl: string;
510
- /** Specify number of skeleton links to display during loading. Default value is 6 */
508
+ /** The URL of user's account page. Default: ``/account/personal-information`` */
509
+ myAccountUrl?: string;
510
+ /** Specify number of skeleton links to display during loading. Default: 6 */
511
511
  numberOfSkeletonLinks?: number;
512
512
  /** Link clicks callback. Use it together with ``preventHardNavigation``
513
513
  * to support different routers (Next, react-router-dom, etc.).