@genesislcap/foundation-utils 14.226.0 → 14.226.2-alpha-bcda968.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +277 -227
- package/dist/dts/env/variables.d.ts +20 -0
- package/dist/dts/env/variables.d.ts.map +1 -1
- package/dist/dts/error/errorMap.d.ts.map +1 -1
- package/dist/dts/mixins/lifecycle/lifecycle.d.ts +29 -51
- package/dist/dts/mixins/lifecycle/lifecycle.d.ts.map +1 -1
- package/dist/dts/mixins/pendingState/pendingState.d.ts +29 -45
- package/dist/dts/mixins/pendingState/pendingState.d.ts.map +1 -1
- package/dist/dts/observer/observer.d.ts.map +1 -1
- package/dist/dts/promise/resolveAfter.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/esm/env/variables.js +39 -7
- package/dist/esm/mixins/lifecycle/lifecycle.js +5 -5
- package/dist/esm/mixins/pendingState/pendingState.js +2 -2
- package/dist/esm/uuid/uuid.js +2 -2
- package/dist/foundation-utils.api.json +355 -1212
- package/dist/foundation-utils.d.ts +78 -93
- package/docs/api/foundation-utils.builder.md +18 -0
- package/docs/api/foundation-utils.createerrormap.md +1 -14
- package/docs/api/foundation-utils.createobserver.md +1 -5
- package/docs/api/foundation-utils.decodefrombase64.md +1 -14
- package/docs/api/foundation-utils.decodefrombase64withprefix.md +1 -13
- package/docs/api/foundation-utils.encodetobase64.md +1 -14
- package/docs/api/foundation-utils.encodetobase64withprefix.md +1 -13
- package/docs/api/foundation-utils.getfontmixin.md +1 -16
- package/docs/api/foundation-utils.iniframe.md +1 -7
- package/docs/api/foundation-utils.insertdocumentcssrule.md +1 -15
- package/docs/api/foundation-utils.insertdocumentlink.md +1 -12
- package/docs/api/foundation-utils.insymphonydesktop.md +1 -7
- package/docs/api/foundation-utils.isdev.md +1 -5
- package/docs/api/foundation-utils.lifecyclemixin.md +30 -56
- package/docs/api/foundation-utils.loadfontfaces.md +1 -13
- package/docs/api/foundation-utils.md +20 -18
- package/docs/api/foundation-utils.openpopup.md +1 -17
- package/docs/api/foundation-utils.pendingstate.md +30 -57
- package/docs/api/foundation-utils.public_path.md +18 -0
- package/docs/api/foundation-utils.resolveafter.md +1 -12
- package/docs/api/foundation-utils.respondtovisibility.md +1 -13
- package/docs/{api-report.md.api.md → api-report.md} +64 -93
- package/package.json +11 -11
@@ -4,9 +4,6 @@
|
|
4
4
|
|
5
5
|
```ts
|
6
6
|
|
7
|
-
/// <reference types="node" />
|
8
|
-
/// <reference types="webpack-env" />
|
9
|
-
|
10
7
|
import { Binding } from '@microsoft/fast-element';
|
11
8
|
import { CaptureType } from '@microsoft/fast-element';
|
12
9
|
import { ComposableStyles } from '@microsoft/fast-element';
|
@@ -36,6 +33,9 @@ export function assureDesignSystem(module: DesignSystemModule): DesignSystemModu
|
|
36
33
|
// @internal (undocumented)
|
37
34
|
export const BIG_INT_64_BITS = 64;
|
38
35
|
|
36
|
+
// @public
|
37
|
+
export let BUILDER: string;
|
38
|
+
|
39
39
|
// @public (undocumented)
|
40
40
|
export type ConstructableLifecycleHandler = Constructable<FASTElement & HTMLElement>;
|
41
41
|
|
@@ -397,15 +397,11 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
397
397
|
readonly offsetTop: number;
|
398
398
|
readonly offsetWidth: number;
|
399
399
|
outerText: string;
|
400
|
-
popover: string;
|
401
400
|
spellcheck: boolean;
|
402
401
|
title: string;
|
403
402
|
translate: boolean;
|
404
403
|
attachInternals(): ElementInternals;
|
405
404
|
click(): void;
|
406
|
-
hidePopover(): void;
|
407
|
-
showPopover(): void;
|
408
|
-
togglePopover(force?: boolean): boolean;
|
409
405
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
410
406
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
411
407
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -434,12 +430,9 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
434
430
|
slot: string;
|
435
431
|
readonly tagName: string;
|
436
432
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
437
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
438
433
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
439
434
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
440
|
-
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
441
435
|
closest<E extends Element = Element>(selectors: string): E;
|
442
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
443
436
|
getAttribute(qualifiedName: string): string;
|
444
437
|
getAttributeNS(namespace: string, localName: string): string;
|
445
438
|
getAttributeNames(): string[];
|
@@ -448,14 +441,11 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
448
441
|
getBoundingClientRect(): DOMRect;
|
449
442
|
getClientRects(): DOMRectList;
|
450
443
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
451
|
-
getElementsByTagName<
|
452
|
-
getElementsByTagName<
|
453
|
-
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
454
|
-
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
444
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
445
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
455
446
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
456
447
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
457
448
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
458
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
459
449
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
460
450
|
hasAttribute(qualifiedName: string): boolean;
|
461
451
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -512,24 +502,24 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
512
502
|
normalize(): void;
|
513
503
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
514
504
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
515
|
-
readonly
|
516
|
-
readonly
|
517
|
-
readonly
|
518
|
-
readonly
|
519
|
-
readonly
|
520
|
-
readonly
|
521
|
-
readonly
|
522
|
-
readonly
|
523
|
-
readonly
|
524
|
-
readonly
|
525
|
-
readonly
|
526
|
-
readonly
|
527
|
-
readonly
|
528
|
-
readonly
|
529
|
-
readonly
|
530
|
-
readonly
|
531
|
-
readonly
|
532
|
-
readonly
|
505
|
+
readonly ATTRIBUTE_NODE: number;
|
506
|
+
readonly CDATA_SECTION_NODE: number;
|
507
|
+
readonly COMMENT_NODE: number;
|
508
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
509
|
+
readonly DOCUMENT_NODE: number;
|
510
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
511
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
512
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
513
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
514
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
515
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
516
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
517
|
+
readonly ELEMENT_NODE: number;
|
518
|
+
readonly ENTITY_NODE: number;
|
519
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
520
|
+
readonly NOTATION_NODE: number;
|
521
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
522
|
+
readonly TEXT_NODE: number;
|
533
523
|
dispatchEvent(event: Event): boolean;
|
534
524
|
ariaAtomic: string;
|
535
525
|
ariaAutoComplete: string;
|
@@ -537,9 +527,9 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
537
527
|
ariaChecked: string;
|
538
528
|
ariaColCount: string;
|
539
529
|
ariaColIndex: string;
|
530
|
+
ariaColIndexText: string;
|
540
531
|
ariaColSpan: string;
|
541
532
|
ariaCurrent: string;
|
542
|
-
ariaDescription: string;
|
543
533
|
ariaDisabled: string;
|
544
534
|
ariaExpanded: string;
|
545
535
|
ariaHasPopup: string;
|
@@ -561,6 +551,7 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
561
551
|
ariaRoleDescription: string;
|
562
552
|
ariaRowCount: string;
|
563
553
|
ariaRowIndex: string;
|
554
|
+
ariaRowIndexText: string;
|
564
555
|
ariaRowSpan: string;
|
565
556
|
ariaSelected: string;
|
566
557
|
ariaSetSize: string;
|
@@ -585,19 +576,17 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
585
576
|
readonly lastElementChild: Element;
|
586
577
|
append(...nodes: (string | Node)[]): void;
|
587
578
|
prepend(...nodes: (string | Node)[]): void;
|
588
|
-
querySelector<
|
589
|
-
querySelector<
|
590
|
-
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
591
|
-
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
579
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
580
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
592
581
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
593
|
-
querySelectorAll<
|
594
|
-
querySelectorAll<
|
595
|
-
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
596
|
-
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
582
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
583
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
597
584
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
598
585
|
replaceChildren(...nodes: (string | Node)[]): void;
|
599
586
|
readonly assignedSlot: HTMLSlotElement;
|
600
|
-
|
587
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
588
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
589
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
601
590
|
readonly style: CSSStyleDeclaration;
|
602
591
|
contentEditable: string;
|
603
592
|
enterKeyHint: string;
|
@@ -610,7 +599,6 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
610
599
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
611
600
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
612
601
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
613
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
614
602
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
615
603
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
616
604
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -619,9 +607,7 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
619
607
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
620
608
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
621
609
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
622
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
623
610
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
624
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
625
611
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
626
612
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
627
613
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -654,7 +640,6 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
654
640
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
655
641
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
656
642
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
657
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
658
643
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
659
644
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
660
645
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -671,7 +656,6 @@ export const LifecycleMixin: <T extends ConstructableLifecycleHandler>(Base: T)
|
|
671
656
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
672
657
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
673
658
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
674
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
675
659
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
676
660
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
677
661
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -786,15 +770,11 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
786
770
|
readonly offsetTop: number;
|
787
771
|
readonly offsetWidth: number;
|
788
772
|
outerText: string;
|
789
|
-
popover: string;
|
790
773
|
spellcheck: boolean;
|
791
774
|
title: string;
|
792
775
|
translate: boolean;
|
793
776
|
attachInternals(): ElementInternals;
|
794
777
|
click(): void;
|
795
|
-
hidePopover(): void;
|
796
|
-
showPopover(): void;
|
797
|
-
togglePopover(force?: boolean): boolean;
|
798
778
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
799
779
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
800
780
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -823,12 +803,9 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
823
803
|
slot: string;
|
824
804
|
readonly tagName: string;
|
825
805
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
826
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
827
806
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
828
807
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
829
|
-
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
830
808
|
closest<E extends Element = Element>(selectors: string): E;
|
831
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
832
809
|
getAttribute(qualifiedName: string): string;
|
833
810
|
getAttributeNS(namespace: string, localName: string): string;
|
834
811
|
getAttributeNames(): string[];
|
@@ -837,14 +814,11 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
837
814
|
getBoundingClientRect(): DOMRect;
|
838
815
|
getClientRects(): DOMRectList;
|
839
816
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
840
|
-
getElementsByTagName<
|
841
|
-
getElementsByTagName<
|
842
|
-
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
843
|
-
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
817
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
818
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
844
819
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
845
820
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
846
821
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
847
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
848
822
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
849
823
|
hasAttribute(qualifiedName: string): boolean;
|
850
824
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -902,24 +876,24 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
902
876
|
normalize(): void;
|
903
877
|
removeChild<T_2 extends Node>(child: T_2): T_2;
|
904
878
|
replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
|
905
|
-
readonly
|
906
|
-
readonly
|
907
|
-
readonly
|
908
|
-
readonly
|
909
|
-
readonly
|
910
|
-
readonly
|
911
|
-
readonly
|
912
|
-
readonly
|
913
|
-
readonly
|
914
|
-
readonly
|
915
|
-
readonly
|
916
|
-
readonly
|
917
|
-
readonly
|
918
|
-
readonly
|
919
|
-
readonly
|
920
|
-
readonly
|
921
|
-
readonly
|
922
|
-
readonly
|
879
|
+
readonly ATTRIBUTE_NODE: number;
|
880
|
+
readonly CDATA_SECTION_NODE: number;
|
881
|
+
readonly COMMENT_NODE: number;
|
882
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
883
|
+
readonly DOCUMENT_NODE: number;
|
884
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
885
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
886
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
887
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
888
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
889
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
890
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
891
|
+
readonly ELEMENT_NODE: number;
|
892
|
+
readonly ENTITY_NODE: number;
|
893
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
894
|
+
readonly NOTATION_NODE: number;
|
895
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
896
|
+
readonly TEXT_NODE: number;
|
923
897
|
dispatchEvent(event: Event): boolean;
|
924
898
|
ariaAtomic: string;
|
925
899
|
ariaAutoComplete: string;
|
@@ -927,9 +901,9 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
927
901
|
ariaChecked: string;
|
928
902
|
ariaColCount: string;
|
929
903
|
ariaColIndex: string;
|
904
|
+
ariaColIndexText: string;
|
930
905
|
ariaColSpan: string;
|
931
906
|
ariaCurrent: string;
|
932
|
-
ariaDescription: string;
|
933
907
|
ariaDisabled: string;
|
934
908
|
ariaExpanded: string;
|
935
909
|
ariaHasPopup: string;
|
@@ -951,6 +925,7 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
951
925
|
ariaRoleDescription: string;
|
952
926
|
ariaRowCount: string;
|
953
927
|
ariaRowIndex: string;
|
928
|
+
ariaRowIndexText: string;
|
954
929
|
ariaRowSpan: string;
|
955
930
|
ariaSelected: string;
|
956
931
|
ariaSetSize: string;
|
@@ -975,19 +950,17 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
975
950
|
readonly lastElementChild: Element;
|
976
951
|
append(...nodes: (string | Node)[]): void;
|
977
952
|
prepend(...nodes: (string | Node)[]): void;
|
978
|
-
querySelector<
|
979
|
-
querySelector<
|
980
|
-
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
981
|
-
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
953
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
954
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
982
955
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
983
|
-
querySelectorAll<
|
984
|
-
querySelectorAll<
|
985
|
-
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
986
|
-
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
956
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
957
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
987
958
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
988
959
|
replaceChildren(...nodes: (string | Node)[]): void;
|
989
960
|
readonly assignedSlot: HTMLSlotElement;
|
990
|
-
|
961
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
962
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
963
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
991
964
|
readonly style: CSSStyleDeclaration;
|
992
965
|
contentEditable: string;
|
993
966
|
enterKeyHint: string;
|
@@ -1000,7 +973,6 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
1000
973
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
1001
974
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1002
975
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
1003
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
1004
976
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
1005
977
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
1006
978
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -1009,9 +981,7 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
1009
981
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1010
982
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
1011
983
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1012
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
1013
984
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
1014
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
1015
985
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1016
986
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1017
987
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -1044,7 +1014,6 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
1044
1014
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1045
1015
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1046
1016
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1047
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
1048
1017
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
1049
1018
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
1050
1019
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -1061,7 +1030,6 @@ export const PendingState: <TBase extends ConstructablePendingState>(Base: TBase
|
|
1061
1030
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
1062
1031
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
1063
1032
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
1064
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
1065
1033
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
1066
1034
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
1067
1035
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -1122,6 +1090,9 @@ export const POPUP_DEFAULT_HEIGHT = 600;
|
|
1122
1090
|
// @public
|
1123
1091
|
export const POPUP_DEFAULT_WIDTH = 483;
|
1124
1092
|
|
1093
|
+
// @public
|
1094
|
+
export let PUBLIC_PATH: string;
|
1095
|
+
|
1125
1096
|
// @public
|
1126
1097
|
export type Publish<EventType> = (event: EventType) => void;
|
1127
1098
|
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@genesislcap/foundation-utils",
|
3
3
|
"description": "Genesis Foundation Utils",
|
4
|
-
"version": "14.226.0",
|
4
|
+
"version": "14.226.2-alpha-bcda968.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -27,23 +27,23 @@
|
|
27
27
|
}
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
|
-
"@genesislcap/foundation-testing": "14.226.0",
|
31
|
-
"@genesislcap/genx": "14.226.0",
|
32
|
-
"@genesislcap/rollup-builder": "14.226.0",
|
33
|
-
"@genesislcap/ts-builder": "14.226.0",
|
34
|
-
"@genesislcap/uvu-playwright-builder": "14.226.0",
|
35
|
-
"@genesislcap/vite-builder": "14.226.0",
|
36
|
-
"@genesislcap/webpack-builder": "14.226.0",
|
30
|
+
"@genesislcap/foundation-testing": "14.226.2-alpha-bcda968.0",
|
31
|
+
"@genesislcap/genx": "14.226.2-alpha-bcda968.0",
|
32
|
+
"@genesislcap/rollup-builder": "14.226.2-alpha-bcda968.0",
|
33
|
+
"@genesislcap/ts-builder": "14.226.2-alpha-bcda968.0",
|
34
|
+
"@genesislcap/uvu-playwright-builder": "14.226.2-alpha-bcda968.0",
|
35
|
+
"@genesislcap/vite-builder": "14.226.2-alpha-bcda968.0",
|
36
|
+
"@genesislcap/webpack-builder": "14.226.2-alpha-bcda968.0",
|
37
37
|
"rimraf": "^5.0.0"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@genesislcap/foundation-logger": "14.226.0",
|
40
|
+
"@genesislcap/foundation-logger": "14.226.2-alpha-bcda968.0",
|
41
41
|
"@microsoft/fast-components": "2.30.6",
|
42
42
|
"@microsoft/fast-element": "1.14.0",
|
43
43
|
"@microsoft/fast-foundation": "2.49.6",
|
44
44
|
"lossless-json": "^2.0.11",
|
45
45
|
"numeral": "2.0.6",
|
46
|
-
"tslib": "2.
|
46
|
+
"tslib": "^2.3.1",
|
47
47
|
"uuid": "^8.3.2"
|
48
48
|
},
|
49
49
|
"repository": {
|
@@ -55,5 +55,5 @@
|
|
55
55
|
"access": "public"
|
56
56
|
},
|
57
57
|
"customElements": "dist/custom-elements.json",
|
58
|
-
"gitHead": "
|
58
|
+
"gitHead": "9af9df8ba21d267f9bb916dcdc29796cd9f3e007"
|
59
59
|
}
|