@genesislcap/pbc-auth-ui 15.6.2 → 15.7.0-ts7.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.
@@ -22,10 +22,10 @@ export declare const editProfileFormSchema: {
22
22
  label: string;
23
23
  scope: string;
24
24
  options: {
25
+ datasourceConfig?: undefined;
25
26
  allOptionsResourceName: string;
26
27
  valueField: string;
27
28
  labelField: string;
28
- datasourceConfig?: undefined;
29
29
  };
30
30
  })[];
31
31
  };
@@ -1 +1 @@
1
- {"version":3,"file":"editProfileSchema.d.ts","sourceRoot":"","sources":["../../../src/profiles/editProfileSchema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0CjC,CAAC"}
1
+ {"version":3,"file":"editProfileSchema.d.ts","sourceRoot":"","sources":["../../../src/profiles/editProfileSchema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB;;;;;;;;;;;;YAuB1B,sBAAsB;YACtB,UAAU;YACV,UAAU;YACV,gBAAgB;gBACd,OAAO;;;;;;;;;;;;;;CAehB,CAAC"}
@@ -1,378 +1,12 @@
1
1
  import { EntityManagement } from '@genesislcap/foundation-entity-management';
2
2
  import { GenesisElement } from '@genesislcap/web-core';
3
- declare const Profiles_base: (new (...args: any[]) => {
4
- #_container: import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
5
- #_latestTokenCode: string;
6
- #_hasFirstLoaded: boolean;
7
- #_cleanupTimeout: NodeJS.Timeout;
8
- #_shouldForceLifecycle: boolean;
9
- #_blockedDisconnectSurvivedGracePeriod: boolean;
10
- cloneNode(deep?: boolean): Node;
11
- deepClone(): Node;
12
- get shouldRunDisconnect(): boolean;
13
- get shouldRunConnect(): boolean;
14
- #_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
15
- #_tryFindContainingLayout(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
16
- connectedCallback(): void;
17
- readonly $fastController: import("@microsoft/fast-element").Controller;
18
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
19
- disconnectedCallback(): void;
20
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
21
- accessKey: string;
22
- readonly accessKeyLabel: string;
23
- autocapitalize: string;
24
- autocorrect: boolean;
25
- dir: string;
26
- draggable: boolean;
27
- hidden: boolean;
28
- inert: boolean;
29
- innerText: string;
30
- lang: string;
31
- readonly offsetHeight: number;
32
- readonly offsetLeft: number;
33
- readonly offsetParent: Element | null;
34
- readonly offsetTop: number;
35
- readonly offsetWidth: number;
36
- outerText: string;
37
- popover: string | null;
38
- spellcheck: boolean;
39
- title: string;
40
- translate: boolean;
41
- writingSuggestions: string;
42
- attachInternals(): ElementInternals;
43
- click(): void;
44
- hidePopover(): void;
45
- showPopover(): void;
46
- togglePopover(options?: boolean): boolean;
47
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
48
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
49
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
50
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
51
- readonly attributes: NamedNodeMap;
52
- get classList(): DOMTokenList;
53
- set classList(value: string): any;
54
- className: string;
55
- readonly clientHeight: number;
56
- readonly clientLeft: number;
57
- readonly clientTop: number;
58
- readonly clientWidth: number;
59
- readonly currentCSSZoom: number;
60
- id: string;
61
- innerHTML: string;
62
- readonly localName: string;
63
- readonly namespaceURI: string | null;
64
- onfullscreenchange: (this: Element, ev: Event) => any;
65
- onfullscreenerror: (this: Element, ev: Event) => any;
66
- outerHTML: string;
67
- readonly ownerDocument: Document;
68
- get part(): DOMTokenList;
69
- set part(value: string): any;
70
- readonly prefix: string | null;
71
- readonly scrollHeight: number;
72
- scrollLeft: number;
73
- scrollTop: number;
74
- readonly scrollWidth: number;
75
- readonly shadowRoot: ShadowRoot | null;
76
- slot: string;
77
- readonly tagName: string;
78
- attachShadow(init: ShadowRootInit): ShadowRoot;
79
- checkVisibility(options?: CheckVisibilityOptions): boolean;
80
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
81
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
82
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
83
- closest<E extends Element = Element>(selectors: string): E;
84
- computedStyleMap(): StylePropertyMapReadOnly;
85
- getAttribute(qualifiedName: string): string | null;
86
- getAttributeNS(namespace: string | null, localName: string): string | null;
87
- getAttributeNames(): string[];
88
- getAttributeNode(qualifiedName: string): Attr | null;
89
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
90
- getBoundingClientRect(): DOMRect;
91
- getClientRects(): DOMRectList;
92
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
93
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
94
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
95
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
96
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
97
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
98
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
99
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
100
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
101
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
102
- getHTML(options?: GetHTMLOptions): string;
103
- hasAttribute(qualifiedName: string): boolean;
104
- hasAttributeNS(namespace: string | null, localName: string): boolean;
105
- hasAttributes(): boolean;
106
- hasPointerCapture(pointerId: number): boolean;
107
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
108
- insertAdjacentHTML(position: InsertPosition, string: string): void;
109
- insertAdjacentText(where: InsertPosition, data: string): void;
110
- matches(selectors: string): boolean;
111
- releasePointerCapture(pointerId: number): void;
112
- removeAttribute(qualifiedName: string): void;
113
- removeAttributeNS(namespace: string | null, localName: string): void;
114
- removeAttributeNode(attr: Attr): Attr;
115
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
116
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
117
- scroll(options?: ScrollToOptions): void;
118
- scroll(x: number, y: number): void;
119
- scrollBy(options?: ScrollToOptions): void;
120
- scrollBy(x: number, y: number): void;
121
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
122
- scrollTo(options?: ScrollToOptions): void;
123
- scrollTo(x: number, y: number): void;
124
- setAttribute(qualifiedName: string, value: string): void;
125
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
126
- setAttributeNode(attr: Attr): Attr | null;
127
- setAttributeNodeNS(attr: Attr): Attr | null;
128
- setHTMLUnsafe(html: string): void;
129
- setPointerCapture(pointerId: number): void;
130
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
131
- webkitMatchesSelector(selectors: string): boolean;
132
- textContent: string;
133
- readonly baseURI: string;
134
- readonly childNodes: NodeListOf<ChildNode>;
135
- readonly firstChild: ChildNode | null;
136
- readonly isConnected: boolean;
137
- readonly lastChild: ChildNode | null;
138
- readonly nextSibling: ChildNode | null;
139
- readonly nodeName: string;
140
- readonly nodeType: number;
141
- nodeValue: string | null;
142
- readonly parentElement: HTMLElement | null;
143
- readonly parentNode: ParentNode | null;
144
- readonly previousSibling: ChildNode | null;
145
- appendChild<T_1 extends Node>(node: T_1): T_1;
146
- compareDocumentPosition(other: Node): number;
147
- contains(other: Node | null): boolean;
148
- getRootNode(options?: GetRootNodeOptions): Node;
149
- hasChildNodes(): boolean;
150
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
151
- isDefaultNamespace(namespace: string | null): boolean;
152
- isEqualNode(otherNode: Node | null): boolean;
153
- isSameNode(otherNode: Node | null): boolean;
154
- lookupNamespaceURI(prefix: string | null): string | null;
155
- lookupPrefix(namespace: string | null): string | null;
156
- normalize(): void;
157
- removeChild<T_1 extends Node>(child: T_1): T_1;
158
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
159
- readonly ELEMENT_NODE: 1;
160
- readonly ATTRIBUTE_NODE: 2;
161
- readonly TEXT_NODE: 3;
162
- readonly CDATA_SECTION_NODE: 4;
163
- readonly ENTITY_REFERENCE_NODE: 5;
164
- readonly ENTITY_NODE: 6;
165
- readonly PROCESSING_INSTRUCTION_NODE: 7;
166
- readonly COMMENT_NODE: 8;
167
- readonly DOCUMENT_NODE: 9;
168
- readonly DOCUMENT_TYPE_NODE: 10;
169
- readonly DOCUMENT_FRAGMENT_NODE: 11;
170
- readonly NOTATION_NODE: 12;
171
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
172
- readonly DOCUMENT_POSITION_PRECEDING: 2;
173
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
174
- readonly DOCUMENT_POSITION_CONTAINS: 8;
175
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
176
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
177
- dispatchEvent(event: Event): boolean;
178
- ariaActiveDescendantElement: Element | null;
179
- ariaAtomic: string | null;
180
- ariaAutoComplete: string | null;
181
- ariaBrailleLabel: string | null;
182
- ariaBrailleRoleDescription: string | null;
183
- ariaBusy: string | null;
184
- ariaChecked: string | null;
185
- ariaColCount: string | null;
186
- ariaColIndex: string | null;
187
- ariaColIndexText: string | null;
188
- ariaColSpan: string | null;
189
- ariaControlsElements: ReadonlyArray<Element> | null;
190
- ariaCurrent: string | null;
191
- ariaDescribedByElements: ReadonlyArray<Element> | null;
192
- ariaDescription: string | null;
193
- ariaDetailsElements: ReadonlyArray<Element> | null;
194
- ariaDisabled: string | null;
195
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
196
- ariaExpanded: string | null;
197
- ariaFlowToElements: ReadonlyArray<Element> | null;
198
- ariaHasPopup: string | null;
199
- ariaHidden: string | null;
200
- ariaInvalid: string | null;
201
- ariaKeyShortcuts: string | null;
202
- ariaLabel: string | null;
203
- ariaLabelledByElements: ReadonlyArray<Element> | null;
204
- ariaLevel: string | null;
205
- ariaLive: string | null;
206
- ariaModal: string | null;
207
- ariaMultiLine: string | null;
208
- ariaMultiSelectable: string | null;
209
- ariaOrientation: string | null;
210
- ariaOwnsElements: ReadonlyArray<Element> | null;
211
- ariaPlaceholder: string | null;
212
- ariaPosInSet: string | null;
213
- ariaPressed: string | null;
214
- ariaReadOnly: string | null;
215
- ariaRelevant: string | null;
216
- ariaRequired: string | null;
217
- ariaRoleDescription: string | null;
218
- ariaRowCount: string | null;
219
- ariaRowIndex: string | null;
220
- ariaRowIndexText: string | null;
221
- ariaRowSpan: string | null;
222
- ariaSelected: string | null;
223
- ariaSetSize: string | null;
224
- ariaSort: string | null;
225
- ariaValueMax: string | null;
226
- ariaValueMin: string | null;
227
- ariaValueNow: string | null;
228
- ariaValueText: string | null;
229
- role: string | null;
230
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
231
- getAnimations(options?: GetAnimationsOptions): Animation[];
232
- after(...nodes: (Node | string)[]): void;
233
- before(...nodes: (Node | string)[]): void;
234
- remove(): void;
235
- replaceWith(...nodes: (Node | string)[]): void;
236
- readonly nextElementSibling: Element | null;
237
- readonly previousElementSibling: Element | null;
238
- readonly childElementCount: number;
239
- readonly children: HTMLCollection;
240
- readonly firstElementChild: Element | null;
241
- readonly lastElementChild: Element | null;
242
- append(...nodes: (Node | string)[]): void;
243
- prepend(...nodes: (Node | string)[]): void;
244
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
245
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
246
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
247
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
248
- querySelector<E extends Element = Element>(selectors: string): E | null;
249
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
250
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
251
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
252
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
253
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
254
- replaceChildren(...nodes: (Node | string)[]): void;
255
- readonly assignedSlot: HTMLSlotElement | null;
256
- readonly attributeStyleMap: StylePropertyMap;
257
- get style(): CSSStyleDeclaration;
258
- set style(cssText: string): any;
259
- contentEditable: string;
260
- enterKeyHint: string;
261
- inputMode: string;
262
- readonly isContentEditable: boolean;
263
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
264
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
265
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
266
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
267
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
268
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
269
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
270
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
271
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
272
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
273
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
274
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
275
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
276
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
277
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
278
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
279
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
280
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
281
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
282
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
283
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
284
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
285
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
286
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
287
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
288
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
289
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
290
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
291
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
292
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
293
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
294
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
295
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
- onerror: OnErrorEventHandler;
297
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
298
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
299
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
300
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
301
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
302
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
303
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
304
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
305
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
306
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
307
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
308
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
309
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
310
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
311
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
312
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
313
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
314
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
315
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
316
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
317
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
318
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
319
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
320
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
322
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
323
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
324
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
325
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
326
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
327
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
328
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
329
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
330
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
331
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
332
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
334
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
337
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
339
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
342
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
343
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
344
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
345
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
348
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
349
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
350
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
351
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
352
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
353
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
354
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
355
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
356
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
357
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
358
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
359
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
361
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
362
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
363
- autofocus: boolean;
364
- readonly dataset: DOMStringMap;
365
- nonce?: string;
366
- tabIndex: number;
367
- blur(): void;
368
- focus(options?: FocusOptions): void;
369
- }) & (new () => HTMLElement & GenesisElement) & {
3
+ declare const Profiles_base: (new () => HTMLElement & GenesisElement) & {
370
4
  from<TBase extends {
371
5
  new (): HTMLElement;
372
6
  prototype: HTMLElement;
373
7
  }>(BaseType: TBase): new () => InstanceType<TBase> & GenesisElement;
374
8
  define<TType extends Function>(type: TType, nameOrDef?: string | import("@microsoft/fast-element").PartialFASTElementDefinition | undefined): TType;
375
- };
9
+ } & import("@microsoft/fast-element").Constructable<import("@genesislcap/foundation-utils").LifecycleElement>;
376
10
  /**
377
11
  * Main class which defined the profile management functionality
378
12
  *
@@ -1 +1 @@
1
- {"version":3,"file":"profiles.d.ts","sourceRoot":"","sources":["../../../src/profiles/profiles.ts"],"names":[],"mappings":"AACA,OAAO,EAAc,gBAAgB,EAAE,MAAM,2CAA2C,CAAC;AAEzF,OAAO,EAAuB,cAAc,EAAc,MAAM,uBAAuB,CAAC;;;;;;;;kBA6F4jB,CAAC;;;;;;;;8BAAknD,CAAC,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAAw9B,CAAC;4IAAqK,CAAC;wFAAwI,CAAC;+IAA+L,CAAC;2FAAwI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAA4mC,CAAC;;;;;;;;;;;;;;;;;;;;;;;mBAA8hE,CAAC;;;;;;;;;;;;;6BAA4xB,CAAC;8BAAuE,CAAC;kBAA4D,CAAC;;oBAA8F,CAAC;;sBAAkG,CAAC;oBAAkE,CAAC;;;;;;;;gDAAme,CAAC;;;;;;;;;;;;;;;;;;uBAA8yB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAAiiH,CAAC;yBAA8E,CAAC;UAAoD,GAAG;WAAgD,GAAG;;gBAA6E,GAAG;;;;;;;WAA4V,GAAG;YAAiD,GAAG;;;;;;;;;;;oBAAupC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAiiO,CAAC;cAA6F,CAAC;eAA8F,CAAC;gBAA+F,CAAC;;;;;;;;;;;;;;SAAulC,CAAC;;;iBAA+E,CAAC;;;;;;;;AA1F7uuB;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAIa,QAAS,SAAQ,aAA8B;IAC1D;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEhB,OAAO,CAAC,OAAO,CAAU;IAElC,cAAc,EAAE,gBAAgB,CAAC;IAErB,WAAW,EAAE,MAAM,CAAC;IAEpB,WAAW,EAAE,MAAM,CAAC;IAEpB,WAAW,EAAE,MAAM,CAAC;IAEa,kBAAkB,SAAW;;IAgB7D,eAAe,CAAC,OAAO,KAAA;;;;;IAsB9B,aAAa;CAMpB"}
1
+ {"version":3,"file":"profiles.d.ts","sourceRoot":"","sources":["../../../src/profiles/profiles.ts"],"names":[],"mappings":"AACA,OAAO,EAAc,gBAAgB,EAAE,MAAM,2CAA2C,CAAC;AAEzF,OAAO,EAAuB,cAAc,EAAc,MAAM,uBAAuB,CAAC;;;;;;;;AAGxF;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAIa,QAAS,SAAQ,aAA8B;IAC1D;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEhB,OAAO,CAAC,OAAO,CAAU;IAElC,cAAc,EAAE,gBAAgB,CAAC;IAErB,WAAW,EAAE,MAAM,CAAC;IAEpB,WAAW,EAAE,MAAM,CAAC;IAEpB,WAAW,EAAE,MAAM,CAAC;IAEa,kBAAkB,SAAW;IAE1E,cAYC;IAEY,eAAe,CAAC,OAAO,KAAA;;;;OAoBnC;IAEK,aAAa,kBAKlB;CACF"}
@@ -10,396 +10,30 @@ import { GenesisElement } from '@genesislcap/web-core';
10
10
  * @public
11
11
  */
12
12
  export declare const UsersColumnConfig: ({
13
+ enableCellChangeFlash: boolean;
14
+ enableRowGroup: boolean;
15
+ enablePivot: boolean;
16
+ enableValue: boolean;
13
17
  field: string;
14
18
  headerName: string;
19
+ } | {
15
20
  enableCellChangeFlash: boolean;
16
21
  enableRowGroup: boolean;
17
22
  enablePivot: boolean;
18
23
  enableValue: boolean;
19
- } | {
20
24
  field: string;
21
25
  headerName: string;
22
26
  valueFormatter: ({ value }: {
23
27
  value: any;
24
28
  }) => string;
25
- enableCellChangeFlash: boolean;
26
- enableRowGroup: boolean;
27
- enablePivot: boolean;
28
- enableValue: boolean;
29
29
  })[];
30
- declare const Users_base: (new (...args: any[]) => {
31
- #_container: import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
32
- #_latestTokenCode: string;
33
- #_hasFirstLoaded: boolean;
34
- #_cleanupTimeout: NodeJS.Timeout;
35
- #_shouldForceLifecycle: boolean;
36
- #_blockedDisconnectSurvivedGracePeriod: boolean;
37
- cloneNode(deep?: boolean): Node;
38
- deepClone(): Node;
39
- get shouldRunDisconnect(): boolean;
40
- get shouldRunConnect(): boolean;
41
- #_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
42
- #_tryFindContainingLayout(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
43
- connectedCallback(): void;
44
- readonly $fastController: import("@microsoft/fast-element").Controller;
45
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
46
- disconnectedCallback(): void;
47
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
48
- accessKey: string;
49
- readonly accessKeyLabel: string;
50
- autocapitalize: string;
51
- autocorrect: boolean;
52
- dir: string;
53
- draggable: boolean;
54
- hidden: boolean;
55
- inert: boolean;
56
- innerText: string;
57
- lang: string;
58
- readonly offsetHeight: number;
59
- readonly offsetLeft: number;
60
- readonly offsetParent: Element | null;
61
- readonly offsetTop: number;
62
- readonly offsetWidth: number;
63
- outerText: string;
64
- popover: string | null;
65
- spellcheck: boolean;
66
- title: string;
67
- translate: boolean;
68
- writingSuggestions: string;
69
- attachInternals(): ElementInternals;
70
- click(): void;
71
- hidePopover(): void;
72
- showPopover(): void;
73
- togglePopover(options?: boolean): boolean;
74
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
75
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
76
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
77
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
78
- readonly attributes: NamedNodeMap;
79
- get classList(): DOMTokenList;
80
- set classList(value: string): any;
81
- className: string;
82
- readonly clientHeight: number;
83
- readonly clientLeft: number;
84
- readonly clientTop: number;
85
- readonly clientWidth: number;
86
- readonly currentCSSZoom: number;
87
- id: string;
88
- innerHTML: string;
89
- readonly localName: string;
90
- readonly namespaceURI: string | null;
91
- onfullscreenchange: (this: Element, ev: Event) => any;
92
- onfullscreenerror: (this: Element, ev: Event) => any;
93
- outerHTML: string;
94
- readonly ownerDocument: Document;
95
- get part(): DOMTokenList;
96
- set part(value: string): any;
97
- readonly prefix: string | null;
98
- readonly scrollHeight: number;
99
- scrollLeft: number;
100
- scrollTop: number;
101
- readonly scrollWidth: number;
102
- readonly shadowRoot: ShadowRoot | null;
103
- slot: string;
104
- readonly tagName: string;
105
- attachShadow(init: ShadowRootInit): ShadowRoot;
106
- checkVisibility(options?: CheckVisibilityOptions): boolean;
107
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
108
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
109
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
110
- closest<E extends Element = Element>(selectors: string): E;
111
- computedStyleMap(): StylePropertyMapReadOnly;
112
- getAttribute(qualifiedName: string): string | null;
113
- getAttributeNS(namespace: string | null, localName: string): string | null;
114
- getAttributeNames(): string[];
115
- getAttributeNode(qualifiedName: string): Attr | null;
116
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
117
- getBoundingClientRect(): DOMRect;
118
- getClientRects(): DOMRectList;
119
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
120
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
121
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
122
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
123
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
124
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
125
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
126
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
127
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
128
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
129
- getHTML(options?: GetHTMLOptions): string;
130
- hasAttribute(qualifiedName: string): boolean;
131
- hasAttributeNS(namespace: string | null, localName: string): boolean;
132
- hasAttributes(): boolean;
133
- hasPointerCapture(pointerId: number): boolean;
134
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
135
- insertAdjacentHTML(position: InsertPosition, string: string): void;
136
- insertAdjacentText(where: InsertPosition, data: string): void;
137
- matches(selectors: string): boolean;
138
- releasePointerCapture(pointerId: number): void;
139
- removeAttribute(qualifiedName: string): void;
140
- removeAttributeNS(namespace: string | null, localName: string): void;
141
- removeAttributeNode(attr: Attr): Attr;
142
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
143
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
144
- scroll(options?: ScrollToOptions): void;
145
- scroll(x: number, y: number): void;
146
- scrollBy(options?: ScrollToOptions): void;
147
- scrollBy(x: number, y: number): void;
148
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
149
- scrollTo(options?: ScrollToOptions): void;
150
- scrollTo(x: number, y: number): void;
151
- setAttribute(qualifiedName: string, value: string): void;
152
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
153
- setAttributeNode(attr: Attr): Attr | null;
154
- setAttributeNodeNS(attr: Attr): Attr | null;
155
- setHTMLUnsafe(html: string): void;
156
- setPointerCapture(pointerId: number): void;
157
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
158
- webkitMatchesSelector(selectors: string): boolean;
159
- textContent: string;
160
- readonly baseURI: string;
161
- readonly childNodes: NodeListOf<ChildNode>;
162
- readonly firstChild: ChildNode | null;
163
- readonly isConnected: boolean;
164
- readonly lastChild: ChildNode | null;
165
- readonly nextSibling: ChildNode | null;
166
- readonly nodeName: string;
167
- readonly nodeType: number;
168
- nodeValue: string | null;
169
- readonly parentElement: HTMLElement | null;
170
- readonly parentNode: ParentNode | null;
171
- readonly previousSibling: ChildNode | null;
172
- appendChild<T_1 extends Node>(node: T_1): T_1;
173
- compareDocumentPosition(other: Node): number;
174
- contains(other: Node | null): boolean;
175
- getRootNode(options?: GetRootNodeOptions): Node;
176
- hasChildNodes(): boolean;
177
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
178
- isDefaultNamespace(namespace: string | null): boolean;
179
- isEqualNode(otherNode: Node | null): boolean;
180
- isSameNode(otherNode: Node | null): boolean;
181
- lookupNamespaceURI(prefix: string | null): string | null;
182
- lookupPrefix(namespace: string | null): string | null;
183
- normalize(): void;
184
- removeChild<T_1 extends Node>(child: T_1): T_1;
185
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
186
- readonly ELEMENT_NODE: 1;
187
- readonly ATTRIBUTE_NODE: 2;
188
- readonly TEXT_NODE: 3;
189
- readonly CDATA_SECTION_NODE: 4;
190
- readonly ENTITY_REFERENCE_NODE: 5;
191
- readonly ENTITY_NODE: 6;
192
- readonly PROCESSING_INSTRUCTION_NODE: 7;
193
- readonly COMMENT_NODE: 8;
194
- readonly DOCUMENT_NODE: 9;
195
- readonly DOCUMENT_TYPE_NODE: 10;
196
- readonly DOCUMENT_FRAGMENT_NODE: 11;
197
- readonly NOTATION_NODE: 12;
198
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
199
- readonly DOCUMENT_POSITION_PRECEDING: 2;
200
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
201
- readonly DOCUMENT_POSITION_CONTAINS: 8;
202
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
203
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
204
- dispatchEvent(event: Event): boolean;
205
- ariaActiveDescendantElement: Element | null;
206
- ariaAtomic: string | null;
207
- ariaAutoComplete: string | null;
208
- ariaBrailleLabel: string | null;
209
- ariaBrailleRoleDescription: string | null;
210
- ariaBusy: string | null;
211
- ariaChecked: string | null;
212
- ariaColCount: string | null;
213
- ariaColIndex: string | null;
214
- ariaColIndexText: string | null;
215
- ariaColSpan: string | null;
216
- ariaControlsElements: ReadonlyArray<Element> | null;
217
- ariaCurrent: string | null;
218
- ariaDescribedByElements: ReadonlyArray<Element> | null;
219
- ariaDescription: string | null;
220
- ariaDetailsElements: ReadonlyArray<Element> | null;
221
- ariaDisabled: string | null;
222
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
223
- ariaExpanded: string | null;
224
- ariaFlowToElements: ReadonlyArray<Element> | null;
225
- ariaHasPopup: string | null;
226
- ariaHidden: string | null;
227
- ariaInvalid: string | null;
228
- ariaKeyShortcuts: string | null;
229
- ariaLabel: string | null;
230
- ariaLabelledByElements: ReadonlyArray<Element> | null;
231
- ariaLevel: string | null;
232
- ariaLive: string | null;
233
- ariaModal: string | null;
234
- ariaMultiLine: string | null;
235
- ariaMultiSelectable: string | null;
236
- ariaOrientation: string | null;
237
- ariaOwnsElements: ReadonlyArray<Element> | null;
238
- ariaPlaceholder: string | null;
239
- ariaPosInSet: string | null;
240
- ariaPressed: string | null;
241
- ariaReadOnly: string | null;
242
- ariaRelevant: string | null;
243
- ariaRequired: string | null;
244
- ariaRoleDescription: string | null;
245
- ariaRowCount: string | null;
246
- ariaRowIndex: string | null;
247
- ariaRowIndexText: string | null;
248
- ariaRowSpan: string | null;
249
- ariaSelected: string | null;
250
- ariaSetSize: string | null;
251
- ariaSort: string | null;
252
- ariaValueMax: string | null;
253
- ariaValueMin: string | null;
254
- ariaValueNow: string | null;
255
- ariaValueText: string | null;
256
- role: string | null;
257
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
258
- getAnimations(options?: GetAnimationsOptions): Animation[];
259
- after(...nodes: (Node | string)[]): void;
260
- before(...nodes: (Node | string)[]): void;
261
- remove(): void;
262
- replaceWith(...nodes: (Node | string)[]): void;
263
- readonly nextElementSibling: Element | null;
264
- readonly previousElementSibling: Element | null;
265
- readonly childElementCount: number;
266
- readonly children: HTMLCollection;
267
- readonly firstElementChild: Element | null;
268
- readonly lastElementChild: Element | null;
269
- append(...nodes: (Node | string)[]): void;
270
- prepend(...nodes: (Node | string)[]): void;
271
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
272
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
273
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
274
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
275
- querySelector<E extends Element = Element>(selectors: string): E | null;
276
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
277
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
278
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
279
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
280
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
281
- replaceChildren(...nodes: (Node | string)[]): void;
282
- readonly assignedSlot: HTMLSlotElement | null;
283
- readonly attributeStyleMap: StylePropertyMap;
284
- get style(): CSSStyleDeclaration;
285
- set style(cssText: string): any;
286
- contentEditable: string;
287
- enterKeyHint: string;
288
- inputMode: string;
289
- readonly isContentEditable: boolean;
290
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
291
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
292
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
293
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
294
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
295
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
296
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
297
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
298
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
299
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
300
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
301
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
302
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
303
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
304
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
305
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
306
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
307
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
308
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
309
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
310
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
311
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
312
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
313
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
314
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
315
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
316
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
317
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
318
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
319
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
320
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
322
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
323
- onerror: OnErrorEventHandler;
324
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
325
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
326
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
327
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
328
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
329
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
330
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
331
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
332
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
334
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
337
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
338
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
339
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
340
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
341
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
342
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
343
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
344
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
345
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
348
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
349
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
350
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
351
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
352
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
353
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
354
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
355
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
356
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
357
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
358
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
359
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
361
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
362
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
363
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
364
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
365
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
366
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
367
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
368
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
369
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
370
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
371
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
372
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
373
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
374
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
375
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
376
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
377
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
378
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
379
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
380
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
381
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
382
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
383
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
384
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
385
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
386
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
387
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
388
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
389
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
390
- autofocus: boolean;
391
- readonly dataset: DOMStringMap;
392
- nonce?: string;
393
- tabIndex: number;
394
- blur(): void;
395
- focus(options?: FocusOptions): void;
396
- }) & (new () => HTMLElement & GenesisElement) & {
30
+ declare const Users_base: (new () => HTMLElement & GenesisElement) & {
397
31
  from<TBase extends {
398
32
  new (): HTMLElement;
399
33
  prototype: HTMLElement;
400
34
  }>(BaseType: TBase): new () => InstanceType<TBase> & GenesisElement;
401
35
  define<TType extends Function>(type: TType, nameOrDef?: string | import("@microsoft/fast-element").PartialFASTElementDefinition | undefined): TType;
402
- };
36
+ } & import("@microsoft/fast-element").Constructable<import("@genesislcap/foundation-utils").LifecycleElement>;
403
37
  /**
404
38
  * Main class which defines the user management functionality
405
39
  *
@@ -490,16 +124,16 @@ export declare class Users extends Users_base {
490
124
  * @internal
491
125
  */
492
126
  statusColumn(): {
127
+ enableCellChangeFlash: boolean;
128
+ enableRowGroup: boolean;
129
+ enablePivot: boolean;
130
+ enableValue: boolean;
493
131
  headerName: string;
494
132
  field: string;
495
133
  minWidth: number;
496
134
  width: number;
497
135
  suppressSizeToFit: boolean;
498
136
  cellRendererSelector: any;
499
- enableCellChangeFlash: boolean;
500
- enableRowGroup: boolean;
501
- enablePivot: boolean;
502
- enableValue: boolean;
503
137
  };
504
138
  /**
505
139
  * Returns the config for an entity column if the entityID attribute is defined
@@ -508,12 +142,12 @@ export declare class Users extends Users_base {
508
142
  * @internal
509
143
  */
510
144
  entityColumn(): {
511
- headerName: string;
512
- field: string;
513
145
  enableCellChangeFlash: boolean;
514
146
  enableRowGroup: boolean;
515
147
  enablePivot: boolean;
516
148
  enableValue: boolean;
149
+ headerName: string;
150
+ field: string;
517
151
  }[];
518
152
  /**
519
153
  * Column definition, default to the UsersColumnConfig
@@ -588,19 +222,19 @@ export declare class Users extends Users_base {
588
222
  * @internal
589
223
  */
590
224
  readUserData(user: any): Promise<{
225
+ ACCESS_TYPE: string;
591
226
  USER_PROFILES: any[];
592
227
  ADDRESS_LINE_1: any;
593
228
  ADDRESS_LINE_2: any;
594
229
  ADDRESS_LINE_3: any;
595
230
  ADDRESS_LINE_4: any;
596
- ACCESS_TYPE: string;
597
231
  } | {
232
+ ACCESS_TYPE?: undefined;
598
233
  USER_PROFILES: any[];
599
234
  ADDRESS_LINE_1: any;
600
235
  ADDRESS_LINE_2: any;
601
236
  ADDRESS_LINE_3: any;
602
237
  ADDRESS_LINE_4: any;
603
- ACCESS_TYPE?: undefined;
604
238
  }>;
605
239
  }
606
240
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/user-admin/users.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,uBAAuB,EAAE,MAAM,2CAA2C,CAAC;AAGpF,OAAO,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAC7D,OAAO,EAA4B,cAAc,EAAc,MAAM,uBAAuB,CAAC;AAW7F;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;IAoC7B,CAAC;;;;;;;;kBA+DC,CAAC;;;;;;;;8BAiDE,CAAL,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAyCR,CAAC;4IAKwB,CAAC;wFAKJ,CAAA;+IAMpB,CAAC;2FAGa,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAkCgC,CAAC;;;;;;;;;;;;;;;;;;;;;;;mBA+DrD,CAAF;;;;;;;;;;;;;6BAiCO,CAAC;8BAEG,CAAC;kBACyB,CAAC;;oBAMnB,CAAC;;sBACU,CAAC;oBAElB,CAAC;;;;;;;;gDAKkY,CAAC;;;;;;;;;;;;;;;;;;uBAA8yB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAAiiH,CAAC;yBAA8E,CAAC;UAAoD,GAAG;WAAgD,GAAG;;gBAA6E,GAAG;;;;;;;WAA4V,GAAG;YAAiD,GAAG;;;;;;;;;;;oBAAupC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAiiO,CAAC;cAA6F,CAAC;eAA8F,CAAC;gBAA+F,CAAC;;;;;;;;;;;;;;SAAulC,CAAC;;;iBAA+E,CAAC;;;;;;;;AA7Tjge;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,qBASa,KAAM,SAAQ,UAA8B;IACvD;;;;;;;;OAQG;IACM,OAAO,CAAC,OAAO,CAAU;IAElC;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEzB;;;;;;;OAOG;IACS,gBAAgB,EAAE,uBAAuB,CAAC;IAEtD;;;OAGG;IACG,YAAY,SAAe;IAEjC;;;;;;;;;OASG;IAC8C,qBAAqB,EAAE,MAAM,CAClD;IAE5B;;;;;OAKG;IACI,YAAY;;;;;;;;;;;;IAYnB;;;;;OAKG;IACI,YAAY;;;;;;;;IAYnB;;OAEG;IACS,OAAO,EAAE,GAAG,CAAqB;IAEjC,sBAAsB,EAAE,GAAG,CAAM;IACjC,sBAAsB,EAAE,GAAG,CAAM;IAEjC,aAAa,EAAE,OAAO,CAAC;IACnC,OAAO,CAAC,aAAa,CAAS;IAE9B;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACG,QAAQ,EAAE,MAAM,CAAqB;IAE3C;;;OAGG;IACG,cAAc,EAAE,MAAM,CAAU;IAEtC;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAkB;IAE3C;;;OAGG;IACG,yBAAyB,EAAE,MAAM,CAAuB;IAEjB,kBAAkB,SAAW;IAE1E;;OAEG;;IAaG,iBAAiB;IAcd,SAAS,IAAI,IAAI;IAc1B;;;OAGG;IACH,sBAAsB,CAAC,MAAM,KAAA;;;;;;;;IAW7B;;;;;;;;OAQG;IACG,YAAY,CAAC,MAAM,KAAA;IAoCzB;;OAEG;IACG,YAAY,CAAC,IAAI,KAAA;;;;;;;;;;;;;;;CAwBxB"}
1
+ {"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/user-admin/users.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,uBAAuB,EAAE,MAAM,2CAA2C,CAAC;AAGpF,OAAO,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAC7D,OAAO,EAA4B,cAAc,EAAc,MAAM,uBAAuB,CAAC;AAW7F;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;IAoC7B,CAAC;;;;;;;;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,qBASa,KAAM,SAAQ,UAA8B;IACvD;;;;;;;;OAQG;IACM,OAAO,CAAC,OAAO,CAAU;IAElC;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEzB;;;;;;;OAOG;IACS,gBAAgB,EAAE,uBAAuB,CAAC;IAEtD;;;OAGG;IACG,YAAY,SAAe;IAEjC;;;;;;;;;OASG;IAC8C,qBAAqB,EAAE,MAAM,CAClD;IAE5B;;;;;OAKG;IACI,YAAY;;;;;;;;;;;MAUlB;IAED;;;;;OAKG;IACI,YAAY;;;;;;;QAUlB;IAED;;OAEG;IACS,OAAO,EAAE,GAAG,CAAqB;IAEjC,sBAAsB,EAAE,GAAG,CAAM;IACjC,sBAAsB,EAAE,GAAG,CAAM;IAEjC,aAAa,EAAE,OAAO,CAAC;IACnC,OAAO,CAAC,aAAa,CAAS;IAE9B;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACG,QAAQ,EAAE,MAAM,CAAqB;IAE3C;;;OAGG;IACG,cAAc,EAAE,MAAM,CAAU;IAEtC;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAkB;IAE3C;;;OAGG;IACG,yBAAyB,EAAE,MAAM,CAAuB;IAEjB,kBAAkB,SAAW;IAE1E;;OAEG;IACH,cAUC;IAEK,iBAAiB,kBAYtB;IAEQ,SAAS,IAAI,IAAI,CAYzB;IAED;;;OAGG;IACH,sBAAsB,CAAC,MAAM,KAAA;;;;;;;MAS5B;IAED;;;;;;;;OAQG;IACG,YAAY,CAAC,MAAM,KAAA,iBAkCxB;IAED;;OAEG;IACG,YAAY,CAAC,IAAI,KAAA;;;;;;;;;;;;;;OAuBtB;CACF"}
@@ -1 +1 @@
1
- {"version":3,"file":"formatting.d.ts","sourceRoot":"","sources":["../../../src/utils/formatting.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,cAAc,GAAI,QAAG,WAA+D,CAAC"}
1
+ {"version":3,"file":"formatting.d.ts","sourceRoot":"","sources":["../../../src/utils/formatting.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,cAAc,sBAAsE,CAAC"}
@@ -1 +1,2 @@
1
+ "use strict";
1
2
  import('./index');
@@ -1 +1 @@
1
- {"root":["../src/index.federated.ts","../src/index.ts","../src/types.ts","../src/profiles/editProfileSchema.ts","../src/profiles/profiles.template.ts","../src/profiles/profiles.ts","../src/user-admin/users.template.ts","../src/user-admin/users.ts","../src/utils/formatting.ts","../src/utils/index.ts","../src/utils/logger.ts"],"version":"5.9.2"}
1
+ {"version":"7.0.2","root":["../src/index.federated.ts","../src/index.ts","../src/types.ts","../src/profiles/editProfileSchema.ts","../src/profiles/profiles.template.ts","../src/profiles/profiles.ts","../src/user-admin/users.template.ts","../src/user-admin/users.ts","../src/utils/formatting.ts","../src/utils/index.ts","../src/utils/logger.ts"],"packageJsons":["../../../../../node_modules/@ag-grid-community/core/package.json","../../../../../node_modules/@fortawesome/fontawesome-common-types/package.json","../../../../../node_modules/@fortawesome/fontawesome-svg-core/package.json","../../../../../node_modules/@jsonforms/core/package.json","../../../../../node_modules/@microsoft/fast-colors/package.json","../../../../../node_modules/@microsoft/fast-components/package.json","../../../../../node_modules/@microsoft/fast-element/package.json","../../../../../node_modules/@microsoft/fast-foundation/package.json","../../../../../node_modules/@microsoft/fast-router/package.json","../../../../../node_modules/@microsoft/fast-web-utilities/package.json","../../../../../node_modules/@popperjs/core/package.json","../../../../../node_modules/@types/json-schema/package.json","../../../../../node_modules/@typescript/lib-dom/package.json","../../../../../node_modules/ag-charts-types/package.json","../../../../../node_modules/ag-grid-community/dist/types/package.json","../../../../../node_modules/ag-grid-community/package.json","../../../../../node_modules/ag-stack/dist/types/package.json","../../../../../node_modules/ag-stack/package.json","../../../../../node_modules/ajv/package.json","../../../../../node_modules/bowser/package.json","../../../../../node_modules/consola/package.json","../../../../../node_modules/dayjs/package.json","../../../../../node_modules/json-schema/package.json","../../../../../node_modules/numeral/package.json","../../../../../node_modules/rxjs/package.json","../../../../../node_modules/tslib/modules/package.json","../../../../../node_modules/tslib/package.json","../../../../../node_modules/uri-js/package.json","../../../expression-builder/package.json","../../../foundation-ai/package.json","../../../foundation-broadcast-channel/package.json","../../../foundation-comms/package.json","../../../foundation-criteria/package.json","../../../foundation-ds/foundation-zero-grid-pro/package.json","../../../foundation-errors/package.json","../../../foundation-events/package.json","../../../foundation-forms/package.json","../../../foundation-logger/package.json","../../../foundation-marketplace/grids/grid-pro/package.json","../../foundation-entity-management/package.json","../package.json","../../../foundation-notifications/package.json","../../../foundation-ui/package.json","../../../foundation-user/package.json","../../../foundation-utils/package.json","../../../../tooling/web-core/package.json"],"missingPackageJsons":["../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/columns/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/components/framework/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/components/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/constants/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/context/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/dragAndDrop/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/entities/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/filter/floating/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/filter/floating/provided/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/filter/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/filter/provided/date/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/filter/provided/number/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/filter/provided/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/filter/provided/text/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/gridBodyComp/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/gridBodyComp/rowContainer/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/gridComp/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/cells/abstractCell/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/cells/column/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/cells/columnGroup/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/cells/floatingFilter/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/cells/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/columnDrag/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/common/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/row/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/headerRendering/rowContainer/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/interfaces/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/layout/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/misc/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/modules/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/pagination/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/pinnedRowModel/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/rendering/cell/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/rendering/cellEditors/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/rendering/cellRenderers/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/rendering/features/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/rendering/overlays/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/rendering/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/rendering/row/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/rowNodeCache/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/rowNodes/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/styling/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/utils/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/valueService/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/es5/widgets/package.json","../../../../../node_modules/@ag-grid-community/core/dist/cjs/package.json","../../../../../node_modules/@ag-grid-community/core/dist/package.json","../../../../../node_modules/@jsonforms/core/lib/actions/package.json","../../../../../node_modules/@jsonforms/core/lib/generators/package.json","../../../../../node_modules/@jsonforms/core/lib/i18n/package.json","../../../../../node_modules/@jsonforms/core/lib/mappers/package.json","../../../../../node_modules/@jsonforms/core/lib/models/package.json","../../../../../node_modules/@jsonforms/core/lib/package.json","../../../../../node_modules/@jsonforms/core/lib/reducers/package.json","../../../../../node_modules/@jsonforms/core/lib/store/package.json","../../../../../node_modules/@jsonforms/core/lib/testers/package.json","../../../../../node_modules/@jsonforms/core/lib/util/package.json","../../../../../node_modules/@microsoft/fast-colors/dist/package.json","../../../../../node_modules/@microsoft/fast-components/dist/package.json","../../../../../node_modules/@microsoft/fast-components/node_modules/@microsoft/fast-element/package.json","../../../../../node_modules/@microsoft/fast-components/node_modules/@microsoft/fast-foundation/package.json","../../../../../node_modules/@microsoft/fast-components/node_modules/@microsoft/fast-web-utilities/package.json","../../../../../node_modules/@microsoft/fast-element/dist/package.json","../../../../../node_modules/@microsoft/fast-foundation/dist/package.json","../../../../../node_modules/@microsoft/fast-foundation/node_modules/@microsoft/fast-element/package.json","../../../../../node_modules/@microsoft/fast-foundation/node_modules/@microsoft/fast-web-utilities/package.json","../../../../../node_modules/@microsoft/fast-router/dist/package.json","../../../../../node_modules/@microsoft/fast-web-utilities/dist/package.json","../../../../../node_modules/@popperjs/core/lib/modifiers/package.json","../../../../../node_modules/@popperjs/core/lib/package.json","../../../../../node_modules/@popperjs/core/lib/utils/package.json","../../../../../node_modules/@types/dayjs/locale/en-gb/package.json","../../../../../node_modules/@types/dayjs/package.json","../../../../../node_modules/@types/numeral/locales/package.json","../../../../../node_modules/@types/numeral/package.json","../../../../../node_modules/@types/typescript__lib-decorators/legacy/package.json","../../../../../node_modules/@types/typescript__lib-decorators/package.json","../../../../../node_modules/@types/typescript__lib-es2015/collection/package.json","../../../../../node_modules/@types/typescript__lib-es2015/core/package.json","../../../../../node_modules/@types/typescript__lib-es2015/generator/package.json","../../../../../node_modules/@types/typescript__lib-es2015/iterable/package.json","../../../../../node_modules/@types/typescript__lib-es2015/package.json","../../../../../node_modules/@types/typescript__lib-es2015/promise/package.json","../../../../../node_modules/@types/typescript__lib-es2015/proxy/package.json","../../../../../node_modules/@types/typescript__lib-es2015/reflect/package.json","../../../../../node_modules/@types/typescript__lib-es2015/symbol-wellknown/package.json","../../../../../node_modules/@types/typescript__lib-es2015/symbol/package.json","../../../../../node_modules/@types/typescript__lib-es2016/array-include/package.json","../../../../../node_modules/@types/typescript__lib-es2016/intl/package.json","../../../../../node_modules/@types/typescript__lib-es2016/package.json","../../../../../node_modules/@types/typescript__lib-es2017/arraybuffer/package.json","../../../../../node_modules/@types/typescript__lib-es2017/date/package.json","../../../../../node_modules/@types/typescript__lib-es2017/intl/package.json","../../../../../node_modules/@types/typescript__lib-es2017/object/package.json","../../../../../node_modules/@types/typescript__lib-es2017/package.json","../../../../../node_modules/@types/typescript__lib-es2017/sharedmemory/package.json","../../../../../node_modules/@types/typescript__lib-es2017/string/package.json","../../../../../node_modules/@types/typescript__lib-es2017/typedarrays/package.json","../../../../../node_modules/@types/typescript__lib-es2018/asyncgenerator/package.json","../../../../../node_modules/@types/typescript__lib-es2018/asynciterable/package.json","../../../../../node_modules/@types/typescript__lib-es2018/intl/package.json","../../../../../node_modules/@types/typescript__lib-es2018/package.json","../../../../../node_modules/@types/typescript__lib-es2018/promise/package.json","../../../../../node_modules/@types/typescript__lib-es2018/regexp/package.json","../../../../../node_modules/@types/typescript__lib-es2019/array/package.json","../../../../../node_modules/@types/typescript__lib-es2019/intl/package.json","../../../../../node_modules/@types/typescript__lib-es2019/object/package.json","../../../../../node_modules/@types/typescript__lib-es2019/package.json","../../../../../node_modules/@types/typescript__lib-es2019/string/package.json","../../../../../node_modules/@types/typescript__lib-es2019/symbol/package.json","../../../../../node_modules/@types/typescript__lib-es2020/bigint/package.json","../../../../../node_modules/@types/typescript__lib-es2020/date/package.json","../../../../../node_modules/@types/typescript__lib-es2020/intl/package.json","../../../../../node_modules/@types/typescript__lib-es2020/number/package.json","../../../../../node_modules/@types/typescript__lib-es2020/package.json","../../../../../node_modules/@types/typescript__lib-es2020/promise/package.json","../../../../../node_modules/@types/typescript__lib-es2020/sharedmemory/package.json","../../../../../node_modules/@types/typescript__lib-es2020/string/package.json","../../../../../node_modules/@types/typescript__lib-es2020/symbol-wellknown/package.json","../../../../../node_modules/@types/typescript__lib-es5/package.json","../../../../../node_modules/@typescript/lib-decorators/legacy/package.json","../../../../../node_modules/@typescript/lib-decorators/package.json","../../../../../node_modules/@typescript/lib-dom/iterable/package.json","../../../../../node_modules/@typescript/lib-es2015/collection/package.json","../../../../../node_modules/@typescript/lib-es2015/core/package.json","../../../../../node_modules/@typescript/lib-es2015/generator/package.json","../../../../../node_modules/@typescript/lib-es2015/iterable/package.json","../../../../../node_modules/@typescript/lib-es2015/package.json","../../../../../node_modules/@typescript/lib-es2015/promise/package.json","../../../../../node_modules/@typescript/lib-es2015/proxy/package.json","../../../../../node_modules/@typescript/lib-es2015/reflect/package.json","../../../../../node_modules/@typescript/lib-es2015/symbol-wellknown/package.json","../../../../../node_modules/@typescript/lib-es2015/symbol/package.json","../../../../../node_modules/@typescript/lib-es2016/array-include/package.json","../../../../../node_modules/@typescript/lib-es2016/intl/package.json","../../../../../node_modules/@typescript/lib-es2016/package.json","../../../../../node_modules/@typescript/lib-es2017/arraybuffer/package.json","../../../../../node_modules/@typescript/lib-es2017/date/package.json","../../../../../node_modules/@typescript/lib-es2017/intl/package.json","../../../../../node_modules/@typescript/lib-es2017/object/package.json","../../../../../node_modules/@typescript/lib-es2017/package.json","../../../../../node_modules/@typescript/lib-es2017/sharedmemory/package.json","../../../../../node_modules/@typescript/lib-es2017/string/package.json","../../../../../node_modules/@typescript/lib-es2017/typedarrays/package.json","../../../../../node_modules/@typescript/lib-es2018/asyncgenerator/package.json","../../../../../node_modules/@typescript/lib-es2018/asynciterable/package.json","../../../../../node_modules/@typescript/lib-es2018/intl/package.json","../../../../../node_modules/@typescript/lib-es2018/package.json","../../../../../node_modules/@typescript/lib-es2018/promise/package.json","../../../../../node_modules/@typescript/lib-es2018/regexp/package.json","../../../../../node_modules/@typescript/lib-es2019/array/package.json","../../../../../node_modules/@typescript/lib-es2019/intl/package.json","../../../../../node_modules/@typescript/lib-es2019/object/package.json","../../../../../node_modules/@typescript/lib-es2019/package.json","../../../../../node_modules/@typescript/lib-es2019/string/package.json","../../../../../node_modules/@typescript/lib-es2019/symbol/package.json","../../../../../node_modules/@typescript/lib-es2020/bigint/package.json","../../../../../node_modules/@typescript/lib-es2020/date/package.json","../../../../../node_modules/@typescript/lib-es2020/intl/package.json","../../../../../node_modules/@typescript/lib-es2020/number/package.json","../../../../../node_modules/@typescript/lib-es2020/package.json","../../../../../node_modules/@typescript/lib-es2020/promise/package.json","../../../../../node_modules/@typescript/lib-es2020/sharedmemory/package.json","../../../../../node_modules/@typescript/lib-es2020/string/package.json","../../../../../node_modules/@typescript/lib-es2020/symbol-wellknown/package.json","../../../../../node_modules/@typescript/lib-es5/package.json","../../../../../node_modules/ag-charts-types/dist/package.json","../../../../../node_modules/ag-charts-types/dist/types/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/api/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/chart/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/presets/financial/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/presets/gauge/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/presets/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/presets/sparkline/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/series/cartesian/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/series/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/series/polar/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/series/standalone/package.json","../../../../../node_modules/ag-charts-types/dist/types/src/series/topology/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/agWidgets/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/alignedGrids/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/api/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/autoGenerateColumns/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/clientSideRowModel/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/columnAutosize/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/columnMove/columnDrag/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/columnMove/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/columnResize/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/columns/columnGroups/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/columns/columnHover/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/columns/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/components/framework/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/components/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/context/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/csvExport/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/dragAndDrop/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/edit/cellEditors/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/edit/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/edit/styles/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/entities/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/export/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/filter/floating/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/filter/floating/provided/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/filter/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/filter/provided/bigInt/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/filter/provided/date/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/filter/provided/number/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/filter/provided/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/filter/provided/text/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/gridBodyComp/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/gridBodyComp/rowContainer/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/gridComp/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/headerRendering/cells/abstractCell/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/headerRendering/cells/column/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/headerRendering/cells/columnGroup/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/headerRendering/cells/floatingFilter/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/headerRendering/cells/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/headerRendering/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/headerRendering/row/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/headerRendering/rowContainer/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/infiniteRowModel/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/interfaces/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/misc/apiEvents/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/misc/locale/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/misc/menu/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/misc/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/misc/state/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/modules/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/navigation/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/pagination/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/pinnedColumns/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/pinnedRowModel/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/rendering/cell/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/rendering/cellRenderers/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/rendering/features/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/rendering/overlays/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/rendering/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/rendering/row/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/rendering/spanning/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/selection/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/sort/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/styling/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/testing/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/core/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/button-style/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/checkbox-style/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/color-scheme/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/column-drop-style/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/icon-set/alpine/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/icon-set/balham/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/icon-set/material/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/icon-set/overrides/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/icon-set/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/icon-set/quartz/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/input-style/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/tab-style/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/theming/parts/theme/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/tooltip/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/undoRedo/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/utils/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/validation/errorMessages/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/validation/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/valueService/package.json","../../../../../node_modules/ag-grid-community/dist/types/src/widgets/package.json","../../../../../node_modules/ag-stack/dist/types/src/constants/package.json","../../../../../node_modules/ag-stack/dist/types/src/core/package.json","../../../../../node_modules/ag-stack/dist/types/src/events/package.json","../../../../../node_modules/ag-stack/dist/types/src/focus/package.json","../../../../../node_modules/ag-stack/dist/types/src/interfaces/package.json","../../../../../node_modules/ag-stack/dist/types/src/package.json","../../../../../node_modules/ag-stack/dist/types/src/popup/package.json","../../../../../node_modules/ag-stack/dist/types/src/rendering/package.json","../../../../../node_modules/ag-stack/dist/types/src/theming/package.json","../../../../../node_modules/ag-stack/dist/types/src/theming/shared/package.json","../../../../../node_modules/ag-stack/dist/types/src/tooltip/package.json","../../../../../node_modules/ag-stack/dist/types/src/utils/package.json","../../../../../node_modules/ajv/dist/compile/codegen/package.json","../../../../../node_modules/ajv/dist/compile/package.json","../../../../../node_modules/ajv/dist/compile/validate/package.json","../../../../../node_modules/ajv/dist/package.json","../../../../../node_modules/ajv/dist/runtime/package.json","../../../../../node_modules/ajv/dist/types/package.json","../../../../../node_modules/ajv/dist/vocabularies/applicator/package.json","../../../../../node_modules/ajv/dist/vocabularies/discriminator/package.json","../../../../../node_modules/ajv/dist/vocabularies/format/package.json","../../../../../node_modules/ajv/dist/vocabularies/package.json","../../../../../node_modules/ajv/dist/vocabularies/unevaluated/package.json","../../../../../node_modules/ajv/dist/vocabularies/validation/package.json","../../../../../node_modules/consola/core/package.json","../../../../../node_modules/consola/dist/package.json","../../../../../node_modules/dayjs/locale/en-gb/package.json","../../../../../node_modules/dayjs/locale/package.json","../../../../../node_modules/numeral/locales/package.json","../../../../../node_modules/rxjs/dist/package.json","../../../../../node_modules/rxjs/dist/types/internal/observable/dom/package.json","../../../../../node_modules/rxjs/dist/types/internal/observable/package.json","../../../../../node_modules/rxjs/dist/types/internal/operators/package.json","../../../../../node_modules/rxjs/dist/types/internal/package.json","../../../../../node_modules/rxjs/dist/types/internal/scheduled/package.json","../../../../../node_modules/rxjs/dist/types/internal/scheduler/package.json","../../../../../node_modules/rxjs/dist/types/internal/symbol/package.json","../../../../../node_modules/rxjs/dist/types/internal/testing/package.json","../../../../../node_modules/rxjs/dist/types/internal/util/package.json","../../../../../node_modules/rxjs/dist/types/operators/package.json","../../../../../node_modules/rxjs/dist/types/package.json","../../../../../node_modules/rxjs/dist/types/testing/package.json","../../../../../node_modules/uri-js/dist/es5/package.json","../../../../../node_modules/uri-js/dist/package.json","../../../expression-builder/node_modules/@microsoft/fast-element/package.json","../../../foundation-ai/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-broadcast-channel/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-comms/node_modules/@microsoft/fast-element/package.json","../../../foundation-comms/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-comms/node_modules/bowser/package.json","../../../foundation-comms/node_modules/json-schema/package.json","../../../foundation-comms/node_modules/rxjs/package.json","../../../foundation-criteria/node_modules/@microsoft/fast-element/package.json","../../../foundation-ds/foundation-zero-grid-pro/node_modules/@microsoft/fast-components/package.json","../../../foundation-ds/foundation-zero-grid-pro/node_modules/@microsoft/fast-element/package.json","../../../foundation-ds/foundation-zero-grid-pro/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-events/node_modules/@microsoft/fast-element/package.json","../../../foundation-events/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-forms/node_modules/@jsonforms/core/package.json","../../../foundation-forms/node_modules/@microsoft/fast-element/package.json","../../../foundation-forms/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-forms/node_modules/ajv/package.json","../../../foundation-forms/node_modules/json-schema/package.json","../../../foundation-marketplace/grids/grid-pro/node_modules/@ag-grid-community/core/package.json","../../../foundation-marketplace/grids/grid-pro/node_modules/@microsoft/fast-components/package.json","../../../foundation-marketplace/grids/grid-pro/node_modules/@microsoft/fast-element/package.json","../../../foundation-marketplace/grids/grid-pro/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-marketplace/grids/grid-pro/node_modules/ag-grid-community/package.json","../../../foundation-marketplace/grids/grid-pro/node_modules/rxjs/package.json","../../foundation-entity-management/node_modules/@ag-grid-community/core/package.json","../../foundation-entity-management/node_modules/@microsoft/fast-element/package.json","../../foundation-entity-management/node_modules/@microsoft/fast-foundation/package.json","../../foundation-entity-management/node_modules/ag-grid-community/package.json","../node_modules/@typescript/lib-decorators/legacy/package.json","../node_modules/@typescript/lib-decorators/package.json","../node_modules/@typescript/lib-dom/iterable/package.json","../node_modules/@typescript/lib-dom/package.json","../node_modules/@typescript/lib-es2015/collection/package.json","../node_modules/@typescript/lib-es2015/core/package.json","../node_modules/@typescript/lib-es2015/generator/package.json","../node_modules/@typescript/lib-es2015/iterable/package.json","../node_modules/@typescript/lib-es2015/package.json","../node_modules/@typescript/lib-es2015/promise/package.json","../node_modules/@typescript/lib-es2015/proxy/package.json","../node_modules/@typescript/lib-es2015/reflect/package.json","../node_modules/@typescript/lib-es2015/symbol-wellknown/package.json","../node_modules/@typescript/lib-es2015/symbol/package.json","../node_modules/@typescript/lib-es2016/array-include/package.json","../node_modules/@typescript/lib-es2016/intl/package.json","../node_modules/@typescript/lib-es2016/package.json","../node_modules/@typescript/lib-es2017/arraybuffer/package.json","../node_modules/@typescript/lib-es2017/date/package.json","../node_modules/@typescript/lib-es2017/intl/package.json","../node_modules/@typescript/lib-es2017/object/package.json","../node_modules/@typescript/lib-es2017/package.json","../node_modules/@typescript/lib-es2017/sharedmemory/package.json","../node_modules/@typescript/lib-es2017/string/package.json","../node_modules/@typescript/lib-es2017/typedarrays/package.json","../node_modules/@typescript/lib-es2018/asyncgenerator/package.json","../node_modules/@typescript/lib-es2018/asynciterable/package.json","../node_modules/@typescript/lib-es2018/intl/package.json","../node_modules/@typescript/lib-es2018/package.json","../node_modules/@typescript/lib-es2018/promise/package.json","../node_modules/@typescript/lib-es2018/regexp/package.json","../node_modules/@typescript/lib-es2019/array/package.json","../node_modules/@typescript/lib-es2019/intl/package.json","../node_modules/@typescript/lib-es2019/object/package.json","../node_modules/@typescript/lib-es2019/package.json","../node_modules/@typescript/lib-es2019/string/package.json","../node_modules/@typescript/lib-es2019/symbol/package.json","../node_modules/@typescript/lib-es2020/bigint/package.json","../node_modules/@typescript/lib-es2020/date/package.json","../node_modules/@typescript/lib-es2020/intl/package.json","../node_modules/@typescript/lib-es2020/number/package.json","../node_modules/@typescript/lib-es2020/package.json","../node_modules/@typescript/lib-es2020/promise/package.json","../node_modules/@typescript/lib-es2020/sharedmemory/package.json","../node_modules/@typescript/lib-es2020/string/package.json","../node_modules/@typescript/lib-es2020/symbol-wellknown/package.json","../node_modules/@typescript/lib-es5/package.json","../node_modules/tslib/package.json","../../../foundation-ui/node_modules/@fortawesome/fontawesome-svg-core/package.json","../../../foundation-ui/node_modules/@microsoft/fast-components/package.json","../../../foundation-ui/node_modules/@microsoft/fast-element/package.json","../../../foundation-ui/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-ui/node_modules/@microsoft/fast-router/package.json","../../../foundation-ui/node_modules/@microsoft/fast-web-utilities/package.json","../../../foundation-ui/node_modules/@popperjs/core/package.json","../../../foundation-ui/node_modules/dayjs/locale/en-gb/package.json","../../../foundation-ui/node_modules/dayjs/package.json","../../../foundation-ui/node_modules/rxjs/package.json","../../../foundation-user/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-utils/node_modules/@microsoft/fast-element/package.json","../../../foundation-utils/node_modules/@microsoft/fast-foundation/package.json","../../../foundation-utils/node_modules/json-schema/package.json","../../../foundation-utils/node_modules/numeral/locales/package.json","../../../foundation-utils/node_modules/numeral/package.json","../../../foundation-utils/node_modules/rxjs/package.json"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/pbc-auth-ui",
3
3
  "description": "Genesis PBC auth UI",
4
- "version": "15.6.2",
4
+ "version": "15.7.0-ts7.1",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/dts/index.d.ts",
@@ -64,8 +64,8 @@
64
64
  }
65
65
  },
66
66
  "devDependencies": {
67
- "@genesislcap/foundation-testing": "15.6.2",
68
- "@genesislcap/genx": "15.6.2",
67
+ "@genesislcap/foundation-testing": "15.7.0-ts7.1",
68
+ "@genesislcap/genx": "15.7.0-ts7.1",
69
69
  "playwright-lighthouse": "^4.0.0",
70
70
  "rimraf": "^3.0.2",
71
71
  "tslib": "^2.3.1"
@@ -74,17 +74,17 @@
74
74
  "@ag-grid-community/core": "29.2.0"
75
75
  },
76
76
  "dependencies": {
77
- "@genesislcap/foundation-comms": "15.6.2",
78
- "@genesislcap/foundation-entity-management": "15.6.2",
79
- "@genesislcap/foundation-logger": "15.6.2",
80
- "@genesislcap/foundation-notifications": "15.6.2",
81
- "@genesislcap/foundation-utils": "15.6.2",
82
- "@genesislcap/grid-pro": "15.6.2",
83
- "@genesislcap/web-core": "15.6.2"
77
+ "@genesislcap/foundation-comms": "15.7.0-ts7.1",
78
+ "@genesislcap/foundation-entity-management": "15.7.0-ts7.1",
79
+ "@genesislcap/foundation-logger": "15.7.0-ts7.1",
80
+ "@genesislcap/foundation-notifications": "15.7.0-ts7.1",
81
+ "@genesislcap/foundation-utils": "15.7.0-ts7.1",
82
+ "@genesislcap/grid-pro": "15.7.0-ts7.1",
83
+ "@genesislcap/web-core": "15.7.0-ts7.1"
84
84
  },
85
85
  "publishConfig": {
86
86
  "access": "public"
87
87
  },
88
88
  "customElements": "dist/custom-elements.json",
89
- "gitHead": "a5781780cb56906755ddbfc4be75e221719ae4b4"
89
+ "gitHead": "cbdc6ec8914b5a75c30535e4bd15b11aff6c96fd"
90
90
  }
package/tsconfig.json CHANGED
@@ -10,9 +10,11 @@
10
10
  "esModuleInterop": true,
11
11
  "experimentalDecorators": true,
12
12
  "importHelpers": true,
13
+ "libReplacement": true,
13
14
  "lib": ["DOM", "DOM.Iterable", "ES2015", "ES2016", "ES2017", "ES2019", "ES2020"],
14
15
  "module": "ESNext",
15
- "moduleResolution": "node",
16
+ "moduleResolution": "bundler",
17
+ "strict": false,
16
18
  "noEmitOnError": true,
17
19
  "noImplicitAny": false,
18
20
  "preserveConstEnums": true,