@netu-si/netu-react-dsf-components 0.0.9 → 0.0.12
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/cjs/components/DSFBackLink/DSFBackLink.d.ts +8 -2
- package/dist/cjs/components/DSFButton/DSFButton.d.ts +6 -2
- package/dist/cjs/components/DSFCookies/DSFCookies.d.ts +25 -0
- package/dist/cjs/components/DSFCookies/index.d.ts +1 -0
- package/dist/cjs/components/DSFDateInput/DSFDateInput.d.ts +28 -3
- package/dist/cjs/components/DSFErrorSummary/DSFErrorSummary.d.ts +10 -2
- package/dist/cjs/components/DSFFooter/DSFFooter.d.ts +4 -2
- package/dist/cjs/components/DSFHeader/DSFHeader.d.ts +3 -1
- package/dist/cjs/components/DSFInputField/DSFInputField.d.ts +12 -2
- package/dist/cjs/components/DSFLoadingBox/DSFLoadingBox.d.ts +8 -2
- package/dist/cjs/components/DSFPage/DSFPage.d.ts +23 -2
- package/dist/cjs/components/DSFPanel/DSFPanel.d.ts +16 -2
- package/dist/cjs/components/DSFSelect/DSFSelect.d.ts +10 -2
- package/dist/cjs/components/DSFTable/DSFTable.d.ts +12 -4
- package/dist/cjs/components/DSFTable/index.d.ts +1 -1
- package/dist/cjs/components/DSFUserSignOut/DSFUserSignOut.d.ts +7 -2
- package/dist/cjs/components/index.d.ts +2 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/DSFBackLink/DSFBackLink.d.ts +8 -2
- package/dist/esm/components/DSFButton/DSFButton.d.ts +6 -2
- package/dist/esm/components/DSFCookies/DSFCookies.d.ts +25 -0
- package/dist/esm/components/DSFCookies/index.d.ts +1 -0
- package/dist/esm/components/DSFDateInput/DSFDateInput.d.ts +28 -3
- package/dist/esm/components/DSFErrorSummary/DSFErrorSummary.d.ts +10 -2
- package/dist/esm/components/DSFFooter/DSFFooter.d.ts +4 -2
- package/dist/esm/components/DSFHeader/DSFHeader.d.ts +3 -1
- package/dist/esm/components/DSFInputField/DSFInputField.d.ts +12 -2
- package/dist/esm/components/DSFLoadingBox/DSFLoadingBox.d.ts +8 -2
- package/dist/esm/components/DSFPage/DSFPage.d.ts +23 -2
- package/dist/esm/components/DSFPanel/DSFPanel.d.ts +16 -2
- package/dist/esm/components/DSFSelect/DSFSelect.d.ts +10 -2
- package/dist/esm/components/DSFTable/DSFTable.d.ts +12 -4
- package/dist/esm/components/DSFTable/index.d.ts +1 -1
- package/dist/esm/components/DSFUserSignOut/DSFUserSignOut.d.ts +7 -2
- package/dist/esm/components/index.d.ts +2 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +156 -31
- package/package.json +1 -1
- package/dist/cjs/assets/index-b6796621.css +0 -16
- package/dist/cjs/components/DSFButton/DSFInputField.d.ts +0 -15
- package/dist/cjs/components/DSFDateInput/Input.d.ts +0 -49
- package/dist/cjs/components/DSFDateInput2/DSFDateInput2.d.ts +0 -56
- package/dist/cjs/components/DSFDateInput2/index.d.ts +0 -1
- package/dist/cjs/components/DSFTextInput/DSFTextInput.d.ts +0 -13
- package/dist/cjs/components/DSFTextInput/index.d.ts +0 -1
- package/dist/cjs/stories/Button.d.ts +0 -29
- package/dist/cjs/stories/Header.d.ts +0 -13
- package/dist/cjs/stories/Page.d.ts +0 -3
- package/dist/cjs/stories/Page.stories.d.ts +0 -13
- package/dist/esm/assets/index-b6796621.css +0 -16
- package/dist/esm/components/DSFButton/DSFInputField.d.ts +0 -15
- package/dist/esm/components/DSFDateInput/Input.d.ts +0 -49
- package/dist/esm/components/DSFDateInput2/DSFDateInput2.d.ts +0 -56
- package/dist/esm/components/DSFDateInput2/index.d.ts +0 -1
- package/dist/esm/components/DSFTextInput/DSFTextInput.d.ts +0 -13
- package/dist/esm/components/DSFTextInput/index.d.ts +0 -1
- package/dist/esm/stories/Button.d.ts +0 -29
- package/dist/esm/stories/Header.d.ts +0 -13
- package/dist/esm/stories/Page.d.ts +0 -3
- package/dist/esm/stories/Page.stories.d.ts +0 -13
- package/dist/types.d.ts +0 -16
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* - https://github.com/netu-si/netu-react-dsf-components/tree/main/src/components/DSFBackLink
|
|
5
5
|
*/
|
|
6
|
-
import
|
|
6
|
+
import React from 'react';
|
|
7
7
|
import '../../resources/css/dsf.main.min.css';
|
|
8
8
|
import { LinkProps } from 'react-router-dom';
|
|
9
9
|
export interface DSFBackLinkProps extends LinkProps {
|
|
@@ -16,5 +16,11 @@ export interface DSFBackLinkProps extends LinkProps {
|
|
|
16
16
|
* - https://animated-adventure-ey7gv1m.pages.github.io/?path=/docs/navigation-dsfbacklink--docs
|
|
17
17
|
* - https://gov-cy.github.io/govcy-design-system-docs/components/back_link
|
|
18
18
|
*/
|
|
19
|
-
declare const DSFBackLink:
|
|
19
|
+
declare const DSFBackLink: {
|
|
20
|
+
({ label, onBackClick, ...props }: DSFBackLinkProps): React.JSX.Element;
|
|
21
|
+
defaultProps: {
|
|
22
|
+
to: string;
|
|
23
|
+
};
|
|
24
|
+
displayName: string;
|
|
25
|
+
};
|
|
20
26
|
export default DSFBackLink;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import '../../resources/css/dsf.main.min.css';
|
|
3
3
|
export interface DSFButtonProps extends React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
|
|
4
4
|
/**
|
|
@@ -10,5 +10,9 @@ export interface DSFButtonProps extends React.DetailedHTMLProps<React.ButtonHTML
|
|
|
10
10
|
*/
|
|
11
11
|
children: React.ReactNode;
|
|
12
12
|
}
|
|
13
|
-
declare const DSFButton:
|
|
13
|
+
declare const DSFButton: {
|
|
14
|
+
({ children, id, type, className, ...props }: DSFButtonProps): React.JSX.Element;
|
|
15
|
+
defaultProps: {};
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
14
18
|
export default DSFButton;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import '../../resources/css/dsf.main.min.css';
|
|
3
|
+
import '../../resources/css/custom.css';
|
|
4
|
+
export interface DSFCookiesProps {
|
|
5
|
+
cookiesDescription: string;
|
|
6
|
+
cookiesMoreUrl: string;
|
|
7
|
+
cookiesMoreText: string;
|
|
8
|
+
cookiesAcceptText: string;
|
|
9
|
+
cookiesAcceptHandler?: () => void;
|
|
10
|
+
hasScroll?: boolean;
|
|
11
|
+
newTab?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const DSFCookies: {
|
|
14
|
+
({ cookiesDescription, cookiesMoreUrl, cookiesMoreText, cookiesAcceptText, cookiesAcceptHandler, hasScroll, newTab, }: DSFCookiesProps): React.JSX.Element;
|
|
15
|
+
defaultProps: {
|
|
16
|
+
cookiesDescription: undefined;
|
|
17
|
+
cookiesMoreUrl: undefined;
|
|
18
|
+
cookiesMoreText: undefined;
|
|
19
|
+
cookiesAcceptText: undefined;
|
|
20
|
+
hasScroll: boolean;
|
|
21
|
+
newTab: boolean;
|
|
22
|
+
};
|
|
23
|
+
displayName: string;
|
|
24
|
+
};
|
|
25
|
+
export default DSFCookies;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './DSFCookies';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import React, { RefObject } from 'react';
|
|
2
|
+
import { UseFormRegisterReturn } from 'react-hook-form';
|
|
1
3
|
import '../../resources/css/dsf.main.min.css';
|
|
2
|
-
import React, { RefObject, FC } from 'react';
|
|
3
4
|
import { DSFInputProps } from '../DSFInput/DSFInput';
|
|
4
|
-
import { UseFormRegisterReturn } from 'react-hook-form';
|
|
5
5
|
interface InputRefObject {
|
|
6
6
|
day: RefObject<HTMLInputElement>;
|
|
7
7
|
month: RefObject<HTMLInputElement>;
|
|
@@ -81,5 +81,30 @@ export interface DSFDateInputProps {
|
|
|
81
81
|
};
|
|
82
82
|
};
|
|
83
83
|
}
|
|
84
|
-
declare const DSFDateInput:
|
|
84
|
+
declare const DSFDateInput: {
|
|
85
|
+
({ register, id, label, hint, errorText, labels, refs, inputProps, inputs, defaultValues, }: DSFDateInputProps): React.JSX.Element;
|
|
86
|
+
displayName: string;
|
|
87
|
+
defaultProps: {
|
|
88
|
+
inputProps: {};
|
|
89
|
+
hint: undefined;
|
|
90
|
+
errorText: undefined;
|
|
91
|
+
labels: {
|
|
92
|
+
day: string;
|
|
93
|
+
month: string;
|
|
94
|
+
year: string;
|
|
95
|
+
};
|
|
96
|
+
defaultValues: {
|
|
97
|
+
day: undefined;
|
|
98
|
+
month: undefined;
|
|
99
|
+
year: undefined;
|
|
100
|
+
};
|
|
101
|
+
inputs: {
|
|
102
|
+
day: undefined;
|
|
103
|
+
month: undefined;
|
|
104
|
+
year: undefined;
|
|
105
|
+
};
|
|
106
|
+
refs: undefined;
|
|
107
|
+
register: undefined;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
85
110
|
export default DSFDateInput;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import '../../resources/css/dsf.main.min.css';
|
|
3
3
|
export interface DSFErrorSummaryProps {
|
|
4
4
|
/** onClick function to scroll the target element into view */
|
|
@@ -12,5 +12,13 @@ export interface DSFErrorSummaryProps {
|
|
|
12
12
|
}[];
|
|
13
13
|
isInfo?: boolean;
|
|
14
14
|
}
|
|
15
|
-
declare const DSFErrorSummary:
|
|
15
|
+
declare const DSFErrorSummary: {
|
|
16
|
+
({ onHandleErrorClick, heading, errors, isInfo, }: DSFErrorSummaryProps): React.JSX.Element;
|
|
17
|
+
defaultProps: {
|
|
18
|
+
errors: never[];
|
|
19
|
+
heading: string;
|
|
20
|
+
onHandleErrorClick: undefined;
|
|
21
|
+
isInfo: undefined;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
16
24
|
export default DSFErrorSummary;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import '../../resources/css/dsf.main.min.css';
|
|
3
2
|
import '../../resources/css/custom.css';
|
|
3
|
+
import '../../resources/css/dsf.main.min.css';
|
|
4
4
|
export interface DSFFooterProps {
|
|
5
5
|
privacyStatementUrl?: string;
|
|
6
6
|
cookiePolicyUrl?: string;
|
|
@@ -10,14 +10,16 @@ export interface DSFFooterProps {
|
|
|
10
10
|
accessibilityStatementText?: string;
|
|
11
11
|
cyprusRepublicText?: string;
|
|
12
12
|
hasScroll?: boolean;
|
|
13
|
+
newTab?: boolean;
|
|
13
14
|
}
|
|
14
15
|
declare const DSFFooter: {
|
|
15
|
-
({ privacyStatementUrl, cookiePolicyUrl, accessibilityStatementUrl, privacyStatementText, cookiePolicyText, accessibilityStatementText, cyprusRepublicText, hasScroll, }: DSFFooterProps): React.JSX.Element;
|
|
16
|
+
({ privacyStatementUrl, cookiePolicyUrl, accessibilityStatementUrl, privacyStatementText, cookiePolicyText, accessibilityStatementText, cyprusRepublicText, hasScroll, newTab, }: DSFFooterProps): React.JSX.Element;
|
|
16
17
|
defaultProps: {
|
|
17
18
|
privacyStatementUrl: undefined;
|
|
18
19
|
cookiePolicyUrl: undefined;
|
|
19
20
|
accessibilityStatementUrl: undefined;
|
|
20
21
|
hasScroll: boolean;
|
|
22
|
+
newTab: boolean;
|
|
21
23
|
};
|
|
22
24
|
displayName: string;
|
|
23
25
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React, { ChangeEvent } from 'react';
|
|
2
2
|
import '../../resources/css/dsf.main.min.css';
|
|
3
|
+
import '../../resources/css/custom.css';
|
|
3
4
|
export type NavMenuItem = {
|
|
4
5
|
label: string;
|
|
5
6
|
href: string;
|
|
@@ -12,9 +13,10 @@ export interface DSFHeaderProps {
|
|
|
12
13
|
logoUrl?: string;
|
|
13
14
|
languageHandler?: (event: ChangeEvent<HTMLSelectElement>) => void;
|
|
14
15
|
defaultValue?: string | null;
|
|
16
|
+
showLogo?: boolean;
|
|
15
17
|
}
|
|
16
18
|
declare const DSFHeader: {
|
|
17
|
-
({ headerTitle, menu, logoUrl, showLang, languageHandler, defaultValue }: DSFHeaderProps): React.JSX.Element;
|
|
19
|
+
({ headerTitle, menu, logoUrl, showLang, languageHandler, defaultValue, showLogo, }: DSFHeaderProps): React.JSX.Element;
|
|
18
20
|
defaultProps: {
|
|
19
21
|
showLang: boolean;
|
|
20
22
|
menu: undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import '../../resources/css/dsf.main.min.css';
|
|
3
3
|
import { DSFInputProps } from '../DSFInput/DSFInput';
|
|
4
4
|
import { UseFormRegisterReturn } from 'react-hook-form';
|
|
@@ -17,5 +17,15 @@ export interface DSFInputFieldProps {
|
|
|
17
17
|
errorId?: string;
|
|
18
18
|
register?: UseFormRegisterReturn;
|
|
19
19
|
}
|
|
20
|
-
declare const DSFInputField:
|
|
20
|
+
declare const DSFInputField: {
|
|
21
|
+
({ meta, label, id, children, hint, inputProps, visualSize, errorId, register, underRadio, ...props }: any): React.JSX.Element;
|
|
22
|
+
defaultProps: {
|
|
23
|
+
hint: undefined;
|
|
24
|
+
errorId: undefined;
|
|
25
|
+
visualSize: undefined;
|
|
26
|
+
inputProps: undefined;
|
|
27
|
+
register: undefined;
|
|
28
|
+
meta: {};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
21
31
|
export default DSFInputField;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import '../../resources/css/dsf.main.min.css';
|
|
3
3
|
export interface DSFLoadingBoxProps {
|
|
4
4
|
loading: boolean;
|
|
@@ -6,5 +6,11 @@ export interface DSFLoadingBoxProps {
|
|
|
6
6
|
withinBox?: boolean;
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
}
|
|
9
|
-
declare const DSFLoadingBox:
|
|
9
|
+
declare const DSFLoadingBox: {
|
|
10
|
+
({ loading, withinBox, loadingText, children }: DSFLoadingBoxProps): React.JSX.Element;
|
|
11
|
+
defaultProps: {
|
|
12
|
+
children: undefined;
|
|
13
|
+
};
|
|
14
|
+
displayName: string;
|
|
15
|
+
};
|
|
10
16
|
export default DSFLoadingBox;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* - https://github.com/alphagov/govuk-frontend/tree/main/src/govuk/components/back-link
|
|
5
5
|
*/
|
|
6
|
-
import React
|
|
6
|
+
import React from 'react';
|
|
7
7
|
import '../../resources/css/dsf.main.min.css';
|
|
8
8
|
export interface DSFPageProps {
|
|
9
9
|
/**
|
|
@@ -35,6 +35,14 @@ export interface DSFPageProps {
|
|
|
35
35
|
* For example: A back link component, breadcrumbs, user login component
|
|
36
36
|
*/
|
|
37
37
|
beforeMainContainer?: React.ReactNode;
|
|
38
|
+
/**
|
|
39
|
+
* Page SideBar if any
|
|
40
|
+
*/
|
|
41
|
+
sideBar?: React.ReactNode;
|
|
42
|
+
/**
|
|
43
|
+
* Override the default page cookies component.
|
|
44
|
+
*/
|
|
45
|
+
cookies?: React.ReactNode;
|
|
38
46
|
}
|
|
39
47
|
/**
|
|
40
48
|
* Use the back link component to help users go back to the previous page in a multi-page transaction.
|
|
@@ -42,5 +50,18 @@ export interface DSFPageProps {
|
|
|
42
50
|
* - https://govuk-react.github.io/govuk-react/?path=/docs/back-link
|
|
43
51
|
* - https://design-system.service.gov.uk/components/back-link/
|
|
44
52
|
*/
|
|
45
|
-
declare const DSFPage:
|
|
53
|
+
declare const DSFPage: {
|
|
54
|
+
({ id, children, header, footer, bodyStartContainer: bodyStartContainerContent, bodyEndContainer: bodyEndContainerContent, beforeMainContainer: beforeChildren, sideBar: sideBar, cookies: cookies, }: DSFPageProps): React.JSX.Element;
|
|
55
|
+
defaultProps: {
|
|
56
|
+
children: undefined;
|
|
57
|
+
id: string;
|
|
58
|
+
header: React.JSX.Element;
|
|
59
|
+
footer: undefined;
|
|
60
|
+
cookies: React.JSX.Element;
|
|
61
|
+
beforeMainContainer: undefined;
|
|
62
|
+
bodyStartContainer: undefined;
|
|
63
|
+
bodyEndContainer: undefined;
|
|
64
|
+
};
|
|
65
|
+
displayName: string;
|
|
66
|
+
};
|
|
46
67
|
export default DSFPage;
|
|
@@ -1,10 +1,24 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import '../../resources/css/dsf.main.min.css';
|
|
3
|
+
export declare enum PanelEnum {
|
|
4
|
+
SUCCESS = "success",
|
|
5
|
+
DANGER = "danger",
|
|
6
|
+
INFO = "info",
|
|
7
|
+
WARNING = "secondary"
|
|
8
|
+
}
|
|
3
9
|
export interface DSFPanelProps {
|
|
4
10
|
/** Panel title text */
|
|
5
11
|
title: string;
|
|
12
|
+
type?: PanelEnum;
|
|
6
13
|
/** Panel body text */
|
|
7
14
|
children?: React.ReactNode;
|
|
8
15
|
}
|
|
9
|
-
declare const DSFPanel:
|
|
16
|
+
declare const DSFPanel: {
|
|
17
|
+
({ title, type, children, ...props }: DSFPanelProps): React.JSX.Element;
|
|
18
|
+
defaultProps: {
|
|
19
|
+
children: undefined;
|
|
20
|
+
type: PanelEnum;
|
|
21
|
+
};
|
|
22
|
+
displayName: string;
|
|
23
|
+
};
|
|
10
24
|
export default DSFPanel;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import '../../resources/css/dsf.main.min.css';
|
|
3
3
|
export interface DSFSelectProps {
|
|
4
4
|
label: string;
|
|
@@ -12,6 +12,14 @@ export interface DSFSelectProps {
|
|
|
12
12
|
children: React.ReactNode;
|
|
13
13
|
defaultValue?: string | number;
|
|
14
14
|
defaultLabel?: string;
|
|
15
|
+
visualSize?: number;
|
|
15
16
|
}
|
|
16
|
-
declare const DSFSelect:
|
|
17
|
+
declare const DSFSelect: {
|
|
18
|
+
({ children, inputProps, label, hint, id, meta, defaultValue, defaultLabel, visualSize, }: DSFSelectProps): React.JSX.Element;
|
|
19
|
+
defaultProps: {
|
|
20
|
+
inputProps: {};
|
|
21
|
+
meta: {};
|
|
22
|
+
hint: undefined;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
17
25
|
export default DSFSelect;
|
|
@@ -1,14 +1,22 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import '../../resources/css/dsf.main.min.css';
|
|
3
3
|
export interface DSFTableProps {
|
|
4
4
|
id?: string;
|
|
5
|
-
columns:
|
|
5
|
+
columns: DSFTableColumn[];
|
|
6
6
|
rowData: (string | number | React.ReactNode)[][];
|
|
7
7
|
hideNumberingColumn?: boolean;
|
|
8
8
|
inputProps?: React.SelectHTMLAttributes<HTMLTableElement>;
|
|
9
9
|
}
|
|
10
|
-
declare const DSFTable:
|
|
11
|
-
|
|
10
|
+
declare const DSFTable: {
|
|
11
|
+
({ columns, rowData, hideNumberingColumn, id, inputProps }: DSFTableProps): React.JSX.Element;
|
|
12
|
+
defaultProps: {
|
|
13
|
+
columns: never[];
|
|
14
|
+
rowData: never[];
|
|
15
|
+
hideNumberingColumn: boolean;
|
|
16
|
+
};
|
|
17
|
+
displayName: string;
|
|
18
|
+
};
|
|
19
|
+
export interface DSFTableColumn {
|
|
12
20
|
header: string;
|
|
13
21
|
align?: 'left' | 'right';
|
|
14
22
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './DSFTable';
|
|
1
|
+
export { default, DSFTableColumn } from './DSFTable';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import '../../resources/css/dsf.main.min.css';
|
|
3
3
|
export interface DSFUserSignOutProps {
|
|
4
4
|
label?: string;
|
|
@@ -6,5 +6,10 @@ export interface DSFUserSignOutProps {
|
|
|
6
6
|
onClick?: () => void;
|
|
7
7
|
href: string;
|
|
8
8
|
}
|
|
9
|
-
declare const DSFUserSignOut:
|
|
9
|
+
declare const DSFUserSignOut: {
|
|
10
|
+
({ label, fullName, onClick, href }: DSFUserSignOutProps): React.JSX.Element;
|
|
11
|
+
defaultProps: {
|
|
12
|
+
href: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
10
15
|
export default DSFUserSignOut;
|
|
@@ -21,7 +21,8 @@ export { default as DSFLoadingBox } from './DSFLoadingBox';
|
|
|
21
21
|
export { default as DSFFieldSet } from './DSFFieldSet';
|
|
22
22
|
export { default as DSFFormGroup } from './DSFFormGroup';
|
|
23
23
|
export { default as DSFRadio } from './DSFRadio';
|
|
24
|
-
export { default as DSFTable } from './DSFTable';
|
|
24
|
+
export { default as DSFTable, DSFTableColumn } from './DSFTable';
|
|
25
25
|
export { default as DSFUserSignOut } from './DSFUserSignOut';
|
|
26
26
|
export { default as DSFPage } from './DSFPage';
|
|
27
27
|
export { default as DSFFileUpload } from './DSFFileUpload';
|
|
28
|
+
export { default as DSFCookies } from './DSFCookies';
|