@elliemae/ds-global-header 3.46.4 → 3.46.6
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/types/parts/Breadcrumb/styles.d.ts +7 -19
- package/dist/types/parts/Logo/styles.d.ts +1 -2
- package/dist/types/parts/Toolbar/outOfTheBox/PopupMenu/menuContent/styles.d.ts +5 -5
- package/dist/types/parts/Toolbar/outOfTheBox/PopupMenu/menuContent/usePopupMenuContent.d.ts +1 -1
- package/dist/types/parts/Toolbar/outOfTheBox/SearchToggle/styles.d.ts +1 -1
- package/dist/types/parts/Toolbar/styles.d.ts +3 -6
- package/dist/types/parts/Toolbar/useGlobalHeaderToolbar.d.ts +1 -1
- package/dist/types/parts/styles.d.ts +2 -3
- package/dist/types/react-desc-prop-types.d.ts +0 -1
- package/dist/types/tests/GlobalHeader.setup.test.d.ts +6 -6
- package/package.json +11 -11
|
@@ -1,19 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
interface LabelT {
|
|
9
|
-
isSelected: boolean;
|
|
10
|
-
isOnlyItem: boolean;
|
|
11
|
-
}
|
|
12
|
-
export declare const StyledBreadcrumbContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
|
|
13
|
-
export declare const StyledBreadcrumbList: import("styled-components").StyledComponent<"ul", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"ul">, never>;
|
|
14
|
-
export declare const StyledPipe: import("styled-components").StyledComponent<"span", import("@elliemae/ds-system").Theme, PipeT & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"span">, never>;
|
|
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 & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<(rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime.js").JSX.Element>, never>;
|
|
16
|
-
export declare const StyledBreadcrumbItem: import("styled-components").StyledComponent<"li", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"li">, never>;
|
|
17
|
-
export declare const StyledLink: import("styled-components").StyledComponent<"a", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"a">, never>;
|
|
18
|
-
export declare const StyledLabel: import("styled-components").StyledComponent<"span", import("@elliemae/ds-system").Theme, LabelT & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"span">, never>;
|
|
19
|
-
export {};
|
|
1
|
+
export declare const StyledBreadcrumbContainer: any;
|
|
2
|
+
export declare const StyledBreadcrumbList: any;
|
|
3
|
+
export declare const StyledPipe: any;
|
|
4
|
+
export declare const StyledChevron: any;
|
|
5
|
+
export declare const StyledBreadcrumbItem: any;
|
|
6
|
+
export declare const StyledLink: any;
|
|
7
|
+
export declare const StyledLabel: any;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledLogoContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
|
|
1
|
+
export declare const StyledLogoContainer: any;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare const StyledList:
|
|
2
|
-
export declare const StyledItemContainer:
|
|
3
|
-
export declare const StyledItemButton:
|
|
4
|
-
export declare const StyledLabel:
|
|
5
|
-
export declare const StyledSeparator:
|
|
1
|
+
export declare const StyledList: any;
|
|
2
|
+
export declare const StyledItemContainer: any;
|
|
3
|
+
export declare const StyledItemButton: any;
|
|
4
|
+
export declare const StyledLabel: any;
|
|
5
|
+
export declare const StyledSeparator: any;
|
|
@@ -3,7 +3,7 @@ interface UsePopupMenuContentT {
|
|
|
3
3
|
setIsOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
4
4
|
}
|
|
5
5
|
export declare const usePopupMenuContent: ({ setIsOpen }: UsePopupMenuContentT) => {
|
|
6
|
-
menuRef: import("react").RefObject<HTMLUListElement>;
|
|
6
|
+
menuRef: import("react").RefObject<HTMLUListElement | null>;
|
|
7
7
|
setRef: (ref: HTMLButtonElement) => void;
|
|
8
8
|
keyboardNavigation: (e: React.KeyboardEvent) => void;
|
|
9
9
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const StyledNavSearchBoxContainer:
|
|
1
|
+
export declare const StyledNavSearchBoxContainer: any;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
4
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
|
|
5
|
-
export declare const StyledList: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
|
|
6
|
-
export declare const StyledToolbarItem: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
|
|
1
|
+
export declare const StyledMenubarContainer: any;
|
|
2
|
+
export declare const StyledList: any;
|
|
3
|
+
export declare const StyledToolbarItem: any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const useGlobalHeaderToolbar: () => {
|
|
3
|
-
listRef: import("react").
|
|
3
|
+
listRef: import("react").RefObject<HTMLDivElement | null>;
|
|
4
4
|
setRef: (index: number) => (ref: HTMLElement | null) => void;
|
|
5
5
|
keyboardNavigation: (e: React.KeyboardEvent) => void;
|
|
6
6
|
};
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const StyledButton: import("styled-components").StyledComponent<"button", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"button">, never>;
|
|
1
|
+
export declare const Container: any;
|
|
2
|
+
export declare const StyledButton: any;
|
|
@@ -26,7 +26,7 @@ export function useToolbar(): {
|
|
|
26
26
|
})[];
|
|
27
27
|
closeOnClick: boolean;
|
|
28
28
|
};
|
|
29
|
-
Icon: (rest:
|
|
29
|
+
Icon: (rest: any) => 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: any) => 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: any) => 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: any) => 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: any) => 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: any) => 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.46.
|
|
3
|
+
"version": "3.46.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Global Header",
|
|
6
6
|
"files": [
|
|
@@ -137,19 +137,19 @@
|
|
|
137
137
|
},
|
|
138
138
|
"dependencies": {
|
|
139
139
|
"uid": "~2.0.1",
|
|
140
|
-
"@elliemae/ds-app-picker": "3.46.
|
|
141
|
-
"@elliemae/ds-form": "3.46.
|
|
142
|
-
"@elliemae/ds-
|
|
143
|
-
"@elliemae/ds-
|
|
144
|
-
"@elliemae/ds-
|
|
145
|
-
"@elliemae/ds-
|
|
146
|
-
"@elliemae/ds-
|
|
147
|
-
"@elliemae/ds-system": "3.46.
|
|
140
|
+
"@elliemae/ds-app-picker": "3.46.6",
|
|
141
|
+
"@elliemae/ds-form": "3.46.6",
|
|
142
|
+
"@elliemae/ds-grid": "3.46.6",
|
|
143
|
+
"@elliemae/ds-hooks-fontsize-media": "3.46.6",
|
|
144
|
+
"@elliemae/ds-icons": "3.46.6",
|
|
145
|
+
"@elliemae/ds-popperjs": "3.46.6",
|
|
146
|
+
"@elliemae/ds-props-helpers": "3.46.6",
|
|
147
|
+
"@elliemae/ds-system": "3.46.6"
|
|
148
148
|
},
|
|
149
149
|
"devDependencies": {
|
|
150
150
|
"@elliemae/pui-cli": "9.0.0-next.50",
|
|
151
151
|
"styled-components": "~5.3.9",
|
|
152
|
-
"@elliemae/ds-monorepo-devops": "3.46.
|
|
152
|
+
"@elliemae/ds-monorepo-devops": "3.46.6"
|
|
153
153
|
},
|
|
154
154
|
"peerDependencies": {
|
|
155
155
|
"lodash": "^4.17.21",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
"publishConfig": {
|
|
161
161
|
"access": "public",
|
|
162
|
-
"typeSafety":
|
|
162
|
+
"typeSafety": false
|
|
163
163
|
},
|
|
164
164
|
"scripts": {
|
|
165
165
|
"dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
|