@genesislcap/foundation-header 14.184.0 → 14.185.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 +26 -30
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/esm/main/main.js +1 -1
- package/dist/foundation-header.d.ts +25 -29
- package/package.json +26 -18
|
@@ -31,6 +31,27 @@
|
|
|
31
31
|
}
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
|
+
{
|
|
35
|
+
"kind": "javascript-module",
|
|
36
|
+
"path": "src/components/zero-components.ts",
|
|
37
|
+
"declarations": [
|
|
38
|
+
{
|
|
39
|
+
"kind": "function",
|
|
40
|
+
"name": "registerCommonZeroComponents",
|
|
41
|
+
"privacy": "public"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"exports": [
|
|
45
|
+
{
|
|
46
|
+
"kind": "js",
|
|
47
|
+
"name": "registerCommonZeroComponents",
|
|
48
|
+
"declaration": {
|
|
49
|
+
"name": "registerCommonZeroComponents",
|
|
50
|
+
"module": "src/components/zero-components.ts"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
},
|
|
34
55
|
{
|
|
35
56
|
"kind": "javascript-module",
|
|
36
57
|
"path": "src/config/config.ts",
|
|
@@ -151,27 +172,6 @@
|
|
|
151
172
|
}
|
|
152
173
|
]
|
|
153
174
|
},
|
|
154
|
-
{
|
|
155
|
-
"kind": "javascript-module",
|
|
156
|
-
"path": "src/components/zero-components.ts",
|
|
157
|
-
"declarations": [
|
|
158
|
-
{
|
|
159
|
-
"kind": "function",
|
|
160
|
-
"name": "registerCommonZeroComponents",
|
|
161
|
-
"privacy": "public"
|
|
162
|
-
}
|
|
163
|
-
],
|
|
164
|
-
"exports": [
|
|
165
|
-
{
|
|
166
|
-
"kind": "js",
|
|
167
|
-
"name": "registerCommonZeroComponents",
|
|
168
|
-
"declaration": {
|
|
169
|
-
"name": "registerCommonZeroComponents",
|
|
170
|
-
"module": "src/components/zero-components.ts"
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
]
|
|
174
|
-
},
|
|
175
175
|
{
|
|
176
176
|
"kind": "javascript-module",
|
|
177
177
|
"path": "src/main/index.ts",
|
package/dist/dts/main/main.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Auth, CredentialManager } from '@genesislcap/foundation-comms';
|
|
2
2
|
import { I18next } from '@genesislcap/foundation-i18n';
|
|
3
3
|
import type { FoundationRouteNavItem } from '@genesislcap/foundation-ui';
|
|
4
|
-
import { HeaderConfig } from '../config';
|
|
4
|
+
import { HeaderConfig } from '../config/config';
|
|
5
5
|
/**
|
|
6
6
|
* Events dispatched by the navigation control buttons
|
|
7
7
|
* @public
|
|
@@ -64,14 +64,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
64
64
|
readonly prefix: string;
|
|
65
65
|
readonly scrollHeight: number;
|
|
66
66
|
scrollLeft: number;
|
|
67
|
-
/**
|
|
68
|
-
* Optional attribute which controls the icon to show on the navigation bar and flyout
|
|
69
|
-
* Control via `logo-src`
|
|
70
|
-
*
|
|
71
|
-
* @remarks
|
|
72
|
-
*
|
|
73
|
-
* If this attribute is not set then the Genesis logo is shown instead
|
|
74
|
-
*/
|
|
75
67
|
scrollTop: number;
|
|
76
68
|
readonly scrollWidth: number;
|
|
77
69
|
readonly shadowRoot: ShadowRoot;
|
|
@@ -95,6 +87,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
95
87
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
96
88
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
97
89
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
98
93
|
hasAttribute(qualifiedName: string): boolean;
|
|
99
94
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
100
95
|
hasAttributes(): boolean;
|
|
@@ -166,17 +161,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
166
161
|
readonly ELEMENT_NODE: number;
|
|
167
162
|
readonly ENTITY_NODE: number;
|
|
168
163
|
readonly ENTITY_REFERENCE_NODE: number;
|
|
169
|
-
readonly NOTATION_NODE: number;
|
|
170
|
-
* Changes the route of the current page
|
|
171
|
-
*
|
|
172
|
-
* @remarks
|
|
173
|
-
*
|
|
174
|
-
* Requires setup of the Router and usage of the FAST Router
|
|
175
|
-
*
|
|
176
|
-
* @param path - string represeting the new route to move to
|
|
177
|
-
*
|
|
178
|
-
* @public
|
|
179
|
-
*/
|
|
164
|
+
readonly NOTATION_NODE: number;
|
|
180
165
|
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
181
166
|
readonly TEXT_NODE: number;
|
|
182
167
|
dispatchEvent(event: Event): boolean;
|
|
@@ -201,16 +186,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
201
186
|
ariaModal: string;
|
|
202
187
|
ariaMultiLine: string;
|
|
203
188
|
ariaMultiSelectable: string;
|
|
204
|
-
ariaOrientation: string;
|
|
205
|
-
* Emits the event corresponding to the luminance icon being clicked
|
|
206
|
-
*
|
|
207
|
-
* @remarks
|
|
208
|
-
*
|
|
209
|
-
* Activated when the user clicks on the moon icon on the navigation
|
|
210
|
-
* bar right hand side
|
|
211
|
-
*
|
|
212
|
-
* @internal
|
|
213
|
-
*/
|
|
189
|
+
ariaOrientation: string;
|
|
214
190
|
ariaPlaceholder: string;
|
|
215
191
|
ariaPosInSet: string;
|
|
216
192
|
ariaPressed: string;
|
|
@@ -222,6 +198,16 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
222
198
|
ariaRowIndexText: string;
|
|
223
199
|
ariaRowSpan: string;
|
|
224
200
|
ariaSelected: string;
|
|
201
|
+
/**
|
|
202
|
+
* Emits the event corresponding to the miscellaneous icon being clicked
|
|
203
|
+
*
|
|
204
|
+
* @remarks
|
|
205
|
+
*
|
|
206
|
+
* Activated when the user clicks on the menu icon on the navigation
|
|
207
|
+
* bar right hand side
|
|
208
|
+
*
|
|
209
|
+
* @internal
|
|
210
|
+
*/
|
|
225
211
|
ariaSetSize: string;
|
|
226
212
|
ariaSort: string;
|
|
227
213
|
ariaValueMax: string;
|
|
@@ -230,6 +216,16 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
230
216
|
ariaValueText: string;
|
|
231
217
|
role: string;
|
|
232
218
|
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
|
219
|
+
/**
|
|
220
|
+
* Emits the event corresponding to the notification icon being clicked
|
|
221
|
+
*
|
|
222
|
+
* @remarks
|
|
223
|
+
*
|
|
224
|
+
* Activated when the user clicks on the bell icon on the navigation
|
|
225
|
+
* bar right hand side
|
|
226
|
+
*
|
|
227
|
+
* @internal
|
|
228
|
+
*/
|
|
233
229
|
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
234
230
|
after(...nodes: (string | Node)[]): void;
|
|
235
231
|
before(...nodes: (string | Node)[]): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,iBAAiB,EAAgB,MAAM,+BAA+B,CAAC;AAEtF,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,KAAK,EAAE,sBAAsB,EAAuB,MAAM,4BAA4B,CAAC;AAI9F,OAAO,EAAE,YAAY,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,iBAAiB,EAAgB,MAAM,+BAA+B,CAAC;AAEtF,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,KAAK,EAAE,sBAAsB,EAAuB,MAAM,4BAA4B,CAAC;AAI9F,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAKhD;;;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAgHA;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAyKH;;;;;;;;;OASG;;;;;;;;;IAKH;;;;;;;;;OASG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA7SL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,qBAKa,UAAW,SAAQ,eAAmC;IAC3D,IAAI,EAAG,IAAI,CAAC;IACC,iBAAiB,EAAG,iBAAiB,CAAC;IAChD,OAAO,EAAG,OAAO,CAAC;IACb,YAAY,EAAG,YAAY,CAAC;IAE9B,KAAK,EAAE,OAAO,CAAS;IAEnC;;OAEG;IACgB,QAAQ,EAAE,MAAM,CAAC;IAExB,WAAW,UAAS;IAEnB,iBAAiB;IAU9B;;;;;;;OAOG;IAC8B,OAAO,EAAE,GAAG,CAAQ;IAErD;;;;;;;OAOG;IAEH,yBAAyB,EAAE,OAAO,CAAC;IAEnC;;;;;;;OAOG;IAC8D,oBAAoB,EAAE,OAAO,CAAC;IAE/F;;;;;;;;;OASG;IAEH,uBAAuB,EAAE,OAAO,CAAC;IAEjC;;OAEG;IACH,8BAA8B;IAI9B;;;;OAIG;IAEH,uBAAuB,EAAE,OAAO,CAAQ;IAExC;;;;;;;;OAQG;IAEH,oBAAoB,EAAE,OAAO,CAAS;IAE1B,eAAe,EAAE,eAAe,CAG1C;IAEF;;;;OAIG;IAEH,WAAW,EAAE,OAAO,CAAC;IAErB;;;;OAIG;IACS,YAAY,EAAE,KAAK,CAAC;QAC9B,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC,CAAC;IAEH;;OAEG;IACH,mBAAmB;IAiBnB;;OAEG;IACS,aAAa,EAAE,sBAAsB,EAAE,CAAC;IAEpD;;;;;;;;OAQG;IACG,WAAW;IAMjB,cAAc;IAId;;;;;;;;;OASG;IACU,MAAM;IAgBnB;;;;;;;;;;OAUG;IACI,UAAU,CAAC,IAAI,EAAE,MAAM;IAS9B;;;;;;;;;OASG;IACH,mBAAmB;IAInB;;;;;;;;;OASG;IACH,kBAAkB;IAIlB;;;;;;;;;OASG;IACH,aAAa;IAIb;;;;;;;;;OASG;IACH,qBAAqB;IAIrB;;;;;;;;OAQG;IACH,cAAc,CAAC,CAAC,EAAE,WAAW;IAK7B;;;;;;;;OAQG;IACH,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;CAKtC;AAED;;;;;;;;;;;;;;;GAeG;AACH,qBAAa,gBAAiB,SAAQ,UAAU;IACxC,WAAW;CAGlB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,qBAKa,UAAW,SAAQ,UAAU;CAAG"}
|
package/dist/esm/main/main.js
CHANGED
|
@@ -5,7 +5,7 @@ import { I18next } from '@genesislcap/foundation-i18n';
|
|
|
5
5
|
import { FASTElement, customElement, observable, attr } from '@microsoft/fast-element';
|
|
6
6
|
import { Route } from '@microsoft/fast-router';
|
|
7
7
|
import logo from '../assets/logo.svg';
|
|
8
|
-
import { HeaderConfig } from '../config';
|
|
8
|
+
import { HeaderConfig } from '../config/config';
|
|
9
9
|
import { logger } from '../utils';
|
|
10
10
|
import { MainStyles as styles } from './main.styles';
|
|
11
11
|
import { DynamicTemplate as template, LoadingTemplate, MainTemplate } from './main.template';
|
|
@@ -452,14 +452,6 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
452
452
|
readonly prefix: string;
|
|
453
453
|
readonly scrollHeight: number;
|
|
454
454
|
scrollLeft: number;
|
|
455
|
-
/**
|
|
456
|
-
* Optional attribute which controls the icon to show on the navigation bar and flyout
|
|
457
|
-
* Control via `logo-src`
|
|
458
|
-
*
|
|
459
|
-
* @remarks
|
|
460
|
-
*
|
|
461
|
-
* If this attribute is not set then the Genesis logo is shown instead
|
|
462
|
-
*/
|
|
463
455
|
scrollTop: number;
|
|
464
456
|
readonly scrollWidth: number;
|
|
465
457
|
readonly shadowRoot: ShadowRoot;
|
|
@@ -483,6 +475,9 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
483
475
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
484
476
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
485
477
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
478
|
+
/**
|
|
479
|
+
* @internal
|
|
480
|
+
*/
|
|
486
481
|
hasAttribute(qualifiedName: string): boolean;
|
|
487
482
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
488
483
|
hasAttributes(): boolean;
|
|
@@ -554,17 +549,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
554
549
|
readonly ELEMENT_NODE: number;
|
|
555
550
|
readonly ENTITY_NODE: number;
|
|
556
551
|
readonly ENTITY_REFERENCE_NODE: number;
|
|
557
|
-
readonly NOTATION_NODE: number;
|
|
558
|
-
* Changes the route of the current page
|
|
559
|
-
*
|
|
560
|
-
* @remarks
|
|
561
|
-
*
|
|
562
|
-
* Requires setup of the Router and usage of the FAST Router
|
|
563
|
-
*
|
|
564
|
-
* @param path - string represeting the new route to move to
|
|
565
|
-
*
|
|
566
|
-
* @public
|
|
567
|
-
*/
|
|
552
|
+
readonly NOTATION_NODE: number;
|
|
568
553
|
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
569
554
|
readonly TEXT_NODE: number;
|
|
570
555
|
dispatchEvent(event: Event): boolean;
|
|
@@ -589,16 +574,7 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
589
574
|
ariaModal: string;
|
|
590
575
|
ariaMultiLine: string;
|
|
591
576
|
ariaMultiSelectable: string;
|
|
592
|
-
ariaOrientation: string;
|
|
593
|
-
* Emits the event corresponding to the luminance icon being clicked
|
|
594
|
-
*
|
|
595
|
-
* @remarks
|
|
596
|
-
*
|
|
597
|
-
* Activated when the user clicks on the moon icon on the navigation
|
|
598
|
-
* bar right hand side
|
|
599
|
-
*
|
|
600
|
-
* @internal
|
|
601
|
-
*/
|
|
577
|
+
ariaOrientation: string;
|
|
602
578
|
ariaPlaceholder: string;
|
|
603
579
|
ariaPosInSet: string;
|
|
604
580
|
ariaPressed: string;
|
|
@@ -610,6 +586,16 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
610
586
|
ariaRowIndexText: string;
|
|
611
587
|
ariaRowSpan: string;
|
|
612
588
|
ariaSelected: string;
|
|
589
|
+
/**
|
|
590
|
+
* Emits the event corresponding to the miscellaneous icon being clicked
|
|
591
|
+
*
|
|
592
|
+
* @remarks
|
|
593
|
+
*
|
|
594
|
+
* Activated when the user clicks on the menu icon on the navigation
|
|
595
|
+
* bar right hand side
|
|
596
|
+
*
|
|
597
|
+
* @internal
|
|
598
|
+
*/
|
|
613
599
|
ariaSetSize: string;
|
|
614
600
|
ariaSort: string;
|
|
615
601
|
ariaValueMax: string;
|
|
@@ -618,6 +604,16 @@ declare const Navigation_base: abstract new (...args: any[]) => {
|
|
|
618
604
|
ariaValueText: string;
|
|
619
605
|
role: string;
|
|
620
606
|
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
|
607
|
+
/**
|
|
608
|
+
* Emits the event corresponding to the notification icon being clicked
|
|
609
|
+
*
|
|
610
|
+
* @remarks
|
|
611
|
+
*
|
|
612
|
+
* Activated when the user clicks on the bell icon on the navigation
|
|
613
|
+
* bar right hand side
|
|
614
|
+
*
|
|
615
|
+
* @internal
|
|
616
|
+
*/
|
|
621
617
|
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
622
618
|
after(...nodes: (string | Node)[]): void;
|
|
623
619
|
before(...nodes: (string | Node)[]): void;
|
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.
|
|
4
|
+
"version": "14.185.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-header.d.ts",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"build": "genx build -b ts",
|
|
50
50
|
"build:webpack": "genx build",
|
|
51
51
|
"build:webpack:stats": "genx analyze",
|
|
52
|
+
"circular": "npx -y madge --extensions ts --circular ./src",
|
|
52
53
|
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
53
54
|
"dev": "npm run dev:webpack",
|
|
54
55
|
"dev:no-open": "genx dev --no-open -b webpack",
|
|
@@ -67,25 +68,32 @@
|
|
|
67
68
|
"test:unit:watch": "genx test --watch",
|
|
68
69
|
"test:debug": "genx test --debug"
|
|
69
70
|
},
|
|
71
|
+
"madge": {
|
|
72
|
+
"detectiveOptions": {
|
|
73
|
+
"ts": {
|
|
74
|
+
"skipTypeImports": true
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
70
78
|
"devDependencies": {
|
|
71
|
-
"@genesislcap/foundation-testing": "14.
|
|
72
|
-
"@genesislcap/genx": "14.
|
|
73
|
-
"@genesislcap/rollup-builder": "14.
|
|
74
|
-
"@genesislcap/ts-builder": "14.
|
|
75
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
76
|
-
"@genesislcap/vite-builder": "14.
|
|
77
|
-
"@genesislcap/webpack-builder": "14.
|
|
78
|
-
"rimraf": "^
|
|
79
|
+
"@genesislcap/foundation-testing": "14.185.0",
|
|
80
|
+
"@genesislcap/genx": "14.185.0",
|
|
81
|
+
"@genesislcap/rollup-builder": "14.185.0",
|
|
82
|
+
"@genesislcap/ts-builder": "14.185.0",
|
|
83
|
+
"@genesislcap/uvu-playwright-builder": "14.185.0",
|
|
84
|
+
"@genesislcap/vite-builder": "14.185.0",
|
|
85
|
+
"@genesislcap/webpack-builder": "14.185.0",
|
|
86
|
+
"rimraf": "^5.0.0"
|
|
79
87
|
},
|
|
80
88
|
"dependencies": {
|
|
81
|
-
"@genesislcap/foundation-comms": "14.
|
|
82
|
-
"@genesislcap/foundation-events": "14.
|
|
83
|
-
"@genesislcap/foundation-i18n": "14.
|
|
84
|
-
"@genesislcap/foundation-logger": "14.
|
|
85
|
-
"@genesislcap/foundation-shell": "14.
|
|
86
|
-
"@genesislcap/foundation-ui": "14.
|
|
87
|
-
"@genesislcap/foundation-utils": "14.
|
|
88
|
-
"@genesislcap/foundation-zero": "14.
|
|
89
|
+
"@genesislcap/foundation-comms": "14.185.0",
|
|
90
|
+
"@genesislcap/foundation-events": "14.185.0",
|
|
91
|
+
"@genesislcap/foundation-i18n": "14.185.0",
|
|
92
|
+
"@genesislcap/foundation-logger": "14.185.0",
|
|
93
|
+
"@genesislcap/foundation-shell": "14.185.0",
|
|
94
|
+
"@genesislcap/foundation-ui": "14.185.0",
|
|
95
|
+
"@genesislcap/foundation-utils": "14.185.0",
|
|
96
|
+
"@genesislcap/foundation-zero": "14.185.0",
|
|
89
97
|
"@microsoft/fast-colors": "^5.3.1",
|
|
90
98
|
"@microsoft/fast-element": "^1.12.0",
|
|
91
99
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
@@ -101,5 +109,5 @@
|
|
|
101
109
|
"access": "public"
|
|
102
110
|
},
|
|
103
111
|
"customElements": "dist/custom-elements.json",
|
|
104
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "839487e6a0b1168d0ad6bf32c9e3a50504c775a0"
|
|
105
113
|
}
|