@genesislcap/foundation-store 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.
@@ -1,37 +1,65 @@
1
1
  import { ReportService, SubService } from './services';
2
2
  import { SubStore, SubStoreEventMap, TestStore, TestStoreEventDetailMap } from './store';
3
3
  declare const TestChildElement_base: abstract new (...args: any[]) => {
4
- $emit<K extends "x-changed" | "y-changed" | "z-changed">(...args: Pick<SubStoreEventMap, "x-changed" | "y-changed" | "z-changed">[K] extends void ? [type: K, options?: import("@genesislcap/foundation-events").EmitOptions] : [type: K, detail: Pick<SubStoreEventMap, "x-changed" | "y-changed" | "z-changed">[K], options?: import("@genesislcap/foundation-events").EmitOptions]): import("@genesislcap/foundation-events").EmitReturn;
5
- accessKey: string;
6
- readonly accessKeyLabel: string;
7
- autocapitalize: string;
8
- autocorrect: boolean;
9
- dir: string;
10
- draggable: boolean;
11
- hidden: boolean;
12
- inert: boolean;
13
- innerText: string;
14
- lang: string;
15
- readonly offsetHeight: number;
16
- readonly offsetLeft: number;
17
- readonly offsetParent: Element | null;
18
- readonly offsetTop: number;
19
- readonly offsetWidth: number;
20
- outerText: string;
21
- popover: string | null;
22
- spellcheck: boolean;
23
- title: string;
24
- translate: boolean;
25
- writingSuggestions: string;
26
- attachInternals(): ElementInternals;
27
- click(): void;
28
- hidePopover(): void;
29
- showPopover(): void;
30
- togglePopover(options?: boolean): boolean;
31
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
32
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
33
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
34
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
4
+ $emit<K extends ("x-changed" | "y-changed" | "z-changed") & string>(...args: Pick<SubStoreEventMap, "x-changed" | "y-changed" | "z-changed">[K] extends void ? [type: K, options?: import("@genesislcap/foundation-events").EmitOptions] : [type: K, detail: Pick<SubStoreEventMap, "x-changed" | "y-changed" | "z-changed">[K], options?: import("@genesislcap/foundation-events").EmitOptions]): import("@genesislcap/foundation-events").EmitReturn;
5
+ ariaActiveDescendantElement: Element | null;
6
+ ariaAtomic: string | null;
7
+ ariaAutoComplete: string | null;
8
+ ariaBrailleLabel: string | null;
9
+ ariaBrailleRoleDescription: string | null;
10
+ ariaBusy: string | null;
11
+ ariaChecked: string | null;
12
+ ariaColCount: string | null;
13
+ ariaColIndex: string | null;
14
+ ariaColIndexText: string | null;
15
+ ariaColSpan: string | null;
16
+ ariaControlsElements: ReadonlyArray<Element> | null;
17
+ ariaCurrent: string | null;
18
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
19
+ ariaDescription: string | null;
20
+ ariaDetailsElements: ReadonlyArray<Element> | null;
21
+ ariaDisabled: string | null;
22
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
23
+ ariaExpanded: string | null;
24
+ ariaFlowToElements: ReadonlyArray<Element> | null;
25
+ ariaHasPopup: string | null;
26
+ ariaHidden: string | null;
27
+ ariaInvalid: string | null;
28
+ ariaKeyShortcuts: string | null;
29
+ ariaLabel: string | null;
30
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
31
+ ariaLevel: string | null;
32
+ ariaLive: string | null;
33
+ ariaModal: string | null;
34
+ ariaMultiLine: string | null;
35
+ ariaMultiSelectable: string | null;
36
+ ariaOrientation: string | null;
37
+ ariaOwnsElements: ReadonlyArray<Element> | null;
38
+ ariaPlaceholder: string | null;
39
+ ariaPosInSet: string | null;
40
+ ariaPressed: string | null;
41
+ ariaReadOnly: string | null;
42
+ ariaRelevant: string | null;
43
+ ariaRequired: string | null;
44
+ ariaRoleDescription: string | null;
45
+ ariaRowCount: string | null;
46
+ ariaRowIndex: string | null;
47
+ ariaRowIndexText: string | null;
48
+ ariaRowSpan: string | null;
49
+ ariaSelected: string | null;
50
+ ariaSetSize: string | null;
51
+ ariaSort: string | null;
52
+ ariaValueMax: string | null;
53
+ ariaValueMin: string | null;
54
+ ariaValueNow: string | null;
55
+ ariaValueText: string | null;
56
+ role: string | null;
57
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
58
+ getAnimations(options?: GetAnimationsOptions): Animation[];
59
+ after(...nodes: (Node | string)[]): void;
60
+ before(...nodes: (Node | string)[]): void;
61
+ remove(): void;
62
+ replaceWith(...nodes: (Node | string)[]): void;
35
63
  readonly attributes: NamedNodeMap;
36
64
  get classList(): DOMTokenList;
37
65
  set classList(value: string);
@@ -91,6 +119,9 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
91
119
  insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
92
120
  insertAdjacentHTML(position: InsertPosition, string: string): void;
93
121
  insertAdjacentText(where: InsertPosition, data: string): void;
122
+ matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
123
+ matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
124
+ matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
94
125
  matches(selectors: string): boolean;
95
126
  releasePointerCapture(pointerId: number): void;
96
127
  removeAttribute(qualifiedName: string): void;
@@ -114,130 +145,6 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
114
145
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
115
146
  webkitMatchesSelector(selectors: string): boolean;
116
147
  textContent: string;
117
- readonly baseURI: string;
118
- readonly childNodes: NodeListOf<ChildNode>;
119
- readonly firstChild: ChildNode | null;
120
- readonly isConnected: boolean;
121
- readonly lastChild: ChildNode | null;
122
- readonly nextSibling: ChildNode | null;
123
- readonly nodeName: string;
124
- readonly nodeType: number;
125
- nodeValue: string | null;
126
- readonly parentElement: HTMLElement | null;
127
- readonly parentNode: ParentNode | null;
128
- readonly previousSibling: ChildNode | null;
129
- appendChild<T extends Node>(node: T): T;
130
- cloneNode(subtree?: boolean): Node;
131
- compareDocumentPosition(other: Node): number;
132
- contains(other: Node | null): boolean;
133
- getRootNode(options?: GetRootNodeOptions): Node;
134
- hasChildNodes(): boolean;
135
- insertBefore<T extends Node>(node: T, child: Node | null): T;
136
- isDefaultNamespace(namespace: string | null): boolean;
137
- isEqualNode(otherNode: Node | null): boolean;
138
- isSameNode(otherNode: Node | null): boolean;
139
- lookupNamespaceURI(prefix: string | null): string | null;
140
- lookupPrefix(namespace: string | null): string | null;
141
- normalize(): void;
142
- removeChild<T extends Node>(child: T): T;
143
- replaceChild<T extends Node>(node: Node, child: T): T;
144
- readonly ELEMENT_NODE: 1;
145
- readonly ATTRIBUTE_NODE: 2;
146
- readonly TEXT_NODE: 3;
147
- readonly CDATA_SECTION_NODE: 4;
148
- readonly ENTITY_REFERENCE_NODE: 5;
149
- readonly ENTITY_NODE: 6;
150
- readonly PROCESSING_INSTRUCTION_NODE: 7;
151
- readonly COMMENT_NODE: 8;
152
- readonly DOCUMENT_NODE: 9;
153
- readonly DOCUMENT_TYPE_NODE: 10;
154
- readonly DOCUMENT_FRAGMENT_NODE: 11;
155
- readonly NOTATION_NODE: 12;
156
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
157
- readonly DOCUMENT_POSITION_PRECEDING: 2;
158
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
159
- readonly DOCUMENT_POSITION_CONTAINS: 8;
160
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
161
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
162
- dispatchEvent(event: Event): boolean;
163
- ariaActiveDescendantElement: Element | null;
164
- ariaAtomic: string | null;
165
- ariaAutoComplete: string | null;
166
- ariaBrailleLabel: string | null;
167
- ariaBrailleRoleDescription: string | null;
168
- ariaBusy: string | null;
169
- ariaChecked: string | null;
170
- ariaColCount: string | null;
171
- ariaColIndex: string | null;
172
- ariaColIndexText: string | null;
173
- ariaColSpan: string | null;
174
- ariaControlsElements: ReadonlyArray<Element> | null;
175
- ariaCurrent: string | null;
176
- ariaDescribedByElements: ReadonlyArray<Element> | null;
177
- ariaDescription: string | null;
178
- ariaDetailsElements: ReadonlyArray<Element> | null;
179
- ariaDisabled: string | null;
180
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
181
- ariaExpanded: string | null;
182
- ariaFlowToElements: ReadonlyArray<Element> | null;
183
- ariaHasPopup: string | null;
184
- ariaHidden: string | null;
185
- ariaInvalid: string | null;
186
- ariaKeyShortcuts: string | null;
187
- ariaLabel: string | null;
188
- ariaLabelledByElements: ReadonlyArray<Element> | null;
189
- ariaLevel: string | null;
190
- ariaLive: string | null;
191
- ariaModal: string | null;
192
- ariaMultiLine: string | null;
193
- ariaMultiSelectable: string | null;
194
- ariaOrientation: string | null;
195
- ariaOwnsElements: ReadonlyArray<Element> | null;
196
- ariaPlaceholder: string | null;
197
- ariaPosInSet: string | null;
198
- ariaPressed: string | null;
199
- ariaReadOnly: string | null;
200
- ariaRelevant: string | null;
201
- ariaRequired: string | null;
202
- ariaRoleDescription: string | null;
203
- ariaRowCount: string | null;
204
- ariaRowIndex: string | null;
205
- ariaRowIndexText: string | null;
206
- ariaRowSpan: string | null;
207
- ariaSelected: string | null;
208
- ariaSetSize: string | null;
209
- ariaSort: string | null;
210
- ariaValueMax: string | null;
211
- ariaValueMin: string | null;
212
- ariaValueNow: string | null;
213
- ariaValueText: string | null;
214
- role: string | null;
215
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
216
- getAnimations(options?: GetAnimationsOptions): Animation[];
217
- after(...nodes: (Node | string)[]): void;
218
- before(...nodes: (Node | string)[]): void;
219
- remove(): void;
220
- replaceWith(...nodes: (Node | string)[]): void;
221
- readonly nextElementSibling: Element | null;
222
- readonly previousElementSibling: Element | null;
223
- readonly childElementCount: number;
224
- readonly children: HTMLCollection;
225
- readonly firstElementChild: Element | null;
226
- readonly lastElementChild: Element | null;
227
- append(...nodes: (Node | string)[]): void;
228
- prepend(...nodes: (Node | string)[]): void;
229
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
230
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
231
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
232
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
233
- querySelector<E extends Element = Element>(selectors: string): E | null;
234
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
235
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
236
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
237
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
238
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
239
- replaceChildren(...nodes: (Node | string)[]): void;
240
- readonly assignedSlot: HTMLSlotElement | null;
241
148
  readonly attributeStyleMap: StylePropertyMap;
242
149
  get style(): CSSStyleDeclaration;
243
150
  set style(cssText: string);
@@ -245,6 +152,7 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
245
152
  enterKeyHint: string;
246
153
  inputMode: string;
247
154
  readonly isContentEditable: boolean;
155
+ dispatchEvent(event: Event): boolean;
248
156
  onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
249
157
  onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
250
158
  onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
@@ -261,6 +169,7 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
261
169
  onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
262
170
  onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
263
171
  onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
172
+ oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
264
173
  oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
265
174
  oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
266
175
  oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -282,7 +191,7 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
282
191
  onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
283
192
  onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
284
193
  ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
285
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
194
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
286
195
  oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
287
196
  onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
288
197
  onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
@@ -345,46 +254,13 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
345
254
  onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
255
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
256
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
348
- autofocus: boolean;
349
- readonly dataset: DOMStringMap;
350
- nonce?: string;
351
- tabIndex: number;
352
- blur(): void;
353
- focus(options?: FocusOptions): void;
354
- readonly $fastController: import("@microsoft/fast-element").Controller;
355
- connectedCallback(): void;
356
- disconnectedCallback(): void;
357
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
358
- };
359
- /**
360
- * @internal
361
- */
362
- export declare class TestChildElement extends TestChildElement_base {
363
- /**
364
- * @remarks
365
- * Normally you would inject the lowest store fragment the component needs. However, the test stores are set up as
366
- * `transient` due to the test suite create/destroy cycle, so injecting `@SubStore subStore: SubStore;` here would
367
- * result in a different instance than what is in the store tree. As such, we'll make this observable and pass the sub
368
- * store down as property. This saves us having to reset stores on each test suite cycle.
369
- *
370
- * @public
371
- */
372
- subStore: SubStore;
373
- /**
374
- * @public
375
- */
376
- entityNodes: Node[];
377
- }
378
- type TestElementEventMap = TestStoreEventDetailMap & SubStoreEventMap & {};
379
- declare const TestElement_base: abstract new (...args: any[]) => {
380
- $emit<K extends "x-changed" | "y-changed" | "z-changed" | "select-sub-entity" | "remove-sub-entity" | "store-connected" | "store-disconnected" | "store-ready" | "a-changed" | "b-changed" | "c-changed">(...args: TestElementEventMap[K] extends void ? [type: K, options?: import("@genesislcap/foundation-events").EmitOptions] : [type: K, detail: TestElementEventMap[K], options?: import("@genesislcap/foundation-events").EmitOptions]): import("@genesislcap/foundation-events").EmitReturn;
381
257
  accessKey: string;
382
258
  readonly accessKeyLabel: string;
383
259
  autocapitalize: string;
384
260
  autocorrect: boolean;
385
261
  dir: string;
386
262
  draggable: boolean;
387
- hidden: boolean;
263
+ hidden: boolean | "until-found";
388
264
  inert: boolean;
389
265
  innerText: string;
390
266
  lang: string;
@@ -408,88 +284,12 @@ declare const TestElement_base: abstract new (...args: any[]) => {
408
284
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
409
285
  removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
410
286
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
411
- readonly attributes: NamedNodeMap;
412
- get classList(): DOMTokenList;
413
- set classList(value: string);
414
- className: string;
415
- readonly clientHeight: number;
416
- readonly clientLeft: number;
417
- readonly clientTop: number;
418
- readonly clientWidth: number;
419
- readonly currentCSSZoom: number;
420
- id: string;
421
- innerHTML: string;
422
- readonly localName: string;
423
- readonly namespaceURI: string | null;
424
- onfullscreenchange: (this: Element, ev: Event) => any;
425
- onfullscreenerror: (this: Element, ev: Event) => any;
426
- outerHTML: string;
427
- readonly ownerDocument: Document;
428
- get part(): DOMTokenList;
429
- set part(value: string);
430
- readonly prefix: string | null;
431
- readonly scrollHeight: number;
432
- scrollLeft: number;
433
- scrollTop: number;
434
- readonly scrollWidth: number;
435
- readonly shadowRoot: ShadowRoot | null;
436
- slot: string;
437
- readonly tagName: string;
438
- attachShadow(init: ShadowRootInit): ShadowRoot;
439
- checkVisibility(options?: CheckVisibilityOptions): boolean;
440
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
441
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
442
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
443
- closest<E extends Element = Element>(selectors: string): E;
444
- computedStyleMap(): StylePropertyMapReadOnly;
445
- getAttribute(qualifiedName: string): string | null;
446
- getAttributeNS(namespace: string | null, localName: string): string | null;
447
- getAttributeNames(): string[];
448
- getAttributeNode(qualifiedName: string): Attr | null;
449
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
450
- getBoundingClientRect(): DOMRect;
451
- getClientRects(): DOMRectList;
452
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
453
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
454
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
455
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
456
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
457
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
458
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
459
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
460
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
461
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
462
- getHTML(options?: GetHTMLOptions): string;
463
- hasAttribute(qualifiedName: string): boolean;
464
- hasAttributeNS(namespace: string | null, localName: string): boolean;
465
- hasAttributes(): boolean;
466
- hasPointerCapture(pointerId: number): boolean;
467
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
468
- insertAdjacentHTML(position: InsertPosition, string: string): void;
469
- insertAdjacentText(where: InsertPosition, data: string): void;
470
- matches(selectors: string): boolean;
471
- releasePointerCapture(pointerId: number): void;
472
- removeAttribute(qualifiedName: string): void;
473
- removeAttributeNS(namespace: string | null, localName: string): void;
474
- removeAttributeNode(attr: Attr): Attr;
475
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
476
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
477
- scroll(options?: ScrollToOptions): void;
478
- scroll(x: number, y: number): void;
479
- scrollBy(options?: ScrollToOptions): void;
480
- scrollBy(x: number, y: number): void;
481
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
482
- scrollTo(options?: ScrollToOptions): void;
483
- scrollTo(x: number, y: number): void;
484
- setAttribute(qualifiedName: string, value: string): void;
485
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
486
- setAttributeNode(attr: Attr): Attr | null;
487
- setAttributeNodeNS(attr: Attr): Attr | null;
488
- setHTMLUnsafe(html: string): void;
489
- setPointerCapture(pointerId: number): void;
490
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
491
- webkitMatchesSelector(selectors: string): boolean;
492
- textContent: string;
287
+ autofocus: boolean;
288
+ readonly dataset: DOMStringMap;
289
+ nonce: string;
290
+ tabIndex: number;
291
+ blur(): void;
292
+ focus(options?: FocusOptions): void;
493
293
  readonly baseURI: string;
494
294
  readonly childNodes: NodeListOf<ChildNode>;
495
295
  readonly firstChild: ChildNode | null;
@@ -535,7 +335,54 @@ declare const TestElement_base: abstract new (...args: any[]) => {
535
335
  readonly DOCUMENT_POSITION_CONTAINS: 8;
536
336
  readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
537
337
  readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
538
- dispatchEvent(event: Event): boolean;
338
+ readonly nextElementSibling: Element | null;
339
+ readonly previousElementSibling: Element | null;
340
+ readonly childElementCount: number;
341
+ readonly children: HTMLCollection;
342
+ readonly firstElementChild: Element | null;
343
+ readonly lastElementChild: Element | null;
344
+ append(...nodes: (Node | string)[]): void;
345
+ moveBefore(node: Node, child: Node | null): void;
346
+ prepend(...nodes: (Node | string)[]): void;
347
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
348
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
349
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
350
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
351
+ querySelector<E extends Element = Element>(selectors: string): E | null;
352
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
353
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
354
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
355
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
356
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
357
+ replaceChildren(...nodes: (Node | string)[]): void;
358
+ readonly assignedSlot: HTMLSlotElement | null;
359
+ readonly $fastController: import("@microsoft/fast-element").Controller;
360
+ connectedCallback(): void;
361
+ disconnectedCallback(): void;
362
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
363
+ };
364
+ /**
365
+ * @internal
366
+ */
367
+ export declare class TestChildElement extends TestChildElement_base {
368
+ /**
369
+ * @remarks
370
+ * Normally you would inject the lowest store fragment the component needs. However, the test stores are set up as
371
+ * `transient` due to the test suite create/destroy cycle, so injecting `@SubStore subStore: SubStore;` here would
372
+ * result in a different instance than what is in the store tree. As such, we'll make this observable and pass the sub
373
+ * store down as property. This saves us having to reset stores on each test suite cycle.
374
+ *
375
+ * @public
376
+ */
377
+ subStore: SubStore;
378
+ /**
379
+ * @public
380
+ */
381
+ entityNodes: Node[];
382
+ }
383
+ type TestElementEventMap = TestStoreEventDetailMap & SubStoreEventMap & {};
384
+ declare const TestElement_base: abstract new (...args: any[]) => {
385
+ $emit<K extends ("a-changed" | "b-changed" | "c-changed" | keyof import("..").StoreRootEventDetailMap | keyof SubStoreEventMap) & string>(...args: TestElementEventMap[K] extends void ? [type: K, options?: import("@genesislcap/foundation-events").EmitOptions] : [type: K, detail: TestElementEventMap[K], options?: import("@genesislcap/foundation-events").EmitOptions]): import("@genesislcap/foundation-events").EmitReturn;
539
386
  ariaActiveDescendantElement: Element | null;
540
387
  ariaAtomic: string | null;
541
388
  ariaAutoComplete: string | null;
@@ -594,26 +441,91 @@ declare const TestElement_base: abstract new (...args: any[]) => {
594
441
  before(...nodes: (Node | string)[]): void;
595
442
  remove(): void;
596
443
  replaceWith(...nodes: (Node | string)[]): void;
597
- readonly nextElementSibling: Element | null;
598
- readonly previousElementSibling: Element | null;
599
- readonly childElementCount: number;
600
- readonly children: HTMLCollection;
601
- readonly firstElementChild: Element | null;
602
- readonly lastElementChild: Element | null;
603
- append(...nodes: (Node | string)[]): void;
604
- prepend(...nodes: (Node | string)[]): void;
605
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
606
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
607
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
608
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
609
- querySelector<E extends Element = Element>(selectors: string): E | null;
610
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
611
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
612
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
613
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
614
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
615
- replaceChildren(...nodes: (Node | string)[]): void;
616
- readonly assignedSlot: HTMLSlotElement | null;
444
+ readonly attributes: NamedNodeMap;
445
+ get classList(): DOMTokenList;
446
+ set classList(value: string);
447
+ className: string;
448
+ readonly clientHeight: number;
449
+ readonly clientLeft: number;
450
+ readonly clientTop: number;
451
+ readonly clientWidth: number;
452
+ readonly currentCSSZoom: number;
453
+ id: string;
454
+ innerHTML: string;
455
+ readonly localName: string;
456
+ readonly namespaceURI: string | null;
457
+ onfullscreenchange: (this: Element, ev: Event) => any;
458
+ onfullscreenerror: (this: Element, ev: Event) => any;
459
+ outerHTML: string;
460
+ readonly ownerDocument: Document;
461
+ get part(): DOMTokenList;
462
+ set part(value: string);
463
+ readonly prefix: string | null;
464
+ readonly scrollHeight: number;
465
+ scrollLeft: number;
466
+ scrollTop: number;
467
+ readonly scrollWidth: number;
468
+ readonly shadowRoot: ShadowRoot | null;
469
+ slot: string;
470
+ readonly tagName: string;
471
+ attachShadow(init: ShadowRootInit): ShadowRoot;
472
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
473
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
474
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
475
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
476
+ closest<E extends Element = Element>(selectors: string): E;
477
+ computedStyleMap(): StylePropertyMapReadOnly;
478
+ getAttribute(qualifiedName: string): string | null;
479
+ getAttributeNS(namespace: string | null, localName: string): string | null;
480
+ getAttributeNames(): string[];
481
+ getAttributeNode(qualifiedName: string): Attr | null;
482
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
483
+ getBoundingClientRect(): DOMRect;
484
+ getClientRects(): DOMRectList;
485
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
486
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
487
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
488
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
489
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
490
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
491
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
492
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
493
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
494
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
495
+ getHTML(options?: GetHTMLOptions): string;
496
+ hasAttribute(qualifiedName: string): boolean;
497
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
498
+ hasAttributes(): boolean;
499
+ hasPointerCapture(pointerId: number): boolean;
500
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
501
+ insertAdjacentHTML(position: InsertPosition, string: string): void;
502
+ insertAdjacentText(where: InsertPosition, data: string): void;
503
+ matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
504
+ matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
505
+ matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
506
+ matches(selectors: string): boolean;
507
+ releasePointerCapture(pointerId: number): void;
508
+ removeAttribute(qualifiedName: string): void;
509
+ removeAttributeNS(namespace: string | null, localName: string): void;
510
+ removeAttributeNode(attr: Attr): Attr;
511
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
512
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
513
+ scroll(options?: ScrollToOptions): void;
514
+ scroll(x: number, y: number): void;
515
+ scrollBy(options?: ScrollToOptions): void;
516
+ scrollBy(x: number, y: number): void;
517
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
518
+ scrollTo(options?: ScrollToOptions): void;
519
+ scrollTo(x: number, y: number): void;
520
+ setAttribute(qualifiedName: string, value: string): void;
521
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
522
+ setAttributeNode(attr: Attr): Attr | null;
523
+ setAttributeNodeNS(attr: Attr): Attr | null;
524
+ setHTMLUnsafe(html: string): void;
525
+ setPointerCapture(pointerId: number): void;
526
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
527
+ webkitMatchesSelector(selectors: string): boolean;
528
+ textContent: string;
617
529
  readonly attributeStyleMap: StylePropertyMap;
618
530
  get style(): CSSStyleDeclaration;
619
531
  set style(cssText: string);
@@ -621,6 +533,7 @@ declare const TestElement_base: abstract new (...args: any[]) => {
621
533
  enterKeyHint: string;
622
534
  inputMode: string;
623
535
  readonly isContentEditable: boolean;
536
+ dispatchEvent(event: Event): boolean;
624
537
  onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
625
538
  onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
626
539
  onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
@@ -637,6 +550,7 @@ declare const TestElement_base: abstract new (...args: any[]) => {
637
550
  onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
638
551
  onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
639
552
  onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
553
+ oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
640
554
  oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
641
555
  oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
642
556
  oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -658,7 +572,7 @@ declare const TestElement_base: abstract new (...args: any[]) => {
658
572
  onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
659
573
  onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
660
574
  ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
661
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
575
+ oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
662
576
  oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
663
577
  onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
664
578
  onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
@@ -721,12 +635,108 @@ declare const TestElement_base: abstract new (...args: any[]) => {
721
635
  onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
722
636
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
723
637
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
638
+ accessKey: string;
639
+ readonly accessKeyLabel: string;
640
+ autocapitalize: string;
641
+ autocorrect: boolean;
642
+ dir: string;
643
+ draggable: boolean;
644
+ hidden: boolean | "until-found";
645
+ inert: boolean;
646
+ innerText: string;
647
+ lang: string;
648
+ readonly offsetHeight: number;
649
+ readonly offsetLeft: number;
650
+ readonly offsetParent: Element | null;
651
+ readonly offsetTop: number;
652
+ readonly offsetWidth: number;
653
+ outerText: string;
654
+ popover: string | null;
655
+ spellcheck: boolean;
656
+ title: string;
657
+ translate: boolean;
658
+ writingSuggestions: string;
659
+ attachInternals(): ElementInternals;
660
+ click(): void;
661
+ hidePopover(): void;
662
+ showPopover(): void;
663
+ togglePopover(options?: boolean): boolean;
664
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
665
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
666
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
667
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
724
668
  autofocus: boolean;
725
669
  readonly dataset: DOMStringMap;
726
- nonce?: string;
670
+ nonce: string;
727
671
  tabIndex: number;
728
672
  blur(): void;
729
673
  focus(options?: FocusOptions): void;
674
+ readonly baseURI: string;
675
+ readonly childNodes: NodeListOf<ChildNode>;
676
+ readonly firstChild: ChildNode | null;
677
+ readonly isConnected: boolean;
678
+ readonly lastChild: ChildNode | null;
679
+ readonly nextSibling: ChildNode | null;
680
+ readonly nodeName: string;
681
+ readonly nodeType: number;
682
+ nodeValue: string | null;
683
+ readonly parentElement: HTMLElement | null;
684
+ readonly parentNode: ParentNode | null;
685
+ readonly previousSibling: ChildNode | null;
686
+ appendChild<T extends Node>(node: T): T;
687
+ cloneNode(subtree?: boolean): Node;
688
+ compareDocumentPosition(other: Node): number;
689
+ contains(other: Node | null): boolean;
690
+ getRootNode(options?: GetRootNodeOptions): Node;
691
+ hasChildNodes(): boolean;
692
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
693
+ isDefaultNamespace(namespace: string | null): boolean;
694
+ isEqualNode(otherNode: Node | null): boolean;
695
+ isSameNode(otherNode: Node | null): boolean;
696
+ lookupNamespaceURI(prefix: string | null): string | null;
697
+ lookupPrefix(namespace: string | null): string | null;
698
+ normalize(): void;
699
+ removeChild<T extends Node>(child: T): T;
700
+ replaceChild<T extends Node>(node: Node, child: T): T;
701
+ readonly ELEMENT_NODE: 1;
702
+ readonly ATTRIBUTE_NODE: 2;
703
+ readonly TEXT_NODE: 3;
704
+ readonly CDATA_SECTION_NODE: 4;
705
+ readonly ENTITY_REFERENCE_NODE: 5;
706
+ readonly ENTITY_NODE: 6;
707
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
708
+ readonly COMMENT_NODE: 8;
709
+ readonly DOCUMENT_NODE: 9;
710
+ readonly DOCUMENT_TYPE_NODE: 10;
711
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
712
+ readonly NOTATION_NODE: 12;
713
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
714
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
715
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
716
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
717
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
718
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
719
+ readonly nextElementSibling: Element | null;
720
+ readonly previousElementSibling: Element | null;
721
+ readonly childElementCount: number;
722
+ readonly children: HTMLCollection;
723
+ readonly firstElementChild: Element | null;
724
+ readonly lastElementChild: Element | null;
725
+ append(...nodes: (Node | string)[]): void;
726
+ moveBefore(node: Node, child: Node | null): void;
727
+ prepend(...nodes: (Node | string)[]): void;
728
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
729
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
730
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
731
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
732
+ querySelector<E extends Element = Element>(selectors: string): E | null;
733
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
734
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
735
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
736
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
737
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
738
+ replaceChildren(...nodes: (Node | string)[]): void;
739
+ readonly assignedSlot: HTMLSlotElement | null;
730
740
  readonly $fastController: import("@microsoft/fast-element").Controller;
731
741
  connectedCallback(): void;
732
742
  disconnectedCallback(): void;
@@ -1 +1 @@
1
- {"version":3,"file":"elements.d.ts","sourceRoot":"","sources":["../../../src/__test__/elements.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,SAAS,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKzF;;GAEG;AACH,qBAoBa,gBAAiB,SAAQ,qBAAmD;IACvF;;;;;;;;OAQG;IACS,QAAQ,EAAE,QAAQ,CAAC;IAE/B;;OAEG;IACS,WAAW,EAAE,IAAI,EAAE,CAAC;CACjC;AAED,KAAK,mBAAmB,GAAG,uBAAuB,GAAG,gBAAgB,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE3E;;GAEG;AACH,qBAkBa,WAAY,SAAQ,gBAA8C;IAC7E;;OAEG;IACQ,SAAS,EAAE,SAAS,CAAC;IAEhC;;;OAGG;IACY,aAAa,EAAE,aAAa,CAAC;IAE5C;;;OAGG;IACS,UAAU,EAAE,UAAU,CAAC;IAEnC;;OAEG;IACS,KAAK,EAAE,gBAAgB,CAAC;IAEpC;;OAEG;IACH,iBAAiB;IAMjB;;OAEG;IACH,oBAAoB;IAMpB;;OAEG;IACH,SAAS,CAAC,iBAAiB;IAI3B;;OAEG;IACH,SAAS,CAAC,oBAAoB;IAI9B;;OAEG;IACH,SAAS,CAAC,UAAU;IAKpB;;OAEG;IACH,SAAS,CAAC,eAAe;CAG1B"}
1
+ {"version":3,"file":"elements.d.ts","sourceRoot":"","sources":["../../../src/__test__/elements.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,SAAS,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kEA2Iy+I,IAAK;iEAA8F,IAAK;oEAAgG,IAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAtI/wJ;;GAEG;AACH,qBAoBa,gBAAiB,SAAQ,qBAAmD;IACvF;;;;;;;;OAQG;IACS,QAAQ,EAAE,QAAQ,CAAC;IAE/B;;OAEG;IACS,WAAW,EAAE,IAAI,EAAE,CAAC;CACjC;AAED,KAAK,mBAAmB,GAAG,uBAAuB,GAAG,gBAAgB,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kEA6Fu/I,IAAK;iEAA8F,IAAK;oEAAgG,IAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA3F/wJ;;GAEG;AACH,qBAkBa,WAAY,SAAQ,gBAA8C;IAC7E;;OAEG;IACQ,SAAS,EAAE,SAAS,CAAC;IAEhC;;;OAGG;IACY,aAAa,EAAE,aAAa,CAAC;IAE5C;;;OAGG;IACS,UAAU,EAAE,UAAU,CAAC;IAEnC;;OAEG;IACS,KAAK,EAAE,gBAAgB,CAAC;IAEpC;;OAEG;IACH,iBAAiB,SAIhB;IAED;;OAEG;IACH,oBAAoB,SAInB;IAED;;OAEG;IACH,SAAS,CAAC,iBAAiB,SAE1B;IAED;;OAEG;IACH,SAAS,CAAC,oBAAoB,SAE7B;IAED;;OAEG;IACH,SAAS,CAAC,UAAU,SAGnB;IAED;;OAEG;IACH,SAAS,CAAC,eAAe,SAExB;CACF"}
@@ -1 +1 @@
1
- {"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../../src/__test__/services.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEvD;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,YAAY,EAAE,SAAS,EAAE,GAAG,KAAK,CAAC;IAClC,IAAI,IAAI,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC;CAC9B;AAED;;GAEG;AACH,qBAAa,iBAAkB,YAAW,UAAU;IAClD,YAAY,EAAE,SAAS,EAAE,GAAG,KAAK,CAAC;IAClC,IAAI,QAAa,OAAO,CAAC,SAAS,EAAE,CAAC,CAKpC;CACF;AAED;;GAEG;AACH,eAAO,MAAM,UAAU,kEAAsE,CAAC;AAE9F;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,YAAY,EAAE,OAAO,GAAG,KAAK,CAAC;IAC9B,cAAc,EAAE,YAAY,CAAC;IAC7B,IAAI,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CAC9C;AAED;;GAEG;AACH,qBAAa,oBAAqB,YAAW,aAAa;IACxD,YAAY,EAAE,OAAO,GAAG,KAAK,CAAC;IAC9B,cAAc,EAAE,YAAY,CAAC;IAC7B,IAAI,GAAU,QAAQ,YAAY,KAAG,OAAO,CAAC,OAAO,CAAC,CAMnD;CACH;AAED;;GAEG;AACH,eAAO,MAAM,aAAa,qEAA4E,CAAC"}
1
+ {"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../../src/__test__/services.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEvD;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,YAAY,EAAE,SAAS,EAAE,GAAG,KAAK,CAAC;IAClC,IAAI,IAAI,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC;CAC9B;AAED;;GAEG;AACH,qBAAa,iBAAkB,YAAW,UAAU;IAClD,YAAY,EAAE,SAAS,EAAE,GAAG,KAAK,CAAC;IAClC,IAAI,QAAa,OAAO,CAAC,SAAS,EAAE,CAAC,CAKpC;CACF;AAED;;GAEG;AACH,eAAO,MAAM,UAAU,kEAAsE,CAAC;AAE9F;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,YAAY,EAAE,OAAO,GAAG,KAAK,CAAC;IAC9B,cAAc,EAAE,YAAY,CAAC;IAC7B,IAAI,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CAC9C;AAED;;GAEG;AACH,qBAAa,oBAAqB,YAAW,aAAa;IACxD,YAAY,EAAE,OAAO,GAAG,KAAK,CAAC;IAC9B,cAAc,EAAE,YAAY,CAAC;IAC7B,IAAI,WAAkB,YAAY,KAAG,OAAO,CAAC,OAAO,CAAC,CAMnD;CACH;AAED;;GAEG;AACH,eAAO,MAAM,aAAa,qEAA4E,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../../src/__test__/store.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../../src/__test__/store.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"errorMap.d.ts","sourceRoot":"","sources":["../../../src/store/errorMap.ts"],"names":[],"mappings":"AAGA;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAErD;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;AAEtD;;;GAGG;AACH,MAAM,WAAW,QAAQ,CAAC,eAAe,SAAS,cAAc,CAAE,SAAQ,IAAI,CAC5E,GAAG,CAAC,MAAM,eAAe,EAAE,KAAK,CAAC,EACjC,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAC5C;IACC;;;;;OAKG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAE1B;;;;;;OAMG;IACH,GAAG,CAAC,GAAG,EAAE,MAAM,eAAe,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;CACrD;AAqFD;;;;;;;GAOG;AACH,eAAO,MAAM,cAAc,GAAI,eAAe,SAAS,cAAc,EACnE,QAAQ,cAAc,KACrB,QAAQ,CAAC,eAAe,CAM1B,CAAC"}
1
+ {"version":3,"file":"errorMap.d.ts","sourceRoot":"","sources":["../../../src/store/errorMap.ts"],"names":[],"mappings":"AAGA;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAErD;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;AAEtD;;;GAGG;AACH,MAAM,WAAW,QAAQ,CAAC,eAAe,SAAS,cAAc,CAAE,SAAQ,IAAI,CAC5E,GAAG,CAAC,MAAM,eAAe,EAAE,KAAK,CAAC,EACjC,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAC5C;IACC;;;;;OAKG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAE1B;;;;;;OAMG;IACH,GAAG,CAAC,GAAG,EAAE,MAAM,eAAe,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;CACrD;AAqFD;;;;;;;GAOG;AACH,eAAO,MAAM,cAAc,GAAI,eAAe,SAAS,cAAc,UAC3D,cAAc,KACrB,QAAQ,CAAC,eAAe,CAM1B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"foundationStore.d.ts","sourceRoot":"","sources":["../../../src/store/foundationStore.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"foundationStore.d.ts","sourceRoot":"","sources":["../../../src/store/foundationStore.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-store",
3
3
  "description": "Genesis Foundation Store",
4
- "version": "15.6.2",
4
+ "version": "15.7.0-ts7.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -38,19 +38,19 @@
38
38
  }
39
39
  },
40
40
  "devDependencies": {
41
- "@genesislcap/foundation-testing": "15.6.2",
42
- "@genesislcap/genx": "15.6.2",
43
- "@genesislcap/rollup-builder": "15.6.2",
44
- "@genesislcap/ts-builder": "15.6.2",
45
- "@genesislcap/uvu-playwright-builder": "15.6.2",
46
- "@genesislcap/vite-builder": "15.6.2",
47
- "@genesislcap/webpack-builder": "15.6.2"
41
+ "@genesislcap/foundation-testing": "15.7.0-ts7.1",
42
+ "@genesislcap/genx": "15.7.0-ts7.1",
43
+ "@genesislcap/rollup-builder": "15.7.0-ts7.1",
44
+ "@genesislcap/ts-builder": "15.7.0-ts7.1",
45
+ "@genesislcap/uvu-playwright-builder": "15.7.0-ts7.1",
46
+ "@genesislcap/vite-builder": "15.7.0-ts7.1",
47
+ "@genesislcap/webpack-builder": "15.7.0-ts7.1"
48
48
  },
49
49
  "dependencies": {
50
- "@genesislcap/foundation-broadcast-channel": "15.6.2",
51
- "@genesislcap/foundation-events": "15.6.2",
52
- "@genesislcap/foundation-logger": "15.6.2",
53
- "@genesislcap/foundation-utils": "15.6.2",
50
+ "@genesislcap/foundation-broadcast-channel": "15.7.0-ts7.1",
51
+ "@genesislcap/foundation-events": "15.7.0-ts7.1",
52
+ "@genesislcap/foundation-logger": "15.7.0-ts7.1",
53
+ "@genesislcap/foundation-utils": "15.7.0-ts7.1",
54
54
  "@microsoft/fast-element": "1.14.0",
55
55
  "@microsoft/fast-foundation": "2.50.0",
56
56
  "@microsoft/fast-web-utilities": "5.4.1",
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "a5781780cb56906755ddbfc4be75e221719ae4b4"
68
+ "gitHead": "cbdc6ec8914b5a75c30535e4bd15b11aff6c96fd"
69
69
  }