@utahdts/utah-design-system-header 3.0.0 → 3.0.2
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 +2 -0
- package/dist/style.css +3 -0
- package/dist/utah-design-system-header.es.js +581 -484
- package/dist/utah-design-system-header.umd.js +118 -34
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ declare module "@utahdts/utah-design-system-header" {
|
|
|
7
7
|
export type ChildrenMenuTypes = ("flyout" | "inline" | "mega-menu" | "plain");
|
|
8
8
|
export type Environments = "none" | "a1" | "a2" | "a3" | "custom" | "unittest";
|
|
9
9
|
export type Events = "utahHeaderLoaded" | "utahHeaderUnloaded";
|
|
10
|
+
export type HeaderApplicationTypes = 'wordpress' | 'static site' | 'salesforce' | 'custom application' | 'microsoft power apps' | 'servicenow';
|
|
10
11
|
export type PopupPlacement = "auto" | "auto-start" | "auto-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end" | "top" | "top-start" | "top-end";
|
|
11
12
|
export type Size = "SMALL" | "MEDIUM" | "LARGE";
|
|
12
13
|
export type UtahIdFetchStyle = "Automatic" | "None" | "Provided";
|
|
@@ -144,6 +145,7 @@ declare module "@utahdts/utah-design-system-header" {
|
|
|
144
145
|
};
|
|
145
146
|
export type Settings = {
|
|
146
147
|
actionItems?: ActionItem[] | undefined;
|
|
148
|
+
applicationType: HeaderApplicationTypes,
|
|
147
149
|
domLocationTarget?: DomLocationTarget | undefined;
|
|
148
150
|
footer?: FooterSettings | null | undefined;
|
|
149
151
|
logo?: Logo | undefined;
|