@netu-si/netu-react-dsf-components 1.0.13 → 1.0.14

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.
@@ -10,6 +10,7 @@ export interface DSFBackLinkProps {
10
10
  onBackClick?: () => void;
11
11
  label?: string;
12
12
  href?: string;
13
+ id?: string;
13
14
  }
14
15
  /**
15
16
  * Use the back link component to help users go back to the previous page in a multi-page transaction.
@@ -18,7 +19,7 @@ export interface DSFBackLinkProps {
18
19
  * - https://gov-cy.github.io/govcy-design-system-docs/components/back_link
19
20
  */
20
21
  declare const DSFBackLink: {
21
- ({ label, href, onBackClick, linkComponent: Link }: DSFBackLinkProps): React.JSX.Element;
22
+ ({ id, label, href, onBackClick, linkComponent: Link }: DSFBackLinkProps): React.JSX.Element;
22
23
  displayName: string;
23
24
  };
24
25
  export default DSFBackLink;
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  import '../../resources/css/dsf.main.min.css';
3
3
  import '../../resources/css/custom.css';
4
4
  export interface DSFCookiesV3Props {
5
+ id?: string;
5
6
  cookiesDescription: React.ReactNode;
6
7
  cookiesTitle: string;
7
8
  cookiesAcceptText: string;
@@ -10,7 +11,7 @@ export interface DSFCookiesV3Props {
10
11
  cookiesAdjustHandler?: () => void;
11
12
  }
12
13
  declare const DSFCookies: {
13
- ({ cookiesDescription, cookiesTitle, cookiesAcceptText, cookiesRejectText, cookiesAcceptRejectHandler, cookiesAdjustHandler, }: DSFCookiesV3Props): React.JSX.Element;
14
+ ({ id, cookiesDescription, cookiesTitle, cookiesAcceptText, cookiesRejectText, cookiesAcceptRejectHandler, cookiesAdjustHandler, }: DSFCookiesV3Props): React.JSX.Element;
14
15
  displayName: string;
15
16
  };
16
17
  export default DSFCookies;