@elliemae/ds-page-header 2.0.0-rc.6 → 2.0.0
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/package.json +11 -11
- package/types/v1/DSPageHeader.d.ts +97 -16
- package/types/v2/PageHeader.d.ts +63 -9
- package/types/v2/components/PageHeaderEditableTitle/PageHeaderEditableTitle.d.ts +57 -8
- package/types/v2/components/PageHeaderSummary/PageHeaderSummary.d.ts +24 -3
- package/types/v2/components/PageHeaderTitle/PageHeaderTitle.d.ts +22 -3
- package/types/v2/props.d.ts +49 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-page-header",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Page Header",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -100,16 +100,16 @@
|
|
|
100
100
|
"build": "node ../../scripts/build/build.js"
|
|
101
101
|
},
|
|
102
102
|
"dependencies": {
|
|
103
|
-
"@elliemae/ds-breadcrumb": "2.0.0
|
|
104
|
-
"@elliemae/ds-button": "2.0.0
|
|
105
|
-
"@elliemae/ds-classnames": "2.0.0
|
|
106
|
-
"@elliemae/ds-dropdownmenu": "2.0.0
|
|
107
|
-
"@elliemae/ds-form": "2.0.0
|
|
108
|
-
"@elliemae/ds-grid": "2.0.0
|
|
109
|
-
"@elliemae/ds-icon": "2.0.0
|
|
110
|
-
"@elliemae/ds-icons": "2.0.0
|
|
111
|
-
"@elliemae/ds-truncated-tooltip-text": "2.0.0
|
|
112
|
-
"@elliemae/ds-utilities": "2.0.0
|
|
103
|
+
"@elliemae/ds-breadcrumb": "2.0.0",
|
|
104
|
+
"@elliemae/ds-button": "2.0.0",
|
|
105
|
+
"@elliemae/ds-classnames": "2.0.0",
|
|
106
|
+
"@elliemae/ds-dropdownmenu": "2.0.0",
|
|
107
|
+
"@elliemae/ds-form": "2.0.0",
|
|
108
|
+
"@elliemae/ds-grid": "2.0.0",
|
|
109
|
+
"@elliemae/ds-icon": "2.0.0",
|
|
110
|
+
"@elliemae/ds-icons": "2.0.0",
|
|
111
|
+
"@elliemae/ds-truncated-tooltip-text": "2.0.0",
|
|
112
|
+
"@elliemae/ds-utilities": "2.0.0",
|
|
113
113
|
"prop-types": "~15.7.2",
|
|
114
114
|
"react-desc": "~4.1.3"
|
|
115
115
|
},
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
declare const DSPageHeader: {
|
|
3
4
|
({ containerProps, renderToolbar, withBottomSeparator, title, titleOptions, onSelectOption, subtitle, optionsSelection, onGoToPreviousPage, previousPage, editable, editing, titleInputProps, zIndex, optionsMinWidth, ...otherProps }: {
|
|
@@ -19,23 +20,103 @@ declare const DSPageHeader: {
|
|
|
19
20
|
optionsMinWidth?: undefined;
|
|
20
21
|
}): JSX.Element;
|
|
21
22
|
propTypes: {
|
|
22
|
-
version:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
23
|
+
version: {
|
|
24
|
+
defaultValue<T = unknown>(arg: T): {
|
|
25
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
26
|
+
};
|
|
27
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
28
|
+
};
|
|
29
|
+
containerProps: {
|
|
30
|
+
defaultValue<T = unknown>(arg: T): {
|
|
31
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
32
|
+
};
|
|
33
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
34
|
+
};
|
|
35
|
+
renderToolbar: {
|
|
36
|
+
defaultValue<T = unknown>(arg: T): {
|
|
37
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
38
|
+
};
|
|
39
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
40
|
+
};
|
|
41
|
+
withBottomSeparator: {
|
|
42
|
+
defaultValue<T = unknown>(arg: T): {
|
|
43
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
44
|
+
};
|
|
45
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
46
|
+
};
|
|
47
|
+
title: {
|
|
48
|
+
defaultValue<T = unknown>(arg: T): {
|
|
49
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
50
|
+
};
|
|
51
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
52
|
+
};
|
|
53
|
+
titleOptions: {
|
|
54
|
+
defaultValue<T = unknown>(arg: T): {
|
|
55
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
56
|
+
};
|
|
57
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
58
|
+
};
|
|
59
|
+
onSelectOption: {
|
|
60
|
+
defaultValue<T = unknown>(arg: T): {
|
|
61
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
62
|
+
};
|
|
63
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
64
|
+
};
|
|
65
|
+
subtitle: {
|
|
66
|
+
defaultValue<T = unknown>(arg: T): {
|
|
67
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
68
|
+
};
|
|
69
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
70
|
+
};
|
|
71
|
+
optionsSelection: {
|
|
72
|
+
defaultValue<T = unknown>(arg: T): {
|
|
73
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
74
|
+
};
|
|
75
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
76
|
+
};
|
|
77
|
+
editable: {
|
|
78
|
+
defaultValue<T = unknown>(arg: T): {
|
|
79
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
80
|
+
};
|
|
81
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
82
|
+
};
|
|
83
|
+
editing: {
|
|
84
|
+
defaultValue<T = unknown>(arg: T): {
|
|
85
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
86
|
+
};
|
|
87
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
88
|
+
};
|
|
89
|
+
titleInputProps: {
|
|
90
|
+
defaultValue<T = unknown>(arg: T): {
|
|
91
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
92
|
+
};
|
|
93
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
94
|
+
};
|
|
95
|
+
previousPage: {
|
|
96
|
+
defaultValue<T = unknown>(arg: T): {
|
|
97
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
98
|
+
};
|
|
99
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
100
|
+
};
|
|
101
|
+
onGoToPreviousPage: {
|
|
102
|
+
defaultValue<T = unknown>(arg: T): {
|
|
103
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
104
|
+
};
|
|
105
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
106
|
+
};
|
|
107
|
+
zIndex: {
|
|
108
|
+
defaultValue<T = unknown>(arg: T): {
|
|
109
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
110
|
+
};
|
|
111
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
112
|
+
};
|
|
37
113
|
/** min width for options dropdown menu */
|
|
38
|
-
optionsMinWidth:
|
|
114
|
+
optionsMinWidth: {
|
|
115
|
+
defaultValue<T = unknown>(arg: T): {
|
|
116
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
117
|
+
};
|
|
118
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
119
|
+
};
|
|
39
120
|
};
|
|
40
121
|
};
|
|
41
122
|
declare const DSPageHeaderV1WithSchema: any;
|
package/types/v2/PageHeader.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
import { PageHeaderTitle } from './components/PageHeaderTitle/PageHeaderTitle';
|
|
3
4
|
import { PageHeaderEditableTitle } from './components/PageHeaderEditableTitle/PageHeaderEditableTitle';
|
|
@@ -16,14 +17,54 @@ declare const DSPageHeaderV2: {
|
|
|
16
17
|
withBottomSeparator: any;
|
|
17
18
|
}): JSX.Element;
|
|
18
19
|
propTypes: {
|
|
19
|
-
containerProps:
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
20
|
+
containerProps: {
|
|
21
|
+
defaultValue<T = unknown>(arg: T): {
|
|
22
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
23
|
+
};
|
|
24
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
26
|
+
breadcrumbs: {
|
|
27
|
+
defaultValue<T = unknown>(arg: T): {
|
|
28
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
29
|
+
};
|
|
30
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
31
|
+
};
|
|
32
|
+
pageTitle: {
|
|
33
|
+
defaultValue<T = unknown>(arg: T): {
|
|
34
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
35
|
+
};
|
|
36
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
37
|
+
};
|
|
38
|
+
backarrow: {
|
|
39
|
+
defaultValue<T = unknown>(arg: T): {
|
|
40
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
41
|
+
};
|
|
42
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
43
|
+
};
|
|
44
|
+
summary: {
|
|
45
|
+
defaultValue<T = unknown>(arg: T): {
|
|
46
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
47
|
+
};
|
|
48
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
49
|
+
};
|
|
50
|
+
toolbar: {
|
|
51
|
+
defaultValue<T = unknown>(arg: T): {
|
|
52
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
53
|
+
};
|
|
54
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
55
|
+
};
|
|
56
|
+
menu: {
|
|
57
|
+
defaultValue<T = unknown>(arg: T): {
|
|
58
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
59
|
+
};
|
|
60
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
61
|
+
};
|
|
62
|
+
withBottomSeparator: {
|
|
63
|
+
defaultValue<T = unknown>(arg: T): {
|
|
64
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
65
|
+
};
|
|
66
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
67
|
+
};
|
|
27
68
|
};
|
|
28
69
|
defaultProps: {
|
|
29
70
|
containerProps: {};
|
|
@@ -36,6 +77,19 @@ declare const DSPageHeaderV2: {
|
|
|
36
77
|
withBottomSeparator: boolean;
|
|
37
78
|
};
|
|
38
79
|
};
|
|
39
|
-
declare const DSPageHeaderWithSchema:
|
|
80
|
+
declare const DSPageHeaderWithSchema: {
|
|
81
|
+
(props?: {
|
|
82
|
+
containerProps: any;
|
|
83
|
+
breadcrumbs: any;
|
|
84
|
+
pageTitle: any;
|
|
85
|
+
backarrow: any;
|
|
86
|
+
summary: any;
|
|
87
|
+
toolbar: any;
|
|
88
|
+
menu: any;
|
|
89
|
+
withBottomSeparator: any;
|
|
90
|
+
} | undefined): JSX.Element;
|
|
91
|
+
propTypes: unknown;
|
|
92
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
93
|
+
};
|
|
40
94
|
export { DSPageHeaderV2, PageHeaderTitle, PageHeaderEditableTitle, PageHeaderSummary, PageHeaderMenu, PageHeaderCustomRenderer, DSPageHeaderWithSchema, };
|
|
41
95
|
export default DSPageHeaderV2;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
export declare const PageHeaderEditableTitle: {
|
|
3
4
|
({ children: value, editing: editingProp, onBlur, onChange, onFocus, onMouseOut, showMarker, ...rest }: {
|
|
@@ -12,21 +13,69 @@ export declare const PageHeaderEditableTitle: {
|
|
|
12
13
|
}): JSX.Element;
|
|
13
14
|
propTypes: {
|
|
14
15
|
/** The title text */
|
|
15
|
-
children:
|
|
16
|
+
children: {
|
|
17
|
+
defaultValue<T = unknown>(arg: T): {
|
|
18
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
19
|
+
};
|
|
20
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
16
22
|
/** Whether the title is editing or not */
|
|
17
|
-
editing:
|
|
23
|
+
editing: {
|
|
24
|
+
defaultValue<T = unknown>(arg: T): {
|
|
25
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
26
|
+
};
|
|
27
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
28
|
+
};
|
|
18
29
|
/** Show error marker */
|
|
19
|
-
showMarker:
|
|
30
|
+
showMarker: {
|
|
31
|
+
defaultValue<T = unknown>(arg: T): {
|
|
32
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
33
|
+
};
|
|
34
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
35
|
+
};
|
|
20
36
|
/** blur callback */
|
|
21
|
-
onBlur:
|
|
37
|
+
onBlur: {
|
|
38
|
+
defaultValue<T = unknown>(arg: T): {
|
|
39
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
40
|
+
};
|
|
41
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
42
|
+
};
|
|
22
43
|
/** on change handler */
|
|
23
|
-
onChange:
|
|
44
|
+
onChange: {
|
|
45
|
+
defaultValue<T = unknown>(arg: T): {
|
|
46
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
47
|
+
};
|
|
48
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
49
|
+
};
|
|
24
50
|
/** on focus handler */
|
|
25
|
-
onFocus:
|
|
51
|
+
onFocus: {
|
|
52
|
+
defaultValue<T = unknown>(arg: T): {
|
|
53
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
54
|
+
};
|
|
55
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
56
|
+
};
|
|
26
57
|
/** mouse out of component handler */
|
|
27
|
-
onMouseOut:
|
|
58
|
+
onMouseOut: {
|
|
59
|
+
defaultValue<T = unknown>(arg: T): {
|
|
60
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
61
|
+
};
|
|
62
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
63
|
+
};
|
|
28
64
|
};
|
|
29
65
|
};
|
|
30
|
-
declare const DSPageHeaderEditableTitleWithSchema:
|
|
66
|
+
declare const DSPageHeaderEditableTitleWithSchema: {
|
|
67
|
+
(props?: {
|
|
68
|
+
[x: string]: any;
|
|
69
|
+
children: any;
|
|
70
|
+
editing?: boolean | undefined;
|
|
71
|
+
onBlur?: ((...args: any[]) => void) | undefined;
|
|
72
|
+
onChange?: ((...args: any[]) => void) | undefined;
|
|
73
|
+
onFocus?: ((...args: any[]) => void) | undefined;
|
|
74
|
+
onMouseOut?: ((...args: any[]) => void) | undefined;
|
|
75
|
+
showMarker?: boolean | undefined;
|
|
76
|
+
} | undefined): JSX.Element;
|
|
77
|
+
propTypes: unknown;
|
|
78
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
79
|
+
};
|
|
31
80
|
export default PageHeaderEditableTitle;
|
|
32
81
|
export { DSPageHeaderEditableTitleWithSchema };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
declare const PageHeaderSummary: {
|
|
3
4
|
({ value, label, ...rest }: {
|
|
@@ -7,10 +8,30 @@ declare const PageHeaderSummary: {
|
|
|
7
8
|
}): JSX.Element;
|
|
8
9
|
propTypes: {
|
|
9
10
|
/** value for page header summary */
|
|
10
|
-
value:
|
|
11
|
+
value: {
|
|
12
|
+
defaultValue<T = unknown>(arg: T): {
|
|
13
|
+
/** value for page header summary */
|
|
14
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
15
|
+
};
|
|
16
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
17
|
+
};
|
|
11
18
|
/** label attached to value */
|
|
12
|
-
label:
|
|
19
|
+
label: {
|
|
20
|
+
defaultValue<T = unknown>(arg: T): {
|
|
21
|
+
/** value for page header summary */
|
|
22
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
23
|
+
};
|
|
24
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
13
26
|
};
|
|
14
27
|
};
|
|
15
|
-
declare const DSPageHeaderSummaryWithSchema:
|
|
28
|
+
declare const DSPageHeaderSummaryWithSchema: {
|
|
29
|
+
(props?: {
|
|
30
|
+
[x: string]: any;
|
|
31
|
+
value?: null | undefined;
|
|
32
|
+
label?: string | undefined;
|
|
33
|
+
} | undefined): JSX.Element;
|
|
34
|
+
propTypes: unknown;
|
|
35
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
36
|
+
};
|
|
16
37
|
export { PageHeaderSummary, DSPageHeaderSummaryWithSchema };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
declare const PageHeaderTitle: {
|
|
3
4
|
({ children, showMarker, ...rest }: {
|
|
@@ -7,10 +8,28 @@ declare const PageHeaderTitle: {
|
|
|
7
8
|
}): JSX.Element;
|
|
8
9
|
propTypes: {
|
|
9
10
|
/** page header title string */
|
|
10
|
-
children:
|
|
11
|
+
children: {
|
|
12
|
+
defaultValue<T = unknown>(arg: T): {
|
|
13
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
14
|
+
};
|
|
15
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
16
|
+
};
|
|
11
17
|
/** show required mark */
|
|
12
|
-
showMarker:
|
|
18
|
+
showMarker: {
|
|
19
|
+
defaultValue<T = unknown>(arg: T): {
|
|
20
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
22
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
23
|
+
};
|
|
13
24
|
};
|
|
14
25
|
};
|
|
15
|
-
declare const DSPageHeaderTitleWithSchema:
|
|
26
|
+
declare const DSPageHeaderTitleWithSchema: {
|
|
27
|
+
(props?: {
|
|
28
|
+
[x: string]: any;
|
|
29
|
+
children: any;
|
|
30
|
+
showMarker?: boolean | undefined;
|
|
31
|
+
} | undefined): JSX.Element;
|
|
32
|
+
propTypes: unknown;
|
|
33
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
34
|
+
};
|
|
16
35
|
export { PageHeaderTitle, DSPageHeaderTitleWithSchema };
|
package/types/v2/props.d.ts
CHANGED
|
@@ -1,20 +1,61 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
export declare const navProps: {
|
|
2
3
|
/** props injected to wrapper of page header */
|
|
3
|
-
containerProps:
|
|
4
|
+
containerProps: {
|
|
5
|
+
defaultValue<T = unknown>(arg: T): {
|
|
6
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
7
|
+
};
|
|
8
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
9
|
+
};
|
|
4
10
|
/** breadcrumbs component */
|
|
5
|
-
breadcrumbs:
|
|
11
|
+
breadcrumbs: {
|
|
12
|
+
defaultValue<T = unknown>(arg: T): {
|
|
13
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
14
|
+
};
|
|
15
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
16
|
+
};
|
|
6
17
|
/** PageHeaderTitle component */
|
|
7
|
-
pageTitle:
|
|
18
|
+
pageTitle: {
|
|
19
|
+
defaultValue<T = unknown>(arg: T): {
|
|
20
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
22
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
23
|
+
};
|
|
8
24
|
/** back arrow component */
|
|
9
|
-
backarrow:
|
|
25
|
+
backarrow: {
|
|
26
|
+
defaultValue<T = unknown>(arg: T): {
|
|
27
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
28
|
+
};
|
|
29
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
30
|
+
};
|
|
10
31
|
/** PageHeaderSummary component */
|
|
11
|
-
summary:
|
|
32
|
+
summary: {
|
|
33
|
+
defaultValue<T = unknown>(arg: T): {
|
|
34
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
35
|
+
};
|
|
36
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
37
|
+
};
|
|
12
38
|
/** toolbar component */
|
|
13
|
-
toolbar:
|
|
39
|
+
toolbar: {
|
|
40
|
+
defaultValue<T = unknown>(arg: T): {
|
|
41
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
42
|
+
};
|
|
43
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
44
|
+
};
|
|
14
45
|
/** PageHeaderMenu component */
|
|
15
|
-
menu:
|
|
46
|
+
menu: {
|
|
47
|
+
defaultValue<T = unknown>(arg: T): {
|
|
48
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
49
|
+
};
|
|
50
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
51
|
+
};
|
|
16
52
|
/** Border bottom below the page header */
|
|
17
|
-
withBottomSeparator:
|
|
53
|
+
withBottomSeparator: {
|
|
54
|
+
defaultValue<T = unknown>(arg: T): {
|
|
55
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
56
|
+
};
|
|
57
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
58
|
+
};
|
|
18
59
|
};
|
|
19
60
|
export declare const defaultProps: {
|
|
20
61
|
containerProps: {};
|