@elliemae/ds-global-header 3.70.0-next.39 → 3.70.0-next.40
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 +12 -12
- package/dist/types/tests/GlobalHeader.a11y.test.d.ts +0 -1
- package/dist/types/tests/GlobalHeader.callback.test.d.ts +0 -1
- package/dist/types/tests/GlobalHeader.getOwnerProps.test.d.ts +0 -1
- package/dist/types/tests/GlobalHeader.keyboard.test.d.ts +0 -1
- package/dist/types/tests/GlobalHeader.setup.test.d.ts +0 -113
- package/dist/types/typescript-testing/typescript-global-header-breadcrumb-types.d.ts +0 -3
- package/dist/types/typescript-testing/typescript-global-header-deprecated.d.ts +0 -1
- package/dist/types/typescript-testing/typescript-global-header-toolbar-types.d.ts +0 -3
- package/dist/types/typescript-testing/typescript-global-header-valid.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-global-header",
|
|
3
|
-
"version": "3.70.0-next.
|
|
3
|
+
"version": "3.70.0-next.40",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Global Header",
|
|
6
6
|
"files": [
|
|
@@ -37,21 +37,21 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"uid": "^2.0.2",
|
|
40
|
-
"@elliemae/ds-app-picker": "3.70.0-next.
|
|
41
|
-
"@elliemae/ds-button-v2": "3.70.0-next.
|
|
42
|
-
"@elliemae/ds-floating-context": "3.70.0-next.
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-props-helpers": "3.70.0-next.
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-icons": "3.70.0-next.
|
|
40
|
+
"@elliemae/ds-app-picker": "3.70.0-next.40",
|
|
41
|
+
"@elliemae/ds-button-v2": "3.70.0-next.40",
|
|
42
|
+
"@elliemae/ds-floating-context": "3.70.0-next.40",
|
|
43
|
+
"@elliemae/ds-grid": "3.70.0-next.40",
|
|
44
|
+
"@elliemae/ds-form-input-text": "3.70.0-next.40",
|
|
45
|
+
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.40",
|
|
46
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.40",
|
|
47
|
+
"@elliemae/ds-system": "3.70.0-next.40",
|
|
48
|
+
"@elliemae/ds-icons": "3.70.0-next.40"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"jest": "^30.0.0",
|
|
52
52
|
"styled-components": "~5.3.9",
|
|
53
|
-
"@elliemae/ds-monorepo-devops": "3.70.0-next.
|
|
54
|
-
"@elliemae/ds-test-utils": "3.70.0-next.
|
|
53
|
+
"@elliemae/ds-monorepo-devops": "3.70.0-next.40",
|
|
54
|
+
"@elliemae/ds-test-utils": "3.70.0-next.40"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"lodash-es": "^4.18.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
export const appPickerMenuItemCb: jest.Mock<null, [], any>;
|
|
2
|
-
export const popupMenuItemCb: jest.Mock<null, [], any>;
|
|
3
|
-
export const menubarItemCb: jest.Mock<null, [], any>;
|
|
4
|
-
export const breadcrumbItemCb: jest.Mock<null, [], any>;
|
|
5
|
-
export function useToolbar(): {
|
|
6
|
-
toolbar: ({
|
|
7
|
-
id: string;
|
|
8
|
-
type: string;
|
|
9
|
-
label: string;
|
|
10
|
-
componentProps: {
|
|
11
|
-
options: ({
|
|
12
|
-
type: string;
|
|
13
|
-
Content: () => import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
label?: undefined;
|
|
15
|
-
onClick?: undefined;
|
|
16
|
-
} | {
|
|
17
|
-
type: string;
|
|
18
|
-
Content?: undefined;
|
|
19
|
-
label?: undefined;
|
|
20
|
-
onClick?: undefined;
|
|
21
|
-
} | {
|
|
22
|
-
label: string;
|
|
23
|
-
onClick: () => null;
|
|
24
|
-
type?: undefined;
|
|
25
|
-
Content?: undefined;
|
|
26
|
-
})[];
|
|
27
|
-
closeOnClick: boolean;
|
|
28
|
-
};
|
|
29
|
-
Icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
onClick: jest.Mock<null, [], any>;
|
|
31
|
-
} | {
|
|
32
|
-
id: string;
|
|
33
|
-
type: string;
|
|
34
|
-
label: string;
|
|
35
|
-
componentProps: {
|
|
36
|
-
options: ({
|
|
37
|
-
label: string;
|
|
38
|
-
onClick: () => null;
|
|
39
|
-
type?: undefined;
|
|
40
|
-
'data-separator'?: undefined;
|
|
41
|
-
} | {
|
|
42
|
-
type: string;
|
|
43
|
-
'data-separator': boolean;
|
|
44
|
-
label?: undefined;
|
|
45
|
-
onClick?: undefined;
|
|
46
|
-
})[];
|
|
47
|
-
closeOnClick: boolean;
|
|
48
|
-
};
|
|
49
|
-
Icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
-
onClick: () => null;
|
|
51
|
-
} | {
|
|
52
|
-
id: string;
|
|
53
|
-
type: string;
|
|
54
|
-
label: string;
|
|
55
|
-
componentProps: {
|
|
56
|
-
sectionTitle: string;
|
|
57
|
-
apps: ({
|
|
58
|
-
id: number;
|
|
59
|
-
label: string;
|
|
60
|
-
icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
61
|
-
onClick: (a: any, item: any) => void;
|
|
62
|
-
selected: boolean;
|
|
63
|
-
disabled?: undefined;
|
|
64
|
-
} | {
|
|
65
|
-
id: number;
|
|
66
|
-
label: string;
|
|
67
|
-
icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
68
|
-
onClick: (a: any, item: any) => void;
|
|
69
|
-
disabled: boolean;
|
|
70
|
-
selected: boolean;
|
|
71
|
-
})[];
|
|
72
|
-
customSectionTitle: string;
|
|
73
|
-
customApps: {
|
|
74
|
-
id: number;
|
|
75
|
-
label: string;
|
|
76
|
-
icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
77
|
-
onClick: (a: any, item: any) => void;
|
|
78
|
-
selected: boolean;
|
|
79
|
-
}[];
|
|
80
|
-
};
|
|
81
|
-
} | {
|
|
82
|
-
type: string;
|
|
83
|
-
id: string;
|
|
84
|
-
componentProps: {
|
|
85
|
-
value: string;
|
|
86
|
-
onNext: () => void;
|
|
87
|
-
onPrevious: () => void;
|
|
88
|
-
onBlur: () => void;
|
|
89
|
-
onClear: () => void;
|
|
90
|
-
currentResultIndex: number;
|
|
91
|
-
onChange: (v: any) => void;
|
|
92
|
-
totalResults: number;
|
|
93
|
-
};
|
|
94
|
-
label: string;
|
|
95
|
-
Icon?: undefined;
|
|
96
|
-
onClick?: undefined;
|
|
97
|
-
} | {
|
|
98
|
-
id: string;
|
|
99
|
-
Icon: (rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime").JSX.Element;
|
|
100
|
-
label: string;
|
|
101
|
-
onClick: () => void;
|
|
102
|
-
type?: undefined;
|
|
103
|
-
componentProps?: undefined;
|
|
104
|
-
})[];
|
|
105
|
-
resultIndexes: never[];
|
|
106
|
-
selected: number;
|
|
107
|
-
};
|
|
108
|
-
export function useBreadcrumb(): {
|
|
109
|
-
label: string;
|
|
110
|
-
hasNext: boolean;
|
|
111
|
-
isSelected: boolean;
|
|
112
|
-
onClick: () => void;
|
|
113
|
-
}[];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|