@genesislcap/foundation-header 14.226.1 → 14.226.2-alpha-bcda968.0
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/custom-elements.json +21 -21
- package/dist/dts/main/main.d.ts +31 -11
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/esm/main/main.js +4 -2
- package/dist/foundation-header.d.ts +31 -11
- package/docs/api-report.md +1 -1
- package/package.json +22 -22
|
@@ -2110,6 +2110,27 @@
|
|
|
2110
2110
|
}
|
|
2111
2111
|
]
|
|
2112
2112
|
},
|
|
2113
|
+
{
|
|
2114
|
+
"kind": "javascript-module",
|
|
2115
|
+
"path": "src/tags/index.ts",
|
|
2116
|
+
"declarations": [],
|
|
2117
|
+
"exports": [
|
|
2118
|
+
{
|
|
2119
|
+
"kind": "js",
|
|
2120
|
+
"name": "*",
|
|
2121
|
+
"declaration": {
|
|
2122
|
+
"name": "*",
|
|
2123
|
+
"package": "./tags"
|
|
2124
|
+
}
|
|
2125
|
+
}
|
|
2126
|
+
]
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
"kind": "javascript-module",
|
|
2130
|
+
"path": "src/tags/tags.ts",
|
|
2131
|
+
"declarations": [],
|
|
2132
|
+
"exports": []
|
|
2133
|
+
},
|
|
2113
2134
|
{
|
|
2114
2135
|
"kind": "javascript-module",
|
|
2115
2136
|
"path": "src/styles/colors.ts",
|
|
@@ -2271,27 +2292,6 @@
|
|
|
2271
2292
|
}
|
|
2272
2293
|
]
|
|
2273
2294
|
},
|
|
2274
|
-
{
|
|
2275
|
-
"kind": "javascript-module",
|
|
2276
|
-
"path": "src/tags/index.ts",
|
|
2277
|
-
"declarations": [],
|
|
2278
|
-
"exports": [
|
|
2279
|
-
{
|
|
2280
|
-
"kind": "js",
|
|
2281
|
-
"name": "*",
|
|
2282
|
-
"declaration": {
|
|
2283
|
-
"name": "*",
|
|
2284
|
-
"package": "./tags"
|
|
2285
|
-
}
|
|
2286
|
-
}
|
|
2287
|
-
]
|
|
2288
|
-
},
|
|
2289
|
-
{
|
|
2290
|
-
"kind": "javascript-module",
|
|
2291
|
-
"path": "src/tags/tags.ts",
|
|
2292
|
-
"declarations": [],
|
|
2293
|
-
"exports": []
|
|
2294
|
-
},
|
|
2295
2295
|
{
|
|
2296
2296
|
"kind": "javascript-module",
|
|
2297
2297
|
"path": "src/templates/rapid.template.ts",
|
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AuthRouting } from '@genesislcap/foundation-auth/routing';
|
|
2
2
|
import { I18next } from '@genesislcap/foundation-i18n';
|
|
3
3
|
import { LoginRouting } from '@genesislcap/foundation-login';
|
|
4
|
-
import
|
|
4
|
+
import { FoundationRouteNavItem } from '@genesislcap/foundation-ui';
|
|
5
5
|
import { User } from '@genesislcap/foundation-user';
|
|
6
6
|
import { Container } from '@genesislcap/web-core';
|
|
7
7
|
import type { ViewTemplate } from '@genesislcap/web-core';
|
|
@@ -171,6 +171,10 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
171
171
|
ariaBusy: string;
|
|
172
172
|
ariaChecked: string;
|
|
173
173
|
ariaColCount: string;
|
|
174
|
+
/**
|
|
175
|
+
* Selects the appropriate template based on the component's state
|
|
176
|
+
* @returns \{ViewTemplate<Navigation>\}
|
|
177
|
+
*/
|
|
174
178
|
ariaColIndex: string;
|
|
175
179
|
ariaColIndexText: string;
|
|
176
180
|
ariaColSpan: string;
|
|
@@ -180,6 +184,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
180
184
|
ariaHasPopup: string;
|
|
181
185
|
ariaHidden: string;
|
|
182
186
|
ariaInvalid: string;
|
|
187
|
+
/**
|
|
188
|
+
* Logs the user out of their session
|
|
189
|
+
*
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
183
192
|
ariaKeyShortcuts: string;
|
|
184
193
|
ariaLabel: string;
|
|
185
194
|
ariaLevel: string;
|
|
@@ -192,6 +201,17 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
192
201
|
ariaPosInSet: string;
|
|
193
202
|
ariaPressed: string;
|
|
194
203
|
ariaReadOnly: string;
|
|
204
|
+
/**
|
|
205
|
+
* Changes the route of the current page
|
|
206
|
+
*
|
|
207
|
+
* @remarks
|
|
208
|
+
*
|
|
209
|
+
* Requires setup of the Router and usage of the Router
|
|
210
|
+
*
|
|
211
|
+
* @param path - string representing the new route to move to
|
|
212
|
+
*
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
195
215
|
ariaRequired: string;
|
|
196
216
|
ariaRoleDescription: string;
|
|
197
217
|
ariaRowCount: string;
|
|
@@ -215,15 +235,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
215
235
|
innerHTML: string;
|
|
216
236
|
readonly nextElementSibling: Element;
|
|
217
237
|
readonly previousElementSibling: Element;
|
|
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
|
-
*/
|
|
238
|
+
readonly childElementCount: number;
|
|
227
239
|
readonly children: HTMLCollection;
|
|
228
240
|
readonly firstElementChild: Element;
|
|
229
241
|
readonly lastElementChild: Element;
|
|
@@ -245,7 +257,15 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
245
257
|
enterKeyHint: string;
|
|
246
258
|
inputMode: string;
|
|
247
259
|
readonly isContentEditable: boolean;
|
|
248
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
260
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any; /**
|
|
261
|
+
* Changes the language of the application
|
|
262
|
+
*
|
|
263
|
+
* @remarks
|
|
264
|
+
*
|
|
265
|
+
* Activated when the user selects a language from the language selector that uses the I18next service.
|
|
266
|
+
*
|
|
267
|
+
* @experimental
|
|
268
|
+
*/
|
|
249
269
|
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
250
270
|
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
251
271
|
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
@@ -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;
|
|
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
|
@@ -4,8 +4,9 @@ import { AuthRouting } from '@genesislcap/foundation-auth/routing';
|
|
|
4
4
|
import { EventEmitter } from '@genesislcap/foundation-events';
|
|
5
5
|
import { I18next } from '@genesislcap/foundation-i18n';
|
|
6
6
|
import { LoginConfig, LoginRouting } from '@genesislcap/foundation-login';
|
|
7
|
+
import { FoundationRouteNav } from '@genesislcap/foundation-ui';
|
|
7
8
|
import { User } from '@genesislcap/foundation-user';
|
|
8
|
-
import { GenesisElement, customElement, observable, attr,
|
|
9
|
+
import { GenesisElement, customElement, observable, attr, Container } from '@genesislcap/web-core';
|
|
9
10
|
import logo from '../assets/logo.svg';
|
|
10
11
|
import { HeaderConfig } from '../config/config';
|
|
11
12
|
import { rapidTemplate } from '../templates/rapid.template';
|
|
@@ -193,7 +194,8 @@ let Navigation = class Navigation extends EventEmitter(GenesisElement) {
|
|
|
193
194
|
navigateTo(path) {
|
|
194
195
|
try {
|
|
195
196
|
logger.debug('navigateTo', path);
|
|
196
|
-
|
|
197
|
+
// Review for name based navigation
|
|
198
|
+
FoundationRouteNav.path.push(path);
|
|
197
199
|
}
|
|
198
200
|
catch (err) {
|
|
199
201
|
logger.error(`Error: ${err.message}`);
|
|
@@ -4,7 +4,7 @@ import { Controller } from '@microsoft/fast-element';
|
|
|
4
4
|
import { ElementStyles } from '@microsoft/fast-element';
|
|
5
5
|
import { EmitOptions } from '@genesislcap/foundation-events';
|
|
6
6
|
import { EmitReturn } from '@genesislcap/foundation-events';
|
|
7
|
-
import
|
|
7
|
+
import { FoundationRouteNavItem } from '@genesislcap/foundation-ui';
|
|
8
8
|
import { I18next } from '@genesislcap/foundation-i18n';
|
|
9
9
|
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
|
10
10
|
import { LoginRouting } from '@genesislcap/foundation-login';
|
|
@@ -612,6 +612,10 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
612
612
|
ariaBusy: string;
|
|
613
613
|
ariaChecked: string;
|
|
614
614
|
ariaColCount: string;
|
|
615
|
+
/**
|
|
616
|
+
* Selects the appropriate template based on the component's state
|
|
617
|
+
* @returns \{ViewTemplate<Navigation>\}
|
|
618
|
+
*/
|
|
615
619
|
ariaColIndex: string;
|
|
616
620
|
ariaColIndexText: string;
|
|
617
621
|
ariaColSpan: string;
|
|
@@ -621,6 +625,11 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
621
625
|
ariaHasPopup: string;
|
|
622
626
|
ariaHidden: string;
|
|
623
627
|
ariaInvalid: string;
|
|
628
|
+
/**
|
|
629
|
+
* Logs the user out of their session
|
|
630
|
+
*
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
624
633
|
ariaKeyShortcuts: string;
|
|
625
634
|
ariaLabel: string;
|
|
626
635
|
ariaLevel: string;
|
|
@@ -633,6 +642,17 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
633
642
|
ariaPosInSet: string;
|
|
634
643
|
ariaPressed: string;
|
|
635
644
|
ariaReadOnly: string;
|
|
645
|
+
/**
|
|
646
|
+
* Changes the route of the current page
|
|
647
|
+
*
|
|
648
|
+
* @remarks
|
|
649
|
+
*
|
|
650
|
+
* Requires setup of the Router and usage of the Router
|
|
651
|
+
*
|
|
652
|
+
* @param path - string representing the new route to move to
|
|
653
|
+
*
|
|
654
|
+
* @public
|
|
655
|
+
*/
|
|
636
656
|
ariaRequired: string;
|
|
637
657
|
ariaRoleDescription: string;
|
|
638
658
|
ariaRowCount: string;
|
|
@@ -656,15 +676,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
656
676
|
innerHTML: string;
|
|
657
677
|
readonly nextElementSibling: Element;
|
|
658
678
|
readonly previousElementSibling: Element;
|
|
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
|
-
*/
|
|
679
|
+
readonly childElementCount: number;
|
|
668
680
|
readonly children: HTMLCollection;
|
|
669
681
|
readonly firstElementChild: Element;
|
|
670
682
|
readonly lastElementChild: Element;
|
|
@@ -686,7 +698,15 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
686
698
|
enterKeyHint: string;
|
|
687
699
|
inputMode: string;
|
|
688
700
|
readonly isContentEditable: boolean;
|
|
689
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
701
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any; /**
|
|
702
|
+
* Changes the language of the application
|
|
703
|
+
*
|
|
704
|
+
* @remarks
|
|
705
|
+
*
|
|
706
|
+
* Activated when the user selects a language from the language selector that uses the I18next service.
|
|
707
|
+
*
|
|
708
|
+
* @experimental
|
|
709
|
+
*/
|
|
690
710
|
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
691
711
|
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
692
712
|
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
package/docs/api-report.md
CHANGED
|
@@ -10,7 +10,7 @@ import { Controller } from '@microsoft/fast-element';
|
|
|
10
10
|
import { ElementStyles } from '@microsoft/fast-element';
|
|
11
11
|
import { EmitOptions } from '@genesislcap/foundation-events';
|
|
12
12
|
import { EmitReturn } from '@genesislcap/foundation-events';
|
|
13
|
-
import
|
|
13
|
+
import { FoundationRouteNavItem } from '@genesislcap/foundation-ui';
|
|
14
14
|
import { I18next } from '@genesislcap/foundation-i18n';
|
|
15
15
|
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
|
16
16
|
import { LoginRouting } from '@genesislcap/foundation-login';
|
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.226.
|
|
4
|
+
"version": "14.226.2-alpha-bcda968.0",
|
|
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.226.
|
|
81
|
-
"@genesislcap/genx": "14.226.
|
|
82
|
-
"@genesislcap/rollup-builder": "14.226.
|
|
83
|
-
"@genesislcap/ts-builder": "14.226.
|
|
84
|
-
"@genesislcap/uvu-playwright-builder": "14.226.
|
|
85
|
-
"@genesislcap/vite-builder": "14.226.
|
|
86
|
-
"@genesislcap/webpack-builder": "14.226.
|
|
80
|
+
"@genesislcap/foundation-testing": "14.226.2-alpha-bcda968.0",
|
|
81
|
+
"@genesislcap/genx": "14.226.2-alpha-bcda968.0",
|
|
82
|
+
"@genesislcap/rollup-builder": "14.226.2-alpha-bcda968.0",
|
|
83
|
+
"@genesislcap/ts-builder": "14.226.2-alpha-bcda968.0",
|
|
84
|
+
"@genesislcap/uvu-playwright-builder": "14.226.2-alpha-bcda968.0",
|
|
85
|
+
"@genesislcap/vite-builder": "14.226.2-alpha-bcda968.0",
|
|
86
|
+
"@genesislcap/webpack-builder": "14.226.2-alpha-bcda968.0",
|
|
87
87
|
"rimraf": "^5.0.0"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@genesislcap/foundation-auth": "14.226.
|
|
91
|
-
"@genesislcap/foundation-comms": "14.226.
|
|
92
|
-
"@genesislcap/foundation-events": "14.226.
|
|
93
|
-
"@genesislcap/foundation-i18n": "14.226.
|
|
94
|
-
"@genesislcap/foundation-logger": "14.226.
|
|
95
|
-
"@genesislcap/foundation-login": "14.226.
|
|
96
|
-
"@genesislcap/foundation-shell": "14.226.
|
|
97
|
-
"@genesislcap/foundation-ui": "14.226.
|
|
98
|
-
"@genesislcap/foundation-user": "14.226.
|
|
99
|
-
"@genesislcap/foundation-utils": "14.226.
|
|
100
|
-
"@genesislcap/foundation-zero": "14.226.
|
|
101
|
-
"@genesislcap/rapid-design-system": "14.226.
|
|
102
|
-
"@genesislcap/web-core": "14.226.
|
|
90
|
+
"@genesislcap/foundation-auth": "14.226.2-alpha-bcda968.0",
|
|
91
|
+
"@genesislcap/foundation-comms": "14.226.2-alpha-bcda968.0",
|
|
92
|
+
"@genesislcap/foundation-events": "14.226.2-alpha-bcda968.0",
|
|
93
|
+
"@genesislcap/foundation-i18n": "14.226.2-alpha-bcda968.0",
|
|
94
|
+
"@genesislcap/foundation-logger": "14.226.2-alpha-bcda968.0",
|
|
95
|
+
"@genesislcap/foundation-login": "14.226.2-alpha-bcda968.0",
|
|
96
|
+
"@genesislcap/foundation-shell": "14.226.2-alpha-bcda968.0",
|
|
97
|
+
"@genesislcap/foundation-ui": "14.226.2-alpha-bcda968.0",
|
|
98
|
+
"@genesislcap/foundation-user": "14.226.2-alpha-bcda968.0",
|
|
99
|
+
"@genesislcap/foundation-utils": "14.226.2-alpha-bcda968.0",
|
|
100
|
+
"@genesislcap/foundation-zero": "14.226.2-alpha-bcda968.0",
|
|
101
|
+
"@genesislcap/rapid-design-system": "14.226.2-alpha-bcda968.0",
|
|
102
|
+
"@genesislcap/web-core": "14.226.2-alpha-bcda968.0",
|
|
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": "9af9df8ba21d267f9bb916dcdc29796cd9f3e007"
|
|
115
115
|
}
|