@utahdts/utah-design-system-header 4.3.0 → 5.0.1
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/index.d.ts +3 -1
- package/dist/style.css +435 -38
- package/dist/utah-design-system-header.es.js +2533 -3136
- package/dist/utah-design-system-header.umd.js +210 -124
- package/package.json +8 -8
- package/src/css/media-queries.css +6 -8
package/dist/index.d.ts
CHANGED
|
@@ -110,6 +110,7 @@ declare module "@utahdts/utah-design-system-header" {
|
|
|
110
110
|
env?: string | undefined;
|
|
111
111
|
first: string | null | undefined;
|
|
112
112
|
id?: string | null | undefined;
|
|
113
|
+
isPublic?: string | null | undefined;
|
|
113
114
|
last?: string | null | undefined;
|
|
114
115
|
mail?: string[] | null | undefined;
|
|
115
116
|
middle?: string | null | undefined;
|
|
@@ -129,6 +130,7 @@ declare module "@utahdts/utah-design-system-header" {
|
|
|
129
130
|
onSignIn?: ((arg0: UIEvent) => void | undefined) | undefined;
|
|
130
131
|
onSignOut?: ((arg0: UIEvent) => void | undefined) | undefined;
|
|
131
132
|
menuItems?: MenuItem[] | undefined;
|
|
133
|
+
notifications?: boolean | undefined;
|
|
132
134
|
};
|
|
133
135
|
export type Logo = {
|
|
134
136
|
element?: HTMLElement | (() => HTMLElement) | undefined;
|
|
@@ -158,7 +160,7 @@ declare module "@utahdts/utah-design-system-header" {
|
|
|
158
160
|
title: string;
|
|
159
161
|
titleFunction?: EventAction | undefined;
|
|
160
162
|
titleUrl?: string | undefined;
|
|
161
|
-
utahId?:
|
|
163
|
+
utahId?: UtahIDSettings | boolean | undefined;
|
|
162
164
|
};
|
|
163
165
|
export type childrenMenuTypes = ChildrenMenuTypes;
|
|
164
166
|
export namespace childrenMenuTypes {
|