@elliemae/ds-global-header 3.17.0-next.9 → 3.17.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.
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { DSGlobalHeaderInternalsT } from '../../sharedTypes.js';
|
|
3
|
-
export declare const PureBreadcrumb: React.MemoExoticComponent<({ onClick, onKeyDown, isSelected, length, label, hasNext, id, ...rest }: DSGlobalHeaderInternalsT.BreadcrumbItem) => JSX.Element>;
|
|
3
|
+
export declare const PureBreadcrumb: React.MemoExoticComponent<({ onClick, onKeyDown, isSelected, length, label, hasNext, id, ...rest }: DSGlobalHeaderInternalsT.BreadcrumbItem) => import("react/jsx-runtime.js").JSX.Element>;
|
|
@@ -12,7 +12,7 @@ interface LabelT {
|
|
|
12
12
|
export declare const StyledBreadcrumbContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object, never>;
|
|
13
13
|
export declare const StyledBreadcrumbList: import("styled-components").StyledComponent<"ul", import("@elliemae/ds-system").Theme, object, never>;
|
|
14
14
|
export declare const StyledPipe: import("styled-components").StyledComponent<"span", import("@elliemae/ds-system").Theme, PipeT, never>;
|
|
15
|
-
export declare const StyledChevron: import("styled-components").StyledComponent<(rest:
|
|
15
|
+
export declare const StyledChevron: import("styled-components").StyledComponent<(rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime.js").JSX.Element, import("@elliemae/ds-system").Theme, ChevronT, never>;
|
|
16
16
|
export declare const StyledBreadcrumbItem: import("styled-components").StyledComponent<"li", import("@elliemae/ds-system").Theme, object, never>;
|
|
17
17
|
export declare const StyledLink: import("styled-components").StyledComponent<"a", import("@elliemae/ds-system").Theme, object, never>;
|
|
18
18
|
export declare const StyledLabel: import("styled-components").StyledComponent<"span", import("@elliemae/ds-system").Theme, LabelT, never>;
|
|
@@ -419,6 +419,7 @@ export declare const propTypes: {
|
|
|
419
419
|
radioGroup: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
420
420
|
readOnly: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
421
421
|
rel: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
422
|
+
rev: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
422
423
|
required: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
423
424
|
resource: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
424
425
|
results: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -10,7 +10,7 @@ export function useToolbar(): {
|
|
|
10
10
|
componentProps: {
|
|
11
11
|
options: ({
|
|
12
12
|
type: string;
|
|
13
|
-
Content: () => JSX.Element;
|
|
13
|
+
Content: () => import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
label?: undefined;
|
|
15
15
|
onClick?: undefined;
|
|
16
16
|
} | {
|
|
@@ -26,7 +26,7 @@ export function useToolbar(): {
|
|
|
26
26
|
})[];
|
|
27
27
|
closeOnClick: boolean;
|
|
28
28
|
};
|
|
29
|
-
Icon: (rest:
|
|
29
|
+
Icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
30
30
|
onClick: jest.Mock<null, [], any>;
|
|
31
31
|
} | {
|
|
32
32
|
id: string;
|
|
@@ -46,7 +46,7 @@ export function useToolbar(): {
|
|
|
46
46
|
})[];
|
|
47
47
|
closeOnClick: boolean;
|
|
48
48
|
};
|
|
49
|
-
Icon: (rest:
|
|
49
|
+
Icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
50
50
|
onClick: () => null;
|
|
51
51
|
} | {
|
|
52
52
|
id: string;
|
|
@@ -57,14 +57,14 @@ export function useToolbar(): {
|
|
|
57
57
|
apps: ({
|
|
58
58
|
id: number;
|
|
59
59
|
label: string;
|
|
60
|
-
icon: (rest:
|
|
60
|
+
icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
61
61
|
onClick: (a: any, item: any) => void;
|
|
62
62
|
selected: boolean;
|
|
63
63
|
disabled?: undefined;
|
|
64
64
|
} | {
|
|
65
65
|
id: number;
|
|
66
66
|
label: string;
|
|
67
|
-
icon: (rest:
|
|
67
|
+
icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
68
68
|
onClick: (a: any, item: any) => void;
|
|
69
69
|
disabled: boolean;
|
|
70
70
|
selected: boolean;
|
|
@@ -73,7 +73,7 @@ export function useToolbar(): {
|
|
|
73
73
|
customApps: {
|
|
74
74
|
id: number;
|
|
75
75
|
label: string;
|
|
76
|
-
icon: (rest:
|
|
76
|
+
icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
77
77
|
onClick: (a: any, item: any) => void;
|
|
78
78
|
selected: boolean;
|
|
79
79
|
}[];
|
|
@@ -96,7 +96,7 @@ export function useToolbar(): {
|
|
|
96
96
|
onClick?: undefined;
|
|
97
97
|
} | {
|
|
98
98
|
id: string;
|
|
99
|
-
Icon: (rest:
|
|
99
|
+
Icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
100
100
|
label: string;
|
|
101
101
|
onClick: () => void;
|
|
102
102
|
type?: undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-global-header",
|
|
3
|
-
"version": "3.17.0
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Global Header",
|
|
6
6
|
"files": [
|
|
@@ -136,14 +136,14 @@
|
|
|
136
136
|
},
|
|
137
137
|
"dependencies": {
|
|
138
138
|
"uid": "~2.0.1",
|
|
139
|
-
"@elliemae/ds-app-picker": "3.17.0
|
|
140
|
-
"@elliemae/ds-
|
|
141
|
-
"@elliemae/ds-
|
|
142
|
-
"@elliemae/ds-
|
|
143
|
-
"@elliemae/ds-
|
|
144
|
-
"@elliemae/ds-
|
|
145
|
-
"@elliemae/ds-
|
|
146
|
-
"@elliemae/ds-
|
|
139
|
+
"@elliemae/ds-app-picker": "3.17.0",
|
|
140
|
+
"@elliemae/ds-grid": "3.17.0",
|
|
141
|
+
"@elliemae/ds-popperjs": "3.17.0",
|
|
142
|
+
"@elliemae/ds-system": "3.17.0",
|
|
143
|
+
"@elliemae/ds-props-helpers": "3.17.0",
|
|
144
|
+
"@elliemae/ds-icons": "3.17.0",
|
|
145
|
+
"@elliemae/ds-form": "3.17.0",
|
|
146
|
+
"@elliemae/ds-utilities": "3.17.0"
|
|
147
147
|
},
|
|
148
148
|
"devDependencies": {
|
|
149
149
|
"@testing-library/jest-dom": "~5.16.5",
|