@genesislcap/foundation-header 14.225.2-alpha-a585c9d.0 → 14.225.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/dts/main/main.d.ts +14 -43
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/esm/main/main.js +1 -1
- package/dist/foundation-header.d.ts +14 -43
- package/package.json +22 -22
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -66,16 +66,10 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
66
66
|
readonly ownerDocument: Document;
|
|
67
67
|
readonly part: DOMTokenList;
|
|
68
68
|
readonly prefix: string;
|
|
69
|
-
/**
|
|
70
|
-
* @internal
|
|
71
|
-
* Flag to indicate if the component is ready
|
|
72
|
-
*/
|
|
73
69
|
readonly scrollHeight: number;
|
|
74
70
|
scrollLeft: number;
|
|
75
71
|
scrollTop: number;
|
|
76
|
-
readonly scrollWidth: number;
|
|
77
|
-
* Username of the logged in user
|
|
78
|
-
*/
|
|
72
|
+
readonly scrollWidth: number;
|
|
79
73
|
readonly shadowRoot: ShadowRoot;
|
|
80
74
|
slot: string;
|
|
81
75
|
readonly tagName: string;
|
|
@@ -84,14 +78,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
84
78
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
85
79
|
closest<E extends Element = Element>(selectors: string): E;
|
|
86
80
|
getAttribute(qualifiedName: string): string;
|
|
87
|
-
getAttributeNS(namespace: string, localName: string): string;
|
|
88
|
-
* Optional attribute which controls the icon to show on the navigation bar and flyout
|
|
89
|
-
* Control via `logo-src`
|
|
90
|
-
*
|
|
91
|
-
* @remarks
|
|
92
|
-
*
|
|
93
|
-
* If this attribute is not set then the Genesis logo is shown instead
|
|
94
|
-
*/
|
|
81
|
+
getAttributeNS(namespace: string, localName: string): string;
|
|
95
82
|
getAttributeNames(): string[];
|
|
96
83
|
getAttributeNode(qualifiedName: string): Attr;
|
|
97
84
|
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
@@ -135,9 +122,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
135
122
|
readonly baseURI: string;
|
|
136
123
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
137
124
|
readonly firstChild: ChildNode;
|
|
138
|
-
readonly isConnected: boolean;
|
|
139
|
-
* Object which defines the language options to be displayed in the language selector
|
|
140
|
-
*/
|
|
125
|
+
readonly isConnected: boolean;
|
|
141
126
|
readonly lastChild: ChildNode;
|
|
142
127
|
readonly nextSibling: ChildNode;
|
|
143
128
|
readonly nodeName: string;
|
|
@@ -146,11 +131,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
146
131
|
readonly parentElement: HTMLElement;
|
|
147
132
|
readonly parentNode: ParentNode;
|
|
148
133
|
readonly previousSibling: ChildNode;
|
|
149
|
-
/**
|
|
150
|
-
* Boolean attribute which controls whether to include the sideNav component
|
|
151
|
-
* Control via`hide-side-bar`
|
|
152
|
-
*
|
|
153
|
-
*/
|
|
154
134
|
textContent: string;
|
|
155
135
|
appendChild<T extends Node>(node: T): T;
|
|
156
136
|
cloneNode(deep?: boolean): Node;
|
|
@@ -235,7 +215,15 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
235
215
|
innerHTML: string;
|
|
236
216
|
readonly nextElementSibling: Element;
|
|
237
217
|
readonly previousElementSibling: Element;
|
|
238
|
-
readonly childElementCount: number;
|
|
218
|
+
readonly childElementCount: number; /**
|
|
219
|
+
* Explicitly closes the flyout menu on the left
|
|
220
|
+
*
|
|
221
|
+
* @privateRemarks
|
|
222
|
+
* When the user tabs though and out of the flyout, the hamburger menu item will be re-focused and when that occurs we
|
|
223
|
+
* can close the menu to return to normal flow.
|
|
224
|
+
*
|
|
225
|
+
* @internal
|
|
226
|
+
*/
|
|
239
227
|
readonly children: HTMLCollection;
|
|
240
228
|
readonly firstElementChild: Element;
|
|
241
229
|
readonly lastElementChild: Element;
|
|
@@ -248,29 +236,12 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
248
236
|
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
|
249
237
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
250
238
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
251
|
-
readonly assignedSlot: HTMLSlotElement;
|
|
252
|
-
* Emits the event corresponding to the notification icon being clicked
|
|
253
|
-
*
|
|
254
|
-
* @remarks
|
|
255
|
-
*
|
|
256
|
-
* Activated when the user clicks on the bell icon on the navigation
|
|
257
|
-
* bar right hand side
|
|
258
|
-
*
|
|
259
|
-
* @internal
|
|
260
|
-
*/
|
|
239
|
+
readonly assignedSlot: HTMLSlotElement;
|
|
261
240
|
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
262
241
|
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
263
242
|
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
264
243
|
readonly style: CSSStyleDeclaration;
|
|
265
|
-
contentEditable: string;
|
|
266
|
-
* Changes the language of the application
|
|
267
|
-
*
|
|
268
|
-
* @remarks
|
|
269
|
-
*
|
|
270
|
-
* Activated when the user selects a language from the language selector that uses the I18next service.
|
|
271
|
-
*
|
|
272
|
-
* @experimental
|
|
273
|
-
*/
|
|
244
|
+
contentEditable: string;
|
|
274
245
|
enterKeyHint: string;
|
|
275
246
|
inputMode: string;
|
|
276
247
|
readonly isContentEditable: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AAEnE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,EAAe,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC1E,OAAO,KAAK,EAAE,sBAAsB,EAAuB,MAAM,4BAA4B,CAAC;AAC9F,OAAO,EAAE,IAAI,EAAE,MAAM,8BAA8B,CAAC;AACpD,OAAO,EAML,SAAS,EACV,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE1D,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAMhD;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,wBAAwB,EAAE,IAAI,CAAC;IAC/B,mBAAmB,EAAE,IAAI,CAAC;IAC1B,2BAA2B,EAAE,IAAI,CAAC;IAClC,kBAAkB,EAAE,IAAI,CAAC;CAC1B,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/main/main.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __awaiter, __decorate } from "tslib";
|
|
2
|
-
import { AuthConfig } from '@genesislcap/foundation-auth';
|
|
2
|
+
import { AuthConfig } from '@genesislcap/foundation-auth/config';
|
|
3
3
|
import { AuthRouting } from '@genesislcap/foundation-auth/routing';
|
|
4
4
|
import { EventEmitter } from '@genesislcap/foundation-events';
|
|
5
5
|
import { I18next } from '@genesislcap/foundation-i18n';
|
|
@@ -507,16 +507,10 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
507
507
|
readonly ownerDocument: Document;
|
|
508
508
|
readonly part: DOMTokenList;
|
|
509
509
|
readonly prefix: string;
|
|
510
|
-
/**
|
|
511
|
-
* @internal
|
|
512
|
-
* Flag to indicate if the component is ready
|
|
513
|
-
*/
|
|
514
510
|
readonly scrollHeight: number;
|
|
515
511
|
scrollLeft: number;
|
|
516
512
|
scrollTop: number;
|
|
517
|
-
readonly scrollWidth: number;
|
|
518
|
-
* Username of the logged in user
|
|
519
|
-
*/
|
|
513
|
+
readonly scrollWidth: number;
|
|
520
514
|
readonly shadowRoot: ShadowRoot;
|
|
521
515
|
slot: string;
|
|
522
516
|
readonly tagName: string;
|
|
@@ -525,14 +519,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
525
519
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
|
526
520
|
closest<E extends Element = Element>(selectors: string): E;
|
|
527
521
|
getAttribute(qualifiedName: string): string;
|
|
528
|
-
getAttributeNS(namespace: string, localName: string): string;
|
|
529
|
-
* Optional attribute which controls the icon to show on the navigation bar and flyout
|
|
530
|
-
* Control via `logo-src`
|
|
531
|
-
*
|
|
532
|
-
* @remarks
|
|
533
|
-
*
|
|
534
|
-
* If this attribute is not set then the Genesis logo is shown instead
|
|
535
|
-
*/
|
|
522
|
+
getAttributeNS(namespace: string, localName: string): string;
|
|
536
523
|
getAttributeNames(): string[];
|
|
537
524
|
getAttributeNode(qualifiedName: string): Attr;
|
|
538
525
|
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
@@ -576,9 +563,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
576
563
|
readonly baseURI: string;
|
|
577
564
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
578
565
|
readonly firstChild: ChildNode;
|
|
579
|
-
readonly isConnected: boolean;
|
|
580
|
-
* Object which defines the language options to be displayed in the language selector
|
|
581
|
-
*/
|
|
566
|
+
readonly isConnected: boolean;
|
|
582
567
|
readonly lastChild: ChildNode;
|
|
583
568
|
readonly nextSibling: ChildNode;
|
|
584
569
|
readonly nodeName: string;
|
|
@@ -587,11 +572,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
587
572
|
readonly parentElement: HTMLElement;
|
|
588
573
|
readonly parentNode: ParentNode;
|
|
589
574
|
readonly previousSibling: ChildNode;
|
|
590
|
-
/**
|
|
591
|
-
* Boolean attribute which controls whether to include the sideNav component
|
|
592
|
-
* Control via`hide-side-bar`
|
|
593
|
-
*
|
|
594
|
-
*/
|
|
595
575
|
textContent: string;
|
|
596
576
|
appendChild<T extends Node>(node: T): T;
|
|
597
577
|
cloneNode(deep?: boolean): Node;
|
|
@@ -676,7 +656,15 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
676
656
|
innerHTML: string;
|
|
677
657
|
readonly nextElementSibling: Element;
|
|
678
658
|
readonly previousElementSibling: Element;
|
|
679
|
-
readonly childElementCount: number;
|
|
659
|
+
readonly childElementCount: number; /**
|
|
660
|
+
* Explicitly closes the flyout menu on the left
|
|
661
|
+
*
|
|
662
|
+
* @privateRemarks
|
|
663
|
+
* When the user tabs though and out of the flyout, the hamburger menu item will be re-focused and when that occurs we
|
|
664
|
+
* can close the menu to return to normal flow.
|
|
665
|
+
*
|
|
666
|
+
* @internal
|
|
667
|
+
*/
|
|
680
668
|
readonly children: HTMLCollection;
|
|
681
669
|
readonly firstElementChild: Element;
|
|
682
670
|
readonly lastElementChild: Element;
|
|
@@ -689,29 +677,12 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
689
677
|
querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
|
|
690
678
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
691
679
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
692
|
-
readonly assignedSlot: HTMLSlotElement;
|
|
693
|
-
* Emits the event corresponding to the notification icon being clicked
|
|
694
|
-
*
|
|
695
|
-
* @remarks
|
|
696
|
-
*
|
|
697
|
-
* Activated when the user clicks on the bell icon on the navigation
|
|
698
|
-
* bar right hand side
|
|
699
|
-
*
|
|
700
|
-
* @internal
|
|
701
|
-
*/
|
|
680
|
+
readonly assignedSlot: HTMLSlotElement;
|
|
702
681
|
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
703
682
|
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
704
683
|
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
705
684
|
readonly style: CSSStyleDeclaration;
|
|
706
|
-
contentEditable: string;
|
|
707
|
-
* Changes the language of the application
|
|
708
|
-
*
|
|
709
|
-
* @remarks
|
|
710
|
-
*
|
|
711
|
-
* Activated when the user selects a language from the language selector that uses the I18next service.
|
|
712
|
-
*
|
|
713
|
-
* @experimental
|
|
714
|
-
*/
|
|
685
|
+
contentEditable: string;
|
|
715
686
|
enterKeyHint: string;
|
|
716
687
|
inputMode: string;
|
|
717
688
|
readonly isContentEditable: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-header",
|
|
3
3
|
"description": "Genesis Foundation Header",
|
|
4
|
-
"version": "14.225.2
|
|
4
|
+
"version": "14.225.2",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-header.d.ts",
|
|
@@ -77,29 +77,29 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@genesislcap/foundation-testing": "14.225.2
|
|
81
|
-
"@genesislcap/genx": "14.225.2
|
|
82
|
-
"@genesislcap/rollup-builder": "14.225.2
|
|
83
|
-
"@genesislcap/ts-builder": "14.225.2
|
|
84
|
-
"@genesislcap/uvu-playwright-builder": "14.225.2
|
|
85
|
-
"@genesislcap/vite-builder": "14.225.2
|
|
86
|
-
"@genesislcap/webpack-builder": "14.225.2
|
|
80
|
+
"@genesislcap/foundation-testing": "14.225.2",
|
|
81
|
+
"@genesislcap/genx": "14.225.2",
|
|
82
|
+
"@genesislcap/rollup-builder": "14.225.2",
|
|
83
|
+
"@genesislcap/ts-builder": "14.225.2",
|
|
84
|
+
"@genesislcap/uvu-playwright-builder": "14.225.2",
|
|
85
|
+
"@genesislcap/vite-builder": "14.225.2",
|
|
86
|
+
"@genesislcap/webpack-builder": "14.225.2",
|
|
87
87
|
"rimraf": "^5.0.0"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@genesislcap/foundation-auth": "14.225.2
|
|
91
|
-
"@genesislcap/foundation-comms": "14.225.2
|
|
92
|
-
"@genesislcap/foundation-events": "14.225.2
|
|
93
|
-
"@genesislcap/foundation-i18n": "14.225.2
|
|
94
|
-
"@genesislcap/foundation-logger": "14.225.2
|
|
95
|
-
"@genesislcap/foundation-login": "14.225.2
|
|
96
|
-
"@genesislcap/foundation-shell": "14.225.2
|
|
97
|
-
"@genesislcap/foundation-ui": "14.225.2
|
|
98
|
-
"@genesislcap/foundation-user": "14.225.2
|
|
99
|
-
"@genesislcap/foundation-utils": "14.225.2
|
|
100
|
-
"@genesislcap/foundation-zero": "14.225.2
|
|
101
|
-
"@genesislcap/rapid-design-system": "14.225.2
|
|
102
|
-
"@genesislcap/web-core": "14.225.2
|
|
90
|
+
"@genesislcap/foundation-auth": "14.225.2",
|
|
91
|
+
"@genesislcap/foundation-comms": "14.225.2",
|
|
92
|
+
"@genesislcap/foundation-events": "14.225.2",
|
|
93
|
+
"@genesislcap/foundation-i18n": "14.225.2",
|
|
94
|
+
"@genesislcap/foundation-logger": "14.225.2",
|
|
95
|
+
"@genesislcap/foundation-login": "14.225.2",
|
|
96
|
+
"@genesislcap/foundation-shell": "14.225.2",
|
|
97
|
+
"@genesislcap/foundation-ui": "14.225.2",
|
|
98
|
+
"@genesislcap/foundation-user": "14.225.2",
|
|
99
|
+
"@genesislcap/foundation-utils": "14.225.2",
|
|
100
|
+
"@genesislcap/foundation-zero": "14.225.2",
|
|
101
|
+
"@genesislcap/rapid-design-system": "14.225.2",
|
|
102
|
+
"@genesislcap/web-core": "14.225.2",
|
|
103
103
|
"tslib": "^2.3.1"
|
|
104
104
|
},
|
|
105
105
|
"repository": {
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"access": "public"
|
|
112
112
|
},
|
|
113
113
|
"customElements": "dist/custom-elements.json",
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "efec98261d69a035d907eb4bcf8bc42bbb4ae657"
|
|
115
115
|
}
|