@genesislcap/foundation-store 14.225.3 → 14.225.4-alpha-9342136.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/dts/__test__/elements.d.ts +90 -58
- package/dist/dts/__test__/elements.d.ts.map +1 -1
- package/dist/dts/store/errorMap.d.ts.map +1 -1
- package/dist/dts/store/foundationStore.d.ts.map +1 -1
- package/dist/foundation-store.api.json +90 -28
- package/dist/tsdoc-metadata.json +1 -1
- package/docs/api/foundation-store.createerrormap.md +14 -1
- package/docs/api/foundation-store.md +7 -2
- package/docs/api/foundation-store.registerstore.md +14 -1
- package/package.json +13 -13
- /package/docs/{api-report.md → api-report.md.api.md} +0 -0
@@ -17,11 +17,15 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
17
17
|
readonly offsetTop: number;
|
18
18
|
readonly offsetWidth: number;
|
19
19
|
outerText: string;
|
20
|
+
popover: string;
|
20
21
|
spellcheck: boolean;
|
21
22
|
title: string;
|
22
23
|
translate: boolean;
|
23
24
|
attachInternals(): ElementInternals;
|
24
25
|
click(): void;
|
26
|
+
hidePopover(): void;
|
27
|
+
showPopover(): void;
|
28
|
+
togglePopover(force?: boolean): boolean;
|
25
29
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
26
30
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
27
31
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -50,9 +54,12 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
50
54
|
slot: string;
|
51
55
|
readonly tagName: string;
|
52
56
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
57
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
53
58
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
54
59
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
60
|
+
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
55
61
|
closest<E extends Element = Element>(selectors: string): E;
|
62
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
56
63
|
getAttribute(qualifiedName: string): string;
|
57
64
|
getAttributeNS(namespace: string, localName: string): string;
|
58
65
|
getAttributeNames(): string[];
|
@@ -61,11 +68,14 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
61
68
|
getBoundingClientRect(): DOMRect;
|
62
69
|
getClientRects(): DOMRectList;
|
63
70
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
64
|
-
getElementsByTagName<
|
65
|
-
getElementsByTagName<
|
71
|
+
getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
|
72
|
+
getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
|
73
|
+
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
74
|
+
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
66
75
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
67
76
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
68
77
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
78
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
69
79
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
70
80
|
hasAttribute(qualifiedName: string): boolean;
|
71
81
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -123,24 +133,24 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
123
133
|
normalize(): void;
|
124
134
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
125
135
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
126
|
-
readonly
|
127
|
-
readonly
|
128
|
-
readonly
|
129
|
-
readonly
|
130
|
-
readonly
|
131
|
-
readonly
|
132
|
-
readonly
|
133
|
-
readonly
|
134
|
-
readonly
|
135
|
-
readonly
|
136
|
-
readonly
|
137
|
-
readonly
|
138
|
-
readonly
|
139
|
-
readonly
|
140
|
-
readonly
|
141
|
-
readonly
|
142
|
-
readonly
|
143
|
-
readonly
|
136
|
+
readonly ELEMENT_NODE: 1;
|
137
|
+
readonly ATTRIBUTE_NODE: 2;
|
138
|
+
readonly TEXT_NODE: 3;
|
139
|
+
readonly CDATA_SECTION_NODE: 4;
|
140
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
141
|
+
readonly ENTITY_NODE: 6;
|
142
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
143
|
+
readonly COMMENT_NODE: 8;
|
144
|
+
readonly DOCUMENT_NODE: 9;
|
145
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
146
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
147
|
+
readonly NOTATION_NODE: 12;
|
148
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
149
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
150
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
151
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
152
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
153
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
144
154
|
dispatchEvent(event: Event): boolean;
|
145
155
|
ariaAtomic: string;
|
146
156
|
ariaAutoComplete: string;
|
@@ -148,9 +158,9 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
148
158
|
ariaChecked: string;
|
149
159
|
ariaColCount: string;
|
150
160
|
ariaColIndex: string;
|
151
|
-
ariaColIndexText: string;
|
152
161
|
ariaColSpan: string;
|
153
162
|
ariaCurrent: string;
|
163
|
+
ariaDescription: string;
|
154
164
|
ariaDisabled: string;
|
155
165
|
ariaExpanded: string;
|
156
166
|
ariaHasPopup: string;
|
@@ -172,7 +182,6 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
172
182
|
ariaRoleDescription: string;
|
173
183
|
ariaRowCount: string;
|
174
184
|
ariaRowIndex: string;
|
175
|
-
ariaRowIndexText: string;
|
176
185
|
ariaRowSpan: string;
|
177
186
|
ariaSelected: string;
|
178
187
|
ariaSetSize: string;
|
@@ -197,17 +206,19 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
197
206
|
readonly lastElementChild: Element;
|
198
207
|
append(...nodes: (string | Node)[]): void;
|
199
208
|
prepend(...nodes: (string | Node)[]): void;
|
200
|
-
querySelector<
|
201
|
-
querySelector<
|
209
|
+
querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
|
210
|
+
querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
|
211
|
+
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
212
|
+
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
202
213
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
203
|
-
querySelectorAll<
|
204
|
-
querySelectorAll<
|
214
|
+
querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
|
215
|
+
querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
|
216
|
+
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
217
|
+
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
205
218
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
206
219
|
replaceChildren(...nodes: (string | Node)[]): void;
|
207
220
|
readonly assignedSlot: HTMLSlotElement;
|
208
|
-
|
209
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
210
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
221
|
+
readonly attributeStyleMap: StylePropertyMap;
|
211
222
|
readonly style: CSSStyleDeclaration;
|
212
223
|
contentEditable: string;
|
213
224
|
enterKeyHint: string;
|
@@ -220,6 +231,7 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
220
231
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
221
232
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
222
233
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
234
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
223
235
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
224
236
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
225
237
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -228,7 +240,9 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
228
240
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
229
241
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
230
242
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
243
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
231
244
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
245
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
232
246
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
233
247
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
234
248
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -261,6 +275,7 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
261
275
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
262
276
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
263
277
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
278
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
264
279
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
265
280
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
266
281
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -277,6 +292,7 @@ declare const TestChildElement_base: abstract new (...args: any[]) => {
|
|
277
292
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
278
293
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
279
294
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
295
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
280
296
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
281
297
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
282
298
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -352,11 +368,15 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
352
368
|
readonly offsetTop: number;
|
353
369
|
readonly offsetWidth: number;
|
354
370
|
outerText: string;
|
371
|
+
popover: string;
|
355
372
|
spellcheck: boolean;
|
356
373
|
title: string;
|
357
374
|
translate: boolean;
|
358
375
|
attachInternals(): ElementInternals;
|
359
376
|
click(): void;
|
377
|
+
hidePopover(): void;
|
378
|
+
showPopover(): void;
|
379
|
+
togglePopover(force?: boolean): boolean;
|
360
380
|
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
361
381
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
362
382
|
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -385,9 +405,12 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
385
405
|
slot: string;
|
386
406
|
readonly tagName: string;
|
387
407
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
408
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
388
409
|
closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
|
389
410
|
closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
|
411
|
+
closest<K_5 extends keyof MathMLElementTagNameMap>(selector: K_5): MathMLElementTagNameMap[K_5];
|
390
412
|
closest<E extends Element = Element>(selectors: string): E;
|
413
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
391
414
|
getAttribute(qualifiedName: string): string;
|
392
415
|
getAttributeNS(namespace: string, localName: string): string;
|
393
416
|
getAttributeNames(): string[];
|
@@ -396,11 +419,14 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
396
419
|
getBoundingClientRect(): DOMRect;
|
397
420
|
getClientRects(): DOMRectList;
|
398
421
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
399
|
-
getElementsByTagName<
|
400
|
-
getElementsByTagName<
|
422
|
+
getElementsByTagName<K_6 extends keyof HTMLElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<HTMLElementTagNameMap[K_6]>;
|
423
|
+
getElementsByTagName<K_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<SVGElementTagNameMap[K_7]>;
|
424
|
+
getElementsByTagName<K_8 extends keyof MathMLElementTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<MathMLElementTagNameMap[K_8]>;
|
425
|
+
getElementsByTagName<K_9 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_9): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_9]>;
|
401
426
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
402
427
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
403
428
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
429
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
404
430
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
405
431
|
hasAttribute(qualifiedName: string): boolean;
|
406
432
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -458,24 +484,24 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
458
484
|
normalize(): void;
|
459
485
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
460
486
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
461
|
-
readonly
|
462
|
-
readonly
|
463
|
-
readonly
|
464
|
-
readonly
|
465
|
-
readonly
|
466
|
-
readonly
|
467
|
-
readonly
|
468
|
-
readonly
|
469
|
-
readonly
|
470
|
-
readonly
|
471
|
-
readonly
|
472
|
-
readonly
|
473
|
-
readonly
|
474
|
-
readonly
|
475
|
-
readonly
|
476
|
-
readonly
|
477
|
-
readonly
|
478
|
-
readonly
|
487
|
+
readonly ELEMENT_NODE: 1;
|
488
|
+
readonly ATTRIBUTE_NODE: 2;
|
489
|
+
readonly TEXT_NODE: 3;
|
490
|
+
readonly CDATA_SECTION_NODE: 4;
|
491
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
492
|
+
readonly ENTITY_NODE: 6;
|
493
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
494
|
+
readonly COMMENT_NODE: 8;
|
495
|
+
readonly DOCUMENT_NODE: 9;
|
496
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
497
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
498
|
+
readonly NOTATION_NODE: 12;
|
499
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
500
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
501
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
502
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
503
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
504
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
479
505
|
dispatchEvent(event: Event): boolean;
|
480
506
|
ariaAtomic: string;
|
481
507
|
ariaAutoComplete: string;
|
@@ -483,9 +509,9 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
483
509
|
ariaChecked: string;
|
484
510
|
ariaColCount: string;
|
485
511
|
ariaColIndex: string;
|
486
|
-
ariaColIndexText: string;
|
487
512
|
ariaColSpan: string;
|
488
513
|
ariaCurrent: string;
|
514
|
+
ariaDescription: string;
|
489
515
|
ariaDisabled: string;
|
490
516
|
ariaExpanded: string;
|
491
517
|
ariaHasPopup: string;
|
@@ -507,7 +533,6 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
507
533
|
ariaRoleDescription: string;
|
508
534
|
ariaRowCount: string;
|
509
535
|
ariaRowIndex: string;
|
510
|
-
ariaRowIndexText: string;
|
511
536
|
ariaRowSpan: string;
|
512
537
|
ariaSelected: string;
|
513
538
|
ariaSetSize: string;
|
@@ -532,17 +557,19 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
532
557
|
readonly lastElementChild: Element;
|
533
558
|
append(...nodes: (string | Node)[]): void;
|
534
559
|
prepend(...nodes: (string | Node)[]): void;
|
535
|
-
querySelector<
|
536
|
-
querySelector<
|
560
|
+
querySelector<K_10 extends keyof HTMLElementTagNameMap>(selectors: K_10): HTMLElementTagNameMap[K_10];
|
561
|
+
querySelector<K_11 extends keyof SVGElementTagNameMap>(selectors: K_11): SVGElementTagNameMap[K_11];
|
562
|
+
querySelector<K_12 extends keyof MathMLElementTagNameMap>(selectors: K_12): MathMLElementTagNameMap[K_12];
|
563
|
+
querySelector<K_13 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_13): HTMLElementDeprecatedTagNameMap[K_13];
|
537
564
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
538
|
-
querySelectorAll<
|
539
|
-
querySelectorAll<
|
565
|
+
querySelectorAll<K_14 extends keyof HTMLElementTagNameMap>(selectors: K_14): NodeListOf<HTMLElementTagNameMap[K_14]>;
|
566
|
+
querySelectorAll<K_15 extends keyof SVGElementTagNameMap>(selectors: K_15): NodeListOf<SVGElementTagNameMap[K_15]>;
|
567
|
+
querySelectorAll<K_16 extends keyof MathMLElementTagNameMap>(selectors: K_16): NodeListOf<MathMLElementTagNameMap[K_16]>;
|
568
|
+
querySelectorAll<K_17 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_17): NodeListOf<HTMLElementDeprecatedTagNameMap[K_17]>;
|
540
569
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
541
570
|
replaceChildren(...nodes: (string | Node)[]): void;
|
542
571
|
readonly assignedSlot: HTMLSlotElement;
|
543
|
-
|
544
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
545
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
572
|
+
readonly attributeStyleMap: StylePropertyMap;
|
546
573
|
readonly style: CSSStyleDeclaration;
|
547
574
|
contentEditable: string;
|
548
575
|
enterKeyHint: string;
|
@@ -555,6 +582,7 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
555
582
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
556
583
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
557
584
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
585
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
558
586
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
559
587
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
560
588
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -563,7 +591,9 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
563
591
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
564
592
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
565
593
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
594
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
566
595
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
596
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
567
597
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
568
598
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
569
599
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -596,6 +626,7 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
596
626
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
597
627
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
598
628
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
629
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
599
630
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
600
631
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
601
632
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -612,6 +643,7 @@ declare const TestElement_base: abstract new (...args: any[]) => {
|
|
612
643
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
613
644
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
614
645
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
646
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
615
647
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
616
648
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
617
649
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -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
|
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 +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,CAC9D,SAAQ,IAAI,CAAC,GAAG,CAAC,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;IAC5F;;;;;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,mDACjB,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,CAC9D,SAAQ,IAAI,CAAC,GAAG,CAAC,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;IAC5F;;;;;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,mDACjB,cAAc,KACrB,SAAS,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":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AACrE,OAAO,EAAkB,QAAQ,EAAS,MAAM,+BAA+B,CAAC;AAChF,OAAO,EACL,eAAe,EACf,aAAa,EAEb,gBAAgB,EAGjB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAM,GAAG,EAAE,MAAM,4BAA4B,CAAC;AAErD,OAAO,EAAE,UAAU,IAAI,YAAY,EAAM,MAAM,MAAM,CAAC;AAItD;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,CAAC,OAAO,GAAG,GAAG,IAAI,CACpD,KAAK,EAAE,OAAO,EACd,IAAI,EAAE,eAAe,KAClB,IAAI,CAAC;AAEV;;;;;;GAMG;AACH,MAAM,WAAW,KAAK;IACpB;;;;;;;OAOG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAEvB;;;;;;;;;;;;;;;;OAgBG;IACH,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;IAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgDG;IACH,OAAO,CAAC,OAAO,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAClC,KAAK,EAAE,CAAC,CAAC,KAAK,EAAE,IAAI,KAAK,OAAO,CAAC,GAAG,MAAM,IAAI,EAC9C,wBAAwB,CAAC,EAAE,wBAAwB,CAAC,OAAO,CAAC,GAAG,SAAS,EACxE,iBAAiB,CAAC,EAAE,OAAO,EAC3B,OAAO,CAAC,EAAE,gBAAgB,GACzB,eAAe,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IAE3C;;;;;;;;;;;;;OAaG;IACH,WAAW,IAAI,YAAY,CAAC,IAAI,CAAC,CAAC;IAElC;;;;;;;;;;OAUG;IACH,WAAW,CAAC,IAAI,SAAS,MAAM,IAAI,EAAE,GAAG,EAAE,IAAI,GAAG,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;IAE1E;;;;;;;;;;OAUG;IACH,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,KAAK,EAAE,IAAI,KAAK,OAAO,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;IAE9E;;;;;OAKG;IACH,WAAW,CAAC,OAAO,EACjB,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,IAAI,KAAK,OAAO,CAAC,GAAG,MAAM,IAAI,GAC9C,YAAY,CAAC,OAAO,GAAG,IAAI,CAAC,CAAC;IAEhC;;;;;;OAMG;IACH,iBAAiB,CAAC,GAAG,cAAc,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC;IAEpD;;;;;;OAMG;IACH,oBAAoB,CAAC,GAAG,cAAc,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC;CACxD;AAED;;;;;;GAMG;AACH,MAAM,WAAW,SAAU,SAAQ,KAAK;IACtC;;;;OAIG;IACH,QAAQ,CAAC,OAAO,EAAE,WAAW,CAAC;IAC9B;;;;;OAKG;IACH,QAAQ,CAAC,KAAK,EAAE,OAAO,CAAC;IACxB,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC;IACnD,cAAc,CAAC,KAAK,EAAE,WAAW,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC/C,OAAO,CAAC,KAAK,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;CAC5C;AAED;;;;;GAKG;AACH,MAAM,WAAW,gBAAgB,CAAC,UAAU,SAAS,SAAS;IAC5D;;;;;OAKG;IACH,OAAO,CAAC,IAAI,EAAE,UAAU,GAAG,IAAI,CAAC;IAEhC;;;;;OAKG;IACH,UAAU,CAAC,IAAI,EAAE,UAAU,GAAG,IAAI,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,MAAM,uBAAuB,CAAC,MAAM,SAAS,KAAK,EAAE,OAAO,GAAG,GAAG,IAAI,CACzE,OAAO,EAAE,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,gBAAgB,KAAK,OAAO,EAC5D,IAAI,EAAE,eAAe,KAClB,IAAI,CAAC;AAEV;;;;;GAKG;AACH,MAAM,WAAW,eAAe,CAAC,MAAM,SAAS,KAAK,EAAE,OAAO,GAAG,GAAG;IAClE,YAAY,EAAE,uBAAuB,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACxD;AAED;;;;GAIG;AACH,MAAM,MAAM,YAAY,CAAC,MAAM,SAAS,KAAK,IAAI,CAAC,KAAK,EAAE,MAAM,KAAK,GAAG,CAAC;AAaxE;;;;GAIG;AACH,MAAM,MAAM,SAAS,CAAC,gBAAgB,SAAS,cAAc,IACzD,MAAM,gBAAgB,GACtB,CAAC,MAAM,gBAAgB,CAAC,EAAE,CAAC;AAE/B;;GAEG;AACH,oBAAY,iBAAiB;IAC3B,IAAI,SAAS;IACb,KAAK,UAAU;IACf,KAAK,UAAU;CAChB;AAED;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,aAAa,wBAClB,cAAc,KAAK,CAAC,SACpB,MAAM,4DAQb,CAAC;AAcF;;;;;;;;GAQG;AACH,8BAAsB,aAAa,CACjC,MAAM,SAAS,KAAK,EACpB,eAAe,SAAS,cAAc,EACtC,uBAAuB,SAAS,cAAc,GAAG,eAAe,EAChE,UAAU,SAAS,SAAS,GAAG,SAAS,CACxC,YAAW,KAAK;IAEhB;;;;;;;;OAQG;IACH,OAAO,CAAC,gBAAgB,CAG2D;IAEnF;;;;OAIG;IACH,SAAS,CAAC,IAAI,EAAE,UAAU,CAAC;IAE3B;;;;OAIG;IACH,SAAS,CAAC,cAAc,EAAE,KAAK,EAAE,CAAM;IAEvC;;OAEG;gBACS,GAAG,cAAc,EAAE,KAAK,EAAE;IAItC,4CAA4C;IAC5C,iBAAiB,CAAC,GAAG,cAAc,EAAE,KAAK,EAAE;IAO5C,+CAA+C;IAC/C,oBAAoB,CAAC,GAAG,cAAc,EAAE,KAAK,EAAE;IAO/C;;;;;;;;;;OAUG;IACH,SAAS,CAAC,QAAQ,CAAC,aAAa,EAAE,YAAY,CAAC,IAAI,CAAC,CAgBlD;IAEF;;;;;;;;;;;OAWG;IACH,SAAS,CAAC,QAAQ,CAAC,MAAM,OAAuC;IAEhE;;;;;;;;OAQG;IACH,SAAS,CAAC,WAAW,CAAC,CAAC,SAAS,MAAM,MAAM,EAAE,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI;IAI7E,kCAAkC;IAClC,OAAO,CAAC,OAAO,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAClC,KAAK,EAAE,CAAC,CAAC,KAAK,EAAE,IAAI,KAAK,OAAO,CAAC,GAAG,MAAM,IAAI,EAC9C,wBAAwB,CAAC,EAAE,wBAAwB,CAAC,OAAO,CAAC,GAAG,SAAS,EACxE,iBAAiB,GAAE,OAAe,EAClC,OAAO,GAAE,gBAA0C,GAClD,eAAe,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,CAAC;IAkB1C,sCAAsC;IACtC,WAAW,IAAI,YAAY,CAAC,IAAI,CAAC;IACjC,sCAAsC;IACtC,WAAW,CAAC,IAAI,SAAS,MAAM,IAAI,EAAE,GAAG,EAAE,IAAI,GAAG,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACzE,sCAAsC;IACtC,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,KAAK,EAAE,IAAI,KAAK,OAAO,GAAG,YAAY,CAAC,OAAO,CAAC;IAY7E,6CAA6C;IAC7C,OAAO,CAAC,IAAI,EAAE,UAAU,GAAG,IAAI;IAM/B,gDAAgD;IAChD,UAAU,CAAC,IAAI,EAAE,UAAU,GAAG,IAAI;IAMlC,iCAAiC;IACjC,MAAM,sDAA2E;IAEjF,+BAA+B;IAC/B,IAAI,IAAI,IAAI,MAAM,CAEjB;IAED;;;;;;;;OAQG;IACH,SAAS,CAAC,qBAAqB,CAAC,IAAI,EAAE,UAAU,EAAE,cAAc,UAAsB,GAAG,IAAI;IAO7F;;;;;;;;OAQG;IACH,SAAS,CAAC,wBAAwB,CAAC,IAAI,EAAE,UAAU,EAAE,cAAc,UAAsB,GAAG,IAAI;IAOhG;;;;;;OAMG;IACH,OAAO,CAAC,QAAQ;IAWhB;;;;;;;;;;OAUG;IACH,OAAO,CAAC,kBAAkB,CAYxB;IAEF;;;;;;;;;;;;OAYG;IACH,OAAO,CAAC,sBAAsB,CAmB5B;IAEF;;;;;;;;;;;;;;;OAeG;IACH,SAAS,CAAC,cAAc,yBAChB,UAAU,eAAe,GAAG,uBAAuB,CAAC,kBAC1C,OAAO,UAAU,YAAY,OAAO,CAAC,KAAK,IAAI,KAC7D,aAAa,CAAiE;IAEjF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA0CG;IACH,SAAS,CAAC,mBAAmB,yCACrB,UAAU,eAAe,GAAG,uBAAuB,CAAC,kBAC1C,OAAO,UAAU,YAAY,OAAO,CAAC,KAAK,QAAQ,OAAO,CAAC,KACzE,aAAa,CAAkE;IAElF;;;;;;;;;;;OAWG;IACH,SAAS,CAAC,mBAAmB,wCACrB,UAAU,eAAe,GAAG,uBAAuB,CAAC,mBACzC,OAAO,UAAU,YAAY,OAAO,CAAC,KAAK,IAAI,KAC9D,aAAa,CAAkE;IAElF;;;;;;;OAOG;IACH,SAAS,CAAC,iBAAiB,CAAC,OAAO,EAAE,WAAW,GAAG,IAAI;IAMvD;;;;;;;OAOG;IACH,SAAS,CAAC,oBAAoB,CAAC,OAAO,EAAE,WAAW,GAAG,IAAI;IAM1D;;;;;;;;;;;OAWG;IACH,SAAS,CAAC,IAAI,CAAC,CAAC,SAAS,MAAM,CAAC,eAAe,GAAG,uBAAuB,CAAC,GAAG,MAAM,EACjF,GAAG,IAAI,EAAE,CAAC,eAAe,GAAG,uBAAuB,CAAC,CAAC,CAAC,CAAC,SAAS,IAAI,GAChE,CAAC,GAAG,EAAE,CAAC,CAAC,GACR,CAAC,GAAG,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,eAAe,GAAG,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,GACnE,IAAI;IAWP;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;cACa,cAAc,CAAC,OAAO,EACpC,GAAG,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,EAC3B,KAAK,EAAE,MAAM,CAAC,eAAe,GAAG,uBAAuB,CAAC,EACxD,OAAO,CAAC,EAAE,MAAM,CAAC,eAAe,GAAG,uBAAuB,CAAC;CAW9D;AAED;;;GAGG;AACH,MAAM,MAAM,uBAAuB,GAAG;IACpC,iBAAiB,EAAE,WAAW,CAAC;IAC/B,oBAAoB,EAAE,IAAI,CAAC;IAC3B,aAAa,EAAE,OAAO,CAAC;CACxB,CAAC;AAEF;;;;;;;GAOG;AACH,8BAAsB,iBAAiB,CACnC,MAAM,SAAS,SAAS,EACxB,eAAe,SAAS,uBAAuB,GAAG,uBAAuB,EACzE,uBAAuB,SAAS,cAAc,GAAG,eAAe,CAElE,SAAQ,aAAa,CAAC,MAAM,EAAE,eAAe,EAAE,uBAAuB,CACtE,YAAW,SAAS;IAEpB,oCAAoC;IACxB,KAAK,EAAE,OAAO,CAAS;IAEnC,sCAAsC;IAC1B,OAAO,EAAE,WAAW,CAAC;IAEjC;;;;OAIG;IACH,SAAS,CAAC,IAAI,OAAQ;IAEtB;;;;;;;;OAQG;IACH,OAAO,CAAC,cAAc;IAWtB,WAAW,gBAGT;IACF,cAAc,gBAGZ;IACF,OAAO,gBAAuF;CAC/F"}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"metadata": {
|
3
3
|
"toolPackage": "@microsoft/api-extractor",
|
4
|
-
"toolVersion": "7.
|
4
|
+
"toolVersion": "7.48.0",
|
5
5
|
"schemaVersion": 1011,
|
6
6
|
"oldestForwardsCompatibleVersion": 1001,
|
7
7
|
"tsdocConfig": {
|
@@ -1752,17 +1752,13 @@
|
|
1752
1752
|
]
|
1753
1753
|
},
|
1754
1754
|
{
|
1755
|
-
"kind": "
|
1756
|
-
"canonicalReference": "@genesislcap/foundation-store!createErrorMap:
|
1755
|
+
"kind": "Function",
|
1756
|
+
"canonicalReference": "@genesislcap/foundation-store!createErrorMap:function(1)",
|
1757
1757
|
"docComment": "/**\n * A factory to create the error map.\n *\n * @deprecated\n *\n * - Use `createErrorMap` from `@genesislcap/foundation-utils` instead.\n *\n * @param logger - A logger error method reference.\n *\n * @returns A ErrorMap instance.\n *\n * @public\n */\n",
|
1758
1758
|
"excerptTokens": [
|
1759
1759
|
{
|
1760
1760
|
"kind": "Content",
|
1761
|
-
"text": "createErrorMap: "
|
1762
|
-
},
|
1763
|
-
{
|
1764
|
-
"kind": "Content",
|
1765
|
-
"text": "<TErrorDetailMap extends "
|
1761
|
+
"text": "createErrorMap: <TErrorDetailMap extends "
|
1766
1762
|
},
|
1767
1763
|
{
|
1768
1764
|
"kind": "Reference",
|
@@ -1793,13 +1789,36 @@
|
|
1793
1789
|
}
|
1794
1790
|
],
|
1795
1791
|
"fileUrlPath": "src/store/errorMap.ts",
|
1796
|
-
"
|
1792
|
+
"returnTypeTokenRange": {
|
1793
|
+
"startIndex": 5,
|
1794
|
+
"endIndex": 7
|
1795
|
+
},
|
1797
1796
|
"releaseTag": "Public",
|
1798
|
-
"
|
1799
|
-
"
|
1800
|
-
|
1801
|
-
|
1802
|
-
|
1797
|
+
"overloadIndex": 1,
|
1798
|
+
"parameters": [
|
1799
|
+
{
|
1800
|
+
"parameterName": "logger",
|
1801
|
+
"parameterTypeTokenRange": {
|
1802
|
+
"startIndex": 3,
|
1803
|
+
"endIndex": 4
|
1804
|
+
},
|
1805
|
+
"isOptional": false
|
1806
|
+
}
|
1807
|
+
],
|
1808
|
+
"typeParameters": [
|
1809
|
+
{
|
1810
|
+
"typeParameterName": "TErrorDetailMap",
|
1811
|
+
"constraintTokenRange": {
|
1812
|
+
"startIndex": 1,
|
1813
|
+
"endIndex": 2
|
1814
|
+
},
|
1815
|
+
"defaultTypeTokenRange": {
|
1816
|
+
"startIndex": 0,
|
1817
|
+
"endIndex": 0
|
1818
|
+
}
|
1819
|
+
}
|
1820
|
+
],
|
1821
|
+
"name": "createErrorMap"
|
1803
1822
|
},
|
1804
1823
|
{
|
1805
1824
|
"kind": "TypeAlias",
|
@@ -2052,17 +2071,13 @@
|
|
2052
2071
|
}
|
2053
2072
|
},
|
2054
2073
|
{
|
2055
|
-
"kind": "
|
2056
|
-
"canonicalReference": "@genesislcap/foundation-store!registerStore:
|
2074
|
+
"kind": "Function",
|
2075
|
+
"canonicalReference": "@genesislcap/foundation-store!registerStore:function(1)",
|
2057
2076
|
"docComment": "/**\n * Creates a dependency injection key for the store being registered.\n *\n * @param Base - The store fragment class.\n *\n * @param name - The name of your store fragment, mostly used for internal logging.\n *\n * @returns The created key.\n *\n * @example\n * ```ts\n * export const TradeEntry = registerStore<TradeEntry>(DefaultTradeEntry, 'TradeEntry');\n * ```\n *\n * @public\n */\n",
|
2058
2077
|
"excerptTokens": [
|
2059
2078
|
{
|
2060
2079
|
"kind": "Content",
|
2061
|
-
"text": "registerStore: "
|
2062
|
-
},
|
2063
|
-
{
|
2064
|
-
"kind": "Content",
|
2065
|
-
"text": "<K extends "
|
2080
|
+
"text": "registerStore: <K extends "
|
2066
2081
|
},
|
2067
2082
|
{
|
2068
2083
|
"kind": "Reference",
|
@@ -2089,7 +2104,23 @@
|
|
2089
2104
|
},
|
2090
2105
|
{
|
2091
2106
|
"kind": "Content",
|
2092
|
-
"text": "
|
2107
|
+
"text": ">"
|
2108
|
+
},
|
2109
|
+
{
|
2110
|
+
"kind": "Content",
|
2111
|
+
"text": ", name?: "
|
2112
|
+
},
|
2113
|
+
{
|
2114
|
+
"kind": "Content",
|
2115
|
+
"text": "string"
|
2116
|
+
},
|
2117
|
+
{
|
2118
|
+
"kind": "Content",
|
2119
|
+
"text": ") => "
|
2120
|
+
},
|
2121
|
+
{
|
2122
|
+
"kind": "Content",
|
2123
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
2093
2124
|
},
|
2094
2125
|
{
|
2095
2126
|
"kind": "Reference",
|
@@ -2102,13 +2133,44 @@
|
|
2102
2133
|
}
|
2103
2134
|
],
|
2104
2135
|
"fileUrlPath": "src/store/foundationStore.ts",
|
2105
|
-
"
|
2136
|
+
"returnTypeTokenRange": {
|
2137
|
+
"startIndex": 10,
|
2138
|
+
"endIndex": 13
|
2139
|
+
},
|
2106
2140
|
"releaseTag": "Public",
|
2107
|
-
"
|
2108
|
-
"
|
2109
|
-
|
2110
|
-
|
2111
|
-
|
2141
|
+
"overloadIndex": 1,
|
2142
|
+
"parameters": [
|
2143
|
+
{
|
2144
|
+
"parameterName": "Base",
|
2145
|
+
"parameterTypeTokenRange": {
|
2146
|
+
"startIndex": 3,
|
2147
|
+
"endIndex": 7
|
2148
|
+
},
|
2149
|
+
"isOptional": false
|
2150
|
+
},
|
2151
|
+
{
|
2152
|
+
"parameterName": "name",
|
2153
|
+
"parameterTypeTokenRange": {
|
2154
|
+
"startIndex": 8,
|
2155
|
+
"endIndex": 9
|
2156
|
+
},
|
2157
|
+
"isOptional": true
|
2158
|
+
}
|
2159
|
+
],
|
2160
|
+
"typeParameters": [
|
2161
|
+
{
|
2162
|
+
"typeParameterName": "K",
|
2163
|
+
"constraintTokenRange": {
|
2164
|
+
"startIndex": 1,
|
2165
|
+
"endIndex": 2
|
2166
|
+
},
|
2167
|
+
"defaultTypeTokenRange": {
|
2168
|
+
"startIndex": 0,
|
2169
|
+
"endIndex": 0
|
2170
|
+
}
|
2171
|
+
}
|
2172
|
+
],
|
2173
|
+
"name": "registerStore"
|
2112
2174
|
},
|
2113
2175
|
{
|
2114
2176
|
"kind": "Interface",
|
package/dist/tsdoc-metadata.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[Home](./index.md) > [@genesislcap/foundation-store](./foundation-store.md) > [createErrorMap](./foundation-store.createerrormap.md)
|
4
4
|
|
5
|
-
## createErrorMap
|
5
|
+
## createErrorMap() function
|
6
6
|
|
7
7
|
> Warning: This API is now obsolete.
|
8
8
|
>
|
@@ -16,3 +16,16 @@ A factory to create the error map.
|
|
16
16
|
```typescript
|
17
17
|
createErrorMap: <TErrorDetailMap extends ErrorDetailMap>(logger: ErrorMapLogger) => ErrorMap<TErrorDetailMap>
|
18
18
|
```
|
19
|
+
|
20
|
+
## Parameters
|
21
|
+
|
22
|
+
| Parameter | Type | Description |
|
23
|
+
| --- | --- | --- |
|
24
|
+
| logger | [ErrorMapLogger](./foundation-store.errormaplogger.md) | A logger error method reference. |
|
25
|
+
|
26
|
+
**Returns:**
|
27
|
+
|
28
|
+
[ErrorMap](./foundation-store.errormap.md)<!-- --><TErrorDetailMap>
|
29
|
+
|
30
|
+
A ErrorMap instance.
|
31
|
+
|
@@ -11,6 +11,13 @@
|
|
11
11
|
| [AbstractStore](./foundation-store.abstractstore.md) | The abstract store that concrete store fragments must extend, which differs from the [AbstractStoreRoot](./foundation-store.abstractstoreroot.md)<!-- -->. |
|
12
12
|
| [AbstractStoreRoot](./foundation-store.abstractstoreroot.md) | The abstract store root that concrete store roots must extend. |
|
13
13
|
|
14
|
+
## Functions
|
15
|
+
|
16
|
+
| Function | Description |
|
17
|
+
| --- | --- |
|
18
|
+
| [createErrorMap(logger)](./foundation-store.createerrormap.md) | A factory to create the error map. |
|
19
|
+
| [registerStore(Base, name)](./foundation-store.registerstore.md) | Creates a dependency injection key for the store being registered. |
|
20
|
+
|
14
21
|
## Interfaces
|
15
22
|
|
16
23
|
| Interface | Description |
|
@@ -25,9 +32,7 @@
|
|
25
32
|
|
26
33
|
| Variable | Description |
|
27
34
|
| --- | --- |
|
28
|
-
| [createErrorMap](./foundation-store.createerrormap.md) | A factory to create the error map. |
|
29
35
|
| [logger](./foundation-store.logger.md) | Logger for the foundation-store package |
|
30
|
-
| [registerStore](./foundation-store.registerstore.md) | Creates a dependency injection key for the store being registered. |
|
31
36
|
|
32
37
|
## Type Aliases
|
33
38
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[Home](./index.md) > [@genesislcap/foundation-store](./foundation-store.md) > [registerStore](./foundation-store.registerstore.md)
|
4
4
|
|
5
|
-
## registerStore
|
5
|
+
## registerStore() function
|
6
6
|
|
7
7
|
Creates a dependency injection key for the store being registered.
|
8
8
|
|
@@ -12,6 +12,19 @@ Creates a dependency injection key for the store being registered.
|
|
12
12
|
registerStore: <K extends Key>(Base: Constructable<Store>, name?: string) => import("@microsoft/fast-foundation").InterfaceSymbol<K>
|
13
13
|
```
|
14
14
|
|
15
|
+
## Parameters
|
16
|
+
|
17
|
+
| Parameter | Type | Description |
|
18
|
+
| --- | --- | --- |
|
19
|
+
| Base | Constructable<[Store](./foundation-store.store.md)<!-- -->> | The store fragment class. |
|
20
|
+
| name | string | _(Optional)_ The name of your store fragment, mostly used for internal logging. |
|
21
|
+
|
22
|
+
**Returns:**
|
23
|
+
|
24
|
+
import("@microsoft/fast-foundation").InterfaceSymbol<K>
|
25
|
+
|
26
|
+
The created key.
|
27
|
+
|
15
28
|
## Example
|
16
29
|
|
17
30
|
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@genesislcap/foundation-store",
|
3
3
|
"description": "Genesis Foundation Store",
|
4
|
-
"version": "14.225.
|
4
|
+
"version": "14.225.4-alpha-9342136.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -36,25 +36,25 @@
|
|
36
36
|
}
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
|
-
"@genesislcap/foundation-testing": "14.225.
|
40
|
-
"@genesislcap/genx": "14.225.
|
41
|
-
"@genesislcap/rollup-builder": "14.225.
|
42
|
-
"@genesislcap/ts-builder": "14.225.
|
43
|
-
"@genesislcap/uvu-playwright-builder": "14.225.
|
44
|
-
"@genesislcap/vite-builder": "14.225.
|
45
|
-
"@genesislcap/webpack-builder": "14.225.
|
39
|
+
"@genesislcap/foundation-testing": "14.225.4-alpha-9342136.0",
|
40
|
+
"@genesislcap/genx": "14.225.4-alpha-9342136.0",
|
41
|
+
"@genesislcap/rollup-builder": "14.225.4-alpha-9342136.0",
|
42
|
+
"@genesislcap/ts-builder": "14.225.4-alpha-9342136.0",
|
43
|
+
"@genesislcap/uvu-playwright-builder": "14.225.4-alpha-9342136.0",
|
44
|
+
"@genesislcap/vite-builder": "14.225.4-alpha-9342136.0",
|
45
|
+
"@genesislcap/webpack-builder": "14.225.4-alpha-9342136.0",
|
46
46
|
"rimraf": "^5.0.0"
|
47
47
|
},
|
48
48
|
"dependencies": {
|
49
|
-
"@genesislcap/foundation-events": "14.225.
|
50
|
-
"@genesislcap/foundation-logger": "14.225.
|
51
|
-
"@genesislcap/foundation-utils": "14.225.
|
49
|
+
"@genesislcap/foundation-events": "14.225.4-alpha-9342136.0",
|
50
|
+
"@genesislcap/foundation-logger": "14.225.4-alpha-9342136.0",
|
51
|
+
"@genesislcap/foundation-utils": "14.225.4-alpha-9342136.0",
|
52
52
|
"@microsoft/fast-element": "1.14.0",
|
53
53
|
"@microsoft/fast-foundation": "2.49.6",
|
54
54
|
"@microsoft/fast-web-utilities": "5.4.1",
|
55
55
|
"fast-safe-stringify": "^2.1.1",
|
56
56
|
"rxjs": "^7.5.4",
|
57
|
-
"tslib": "
|
57
|
+
"tslib": "2.8.1"
|
58
58
|
},
|
59
59
|
"repository": {
|
60
60
|
"type": "git",
|
@@ -64,5 +64,5 @@
|
|
64
64
|
"publishConfig": {
|
65
65
|
"access": "public"
|
66
66
|
},
|
67
|
-
"gitHead": "
|
67
|
+
"gitHead": "fc6d550b6235df216dc52fc120675e1a0cde3d1e"
|
68
68
|
}
|
File without changes
|